{{ doc.subject }}
-- {{ frappe.format_date(doc.modified) }} -
-From 498314e2c5d678609fa066e86e81ddde139fe55d Mon Sep 17 00:00:00 2001 From: mahsem <137205921+mahsem@users.noreply.github.com> Date: Sun, 25 May 2025 19:05:57 +0200 Subject: [PATCH 001/196] fix: Clear_All _translation --- frappe/public/js/frappe/form/controls/multiselect_list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/controls/multiselect_list.js b/frappe/public/js/frappe/form/controls/multiselect_list.js index 9fd7eb909e..b26b9ecb3d 100644 --- a/frappe/public/js/frappe/form/controls/multiselect_list.js +++ b/frappe/public/js/frappe/form/controls/multiselect_list.js @@ -16,7 +16,7 @@ frappe.ui.form.ControlMultiSelectList = class ControlMultiSelectList extends (
' + _("Please close this window") + "
" - - if not callback.state or not callback.code: - frappe.respond_as_web_page( - _("Dropbox Setup"), - _("Illegal Access Token. Please try again") + close, - indicator_color="red", - http_status_code=frappe.AuthenticationError.http_status_code, - ) - return - - dropbox_oauth_flow = dropbox.DropboxOAuth2Flow( - consumer_key=app_details["app_key"], - redirect_uri=app_details["redirect_uri"], - session={"dropbox-auth-csrf-token": callback.state}, - csrf_token_session_key="dropbox-auth-csrf-token", - consumer_secret=app_details["app_secret"], - ) - - token = dropbox_oauth_flow.finish({"state": callback.state, "code": callback.code}) - set_dropbox_token(token.access_token, token.refresh_token) - - frappe.local.response["type"] = "redirect" - frappe.local.response["location"] = "/app/dropbox-settings" - - -def set_dropbox_token(access_token, refresh_token=None): - # NOTE: used doc object instead of db.set_value so that password field is set properly - dropbox_settings = frappe.get_single("Dropbox Settings") - dropbox_settings.dropbox_access_token = access_token - if refresh_token: - dropbox_settings.dropbox_refresh_token = refresh_token - - dropbox_settings.save() - - frappe.db.commit() diff --git a/frappe/integrations/doctype/dropbox_settings/test_dropbox_settings.py b/frappe/integrations/doctype/dropbox_settings/test_dropbox_settings.py deleted file mode 100644 index dedaa2d861..0000000000 --- a/frappe/integrations/doctype/dropbox_settings/test_dropbox_settings.py +++ /dev/null @@ -1,8 +0,0 @@ -# Copyright (c) 2019, Frappe Technologies and Contributors -# License: MIT. See LICENSE -# import frappe -from frappe.tests import IntegrationTestCase - - -class TestDropboxSettings(IntegrationTestCase): - pass diff --git a/frappe/integrations/doctype/google_drive/__init__.py b/frappe/integrations/doctype/google_drive/__init__.py deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/frappe/integrations/doctype/google_drive/google_drive.js b/frappe/integrations/doctype/google_drive/google_drive.js deleted file mode 100644 index ec5833cf59..0000000000 --- a/frappe/integrations/doctype/google_drive/google_drive.js +++ /dev/null @@ -1,71 +0,0 @@ -// Copyright (c) 2019, Frappe Technologies and contributors -// For license information, please see license.txt - -frappe.ui.form.on("Google Drive", { - refresh: function (frm) { - if (!frm.doc.enable) { - frm.dashboard.set_headline( - __("To use Google Drive, enable {0}.", [ - `${__("Google Settings")}`, - ]) - ); - } - - frappe.realtime.on("upload_to_google_drive", (data) => { - if (data.progress) { - const progress_title = __("Uploading to Google Drive"); - frm.dashboard.show_progress( - progress_title, - (data.progress / data.total) * 100, - data.message - ); - if (data.progress === data.total) { - frm.dashboard.hide_progress(progress_title); - } - } - }); - - if (frm.doc.enable && frm.doc.refresh_token) { - let sync_button = frm.add_custom_button(__("Take Backup"), function () { - frappe.show_alert({ - indicator: "green", - message: __("Backing up to Google Drive."), - }); - frappe - .call({ - method: "frappe.integrations.doctype.google_drive.google_drive.take_backup", - btn: sync_button, - }) - .then((r) => { - frappe.msgprint(r.message); - }); - }); - } - - if (frm.doc.enable && frm.doc.backup_folder_name && !frm.doc.refresh_token) { - frm.dashboard.set_headline( - __( - "Click on Authorize Google Drive Access to authorize Google Drive Access." - ) - ); - } - - if (frm.doc.enable && frm.doc.refresh_token && frm.doc.authorization_code) { - frm.page.set_indicator("Authorized", "green"); - } - }, - authorize_google_drive_access: function (frm) { - frappe.call({ - method: "frappe.integrations.doctype.google_drive.google_drive.authorize_access", - args: { - reauthorize: frm.doc.authorization_code ? 1 : 0, - }, - callback: function (r) { - if (!r.exc) { - frm.save(); - window.open(r.message.url); - } - }, - }); - }, -}); diff --git a/frappe/integrations/doctype/google_drive/google_drive.json b/frappe/integrations/doctype/google_drive/google_drive.json deleted file mode 100644 index ece2d429a0..0000000000 --- a/frappe/integrations/doctype/google_drive/google_drive.json +++ /dev/null @@ -1,126 +0,0 @@ -{ - "actions": [], - "creation": "2019-08-13 17:24:05.470876", - "doctype": "DocType", - "engine": "InnoDB", - "field_order": [ - "enable", - "google_drive_section", - "backup_folder_name", - "frequency", - "email", - "send_email_for_successful_backup", - "file_backup", - "authorize_google_drive_access", - "column_break_5", - "backup_folder_id", - "last_backup_on", - "refresh_token", - "authorization_code" - ], - "fields": [ - { - "default": "0", - "fieldname": "enable", - "fieldtype": "Check", - "label": "Enable" - }, - { - "fieldname": "backup_folder_name", - "fieldtype": "Data", - "in_list_view": 1, - "label": "Backup Folder Name", - "reqd": 1 - }, - { - "depends_on": "eval:!doc.__islocal", - "fieldname": "authorize_google_drive_access", - "fieldtype": "Button", - "label": "Authorize Google Drive Access" - }, - { - "fieldname": "column_break_5", - "fieldtype": "Column Break" - }, - { - "fieldname": "backup_folder_id", - "fieldtype": "Data", - "label": "Backup Folder ID", - "read_only": 1 - }, - { - "fieldname": "frequency", - "fieldtype": "Select", - "label": "Frequency", - "options": "\nDaily\nWeekly", - "reqd": 1 - }, - { - "fieldname": "refresh_token", - "fieldtype": "Data", - "hidden": 1, - "label": "Refresh Token" - }, - { - "fieldname": "authorization_code", - "fieldtype": "Data", - "hidden": 1, - "label": "Authorization Code" - }, - { - "fieldname": "last_backup_on", - "fieldtype": "Datetime", - "label": "Last Backup On", - "read_only": 1 - }, - { - "default": "0", - "description": "Note: By default emails for failed backups are sent.", - "fieldname": "send_email_for_successful_backup", - "fieldtype": "Check", - "label": "Send Email for Successful backup" - }, - { - "default": "0", - "fieldname": "file_backup", - "fieldtype": "Check", - "label": "File Backup" - }, - { - "depends_on": "enable", - "fieldname": "google_drive_section", - "fieldtype": "Section Break", - "label": "Google Drive" - }, - { - "fieldname": "email", - "fieldtype": "Data", - "label": "Send Notification To", - "options": "Email", - "reqd": 1 - } - ], - "issingle": 1, - "links": [], - "modified": "2024-03-23 16:03:26.999110", - "modified_by": "Administrator", - "module": "Integrations", - "name": "Google Drive", - "owner": "Administrator", - "permissions": [ - { - "create": 1, - "delete": 1, - "email": 1, - "print": 1, - "read": 1, - "role": "System Manager", - "share": 1, - "write": 1 - } - ], - "sort_field": "creation", - "sort_order": "DESC", - "states": [], - "track_changes": 1 -} \ No newline at end of file diff --git a/frappe/integrations/doctype/google_drive/google_drive.py b/frappe/integrations/doctype/google_drive/google_drive.py deleted file mode 100644 index cd1c8c2577..0000000000 --- a/frappe/integrations/doctype/google_drive/google_drive.py +++ /dev/null @@ -1,229 +0,0 @@ -# Copyright (c) 2019, Frappe Technologies and contributors -# License: MIT. See LICENSE - -import os -from urllib.parse import quote - -from apiclient.http import MediaFileUpload -from googleapiclient.errors import HttpError - -import frappe -from frappe import _ -from frappe.integrations.google_oauth import GoogleOAuth -from frappe.integrations.offsite_backup_utils import ( - get_latest_backup_file, - send_email, - validate_file_size, -) -from frappe.model.document import Document -from frappe.utils import get_backups_path, get_bench_path -from frappe.utils.background_jobs import enqueue -from frappe.utils.backups import new_backup - - -class GoogleDrive(Document): - # begin: auto-generated types - # This code is auto-generated. Do not modify anything in this block. - - from typing import TYPE_CHECKING - - if TYPE_CHECKING: - from frappe.types import DF - - authorization_code: DF.Data | None - backup_folder_id: DF.Data | None - backup_folder_name: DF.Data - email: DF.Data - enable: DF.Check - file_backup: DF.Check - frequency: DF.Literal["", "Daily", "Weekly"] - last_backup_on: DF.Datetime | None - refresh_token: DF.Data | None - send_email_for_successful_backup: DF.Check - # end: auto-generated types - - def validate(self): - doc_before_save = self.get_doc_before_save() - if doc_before_save and doc_before_save.backup_folder_name != self.backup_folder_name: - self.backup_folder_id = "" - - def get_access_token(self): - if not self.refresh_token: - button_label = frappe.bold(_("Allow Google Drive Access")) - raise frappe.ValidationError(_("Click on {0} to generate Refresh Token.").format(button_label)) - - oauth_obj = GoogleOAuth("drive") - r = oauth_obj.refresh_access_token( - self.get_password(fieldname="refresh_token", raise_exception=False) - ) - - return r.get("access_token") - - -@frappe.whitelist(methods=["POST"]) -def authorize_access(reauthorize=False, code=None): - """ - If no Authorization code get it from Google and then request for Refresh Token. - Google Contact Name is set to flags to set_value after Authorization Code is obtained. - """ - - oauth_code = frappe.db.get_single_value("Google Drive", "authorization_code") if not code else code - oauth_obj = GoogleOAuth("drive") - - if not oauth_code or reauthorize: - if reauthorize: - frappe.db.set_single_value("Google Drive", "backup_folder_id", "") - return oauth_obj.get_authentication_url( - { - "redirect": f"/app/Form/{quote('Google Drive')}", - }, - ) - - r = oauth_obj.authorize(oauth_code) - frappe.db.set_single_value( - "Google Drive", - {"authorization_code": oauth_code, "refresh_token": r.get("refresh_token")}, - ) - - -def get_google_drive_object(): - """Return an object of Google Drive.""" - account = frappe.get_doc("Google Drive") - oauth_obj = GoogleOAuth("drive") - - google_drive = oauth_obj.get_google_service_object( - account.get_access_token(), - account.get_password(fieldname="indexing_refresh_token", raise_exception=False), - ) - - return google_drive, account - - -def check_for_folder_in_google_drive(): - """Checks if folder exists in Google Drive else create it.""" - - def _create_folder_in_google_drive(google_drive, account): - file_metadata = { - "name": account.backup_folder_name, - "mimeType": "application/vnd.google-apps.folder", - } - - try: - folder = google_drive.files().create(body=file_metadata, fields="id").execute() - frappe.db.set_single_value("Google Drive", "backup_folder_id", folder.get("id")) - frappe.db.commit() - except HttpError as e: - frappe.throw( - _("Google Drive - Could not create folder in Google Drive - Error Code {0}").format(e) - ) - - google_drive, account = get_google_drive_object() - - if account.backup_folder_id: - return - - backup_folder_exists = False - - try: - google_drive_folders = ( - google_drive.files().list(q="mimeType='application/vnd.google-apps.folder'").execute() - ) - except HttpError as e: - frappe.throw(_("Google Drive - Could not find folder in Google Drive - Error Code {0}").format(e)) - - for f in google_drive_folders.get("files"): - if f.get("name") == account.backup_folder_name: - frappe.db.set_single_value("Google Drive", "backup_folder_id", f.get("id")) - frappe.db.commit() - backup_folder_exists = True - break - - if not backup_folder_exists: - _create_folder_in_google_drive(google_drive, account) - - -@frappe.whitelist() -def take_backup(): - """Enqueue longjob for taking backup to Google Drive""" - enqueue( - "frappe.integrations.doctype.google_drive.google_drive.upload_system_backup_to_google_drive", - queue="long", - timeout=1500, - ) - frappe.msgprint(_("Queued for backup. It may take a few minutes to an hour.")) - - -def upload_system_backup_to_google_drive(): - """ - Upload system backup to Google Drive - """ - # Get Google Drive Object - google_drive, account = get_google_drive_object() - - # Check if folder exists in Google Drive - check_for_folder_in_google_drive() - account.load_from_db() - - validate_file_size() - - if frappe.flags.create_new_backup: - set_progress(1, _("Backing up Data.")) - backup = new_backup() - file_urls = [] - file_urls.append(backup.backup_path_db) - file_urls.append(backup.backup_path_conf) - - if account.file_backup: - file_urls.append(backup.backup_path_files) - file_urls.append(backup.backup_path_private_files) - else: - file_urls = get_latest_backup_file(with_files=account.file_backup) - - for fileurl in file_urls: - if not fileurl: - continue - - file_metadata = {"name": os.path.basename(fileurl), "parents": [account.backup_folder_id]} - - try: - media = MediaFileUpload( - get_absolute_path(filename=fileurl), mimetype="application/gzip", resumable=True - ) - except OSError as e: - frappe.throw(_("Google Drive - Could not locate - {0}").format(e)) - - try: - set_progress(2, _("Uploading backup to Google Drive.")) - google_drive.files().create(body=file_metadata, media_body=media, fields="id").execute() - except HttpError as e: - send_email(False, "Google Drive", "Google Drive", "email", error_status=e) - - set_progress(3, _("Uploading successful.")) - frappe.db.set_single_value("Google Drive", "last_backup_on", frappe.utils.now_datetime()) - send_email(True, "Google Drive", "Google Drive", "email") - return _("Google Drive Backup Successful.") - - -def daily_backup(): - drive_settings = frappe.db.get_singles_dict("Google Drive", cast=True) - if drive_settings.enable and drive_settings.frequency == "Daily": - upload_system_backup_to_google_drive() - - -def weekly_backup(): - drive_settings = frappe.db.get_singles_dict("Google Drive", cast=True) - if drive_settings.enable and drive_settings.frequency == "Weekly": - upload_system_backup_to_google_drive() - - -def get_absolute_path(filename): - file_path = os.path.join(get_backups_path()[2:], os.path.basename(filename)) - return f"{get_bench_path()}/sites/{file_path}" - - -def set_progress(progress, message): - frappe.publish_realtime( - "upload_to_google_drive", - dict(progress=progress, total=3, message=message), - user=frappe.session.user, - ) diff --git a/frappe/integrations/doctype/google_drive/test_google_drive.py b/frappe/integrations/doctype/google_drive/test_google_drive.py deleted file mode 100644 index 90c400ba80..0000000000 --- a/frappe/integrations/doctype/google_drive/test_google_drive.py +++ /dev/null @@ -1,8 +0,0 @@ -# Copyright (c) 2019, Frappe Technologies and Contributors -# License: MIT. See LICENSE -# import frappe -from frappe.tests import IntegrationTestCase - - -class TestGoogleDrive(IntegrationTestCase): - pass diff --git a/frappe/integrations/doctype/s3_backup_settings/__init__.py b/frappe/integrations/doctype/s3_backup_settings/__init__.py deleted file mode 100755 index e69de29bb2..0000000000 diff --git a/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js b/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js deleted file mode 100755 index 6db4087cf3..0000000000 --- a/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright (c) 2017, Frappe Technologies and contributors -// For license information, please see license.txt - -frappe.ui.form.on("S3 Backup Settings", { - refresh: function (frm) { - frm.clear_custom_buttons(); - frm.events.take_backup(frm); - }, - - take_backup: function (frm) { - if (frm.doc.access_key_id && frm.doc.secret_access_key) { - frm.add_custom_button(__("Take Backup Now"), function () { - frm.dashboard.set_headline_alert("S3 Backup Started!"); - frappe.call({ - method: "frappe.integrations.doctype.s3_backup_settings.s3_backup_settings.take_backups_s3", - callback: function (r) { - if (!r.exc) { - frappe.msgprint(__("S3 Backup complete!")); - frm.dashboard.clear_headline(); - } - }, - }); - }).addClass("btn-primary"); - } - }, -}); diff --git a/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json b/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json deleted file mode 100755 index 320128df66..0000000000 --- a/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json +++ /dev/null @@ -1,163 +0,0 @@ -{ - "actions": [], - "creation": "2017-09-04 20:57:20.129205", - "doctype": "DocType", - "editable_grid": 1, - "engine": "InnoDB", - "field_order": [ - "enabled", - "api_access_section", - "access_key_id", - "column_break_4", - "secret_access_key", - "notification_section", - "notify_email", - "column_break_8", - "send_email_for_successful_backup", - "s3_bucket_details_section", - "bucket", - "endpoint_url", - "column_break_13", - "backup_path", - "backup_details_section", - "frequency", - "backup_files" - ], - "fields": [ - { - "default": "0", - "fieldname": "enabled", - "fieldtype": "Check", - "label": "Enable Automatic Backup" - }, - { - "fieldname": "notify_email", - "fieldtype": "Data", - "in_list_view": 1, - "label": "Send Notifications To", - "mandatory_depends_on": "enabled", - "reqd": 1 - }, - { - "default": "1", - "description": "By default, emails are only sent for failed backups.", - "fieldname": "send_email_for_successful_backup", - "fieldtype": "Check", - "label": "Send Email for Successful Backup" - }, - { - "fieldname": "frequency", - "fieldtype": "Select", - "in_list_view": 1, - "label": "Backup Frequency", - "mandatory_depends_on": "enabled", - "options": "Daily\nWeekly\nMonthly\nNone", - "reqd": 1 - }, - { - "fieldname": "access_key_id", - "fieldtype": "Data", - "in_list_view": 1, - "label": "Access Key ID", - "mandatory_depends_on": "enabled", - "reqd": 1 - }, - { - "fieldname": "secret_access_key", - "fieldtype": "Password", - "in_list_view": 1, - "label": "Access Key Secret", - "mandatory_depends_on": "enabled", - "reqd": 1 - }, - { - "default": "https://s3.amazonaws.com", - "description": "Only change this if you want to use other S3 compatible object storage backends.", - "fieldname": "endpoint_url", - "fieldtype": "Data", - "label": "Endpoint URL" - }, - { - "fieldname": "bucket", - "fieldtype": "Data", - "label": "Bucket Name", - "mandatory_depends_on": "enabled", - "reqd": 1 - }, - { - "depends_on": "enabled", - "fieldname": "api_access_section", - "fieldtype": "Section Break", - "label": "API Access" - }, - { - "fieldname": "column_break_4", - "fieldtype": "Column Break" - }, - { - "depends_on": "enabled", - "fieldname": "notification_section", - "fieldtype": "Section Break", - "label": "Notification" - }, - { - "fieldname": "column_break_8", - "fieldtype": "Column Break" - }, - { - "depends_on": "enabled", - "fieldname": "s3_bucket_details_section", - "fieldtype": "Section Break", - "label": "S3 Bucket Details" - }, - { - "fieldname": "column_break_13", - "fieldtype": "Column Break" - }, - { - "depends_on": "enabled", - "fieldname": "backup_details_section", - "fieldtype": "Section Break", - "label": "Backup Details" - }, - { - "default": "1", - "description": "Backup public and private files along with the database.", - "fieldname": "backup_files", - "fieldtype": "Check", - "label": "Backup Files" - }, - { - "description": "If it's empty, it will backup to the root of the bucket.", - "fieldname": "backup_path", - "fieldtype": "Data", - "label": "Backup Path" - } - ], - "hide_toolbar": 1, - "issingle": 1, - "links": [], - "modified": "2025-03-15 12:17:49.167012", - "modified_by": "Administrator", - "module": "Integrations", - "name": "S3 Backup Settings", - "owner": "Administrator", - "permissions": [ - { - "create": 1, - "delete": 1, - "email": 1, - "print": 1, - "read": 1, - "role": "System Manager", - "share": 1, - "write": 1 - } - ], - "quick_entry": 1, - "row_format": "Dynamic", - "sort_field": "creation", - "sort_order": "DESC", - "states": [], - "track_changes": 1 -} diff --git a/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py b/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py deleted file mode 100755 index 885e423c41..0000000000 --- a/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py +++ /dev/null @@ -1,196 +0,0 @@ -# Copyright (c) 2017, Frappe Technologies and contributors -# License: MIT. See LICENSE -import os -import os.path - -import boto3 -from botocore.exceptions import ClientError -from rq.timeouts import JobTimeoutException - -import frappe -from frappe import _ -from frappe.integrations.offsite_backup_utils import ( - generate_files_backup, - get_latest_backup_file, - send_email, - validate_file_size, -) -from frappe.model.document import Document -from frappe.utils import cint -from frappe.utils.background_jobs import enqueue - - -class S3BackupSettings(Document): - # begin: auto-generated types - # This code is auto-generated. Do not modify anything in this block. - - from typing import TYPE_CHECKING - - if TYPE_CHECKING: - from frappe.types import DF - - access_key_id: DF.Data - backup_files: DF.Check - backup_path: DF.Data | None - bucket: DF.Data - enabled: DF.Check - endpoint_url: DF.Data | None - frequency: DF.Literal["Daily", "Weekly", "Monthly", "None"] - notify_email: DF.Data - secret_access_key: DF.Password - send_email_for_successful_backup: DF.Check - # end: auto-generated types - - def validate(self): - if not self.enabled: - return - - if not self.endpoint_url: - self.endpoint_url = "https://s3.amazonaws.com" - - if self.backup_path and self.backup_path[-1] != "/": - self.backup_path += "/" - - conn = boto3.client( - "s3", - aws_access_key_id=self.access_key_id, - aws_secret_access_key=self.get_password("secret_access_key"), - endpoint_url=self.endpoint_url, - ) - - try: - # Head_bucket returns a 200 OK if the bucket exists and have access to it. - # Requires ListBucket permission - conn.head_bucket(Bucket=self.bucket) - except ClientError as e: - error_code = e.response["Error"]["Code"] - bucket_name = frappe.bold(self.bucket) - if error_code == "403": - msg = _("Do not have permission to access bucket {0}.").format(bucket_name) - elif error_code == "404": - msg = _("Bucket {0} not found.").format(bucket_name) - else: - msg = e.args[0] - - frappe.throw(msg) - - -@frappe.whitelist() -def take_backup(): - """Enqueue longjob for taking backup to s3""" - enqueue( - "frappe.integrations.doctype.s3_backup_settings.s3_backup_settings.take_backups_s3", - queue="long", - timeout=1500, - ) - frappe.msgprint(_("Queued for backup. It may take a few minutes to an hour.")) - - -def take_backups_daily(): - take_backups_if("Daily") - - -def take_backups_weekly(): - take_backups_if("Weekly") - - -def take_backups_monthly(): - take_backups_if("Monthly") - - -def take_backups_if(freq): - if cint(frappe.db.get_single_value("S3 Backup Settings", "enabled")): - if frappe.db.get_single_value("S3 Backup Settings", "frequency") == freq: - take_backups_s3() - - -@frappe.whitelist() -def take_backups_s3(retry_count=0): - try: - validate_file_size() - backup_to_s3() - send_email(True, "Amazon S3", "S3 Backup Settings", "notify_email") - except JobTimeoutException: - if retry_count < 2: - args = {"retry_count": retry_count + 1} - enqueue( - "frappe.integrations.doctype.s3_backup_settings.s3_backup_settings.take_backups_s3", - queue="long", - timeout=1500, - **args, - ) - else: - notify() - except Exception: - notify() - - -def notify(): - error_message = frappe.get_traceback() - send_email(False, "Amazon S3", "S3 Backup Settings", "notify_email", error_message) - - -def backup_to_s3(): - from frappe.utils import get_backups_path - from frappe.utils.backups import new_backup - - doc = frappe.get_single("S3 Backup Settings") - bucket = doc.bucket - path = doc.backup_path or "" - backup_files = cint(doc.backup_files) - - conn = boto3.client( - "s3", - aws_access_key_id=doc.access_key_id, - aws_secret_access_key=doc.get_password("secret_access_key"), - endpoint_url=doc.endpoint_url or "https://s3.amazonaws.com", - ) - - if frappe.flags.create_new_backup: - backup = new_backup( - ignore_files=False, - backup_path_db=None, - backup_path_files=None, - backup_path_private_files=None, - force=True, - ) - db_filename = os.path.join(get_backups_path(), os.path.basename(backup.backup_path_db)) - site_config = os.path.join(get_backups_path(), os.path.basename(backup.backup_path_conf)) - if backup_files: - files_filename = os.path.join(get_backups_path(), os.path.basename(backup.backup_path_files)) - private_files = os.path.join( - get_backups_path(), os.path.basename(backup.backup_path_private_files) - ) - else: - if backup_files: - db_filename, site_config, files_filename, private_files = get_latest_backup_file( - with_files=backup_files - ) - - if not files_filename or not private_files: - generate_files_backup() - db_filename, site_config, files_filename, private_files = get_latest_backup_file( - with_files=backup_files - ) - - else: - db_filename, site_config = get_latest_backup_file() - - folder = path + os.path.basename(db_filename)[:15] + "/" - # for adding datetime to folder name - - upload_file_to_s3(db_filename, folder, conn, bucket) - upload_file_to_s3(site_config, folder, conn, bucket) - - if backup_files: - if private_files: - upload_file_to_s3(private_files, folder, conn, bucket) - - if files_filename: - upload_file_to_s3(files_filename, folder, conn, bucket) - - -def upload_file_to_s3(filename, folder, conn, bucket): - destpath = os.path.join(folder, os.path.basename(filename)) - print("Uploading file:", filename) - conn.upload_file(filename, bucket, destpath) # Requires PutObject permission diff --git a/frappe/integrations/doctype/s3_backup_settings/test_s3_backup_settings.py b/frappe/integrations/doctype/s3_backup_settings/test_s3_backup_settings.py deleted file mode 100755 index ff40ab8a11..0000000000 --- a/frappe/integrations/doctype/s3_backup_settings/test_s3_backup_settings.py +++ /dev/null @@ -1,7 +0,0 @@ -# Copyright (c) 2017, Frappe Technologies and Contributors -# License: MIT. See LICENSE -from frappe.tests import IntegrationTestCase - - -class TestS3BackupSettings(IntegrationTestCase): - pass diff --git a/frappe/integrations/google_oauth.py b/frappe/integrations/google_oauth.py index d9ca8e596a..a69fde7346 100644 --- a/frappe/integrations/google_oauth.py +++ b/frappe/integrations/google_oauth.py @@ -22,7 +22,6 @@ _SERVICES = { _DOMAIN_CALLBACK_METHODS = { "mail": "frappe.email.oauth.authorize_google_access", "contacts": "frappe.integrations.doctype.google_contacts.google_contacts.authorize_access", - "drive": "frappe.integrations.doctype.google_drive.google_drive.authorize_access", "indexing": "frappe.website.doctype.website_settings.google_indexing.authorize_access", } diff --git a/frappe/integrations/workspace/integrations/integrations.json b/frappe/integrations/workspace/integrations/integrations.json index 3fe9965bcc..2d72732361 100644 --- a/frappe/integrations/workspace/integrations/integrations.json +++ b/frappe/integrations/workspace/integrations/integrations.json @@ -12,47 +12,6 @@ "is_hidden": 0, "label": "Integrations", "links": [ - { - "hidden": 0, - "is_query_report": 0, - "label": "Backup", - "link_count": 0, - "onboard": 0, - "type": "Card Break" - }, - { - "dependencies": "", - "hidden": 0, - "is_query_report": 0, - "label": "Dropbox Settings", - "link_count": 0, - "link_to": "Dropbox Settings", - "link_type": "DocType", - "onboard": 0, - "type": "Link" - }, - { - "dependencies": "", - "hidden": 0, - "is_query_report": 0, - "label": "S3 Backup Settings", - "link_count": 0, - "link_to": "S3 Backup Settings", - "link_type": "DocType", - "onboard": 0, - "type": "Link" - }, - { - "dependencies": "", - "hidden": 0, - "is_query_report": 0, - "label": "Google Drive", - "link_count": 0, - "link_to": "Google Drive", - "link_type": "DocType", - "onboard": 0, - "type": "Link" - }, { "hidden": 0, "is_query_report": 0, diff --git a/frappe/translate.py b/frappe/translate.py index acd02d46d6..f996f2d548 100644 --- a/frappe/translate.py +++ b/frappe/translate.py @@ -810,7 +810,7 @@ def migrate_translations(source_app, target_app): """Migrate target-app-specific translations from source-app to target-app""" strings_in_source_app = [m[1] for m in frappe.translate.get_messages_for_app(source_app)] strings_in_target_app = [m[1] for m in frappe.translate.get_messages_for_app(target_app)] - + print(strings_in_source_app) strings_in_target_app_but_not_in_source_app = list( set(strings_in_target_app) - set(strings_in_source_app) ) diff --git a/pyproject.toml b/pyproject.toml index c54643c640..ef105449a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -83,8 +83,6 @@ dependencies = [ "markdownify~=0.14.1", # integration dependencies - "boto3~=1.34.143", - "dropbox~=11.36.2", "google-api-python-client~=2.2.0", "google-auth-oauthlib~=0.4.4", "google-auth~=1.29.0", @@ -250,13 +248,9 @@ disable_error_code = [ # External libraries without types [[tool.mypy.overrides]] module = [ - "apiclient.http", "bleach_allowlist", - "boto3", - "botocore.exceptions", "cssutils", "cups", - "dropbox", "email_reply_parser", "filetype", "google", From a639828bd4cae2b00c944319b5852c239ef2165b Mon Sep 17 00:00:00 2001 From: sokumon.YYYY. - Year in 4 digits.YY. - Year in 2 digits.MM. - Month.DD. - Day of month.WW. - Week of the year.{fieldname}. - fieldname on the document e.g.\n"
+" branch\n"
+" .FY. - Fiscal Year (requires ERPNext to be installed).ABBR. - Company Abbreviation (requires ERPNext to be installed)Notes:
\n\n" +"data-fieldtype and data-fieldnamevaluesection-breakcolumn-break1. 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 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.
For styling, the Boostrap CSS framework is provided and you can enjoy the full range of classes.
\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"
+"doc.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
frappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\") | \n"
+"\t\t\tGet value from another document. | \n" +"\t\t
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 "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"
+"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" +"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 "<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\"" +msgstr "" + +#. Content of the 'html_7' (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "
doc.due_date==nowdate()
doc.total > 40000\n" +"
Condition Examples:
\n" +"doc.status==\"Open\"\n" +msgstr "" + +#. Content of the 'Condition description' (HTML) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "
doc.due_date==nowdate()
doc.total > 40000\n" +"
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"
+"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:446
+msgid "Your OTP secret on {0} has been reset. If you did not perform this reset and did not request it, please contact your System Administrator immediately.
" +msgstr "" + +#. Description of the 'Cron Format' (Data) field in DocType 'Scheduled Job +#. Type' +#. 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" +"
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 ""
+
+#. Header text in the Integrations Workspace
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Reports & Masters"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.js:39
+msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
+msgstr ""
+
+#. 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:1034
+msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
+msgstr ""
+
+#: frappe/website/doctype/blog_post/blog_post.py:92
+msgid "A featured post must have a cover image"
+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:257
+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.{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 ""
+
+#. Label of the comment_limit (Int) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Comment limit"
+msgstr ""
+
+#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Comment limit per hour"
+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:59 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/public/js/frappe/model/meta.js:209
+#: frappe/public/js/frappe/model/model.js:135
+#: frappe/website/doctype/web_form/templates/web_form.html:122
+msgid "Comments"
+msgstr ""
+
+#. 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:38
+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:54
+#: frappe/public/js/frappe/utils/diffview.js:28
+msgid "Compare Versions"
+msgstr ""
+
+#: frappe/core/doctype/server_script/server_script.py:157
+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:477
+#: 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:205
+#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/email/doctype/notification/notification.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/website/doctype/web_form/web_form.js:197
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Condition"
+msgstr ""
+
+#. Label of the condition_json (JSON) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Condition JSON"
+msgstr ""
+
+#. Label of 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 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:481
+msgid "Configure Chart"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:390
+msgid "Configure Columns"
+msgstr ""
+
+#: frappe/core/doctype/recorder/recorder_list.js:200
+msgid "Configure Recorder"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/Field.vue:103
+msgid "Configure columns for {0}"
+msgstr ""
+
+#. Description of the 'Amended Documents' (Section Break) field in DocType
+#. 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Configure how amended documents will be named.filters. 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:1421
+msgid "Filters:"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572
+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:141
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144
+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'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.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/report/transaction_log_report/transaction_log_report.py:49
+msgid "First Transaction"
+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:1450
+msgid "Fold can not be at the end of the form"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1448
+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:472
+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:876
+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:130
+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:111
+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:345
+msgid "Following fields have missing values"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/field_group.js:126
+msgid "Following fields have missing values:"
+msgstr ""
+
+#: frappe/email/doctype/newsletter/newsletter.js:30
+msgid "Following links are broken in the email content: {0}"
+msgstr ""
+
+#. Label of the font (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Font"
+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:75
+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:116
+msgid "Footer might not be visible as {0} option is disabled"
+msgstr ""
+
+#. Description of the 'Footer HTML' (HTML Editor) field in DocType 'Letter
+#. Head'
+#: 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:553
+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:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:102
+msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
+msgstr ""
+
+#: 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 ""
+
+#. Description of the 'Enable Automatic Linking in Documents' (Check) field in
+#. DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "For more information, click here."
+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:1751
+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:83
+#: 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:552
+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 ""
+
+#: 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:149
+msgid "Frappe"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/about.js:4
+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:549
+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'
+#. Label of the frequency (Select) field in DocType 'Google Drive'
+#: 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/integrations/doctype/google_drive/google_drive.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'
+#. Label of the from_section (Section Break) field in DocType 'Newsletter'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/permission_log/permission_log.js:12
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
+msgid "From"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:194
+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:1777
+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'
+#. Label of the full_name (Data) field in DocType 'Blogger'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/user/user.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:479
+#: frappe/templates/signup.html:4
+#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
+#: frappe/website/doctype/blogger/blogger.json
+msgid "Full Name"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:67
+#: 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:247
+#: frappe/public/js/frappe/widgets/widget_dialog.js:686
+msgid "Function"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:693
+msgid "Function Based On"
+msgstr ""
+
+#: frappe/__init__.py:670
+msgid "Function {0} is not whitelisted."
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:419
+msgid "Further nodes can be only created under 'Group' type nodes"
+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:877
+msgid "Generate New Report"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:394
+msgid "Generate Random Password"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/utils/utils.js:1787
+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:219
+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:840
+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:10
+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:810
+msgid "Google Calendar - Contact / email not found. Did not add attendee for -/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 'Content Type' (Select) field in DocType 'Newsletter'
+#. Option for the 'Message Type' (Select) field in DocType 'Notification'
+#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
+#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:92
+#: 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 ""
+
+#: frappe/core/doctype/doctype/doctype.py:1342
+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:320
+msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
+msgstr ""
+
+#. Label of the total_fields (Select) field in DocType 'List View Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Maximum Number of Fields"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/attachments.js:38
+msgid "Maximum attachment limit of {0} has been reached."
+msgstr ""
+
+#: frappe/model/rename_doc.py:690
+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:1734
+#: 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:196
+#: 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:754
+msgid "Merge with existing"
+msgstr ""
+
+#: frappe/utils/nestedset.py:307
+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 (Text Editor) field in DocType 'Newsletter'
+#. Label of the message_sb (Section Break) field in DocType 'Notification'
+#. Label of the message (Code) field in DocType 'Notification'
+#. Label of the message (Text) field in DocType 'Workflow Document State'
+#: 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/newsletter/newsletter.json
+#: frappe/email/doctype/notification/notification.js:201
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/ui/messages.js:182
+#: frappe/public/js/frappe/views/communication.js:123
+#: 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_html (HTML Editor) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
+msgid "Message (HTML)"
+msgstr ""
+
+#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
+msgid "Message (Markdown)"
+msgstr ""
+
+#. Label of the message_examples (HTML) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Message Examples"
+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:950
+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 ""
+
+#. Label of the meta_description (Small Text) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:124
+msgid "Meta Description"
+msgstr ""
+
+#. Label of the meta_image (Attach Image) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:131
+msgid "Meta Image"
+msgstr ""
+
+#. Label of the meta_tags (Section Break) field in DocType 'Blog Post'
+#. Label of the metatags_section (Section Break) field in DocType 'Web Page'
+#. Label of the meta_tags (Table) field in DocType 'Website Route Meta'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_route_meta/website_route_meta.json
+msgid "Meta Tags"
+msgstr ""
+
+#. Label of the meta_title (Data) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:117
+msgid "Meta Title"
+msgstr ""
+
+#. 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 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:672
+msgid "Method Not Allowed"
+msgstr ""
+
+#: frappe/desk/doctype/number_card/number_card.py:73
+msgid "Method is required to create a number card"
+msgstr ""
+
+#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
+#: 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 ""
+
+#. 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 ""
+
+#. 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:218
+msgid "Missing DocType"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1526
+msgid "Missing Field"
+msgstr ""
+
+#: frappe/public/js/frappe/form/save.js:131
+msgid "Missing Fields"
+msgstr ""
+
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
+msgid "Missing Filters Required"
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:110
+msgid "Missing Permission"
+msgstr ""
+
+#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
+msgid "Missing Value"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/widgets/widget_dialog.js:361
+#: 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 the modal_trigger (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Modal Trigger"
+msgstr ""
+
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:106
+msgid "Modified By"
+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:30
+#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
+#: frappe/core/doctype/user_type_module/user_type_module.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/public/js/frappe/utils/utils.js:926
+#: 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'
+#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
+#. Settings'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.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'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/user/user.json
+msgid "More Information"
+msgstr ""
+
+#: 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:76
+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:193
+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:168
+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:331
+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:208
+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:462
+#: 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:77
+#: frappe/public/js/frappe/form/multi_select_dialog.js:240
+#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/views/file/file_view.js:97
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
+msgid "Name"
+msgstr ""
+
+#: frappe/integrations/doctype/webhook/webhook.js:29
+msgid "Name (Doc Name)"
+msgstr ""
+
+#: frappe/desk/utils.py:22
+msgid "Name already taken, please set a new name"
+msgstr ""
+
+#: frappe/model/naming.py:504
+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:499
+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"
+"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:928
+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 ""
+
+#: frappe/public/js/frappe/socketio_client.js:82
+msgid "Progress"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+msgid "Project"
+msgstr ""
+
+#. Label of the property (Data) field in DocType 'Property Setter'
+#: frappe/core/doctype/version/version_view.html:12
+#: frappe/core/doctype/version/version_view.html:37
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "Property"
+msgstr ""
+
+#. 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:501
+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: \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:313
+#: 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 ""
+
+#. Description of a DocType
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Settings to control blog categories and interactions like comments and likes"
+msgstr ""
+
+#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567
+msgid "Setup"
+msgstr ""
+
+#: 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:1763
+#: frappe/public/js/frappe/views/reports/report_view.js:1698
+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 ""
+
+#. Label of the short_name (Data) field in DocType 'Blogger'
+#: frappe/website/doctype/blogger/blogger.json
+msgid "Short Name"
+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
+msgid "Show"
+msgstr ""
+
+#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Show \"Call to Action\" in Blog"
+msgstr ""
+
+#. Label of 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 ""
+
+#: 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 ""
+
+#: frappe/public/js/frappe/form/layout.js:579
+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:407
+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 ""
+
+#: 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 ""
+
+#: frappe/public/js/frappe/list/list_sidebar.html:77
+#: frappe/public/js/frappe/list/list_view.js:1704
+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:1521
+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 ""
+
+#: 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 ""
+
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24
+msgid "Show all blogs"
+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_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:273
+#: frappe/public/js/frappe/form/layout.js:291
+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:495
+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:1016
+msgid "Sign Up is disabled"
+msgstr ""
+
+#: frappe/templates/signup.html:16 frappe/www/login.html:140
+#: frappe/www/login.html:156 frappe/www/update-password.html:58
+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 '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\")"
+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 ""
+
+#. 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:125
+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
+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:337
+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'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_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 ""
+
+#: 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:114
+msgid "Sorry! I could not find what you were looking for."
+msgstr ""
+
+#: frappe/public/js/frappe/views/pageview.js:122
+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:1550
+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/ui/toolbar/about.js:8
+#: frappe/public/js/frappe/utils/utils.js:1717
+#: 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 ""
+
+#. 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 ""
+
+#: 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:419
+#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: 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:78
+msgid "Standard DocType can not be deleted."
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:228
+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:75
+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:354
+msgid "Standard Reports cannot be deleted"
+msgstr ""
+
+#: frappe/desk/reportview.py:325
+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:296
+#: frappe/printing/page/print/print.js:343
+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:142
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/public/js/frappe/utils/common.js:409
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Start Date"
+msgstr ""
+
+#. 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/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:24
+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 '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_section (Section Break) field in DocType 'Newsletter'
+#. Label of the status (Select) field in DocType 'Integration Request'
+#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
+#. Label of the status (Select) field in DocType 'Personal Data Deletion
+#. Request'
+#. Label of the status (Select) field in DocType 'Personal Data Deletion Step'
+#. Label of the status (Select) field in DocType 'Workflow Action'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/data_import/data_import.js:483
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/public/js/frappe/list/list_settings.js:359
+#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: 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:163
+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:438
+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 ""
+
+#. 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 (Small Text) field in DocType 'Newsletter'
+#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
+#. Label of the subject (Data) field in DocType 'Notification'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: 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/newsletter/newsletter.json
+#: frappe/email/doctype/notification/notification.js:200
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/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:1935
+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'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:138
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/quick_entry.js:225
+#: frappe/public/js/frappe/ui/capture.js:307
+msgid "Submit"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:2086
+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:62
+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:156
+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:128
+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:2091
+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:136
+msgid "Submitted"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.py:103
+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'
+#. Label of the subtitle (Data) field in DocType 'Blog Settings'
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Subtitle"
+msgstr ""
+
+#. 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:1166
+#: 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 ""
+
+#: frappe/www/update-password.html:81
+msgid "Success! You are good to go 👍"
+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:307
+msgid "Successful Transactions"
+msgstr ""
+
+#: frappe/model/rename_doc.py:699
+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:720
+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:337
+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:2494
+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_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/dropbox_settings/dropbox_settings.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_drive/google_drive.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/push_notification_settings/push_notification_settings.json
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/printing/doctype/print_heading/print_heading.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/website/doctype/discussion_reply/discussion_reply.json
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/website/doctype/website_route_meta/website_route_meta.json
+#: frappe/workflow/doctype/workflow/workflow.json
+#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+msgid "System Manager"
+msgstr ""
+
+#: 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 ""
+
+#. 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:72
+msgid "Table Field"
+msgstr ""
+
+#. Label of the table_fieldname (Data) field in DocType 'DocType Link'
+#: frappe/core/doctype/doctype_link/doctype_link.json
+msgid "Table Fieldname"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1203
+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:1165
+msgid "Table updated"
+msgstr ""
+
+#: frappe/model/document.py:1565
+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:57
+#: 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/integrations/doctype/google_drive/google_drive.js:29
+msgid "Take Backup"
+msgstr ""
+
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
+msgid "Take Backup Now"
+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 ""
+
+#: frappe/desk/doctype/todo/todo_calendar.js:19
+#: frappe/desk/doctype/todo/todo_calendar.js:25
+msgid "Task"
+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:1027
+msgid "Temporarily Disabled"
+msgstr ""
+
+#: frappe/core/doctype/translation/test_translation.py:56
+#: frappe/core/doctype/translation/test_translation.py:63
+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:58
+#: frappe/core/doctype/translation/test_translation.py:66
+msgid "Test Spanish"
+msgstr ""
+
+#: frappe/email/doctype/newsletter/newsletter.py:92
+msgid "Test email sent to {0}"
+msgstr ""
+
+#: frappe/core/doctype/file/test_file.py:388
+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:140
+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/email/doctype/newsletter/newsletter.py:332
+msgid "Thank you for your interest in subscribing to our updates"
+msgstr ""
+
+#: frappe/templates/includes/contact.js:36
+msgid "Thank you for your message"
+msgstr ""
+
+#: 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:1188
+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:201
+msgid "The Condition '{0}' is invalid"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:208
+msgid "The File URL you've entered is incorrect"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108
+msgid "The Next Scheduled Date cannot be later than the End Date."
+msgstr ""
+
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:29
+msgid "The Push Relay Server URL key (`push_relay_server_url`) is missing in your site config"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:367
+msgid "The User record for this request has been auto-deleted due to inactivity by system admins."
+msgstr ""
+
+#: 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:475
+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:34
+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:658
+msgid "The count shown is an estimated count. Click here to see the accurate count."
+msgstr ""
+
+#. Description of the 'Code' (Data) field in DocType 'Country'
+#: frappe/geo/doctype/country/country.json
+msgid "The country's ISO 3166 ALPHA-2 code."
+msgstr ""
+
+#: frappe/public/js/frappe/views/interaction.js:301
+msgid "The document could not be correctly assigned"
+msgstr ""
+
+#: 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:145
+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:1086
+msgid "The following values are invalid: {0}. Values must be one of {1}"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:1043
+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:88
+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/core/doctype/user/user.py:987
+msgid "The reset password link has been expired"
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:989
+msgid "The reset password link has either been used before or is invalid"
+msgstr ""
+
+#: frappe/app.py:375 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:334
+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:175
+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:961
+msgid "There are {0} with the same filters already in the queue:"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.js:81
+#: frappe/website/doctype/web_form/web_form.js:317
+msgid "There can be only 9 Page Break fields in a Web Form"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1443
+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/public/js/frappe/ui/notifications/notifications.js:492
+msgid "There is nothing new to show you right now."
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372
+msgid "There is some problem with the file url: {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:958
+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:182
+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:837
+msgid "There were errors while sending email. Please try again."
+msgstr ""
+
+#: frappe/model/naming.py:494
+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 '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:390
+msgid "This Kanban Board will be private"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:666
+msgid "This Month"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:670
+msgid "This Quarter"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:662
+msgid "This Week"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:674
+msgid "This Year"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:220
+msgid "This action is irreversible. Do you wish to continue?"
+msgstr ""
+
+#: frappe/__init__.py:750
+msgid "This action is only allowed for {}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/toolbar.js:117
+#: frappe/public/js/frappe/model/model.js:755
+msgid "This cannot be undone"
+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:1054
+msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
+msgstr ""
+
+#: frappe/model/delete_doc.py:112
+msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
+msgstr ""
+
+#: 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. New {{ doc.doctype }} #{{ doc.name }}{{ doc.name }} Delivered{ \"id\": \"{{ doc.name }}\" }\n"
+"\n"
+"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 ""
+
+#: frappe/integrations/doctype/google_drive/google_drive.js:8
+msgid "To use Google Drive, 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:1564
+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:1568
+msgid "Toggle Sidebar"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1819
+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_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:254
+msgid "Too Many Documents"
+msgstr ""
+
+#: frappe/rate_limiter.py:101
+msgid "Too Many Requests"
+msgstr ""
+
+#: frappe/database/database.py:474
+msgid "Too many changes to database in single action."
+msgstr ""
+
+#: frappe/utils/background_jobs.py:728
+msgid "Too many queued background jobs ({0}). Please retry after some time."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1028
+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:533
+#: frappe/public/js/frappe/views/reports/print_grid.html:45
+#: frappe/public/js/frappe/views/reports/query_report.js:1320
+#: frappe/public/js/frappe/views/reports/report_view.js:1545
+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_recipients (Int) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
+msgid "Total Recipients"
+msgstr ""
+
+#. Label of the total_subscribers (Int) field in DocType 'Email Group'
+#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
+#. Email Group'
+#: frappe/email/doctype/email_group/email_group.json
+#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
+msgid "Total Subscribers"
+msgstr ""
+
+#. 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_views (Int) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
+msgid "Total Views"
+msgstr ""
+
+#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
+msgid "Total Working Time"
+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:1250
+msgid "Totals"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1225
+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"
+".MM. - Month.DD. - Day of month.WW. - Week of the year.FY. - Fiscal Year.{fieldname}. - fieldname on the document e.g.\n"
" branch\n"
" .FY. - Fiscal Year (requires ERPNext to be installed).ABBR. - Company Abbreviation (requires ERPNext to be installed)Notes:
\n" -"\n" +#: frappe/printing/doctype/print_format/print_format.json +msgid "Notes:
\n\n" "data-fieldtype and data-fieldnamevaluesection-breakcolumn-break1. Left align integers
\n" -"\n" -"[data-fieldtype=\"Int\"] .value { text-align: left; }\n"
-"\n"
-"1. Add border to sections except the last section
\n" -"\n" +"\n\n" +"1. Left align integers
\n\n" +"[data-fieldtype=\"Int\"] .value { text-align: left; }\n\n"
+"1. Add border to sections except the last section
\n\n" ".section-break { padding: 30px 0px; border-bottom: 1px solid #eee; }\n"
".section-break:last-child { padding-bottom: 0px; border-bottom: 0px; }\n"
msgstr ""
#. Content of the 'Print Format Help' (HTML) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.json
#, python-format
-msgctxt "Print Format"
-msgid ""
-"Print 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.
Uses Jinja Templating and all the fields of Address (including Custom Fields if any) will be available
\n" "{{ address_line1 }}<br>\n"
"{% if address_line2 %}{{ address_line2 }}<br>{% endif -%}\n"
@@ -519,54 +405,36 @@ msgid ""
msgstr ""
#. Content of the 'Email Reply Help' (HTML) field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
-msgid ""
-"Email Reply Example
\n"
-"\n"
-"Order Overdue\n"
-"\n"
-"Transaction {{ name }} has exceeded Due Date. Please take necessary action.\n"
-"\n"
-"Details\n"
-"\n"
+#: frappe/email/doctype/email_template/email_template.json
+msgid "Email Reply Example
\n\n"
+"Order Overdue\n\n"
+"Transaction {{ name }} has exceeded Due Date. Please take necessary action.\n\n"
+"Details\n\n"
"- Customer: {{ customer }}\n"
"- Amount: {{ grand_total }}\n"
-"\n"
-"\n"
-"How to get fieldnames
\n"
-"\n"
-"The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)
\n"
-"\n"
-"Templating
\n"
-"\n"
+"\n\n"
+"How to get fieldnames
\n\n"
+"The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)
\n\n"
+"Templating
\n\n"
"Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
\n"
msgstr ""
#. Content of the 'html_5' (HTML) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/core/doctype/data_import/data_import.json
msgid "Or
"
msgstr ""
#. Content of the 'Message Examples' (HTML) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
+#: frappe/email/doctype/notification/notification.json
#, python-format
-msgctxt "Notification"
-msgid ""
-"Message Example
\n"
-"\n"
-"<h3>Order Overdue</h3>\n"
-"\n"
-"<p>Transaction {{ doc.name }} has exceeded Due Date. Please take necessary action.</p>\n"
-"\n"
+msgid "Message Example
\n\n"
+"<h3>Order Overdue</h3>\n\n"
+"<p>Transaction {{ doc.name }} has exceeded Due Date. Please take necessary action.</p>\n\n"
"<!-- show last comment -->\n"
"{% if comments %}\n"
"Last comment: {{ comments[-1].comment }} by {{ comments[-1].by }}\n"
-"{% endif %}\n"
-"\n"
-"<h4>Details</h4>\n"
-"\n"
+"{% endif %}\n\n"
+"<h4>Details</h4>\n\n"
"<ul>\n"
"<li>Customer: {{ doc.customer }}\n"
"<li>Amount: {{ doc.grand_total }}\n"
@@ -575,103 +443,68 @@ msgid ""
msgstr ""
#. Content of the 'html_condition' (HTML) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid ""
-"Condition Examples:
\n"
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Condition Examples:
\n"
"doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n"
"
"
msgstr ""
#. Content of the 'html_7' (HTML) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid ""
-"Condition Examples:
\n"
+#: frappe/email/doctype/notification/notification.json
+msgid "Condition Examples:
\n"
"doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n"
"
\n"
msgstr ""
-#. Content of the 'Condition Description' (HTML) field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid ""
-"Multiple webforms can be created for a single doctype. Add filters specific to this webform to display correct record after submission.
For Example:
\n"
+#. Content of the 'Condition description' (HTML) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Multiple webforms can be created for a single doctype. Add filters specific to this webform to display correct record after submission.
For Example:
\n"
"If you create a separate webform every year to capture feedback from employees add a \n"
" field named year in doctype and add a filter year = 2023
\n"
msgstr ""
#. Description of the 'Context Script' (Code) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid ""
-"Set context before rendering a template. Example:
\n"
+#: frappe/website/doctype/web_page/web_page.json
+msgid "
Set context before rendering a template. Example:
\n"
"
\n"
"context.project = frappe.get_doc(\"Project\", frappe.form_dict.name)\n"
"
"
msgstr ""
#. Content of the 'JS Message' (HTML) field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
-msgid ""
-"To interact with above HTML you will have to use `root_element` as a parent selector.
For example:
// here root_element is provided by default\n"
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+msgid "To interact with above HTML you will have to use `root_element` as a parent selector.
For example:
// here root_element is provided by default\n"
"let some_class_element = root_element.querySelector('.some-class');\n"
"some_class_element.textContent = \"New content\";\n"
"
"
msgstr ""
-#: twofactor.py:469
+#: frappe/twofactor.py:446
msgid "Your OTP secret on {0} has been reset. If you did not perform this reset and did not request it, please contact your System Administrator immediately.
"
msgstr ""
#. Description of the 'Cron Format' (Data) field in DocType 'Scheduled Job
#. Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid ""
-"* * * * *\n"
-"┬ ┬ ┬ ┬ ┬\n"
-"│ │ │ │ │\n"
-"│ │ │ │ └ day of week (0 - 6) (0 is Sunday)\n"
-"│ │ │ └───── month (1 - 12)\n"
-"│ │ └────────── day of month (1 - 31)\n"
-"│ └─────────────── hour (0 - 23)\n"
-"└──────────────────── minute (0 - 59)\n"
-"\n"
-"---\n"
-"\n"
-"* - Any value\n"
-"/ - Step values\n"
-"
\n"
-msgstr ""
-
#. Description of the 'Cron Format' (Data) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid ""
-"* * * * *\n"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+msgid "* * * * *\n"
"┬ ┬ ┬ ┬ ┬\n"
"│ │ │ │ │\n"
"│ │ │ │ └ day of week (0 - 6) (0 is Sunday)\n"
"│ │ │ └───── month (1 - 12)\n"
"│ │ └────────── day of month (1 - 31)\n"
"│ └─────────────── hour (0 - 23)\n"
-"└──────────────────── minute (0 - 59)\n"
-"\n"
-"---\n"
-"\n"
+"└──────────────────── minute (0 - 59)\n\n"
+"---\n\n"
"* - Any value\n"
"/ - Step values\n"
"
\n"
msgstr ""
#. Content of the 'Example' (HTML) field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
-msgid ""
-"doc.grand_total > 0
\n"
-"\n"
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "doc.grand_total > 0
\n\n"
"Conditions should be written in simple Python. Please use properties available in the form only.
\n"
"Allowed functions:\n"
"
\n"
@@ -686,27369 +519,23105 @@ msgid ""
"Example:
doc.creation > frappe.utils.add_to_date(frappe.utils.now_datetime(), days=-5, as_string=True, as_datetime=True)
"
msgstr ""
-#: custom/doctype/custom_field/custom_field.js:39
+#. Header text in the Welcome Workspace Workspace
+#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
+msgid "Hi,"
+msgstr ""
+
+#. Header text in the Integrations Workspace
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Reports & Masters"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "="
msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid ">"
msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid ">="
msgstr ""
-#. Description of the Onboarding Step 'Custom Document Types'
-#: custom/onboarding_step/custom_doctype/custom_doctype.json
-msgid "A DocType (Document Type) is used to insert forms in ERPNext. Forms such as Customer, Orders, and Invoices are Doctypes in the backend. You can also create new DocTypes to create new forms in ERPNext as per your business needs."
-msgstr ""
-
-#: core/doctype/doctype/doctype.py:1015
+#: frappe/core/doctype/doctype/doctype.py:1034
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr ""
-#: website/doctype/blog_post/blog_post.py:93
+#: frappe/website/doctype/blog_post/blog_post.py:92
msgid "A featured post must have a cover image"
-msgstr "Een uitgelicht bericht moet een omslagafbeelding hebben"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.py:171
+#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr ""
-#: core/doctype/file/file.py:254
+#: frappe/core/doctype/file/file.py:257
msgid "A file with same name {} already exists"
msgstr ""
#. Description of the 'Scopes' (Text) field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "A list of resources which the Client App will have access to after the user allows it.
e.g. project"
-msgstr "Een lijst van de middelen die de Client App toegang zal moeten nadat de gebruiker toelaat.
bijv project"
+msgstr ""
-#: templates/emails/new_user.html:5
+#: frappe/templates/emails/new_user.html:5
msgid "A new account has been created for you at {0}"
-msgstr "Een nieuw account is aangemaakt voor u op {0}"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:388
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400
msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}."
-msgstr "Er is een terugkerende {0} {1} voor u gemaakt via Auto Repeat {2}."
+msgstr ""
#. Description of the 'Symbol' (Data) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#: frappe/geo/doctype/currency/currency.json
msgid "A symbol for this currency. For e.g. $"
-msgstr "Een symbool voor deze valuta. Voor bijvoorbeeld $"
+msgstr ""
-#: printing/doctype/print_format_field_template/print_format_field_template.py:48
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:49
msgid "A template already exists for field {0} of {1}"
msgstr ""
-#: utils/password_strength.py:173
+#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
-msgstr "Een vrijstaand woord is gemakkelijk te raden."
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A0"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A1"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A2"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A3"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A4"
-msgstr "A4"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A5"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A6"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A7"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A8"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A9"
msgstr ""
#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "ALL"
-msgstr "Alle"
+msgstr ""
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "API"
-msgstr "API"
+msgstr ""
-#. Label of a Section Break field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#. Label of the api_access (Section Break) field in DocType 'User'
+#. Label of the api_access_section (Section Break) field in DocType 'S3 Backup
+#. Settings'
+#: frappe/core/doctype/user/user.json
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "API Access"
-msgstr "API-toegang"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "API Access"
-msgstr "API-toegang"
-
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the api_endpoint (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "API Endpoint"
-msgstr "API-eindpunt"
+msgstr ""
-#. Label of a Code field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the api_endpoint_args (Code) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "API Endpoint Args"
-msgstr "API-eindpuntargumenten"
+msgstr ""
-#. Label of a Data field in DocType 'Google Settings'
-#. Label of a Section Break field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
+#. Label of the api_key (Data) field in DocType 'User'
+#. Label of the api_key (Data) field in DocType 'Email Account'
+#. Label of the api_key (Password) field in DocType 'Geolocation Settings'
+#. Label of the api_key (Data) field in DocType 'Google Settings'
+#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
+#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Key"
-msgstr "API Key"
+msgstr ""
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "API Key"
-msgstr "API Key"
+#. Description of the 'Authentication' (Section Break) field in DocType 'Push
+#. Notification Settings'
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "API Key and Secret to interact with the relay server. These will be auto-generated when the first push notification is sent from any of the apps installed on this site."
+msgstr ""
#. Description of the 'API Key' (Data) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "API Key cannot be regenerated"
msgstr ""
-#. Label of a Data field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the api_logging_section (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "API Logging"
+msgstr ""
+
+#. Label of the api_method (Data) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "API Method"
-msgstr "API-methode"
+msgstr ""
-#. Label of a Password field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Name of a DocType
+#: frappe/core/doctype/api_request_log/api_request_log.json
+msgid "API Request Log"
+msgstr ""
+
+#. Label of the api_secret (Password) field in DocType 'User'
+#. Label of the api_secret (Password) field in DocType 'Email Account'
+#. Label of the api_secret (Password) field in DocType 'Push Notification
+#. Settings'
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
-msgstr "API Secret"
-
-#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "ASC"
-msgstr "ASC"
+msgstr ""
#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "ASC"
-msgstr "ASC"
+msgstr ""
#. Label of a standard help item
#. Type: Action
-#: hooks.py
+#: frappe/hooks.py
msgid "About"
msgstr ""
-#: www/about.html:11 www/about.html:18
+#: frappe/www/about.html:11 frappe/www/about.html:18
msgid "About Us"
msgstr ""
#. Name of a DocType
-#: website/doctype/about_us_settings/about_us_settings.json
-msgid "About Us Settings"
-msgstr "Over Ons Instellingen"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "About Us Settings"
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+#: frappe/website/workspace/website/website.json
msgid "About Us Settings"
-msgstr "Over Ons Instellingen"
+msgstr ""
#. Name of a DocType
-#: website/doctype/about_us_team_member/about_us_team_member.json
+#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
msgid "About Us Team Member"
-msgstr "Over ons Teamlid"
+msgstr ""
-#: core/doctype/data_import/data_import.js:27
+#: frappe/core/doctype/data_import/data_import.js:27
msgid "About {0} minute remaining"
-msgstr "Ongeveer {0} minuut resterend"
+msgstr ""
-#: core/doctype/data_import/data_import.js:28
+#: frappe/core/doctype/data_import/data_import.js:28
msgid "About {0} minutes remaining"
-msgstr "Ongeveer {0} minuten resterend"
+msgstr ""
-#: core/doctype/data_import/data_import.js:25
+#: frappe/core/doctype/data_import/data_import.js:25
msgid "About {0} seconds remaining"
-msgstr "Ongeveer {0} seconden resterend"
+msgstr ""
-#. Label of a Data field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#. 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 ""
+
+#. Label of the access_key_id (Data) field in DocType 'S3 Backup Settings'
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Access Key ID"
-msgstr "Toegang Key ID"
+msgstr ""
-#. Label of a Password field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#. Label of the secret_access_key (Password) field in DocType 'S3 Backup
+#. Settings'
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Access Key Secret"
-msgstr "Toegang tot sleutelgeheim"
+msgstr ""
#. Name of a DocType
-#: core/doctype/access_log/access_log.json
-msgid "Access Log"
-msgstr "Toegangslogboek"
-
#. Label of a Link in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "Access Log"
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/workspace/users/users.json
msgid "Access Log"
-msgstr "Toegangslogboek"
+msgstr ""
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Access Log"
-msgstr "Toegangslogboek"
-
-#. Label of a Data field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
+#. Label of the access_token (Data) field in DocType 'OAuth Bearer Token'
+#. Label of the access_token (Password) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Access Token"
-msgstr "Toegang Token"
+msgstr ""
-#. Label of a Password field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "Access Token"
-msgstr "Toegang Token"
-
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the access_token_url (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Access Token URL"
-msgstr "Toegang tot token-URL"
+msgstr ""
-#: auth.py:444
+#: frappe/auth.py:491
msgid "Access not allowed from this IP Address"
-msgstr "Toegang niet toegestaan vanaf dit IP-adres"
+msgstr ""
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the account_section (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Account"
-msgstr "Rekening"
+msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the account_deletion_settings_section (Section Break) field in
+#. DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Account Deletion Settings"
msgstr ""
#. Name of a role
-#: automation/doctype/auto_repeat/auto_repeat.json
-#: contacts/doctype/contact/contact.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/geo/doctype/currency/currency.json
msgid "Accounts Manager"
-msgstr "Rekeningen Beheerder"
+msgstr ""
#. Name of a role
-#: automation/doctype/auto_repeat/auto_repeat.json
-#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json
-#: geo/doctype/currency/currency.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/geo/doctype/currency/currency.json
msgid "Accounts User"
-msgstr "Gebruikersaccounts"
-
-#: email/doctype/email_group/email_group.js:34
-#: email/doctype/email_group/email_group.js:63
-#: email/doctype/email_group/email_group.js:72
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:37
-#: public/js/frappe/form/sidebar/review.js:59
-#: workflow/page/workflow_builder/workflow_builder.js:37
-msgid "Action"
-msgstr "Actie"
-
-#. Label of a Select field in DocType 'Amended Document Naming Settings'
-#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
-msgctxt "Amended Document Naming Settings"
-msgid "Action"
-msgstr "Actie"
-
-#. Label of a Select field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
-msgid "Action"
-msgstr "Actie"
+msgstr ""
+#. Label of the action (Select) field in DocType 'Amended Document Naming
+#. Settings'
#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
-#. Label of a Data field in DocType 'Navbar Item'
-#: core/doctype/navbar_item/navbar_item.json
-msgctxt "Navbar Item"
+#. Label of the action (Data) field in DocType 'Navbar Item'
+#. Label of the action (Select) field in DocType 'Onboarding Step'
+#. Label of the action (Select) field in DocType 'Email Flag Queue'
+#. Label of the action (Link) field in DocType 'Workflow Transition'
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/navbar_item/navbar_item.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_group/email_group.js:34
+#: frappe/email/doctype/email_group/email_group.js:63
+#: frappe/email/doctype/email_group/email_group.js:72
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
msgid "Action"
-msgstr "Actie"
+msgstr ""
-#. Label of a Select field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Action"
-msgstr "Actie"
-
-#. Label of a Link field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
-msgid "Action"
-msgstr "Actie"
-
-#. Label of a Small Text field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
+#. Label of the action (Small Text) field in DocType 'DocType Action'
+#: frappe/core/doctype/doctype_action/doctype_action.json
msgid "Action / Route"
-msgstr "Actie / route"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:310
-#: public/js/frappe/widgets/onboarding_widget.js:381
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:305
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:376
msgid "Action Complete"
msgstr ""
-#: model/document.py:1648
+#: frappe/model/document.py:1872
msgid "Action Failed"
-msgstr "Actie is mislukt"
+msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the action_label (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Action Label"
msgstr ""
-#. Label of a Int field in DocType 'Success Action'
-#: core/doctype/success_action/success_action.json
-msgctxt "Success Action"
+#. Label of the action_timeout (Int) field in DocType 'Success Action'
+#: frappe/core/doctype/success_action/success_action.json
msgid "Action Timeout (Seconds)"
-msgstr "Actie-time-out (seconden)"
+msgstr ""
-#. Label of a Select field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
+#. Label of the action_type (Select) field in DocType 'DocType Action'
+#: frappe/core/doctype/doctype_action/doctype_action.json
msgid "Action Type"
-msgstr "actie type"
+msgstr ""
-#: core/doctype/submission_queue/submission_queue.py:119
+#: frappe/core/doctype/submission_queue/submission_queue.py:120
msgid "Action {0} completed successfully on {1} {2}. View it {3}"
msgstr ""
-#: core/doctype/submission_queue/submission_queue.py:115
+#: frappe/core/doctype/submission_queue/submission_queue.py:116
msgid "Action {0} failed on {1} {2}. View it {3}"
msgstr ""
-#: core/doctype/communication/communication.js:66
-#: core/doctype/communication/communication.js:74
-#: core/doctype/communication/communication.js:82
-#: core/doctype/communication/communication.js:90
-#: core/doctype/communication/communication.js:99
-#: core/doctype/communication/communication.js:108
-#: core/doctype/communication/communication.js:131
-#: core/doctype/rq_job/rq_job_list.js:14 core/doctype/rq_job/rq_job_list.js:39
-#: custom/doctype/customize_form/customize_form.js:108
-#: custom/doctype/customize_form/customize_form.js:116
-#: custom/doctype/customize_form/customize_form.js:124
-#: custom/doctype/customize_form/customize_form.js:132
-#: custom/doctype/customize_form/customize_form.js:140
-#: custom/doctype/customize_form/customize_form.js:238
-#: public/js/frappe/views/reports/query_report.js:190
-#: public/js/frappe/views/reports/query_report.js:203
-#: public/js/frappe/views/reports/query_report.js:213
+#. Label of the actions_section (Tab Break) field in DocType 'DocType'
+#. Label of the actions (Table) field in DocType 'Customize Form'
+#: frappe/core/doctype/communication/communication.js:66
+#: frappe/core/doctype/communication/communication.js:74
+#: frappe/core/doctype/communication/communication.js:82
+#: frappe/core/doctype/communication/communication.js:90
+#: frappe/core/doctype/communication/communication.js:99
+#: frappe/core/doctype/communication/communication.js:108
+#: frappe/core/doctype/communication/communication.js:131
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/rq_job/rq_job_list.js:14
+#: frappe/core/doctype/rq_job/rq_job_list.js:39
+#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:48
+#: frappe/custom/doctype/customize_form/customize_form.js:108
+#: frappe/custom/doctype/customize_form/customize_form.js:116
+#: frappe/custom/doctype/customize_form/customize_form.js:124
+#: frappe/custom/doctype/customize_form/customize_form.js:132
+#: frappe/custom/doctype/customize_form/customize_form.js:140
+#: frappe/custom/doctype/customize_form/customize_form.js:148
+#: frappe/custom/doctype/customize_form/customize_form.js:283
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/public/js/frappe/ui/page.html:57
+#: frappe/public/js/frappe/views/reports/query_report.js:192
+#: frappe/public/js/frappe/views/reports/query_report.js:205
+#: frappe/public/js/frappe/views/reports/query_report.js:215
+#: frappe/public/js/frappe/views/reports/query_report.js:845
msgid "Actions"
-msgstr "Acties"
+msgstr ""
-#. Label of a Table field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Actions"
-msgstr "Acties"
-
-#. Label of a Section Break field in DocType 'DocType'
-#. Label of a Table field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Actions"
-msgstr "Acties"
-
-#. Label of a Check field in DocType 'Package Import'
-#: core/doctype/package_import/package_import.json
-msgctxt "Package Import"
+#. Label of the activate (Check) field in DocType 'Package Import'
+#: frappe/core/doctype/package_import/package_import.json
msgid "Activate"
msgstr ""
-#: core/doctype/recorder/recorder_list.js:105 core/doctype/user/user_list.js:12
-#: workflow/doctype/workflow/workflow_list.js:5
-msgid "Active"
-msgstr "Actief"
-
#. Option for the 'Status' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Active"
-msgstr "Actief"
-
#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
-msgid "Active"
-msgstr "Actief"
-
#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/recorder/recorder_list.js:207
+#: frappe/core/doctype/user/user_list.js:12
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/workflow/doctype/workflow/workflow_list.js:5
msgid "Active"
-msgstr "Actief"
+msgstr ""
#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Active Directory"
msgstr ""
-#. Label of a Section Break field in DocType 'Domain Settings'
-#. Label of a Table field in DocType 'Domain Settings'
-#: core/doctype/domain_settings/domain_settings.json
-msgctxt "Domain Settings"
+#. Label of the active_domains_sb (Section Break) field in DocType 'Domain
+#. Settings'
+#. Label of the active_domains (Table) field in DocType 'Domain Settings'
+#: frappe/core/doctype/domain_settings/domain_settings.json
msgid "Active Domains"
-msgstr "Actieve domeinen"
+msgstr ""
-#: www/third_party_apps.html:32
+#. Label of the active_sessions (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+#: frappe/www/third_party_apps.html:34
msgid "Active Sessions"
-msgstr "actieve sessies"
-
-#: public/js/frappe/form/dashboard.js:22
-msgid "Activity"
-msgstr "Activiteit"
+msgstr ""
#. Group in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
+#: frappe/public/js/frappe/form/dashboard.js:22
+#: frappe/public/js/frappe/form/footer/form_timeline.js:60
msgid "Activity"
-msgstr "Activiteit"
+msgstr ""
#. Name of a DocType
-#: core/doctype/activity_log/activity_log.json
-msgid "Activity Log"
-msgstr "Activiteitenlogboek"
-
#. Label of a Link in the Build Workspace
#. Label of a Link in the Users Workspace
-#: core/workspace/build/build.json core/workspace/users/users.json
-msgctxt "Activity Log"
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/workspace/build/build.json
+#: frappe/core/workspace/users/users.json
msgid "Activity Log"
-msgstr "Activiteitenlogboek"
+msgstr ""
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Activity Log"
-msgstr "Activiteitenlogboek"
-
-#: core/page/permission_manager/permission_manager.js:465
-#: email/doctype/email_group/email_group.js:60
-#: public/js/frappe/form/grid_row.js:468
-#: public/js/frappe/form/sidebar/assign_to.js:100
-#: public/js/frappe/list/bulk_operations.js:372
-#: public/js/frappe/views/dashboard/dashboard_view.js:440
-#: public/js/frappe/views/reports/query_report.js:265
-#: public/js/frappe/views/reports/query_report.js:293
-#: public/js/frappe/widgets/widget_dialog.js:30
+#: frappe/core/page/permission_manager/permission_manager.js:482
+#: frappe/email/doctype/email_group/email_group.js:60
+#: frappe/public/js/frappe/form/grid_row.js:485
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
+#: frappe/public/js/frappe/form/templates/set_sharing.html:68
+#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
+#: frappe/public/js/frappe/views/reports/query_report.js:267
+#: frappe/public/js/frappe/views/reports/query_report.js:295
+#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
-msgstr "Toevoegen"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:4
+#: frappe/public/js/frappe/form/grid_row.js:438
+msgid "Add / Remove Columns"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:4
msgid "Add / Update"
-msgstr "Toevoegen / bijwerken"
+msgstr ""
-#: core/page/permission_manager/permission_manager.js:425
+#: frappe/core/page/permission_manager/permission_manager.js:442
msgid "Add A New Rule"
-msgstr "Voeg een nieuwe regel toe"
+msgstr ""
-#: public/js/frappe/views/interaction.js:159
+#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
-msgstr "Voeg bijlage toe"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_background_image (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Background Image"
msgstr ""
-#. Title of an Onboarding Step
-#: website/onboarding_step/add_blog_category/add_blog_category.json
-msgid "Add Blog Category"
-msgstr ""
-
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_border_at_bottom (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Border at Bottom"
msgstr ""
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_border_at_top (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Border at Top"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:209
+#: frappe/desk/doctype/number_card/number_card.js:36
+msgid "Add Card to Dashboard"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:211
msgid "Add Chart to Dashboard"
-msgstr "Grafiek toevoegen aan dashboard"
+msgstr ""
-#: public/js/frappe/views/treeview.js:285
+#: frappe/public/js/frappe/views/treeview.js:301
msgid "Add Child"
-msgstr "Onderliggende toevoegen"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1664
-#: public/js/frappe/views/reports/query_report.js:1667
-#: public/js/frappe/views/reports/report_view.js:329
-#: public/js/frappe/views/reports/report_view.js:354
+#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
+#: frappe/public/js/frappe/views/reports/query_report.js:1772
+#: frappe/public/js/frappe/views/reports/report_view.js:349
+#: frappe/public/js/frappe/views/reports/report_view.js:374
+#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
-msgstr "Kolom toevoegen"
+msgstr ""
-#: core/doctype/communication/communication.js:127
+#: frappe/core/doctype/communication/communication.js:127
msgid "Add Contact"
-msgstr "Contact toevoegen"
+msgstr ""
-#: desk/doctype/event/event.js:38
+#: frappe/desk/doctype/event/event.js:38
msgid "Add Contacts"
-msgstr "Contacten toevoegen"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_container (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Container"
-msgstr "Container toevoegen"
+msgstr ""
-#. Label of a Button field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the set_meta_tags (Button) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Add Custom Tags"
-msgstr "Voeg aangepaste tags toe"
+msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:159
-#: public/js/frappe/widgets/widget_dialog.js:683
+#: frappe/public/js/frappe/widgets/widget_dialog.js:188
+#: frappe/public/js/frappe/widgets/widget_dialog.js:703
msgid "Add Filters"
-msgstr "Filters toevoegen"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_shade (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Gray Background"
-msgstr "Voeg grijze achtergrond toe"
+msgstr ""
-#: public/js/frappe/ui/group_by/group_by.js:417
+#: frappe/public/js/frappe/ui/group_by/group_by.js:230
+#: frappe/public/js/frappe/ui/group_by/group_by.js:427
msgid "Add Group"
-msgstr "Groep toevoegen"
+msgstr ""
-#: core/page/permission_manager/permission_manager.js:428
+#: frappe/core/doctype/recorder/recorder.js:30
+msgid "Add Indexes"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add Multiple"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.js:445
msgid "Add New Permission Rule"
-msgstr "Toevoegen nieuwe machtiging regel"
+msgstr ""
-#: desk/doctype/event/event.js:35 desk/doctype/event/event.js:42
+#: frappe/desk/doctype/event/event.js:35 frappe/desk/doctype/event/event.js:42
msgid "Add Participants"
-msgstr "Voeg deelnemers toe"
+msgstr ""
-#. Label of a Check field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#. Label of the add_query_parameters (Check) field in DocType 'Email Group'
+#: frappe/email/doctype/email_group/email_group.json
msgid "Add Query Parameters"
msgstr ""
-#: public/js/frappe/form/sidebar/review.js:45
-msgid "Add Review"
-msgstr "Voeg recensie toe"
-
-#: core/doctype/user/user.py:768
+#: frappe/core/doctype/user/user.py:806
msgid "Add Roles"
msgstr ""
-#: public/js/frappe/views/communication.js:117
-msgid "Add Signature"
-msgstr "Handtekening toevoegen"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add Row"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the add_signature (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/public/js/frappe/views/communication.js:130
msgid "Add Signature"
-msgstr "Handtekening toevoegen"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_bottom_padding (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Space at Bottom"
msgstr ""
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_top_padding (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Space at Top"
msgstr ""
-#: email/doctype/email_group/email_group.js:38
-#: email/doctype/email_group/email_group.js:59
+#: frappe/email/doctype/email_group/email_group.js:38
+#: frappe/email/doctype/email_group/email_group.js:59
msgid "Add Subscribers"
-msgstr "Abonnees toevoegen"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:360
+#: frappe/public/js/frappe/list/bulk_operations.js:425
msgid "Add Tags"
msgstr ""
-#: public/js/frappe/list/list_view.js:1834
+#: frappe/public/js/frappe/list/list_view.js:2004
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
-#: public/js/frappe/views/communication.js:320
+#: frappe/public/js/frappe/views/communication.js:427
msgid "Add Template"
msgstr ""
-#. Label of a Check field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#. Label of the add_total_row (Check) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
msgid "Add Total Row"
-msgstr "Voeg Totaal Rij toe"
+msgstr ""
-#. Label of a Check field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#. Label of the add_translate_data (Check) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Add Translate Data"
+msgstr ""
+
+#. Label of the add_unsubscribe_link (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Add Unsubscribe Link"
-msgstr "Voeg afmeldlink"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:6
+#: frappe/core/doctype/user_permission/user_permission_list.js:6
msgid "Add User Permissions"
-msgstr "Gebruikersrechten toevoegen"
+msgstr ""
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the add_video_conferencing (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Add Video Conferencing"
msgstr ""
-#: public/js/frappe/form/form_tour.js:203
+#: frappe/public/js/frappe/ui/filters/filter_list.js:299
+msgid "Add a Filter"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:9
+msgid "Add a New Role"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_tour.js:211
msgid "Add a Row"
msgstr ""
-#: templates/includes/comments/comments.html:30
-#: templates/includes/comments/comments.html:47
+#: frappe/templates/includes/comments/comments.html:30
+#: frappe/templates/includes/comments/comments.html:47
msgid "Add a comment"
-msgstr "Voeg een reactie toe"
+msgstr ""
-#: public/js/frappe/form/form.js:192
+#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:28
+#: frappe/public/js/form_builder/components/Tabs.vue:192
+msgid "Add a new section"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:193
msgid "Add a row above the current row"
msgstr ""
-#: public/js/frappe/form/form.js:204
+#: frappe/public/js/frappe/form/form.js:205
msgid "Add a row at the bottom"
msgstr ""
-#: public/js/frappe/form/form.js:200
+#: frappe/public/js/frappe/form/form.js:201
msgid "Add a row at the top"
msgstr ""
-#: public/js/frappe/form/form.js:196
+#: frappe/public/js/frappe/form/form.js:197
msgid "Add a row below the current row"
msgstr ""
-#: public/js/frappe/views/dashboard/dashboard_view.js:285
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:286
msgid "Add a {0} Chart"
-msgstr "Voeg een {0} diagram toe"
+msgstr ""
-#: custom/doctype/client_script/client_script.js:16
+#: frappe/public/js/form_builder/components/Section.vue:271
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:115
+msgid "Add column"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/AddFieldButton.vue:9
+#: frappe/public/js/form_builder/components/AddFieldButton.vue:48
+msgid "Add field"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Sidebar.vue:49
+#: frappe/public/js/form_builder/components/Tabs.vue:153
+msgid "Add new tab"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:125
+msgid "Add page break"
+msgstr ""
+
+#: frappe/custom/doctype/client_script/client_script.js:16
msgid "Add script for Child Table"
-msgstr "Script toevoegen voor onderliggende tabel"
+msgstr ""
-#: public/js/frappe/utils/dashboard_utils.js:263
-#: public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:111
+msgid "Add section above"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:265
+msgid "Add section below"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Sidebar.vue:52
+#: frappe/public/js/form_builder/components/Tabs.vue:157
+msgid "Add tab"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/dashboard_utils.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:253
msgid "Add to Dashboard"
-msgstr "Toevoegen aan dashboard"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:98
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:99
msgid "Add to ToDo"
-msgstr "Toevoegen aan taak"
+msgstr ""
-#: website/doctype/website_slideshow/website_slideshow.js:32
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:32
msgid "Add to table"
-msgstr "Voeg toe aan tabel"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:97
+#: frappe/public/js/frappe/form/footer/form_timeline.js:99
msgid "Add to this activity by mailing to {0}"
msgstr ""
+#: frappe/public/js/frappe/views/kanban/kanban_column.html:20
+msgid "Add {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:286
+msgctxt "Primary action in list view"
+msgid "Add {0}"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Added"
+msgstr ""
+
#. Description of the '<head> HTML' (Code) field in DocType 'Website
#. Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Added HTML in the <head> section of the web page, primarily used for website verification and SEO"
-msgstr "Toegevoegd HTML in de <head> sectie van de webpagina, voornamelijk gebruikt voor de website van verificatie en SEO"
+msgstr ""
-#: core/doctype/log_settings/log_settings.py:82
+#: frappe/core/doctype/log_settings/log_settings.py:81
msgid "Added default log doctypes: {}"
msgstr ""
-#: core/doctype/file/file.py:720
-msgid "Added {0}"
-msgstr "{0} toegevoegd"
-
-#: public/js/frappe/form/link_selector.js:180
-#: public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:180
+#: frappe/public/js/frappe/form/link_selector.js:202
msgid "Added {0} ({1})"
-msgstr "Toegevoegd {0} ({1})"
+msgstr ""
-#: core/doctype/user/user.py:271
-msgid "Adding System Manager to this User as there must be atleast one System Manager"
-msgstr "System Manager toe te voegen aan deze gebruikershandleiding als er tenminste een System Manager moet zijn"
-
-#. Label of a Section Break field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
+#. Label of the additional_permissions (Section Break) field in DocType 'Custom
+#. DocPerm'
+#. Label of the additional_permissions (Section Break) field in DocType
+#. 'DocPerm'
+#. Label of the additional_permissions_section (Section Break) field in DocType
+#. 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Additional Permissions"
-msgstr "Additionele Machtigingen"
-
-#. Label of a Section Break field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Additional Permissions"
-msgstr "Additionele Machtigingen"
+msgstr ""
#. Name of a DocType
-#: contacts/doctype/address/address.json
+#. Label of the address (Link) field in DocType 'Contact'
+#. Label of the address (Section Break) field in DocType 'Contact Us Settings'
+#. Label of the address (Small Text) field in DocType 'Website Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
-msgstr "Adres"
+msgstr ""
-#. Label of a Link field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Address"
-msgstr "Adres"
-
-#. Label of a Section Break field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Address"
-msgstr "Adres"
-
-#. Label of a Small Text field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Address"
-msgstr "Adres"
-
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the address_line1 (Data) field in DocType 'Address'
+#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
-msgstr "Adres Lijn 1"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Address Line 1"
-msgstr "Adres Lijn 1"
-
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the address_line2 (Data) field in DocType 'Address'
+#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
-msgstr "Adres Lijn 2"
-
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Address Line 2"
-msgstr "Adres Lijn 2"
+msgstr ""
#. Name of a DocType
-#: contacts/doctype/address_template/address_template.json
+#: frappe/contacts/doctype/address_template/address_template.json
msgid "Address Template"
-msgstr "Adres Sjabloon"
+msgstr ""
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the address_title (Data) field in DocType 'Address'
+#. Label of the address_title (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Title"
-msgstr "Adres Titel"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Address Title"
-msgstr "Adres Titel"
-
-#: contacts/doctype/address/address.py:71
+#: frappe/contacts/doctype/address/address.py:72
msgid "Address Title is mandatory."
-msgstr "Adres titel is verplicht."
+msgstr ""
-#. Label of a Select field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the address_type (Select) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "Address Type"
-msgstr "Adrestype"
+msgstr ""
#. Description of the 'Address' (Small Text) field in DocType 'Website
#. Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address and other legal information you may want to put in the footer."
-msgstr "Adres-en andere wettelijke informatie die u wilt zetten in de voettekst."
+msgstr ""
-#: contacts/doctype/address/address.py:208
+#: frappe/contacts/doctype/address/address.py:206
msgid "Addresses"
-msgstr "Adressen"
+msgstr ""
#. Name of a report
-#: contacts/report/addresses_and_contacts/addresses_and_contacts.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.json
msgid "Addresses And Contacts"
-msgstr "Adressen en Contacten"
+msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:536
+#. Description of a DocType
+#: frappe/custom/doctype/client_script/client_script.json
+msgid "Adds a custom client script to a DocType"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/custom/doctype/custom_field/custom_field.json
+msgid "Adds a custom field to a DocType"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552
msgid "Administration"
-msgstr "Toediening"
+msgstr ""
#. Name of a role
-#: contacts/doctype/salutation/salutation.json
-#: core/doctype/doctype/doctype.json core/doctype/domain/domain.json
-#: core/doctype/module_def/module_def.json core/doctype/page/page.json
-#: core/doctype/patch_log/patch_log.json core/doctype/recorder/recorder.json
-#: core/doctype/report/report.json core/doctype/rq_job/rq_job.json
-#: core/doctype/transaction_log/transaction_log.json
-#: core/doctype/user_type/user_type.json core/doctype/version/version.json
-#: custom/doctype/client_script/client_script.json
-#: custom/doctype/custom_field/custom_field.json
-#: custom/doctype/property_setter/property_setter.json
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
-#: desk/doctype/onboarding_step/onboarding_step.json
-#: website/doctype/website_theme/website_theme.json
+#: frappe/contacts/doctype/salutation/salutation.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/domain/domain.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/page/page.json
+#: frappe/core/doctype/patch_log/patch_log.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/core/doctype/version/version.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/system_console/system_console.json
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Administrator"
-msgstr "Beheerder"
+msgstr ""
-#: core/doctype/user/user.py:1180
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator Logged In"
-msgstr "Administrator Gelogd In"
+msgstr ""
-#: core/doctype/user/user.py:1174
+#: frappe/core/doctype/user/user.py:1205
msgid "Administrator accessed {0} on {1} via IP Address {2}."
-msgstr "Administrator benaderd {0} op {1} via IP-adres {2}."
+msgstr ""
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: 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 "Geavanceerd"
+msgstr ""
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Advanced"
-msgstr "Geavanceerd"
-
-#. Label of a Section Break field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
+#. Label of the advanced_control_section (Section Break) field in DocType 'User
+#. Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
msgid "Advanced Control"
-msgstr "Geavanceerde besturing"
+msgstr ""
-#: public/js/frappe/form/controls/link.js:315
-#: public/js/frappe/form/controls/link.js:317
+#: frappe/public/js/frappe/form/controls/link.js:335
+#: frappe/public/js/frappe/form/controls/link.js:337
msgid "Advanced Search"
-msgstr "Geavanceerd Zoeken"
+msgstr ""
-#. Label of a Section Break field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the sb_advanced (Section Break) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Advanced Settings"
-msgstr "Geavanceerde instellingen"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:64
+#: frappe/public/js/frappe/ui/filters/filter.js:70
+msgid "After"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "After Cancel"
-msgstr "Na annuleren"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "After Delete"
-msgstr "Na verwijderen"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Discard"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "After Insert"
msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "After Save"
-msgstr "Na opslaan"
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Rename"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "After Save (Submitted Document)"
-msgstr "Na opslaan (ingediend document)"
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Save"
+msgstr ""
-#. Label of a Section Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Save (Submitted Document)"
+msgstr ""
+
+#. Label of the section_break_5 (Section Break) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "After Submission"
msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "After Submit"
-msgstr "Na verzenden"
+msgstr ""
-#: desk/doctype/number_card/number_card.py:58
+#: frappe/desk/doctype/number_card/number_card.py:62
msgid "Aggregate Field is required to create a number card"
msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the aggregate_function_based_on (Select) field in DocType
+#. 'Dashboard Chart'
+#. Label of the aggregate_function_based_on (Select) field in DocType 'Number
+#. Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Aggregate Function Based On"
-msgstr "Totale functie gebaseerd op"
+msgstr ""
-#. Label of a Select field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Aggregate Function Based On"
-msgstr "Totale functie gebaseerd op"
-
-#: desk/doctype/dashboard_chart/dashboard_chart.py:410
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:410
msgid "Aggregate Function field is required to create a dashboard chart"
-msgstr "Het veld Aggregatiefunctie is vereist om een dashboarddiagram te maken"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Alert"
-msgstr "Alert"
+msgstr ""
#. Label of a Card Break in the Tools Workspace
-#: automation/workspace/tools/tools.json
+#: frappe/automation/workspace/tools/tools.json
msgid "Alerts and Notifications"
msgstr ""
-#. Label of a Select field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the align (Select) field in DocType 'Letter Head'
+#. Label of the footer_align (Select) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Align"
msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the align_labels_right (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Align Labels to the Right"
-msgstr "Richt Labels naar rechts"
+msgstr ""
-#. Label of a Check field in DocType 'Top Bar Item'
-#: website/doctype/top_bar_item/top_bar_item.json
-msgctxt "Top Bar Item"
+#. Label of the right (Check) field in DocType 'Top Bar Item'
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Align Right"
-msgstr "Rechts uitlijnen"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:479
+#: frappe/printing/page/print_format_builder/print_format_builder.js:479
msgid "Align Value"
-msgstr "Lijn Waarde"
+msgstr ""
#. Name of a role
-#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json
-#: contacts/doctype/gender/gender.json
-#: contacts/doctype/salutation/salutation.json
-#: core/doctype/communication/communication.json core/doctype/file/file.json
-#: core/doctype/language/language.json core/doctype/module_def/module_def.json
-#: core/doctype/user/user.json desk/doctype/event/event.json
-#: desk/doctype/notification_log/notification_log.json
-#: desk/doctype/notification_settings/notification_settings.json
-#: desk/doctype/tag/tag.json desk/doctype/tag_link/tag_link.json
-#: desk/doctype/todo/todo.json geo/doctype/country/country.json
-#: integrations/doctype/connected_app/connected_app.json
-#: integrations/doctype/token_cache/token_cache.json
-#: printing/doctype/print_heading/print_heading.json
-#: website/doctype/personal_data_download_request/personal_data_download_request.json
-#: website/doctype/website_settings/website_settings.json
-msgid "All"
-msgstr "Allemaal"
-
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "All"
-msgstr "Allemaal"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/gender/gender.json
+#: frappe/contacts/doctype/salutation/salutation.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/file/file.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+#: frappe/printing/doctype/print_heading/print_heading.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
-msgstr "Allemaal"
+msgstr ""
-#: public/js/frappe/ui/notifications/notifications.js:394
+#. Label of the all_day (Check) field in DocType 'Calendar View'
+#. Label of the all_day (Check) field in DocType 'Event'
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:408
msgid "All Day"
-msgstr "Gehele dag"
+msgstr ""
-#. Label of a Check field in DocType 'Calendar View'
-#: desk/doctype/calendar_view/calendar_view.json
-msgctxt "Calendar View"
-msgid "All Day"
-msgstr "Gehele dag"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "All Day"
-msgstr "Gehele dag"
-
-#: website/doctype/website_slideshow/website_slideshow.py:42
+#: frappe/website/doctype/website_slideshow/website_slideshow.py:43
msgid "All Images attached to Website Slideshow should be public"
-msgstr "Alle afbeeldingen die bij de website dia's zijn gekoppeld, moeten publiek zijn"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:29
+#: frappe/public/js/frappe/data_import/data_exporter.js:29
msgid "All Records"
-msgstr "Alle records"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:384
+#: frappe/public/js/frappe/form/form.js:2222
+msgid "All Submissions"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:452
msgid "All customizations will be removed. Please confirm."
-msgstr "Alle aanpassingen zullen worden verwijderd. Gelieve te bevestigen."
+msgstr ""
-#: templates/includes/comments/comments.html:158
+#: frappe/templates/includes/comments/comments.html:158
msgid "All fields are necessary to submit the comment."
msgstr ""
#. Description of the 'Document States' (Table) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "All possible Workflow States and roles of the workflow. Docstatus Options: 0 is \"Saved\", 1 is \"Submitted\" and 2 is \"Cancelled\""
msgstr ""
-#: utils/password_strength.py:187
+#: frappe/utils/password_strength.py:183
msgid "All-uppercase is almost as easy to guess as all-lowercase."
-msgstr "All-in hoofdletters is bijna net zo makkelijk te raden als alle kleine letters."
-
-#. Label of a Link field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Allocated To"
-msgstr "Toegewezen aan"
-
-#. Label of a Check field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Allot Points To Assigned Users"
-msgstr "Wijs punten toe aan toegewezen gebruikers"
-
-#: templates/includes/oauth_confirmation.html:15
-msgid "Allow"
-msgstr "Toestaan"
-
-#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Allow"
-msgstr "Toestaan"
-
-#. Label of a Link field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
-msgid "Allow"
-msgstr "Toestaan"
-
-#: website/doctype/website_settings/website_settings.py:160
-msgid "Allow API Indexing Access"
-msgstr "Toegang tot API-indexering toestaan"
-
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Allow Auto Repeat"
-msgstr "Automatisch herhalen toestaan"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Allow Auto Repeat"
-msgstr "Automatisch herhalen toestaan"
-
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Allow Bulk Edit"
-msgstr "Laat Bulk Bewerken toe"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Allow Bulk Edit"
-msgstr "Laat Bulk Bewerken toe"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Comments"
-msgstr "Laat Reacties"
-
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Allow Consecutive Login Attempts "
-msgstr "Sta opeenvolgende inlogpogingen toe"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Delete"
-msgstr "Laat Verwijderen"
-
-#. Label of a Button field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Allow Dropbox Access"
-msgstr "Laat Dropbox Access"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Editing After Submit"
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:100
-#: integrations/doctype/google_calendar/google_calendar.py:114
+#. Label of the 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 ""
+
+#. Label of the allow_dropbox_access (Button) field in DocType 'Dropbox
+#. Settings'
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
+msgid "Allow Dropbox Access"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
msgid "Allow Google Calendar Access"
-msgstr "Google Agenda-toegang toestaan"
+msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.py:39
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:40
msgid "Allow Google Contacts Access"
-msgstr "Google Contacten toegang toestaan"
+msgstr ""
-#: integrations/doctype/google_drive/google_drive.py:51
+#: frappe/integrations/doctype/google_drive/google_drive.py:52
msgid "Allow Google Drive Access"
-msgstr "Laat Google Drive Access"
+msgstr ""
-#. Label of a Check field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the allow_guest (Check) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
-msgstr "Gast toestaan"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the allow_guest_to_view (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Allow Guest to View"
-msgstr "Laat Gast te bekijken"
+msgstr ""
-#. Label of a Check field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Allow Guest to comment"
msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the allow_guests_to_upload_files (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow Guests to Upload Files"
-msgstr "Sta gasten toe bestanden te uploaden"
-
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Allow Import (via Data Import Tool)"
-msgstr "Laat Import (via gegevens importeren Tool)"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Allow Import (via Data Import Tool)"
-msgstr "Laat Import (via gegevens importeren Tool)"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Incomplete Forms"
-msgstr "Laat Onvolledig ingevulde formulieren"
-
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Allow Login After Fail"
-msgstr "Aanmelden na mislukken toestaan"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Allow Login using Mobile Number"
-msgstr "Log in met Mobielnummer"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Allow Login using User Name"
-msgstr "Log in met gebruikersnaam"
-
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Allow Modules"
-msgstr "Modules toestaan"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Multiple Responses"
msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the allow_import (Check) field in DocType 'DocType'
+#. Label of the allow_import (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Allow Import (via Data Import Tool)"
+msgstr ""
+
+#. Label of the allow_login_after_fail (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Login After Fail"
+msgstr ""
+
+#. Label of the allow_login_using_mobile_number (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Login using Mobile Number"
+msgstr ""
+
+#. Label of the allow_login_using_user_name (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Login using User Name"
+msgstr ""
+
+#. Label of the sb_allow_modules (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Allow Modules"
+msgstr ""
+
+#. Label of the allow_older_web_view_links (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow Older Web View Links (Insecure)"
msgstr ""
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Print"
-msgstr "laat Print"
-
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the allow_print_for_cancelled (Check) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Allow Print for Cancelled"
-msgstr "Laat Print voor Geannuleerde"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:395
+#. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Allow Print for Draft"
-msgstr "Laat Print voor Draft"
+msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Allow Print for Draft"
-msgstr "Laat Print voor Draft"
-
-#. Label of a Check field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the allow_read_on_all_link_options (Check) field in DocType 'Web
+#. Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Allow Read On All Link Options"
-msgstr "Lees verder over alle linkopties"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the allow_rename (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Allow Rename"
-msgstr "Laat hernoemen"
+msgstr ""
-#. Label of a Table MultiSelect field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
+#. Label of the roles_permission (Section Break) field in DocType 'Role
+#. Permission for Page and Report'
+#. Label of the allow_roles (Table MultiSelect) field in DocType 'Module
+#. Onboarding'
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Allow Roles"
-msgstr "laat Rollen"
+msgstr ""
-#. Label of a Section Break field in DocType 'Role Permission for Page and
-#. Report'
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgctxt "Role Permission for Page and Report"
-msgid "Allow Roles"
-msgstr "laat Rollen"
-
-#. Label of a Check field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
+#. Label of the allow_self_approval (Check) field in DocType 'Workflow
+#. Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Allow Self Approval"
-msgstr "Toestaan zelf-goedkeuring"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the enable_telemetry (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow Sending Usage Data for Improving Applications"
msgstr ""
#. Description of the 'Allow Self Approval' (Check) field in DocType 'Workflow
#. Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Allow approval for creator of the document"
-msgstr "Sta goedkeuring toe voor maker van het document"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the allow_comments (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow comments"
+msgstr ""
+
+#. Label of the allow_delete (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow delete"
+msgstr ""
+
+#. Label of the email_append_to (Check) field in DocType 'DocType'
+#. Label of the email_append_to (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Allow document creation via Email"
-msgstr "Sta documentcreatie via e-mail toe"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Allow document creation via Email"
-msgstr "Sta documentcreatie via e-mail toe"
+#. Label of the allow_edit (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow editing after submit"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Description of the 'Allow Bulk Editing' (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Allow editing even if the doctype has a workflow set up.\n\n"
+"Does nothing if a workflow isn't set up."
+msgstr ""
+
+#. Label of the allow_events_in_timeline (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Allow events in timeline"
-msgstr "Laat gebeurtenissen toe in de tijdlijn"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the allow_in_quick_entry (Check) field in DocType 'DocField'
+#. Label of the allow_in_quick_entry (Check) field in DocType 'Custom Field'
+#. Label of the allow_in_quick_entry (Check) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Allow in Quick Entry"
-msgstr "Toestaan bij snel invoeren"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Allow in Quick Entry"
-msgstr "Toestaan bij snel invoeren"
+#. Label of the allow_incomplete (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow incomplete forms"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Allow in Quick Entry"
-msgstr "Toestaan bij snel invoeren"
+#. Label of the allow_multiple (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow multiple responses"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the allow_on_submit (Check) field in DocType 'DocField'
+#. Label of the allow_on_submit (Check) field in DocType 'Custom Field'
+#. Label of the allow_on_submit (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Allow on Submit"
-msgstr "Laat op Submit"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Allow on Submit"
-msgstr "Laat op Submit"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Allow on Submit"
-msgstr "Laat op Submit"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the deny_multiple_sessions (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow only one session per user"
-msgstr "Laat slechts één sessie per gebruiker"
+msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the allow_page_break_inside_tables (Check) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Allow page break inside tables"
-msgstr "Laat pagina-einde in tabellen"
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:420
+#. Label of the allow_print (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow print"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:431
msgid "Allow recording my first session to improve user experience"
msgstr ""
-#. Description of the 'Allow Incomplete Forms' (Check) field in DocType 'Web
+#. Description of the 'Allow incomplete forms' (Check) field in DocType 'Web
#. Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#: frappe/website/doctype/web_form/web_form.json
msgid "Allow saving if mandatory fields are not filled"
-msgstr "Laat het opslaan als verplichte velden niet zijn ingevuld"
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:413
+#: frappe/desk/page/setup_wizard/setup_wizard.js:424
msgid "Allow sending usage data for improving applications"
msgstr ""
#. Description of the 'Login After' (Int) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Allow user to login only after this hour (0-24)"
-msgstr "Gebruiker mag alleen inloggen na dit uur (0-24)"
+msgstr ""
#. Description of the 'Login Before' (Int) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Allow user to login only before this hour (0-24)"
-msgstr "Gebruiker mag alleen inloggen voor dit uur (0-24)"
+msgstr ""
#. Description of the 'Login with email link' (Check) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow users to log in without a password, using a login link sent to their email"
msgstr ""
-#. Label of a Link field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
+#. Label of the allowed (Link) field in DocType 'Workflow Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Allowed"
-msgstr "Toegestaan"
+msgstr ""
-#. Label of a Small Text field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the allowed_file_extensions (Small Text) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allowed File Extensions"
msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the allowed_in_mentions (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Allowed In Mentions"
-msgstr "Toegestaan in vermeldingen"
+msgstr ""
-#. Label of a Section Break field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the allowed_modules_section (Section Break) field in DocType 'User
+#. Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "Allowed Modules"
msgstr ""
-#: public/js/frappe/form/form.js:1229
+#. Label of the allowed_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 "Het toestaan DocType , DocType . Wees voorzichtig !"
+msgstr ""
-#: core/doctype/user/user.py:977
+#: frappe/core/doctype/user/user.py:1021
msgid "Already Registered"
-msgstr "Reeds geregistreerd"
+msgstr ""
-#: desk/form/assign_to.py:132
+#: frappe/desk/form/assign_to.py:137
msgid "Already in the following Users ToDo list:{0}"
-msgstr "Staat al in de volgende takenlijst van gebruikers: {0}"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:840
+#: frappe/public/js/frappe/views/reports/report_view.js:896
msgid "Also adding the dependent currency field {0}"
-msgstr "Ook het afhankelijke valutaveld {0} toevoegen"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:853
+#: frappe/public/js/frappe/views/reports/report_view.js:909
msgid "Also adding the status dependency field {0}"
-msgstr "Ook wordt het statusafhankelijkheidsveld {0} toegevoegd"
+msgstr ""
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the login_id (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Alternative Email ID"
msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Always add \"Draft\" Heading for printing draft documents"
-msgstr "Voeg altijd "Concept" Heading for printing conceptdocumenten"
+#. Label of the always_bcc (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Always BCC Address"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the add_draft_heading (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Always add \"Draft\" Heading for printing draft documents"
+msgstr ""
+
+#. Label of the always_use_account_email_id_as_sender (Check) field in DocType
+#. 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Always use this email address as sender address"
msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the always_use_account_name_as_sender_name (Check) field in DocType
+#. 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Always use this name as sender name"
msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
+#. Label of the amend (Check) field in DocType 'Custom DocPerm'
+#. Label of the amend (Check) field in DocType 'DocPerm'
+#. Label of the amend (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Amend"
-msgstr "Amenderen"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Amend"
-msgstr "Amenderen"
-
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Amend"
-msgstr "Amenderen"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming
#. Settings'
-#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
-msgctxt "Amended Document Naming Settings"
-msgid "Amend Counter"
-msgstr ""
-
#. Option for the 'Default Amendment Naming' (Select) field in DocType
#. 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Amend Counter"
msgstr ""
#. Name of a DocType
-#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
msgid "Amended Document Naming Settings"
msgstr ""
-#. Label of a Section Break field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the amended_documents_section (Section Break) field in DocType
+#. 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Amended Documents"
msgstr ""
-#. Label of a Link field in DocType 'Personal Data Download Request'
-#: website/doctype/personal_data_download_request/personal_data_download_request.json
-msgctxt "Personal Data Download Request"
+#. Label of the amended_from (Link) field in DocType 'Transaction Log'
+#. Label of the amended_from (Link) field in DocType 'Personal Data Download
+#. Request'
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
msgid "Amended From"
-msgstr "Gewijzigd Van"
+msgstr ""
-#. Label of a Link field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Amended From"
-msgstr "Gewijzigd Van"
-
-#: public/js/frappe/form/save.js:12
+#: frappe/public/js/frappe/form/save.js:12
msgctxt "Freeze message while amending a document"
msgid "Amending"
-msgstr "Wijziging"
+msgstr ""
-#. Label of a Table field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the amend_naming_override (Table) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Amendment Naming Override"
msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.py:208
+#: frappe/model/document.py:550
+msgid "Amendment Not Allowed"
+msgstr ""
+
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:207
msgid "Amendment naming rules updated."
msgstr ""
-#: public/js/frappe/ui/toolbar/toolbar.js:287
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
msgid "An error occurred while setting Session Defaults"
-msgstr "Er is een fout opgetreden bij het instellen van standaardwaarden voor sessies"
+msgstr ""
#. Description of the 'FavIcon' (Attach) field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]"
-msgstr "Een icoon bestand met de extensie .ico. Moet 16 x 16 px. Gegenereerd met behulp van een favicon generator. [favicon-generator.org]"
+msgstr ""
-#: templates/includes/oauth_confirmation.html:35
+#: frappe/templates/includes/oauth_confirmation.html:38
msgid "An unexpected error occurred while authorizing {}."
msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the analytics_section (Section Break) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Analytics"
-msgstr "Analytics"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:35
+#: frappe/public/js/frappe/ui/filters/filter.js:35
msgid "Ancestors Of"
-msgstr "Voorouders van"
+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'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Annual"
-msgstr "jaar-"
+msgstr ""
-#. Label of a Code field in DocType 'Personal Data Deletion Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
+#. Label of the anonymization_matrix (Code) field in DocType 'Personal Data
+#. Deletion Request'
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Anonymization Matrix"
msgstr ""
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Anonymous"
-msgstr "Anoniem"
+#. Label of the anonymous (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Anonymous responses"
+msgstr ""
-#: public/js/frappe/request.js:186
+#: frappe/public/js/frappe/request.js:189
msgid "Another transaction is blocking this one. Please try again in a few seconds."
-msgstr "Andere transactie blokkeert deze. Probeer opnieuw in een paar seconden."
+msgstr ""
-#: model/rename_doc.py:380
+#: frappe/model/rename_doc.py:379
msgid "Another {0} with name {1} exists, select another name"
-msgstr "Een ander {0} met de naam {1} bestaat, selecteert u een andere naam"
+msgstr ""
#. Description of the 'Raw Commands' (Code) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language."
-msgstr "Elke string-gebaseerde printertalen kunnen worden gebruikt. Het schrijven van onbewerkte opdrachten vereist kennis van de moedertaal van de printer, geleverd door de printerfabrikant. Raadpleeg de ontwikkelaarshandleiding van de printerfabrikant over het schrijven van hun eigen opdrachten. Deze commando's worden aan de serverzijde weergegeven met behulp van de Jinja Templating Language."
+msgstr ""
-#. Label of a Data field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: 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 "App"
+msgstr ""
-#. Label of a Data field in DocType 'Website Theme Ignore App'
-#: website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
-msgctxt "Website Theme Ignore App"
-msgid "App"
-msgstr "App"
-
-#. Label of a Data field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
+#. Label of the app_access_key (Data) field in DocType 'Dropbox Settings'
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
msgid "App Access Key"
-msgstr "App Access Key"
+msgstr ""
-#: integrations/doctype/dropbox_settings/dropbox_settings.js:22
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:22
msgid "App Access Key and/or Secret Key are not present."
msgstr ""
-#. Label of a Data field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client ID"
-msgstr "App Client ID"
+msgstr ""
-#. Label of a Data field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client Secret"
-msgstr "App Client Secret"
+msgstr ""
-#. Label of a Data field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
+#. Label of the app_id (Data) field in DocType 'Google Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
msgstr ""
-#. Label of a Attach Image field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the app_logo (Attach Image) field in DocType 'Website Settings'
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Logo"
msgstr ""
-#: core/doctype/installed_applications/installed_applications.js:27
+#. Label of the app_name (Select) field in DocType 'Module Def'
+#. Label of the app_name (Data) field in DocType 'Changelog Feed'
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#. Label of the app_name (Data) field in DocType 'Website Settings'
+#: frappe/core/doctype/installed_applications/installed_applications.js:27
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
-msgstr "App Naam"
+msgstr ""
-#. Label of a Select field in DocType 'Module Def'
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "App Name"
-msgstr "App Naam"
-
-#. Label of a Data field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
-msgid "App Name"
-msgstr "App Naam"
-
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "App Name"
-msgstr "App Naam"
-
-#. Label of a Password field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
+#. Label of the app_secret_key (Password) field in DocType 'Dropbox Settings'
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
msgid "App Secret Key"
-msgstr "App Secret Key"
+msgstr ""
-#: modules/utils.py:268
+#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: __init__.py:1677
+#: frappe/__init__.py:1462
msgid "App {0} is not installed"
-msgstr "App {0} is niet geïnstalleerd"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email
+#. Account'
+#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email
+#. Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Append Emails to Sent Folder"
-msgstr "E-mails toevoegen aan map Verzonden"
+msgstr ""
-#. Label of a Check field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Append Emails to Sent Folder"
-msgstr "E-mails toevoegen aan map Verzonden"
-
-#. Label of a Link field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the append_to (Link) field in DocType 'Email Account'
+#. Label of the append_to (Link) field in DocType 'IMAP Folder'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "Append To"
-msgstr "Toevoegen aan"
+msgstr ""
-#. Label of a Link field in DocType 'IMAP Folder'
-#: email/doctype/imap_folder/imap_folder.json
-msgctxt "IMAP Folder"
-msgid "Append To"
-msgstr "Toevoegen aan"
-
-#: email/doctype/email_account/email_account.py:178
+#: frappe/email/doctype/email_account/email_account.py:202
msgid "Append To can be one of {0}"
-msgstr "Toevoegen aan kan een van {0}"
+msgstr ""
#. Description of the 'Append To' (Link) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Append as communication against this DocType (must have fields: \"Sender\" and \"Subject\"). These fields can be defined in the email settings section of the appended doctype."
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:105
+#: frappe/core/doctype/user_permission/user_permission_list.js:105
msgid "Applicable Document Types"
-msgstr "Toepasselijke documenttypen"
+msgstr ""
-#. Label of a Link field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
+#. Label of the applicable_for (Link) field in DocType 'User Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
msgid "Applicable For"
-msgstr "Toepasselijk voor"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Navbar Settings'
-#. Label of a Section Break field in DocType 'Navbar Settings'
-#: core/doctype/navbar_settings/navbar_settings.json
-msgctxt "Navbar Settings"
+#. Label of the app_logo (Attach Image) field in DocType 'Navbar Settings'
+#. Label of the logo_section (Section Break) field in DocType 'Navbar Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Application Logo"
-msgstr "Toepassingslogo"
+msgstr ""
-#. Label of a Data field in DocType 'Installed Application'
-#: core/doctype/installed_application/installed_application.json
-msgctxt "Installed Application"
+#. Label of the app_name (Data) field in DocType 'Installed Application'
+#. Label of the app_name (Data) field in DocType 'System Settings'
+#: frappe/core/doctype/installed_application/installed_application.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Application Name"
-msgstr "Naam van de toepassing"
+msgstr ""
-#. Label of a Data field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Application Name"
-msgstr "Naam van de toepassing"
-
-#. Label of a Data field in DocType 'Installed Application'
-#: core/doctype/installed_application/installed_application.json
-msgctxt "Installed Application"
+#. Label of the app_version (Data) field in DocType 'Installed Application'
+#: frappe/core/doctype/installed_application/installed_application.json
msgid "Application Version"
-msgstr "Applicatie versie"
+msgstr ""
-#. Label of a Select field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#. Label of the doctype_or_field (Select) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Applied On"
-msgstr "Toegepast op"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/form_builder/components/Field.vue:103
+msgid "Apply"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1989
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
-msgstr "Toewijzingsregel toepassen"
+msgstr ""
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Apply Document Permissions"
-msgstr "Pas documentmachtigingen toe"
-
-#: public/js/frappe/ui/filters/filter_list.js:315
+#: frappe/public/js/frappe/ui/filters/filter_list.js:318
msgid "Apply Filters"
msgstr ""
-#. Label of a Check field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Apply Only Once"
-msgstr "Slechts eenmaal toepassen"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the apply_strict_user_permissions (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Apply Strict User Permissions"
-msgstr "Strikte Gebruikersvergunningen toepassen"
+msgstr ""
-#. Label of a Select field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
+#. Label of the view (Select) field in DocType 'Client Script'
+#: frappe/custom/doctype/client_script/client_script.json
msgid "Apply To"
msgstr ""
-#. Label of a Check field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
+#. Label of the apply_to_all_doctypes (Check) field in DocType 'User
+#. Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
msgid "Apply To All Document Types"
-msgstr "Toepassen op alle documenttypen"
+msgstr ""
-#. Label of a Link field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the apply_user_permission_on (Link) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "Apply User Permission On"
msgstr ""
+#. Label of the apply_document_permissions (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Apply document permissions"
+msgstr ""
+
#. Description of the 'If user is the owner' (Check) field in DocType 'Custom
#. DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Apply this rule if the User is the Owner"
-msgstr "Pas deze regel als de gebruiker met de eigenaar"
-
#. Description of the 'If user is the owner' (Check) field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
msgid "Apply this rule if the User is the Owner"
-msgstr "Pas deze regel als de gebruiker met de eigenaar"
+msgstr ""
-#. Description of the 'Apply Only Once' (Check) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Apply this rule only once per document"
-msgstr "Pas deze regel slechts eenmaal per document toe"
-
-#: core/doctype/user_permission/user_permission_list.js:75
+#: frappe/core/doctype/user_permission/user_permission_list.js:75
msgid "Apply to all Documents Types"
-msgstr "Toepassen op alle soorten documenten"
+msgstr ""
-#: model/workflow.py:265
+#: frappe/model/workflow.py:266
msgid "Applying: {0}"
-msgstr "Toepassen: {0}"
+msgstr ""
-#: public/js/frappe/form/sidebar/review.js:62
-msgid "Appreciate"
-msgstr "Waarderen"
-
-#. Option for the 'Type' (Select) field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Appreciation"
-msgstr "Waardering"
-
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:111
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:115
msgid "Approval Required"
-msgstr "Goedkeuring vereist"
+msgstr ""
-#: public/js/frappe/utils/number_systems.js:41
+#. Label of a standard navbar item
+#. Type: Route
+#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/website/js/website.js:619 frappe/www/me.html:80
+msgid "Apps"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
msgid "Ar"
msgstr ""
-#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
-msgid "Archived"
-msgstr "Gearchiveerd"
-
-#: public/js/frappe/views/kanban/kanban_board.bundle.js:490
-msgid "Archived Columns"
-msgstr "gearchiveerd Columns"
-
-#: public/js/frappe/form/grid.js:269
-msgid "Are you sure you want to delete all rows?"
-msgstr "Weet u zeker dat u alle rijen wilt verwijderen?"
-
-#: public/js/frappe/views/workspace/workspace.js:885
-msgid "Are you sure you want to delete page {0}?"
+#: frappe/public/js/frappe/views/kanban/kanban_column.html:14
+msgid "Archive"
msgstr ""
-#: public/js/frappe/form/sidebar/attachments.js:135
-msgid "Are you sure you want to delete the attachment?"
-msgstr "Weet u zeker dat u de bijlage wilt verwijderen?"
+#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column'
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Archived"
+msgstr ""
-#: public/js/frappe/web_form/web_form.js:185
+#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:494
+msgid "Archived Columns"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1968
+msgid "Are you sure you want to clear the assignments?"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:290
+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:185
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: public/js/frappe/form/toolbar.js:110
-msgid "Are you sure you want to merge {0} with {1}?"
-msgstr "Weet u zeker dat u {0} wilt samenvoegen met {1}?"
+#: frappe/public/js/frappe/views/reports/query_report.js:965
+msgid "Are you sure you want to generate a new report?"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:105
+#: 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:108
msgid "Are you sure you want to proceed?"
msgstr ""
-#: core/doctype/rq_job/rq_job_list.js:25
+#: frappe/core/doctype/rq_job/rq_job_list.js:25
msgid "Are you sure you want to re-enable scheduler?"
msgstr ""
-#: core/doctype/communication/communication.js:163
+#: frappe/core/doctype/communication/communication.js:163
msgid "Are you sure you want to relink this communication to {0}?"
-msgstr "Weet u zeker dat u deze mededeling aan {0} opnieuw koppelen?"
+msgstr ""
-#: core/doctype/rq_job/rq_job_list.js:10
+#: frappe/core/doctype/rq_job/rq_job_list.js:10
msgid "Are you sure you want to remove all failed jobs?"
msgstr ""
-#: public/js/frappe/list/list_filter.js:109
+#: frappe/public/js/frappe/list/list_filter.js:116
msgid "Are you sure you want to remove the {0} filter?"
msgstr ""
-#: public/js/frappe/views/dashboard/dashboard_view.js:267
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:268
msgid "Are you sure you want to reset all customizations?"
-msgstr "Weet u zeker dat u alle aanpassingen opnieuw wilt instellen?"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:60
+#: frappe/workflow/doctype/workflow/workflow.js:125
+msgid "Are you sure you want to save this document?"
+msgstr ""
+
+#: frappe/email/doctype/newsletter/newsletter.js:60
msgid "Are you sure you want to send this newsletter now?"
msgstr ""
-#: core/doctype/document_naming_rule/document_naming_rule.js:16
-#: core/doctype/user_permission/user_permission_list.js:165
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
+#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
-msgstr "Weet je het zeker?"
+msgstr ""
-#. Label of a Code field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the arguments (Code) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Arguments"
msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Arial"
-msgstr "Arial"
+msgstr ""
-#: desk/form/assign_to.py:102
+#: frappe/core/page/permission_manager/permission_manager_help.html:11
+msgid "As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User."
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:107
msgid "As document sharing is disabled, please give them the required permissions before assigning."
msgstr ""
-#: templates/emails/account_deletion_notification.html:3
+#: frappe/templates/emails/account_deletion_notification.html:3
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr ""
-#. Label of a Code field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
-msgstr "Toestand toewijzen"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:163
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
msgid "Assign To"
-msgstr "Toewijzen aan"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1804
+#: frappe/public/js/frappe/list/list_view.js:1950
msgctxt "Button in list view actions menu"
msgid "Assign To"
-msgstr "Toewijzen aan"
+msgstr ""
-#. Label of a Section Break field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+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 "Toewijzen aan gebruikers"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:232
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:260
msgid "Assign a user"
msgstr ""
-#: automation/doctype/assignment_rule/assignment_rule.js:52
+#: frappe/automation/doctype/assignment_rule/assignment_rule.js:52
msgid "Assign one by one, in sequence"
-msgstr "Wijs een voor een na elkaar toe"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:154
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:174
msgid "Assign to me"
-msgstr "Toewijzen aan mij"
+msgstr ""
-#: automation/doctype/assignment_rule/assignment_rule.js:53
+#: frappe/automation/doctype/assignment_rule/assignment_rule.js:53
msgid "Assign to the one who has the least assignments"
-msgstr "Wijs toe aan degene die de minste opdrachten heeft"
+msgstr ""
-#: automation/doctype/assignment_rule/assignment_rule.js:54
+#: frappe/automation/doctype/assignment_rule/assignment_rule.js:54
msgid "Assign to the user set in this field"
-msgstr "Wijs toe aan de gebruikersset in dit veld"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Assigned"
-msgstr "toegewezen"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Assigned"
-msgstr "toegewezen"
-
-#: desk/report/todo/todo.py:41
+#. Label of the assigned_by (Link) field in DocType 'ToDo'
+#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:41
msgid "Assigned By"
-msgstr "Toegewezen door"
+msgstr ""
-#. Label of a Link field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Assigned By"
-msgstr "Toegewezen door"
-
-#. Label of a Read Only field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#. Label of the assigned_by_full_name (Read Only) field in DocType 'ToDo'
+#: frappe/desk/doctype/todo/todo.json
msgid "Assigned By Full Name"
-msgstr "In opdracht van volledige naam"
+msgstr ""
-#: desk/doctype/todo/todo_list.js:35
-msgid "Assigned By Me"
-msgstr "Toegewezen By Me"
-
-#: model/__init__.py:151 model/meta.py:55
-#: public/js/frappe/list/list_sidebar_group_by.js:71
-#: public/js/frappe/model/meta.js:207 public/js/frappe/model/model.js:126
-#: public/js/frappe/views/interaction.js:82
+#: frappe/model/meta.py:60
+#: 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 "Toegewezen Aan"
+msgstr ""
-#: desk/report/todo/todo.py:40
+#: frappe/desk/report/todo/todo.py:40
msgid "Assigned To/Owner"
-msgstr "Toegewezen aan / Eigenaar"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:241
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:269
msgid "Assigning..."
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Assignment"
-msgstr "toewijzing"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Assignment Completed"
-msgstr "opdracht voltooid"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Assignment Completed"
-msgstr "opdracht voltooid"
-
-#. Label of a Section Break field in DocType 'Assignment Rule'
-#. Label of a Table field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the sb (Section Break) field in DocType 'Assignment Rule'
+#. Label of the assignment_days (Table) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assignment Days"
-msgstr "Opdrachtdagen"
-
-#: automation/doctype/assignment_rule/assignment_rule.py:64
-msgid "Assignment Day{0} {1} has been repeated."
msgstr ""
#. Name of a DocType
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgid "Assignment Rule"
-msgstr "Toewijzingsregel"
-
#. Label of a Link in the Tools Workspace
#. Label of a shortcut in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Assignment Rule"
+#. 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 "Toewijzingsregel"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Assignment Rule"
-msgstr "Toewijzingsregel"
-
-#. Label of a Link field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Assignment Rule"
-msgstr "Toewijzingsregel"
-
-#. Name of a DocType
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgid "Assignment Rule Day"
-msgstr "Dag van de opdrachtregel"
-
-#. Name of a DocType
-#: automation/doctype/assignment_rule_user/assignment_rule_user.json
-msgid "Assignment Rule User"
-msgstr "Toewijzingsregel Gebruiker"
-
-#: automation/doctype/assignment_rule/assignment_rule.py:53
-msgid "Assignment Rule is not allowed on {0} document type"
msgstr ""
-#. Label of a Section Break field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. 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 "Opdrachtregels"
+msgstr ""
-#: desk/doctype/notification_log/notification_log.py:157
+#: frappe/desk/doctype/notification_log/notification_log.py:153
msgid "Assignment Update on {0}"
-msgstr "Opdrachtupdate op {0}"
+msgstr ""
-#: desk/form/assign_to.py:75
+#: frappe/desk/form/assign_to.py:78
msgid "Assignment for {0} {1}"
-msgstr "Toewijzing voor {0} {1}"
+msgstr ""
-#: desk/doctype/todo/todo.py:62
+#: frappe/desk/doctype/todo/todo.py:62
msgid "Assignment of {0} removed by {1}"
msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:227
+#. Label of the enable_email_assignment (Check) field in DocType 'Notification
+#. Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:255
msgid "Assignments"
-msgstr "opdrachten"
+msgstr ""
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "Assignments"
-msgstr "opdrachten"
-
-#: public/js/frappe/form/grid_row.js:629
+#: frappe/public/js/frappe/form/grid_row.js:680
msgid "At least one column is required to show in the grid."
msgstr ""
-#: website/doctype/web_form/web_form.js:64
-msgid "Atleast one field is required in Web Form Fields Table"
+#: frappe/website/doctype/web_form/web_form.js:73
+msgid "At least one field is required in Web Form Fields Table"
msgstr ""
-#: core/doctype/data_export/data_export.js:44
-msgid "Atleast one field of Parent Document Type is mandatory"
-msgstr "Ten minste één veld van bovenliggend documenttype is verplicht"
-
-#: public/js/frappe/form/controls/attach.js:5
-msgid "Attach"
-msgstr "Hechten"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Attach"
-msgstr "Hechten"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Attach"
-msgstr "Hechten"
+#: frappe/core/doctype/data_export/data_export.js:44
+msgid "At least one field of Parent Document Type is mandatory"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Attach"
-msgstr "Hechten"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/public/js/form_builder/components/controls/AttachControl.vue:15
+#: frappe/public/js/frappe/form/controls/attach.js:5
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Attach"
-msgstr "Hechten"
+msgstr ""
-#: public/js/frappe/views/communication.js:139
+#: frappe/public/js/frappe/views/communication.js:152
msgid "Attach Document Print"
-msgstr "Bevestig Document Print"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Attach Image"
-msgstr "Bevestig Afbeelding"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Attach Image"
-msgstr "Bevestig Afbeelding"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Attach Image"
-msgstr "Bevestig Afbeelding"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Attach Image"
-msgstr "Bevestig Afbeelding"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Attach Image"
-msgstr "Bevestig Afbeelding"
+msgstr ""
-#. Label of a Attach field in DocType 'Package Import'
-#: core/doctype/package_import/package_import.json
-msgctxt "Package Import"
+#. Label of the attach_package (Attach) field in DocType 'Package Import'
+#: frappe/core/doctype/package_import/package_import.json
msgid "Attach Package"
msgstr ""
-#. Label of a Check field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the attach_print (Check) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Attach Print"
-msgstr "Bevestig Print"
+msgstr ""
-#: website/doctype/website_slideshow/website_slideshow.js:8
+#: frappe/public/js/frappe/file_uploader/WebLink.vue:10
+msgid "Attach a web link"
+msgstr ""
+
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:8
msgid "Attach files / urls and add in table."
-msgstr "Voeg bestanden / urls toe en voeg in de tabel toe."
+msgstr ""
-#. Label of a Code field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#. Label of the attached_file (Code) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Attached File"
-msgstr "Bijgevoegd bestand"
+msgstr ""
-#. Label of a Link field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the attached_to_doctype (Link) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Attached To DocType"
-msgstr "Bijlage Aan DocType"
+msgstr ""
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the attached_to_field (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Attached To Field"
-msgstr "Bijgevoegd aan veld"
+msgstr ""
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the attached_to_name (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Attached To Name"
-msgstr "Gehecht Aan Naam"
+msgstr ""
-#: core/doctype/file/file.py:140
+#: frappe/core/doctype/file/file.py:142
msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
-msgstr "Gehechtheid"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Attachment"
-msgstr "Gehechtheid"
-
-#. Label of a Attach field in DocType 'Newsletter Attachment'
-#: email/doctype/newsletter_attachment/newsletter_attachment.json
-msgctxt "Newsletter Attachment"
-msgid "Attachment"
-msgstr "Gehechtheid"
-
-#. Label of a Int field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the attachment_limit (Int) field in DocType 'Email Account'
+#. Label of the attachment_limit (Int) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Attachment Limit (MB)"
-msgstr "Attachment Limit (MB)"
+msgstr ""
-#. Label of a Int field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Attachment Limit (MB)"
-msgstr "Attachment Limit (MB)"
-
-#: core/doctype/file/file.py:321
-#: public/js/frappe/form/sidebar/attachments.js:36
+#: frappe/core/doctype/file/file.py:324
+#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr ""
-#. Label of a HTML field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#. Label of the attachment_link (HTML) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Attachment Link"
-msgstr "Bijlage Link"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Attachment Removed"
-msgstr "Attachment verwijderd"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Attachment Removed"
-msgstr "Attachment verwijderd"
-
-#: core/doctype/file/utils.py:40
-#: email/doctype/newsletter/templates/newsletter.html:47
-#: website/doctype/web_form/templates/web_form.html:103
+#. Label of the attachments (Code) field in DocType 'Email Queue'
+#. Label of the attachments (Table) field in DocType 'Newsletter'
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/email/doctype/newsletter/templates/newsletter.html:47
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
+#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
-msgstr "Toebehoren"
+msgstr ""
-#. Label of a Code field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Attachments"
-msgstr "Toebehoren"
-
-#. Label of a Table field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Attachments"
-msgstr "Toebehoren"
-
-#: public/js/frappe/form/print_utils.js:89
+#: frappe/public/js/frappe/form/print_utils.js:91
msgid "Attempting Connection to QZ Tray..."
-msgstr "Poging tot verbinding met QZ-lade ..."
+msgstr ""
-#: public/js/frappe/form/print_utils.js:105
+#: frappe/public/js/frappe/form/print_utils.js:107
msgid "Attempting to launch QZ Tray..."
-msgstr "Poging om QZ-lade te starten ..."
+msgstr ""
-#. Label of a Table field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#: frappe/www/attribution.html:9
+msgid "Attribution"
+msgstr ""
+
+#. Label of the email_group (Table) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Audience"
msgstr ""
#. Name of a report
-#: custom/report/audit_system_hooks/audit_system_hooks.json
+#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
msgstr ""
#. Name of a DocType
-#: core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/audit_trail/audit_trail.json
msgid "Audit Trail"
msgstr ""
-#. Label of a Code field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the auth_url_data (Code) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Auth URL Data"
-msgstr "Auth URL-gegevens"
+msgstr ""
+#. Label of the backend_app_flow (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Authenticate as Service Principal"
+msgstr ""
+
+#. Label of the authentication_column (Section Break) field in DocType 'Email
+#. Account'
+#. Label of the authentication_credential_section (Section Break) field in
+#. DocType 'Push Notification Settings'
#. Label of a Card Break in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Authentication"
-msgstr "authenticatie"
+msgstr ""
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Authentication"
-msgstr "authenticatie"
-
-#: www/qrcode.html:19
+#: frappe/www/qrcode.html:19
msgid "Authentication Apps you can use are: "
-msgstr "Authenticatie Apps die u kunt gebruiken zijn:"
+msgstr ""
-#: email/doctype/email_account/email_account.py:294
+#: frappe/email/doctype/email_account/email_account.py:339
msgid "Authentication failed while receiving emails from Email Account: {0}."
-msgstr "Verificatie mislukt tijdens het ontvangen van e-mails van e-mailaccount: {0}."
+msgstr ""
-#. Label of a Data field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
+#. Label of the author (Data) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
msgid "Author"
-msgstr "Auteur"
-
-#. Label of a Password field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
-msgid "Authorization Code"
-msgstr "Authorisatie Code"
-
-#. Label of a Password field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
-msgid "Authorization Code"
-msgstr "Authorisatie Code"
-
-#. Label of a Data field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Authorization Code"
-msgstr "Authorisatie Code"
-
-#. Label of a Data field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
-msgid "Authorization Code"
-msgstr "Authorisatie Code"
+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 'Google Drive'
+#. Label of the authorization_code (Data) field in DocType 'OAuth Authorization
+#. Code'
#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/integrations/doctype/google_drive/google_drive.json
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
-msgstr "Authorisatie Code"
+msgstr ""
-#. Label of a Small Text field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the authorization_uri (Small Text) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Authorization URI"
msgstr ""
-#: templates/includes/oauth_confirmation.html:32
+#: frappe/templates/includes/oauth_confirmation.html:35
msgid "Authorization error for {}."
msgstr ""
-#. Label of a Button field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the authorize_api_access (Button) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Authorize API Access"
msgstr ""
-#. Label of a Button field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the authorize_api_indexing_access (Button) field in DocType
+#. 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Authorize API Indexing Access"
-msgstr "Autoriseer API Indexing Access"
+msgstr ""
-#. Label of a Button field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Label of the authorize_google_calendar_access (Button) field in DocType
+#. 'Google Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Authorize Google Calendar Access"
-msgstr "Google Agenda-toegang autoriseren"
+msgstr ""
-#. Label of a Button field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
+#. Label of the authorize_google_contacts_access (Button) field in DocType
+#. 'Google Contacts'
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Authorize Google Contacts Access"
-msgstr "Autoriseer Google Contacten Toegang"
+msgstr ""
-#. Label of a Button field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
+#. Label of the authorize_google_drive_access (Button) field in DocType 'Google
+#. Drive'
+#: frappe/integrations/doctype/google_drive/google_drive.json
msgid "Authorize Google Drive Access"
-msgstr "Autoriseer Google Drive Access"
+msgstr ""
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the authorize_url (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Authorize URL"
-msgstr "Autoriseer URL"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Authorized"
-msgstr "geautoriseerde"
+msgstr ""
-#. Option for the 'Type' (Select) field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Auto"
-msgstr "Auto"
+#: frappe/www/attribution.html:20
+msgid "Authors"
+msgstr ""
+
+#: frappe/www/attribution.html:37
+msgid "Authors / Maintainers"
+msgstr ""
#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth
#. Provider Settings'
-#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
-msgctxt "OAuth Provider Settings"
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
msgid "Auto"
-msgstr "Auto"
-
-#. Name of a DocType
-#: email/doctype/auto_email_report/auto_email_report.json
-msgid "Auto Email Report"
-msgstr "Auto Email Report"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Auto Email Report"
+#. 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 "Auto Email Report"
+msgstr ""
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the autoname (Data) field in DocType 'DocType'
+#. Label of the autoname (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Auto Name"
-msgstr "Auto Naam"
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Auto Name"
-msgstr "Auto Naam"
+msgstr ""
#. Name of a DocType
-#: automation/doctype/auto_repeat/auto_repeat.json
-#: public/js/frappe/utils/common.js:442
-msgid "Auto Repeat"
-msgstr "Auto herhalen"
-
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Auto Repeat"
+#: 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 "Auto herhalen"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Auto Repeat"
-msgstr "Auto herhalen"
+msgstr ""
#. Name of a DocType
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
msgid "Auto Repeat Day"
msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:158
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165
msgid "Auto Repeat Day{0} {1} has been repeated."
msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:436
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448
msgid "Auto Repeat Document Creation Failed"
-msgstr "Automatisch herhalen van documenten mislukt"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.js:115
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:117
msgid "Auto Repeat Schedule"
msgstr ""
-#: public/js/frappe/utils/common.js:434
+#: frappe/public/js/frappe/utils/common.js:434
msgid "Auto Repeat created for this document"
-msgstr "Auto Repeat gemaakt voor dit document"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:439
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451
msgid "Auto Repeat failed for {0}"
-msgstr "Automatisch herhalen is mislukt voor {0}"
+msgstr ""
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the auto_reply (Section Break) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Auto Reply"
msgstr ""
-#. Label of a Text Editor field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the auto_reply_message (Text Editor) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Auto Reply Message"
-msgstr "Automatisch Antwoord"
+msgstr ""
-#: automation/doctype/assignment_rule/assignment_rule.py:179
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:177
msgid "Auto assignment failed: {0}"
-msgstr "Automatische toewijzing mislukt: {0}"
+msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the follow_assigned_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that are assigned to you"
msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the follow_shared_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that are shared with you"
msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the follow_liked_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that you Like"
msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the follow_commented_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that you comment on"
msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the follow_created_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that you create"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Autocomplete"
-msgstr ""
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Autocomplete"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227
+msgid "Auto repeat failed. Please enable auto repeat after fixing the issues."
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Autocomplete"
msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "Autoincrement"
msgstr ""
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Automate processes and extend standard functionality using scripts and background jobs"
+msgstr ""
+
#. Option for the 'Communication Type' (Select) field in DocType
#. 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Automated Message"
msgstr ""
-#: public/js/frappe/ui/theme_switcher.js:69
-msgid "Automatic"
-msgstr ""
-
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
+#: frappe/public/js/frappe/ui/theme_switcher.js:69
msgid "Automatic"
msgstr ""
-#: email/doctype/email_account/email_account.py:675
+#: frappe/email/doctype/email_account/email_account.py:774
msgid "Automatic Linking can be activated only for one Email Account."
-msgstr "Automatisch koppelen kan slechts voor één e-mailaccount worden geactiveerd."
+msgstr ""
-#: email/doctype/email_account/email_account.py:670
+#: frappe/email/doctype/email_account/email_account.py:768
msgid "Automatic Linking can be activated only if Incoming is enabled."
-msgstr "Automatisch koppelen kan alleen worden geactiveerd als Inkomend is ingeschakeld."
+msgstr ""
-#. Label of a Int field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Description of a DocType
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Automatically Assign Documents to Users"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:128
+msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings."
+msgstr ""
+
+#. Label of the auto_account_deletion (Int) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Automatically delete account within (hours)"
msgstr ""
#. Label of a Card Break in the Tools Workspace
-#: automation/workspace/tools/tools.json
+#: frappe/automation/workspace/tools/tools.json
msgid "Automation"
-msgstr "Automatisering"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
+#. Label of the avatar (Attach Image) field in DocType 'Blogger'
+#: frappe/website/doctype/blogger/blogger.json
msgid "Avatar"
-msgstr "Avatar"
-
-#: public/js/frappe/form/controls/password.js:89
-#: public/js/frappe/ui/group_by/group_by.js:21
-msgid "Average"
-msgstr "Gemiddelde"
+msgstr ""
#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Average"
-msgstr "Gemiddelde"
-
#. Option for the 'Function' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/form/controls/password.js:88
+#: frappe/public/js/frappe/ui/group_by/group_by.js:21
msgid "Average"
-msgstr "Gemiddelde"
+msgstr ""
-#: public/js/frappe/ui/group_by/group_by.js:332
+#: frappe/public/js/frappe/ui/group_by/group_by.js:342
msgid "Average of {0}"
-msgstr "Gemiddelde van {0}"
+msgstr ""
-#: utils/password_strength.py:132
+#: frappe/utils/password_strength.py:130
msgid "Avoid dates and years that are associated with you."
-msgstr "Vermijd data en jaren die worden geassocieerd met u."
+msgstr ""
-#: utils/password_strength.py:126
+#: frappe/utils/password_strength.py:124
msgid "Avoid recent years."
-msgstr "Vermijd de afgelopen jaren."
+msgstr ""
-#: utils/password_strength.py:119
+#: frappe/utils/password_strength.py:117
msgid "Avoid sequences like abc or 6543 as they are easy to guess"
-msgstr "Vermijd sequenties zoals abc of 6543 zoals ze zijn makkelijk te raden"
+msgstr ""
-#: utils/password_strength.py:126
+#: frappe/utils/password_strength.py:124
msgid "Avoid years that are associated with you."
-msgstr "Vermijd jaar die worden geassocieerd met u."
+msgstr ""
-#. Label of a Check field in DocType 'User Email'
-#: core/doctype/user_email/user_email.json
-msgctxt "User Email"
+#. Label of the awaiting_password (Check) field in DocType 'User Email'
+#: frappe/core/doctype/user_email/user_email.json
msgid "Awaiting Password"
-msgstr "In afwachting van wachtwoord"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the awaiting_password (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Awaiting password"
-msgstr "In afwachting van Password"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:200
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:195
msgid "Awesome Work"
msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:358
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:353
msgid "Awesome, now try making an entry yourself"
msgstr ""
-#: public/js/frappe/utils/number_systems.js:9
+#: frappe/public/js/frappe/utils/number_systems.js:9
msgctxt "Number system"
msgid "B"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B0"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B1"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B10"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B2"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B3"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B4"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B5"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B6"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B7"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B8"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B9"
msgstr ""
-#: public/js/frappe/views/communication.js:76
+#. Label of the bcc (Code) field in DocType 'Communication'
+#. Label of the bcc (Code) field in DocType 'Notification Recipient'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "BCC"
-msgstr "BCC"
+msgstr ""
-#. Label of a Code field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/public/js/frappe/views/communication.js:85
+msgctxt "Email Recipients"
msgid "BCC"
-msgstr "BCC"
+msgstr ""
-#. Label of a Code field in DocType 'Notification Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
-msgid "BCC"
-msgstr "BCC"
+#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:181
+msgid "Back"
+msgstr ""
-#: templates/pages/integrations/gcalendar-success.html:13
+#: frappe/templates/pages/integrations/gcalendar-success.html:13
msgid "Back to Desk"
-msgstr "Terug naar bureau"
+msgstr ""
-#: www/404.html:20
+#: frappe/www/404.html:26
msgid "Back to Home"
-msgstr "Terug naar huis"
+msgstr ""
-#: www/login.html:181 www/login.html:212
+#: frappe/www/login.html:201 frappe/www/login.html:232
msgid "Back to Login"
-msgstr "Terug naar Inloggen"
+msgstr ""
-#. Label of a Color field in DocType 'Social Link Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#. Label of the background_color (Color) field in DocType 'Number Card'
+#. Label of the background_color (Color) field in DocType 'Social Link
+#. Settings'
+#. Label of the background_color (Link) field in DocType 'Website Theme'
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Background Color"
-msgstr "Achtergrondkleur"
+msgstr ""
-#. Label of a Link field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Background Color"
-msgstr "Achtergrondkleur"
-
-#. Label of a Attach Image field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the background_image (Attach Image) field in DocType 'Web Page
+#. Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Background Image"
msgstr ""
-#: public/js/frappe/ui/toolbar/toolbar.js:143
-msgid "Background Jobs"
-msgstr "Achtergrond Jobs"
-
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "RQ Job"
+#. Label of the background_jobs_section (Section Break) field in DocType
+#. 'System Health Report'
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
msgid "Background Jobs"
-msgstr "Achtergrond Jobs"
+msgstr ""
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the background_jobs_check (Data) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Background Jobs Check"
+msgstr ""
+
+#. Label of the background_jobs_queue (Autocomplete) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Background Jobs Queue"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:87
+msgid "Background Print (required for >25 documents)"
+msgstr ""
+
+#. Label of the background_workers (Section Break) field in DocType 'System
+#. Settings'
+#. Label of the background_workers (Table) field in DocType 'System Health
+#. Report'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Background Workers"
-msgstr "Achtergrond werknemers"
+msgstr ""
-#: integrations/doctype/google_drive/google_drive.js:31
+#: frappe/integrations/doctype/google_drive/google_drive.py:170
+msgid "Backing up Data."
+msgstr ""
+
+#: frappe/integrations/doctype/google_drive/google_drive.js:32
msgid "Backing up to Google Drive."
-msgstr "Back-up maken op Google Drive."
+msgstr ""
#. Label of a Card Break in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Backup"
-msgstr "Backup"
+msgstr ""
-#. Label of a Section Break field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#. Label of the backup_details_section (Section Break) field in DocType 'S3
+#. Backup Settings'
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Backup Details"
-msgstr "Back-upgegevens"
+msgstr ""
-#: desk/page/backups/backups.js:26
+#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
msgstr ""
-#. Label of a Check field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#. Label of the backup_files (Check) field in DocType 'S3 Backup Settings'
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Backup Files"
-msgstr "Backup bestanden"
+msgstr ""
-#. Label of a Data field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
+#. Label of the backup_folder_id (Data) field in DocType 'Google Drive'
+#: frappe/integrations/doctype/google_drive/google_drive.json
msgid "Backup Folder ID"
-msgstr "Back-upmap-ID"
+msgstr ""
-#. Label of a Data field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
+#. Label of the backup_folder_name (Data) field in DocType 'Google Drive'
+#: frappe/integrations/doctype/google_drive/google_drive.json
msgid "Backup Folder Name"
-msgstr "Naam back-upmap"
+msgstr ""
-#. Label of a Select field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
+#. Label of the backup_frequency (Select) field in DocType 'Dropbox Settings'
+#. Label of the frequency (Select) field in DocType 'S3 Backup Settings'
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Backup Frequency"
-msgstr "Backup Frequentie"
+msgstr ""
-#. Label of a Select field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Backup Frequency"
-msgstr "Backup Frequentie"
+#. Label of the backup_path (Data) field in DocType 'S3 Backup Settings'
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
+msgid "Backup Path"
+msgstr ""
-#: desk/page/backups/backups.py:99
+#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
-msgstr "Backup-taak is al in de rij. U ontvangt een email met de downloadlink"
+msgstr ""
#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup
#. Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Backup public and private files along with the database."
-msgstr "Maak samen met de database een back-up van openbare en privébestanden."
+msgstr ""
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the backups_tab (Tab Break) field in DocType 'System Settings'
+#. Label of the backups_section (Section Break) field in DocType 'System Health
+#. Report'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Backups"
-msgstr "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:65
+msgid "Bad Cron Expression"
+msgstr ""
#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Banker's Rounding"
msgstr ""
#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Banker's Rounding (legacy)"
msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the banner (Section Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Banner"
-msgstr "Banner"
+msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the banner_html (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Banner HTML"
-msgstr "Banner HTML"
+msgstr ""
-#. Label of a Attach Image field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the banner_image (Attach Image) field in DocType 'User'
+#. Label of the banner_image (Attach Image) field in DocType 'Web Form'
+#: frappe/core/doctype/user/user.json
+#: frappe/website/doctype/web_form/web_form.json
msgid "Banner Image"
-msgstr "Banner Afbeelding"
-
-#. Label of a Attach Image field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Banner Image"
-msgstr "Banner Afbeelding"
+msgstr ""
#. Description of the 'Banner HTML' (Code) field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Banner is above the Top Menu Bar."
-msgstr "Banner is boven de top menubalk."
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Bar"
-msgstr "Bar"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Barcode"
-msgstr "Barcode"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Barcode"
-msgstr "Barcode"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Barcode"
-msgstr "Barcode"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the base_dn (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Base Distinguished Name (DN)"
-msgstr "Base Distinguished Name (DN)"
+msgstr ""
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the base_url (Data) field in DocType 'Geolocation Settings'
+#. Label of the base_url (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Base URL"
-msgstr "Basis-URL"
+msgstr ""
-#: printing/page/print/print.js:266 printing/page/print/print.js:320
+#. Label of the based_on (Link) field in DocType 'Language'
+#: frappe/core/doctype/language/language.json
+#: frappe/printing/page/print/print.js:273
+#: frappe/printing/page/print/print.js:327
msgid "Based On"
-msgstr "Gebaseerd op"
-
-#. Label of a Link field in DocType 'Language'
-#: core/doctype/language/language.json
-msgctxt "Language"
-msgid "Based On"
-msgstr "Gebaseerd op"
+msgstr ""
#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Based on Field"
-msgstr "Gebaseerd op veld"
+msgstr ""
-#. Label of a Link field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the user (Link) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Based on Permissions For User"
-msgstr "Op basis van de machtigingen voor de gebruiker"
+msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Basic"
-msgstr "Basis"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the section_break_3 (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Basic Info"
msgstr ""
+#: frappe/public/js/frappe/ui/filters/filter.js:63
+#: frappe/public/js/frappe/ui/filters/filter.js:69
+msgid "Before"
+msgstr ""
+
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Cancel"
-msgstr "Voor annuleren"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Delete"
-msgstr "Voordat verwijderen"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Discard"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Insert"
-msgstr "Voor het invoegen"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Print"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Rename"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Save"
-msgstr "Voordat u opslaat"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Save (Submitted Document)"
-msgstr "Voor opslaan (verzonden document)"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Submit"
-msgstr "Voordat indienen"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Validate"
msgstr ""
#. Option for the 'Level' (Select) field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
+#: frappe/website/doctype/help_article/help_article.json
msgid "Beginner"
-msgstr "Beginner"
+msgstr ""
-#: public/js/frappe/form/link_selector.js:29
+#: frappe/public/js/frappe/form/link_selector.js:29
msgid "Beginning with"
-msgstr "Beginnend met"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the beta (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Beta"
-msgstr "beta"
+msgstr ""
-#: utils/password_strength.py:75
+#: frappe/utils/password_strength.py:73
msgid "Better add a few more letters or another word"
-msgstr "Beter voeg een paar letters of een ander woord"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:27
+#: frappe/public/js/frappe/ui/filters/filter.js:27
msgid "Between"
-msgstr "Tussen"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Billing"
-msgstr "Facturering"
+msgstr ""
-#. Label of a Small Text field in DocType 'About Us Team Member'
-#: website/doctype/about_us_team_member/about_us_team_member.json
-msgctxt "About Us Team Member"
+#: frappe/public/js/frappe/form/templates/contact_list.html:27
+msgid "Billing Contact"
+msgstr ""
+
+#. Label of the binary_logging (Data) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Binary Logging"
+msgstr ""
+
+#. Label of the bio (Small Text) field in DocType 'User'
+#. Label of the bio (Small Text) field in DocType 'About Us Team Member'
+#. Label of the bio (Small Text) field in DocType 'Blogger'
+#: frappe/core/doctype/user/user.json
+#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
+#: frappe/website/doctype/blogger/blogger.json
msgid "Bio"
-msgstr "Bio"
+msgstr ""
-#. Label of a Small Text field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
-msgid "Bio"
-msgstr "Bio"
-
-#. Label of a Small Text field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Bio"
-msgstr "Bio"
-
-#. Label of a Date field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the birth_date (Date) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Birth Date"
-msgstr "Geboortedatum"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:41
+#: frappe/public/js/frappe/data_import/data_exporter.js:41
msgid "Blank Template"
-msgstr "Lege sjabloon"
+msgstr ""
#. Name of a DocType
-#: core/doctype/block_module/block_module.json
+#: frappe/core/doctype/block_module/block_module.json
msgid "Block Module"
-msgstr "Block Module"
+msgstr ""
-#. Label of a Table field in DocType 'Module Profile'
-#: core/doctype/module_profile/module_profile.json
-msgctxt "Module Profile"
+#. Label of the block_modules (Table) field in DocType 'Module Profile'
+#. Label of the block_modules (Table) field in DocType 'User'
+#: frappe/core/doctype/module_profile/module_profile.json
+#: frappe/core/doctype/user/user.json
msgid "Block Modules"
-msgstr "Block Modules"
+msgstr ""
-#. Label of a Table field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Block Modules"
-msgstr "Block Modules"
-
-#. Label of a Check field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#. Label of the blocked (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Blocked"
-msgstr "Geblokkeerd"
+msgstr ""
#. Label of a Card Break in the Website Workspace
-#: website/doctype/blog_post/blog_post.py:239
-#: website/doctype/blog_post/templates/blog_post.html:13
-#: website/doctype/blog_post/templates/blog_post_list.html:2
-#: website/doctype/blog_post/templates/blog_post_list.html:11
-#: website/workspace/website/website.json
+#: frappe/website/doctype/blog_post/blog_post.py:245
+#: frappe/website/doctype/blog_post/templates/blog_post.html:13
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11
+#: frappe/website/workspace/website/website.json
msgid "Blog"
-msgstr "Blog"
+msgstr ""
#. Name of a DocType
-#: website/doctype/blog_category/blog_category.json
-msgid "Blog Category"
-msgstr "Blog Categorie"
-
+#. Label of the blog_category (Link) field in DocType 'Blog Post'
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Blog Category"
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/workspace/website/website.json
msgid "Blog Category"
-msgstr "Blog Categorie"
+msgstr ""
-#. Label of a Link field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Blog Category"
-msgstr "Blog Categorie"
-
-#. Label of a Small Text field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the blog_intro (Small Text) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Blog Intro"
-msgstr "Blog Intro"
+msgstr ""
-#. Label of a Small Text field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Blog Introduction"
-msgstr "Blog Inleiding"
+msgstr ""
#. Name of a DocType
-#: website/doctype/blog_post/blog_post.json
-msgid "Blog Post"
-msgstr "Blog Post"
-
-#. Linked DocType in Blog Category's connections
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
-msgid "Blog Post"
-msgstr "Blog Post"
-
#. Label of a Link in the Website Workspace
#. Label of a shortcut in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Blog Post"
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/workspace/website/website.json
msgid "Blog Post"
-msgstr "Blog Post"
-
-#. Linked DocType in Blogger's connections
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
-msgid "Blog Post"
-msgstr "Blog Post"
+msgstr ""
#. Name of a DocType
-#: website/doctype/blog_settings/blog_settings.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Blog Settings"
-msgstr "Blog Instellingen"
+msgstr ""
-#. Label of a Data field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the blog_title (Data) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Blog Title"
-msgstr "Blog Titel"
+msgstr ""
#. Name of a role
+#. Label of the blogger (Link) field in DocType 'Blog Post'
#. Name of a DocType
-#: website/doctype/blog_category/blog_category.json
-#: website/doctype/blog_post/blog_post.json
-#: website/doctype/blog_settings/blog_settings.json
-#: website/doctype/blogger/blogger.json
-msgid "Blogger"
-msgstr "Blogger"
-
-#. Label of a Link field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Blogger"
-msgstr "Blogger"
-
#. Label of a Link in the Website Workspace
-#. Label of a shortcut in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Blogger"
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
+#: frappe/website/doctype/blogger/blogger.json
+#: frappe/website/workspace/website/website.json
msgid "Blogger"
-msgstr "Blogger"
-
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Blogger"
-msgstr "Blogger"
-
-#. Subtitle of the Module Onboarding 'Website'
-#: website/module_onboarding/website/website.json
-msgid "Blogs, Website View Tracking, and more."
msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Blue"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Blue"
msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. 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 "Stoutmoedig"
-
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Bold"
-msgstr "Stoutmoedig"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Bold"
-msgstr "Stoutmoedig"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Bot"
-msgstr "Bot"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:126
+#: frappe/printing/page/print_format_builder/print_format_builder.js:126
msgid "Both DocType and Name required"
-msgstr "Zowel DocType en Naam verplicht"
+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'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:154
msgid "Bottom"
-msgstr "Bodem"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:248
msgid "Bottom Center"
msgstr ""
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Bottom Center"
-msgstr ""
-
-#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:247
msgid "Bottom Left"
msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Bottom Right"
-msgstr ""
-
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:249
msgid "Bottom Right"
msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Bounced"
-msgstr "Gebouncet"
+msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the brand (Section Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand"
-msgstr "Merk"
+msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the brand_html (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand HTML"
-msgstr "Merk HTML"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the banner_image (Attach Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand Image"
-msgstr "merk Afbeelding"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Brand Logo"
msgstr ""
#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid ""
-"Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n"
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n"
"has a transparent background and use the <img /> tag. Keep size as 200px x 30px"
msgstr ""
-#. Label of a Code field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the breadcrumbs (Code) field in DocType 'Web Form'
+#. Label of the breadcrumbs (Code) field in DocType 'Web Page'
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Breadcrumbs"
-msgstr "Broodkruimels"
+msgstr ""
-#. Label of a Code field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Breadcrumbs"
-msgstr "Broodkruimels"
-
-#: website/doctype/blog_post/templates/blog_post_list.html:18
-#: website/doctype/blog_post/templates/blog_post_list.html:21
+#. Label of the browse_by_category (Check) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Browse by category"
msgstr ""
-#. Label of a Check field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
-msgid "Browse by category"
+#. Label of the browser (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:36
+msgid "Browser"
msgstr ""
-#: website/report/website_analytics/website_analytics.js:36
-msgid "Browser"
-msgstr "Browser"
-
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Browser"
-msgstr "Browser"
-
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
+#. Label of the browser_version (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Browser Version"
-msgstr "Browserversie"
+msgstr ""
-#: public/js/frappe/desk.js:19
+#: frappe/public/js/frappe/desk.js:19
msgid "Browser not supported"
-msgstr "Browser wordt niet ondersteund"
+msgstr ""
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the brute_force_security (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Brute Force Security"
-msgstr "Brute Force-beveiliging"
+msgstr ""
-#. Label of a Data field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#. Label of the bucket (Data) field in DocType 'S3 Backup Settings'
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Bucket Name"
-msgstr "Bucketnaam"
+msgstr ""
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:66
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:71
msgid "Bucket {0} not found."
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
-#: core/workspace/build/build.json
+#: frappe/core/workspace/build/build.json
msgid "Build"
msgstr ""
-#: workflow/doctype/workflow/workflow_list.js:18
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Build your own reports, print formats, and dashboards. Create personalized workspaces for easier navigation"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow_list.js:18
msgid "Build {0}"
msgstr ""
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#: frappe/templates/includes/footer/footer_powered.html:1
+msgid "Built on {0}"
+msgstr ""
+
+#. Label of the bulk_actions (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Bulk Actions"
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:142
+#: frappe/core/doctype/user_permission/user_permission_list.js:142
msgid "Bulk Delete"
-msgstr "Bulk verwijderen"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:256
+#: frappe/public/js/frappe/list/bulk_operations.js:321
msgid "Bulk Edit"
msgstr ""
-#: public/js/frappe/form/grid.js:1151
+#: frappe/public/js/frappe/form/grid.js:1184
msgid "Bulk Edit {0}"
-msgstr "Bulk Bewerken {0}"
+msgstr ""
-#. Name of a DocType
-#: desk/doctype/bulk_update/bulk_update.json
-msgid "Bulk Update"
-msgstr "bulk-update"
+#: frappe/desk/reportview.py:602
+msgid "Bulk Operation Failed"
+msgstr ""
+
+#: frappe/desk/reportview.py:606
+msgid "Bulk Operation Successful"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:131
+msgid "Bulk PDF Export"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Bulk Update"
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/bulk_update/bulk_update.json
msgid "Bulk Update"
-msgstr "bulk-update"
+msgstr ""
-#: model/workflow.py:253
+#: frappe/model/workflow.py:254
msgid "Bulk approval only support up to 500 documents."
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.py:57
+#: frappe/desk/doctype/bulk_update/bulk_update.py:56
msgid "Bulk operation is enqueued in background."
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.py:70
+#: frappe/desk/doctype/bulk_update/bulk_update.py:68
msgid "Bulk operations only support up to 500 documents."
msgstr ""
-#: model/workflow.py:243
+#: frappe/model/workflow.py:243
msgid "Bulk {0} is enqueued in background."
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Button"
-msgstr "Knop"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Button"
-msgstr "Knop"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Button"
-msgstr "Knop"
+msgstr ""
-#. Label of a Check field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the button_gradients (Check) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Gradients"
-msgstr "Knop verlopen"
+msgstr ""
-#. Label of a Check field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the button_rounded_corners (Check) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Rounded Corners"
-msgstr "Knoop Afgeronde Hoeken"
+msgstr ""
-#. Label of a Check field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the button_shadows (Check) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Shadows"
-msgstr "Knopschaduwen"
-
-#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "By \"Naming Series\" field"
msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "By \"Naming Series\" field"
msgstr ""
-#: website/doctype/web_page/web_page.js:111
-#: website/doctype/web_page/web_page.js:118
+#: frappe/website/doctype/web_page/web_page.js:111
+#: frappe/website/doctype/web_page/web_page.js:118
msgid "By default the title is used as meta title, adding a value here will override it."
-msgstr "Standaard wordt de titel gebruikt als metatitel, als u hier een waarde toevoegt, wordt deze overschreven."
+msgstr ""
#. Description of the 'Send Email for Successful Backup' (Check) field in
#. DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "By default, emails are only sent for failed backups."
msgstr ""
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "By fieldname"
msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "By fieldname"
-msgstr ""
-
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "By script"
msgstr ""
-#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "By script"
-msgstr ""
-
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in
+#. DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Bypass Restricted IP Address Check If Two Factor Auth Enabled"
-msgstr "Beperkt IP-adres omzeilen Controleer of twee-factorenauthenticatie is ingeschakeld"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the bypass_2fa_for_retricted_ip_users (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Bypass Two Factor Auth for users who login from restricted IP Address"
-msgstr "Bypass Two Factor Auth voor gebruikers die zich aanmelden bij een beperkt IP-adres"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in
+#. DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Bypass restricted IP Address check If Two Factor Auth Enabled"
-msgstr "Bypass beperkte IP-adrescontrole Als twee factoren geactiveerd zijn"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "C5E"
msgstr ""
-#: templates/print_formats/standard_macros.html:212
+#: frappe/templates/print_formats/standard_macros.html:220
msgid "CANCELLED"
-msgstr "GEANNULEERD"
+msgstr ""
-#: public/js/frappe/views/communication.js:71
+#. Label of the cc (Code) field in DocType 'Communication'
+#. Label of the cc (Code) field in DocType 'Notification Recipient'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "CC"
-msgstr "CC"
+msgstr ""
-#. Label of a Code field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/public/js/frappe/views/communication.js:76
+msgctxt "Email Recipients"
msgid "CC"
-msgstr "CC"
+msgstr ""
-#. Label of a Code field in DocType 'Notification Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
-msgid "CC"
-msgstr "CC"
-
-#. Label of a Data field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#. Label of the cmd (Data) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
msgid "CMD"
msgstr ""
-#. Label of a Section Break field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
-msgid "CSS"
-msgstr "CSS"
+#: frappe/public/js/frappe/color_picker/color_picker.js:20
+msgid "COLOR PICKER"
+msgstr ""
-#. Label of a Code field in DocType 'Print Style'
-#: printing/doctype/print_style/print_style.json
-msgctxt "Print Style"
+#. Label of the css_section (Section Break) field in DocType 'Custom HTML
+#. Block'
+#. Label of the css (Code) field in DocType 'Print Style'
+#. Label of the css (Code) field in DocType 'Web Page'
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "CSS"
-msgstr "CSS"
+msgstr ""
-#. Label of a Code field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "CSS"
-msgstr "CSS"
-
-#. Label of a Small Text field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the css_class (Small Text) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "CSS Class"
-msgstr "CSS-klasse"
+msgstr ""
#. Description of the 'Element Selector' (Data) field in DocType 'Form Tour
#. Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "CSS selector for the element you want to highlight."
msgstr ""
-#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "CSV"
-msgstr "CSV"
-
#. Option for the 'File Type' (Select) field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/core/doctype/data_export/data_export.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "CSV"
-msgstr "CSV"
+msgstr ""
-#. Label of a Data field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the cta_label (Data) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "CTA Label"
-msgstr "CTA-label"
+msgstr ""
-#. Label of a Data field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the cta_url (Data) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "CTA URL"
-msgstr "CTA-URL"
+msgstr ""
-#: sessions.py:31
+#. Label of the cache_section (Section Break) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Cache"
+msgstr ""
+
+#: frappe/sessions.py:35
msgid "Cache Cleared"
-msgstr "Cache Gewist"
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:181
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:181
msgid "Calculate"
-msgstr "Bereken"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Event"
-msgid "Calendar"
-msgstr "Agenda"
-
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Calendar"
-msgstr "Agenda"
-
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Calendar"
-msgstr "Agenda"
+msgstr ""
-#. Label of a Data field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Label of the calendar_name (Data) field in DocType 'Google Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Calendar Name"
-msgstr "Kalendernaam"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/public/js/frappe/list/base_list.js:207
msgid "Calendar View"
-msgstr "Kalenderweergave"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Calendar View"
-msgstr "Kalenderweergave"
-
-#: contacts/doctype/contact/contact.js:50
-msgid "Call"
-msgstr "Bellen"
+msgstr ""
#. Option for the 'Event Category' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/contacts/doctype/contact/contact.js:55
+#: frappe/desk/doctype/event/event.json
msgid "Call"
-msgstr "Bellen"
+msgstr ""
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the call_to_action (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Call To Action"
-msgstr "Oproep tot actie"
+msgstr ""
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the call_to_action_url (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Call To Action URL"
-msgstr "Call-to-action-URL"
+msgstr ""
-#. Label of a Section Break field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the cta_section (Section Break) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Call to Action"
msgstr ""
-#. Label of a Small Text field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the callback_message (Small Text) field in DocType 'Onboarding
+#. Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Callback Message"
-msgstr "Terugbelbericht"
+msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the callback_title (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Callback Title"
-msgstr "Callback-titel"
+msgstr ""
-#: public/js/frappe/ui/capture.js:326
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
+#: frappe/public/js/frappe/ui/capture.js:334
msgid "Camera"
-msgstr "Camera"
+msgstr ""
-#: public/js/frappe/utils/utils.js:1711
-#: website/report/website_analytics/website_analytics.js:39
+#. Label of the campaign (Link) field in DocType 'Newsletter'
+#. Label of the campaign (Data) field in DocType 'Web Page View'
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
msgstr ""
-#. Label of a Link field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Campaign"
-msgstr ""
-
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Campaign"
-msgstr ""
-
-#. Label of a Small Text field in DocType 'Marketing Campaign'
-#: website/doctype/marketing_campaign/marketing_campaign.json
-msgctxt "Marketing Campaign"
+#. Label of the campaign_description (Small Text) field in DocType 'UTM
+#. Campaign'
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Campaign Description (Optional)"
msgstr ""
-#: custom/doctype/custom_field/custom_field.py:360
+#: frappe/public/js/frappe/form/templates/set_sharing.html:4
+#: frappe/public/js/frappe/form/templates/set_sharing.html:50
+msgid "Can Read"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/set_sharing.html:7
+#: frappe/public/js/frappe/form/templates/set_sharing.html:53
+msgid "Can Share"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/set_sharing.html:6
+#: frappe/public/js/frappe/form/templates/set_sharing.html:52
+msgid "Can Submit"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/set_sharing.html:5
+#: frappe/public/js/frappe/form/templates/set_sharing.html:51
+msgid "Can Write"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "Can not rename as column {0} is already present on DocType."
msgstr ""
-#: core/doctype/doctype/doctype.py:1114
+#: frappe/core/doctype/doctype/doctype.py:1163
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
msgstr ""
#. Description of the 'Apply User Permission On' (Link) field in DocType 'User
#. Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#: frappe/core/doctype/user_type/user_type.json
msgid "Can only list down the document types which has been linked to the User document type."
msgstr ""
-#: model/rename_doc.py:367
+#: frappe/desk/form/document_follow.py:48
+msgid "Can't follow since changes are not tracked."
+msgstr ""
+
+#: frappe/model/rename_doc.py:366
msgid "Can't rename {0} to {1} because {0} doesn't exist."
msgstr ""
-#: core/doctype/doctype/doctype_list.js:113
-#: public/js/frappe/form/reminders.js:54
+#. Label of the cancel (Check) field in DocType 'Custom DocPerm'
+#. Label of the cancel (Check) field in DocType 'DocPerm'
+#. Label of the cancel (Check) field in DocType 'User Document Type'
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/reminders.js:54
msgid "Cancel"
-msgstr "Annuleren"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1889
+#: frappe/public/js/frappe/list/list_view.js:2059
msgctxt "Button in list view actions menu"
msgid "Cancel"
-msgstr "Annuleren"
+msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Cancel"
-msgstr "Annuleren"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Cancel"
-msgstr "Annuleren"
-
-#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Cancel"
-msgstr "Annuleren"
-
-#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Cancel"
-msgstr "Annuleren"
-
-#: public/js/frappe/ui/messages.js:68
+#: frappe/public/js/frappe/ui/messages.js:68
msgctxt "Secondary button in warning dialog"
msgid "Cancel"
-msgstr "Annuleren"
+msgstr ""
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Cancel"
-msgstr "Annuleren"
-
-#: public/js/frappe/form/form.js:998
+#: frappe/public/js/frappe/form/form.js:979
msgid "Cancel All"
msgstr ""
-#: public/js/frappe/form/form.js:985
+#: frappe/public/js/frappe/form/form.js:966
msgid "Cancel All Documents"
-msgstr "Annuleer alle documenten"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:132
+#: frappe/email/doctype/newsletter/newsletter.js:132
msgid "Cancel Scheduling"
msgstr ""
-#: public/js/frappe/list/list_view.js:1894
+#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
-msgstr "{0} documenten annuleren?"
-
-#: desk/form/save.py:59 public/js/frappe/model/indicator.js:78
-#: public/js/frappe/ui/filters/filter.js:495
-msgid "Cancelled"
-msgstr "Geannuleerd"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Cancelled"
-msgstr "Geannuleerd"
-
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Cancelled"
-msgstr "Geannuleerd"
-
#. Option for the 'Status' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Cancelled"
-msgstr "Geannuleerd"
-
-#. Option for the 'Status' (Select) field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Cancelled"
-msgstr "Geannuleerd"
-
#. Option for the 'Status' (Select) field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
+#: frappe/desk/form/save.py:64
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/public/js/frappe/model/indicator.js:78
+#: frappe/public/js/frappe/ui/filters/filter.js:540
msgid "Cancelled"
-msgstr "Geannuleerd"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document.py:51
+#: frappe/core/doctype/deleted_document/deleted_document.py:52
msgid "Cancelled Document restored as Draft"
-msgstr "Geannuleerd document hersteld als Concept"
+msgstr ""
-#: public/js/frappe/form/save.js:13
+#: frappe/public/js/frappe/form/save.js:13
msgctxt "Freeze message while cancelling a document"
msgid "Cancelling"
-msgstr "Annuleren"
+msgstr ""
-#: desk/form/linked_with.py:379
+#: frappe/desk/form/linked_with.py:381
msgid "Cancelling documents"
-msgstr "Documenten annuleren"
+msgstr ""
-#: desk/doctype/bulk_update/bulk_update.py:94
+#: frappe/desk/doctype/bulk_update/bulk_update.py:91
msgid "Cancelling {0}"
-msgstr "{0} annuleren"
+msgstr ""
-#: core/doctype/prepared_report/prepared_report.py:244
+#: frappe/core/doctype/prepared_report/prepared_report.py:265
msgid "Cannot Download Report due to insufficient permissions"
msgstr ""
-#: client.py:461
+#: frappe/client.py:452
msgid "Cannot Fetch Values"
msgstr ""
-#: core/page/permission_manager/permission_manager.py:150
+#: frappe/core/page/permission_manager/permission_manager.py:156
msgid "Cannot Remove"
-msgstr "Kan niet verwijderen"
+msgstr ""
-#: model/base_document.py:1034
+#: frappe/model/base_document.py:1156
msgid "Cannot Update After Submit"
msgstr ""
-#: core/doctype/file/file.py:574
+#: frappe/core/doctype/file/file.py:621
msgid "Cannot access file path {0}"
msgstr ""
-#: public/js/workflow_builder/utils.js:183
+#: frappe/public/js/workflow_builder/utils.js:183
msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State"
msgstr ""
-#: workflow/doctype/workflow/workflow.py:112
+#: frappe/workflow/doctype/workflow/workflow.py:109
msgid "Cannot cancel before submitting. See Transition {0}"
-msgstr "Opzeggen kan niet vóór de indiening. Zie overgang {0}"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:229
+#: frappe/public/js/frappe/list/bulk_operations.js:294
msgid "Cannot cancel {0}."
msgstr ""
-#: model/document.py:838
+#: frappe/model/document.py:1012
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: model/document.py:852
+#: frappe/model/document.py:1026
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
-#: public/js/workflow_builder/utils.js:170
+#: frappe/public/js/workflow_builder/utils.js:170
msgid "Cannot change state of Cancelled Document ({0} State)"
msgstr ""
-#: workflow/doctype/workflow/workflow.py:101
+#: frappe/workflow/doctype/workflow/workflow.py:98
msgid "Cannot change state of Cancelled Document. Transition row {0}"
-msgstr "Status van het geannuleerde document kan niet veranderd worden. Overgang rij {0}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1104
+#: frappe/core/doctype/doctype/doctype.py:1153
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr ""
-#: core/doctype/communication/communication.py:193
+#: frappe/core/doctype/communication/communication.py:169
msgid "Cannot create a {0} against a child document: {1}"
-msgstr "Kan geen {0} maken tegen een onderliggend document: {1}"
+msgstr ""
-#: desk/doctype/workspace/workspace.py:250
+#: frappe/desk/doctype/workspace/workspace.py:272
msgid "Cannot create private workspace of other users"
msgstr ""
-#: core/doctype/file/file.py:151
+#: frappe/core/doctype/file/file.py:153
msgid "Cannot delete Home and Attachments folders"
-msgstr "Kan home en bijlagenmappen niet verwijderen"
+msgstr ""
-#: model/delete_doc.py:367
+#: frappe/model/delete_doc.py:378
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
-msgstr "Kan niet verwijderen of annuleren omdat {0} {1} is gekoppeld aan {2} {3} {4}"
-
-#: desk/doctype/workspace/workspace.py:417
-msgid "Cannot delete private workspace of other users"
msgstr ""
-#: desk/doctype/workspace/workspace.py:410
-msgid "Cannot delete public workspace without Workspace Manager role"
-msgstr ""
-
-#: custom/doctype/customize_form/customize_form.js:313
+#: frappe/custom/doctype/customize_form/customize_form.js:369
msgid "Cannot delete standard action. You can hide it if you want"
-msgstr "Kan standaardactie niet verwijderen. U kunt het verbergen als u dat wilt"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:328
+#: frappe/custom/doctype/customize_form/customize_form.js:391
msgid "Cannot delete standard document state."
msgstr ""
-#: custom/doctype/customize_form/customize_form.js:276
+#: frappe/custom/doctype/customize_form/customize_form.js:321
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr ""
-#: custom/doctype/customize_form/customize_form.js:298
-msgid "Cannot delete standard link. You can hide it if you want"
-msgstr "Kan standaardlink niet verwijderen. U kunt het verbergen als u dat wilt"
+#: 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 ""
-#: custom/doctype/customize_form/customize_form.js:268
+#: 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 ""
-#: public/js/frappe/list/bulk_operations.js:171
+#: frappe/public/js/frappe/list/bulk_operations.js:215
msgid "Cannot delete {0}"
-msgstr "Kan {0} niet verwijderen"
+msgstr ""
-#: utils/nestedset.py:302
+#: frappe/utils/nestedset.py:299
msgid "Cannot delete {0} as it has child nodes"
-msgstr "Kan {0} niet verwijderen omdat het onderliggende nodes heeft"
+msgstr ""
-#: desk/doctype/dashboard/dashboard.py:49
+#: frappe/desk/doctype/dashboard/dashboard.py:48
msgid "Cannot edit Standard Dashboards"
msgstr ""
-#: email/doctype/notification/notification.py:120
+#: frappe/email/doctype/notification/notification.py:192
msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it"
-msgstr "Kan standaardmelding niet bewerken. Om te bewerken, schakel dit uit en dupliceer het"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.py:388
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:388
msgid "Cannot edit Standard charts"
msgstr ""
-#: core/doctype/report/report.py:68
+#: frappe/core/doctype/report/report.py:72
msgid "Cannot edit a standard report. Please duplicate and create a new report"
-msgstr "Kan een standaard rapport niet bewerken. Gelieve te dupliceren en maak een nieuw rapport"
+msgstr ""
-#: model/document.py:858
+#: frappe/model/document.py:1032
msgid "Cannot edit cancelled document"
-msgstr "Kan geannuleerd document niet bewerken"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.js:378
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:378
msgid "Cannot edit filters for standard charts"
-msgstr "Filters voor standaarddiagrammen kunnen niet worden bewerkt"
+msgstr ""
-#: client.py:166
+#: frappe/desk/doctype/number_card/number_card.js:277
+#: frappe/desk/doctype/number_card/number_card.js:364
+msgid "Cannot edit filters for standard number cards"
+msgstr ""
+
+#: frappe/client.py:166
msgid "Cannot edit standard fields"
-msgstr "Kan standaard velden niet bewerken"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:124
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr ""
-#: core/doctype/file/file.py:249
+#: frappe/core/doctype/file/file.py:252
msgid "Cannot find file {} on disk"
msgstr ""
-#: core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:561
msgid "Cannot get file contents of a Folder"
msgstr ""
-#: printing/page/print/print.js:817
+#: frappe/printing/page/print/print.js:844
msgid "Cannot have multiple printers mapped to a single print format."
-msgstr "Er kunnen niet meerdere printers worden toegewezen aan één afdrukindeling."
+msgstr ""
-#: model/document.py:926
+#: frappe/public/js/frappe/form/grid.js:1128
+msgid "Cannot import table with more than 5000 rows."
+msgstr ""
+
+#: frappe/model/document.py:1100
msgid "Cannot link cancelled document: {0}"
-msgstr "Kan het geannuleerde document niet koppelen: {0}"
+msgstr ""
-#: model/mapper.py:184
+#: frappe/model/mapper.py:175
msgid "Cannot map because following condition fails:"
msgstr ""
-#: core/doctype/data_import/importer.py:924
+#: frappe/core/doctype/data_import/importer.py:971
msgid "Cannot match column {0} with any field"
-msgstr "Kan kolom {0} niet koppelen aan een veld"
+msgstr ""
-#: public/js/frappe/form/grid_row.js:172
+#: frappe/public/js/frappe/form/grid_row.js:175
msgid "Cannot move row"
-msgstr "Kan rij niet verplaatsen"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:865
+#: frappe/public/js/frappe/views/reports/report_view.js:921
msgid "Cannot remove ID field"
-msgstr "Kan ID-veld niet verwijderen"
+msgstr ""
-#: email/doctype/notification/notification.py:136
-msgid "Cannot set Notification on Document Type {0}"
-msgstr "Kan melding niet instellen op documenttype {0}"
+#: frappe/core/page/permission_manager/permission_manager.py:132
+msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set"
+msgstr ""
-#: core/doctype/docshare/docshare.py:69
+#: frappe/email/doctype/notification/notification.py:209
+msgid "Cannot set Notification with event {0} on Document Type {1}"
+msgstr ""
+
+#: frappe/core/doctype/docshare/docshare.py:67
msgid "Cannot share {0} with submit permission as the doctype {1} is not submittable"
msgstr ""
-#: public/js/frappe/list/bulk_operations.js:226
+#: frappe/public/js/frappe/list/bulk_operations.js:291
msgid "Cannot submit {0}."
msgstr ""
-#: desk/doctype/workspace/workspace.py:351
-msgid "Cannot update private workspace of other users"
+#: frappe/desk/doctype/bulk_update/bulk_update.js:26
+#: frappe/public/js/frappe/list/bulk_operations.js:366
+msgid "Cannot update {0}"
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.js:26
-#: public/js/frappe/list/bulk_operations.js:301
-msgid "Cannot update {0}"
-msgstr "Kan {0} niet updaten"
-
-#: model/db_query.py:1125
+#: frappe/model/db_query.py:1125
msgid "Cannot use sub-query in order by"
-msgstr "Kan geen gebruik maken van sub-query in bestelling door"
+msgstr ""
-#: model/db_query.py:1143
+#: frappe/model/db_query.py:1144
msgid "Cannot use {0} in order/group by"
msgstr ""
-#: public/js/frappe/list/bulk_operations.js:232
+#: frappe/public/js/frappe/list/bulk_operations.js:297
msgid "Cannot {0} {1}."
msgstr ""
-#: utils/password_strength.py:185
+#: frappe/utils/password_strength.py:181
msgid "Capitalization doesn't help very much."
-msgstr "Kapitalisatie helpt niet veel."
+msgstr ""
-#: public/js/frappe/ui/capture.js:286
+#: frappe/public/js/frappe/ui/capture.js:294
msgid "Capture"
msgstr ""
-#. Label of a Link field in DocType 'Number Card Link'
-#: desk/doctype/number_card_link/number_card_link.json
-msgctxt "Number Card Link"
+#. Label of the card (Link) field in DocType 'Number Card Link'
+#: frappe/desk/doctype/number_card_link/number_card_link.json
msgid "Card"
-msgstr "Kaart"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Card Break"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:263
msgid "Card Label"
-msgstr "Kaartlabel"
+msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:227
+#: frappe/public/js/frappe/widgets/widget_dialog.js:262
msgid "Card Links"
msgstr ""
-#. Label of a Table field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
+#. Label of the cards (Table) field in DocType 'Dashboard'
+#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Cards"
-msgstr "Kaarten"
+msgstr ""
-#: public/js/frappe/views/interaction.js:72
+#. Label of the category (Data) field in DocType 'Desktop Icon'
+#. Label of the category (Link) field in DocType 'Help Article'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/views/interaction.js:72
+#: frappe/website/doctype/help_article/help_article.json
msgid "Category"
-msgstr "Categorie"
+msgstr ""
-#. Label of a Data field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Category"
-msgstr "Categorie"
-
-#. Label of a Link field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
-msgid "Category"
-msgstr "Categorie"
-
-#. Label of a Text field in DocType 'Help Category'
-#: website/doctype/help_category/help_category.json
-msgctxt "Help Category"
+#. Label of the category_description (Text) field in DocType 'Help Category'
+#: frappe/website/doctype/help_category/help_category.json
msgid "Category Description"
-msgstr "categorie Omschrijving"
+msgstr ""
-#. Label of a Data field in DocType 'Help Category'
-#: website/doctype/help_category/help_category.json
-msgctxt "Help Category"
+#. Label of the category_name (Data) field in DocType 'Help Category'
+#: frappe/website/doctype/help_category/help_category.json
msgid "Category Name"
-msgstr "Categorienaam"
+msgstr ""
-#: utils/data.py:1491
+#: frappe/utils/data.py:1520
msgid "Cent"
-msgstr "Cent"
+msgstr ""
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
-msgid "Center"
-msgstr "Centreren"
-
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
-msgstr "Centreren"
+msgstr ""
-#: core/report/transaction_log_report/transaction_log_report.py:82
+#: frappe/core/page/permission_manager/permission_manager_help.html:16
+msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit."
+msgstr ""
+
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:82
msgid "Chain Integrity"
-msgstr "Chain Integrity"
+msgstr ""
-#. Label of a Small Text field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
+#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log'
+#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Chaining Hash"
-msgstr "Hash koppelen"
+msgstr ""
-#: tests/test_translate.py:98
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
+#: frappe/tests/test_translate.py:111
msgid "Change"
-msgstr "Verandering"
+msgstr ""
-#: tests/test_translate.py:99
+#: frappe/tests/test_translate.py:112
msgctxt "Coins"
msgid "Change"
-msgstr "Verandering"
+msgstr ""
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:38
+msgid "Change Image"
+msgstr ""
+
+#. Label of the label (Data) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Change Label (via Custom Translation)"
-msgstr "Label wijzigen (via Custom Translation)"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:45
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:141
+msgid "Change Letter Head"
+msgstr ""
+
+#. Label of the change_password (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Change Password"
-msgstr "Verander wachtwoord"
+msgstr ""
-#: public/js/print_format_builder/print_format_builder.bundle.js:27
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:27
msgid "Change Print Format"
msgstr ""
-#: desk/page/user_profile/user_profile_controller.js:51
-#: desk/page/user_profile/user_profile_controller.js:59
-msgid "Change User"
-msgstr "Verander gebruiker"
-
#. Description of the 'Update Series Counter' (Section Break) field in DocType
#. 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
-msgid ""
-"Change the starting / current sequence number of an existing series.
\n"
-"\n"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Change the starting / current sequence number of an existing series.
\n\n"
"Warning: Incorrectly updating counters can prevent documents from getting created. "
msgstr ""
-#: email/doctype/email_domain/email_domain.js:5
+#. Label of the changed_at (Datetime) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Changed at"
+msgstr ""
+
+#. Label of the changed_by (Link) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Changed by"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+msgid "Changelog Feed"
+msgstr ""
+
+#. Label of the changed_values (HTML) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Changes"
+msgstr ""
+
+#: frappe/email/doctype/email_domain/email_domain.js:5
msgid "Changing any setting will reflect on all the email accounts associated with this domain."
msgstr ""
-#: core/doctype/system_settings/system_settings.js:62
+#: frappe/core/doctype/system_settings/system_settings.js:67
msgid "Changing rounding method on site with data can result in unexpected behaviour."
msgstr ""
-#. Label of a Select field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the channel (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Channel"
-msgstr "Kanaal"
+msgstr ""
-#. Label of a Link field in DocType 'Dashboard Chart Link'
-#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json
-msgctxt "Dashboard Chart Link"
+#. Label of the chart (Link) field in DocType 'Dashboard Chart Link'
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
msgid "Chart"
-msgstr "tabel"
+msgstr ""
-#. Label of a Code field in DocType 'Dashboard Settings'
-#: desk/doctype/dashboard_settings/dashboard_settings.json
-msgctxt "Dashboard Settings"
+#. Label of the chart_config (Code) field in DocType 'Dashboard Settings'
+#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
msgid "Chart Configuration"
-msgstr "Kaartconfiguratie"
+msgstr ""
-#. Label of a Data field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the chart_name (Data) field in DocType 'Dashboard Chart'
+#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/workspace_chart/workspace_chart.json
+#: frappe/public/js/frappe/views/reports/query_report.js:290
+#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
-msgstr "Grafieknaam"
+msgstr ""
-#. Label of a Link field in DocType 'Workspace Chart'
-#: desk/doctype/workspace_chart/workspace_chart.json
-msgctxt "Workspace Chart"
-msgid "Chart Name"
-msgstr "Grafieknaam"
-
-#. Label of a Code field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
+#. Label of the chart_options (Code) field in DocType 'Dashboard'
+#. Label of the chart_options_section (Section Break) field in DocType
+#. 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Chart Options"
-msgstr "Grafiek opties"
+msgstr ""
-#. Label of a Section Break field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Chart Options"
-msgstr "Grafiek opties"
-
-#. Label of a Link field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the source (Link) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Chart Source"
-msgstr "Grafiekbron"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:479
+#. Label of the chart_type (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/views/reports/report_view.js:499
msgid "Chart Type"
-msgstr "Diagramtype"
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Chart Type"
-msgstr "Diagramtype"
-
-#. Label of a Table field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
+#. Label of the charts (Table) field in DocType 'Dashboard'
+#. Label of the charts (Table) field in DocType 'Workspace'
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Charts"
-msgstr "Grafieken"
-
-#. Label of a Table field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Charts"
-msgstr "Grafieken"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
-#. Option for the 'Communication Type' (Select) field in DocType
-#. 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Chat"
-msgstr "Chat"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Check"
-msgstr "Controleren"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Check"
-msgstr "Controleren"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Check"
-msgstr "Controleren"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Check"
-msgstr "Controleren"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Check"
-msgstr "Controleren"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Check"
-msgstr "Controleren"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Check"
-msgstr "Controleren"
+msgstr ""
-#: integrations/doctype/webhook/webhook.py:95
+#: frappe/integrations/doctype/webhook/webhook.py:95
msgid "Check Request URL"
-msgstr "Controleer de aanvraag-URL"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:18
+#: frappe/email/doctype/newsletter/newsletter.js:18
msgid "Check broken links"
msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:442
-msgid "Check the Error Log for more information: {0}"
-msgstr "Controleer het foutenlogboek voor meer informatie: {0}"
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
+msgid "Check columns to select, drag to set order."
+msgstr ""
-#: website/doctype/website_settings/website_settings.js:147
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454
+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 "Vink dit aan als u niet wilt dat gebruikers zich aanmelden voor een account op uw site. Gebruikers krijgen geen bureautoegang tenzij u dit expliciet opgeeft."
+msgstr ""
#. Description of the 'User must always select' (Check) field in DocType
#. 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Check this if you want to force the user to select a series before saving. There will be no default if you check this."
-msgstr "Controleer dit als u wilt dwingen de gebruiker om een reeks voor het opslaan te selecteren. Er zal geen standaard zijn als je dit controleren."
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:20
+#. 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/email/doctype/newsletter/newsletter.js:20
msgid "Checking broken links..."
msgstr ""
-#: public/js/frappe/desk.js:214
+#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
-msgstr "Het controleren van het ene moment"
+msgstr ""
-#: website/doctype/website_settings/website_settings.js:140
+#: frappe/website/doctype/website_settings/website_settings.js:140
msgid "Checking this will enable tracking page views for blogs, web pages, etc."
-msgstr "Als u dit aanvinkt, worden paginaweergaven voor blogs, webpagina's, enz. Bijgehouden."
+msgstr ""
#. Description of the 'Hide Custom DocTypes and Reports' (Check) field in
#. DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Checking this will hide custom doctypes and reports cards in Links section"
-msgstr "Als u dit aanvinkt, worden aangepaste doctypes en rapportkaarten in de sectie Links verborgen"
+msgstr ""
-#: website/doctype/web_page/web_page.js:78
+#: frappe/website/doctype/web_page/web_page.js:78
msgid "Checking this will publish the page on your website and it'll be visible to everyone."
-msgstr "Als u dit aanvinkt, wordt de pagina op uw website gepubliceerd en is deze voor iedereen zichtbaar."
+msgstr ""
-#: website/doctype/web_page/web_page.js:104
+#: frappe/website/doctype/web_page/web_page.js:104
msgid "Checking this will show a text area where you can write custom javascript that will run on this page."
-msgstr "Als u dit aanvinkt, wordt een tekstgebied weergegeven waarin u aangepast javascript kunt schrijven dat op deze pagina wordt uitgevoerd."
+msgstr ""
-#. Label of a Data field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
+#. Label of the checksum_version (Data) field in DocType 'Transaction Log'
+#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Checksum Version"
-msgstr "Checksum-versie"
+msgstr ""
-#: www/list.py:85
+#: frappe/www/list.py:85
msgid "Child DocTypes are not allowed"
msgstr ""
-#. Label of a Data field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the child_doctype (Data) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Child Doctype"
msgstr ""
-#: core/doctype/doctype/doctype.py:1588
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "Child Table {0} for field {1}"
msgstr ""
-#: core/doctype/doctype/doctype_list.js:37
-msgid "Child Tables are shown as a Grid in other DocTypes"
-msgstr "Onderliggende tabellen worden als raster weergegeven in andere DocTypes"
-
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:52
msgid "Child Tables are shown as a Grid in other DocTypes"
-msgstr "Onderliggende tabellen worden als raster weergegeven in andere DocTypes"
+msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:614
+#: frappe/public/js/frappe/widgets/widget_dialog.js:638
msgid "Choose Existing Card or create New Card"
-msgstr "Kies bestaande kaart of maak een nieuwe kaart"
+msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:1385
+#: frappe/public/js/frappe/views/workspace/workspace.js:571
msgid "Choose a block or continue typing"
msgstr ""
-#: public/js/frappe/form/controls/color.js:5
+#: frappe/public/js/form_builder/components/controls/DataControl.vue:18
+#: frappe/public/js/frappe/form/controls/color.js:5
msgid "Choose a color"
msgstr ""
-#: public/js/frappe/form/controls/icon.js:5
+#: frappe/public/js/form_builder/components/controls/DataControl.vue:21
+#: frappe/public/js/frappe/form/controls/icon.js:5
msgid "Choose an icon"
msgstr ""
#. Description of the 'Two Factor Authentication method' (Select) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Choose authentication method to be used by all users"
-msgstr "Kies de verificatiemethode die door alle gebruikers wordt gebruikt"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
-msgstr "City"
+msgstr ""
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the city (Data) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "City/Town"
-msgstr "Stad / Plaats"
+msgstr ""
-#: core/doctype/recorder/recorder_list.js:12
+#: frappe/core/doctype/recorder/recorder_list.js:12
+#: frappe/public/js/frappe/form/controls/attach.js:16
msgid "Clear"
-msgstr "Doorzichtig"
+msgstr ""
-#: public/js/frappe/views/communication.js:325
+#: frappe/public/js/frappe/views/communication.js:432
msgid "Clear & Add Template"
msgstr ""
-#: public/js/frappe/views/communication.js:98
+#: frappe/public/js/frappe/views/communication.js:111
msgid "Clear & Add template"
msgstr ""
-#: public/js/frappe/ui/keyboard.js:275
+#: frappe/public/js/frappe/list/list_view.js:1965
+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 "Cache wissen en opnieuw laden"
+msgstr ""
-#: core/doctype/error_log/error_log_list.js:12
+#: frappe/core/doctype/error_log/error_log_list.js:12
msgid "Clear Error Logs"
-msgstr "Clear Error Logs"
+msgstr ""
-#. Label of a Int field in DocType 'Logs To Clear'
-#: core/doctype/logs_to_clear/logs_to_clear.json
-msgctxt "Logs To Clear"
+#: frappe/public/js/frappe/ui/filters/filter_list.js:299
+msgid "Clear Filters"
+msgstr ""
+
+#. Label of the days (Int) field in DocType 'Logs To Clear'
+#: frappe/core/doctype/logs_to_clear/logs_to_clear.json
msgid "Clear Logs After (days)"
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:144
+#: frappe/core/doctype/user_permission/user_permission_list.js:144
msgid "Clear User Permissions"
-msgstr "Wis gebruikersrechten"
+msgstr ""
-#: public/js/frappe/views/communication.js:326
+#: frappe/public/js/frappe/views/communication.js:433
msgid "Clear the email message and add the template"
msgstr ""
-#: website/doctype/web_page/web_page.py:214
+#: frappe/website/doctype/web_page/web_page.py:215
msgid "Clearing end date, as it cannot be in the past for published pages."
-msgstr "Einddatum wissen, omdat dit voor gepubliceerde pagina's niet in het verleden kan zijn."
+msgstr ""
-#: website/doctype/web_form/templates/web_form.html:144
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:194
+msgid "Click On Customize to add your first widget"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:147
msgid "Click here"
msgstr ""
-#: email/doctype/newsletter/newsletter.py:335
+#: frappe/email/doctype/newsletter/newsletter.py:335
msgid "Click here to verify"
-msgstr "Klik hier om te verifiëren"
+msgstr ""
-#: integrations/doctype/google_drive/google_drive.js:46
+#: frappe/integrations/doctype/google_drive/google_drive.js:47
msgid "Click on Authorize Google Drive Access to authorize Google Drive Access."
-msgstr "Klik op Google Drive Access autoriseren om Google Drive Access te autoriseren."
+msgstr ""
-#: templates/emails/login_with_email_link.html:19
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
+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 ""
-#: templates/emails/data_deletion_approval.html:2
+#: frappe/templates/emails/data_deletion_approval.html:2
msgid "Click on the link below to approve the request"
-msgstr "Klik op de onderstaande link om het verzoek goed te keuren"
+msgstr ""
-#: templates/emails/new_user.html:7
+#: frappe/templates/emails/new_user.html:7
msgid "Click on the link below to complete your registration and set a new password"
-msgstr "Klik op onderstaande link om uw registratie te voltooien en een nieuw wachtwoord in te stellen"
+msgstr ""
-#: templates/emails/download_data.html:3
+#: frappe/templates/emails/download_data.html:3
msgid "Click on the link below to download your data"
-msgstr "Klik op onderstaande link om uw gegevens te downloaden"
+msgstr ""
-#: templates/emails/delete_data_confirmation.html:4
+#: frappe/templates/emails/delete_data_confirmation.html:4
msgid "Click on the link below to verify your request"
-msgstr "Klik op onderstaande link om uw aanvraag te verifiëren"
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:101
-#: integrations/doctype/google_contacts/google_contacts.py:40
-#: integrations/doctype/google_drive/google_drive.py:52
-#: website/doctype/website_settings/website_settings.py:161
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
+#: frappe/integrations/doctype/google_drive/google_drive.py:53
+#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
-msgstr "Klik op {0} om het vernieuwingstoken te genereren."
+msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.js:96
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
+#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
+#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
-msgstr "Klik op tafel te bewerken"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
+#: frappe/desk/doctype/number_card/number_card.js:402
+msgid "Click to Set Dynamic Filters"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
+#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/website/doctype/web_form/web_form.js:262
+msgid "Click to Set Filters"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:711
+msgid "Click to sort by {0}"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Clicked"
-msgstr "Geklikt"
+msgstr ""
-#. Label of a Link field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. Label of the client (Link) field in DocType 'OAuth Authorization Code'
+#. Label of the client (Link) field in DocType 'OAuth Bearer Token'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
msgid "Client"
-msgstr "Klant"
+msgstr ""
-#. Label of a Link field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
-msgid "Client"
-msgstr "Klant"
-
-#. Label of a Section Break field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#. Label of the client_code_section (Section Break) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
msgid "Client Code"
-msgstr "Klantcode"
+msgstr ""
-#. Label of a Section Break field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the sb_client_credentials_section (Section Break) field in DocType
+#. 'Connected App'
+#. Label of the client_credentials (Section Break) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Credentials"
-msgstr "client geloofsbrieven"
+msgstr ""
-#. Label of a Section Break field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Client Credentials"
-msgstr "client geloofsbrieven"
-
-#. Label of a Data field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
+#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
-msgstr "klant identificatie"
+msgstr ""
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Client ID"
-msgstr "klant identificatie"
-
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the client_id (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Client Id"
msgstr ""
-#. Label of a Section Break field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the client_information (Section Break) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Information"
-msgstr "Klanteninformatie"
-
-#. Name of a DocType
-#: custom/doctype/client_script/client_script.json
-#: website/doctype/web_page/web_page.js:103
-msgid "Client Script"
-msgstr "Client Script"
+msgstr ""
#. Label of a Link in the Build Workspace
-#. Label of a shortcut in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Client Script"
+#. Name of a DocType
+#. Label of the client_script (Code) field in DocType 'DocType Layout'
+#: frappe/core/workspace/build/build.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/website/doctype/web_page/web_page.js:103
msgid "Client Script"
-msgstr "Client Script"
+msgstr ""
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Client Script"
-msgstr "Client Script"
-
-#. Label of a Code field in DocType 'DocType Layout'
-#: custom/doctype/doctype_layout/doctype_layout.json
-msgctxt "DocType Layout"
-msgid "Client Script"
-msgstr "Client Script"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Client Script"
-msgstr "Client Script"
-
-#. Label of a Code field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Client Script"
-msgstr "Client Script"
-
-#. Label of a Password field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the client_secret (Password) field in DocType 'Connected App'
+#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (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/social_login_key/social_login_key.json
msgid "Client Secret"
-msgstr "Client Secret"
+msgstr ""
-#. Label of a Password field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
-msgid "Client Secret"
-msgstr "Client Secret"
-
-#. Label of a Password field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Client Secret"
-msgstr "Client Secret"
-
-#. Label of a Section Break field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
-msgstr "Client-URL's"
+msgstr ""
-#: core/doctype/communication/communication.js:39 desk/doctype/todo/todo.js:23
-#: public/js/frappe/ui/messages.js:245
+#. Label of the client_script (Code) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Client script"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:39
+#: frappe/desk/doctype/todo/todo.js:23
+#: frappe/public/js/frappe/form/form_tour.js:17
+#: frappe/public/js/frappe/ui/messages.js:251
+#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
-msgstr "Dichtbij"
+msgstr ""
-#. Label of a Code field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the close_condition (Code) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Close Condition"
-msgstr "Conditie sluiten"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+msgid "Close properties"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Closed"
-msgstr "Gesloten"
-
#. Option for the 'Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Closed"
-msgstr "Gesloten"
-
#. Option for the 'Status' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Closed"
-msgstr "Gesloten"
-
#. Option for the 'Status' (Select) field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
msgid "Closed"
-msgstr "Gesloten"
+msgstr ""
-#: templates/discussions/comment_box.html:25
+#: frappe/templates/discussions/comment_box.html:25
+#: frappe/templates/discussions/reply_section.html:53
+#: frappe/templates/discussions/topic_modal.html:11
msgid "Cmd+Enter to add comment"
msgstr ""
-#. Label of a Data field in DocType 'Country'
-#: geo/doctype/country/country.json
-msgctxt "Country"
-msgid "Code"
-msgstr "Code"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Code"
-msgstr "Code"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Code"
-msgstr "Code"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Code"
-msgstr "Code"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the code (Data) field in DocType 'Country'
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/geo/doctype/country/country.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Code"
-msgstr "Code"
+msgstr ""
-#. Label of a Data field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. Label of the code_challenge (Data) field in DocType 'OAuth Authorization
+#. Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Code Challenge"
msgstr ""
-#. Label of a Select field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. Label of the code_editor_type (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Code Editor Type"
+msgstr ""
+
+#. Label of the code_challenge_method (Select) field in DocType 'OAuth
+#. Authorization Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Code challenge method"
msgstr ""
-#: public/js/frappe/form/form_tour.js:268
-#: public/js/frappe/widgets/base_widget.js:157
+#: frappe/public/js/frappe/form/form_tour.js:276
+#: frappe/public/js/frappe/ui/sidebar.html:11
+#: frappe/public/js/frappe/widgets/base_widget.js:159
msgid "Collapse"
-msgstr "Ineenstorting"
+msgstr ""
-#: public/js/frappe/form/controls/code.js:146
+#: frappe/public/js/frappe/form/controls/code.js:184
msgctxt "Shrink code field."
msgid "Collapse"
-msgstr "Ineenstorting"
+msgstr ""
-#: public/js/frappe/views/treeview.js:121
+#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
-msgstr "Alles inklappen"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the collapsible (Check) field in DocType 'DocField'
+#. Label of the collapsible (Check) field in DocType 'Custom Field'
+#. Label of the collapsible (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Collapsible"
-msgstr "Inklapbaar"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Collapsible"
-msgstr "Inklapbaar"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Collapsible"
-msgstr "Inklapbaar"
-
-#. Label of a Code field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the collapsible_depends_on (Code) field in DocType 'Custom Field'
+#. Label of the collapsible_depends_on (Code) field in DocType 'Customize Form
+#. Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Collapsible Depends On"
-msgstr "Inklapbaar item hangt af van"
+msgstr ""
-#. Label of a Code field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Collapsible Depends On"
-msgstr "Inklapbaar item hangt af van"
-
-#. Label of a Code field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the collapsible_depends_on (Code) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Collapsible Depends On (JS)"
msgstr ""
+#. 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
-#: public/js/frappe/views/reports/query_report.js:1140
-#: public/js/frappe/widgets/widget_dialog.js:505
-#: public/js/frappe/widgets/widget_dialog.js:657
-#: website/doctype/color/color.json
-msgid "Color"
-msgstr "Kleur"
-
-#. Label of a Color field in DocType 'Color'
-#: website/doctype/color/color.json
-msgctxt "Color"
-msgid "Color"
-msgstr "Kleur"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Color"
-msgstr "Kleur"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Color"
-msgstr "Kleur"
-
-#. Label of a Color field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Color"
-msgstr "Kleur"
-
-#. Label of a Color field in DocType 'Dashboard Chart Field'
-#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-msgctxt "Dashboard Chart Field"
-msgid "Color"
-msgstr "Kleur"
-
-#. Label of a Data field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Color"
-msgstr "Kleur"
-
-#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Color"
-msgstr "Kleur"
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Color"
-msgstr "Kleur"
-
-#. Label of a Select field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Color"
-msgstr "Kleur"
-
-#. Label of a Color field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Color"
-msgstr "Kleur"
-
-#. Label of a Color field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Color"
-msgstr "Kleur"
-
-#. Label of a Color field in DocType 'Social Link Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
-msgid "Color"
-msgstr "Kleur"
-
-#. Label of a Color field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Color"
-msgstr "Kleur"
-
+#. Label of the color (Color) field in DocType 'Color'
+#. Label of the color (Color) field in DocType 'Social Link Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/views/reports/query_report.js:1229
+#: frappe/public/js/frappe/widgets/widget_dialog.js:533
+#: frappe/public/js/frappe/widgets/widget_dialog.js:681
+#: 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 "Kleur"
+msgstr ""
-#. Label of a Color field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Color"
-msgstr "Kleur"
+#. Label of the column (Data) field in DocType 'Recorder Suggested Index'
+#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:7
+#: frappe/public/js/form_builder/components/Section.vue:270
+#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
+msgid "Column"
+msgstr ""
-#: desk/doctype/kanban_board/kanban_board.py:85
+#: frappe/core/doctype/report/boilerplate/controller.py:28
+msgid "Column 1"
+msgstr ""
+
+#: frappe/core/doctype/report/boilerplate/controller.py:33
+msgid "Column 2"
+msgstr ""
+
+#: frappe/desk/doctype/kanban_board/kanban_board.py:84
msgid "Column {0} already exist."
-msgstr "Column {0} al bestaan."
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Column Break"
-msgstr "Column Break"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Column Break"
-msgstr "Column Break"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Column Break"
-msgstr "Column Break"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Column Break"
-msgstr "Column Break"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Column Break"
-msgstr "Column Break"
+msgstr ""
-#: core/doctype/data_export/exporter.py:140
+#: frappe/core/doctype/data_export/exporter.py:140
msgid "Column Labels:"
-msgstr "Kolomlabels:"
+msgstr ""
-#: core/doctype/data_export/exporter.py:25
+#. Label of the column_name (Data) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/data_export/exporter.py:25
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Column Name"
-msgstr "Kolomnaam"
+msgstr ""
-#. Label of a Data field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
-msgid "Column Name"
-msgstr "Kolomnaam"
-
-#: desk/doctype/kanban_board/kanban_board.py:44
+#: frappe/desk/doctype/kanban_board/kanban_board.py:45
msgid "Column Name cannot be empty"
-msgstr "Column Naam mag niet leeg zijn"
+msgstr ""
-#: public/js/frappe/form/grid_row.js:593
+#: frappe/public/js/frappe/form/grid_row.js:438
+msgid "Column Width"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:645
msgid "Column width cannot be zero."
msgstr ""
-#. Label of a Int field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Columns"
-msgstr "columns"
+#: frappe/core/doctype/data_import/data_import.js:380
+msgid "Column {0}"
+msgstr ""
-#. Label of a Int field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the columns (Int) field in DocType 'DocField'
+#. Label of the columns_section (Section Break) field in DocType 'Report'
+#. Label of the columns (Table) field in DocType 'Report'
+#. Label of the columns (Int) field in DocType 'Custom Field'
+#. Label of the columns (Int) field in DocType 'Customize Form Field'
+#. Label of the columns (Table) field in DocType 'Kanban Board'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report/report.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
msgid "Columns"
-msgstr "columns"
+msgstr ""
-#. Label of a Int field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Columns"
-msgstr "columns"
-
-#. Label of a Table field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Columns"
-msgstr "columns"
-
-#. Label of a Section Break field in DocType 'Report'
-#. Label of a Table field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Columns"
-msgstr "columns"
-
-#. Label of a HTML Editor field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the columns (HTML Editor) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "Columns / Fields"
-msgstr "Kolommen / velden"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:394
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
msgid "Columns based on"
-msgstr "Columns gebaseerd op"
+msgstr ""
-#: integrations/doctype/oauth_client/oauth_client.py:43
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
-msgstr "Combinatie van Grant Type ( {0} ) en Response Type ( {1} ) niet toegestaan"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Comm10E"
msgstr ""
#. Name of a DocType
-#: core/doctype/comment/comment.json
-#: public/js/frappe/form/sidebar/assign_to.js:210
-#: templates/includes/comments/comments.html:34
-msgid "Comment"
-msgstr "Commentaar"
-
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/version/version_view.html:3
+#: frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:237
+#: frappe/templates/includes/comments/comments.html:34
msgid "Comment"
-msgstr "Commentaar"
+msgstr ""
-#. Option for the 'Communication Type' (Select) field in DocType
-#. 'Communication'
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Comment"
-msgstr "Commentaar"
-
-#. Label of a Data field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#. Label of the comment_by (Data) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
msgid "Comment By"
-msgstr "Reactie door"
+msgstr ""
-#. Label of a Data field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#. Label of the comment_email (Data) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
msgid "Comment Email"
-msgstr "Reactie e-mail"
+msgstr ""
-#. Label of a Select field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#. Label of the comment_type (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
msgid "Comment Type"
-msgstr "Reactie Type"
+msgstr ""
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Comment Type"
-msgstr "Reactie Type"
-
-#: desk/form/utils.py:58
+#: frappe/desk/form/utils.py:58
msgid "Comment can only be edited by the owner"
-msgstr "Commentaar kan alleen door de eigenaar worden bewerkt"
+msgstr ""
-#. Label of a Int field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the comment_limit (Int) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Comment limit"
msgstr ""
#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Comment limit per hour"
msgstr ""
-#: model/__init__.py:150 model/meta.py:54 public/js/frappe/model/meta.js:206
-#: public/js/frappe/model/model.js:125
-#: website/doctype/web_form/templates/web_form.html:119
+#: frappe/desk/form/utils.py:75
+msgid "Comment publicity can only be updated by the original author or a System Manager."
+msgstr ""
+
+#: frappe/model/meta.py:59 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/public/js/frappe/model/meta.js:209
+#: frappe/public/js/frappe/model/model.js:135
+#: frappe/website/doctype/web_form/templates/web_form.html:122
msgid "Comments"
-msgstr "Reacties"
+msgstr ""
#. Description of the 'Timeline Field' (Data) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "Comments and Communications will be associated with this linked document"
-msgstr "Commentaren en Communicatie zal geassocieerd worden met dit gekoppelde document"
+msgstr ""
-#: templates/includes/comments/comments.py:38
+#: frappe/templates/includes/comments/comments.py:38
msgid "Comments cannot have links or email addresses"
-msgstr "Opmerkingen mogen geen links of e-mailadressen bevatten"
+msgstr ""
#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Commercial Rounding"
msgstr ""
-#. Label of a Check field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#. Label of the commit (Check) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
msgid "Commit"
-msgstr "Commit"
+msgstr ""
-#. Label of a Check field in DocType 'Console Log'
-#: desk/doctype/console_log/console_log.json
-msgctxt "Console Log"
+#. Label of the committed (Check) field in DocType 'Console Log'
+#: frappe/desk/doctype/console_log/console_log.json
msgid "Committed"
msgstr ""
-#: utils/password_strength.py:180
+#: frappe/utils/password_strength.py:176
msgid "Common names and surnames are easy to guess."
-msgstr "Populaire namen en achternamen zijn makkelijk te raden."
+msgstr ""
#. Name of a DocType
-#: core/doctype/communication/communication.json tests/test_translate.py:35
-#: tests/test_translate.py:103
-msgid "Communication"
-msgstr "Communicatie"
-
#. Option for the 'Communication Type' (Select) field in DocType
#. 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "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 "Communicatie"
-
-#. Label of a Data field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
-msgid "Communication"
-msgstr "Communicatie"
-
-#. Label of a Link field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Communication"
-msgstr "Communicatie"
-
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Communication"
-msgstr "Communicatie"
+msgstr ""
#. Name of a DocType
-#: core/doctype/communication_link/communication_link.json
+#: frappe/core/doctype/communication_link/communication_link.json
msgid "Communication Link"
-msgstr "Communicatie Link"
+msgstr ""
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Communication"
+#: frappe/core/workspace/build/build.json
msgid "Communication Logs"
msgstr ""
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the communication_type (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Communication Type"
-msgstr "communicatie Type"
+msgstr ""
-#: desk/page/leaderboard/leaderboard.js:112
-msgid "Company"
-msgstr "Bedrijf"
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:32
+msgid "Communication secret not set"
+msgstr ""
#. Name of a DocType
-#: website/doctype/company_history/company_history.json www/about.html:29
+#: frappe/website/doctype/company_history/company_history.json
+#: frappe/www/about.html:29
msgid "Company History"
-msgstr "Bedrijf Geschiedenis"
+msgstr ""
-#. Label of a Text Editor field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#. Label of the company_introduction (Text Editor) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Company Introduction"
-msgstr "Bedrijf Introductie"
+msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the company_name (Data) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Company Name"
-msgstr "Bedrijfsnaam"
+msgstr ""
-#: core/doctype/server_script/server_script.js:14
-#: custom/doctype/client_script/client_script.js:54
-#: public/js/frappe/utils/diffview.js:27
+#: frappe/core/doctype/server_script/server_script.js:14
+#: frappe/custom/doctype/client_script/client_script.js:54
+#: frappe/public/js/frappe/utils/diffview.js:28
msgid "Compare Versions"
msgstr ""
-#: core/doctype/server_script/server_script.py:134
+#: frappe/core/doctype/server_script/server_script.py:157
msgid "Compilation warning"
msgstr ""
-#: website/doctype/website_theme/website_theme.py:125
+#: frappe/website/doctype/website_theme/website_theme.py:123
msgid "Compiled Successfully"
-msgstr "Met succes samengesteld"
-
-#: www/complete_signup.html:21
-msgid "Complete"
-msgstr "Voltooien"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/www/complete_signup.html:21
msgid "Complete"
-msgstr "Voltooien"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:176
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:203
msgid "Complete By"
-msgstr "Compleet op"
+msgstr ""
-#: core/doctype/user/user.py:438 templates/emails/new_user.html:10
+#: frappe/core/doctype/user/user.py:477
+#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
-msgstr "Registratie voltooien"
+msgstr ""
-#: utils/goal.py:117
-msgid "Completed"
-msgstr "Voltooid"
+#: frappe/public/js/frappe/ui/slides.js:355
+msgctxt "Finish the setup wizard"
+msgid "Complete Setup"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Completed"
-msgstr "Voltooid"
-
-#. Option for the 'Status' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Completed"
-msgstr "Voltooid"
-
-#. Option for the 'Status' (Select) field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Completed"
-msgstr "Voltooid"
-
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
-msgid "Completed"
-msgstr "Voltooid"
-
+#. Option for the 'Status' (Select) field in DocType 'Event'
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#. Option for the 'Status' (Select) field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/doctype/boilerplate/controller_list.html:31
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/utils/goal.py:117
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
-msgstr "Voltooid"
+msgstr ""
-#. Label of a Link field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
+#. Label of the completed_by_role (Link) field in DocType 'Workflow Action'
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed By Role"
msgstr ""
-#. Label of a Link field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
+#. Label of the completed_by (Link) field in DocType 'Workflow Action'
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed By User"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
+#: frappe/website/doctype/web_template/web_template.json
msgid "Component"
-msgstr "bestanddeel"
-
-#: public/js/frappe/views/inbox/inbox_view.js:184
-msgid "Compose Email"
-msgstr "Email opstellen"
-
-#. Label of a Small Text field in DocType 'Bulk Update'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
-msgid "Condition"
-msgstr "Voorwaarde"
-
-#. Label of a Select field in DocType 'Document Naming Rule Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
-msgid "Condition"
-msgstr "Voorwaarde"
-
-#. Label of a Code field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Condition"
-msgstr "Voorwaarde"
-
-#. Label of a Code field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Condition"
-msgstr "Voorwaarde"
-
-#. Label of a Data field in DocType 'Notification Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
-msgid "Condition"
-msgstr "Voorwaarde"
-
-#. Label of a Small Text field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Condition"
-msgstr "Voorwaarde"
-
-#. Label of a Code field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
-msgid "Condition"
-msgstr "Voorwaarde"
-
-#. Label of a HTML field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Condition Description"
msgstr ""
-#. Label of a JSON field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#: 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:205
+#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/email/doctype/notification/notification.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/website/doctype/web_form/web_form.js:197
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Condition"
+msgstr ""
+
+#. Label of the condition_json (JSON) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Condition JSON"
msgstr ""
-#. Label of a Table field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
-msgid "Conditions"
-msgstr "Voorwaarden"
+#. Label of the condition_description (HTML) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Condition description"
+msgstr ""
-#. Label of a Section Break field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
+#. Label of the conditions (Table) field in DocType 'Document Naming Rule'
+#. Label of the conditions (Section Break) field in DocType 'Workflow
+#. Transition'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Conditions"
-msgstr "Voorwaarden"
+msgstr ""
-#. Label of a Section Break field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the configuration_section (Section Break) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Configuration"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:461
+#: frappe/public/js/frappe/views/reports/report_view.js:481
msgid "Configure Chart"
-msgstr "Grafiek configureren"
+msgstr ""
-#: public/js/frappe/form/grid_row.js:381
+#: frappe/public/js/frappe/form/grid_row.js:390
msgid "Configure Columns"
msgstr ""
+#: frappe/core/doctype/recorder/recorder_list.js:200
+msgid "Configure Recorder"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/Field.vue:103
+msgid "Configure columns for {0}"
+msgstr ""
+
#. Description of the 'Amended Documents' (Section Break) field in DocType
#. 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
-msgid ""
-"Configure how amended documents will be named.
\n"
-"\n"
-"Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
\n"
-"\n"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Configure how amended documents will be named.
\n\n"
+"Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
\n\n"
"Default Naming will make the amended document to behave same as new documents."
msgstr ""
-#: www/update-password.html:30
-msgid "Confirm"
-msgstr "Bevestigen"
+#. 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 ""
-#: public/js/frappe/ui/messages.js:31
+#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
+#: frappe/www/update-password.html:53
+msgid "Confirm"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/messages.js:31
msgctxt "Title of confirmation dialog"
msgid "Confirm"
-msgstr "Bevestigen"
+msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:92
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:100
+#: frappe/integrations/oauth2.py:120
+msgid "Confirm Access"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:93
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:101
msgid "Confirm Deletion of Account"
msgstr ""
-#: core/doctype/user/user.js:173
+#: frappe/core/doctype/user/user.js:191
msgid "Confirm New Password"
-msgstr "Bevestig nieuw wachtwoord"
+msgstr ""
-#: www/update-password.html:24
+#: frappe/www/update-password.html:47
msgid "Confirm Password"
msgstr ""
-#: templates/emails/data_deletion_approval.html:6
-#: templates/emails/delete_data_confirmation.html:7
+#: frappe/templates/emails/data_deletion_approval.html:6
+#: frappe/templates/emails/delete_data_confirmation.html:7
msgid "Confirm Request"
-msgstr "Bevestig aanvraag"
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:330
+#: frappe/email/doctype/newsletter/newsletter.py:330
msgid "Confirm Your Email"
-msgstr "Bevestig uw e-mail"
+msgstr ""
-#. Label of a Link field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#. Label of the confirmation_email_template (Link) field in DocType 'Email
+#. Group'
+#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
-msgstr "E-mailsjabloon voor bevestiging"
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:381
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:394
+#: frappe/email/doctype/newsletter/newsletter.py:379
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
-msgstr "Bevestigd"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:530
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:525
msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here."
msgstr ""
-#: integrations/doctype/connected_app/connected_app.js:25
+#: frappe/integrations/doctype/connected_app/connected_app.js:25
msgid "Connect to {}"
msgstr ""
+#. Label of the connected_app (Link) field in DocType 'Email Account'
#. Name of a DocType
-#: integrations/doctype/connected_app/connected_app.json
+#. Label of the connected_app (Link) field in DocType 'Token Cache'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Connected App"
msgstr ""
-#. Label of a Link field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Connected App"
-msgstr ""
-
-#. Label of a Link field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "Connected App"
-msgstr ""
-
-#. Label of a Link field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the connected_user (Link) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Connected User"
msgstr ""
-#: public/js/frappe/form/print_utils.js:95
-#: public/js/frappe/form/print_utils.js:119
+#: frappe/public/js/frappe/form/print_utils.js:97
+#: frappe/public/js/frappe/form/print_utils.js:121
msgid "Connected to QZ Tray!"
-msgstr "Aangesloten op QZ-lade!"
+msgstr ""
-#: public/js/frappe/request.js:34
+#: frappe/public/js/frappe/request.js:36
msgid "Connection Lost"
msgstr ""
-#: templates/pages/integrations/gcalendar-success.html:3
+#: frappe/templates/pages/integrations/gcalendar-success.html:3
msgid "Connection Success"
-msgstr "Verbindingssucces"
+msgstr ""
-#: public/js/frappe/dom.js:433
+#: frappe/public/js/frappe/dom.js:446
msgid "Connection lost. Some features might not work."
-msgstr "Verbinding verbroken. Sommige functies werken mogelijk niet."
+msgstr ""
-#: public/js/frappe/form/dashboard.js:54
+#. Label of the connections_tab (Tab Break) field in DocType 'DocType'
+#. Label of the connections_tab (Tab Break) field in DocType 'Module Def'
+#. Label of the connections_tab (Tab Break) field in DocType 'User'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/user/user.json
+#: frappe/public/js/frappe/form/dashboard.js:54
msgid "Connections"
msgstr ""
-#. Label of a Tab Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Connections"
-msgstr ""
-
-#. Label of a Tab Break field in DocType 'Module Def'
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Connections"
-msgstr ""
-
-#. Label of a Tab Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Connections"
-msgstr ""
-
-#. Label of a Code field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#. Label of the console (Code) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
msgid "Console"
-msgstr "Troosten"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/console_log/console_log.json
+#: frappe/desk/doctype/console_log/console_log.json
msgid "Console Log"
-msgstr "Consolelogboek"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#: frappe/desk/doctype/console_log/console_log.py:24
+msgid "Console Logs can not be deleted"
+msgstr ""
+
+#. Label of the constraints_section (Section Break) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Constraints"
msgstr ""
#. Name of a DocType
-#: contacts/doctype/contact/contact.json
-#: core/doctype/communication/communication.js:113
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/communication/communication.js:113
msgid "Contact"
-msgstr "Contact"
+msgstr ""
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Contact"
-msgstr "Contact"
-
-#. Label of a Section Break field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the sb_01 (Section Break) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
-msgstr "Contactgegevens"
+msgstr ""
#. Name of a DocType
-#: contacts/doctype/contact_email/contact_email.json
+#: frappe/contacts/doctype/contact_email/contact_email.json
msgid "Contact Email"
-msgstr "Contact E-mail"
+msgstr ""
-#. Label of a Table field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the phone_nos (Table) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Numbers"
-msgstr "Telefoonnummers"
+msgstr ""
#. Name of a DocType
-#: contacts/doctype/contact_phone/contact_phone.json
+#: frappe/contacts/doctype/contact_phone/contact_phone.json
msgid "Contact Phone"
-msgstr "Contact telefoon"
+msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.py:288
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:291
msgid "Contact Synced with Google Contacts."
-msgstr "Contact gesynchroniseerd met Google Contacten."
+msgstr ""
+
+#: frappe/www/contact.html:4
+msgid "Contact Us"
+msgstr ""
#. Name of a DocType
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgid "Contact Us Settings"
-msgstr "Neem contact met ons op Instellingen"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Contact Us Settings"
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/workspace/website/website.json
msgid "Contact Us Settings"
-msgstr "Neem contact met ons op Instellingen"
+msgstr ""
#. Description of the 'Query Options' (Small Text) field in DocType 'Contact Us
#. Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
-msgstr "Contact opties, zoals \"Sales Query, Support Query\" etc. Elk op een nieuwe regel of gescheiden door komma's."
+msgstr ""
-#. Label of a Text Editor field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#: 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 newsletter_content (Section Break) field in DocType
+#. 'Newsletter'
+#. Label of the content (Text Editor) field in DocType 'Blog Post'
+#. Label of the content (Text Editor) field in DocType 'Help Article'
+#. Label of the section_title (Tab Break) field in DocType 'Web Page'
+#. 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/email/doctype/newsletter/newsletter.json
+#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/help_article/help_article.json
+#: 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 "Inhoud"
+msgstr ""
-#. Label of a HTML Editor field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Content"
-msgstr "Inhoud"
-
-#. Label of a Text Editor field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
-msgid "Content"
-msgstr "Inhoud"
-
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Content"
-msgstr "Inhoud"
-
-#. Label of a Text Editor field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
-msgid "Content"
-msgstr "Inhoud"
-
-#. Label of a Tab Break field in DocType 'Web Page'
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Content"
-msgstr "Inhoud"
-
-#. Label of a Long Text field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Content"
-msgstr "Inhoud"
-
-#. Label of a HTML Editor field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the content_html (HTML Editor) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Content (HTML)"
-msgstr "Inhoud (HTML)"
+msgstr ""
-#. Label of a Markdown Editor field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Content (Markdown)"
-msgstr "Inhoud (Markdown)"
+msgstr ""
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the content_hash (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Content Hash"
-msgstr "Content Hash"
+msgstr ""
-#. Label of a Select field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the content_type (Select) field in DocType 'Newsletter'
+#. Label of the content_type (Select) field in DocType 'Blog Post'
+#. Label of the content_type (Select) field in DocType 'Web Page'
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
-msgstr "Content Type"
+msgstr ""
-#. Label of a Select field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Content Type"
-msgstr "Content Type"
-
-#. Label of a Select field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Content Type"
-msgstr "Content Type"
-
-#: desk/doctype/workspace/workspace.py:79
+#: frappe/desk/doctype/workspace/workspace.py:86
msgid "Content data shoud be a list"
msgstr ""
-#: website/doctype/web_page/web_page.js:91
+#: frappe/website/doctype/web_page/web_page.js:91
msgid "Content type for building the page"
-msgstr "Inhoudstype voor het bouwen van de pagina"
-
-#. Label of a Data field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
-msgid "Context"
-msgstr "Context"
-
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Context"
-msgstr "Context"
-
-#. Label of a Code field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Context Script"
-msgstr "Contextscript"
-
-#: public/js/frappe/widgets/onboarding_widget.js:209
-#: public/js/frappe/widgets/onboarding_widget.js:237
-#: public/js/frappe/widgets/onboarding_widget.js:277
-#: public/js/frappe/widgets/onboarding_widget.js:317
-#: public/js/frappe/widgets/onboarding_widget.js:366
-#: public/js/frappe/widgets/onboarding_widget.js:388
-#: public/js/frappe/widgets/onboarding_widget.js:428
-msgid "Continue"
-msgstr "Voortzetten"
-
-#. Label of a Check field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
-msgid "Contributed"
-msgstr "bijgedragen"
-
-#. Label of a Data field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
-msgid "Contribution Document Name"
-msgstr "Bijdrage Documentnaam"
-
-#. Label of a Select field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
-msgid "Contribution Status"
-msgstr "Bijdrage status"
-
-#. Description of the 'Sign ups' (Select) field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected. "
msgstr ""
-#: public/js/frappe/utils/utils.js:1030
-msgid "Copied to clipboard."
-msgstr "Gekopieerd naar het klembord."
+#. 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 ""
-#: public/js/frappe/request.js:615
+#. 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:1033
+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:620
msgid "Copy error to clipboard"
msgstr ""
-#: public/js/frappe/form/toolbar.js:388
+#: frappe/public/js/frappe/form/toolbar.js:504
msgid "Copy to Clipboard"
msgstr ""
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the copyright (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Copyright"
-msgstr "Copyright"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:118
+#: frappe/custom/doctype/customize_form/customize_form.py:122
msgid "Core DocTypes cannot be customized."
-msgstr "Core DocTypes kunnen niet worden aangepast."
+msgstr ""
-#: desk/doctype/global_search_settings/global_search_settings.py:35
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:36
msgid "Core Modules {0} cannot be searched in Global Search."
-msgstr "Kernmodules {0} kunnen niet worden gezocht in Globaal zoeken."
+msgstr ""
-#: email/smtp.py:77
+#: frappe/printing/page/print/print.js:620
+msgid "Correct version :"
+msgstr ""
+
+#: frappe/email/smtp.py:78
msgid "Could not connect to outgoing email server"
-msgstr "Kan niet verbinden met uitgaande e-mailserver"
+msgstr ""
-#: model/document.py:922
+#: frappe/model/document.py:1096
msgid "Could not find {0}"
-msgstr "Kon {0} niet vinden"
+msgstr ""
-#: core/doctype/data_import/importer.py:886
+#: frappe/core/doctype/data_import/importer.py:933
msgid "Could not map column {0} to field {1}"
-msgstr "Kan kolom {0} niet toewijzen aan veld {1}"
+msgstr ""
-#: public/js/frappe/web_form/web_form.js:355
+#: frappe/desk/page/setup_wizard/setup_wizard.js:234
+msgid "Could not start up: "
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:359
msgid "Couldn't save, please check the data you have entered"
-msgstr "Kan niet opslaan. Controleer de gegevens die u heeft ingevoerd"
-
-#: public/js/frappe/ui/group_by/group_by.js:19
-#: public/js/frappe/ui/group_by/group_by.js:318
-msgid "Count"
-msgstr "tellen"
+msgstr ""
#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Count"
-msgstr "tellen"
-
#. Option for the 'Function' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#. Label of the count (Int) field in DocType 'System Health Report Workers'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
+#: frappe/public/js/frappe/ui/group_by/group_by.js:19
+#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
-msgstr "tellen"
+msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:499
+#: frappe/public/js/frappe/widgets/widget_dialog.js:527
msgid "Count Customizations"
-msgstr "Tel aanpassingen"
+msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:484
+#. Label of the section_break_5 (Section Break) field in DocType 'Workspace
+#. Shortcut'
+#. Label of the stats_filter (Code) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:512
msgid "Count Filter"
-msgstr "Telfilter"
+msgstr ""
-#. Label of a Section Break field in DocType 'Workspace Shortcut'
-#. Label of a Code field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Count Filter"
-msgstr "Telfilter"
-
-#. Label of a Int field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#. Label of the counter (Int) field in DocType 'Document Naming Rule'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Counter"
-msgstr "Teller"
+msgstr ""
+#. Label of the country (Link) field in DocType 'Address'
+#. Label of the country (Link) field in DocType 'Address Template'
+#. Label of the country (Link) field in DocType 'System Settings'
#. Name of a DocType
-#: geo/doctype/country/country.json
+#. Label of the country (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/geo/doctype/country/country.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
-msgstr "Land"
+msgstr ""
-#. Label of a Link field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Country"
-msgstr "Land"
-
-#. Label of a Link field in DocType 'Address Template'
-#: contacts/doctype/address_template/address_template.json
-msgctxt "Address Template"
-msgid "Country"
-msgstr "Land"
-
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Country"
-msgstr "Land"
-
-#. Label of a Link field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Country"
-msgstr "Land"
-
-#: utils/__init__.py:116
+#: frappe/utils/__init__.py:129
msgid "Country Code Required"
msgstr ""
-#. Label of a Data field in DocType 'Country'
-#: geo/doctype/country/country.json
-msgctxt "Country"
+#. Label of the country_name (Data) field in DocType 'Country'
+#: frappe/geo/doctype/country/country.json
msgid "Country Name"
-msgstr "Naam van het land"
+msgstr ""
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the county (Data) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "County"
-msgstr "Provincie"
+msgstr ""
-#: public/js/frappe/utils/number_systems.js:23
-#: public/js/frappe/utils/number_systems.js:45
+#: frappe/public/js/frappe/utils/number_systems.js:23
+#: frappe/public/js/frappe/utils/number_systems.js:45
msgctxt "Number system"
msgid "Cr"
msgstr ""
-#: core/doctype/communication/communication.js:117
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:46
-#: public/js/frappe/form/reminders.js:49
-#: public/js/frappe/views/file/file_view.js:112
-#: public/js/frappe/views/interaction.js:18
-#: public/js/frappe/views/reports/query_report.js:1172
-#: public/js/frappe/views/workspace/workspace.js:1217
-#: workflow/page/workflow_builder/workflow_builder.js:46
+#. Label of the create (Check) field in DocType 'Custom DocPerm'
+#. Label of the create (Check) field in DocType 'DocPerm'
+#. Label of the create (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/communication/communication.js:117
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46
+#: frappe/public/js/frappe/form/reminders.js:49
+#: frappe/public/js/frappe/views/file/file_view.js:112
+#: frappe/public/js/frappe/views/interaction.js:18
+#: frappe/public/js/frappe/views/reports/query_report.js:1261
+#: frappe/public/js/frappe/views/workspace/workspace.js:469
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
-msgstr "Creëren"
+msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Create"
-msgstr "Creëren"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Create"
-msgstr "Creëren"
-
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Create"
-msgstr "Creëren"
-
-#: core/doctype/doctype/doctype_list.js:85
+#: frappe/core/doctype/doctype/doctype_list.js:102
msgid "Create & Continue"
msgstr ""
-#. Title of an Onboarding Step
-#: website/onboarding_step/create_blogger/create_blogger.json
-msgid "Create Blogger"
+#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:49
+msgid "Create Address"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:186
-#: public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:188
+#: frappe/public/js/frappe/views/reports/query_report.js:233
msgid "Create Card"
-msgstr "Maak een kaart"
-
-#: public/js/frappe/views/reports/query_report.js:284
-#: public/js/frappe/views/reports/query_report.js:1099
-msgid "Create Chart"
-msgstr "Grafiek maken"
-
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Create Contacts from Incoming Emails"
-msgstr "Maak contacten op basis van inkomende e-mails"
-
-#. Title of an Onboarding Step
-#: custom/onboarding_step/custom_field/custom_field.json
-msgid "Create Custom Fields"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:925
-msgid "Create Duplicate"
+#: frappe/public/js/frappe/views/reports/query_report.js:286
+#: frappe/public/js/frappe/views/reports/query_report.js:1188
+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'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Create Entry"
-msgstr "Invoer maken"
+msgstr ""
-#. Label of a Check field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:59
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:195
+msgid "Create Letter Head"
+msgstr ""
+
+#. Label of the create_log (Check) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Create Log"
-msgstr "Maak logboek"
+msgstr ""
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:41
-#: public/js/frappe/views/treeview.js:361
-#: workflow/page/workflow_builder/workflow_builder.js:41
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:41
+#: frappe/public/js/frappe/views/treeview.js:378
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:41
msgid "Create New"
-msgstr "Maak nieuw"
+msgstr ""
-#: core/doctype/doctype/doctype_list.js:83
+#: frappe/public/js/frappe/list/list_view.js:509
+msgctxt "Create a new document from list view"
+msgid "Create New"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype_list.js:100
msgid "Create New DocType"
msgstr ""
-#: public/js/frappe/list/list_view_select.js:204
+#: frappe/public/js/frappe/list/list_view_select.js:204
msgid "Create New Kanban Board"
msgstr ""
-#: core/doctype/user/user.js:251
+#: frappe/core/doctype/user/user.js:270
msgid "Create User Email"
-msgstr "Maak gebruikers-e-mail aan"
-
-#: public/js/frappe/views/workspace/workspace.js:465
-msgid "Create Workspace"
msgstr ""
-#: public/js/frappe/form/reminders.js:9
+#: 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 ""
-#: public/js/frappe/ui/toolbar/search_utils.js:521
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537
msgid "Create a new ..."
msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:156
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:156
msgid "Create a new record"
-msgstr "Maak een nieuw record"
+msgstr ""
-#: public/js/frappe/form/controls/link.js:291
-#: public/js/frappe/form/controls/link.js:293
-#: public/js/frappe/form/link_selector.js:139
-#: public/js/frappe/list/list_view.js:470
+#: frappe/public/js/frappe/form/controls/link.js:311
+#: frappe/public/js/frappe/form/controls/link.js:313
+#: frappe/public/js/frappe/form/link_selector.js:139
+#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/web_form/web_form_list.js:225
msgid "Create a new {0}"
-msgstr "Maak een nieuwe {0}"
+msgstr ""
-#: www/login.html:142
+#: frappe/www/login.html:162
msgid "Create a {0} Account"
msgstr ""
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:34
+#. Description of a DocType
+#: frappe/email/doctype/newsletter/newsletter.json
+msgid "Create and send emails to a specific group of subscribers periodically."
+msgstr ""
+
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
-#: workflow/page/workflow_builder/workflow_builder.js:34
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:34
msgid "Create or Edit Workflow"
msgstr ""
-#: public/js/frappe/list/list_view.js:473
+#: frappe/public/js/frappe/list/list_view.js:504
msgid "Create your first {0}"
-msgstr "Maak je eerste {0}"
+msgstr ""
-#: workflow/doctype/workflow/workflow.js:16
+#: frappe/workflow/doctype/workflow/workflow.js:16
msgid "Create your workflow visually using the Workflow Builder."
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/public/js/frappe/views/file/file_view.js:337
msgid "Created"
-msgstr "gemaakt"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Created"
-msgstr "gemaakt"
-
-#. Label of a Datetime field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
+#. Label of the created_at (Datetime) field in DocType 'Submission Queue'
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Created At"
msgstr ""
-#: model/__init__.py:138 model/meta.py:51
-#: public/js/frappe/list/list_sidebar_group_by.js:73
-#: public/js/frappe/model/meta.js:203 public/js/frappe/model/model.js:113
+#: frappe/model/meta.py:56
+#: 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 "Gemaakt door"
+msgstr ""
-#: workflow/doctype/workflow/workflow.py:65
+#: frappe/workflow/doctype/workflow/workflow.py:64
msgid "Created Custom Field {0} in {1}"
-msgstr "Aangepast veld {0} van {1} gemaakt"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.js:241 model/__init__.py:140
-#: model/meta.py:46 public/js/frappe/model/meta.js:198
-#: public/js/frappe/model/model.js:115
-#: public/js/frappe/views/dashboard/dashboard_view.js:478
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241
+#: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:51
+#: 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 "Gemaakt op"
+msgstr ""
-#: public/js/frappe/desk.js:497 public/js/frappe/views/treeview.js:376
+#: frappe/public/js/frappe/desk.js:515
+#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
-msgstr "{0} maken"
+msgstr ""
-#. Option for the 'Type' (Select) field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Criticism"
-msgstr "Kritiek"
-
-#: public/js/frappe/form/sidebar/review.js:66
-msgid "Criticize"
-msgstr "Bekritiseren"
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:41
+msgid "Creation of this document is only permitted in developer mode."
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Cron"
-msgstr "cron"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Cron"
-msgstr "cron"
+msgstr ""
-#. Label of a Data field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#. Label of the cron_format (Data) field in DocType 'Scheduled Job Type'
+#. Label of the cron_format (Data) field in DocType 'Server Script'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Cron Format"
-msgstr "Cron-indeling"
+msgstr ""
-#. Label of a Data field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Cron Format"
-msgstr "Cron-indeling"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:59
+msgid "Cron format is required for job types with Cron frequency."
+msgstr ""
-#: templates/includes/comments/comments.html:32
+#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:34
+msgid "Crop"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Ctrl + Down"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Ctrl + Up"
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.html:32
msgid "Ctrl+Enter to add comment"
-msgstr "Ctrl + Enter om commentaar toe te voegen"
-
-#. Name of a DocType
-#: desk/page/setup_wizard/setup_wizard.js:403
-#: geo/doctype/currency/currency.json
-msgid "Currency"
-msgstr "Valuta"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Currency"
-msgstr "Valuta"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Currency"
-msgstr "Valuta"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Currency"
-msgstr "Valuta"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Currency"
-msgstr "Valuta"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Currency"
-msgstr "Valuta"
-
+#. Label of the currency (Link) field in DocType 'System Settings'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the currency (Link) field in DocType 'Dashboard Chart'
+#. Label of the currency (Link) field in DocType 'Number Card'
+#. Name of a DocType
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:414
+#: frappe/geo/doctype/currency/currency.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Currency"
-msgstr "Valuta"
+msgstr ""
-#. Label of a Data field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the currency_name (Data) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
msgid "Currency Name"
-msgstr "Valutanaam"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the currency_precision (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Currency Precision"
-msgstr "Valuta Precisie"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/geo/doctype/currency/currency.json
+msgid "Currency list stores the currency value, its symbol and fraction unit"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Current"
-msgstr "Actueel"
+msgstr ""
-#. Label of a Link field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the current_job_id (Link) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Current Job ID"
msgstr ""
-#. Label of a Int field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the current_value (Int) field in DocType 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Current Value"
msgstr ""
-#: public/js/frappe/form/form_viewers.js:5
+#: frappe/public/js/frappe/form/workflow.js:45
+msgid "Current status"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_viewers.js:5
msgid "Currently Viewing"
-msgstr "Momenteel wordt bekeken"
-
-#: public/js/frappe/form/sidebar/review.js:77
-msgid "Currently you have {0} review points"
-msgstr "Momenteel heb je {0} beoordelingspunten"
-
-#: core/doctype/user_type/user_type_list.js:7
-#: public/js/frappe/form/reminders.js:20
-msgid "Custom"
-msgstr "Aangepast"
+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'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Custom"
-msgstr "Aangepast"
-
-#. Label of a Check field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Custom"
-msgstr "Aangepast"
-
-#. Label of a Check field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
-msgid "Custom"
-msgstr "Aangepast"
-
-#. Label of a Check field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
-msgid "Custom"
-msgstr "Aangepast"
-
-#. Label of a Check field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Custom"
-msgstr "Aangepast"
-
-#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Custom"
-msgstr "Aangepast"
-
-#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
-msgid "Custom"
-msgstr "Aangepast"
-
-#. Label of a Check field in DocType 'Module Def'
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Custom"
-msgstr "Aangepast"
-
-#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Custom"
-msgstr "Aangepast"
-
+#. Label of the custom (Check) field in DocType 'Desktop Icon'
#. Option for the 'Type' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Custom"
-msgstr "Aangepast"
-
-#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Custom"
-msgstr "Aangepast"
-
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/core/doctype/doctype_link/doctype_link.json
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/user_type/user_type_list.js:7
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/public/js/frappe/form/reminders.js:20
msgid "Custom"
-msgstr "Aangepast"
+msgstr ""
-#. Label of a Check field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the 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 "Aangepaste basis-URL"
+msgstr ""
-#. Label of a Link field in DocType 'Workspace Custom Block'
-#: desk/doctype/workspace_custom_block/workspace_custom_block.json
-msgctxt "Workspace Custom Block"
+#. Label of the custom_block_name (Link) field in DocType 'Workspace Custom
+#. Block'
+#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json
msgid "Custom Block Name"
msgstr ""
-#. Label of a Tab Break field in DocType 'Workspace'
-#. Label of a Table field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the custom_blocks_tab (Tab Break) field in DocType 'Workspace'
+#. Label of the custom_blocks (Table) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Custom Blocks"
msgstr ""
-#. Label of a Code field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the css (Code) field in DocType 'Print Format'
+#. Label of the custom_css (Code) field in DocType 'Web Form'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/website/doctype/web_form/web_form.json
msgid "Custom CSS"
-msgstr "Aangepaste CSS"
-
-#. Label of a Code field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Custom CSS"
-msgstr "Aangepaste CSS"
-
-#. Label of a Section Break field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Custom Configuration"
-msgstr "Aangepaste configuratie"
-
-#. Name of a DocType
-#: core/doctype/custom_docperm/custom_docperm.json
-msgid "Custom DocPerm"
-msgstr "Custom DocPerm"
-
-#. Title of an Onboarding Step
-#: custom/onboarding_step/custom_doctype/custom_doctype.json
-msgid "Custom Document Types"
msgstr ""
-#. Label of a Table field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the custom_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 ""
-#: core/doctype/user_type/user_type.py:104
+#: frappe/core/doctype/user_type/user_type.py:105
msgid "Custom Document Types Limit Exceeded"
msgstr ""
-#: desk/desktop.py:483
+#: frappe/desk/desktop.py:524
msgid "Custom Documents"
-msgstr "Aangepaste documenten"
-
-#. Name of a DocType
-#: custom/doctype/custom_field/custom_field.json
-msgid "Custom Field"
-msgstr "Aangepast veld"
-
-#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Custom Field"
-msgid "Custom Field"
-msgstr "Aangepast veld"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Custom Field"
-msgstr "Aangepast veld"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Custom Field"
-msgstr "Aangepast veld"
-
-#: custom/doctype/custom_field/custom_field.py:216
-msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
-msgstr "Aangepast veld {0} wordt gemaakt door de beheerder en kan alleen worden verwijderd via de beheerdersaccount."
-
-#. Subtitle of the Module Onboarding 'Customization'
-#: custom/module_onboarding/customization/customization.json
-msgid "Custom Field, Custom Doctype, Naming Series, Role Permission, Workflow, Print Formats, Reports"
msgstr ""
-#: custom/doctype/custom_field/custom_field.py:260
+#. 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 "Aangepaste velden kunnen alleen worden toegevoegd aan een standaard DocType."
+msgstr ""
-#: custom/doctype/custom_field/custom_field.py:257
+#: frappe/custom/doctype/custom_field/custom_field.py:274
msgid "Custom Fields cannot be added to core DocTypes."
-msgstr "Aangepaste velden kunnen niet worden toegevoegd aan kern DocTypes."
+msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the custom_footer_section (Section Break) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Custom Footer"
msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the custom_format (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Custom Format"
-msgstr "Aangepast formaat"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_custom_group_search (Data) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Custom Group Search"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:119
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:122
msgid "Custom Group Search if filled needs to contain the user placeholder {0}, eg uid={0},ou=users,dc=example,dc=com"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:190
-#: printing/page/print_format_builder/print_format_builder.js:720
+#: frappe/printing/page/print_format_builder/print_format_builder.js:190
+#: frappe/printing/page/print_format_builder/print_format_builder.js:728
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
-msgstr "Aangepaste HTML"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
msgid "Custom HTML Block"
msgstr ""
-#. Label of a HTML field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the custom_html_help (HTML) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Custom HTML Help"
-msgstr "Aangepaste HTML Help"
+msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:111
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:114
msgid "Custom LDAP Directoy Selected, please ensure 'LDAP Group Member attribute' and 'Group Object Class' are entered"
msgstr ""
-#. Label of a Data field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the label (Data) field in DocType 'Web Form Field'
+#. Label of the label (Data) field in DocType 'Web Form List Column'
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Custom Label"
msgstr ""
-#. Label of a Data field in DocType 'Web Form List Column'
-#: website/doctype/web_form_list_column/web_form_list_column.json
-msgctxt "Web Form List Column"
-msgid "Custom Label"
-msgstr ""
-
-#. Label of a Table field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the custom_menu (Table) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Custom Menu Items"
-msgstr "Aangepaste menu-items"
+msgstr ""
-#. Label of a Code field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the custom_options (Code) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Custom Options"
-msgstr "Aangepaste opties"
+msgstr ""
-#. Label of a Code field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the custom_overrides (Code) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom Overrides"
-msgstr "Aangepaste overschrijvingen"
+msgstr ""
#. Option for the 'Report Type' (Select) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#: frappe/core/doctype/report/report.json
msgid "Custom Report"
-msgstr "Aangepast rapport"
+msgstr ""
-#: desk/desktop.py:484
+#: frappe/desk/desktop.py:525
msgid "Custom Reports"
-msgstr "Aangepaste rapporten"
+msgstr ""
#. Name of a DocType
-#: core/doctype/custom_role/custom_role.json
+#: frappe/core/doctype/custom_role/custom_role.json
msgid "Custom Role"
-msgstr "Custom Role"
+msgstr ""
-#. Label of a Code field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the custom_scss (Code) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom SCSS"
-msgstr "Aangepaste SCSS"
+msgstr ""
-#. Label of a Section Break field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the custom_sidebar_menu (Section Break) field in DocType 'Portal
+#. Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Custom Sidebar Menu"
-msgstr "Custom Sidebar Menu"
+msgstr ""
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Translation"
+#: frappe/core/workspace/build/build.json
msgid "Custom Translation"
msgstr ""
-#: core/doctype/doctype/doctype_list.js:65
-msgid "Custom?"
-msgstr "Aangepast?"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Custom?"
-msgstr "Aangepast?"
-
-#. Label of a Check field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Custom?"
-msgstr "Aangepast?"
-
-#. Label of a Card Break in the Build Workspace
-#. Title of the Module Onboarding 'Customization'
-#: core/workspace/build/build.json
-#: custom/module_onboarding/customization/customization.json
-msgid "Customization"
-msgstr "Maatwerk"
-
-#. Group in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Customization"
-msgstr "Maatwerk"
-
-#. Group in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Customization"
-msgstr "Maatwerk"
-
-#. Label of a Tab Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Customization"
-msgstr "Maatwerk"
-
-#. Success message of the Module Onboarding 'Customization'
-#: custom/module_onboarding/customization/customization.json
-msgid "Customization onboarding is all done!"
+#: frappe/custom/doctype/custom_field/custom_field.py:423
+msgid "Custom field renamed to {0} successfully."
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:511
+#. Label of the custom (Check) field in DocType 'DocType'
+#. Label of the custom (Check) field in DocType 'Website Theme'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Custom?"
+msgstr ""
+
+#. 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 ""
-#: custom/doctype/customize_form/customize_form.js:397
+#: frappe/custom/doctype/customize_form/customize_form.js:465
msgid "Customizations Reset"
-msgstr "Aanpassingen Reset"
+msgstr ""
-#: modules/utils.py:95
+#: frappe/modules/utils.py:96
msgid "Customizations for {0} exported to:
{1}"
-msgstr "Aanpassingen voor {0} geëxporteerd naar:
{1}"
+msgstr ""
-#: printing/page/print/print.js:171 public/js/frappe/form/toolbar.js:527
+#: frappe/printing/page/print/print.js:171
+#: frappe/public/js/frappe/form/templates/print_layout.html:39
+#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
-msgstr "Aanpassen"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1664
+#: frappe/public/js/frappe/list/list_view.js:1802
msgctxt "Button in list view menu"
msgid "Customize"
-msgstr "Aanpassen"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:89
+#: frappe/custom/doctype/customize_form/customize_form.js:89
msgid "Customize Child Table"
msgstr ""
-#: public/js/frappe/views/dashboard/dashboard_view.js:37
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:38
msgid "Customize Dashboard"
msgstr ""
-#. Name of a DocType
-#: custom/doctype/customize_form/customize_form.json
-#: public/js/frappe/views/kanban/kanban_view.js:340
-msgid "Customize Form"
-msgstr "Aanpassen formulier"
-
#. Label of a Link in the Build Workspace
-#. Label of a shortcut in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Customize Form"
+#. Name of a DocType
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:33
+#: frappe/core/doctype/doctype/doctype.js:61
+#: frappe/core/workspace/build/build.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
msgid "Customize Form"
-msgstr "Aanpassen formulier"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:100
+#: frappe/custom/doctype/customize_form/customize_form.js:100
msgid "Customize Form - {0}"
msgstr ""
#. Name of a DocType
-#: custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Customize Form Field"
-msgstr "Aanpassen formulierveld"
-
-#. Title of an Onboarding Step
-#: custom/onboarding_step/print_format/print_format.json
-msgid "Customize Print Formats"
msgstr ""
-#: public/js/frappe/views/file/file_view.js:144
+#. 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 "Besnoeiing"
+msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Cyan"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Cyan"
msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "DELETE"
-msgstr ""
-
#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "DELETE"
msgstr ""
-#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "DESC"
-msgstr "DESC"
-
#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "DESC"
-msgstr "DESC"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "DLE"
msgstr ""
-#: templates/print_formats/standard_macros.html:207
+#: frappe/templates/print_formats/standard_macros.html:215
msgid "DRAFT"
-msgstr "Ontwerp"
-
-#: public/js/frappe/utils/common.js:398
-#: website/report/website_analytics/website_analytics.js:23
-msgid "Daily"
-msgstr "Dagelijks"
-
-#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Daily"
-msgstr "Dagelijks"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Daily"
-msgstr "Dagelijks"
-
+#. 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'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Daily"
-msgstr "Dagelijks"
-
+#. 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'
#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
#. Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Daily"
-msgstr "Dagelijks"
-
-#. Option for the 'Point Allocation Periodicity' (Select) field in DocType
-#. 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Daily"
-msgstr "Dagelijks"
-
-#. Option for the 'Repeat On' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Daily"
-msgstr "Dagelijks"
-
#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Daily"
-msgstr "Dagelijks"
-
-#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Daily"
-msgstr "Dagelijks"
-
#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
#. Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/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/integrations/doctype/dropbox_settings/dropbox_settings.json
+#: frappe/integrations/doctype/google_drive/google_drive.json
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
+#: frappe/public/js/frappe/utils/common.js:398
+#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
-msgstr "Dagelijks"
+msgstr ""
-#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Daily"
-msgstr "Dagelijks"
-
-#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Daily"
-msgstr "Dagelijks"
-
-#. Option for the 'Frequency' (Select) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Daily"
-msgstr "Dagelijks"
-
-#: templates/emails/upcoming_events.html:8
+#: frappe/templates/emails/upcoming_events.html:8
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
-msgstr "Dagelijkse gebeurtenis Digest wordt gestuurd voor Agenda Events waar herinneringen worden ingesteld."
+msgstr ""
-#: desk/doctype/event/event.py:93
+#: frappe/desk/doctype/event/event.py:100
msgid "Daily Events should finish on the Same Day."
-msgstr "Dagelijkse evenementen moeten op dezelfde dag eindigen."
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Daily Long"
-msgstr "Dagelijks lang"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Daily Long"
-msgstr "Dagelijks lang"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+msgid "Daily Maintenance"
+msgstr ""
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Danger"
-msgstr "Gevaar"
+msgstr ""
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Dark"
msgstr ""
-#. Label of a Link field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the dark_color (Link) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Dark Color"
-msgstr "Donkere kleur"
+msgstr ""
-#: public/js/frappe/ui/theme_switcher.js:65
+#: frappe/public/js/frappe/ui/theme_switcher.js:65
msgid "Dark Theme"
msgstr ""
-#. Name of a DocType
-#: core/page/dashboard_view/dashboard_view.js:10
-#: desk/doctype/dashboard/dashboard.json
-#: public/js/frappe/ui/toolbar/search_utils.js:546
-msgid "Dashboard"
-msgstr "Dashboard"
-
+#. Label of the dashboard (Check) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Dashboard"
-msgid "Dashboard"
-msgstr "Dashboard"
-
+#. Name of a DocType
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Dashboard"
-msgstr "Dashboard"
-
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
-msgid "Dashboard"
-msgstr "Dashboard"
-
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/core/doctype/user/user.json
+#: frappe/core/page/dashboard_view/dashboard_view.js:10
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
+#: frappe/public/js/frappe/utils/utils.js:932
msgid "Dashboard"
-msgstr "Dashboard"
-
-#. Name of a DocType
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8
-msgid "Dashboard Chart"
-msgstr "Dashboardgrafiek"
+msgstr ""
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Dashboard Chart"
+#. Name of a DocType
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8
msgid "Dashboard Chart"
-msgstr "Dashboardgrafiek"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json
+#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
msgid "Dashboard Chart Field"
-msgstr "Dashboardgrafiekveld"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
msgid "Dashboard Chart Link"
-msgstr "Link naar dashboarddiagram"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
msgid "Dashboard Chart Source"
-msgstr "Bron van dashboarddiagram"
+msgstr ""
#. Name of a role
-#: desk/doctype/dashboard/dashboard.json
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-#: desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Dashboard Manager"
-msgstr "Dashboardbeheerder"
+msgstr ""
-#. Label of a Data field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
+#. Label of the dashboard_name (Data) field in DocType 'Dashboard'
+#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Dashboard Name"
-msgstr "Dashboardnaam"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/dashboard_settings/dashboard_settings.json
+#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
msgid "Dashboard Settings"
-msgstr "Dashboard-instellingen"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/public/js/frappe/list/base_list.js:204
+msgid "Dashboard View"
+msgstr ""
+
+#. Label of the tab_break_2 (Tab Break) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Dashboards"
-msgstr "dashboards"
+msgstr ""
#. Label of a Card Break in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgid "Data"
-msgstr "Data"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Data"
-msgstr "Data"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Data"
-msgstr "Data"
-
-#. Label of a Code field in DocType 'Deleted Document'
-#: core/doctype/deleted_document/deleted_document.json
-msgctxt "Deleted Document"
-msgid "Data"
-msgstr "Data"
-
+#. Label of the data (Code) field in DocType 'Deleted Document'
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Data"
-msgstr "Data"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Data"
-msgstr "Data"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Data"
-msgstr "Data"
-
-#. Label of a Long Text field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Data"
-msgstr "Data"
-
-#. Label of a Code field in DocType 'Version'
-#: core/doctype/version/version.json
-msgctxt "Version"
-msgid "Data"
-msgstr "Data"
-
+#. Label of the data (Long Text) field in DocType 'Transaction Log'
+#. Label of the data (Code) field in DocType 'Version'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the webhook_data (Table) field in DocType 'Webhook'
+#. Label of the data (Code) field in DocType 'Webhook Request Log'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Data"
-msgstr "Data"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/deleted_document/deleted_document.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/core/doctype/version/version.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Data"
-msgstr "Data"
+msgstr ""
-#. Label of a Table field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Data"
-msgstr "Data"
-
-#. Label of a Code field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "Data"
-msgstr "Data"
-
-#: public/js/frappe/form/controls/data.js:58
+#: frappe/public/js/frappe/form/controls/data.js:59
msgid "Data Clipped"
msgstr ""
#. Name of a DocType
-#: core/doctype/data_export/data_export.json
+#: frappe/core/doctype/data_export/data_export.json
msgid "Data Export"
-msgstr "Gegevens exporteren"
+msgstr ""
#. Name of a DocType
-#: core/doctype/data_import/data_import.json
+#. 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 "Gegevens importeren"
-
-#. Label of a Link field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
-msgid "Data Import"
-msgstr "Gegevens importeren"
+msgstr ""
#. Name of a DocType
-#: core/doctype/data_import_log/data_import_log.json
+#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Data Import Log"
msgstr ""
-#: core/doctype/data_export/exporter.py:174
+#: frappe/core/doctype/data_export/exporter.py:174
msgid "Data Import Template"
-msgstr "Data Import Sjabloon"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:614
+#: frappe/custom/doctype/customize_form/customize_form.py:614
msgid "Data Too Long"
-msgstr "Gegevens te lang"
+msgstr ""
-#: model/base_document.py:703
-msgid "Data missing in table"
-msgstr "Data ontbreekt in tabel"
+#. Label of the database (Data) field in DocType 'System Health Report'
+#. Label of the database_section (Section Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Database"
+msgstr ""
-#. Label of a Select field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the engine (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Database Engine"
-msgstr "Database Engine"
+msgstr ""
-#. Label of a Section Break field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#. Label of the database_processes_section (Section Break) field in DocType
+#. 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
msgid "Database Processes"
msgstr ""
-#: public/js/frappe/doctype/index.js:38
+#: frappe/public/js/frappe/doctype/index.js:38
msgid "Database Row Size Utilization"
msgstr ""
#. Name of a report
-#: core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json
+#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json
msgid "Database Storage Usage By Tables"
msgstr ""
-#: custom/doctype/customize_form/customize_form.py:244
+#: frappe/custom/doctype/customize_form/customize_form.py:248
msgid "Database Table Row Size Limit"
msgstr ""
-#: public/js/frappe/doctype/index.js:40
+#: frappe/public/js/frappe/doctype/index.js:40
msgid "Database Table Row Size Utilization: {0}%, this limits number of fields you can add."
msgstr ""
-#: desk/report/todo/todo.py:38 email/doctype/newsletter/newsletter.js:109
-#: public/js/frappe/views/interaction.js:80
-msgid "Date"
-msgstr "Datum"
-
-#. Label of a Datetime field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Date"
-msgstr "Datum"
-
-#. Label of a Datetime field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Date"
-msgstr "Datum"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Date"
-msgstr "Datum"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Date"
-msgstr "Datum"
+#. Label of the database_version (Data) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Database Version"
+msgstr ""
+#. Label of the communication_date (Datetime) field in DocType 'Activity Log'
+#. Label of the communication_date (Datetime) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Date"
-msgstr "Datum"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Date"
-msgstr "Datum"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Date"
-msgstr "Datum"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/report/todo/todo.py:38
+#: frappe/email/doctype/newsletter/newsletter.js:109
+#: frappe/public/js/frappe/views/interaction.js:80
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
-msgstr "Datum"
+msgstr ""
-#. Label of a Data field in DocType 'Country'
-#: geo/doctype/country/country.json
-msgctxt "Country"
+#. Label of the date_format (Select) field in DocType 'Language'
+#. Label of the date_format (Select) field in DocType 'System Settings'
+#. Label of the date_format (Data) field in DocType 'Country'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/geo/doctype/country/country.json
msgid "Date Format"
-msgstr "Datumnotatie"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Date Format"
-msgstr "Datumnotatie"
-
-#: desk/page/leaderboard/leaderboard.js:165
+#. Label of the section_break_dfrx (Section Break) field in DocType 'Audit
+#. Trail'
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/public/js/frappe/widgets/chart_widget.js:237
msgid "Date Range"
msgstr ""
-#. Label of a Section Break field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
-msgid "Date Range"
-msgstr ""
-
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the date_and_number_format (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Date and Number Format"
-msgstr "Datum en Nummer Formaat"
+msgstr ""
-#: public/js/frappe/form/controls/date.js:163
+#: frappe/public/js/frappe/form/controls/date.js:247
msgid "Date {0} must be in format: {1}"
-msgstr "Datum {0} moet de indeling hebben: {1}"
+msgstr ""
-#: utils/password_strength.py:131
+#: frappe/utils/password_strength.py:129
msgid "Dates are often easy to guess."
-msgstr "Data zijn vaak gemakkelijk te raden."
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Datetime"
-msgstr "Datetime"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Datetime"
-msgstr "Datetime"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Datetime"
-msgstr "Datetime"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Datetime"
-msgstr "Datetime"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Datetime"
-msgstr "Datetime"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Datetime"
-msgstr "Datetime"
+msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:270
+#. Label of the day (Select) field in DocType 'Assignment Rule Day'
+#. Label of the day (Select) field in DocType 'Auto Repeat Day'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/public/js/frappe/views/calendar/calendar.js:277
msgid "Day"
-msgstr "Dag"
+msgstr ""
-#. Label of a Select field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Day"
-msgstr "Dag"
-
-#. Label of a Select field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Day"
-msgstr "Dag"
-
-#. Label of a Select field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the day_of_week (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Day of Week"
-msgstr "Dag van de week"
+msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Days After"
-msgstr "Dagen na"
+msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Days Before"
-msgstr "Dagen voor"
+msgstr ""
-#. Label of a Int field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the days_in_advance (Int) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Days Before or After"
-msgstr "Dagen voor of na"
+msgstr ""
-#: public/js/frappe/request.js:249
+#: frappe/public/js/frappe/request.js:252
msgid "Deadlock Occurred"
msgstr ""
-#: templates/emails/password_reset.html:1
+#: frappe/templates/emails/password_reset.html:1
msgid "Dear"
-msgstr "Geachte"
+msgstr ""
-#: templates/emails/administrator_logged_in.html:1
+#: frappe/templates/emails/administrator_logged_in.html:1
msgid "Dear System Manager,"
-msgstr "Geachte Systeemmanager,"
+msgstr ""
-#: templates/emails/account_deletion_notification.html:1
-#: templates/emails/delete_data_confirmation.html:1
+#: frappe/templates/emails/account_deletion_notification.html:1
+#: frappe/templates/emails/delete_data_confirmation.html:1
msgid "Dear User,"
-msgstr "Beste gebruiker,"
+msgstr ""
-#: templates/emails/download_data.html:1
+#: frappe/templates/emails/download_data.html:1
msgid "Dear {0}"
-msgstr "Beste {0}"
+msgstr ""
-#. Label of a Code field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
+#. Label of the debug_log (Code) field in DocType 'Scheduled Job Log'
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
msgid "Debug Log"
msgstr ""
-#. Label of a Small Text field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Default"
-msgstr "Standaard"
+#: frappe/public/js/frappe/views/reports/report_utils.js:308
+msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric"
+msgstr ""
-#. Label of a Small Text field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Default"
-msgstr "Standaard"
+#: frappe/public/js/frappe/views/reports/report_utils.js:300
+msgid "Decimal Separator must be a single character"
+msgstr ""
+#. Label of the default (Small Text) field in DocType 'DocField'
+#. Label of the default (Small Text) field in DocType 'Report Filter'
+#. Label of the default (Small Text) field in DocType 'Customize Form Field'
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the default (Data) field in DocType 'Web Form Field'
+#. Label of the default (Small Text) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/templates/form_grid/fields.html:30
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Default"
-msgstr "Standaard"
+msgstr ""
-#. Label of a Small Text field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Default"
-msgstr "Standaard"
-
-#. Label of a Data field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Default"
-msgstr "Standaard"
-
-#. Label of a Small Text field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Default"
-msgstr "Standaard"
-
-#: contacts/doctype/address_template/address_template.py:40
+#: frappe/contacts/doctype/address_template/address_template.py:41
msgid "Default Address Template cannot be deleted"
-msgstr "Standaard Adres Sjabloon kan niet worden verwijderd"
+msgstr ""
-#. Label of a Select field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the default_amend_naming (Select) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Default Amendment Naming"
msgstr ""
-#. Label of a Link field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the default_app (Select) field in DocType 'System Settings'
+#. Label of the default_app (Select) field in DocType 'User'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+msgid "Default App"
+msgstr ""
+
+#. Label of the default_email_template (Link) field in DocType 'DocType'
+#. Label of the default_email_template (Link) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Default Email Template"
msgstr ""
-#. Label of a Link field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Default Email Template"
-msgstr ""
-
-#: email/doctype/email_account/email_account_list.js:13
+#: frappe/email/doctype/email_account/email_account_list.js:13
msgid "Default Inbox"
-msgstr "Standaard Inbox"
+msgstr ""
-#: email/doctype/email_account/email_account.py:194
+#. Label of the default_incoming (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:224
msgid "Default Incoming"
-msgstr "Standaard Inkomende"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Default Incoming"
-msgstr "Standaard Inkomende"
-
-#. Label of a Check field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the is_default (Check) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Default Letter Head"
-msgstr "Standaard Briefhoofd"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming
#. Settings'
-#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
-msgctxt "Amended Document Naming Settings"
-msgid "Default Naming"
-msgstr ""
-
#. Option for the 'Default Amendment Naming' (Select) field in DocType
#. 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Default Naming"
msgstr ""
-#: email/doctype/email_account/email_account.py:201
+#. Label of the default_outgoing (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:232
msgid "Default Outgoing"
-msgstr "Standaard uitgaande"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Default Outgoing"
-msgstr "Standaard uitgaande"
-
-#. Label of a Data field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the default_portal_home (Data) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Default Portal Home"
-msgstr "Standaard Portal Home"
+msgstr ""
-#. Label of a Link field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the default_print_format (Data) field in DocType 'DocType'
+#. Label of the default_print_format (Link) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Default Print Format"
-msgstr "Standaard Print Format"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Default Print Format"
-msgstr "Standaard Print Format"
-
-#. Label of a Link field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the default_print_language (Link) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Default Print Language"
-msgstr "Standaard afdruktaal"
+msgstr ""
-#. Label of a Data field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the default_redirect_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Default Redirect URI"
-msgstr "Standaard Redirect URI"
+msgstr ""
-#. Label of a Link field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the default_role (Link) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Default Role at Time of Signup"
-msgstr "Default Rol op het moment van Inschrijven"
+msgstr ""
-#: email/doctype/email_account/email_account_list.js:16
+#: frappe/email/doctype/email_account/email_account_list.js:16
msgid "Default Sending"
-msgstr "Standaard verzenden"
+msgstr ""
-#: email/doctype/email_account/email_account_list.js:7
+#: frappe/email/doctype/email_account/email_account_list.js:7
msgid "Default Sending and Inbox"
-msgstr "Standaard verzenden en Inbox"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the sort_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Default Sort Field"
-msgstr "Standaard sorteerveld"
+msgstr ""
-#. Label of a Select field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the sort_order (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Default Sort Order"
-msgstr "Standaard sorteervolgorde"
+msgstr ""
-#. Label of a Data field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
+#. Label of the field (Data) field in DocType 'Print Format Field Template'
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
msgid "Default Template For Field"
msgstr ""
-#: website/doctype/website_theme/website_theme.js:28
+#: frappe/website/doctype/website_theme/website_theme.js:28
msgid "Default Theme"
-msgstr "Standaard thema"
+msgstr ""
-#. Label of a Link field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the default_role (Link) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Default User Role"
msgstr ""
-#. Label of a Link field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the default_user_type (Link) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Default User Type"
msgstr ""
-#. Label of a Text field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the default (Text) field in DocType 'Custom Field'
+#. Label of the default_value (Data) field in DocType 'Property Setter'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Default Value"
-msgstr "Standaardwaarde"
+msgstr ""
-#. Label of a Data field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
-msgid "Default Value"
-msgstr "Standaardwaarde"
-
-#. Label of a Select field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the default_view (Select) field in DocType 'DocType'
+#. Label of the default_view (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Default View"
msgstr ""
-#. Label of a Select field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Default View"
+#. Label of the default_workspace (Link) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Default Workspace"
msgstr ""
-#: core/doctype/doctype/doctype.py:1327
+#. Description of the 'Currency' (Link) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Default display currency"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1376
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
-msgstr "De standaardwaarde voor het veldtype 'Controle' {0} moet '0' of '1' zijn"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1340
+#: frappe/core/doctype/doctype/doctype.py:1389
msgid "Default value for {0} must be in the list of options."
-msgstr "De standaardwaarde voor {0} moet in de lijst met opties staan."
+msgstr ""
-#: core/doctype/session_default_settings/session_default_settings.py:37
+#: frappe/core/doctype/session_default_settings/session_default_settings.py:38
msgid "Default {0}"
-msgstr "Standaard {0}"
+msgstr ""
#. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Default: \"Contact Us\""
-msgstr "Default: "Contact""
+msgstr ""
#. Name of a DocType
-#: core/doctype/defaultvalue/defaultvalue.json
+#: frappe/core/doctype/defaultvalue/defaultvalue.json
msgid "DefaultValue"
-msgstr "Standaardwaarde"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the defaults_section (Section Break) field in DocType 'DocField'
+#. Label of the sb2 (Section Break) field in DocType 'User'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/user/user.json
msgid "Defaults"
-msgstr "Standaardwaarden"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Defaults"
-msgstr "Standaardwaarden"
-
-#: email/doctype/email_account/email_account.py:207
+#: 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 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'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Delayed"
-msgstr "Vertraagd"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:189
-#: public/js/frappe/form/toolbar.js:423
-#: public/js/frappe/views/reports/report_view.js:1645
-#: public/js/frappe/views/treeview.js:313
-#: public/js/frappe/views/workspace/workspace.js:823
-#: templates/discussions/reply_card.html:35
+#. Label of the delete (Check) field in DocType 'Custom DocPerm'
+#. Label of the delete (Check) field in DocType 'DocPerm'
+#. Label of the delete (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:189
+#: frappe/public/js/frappe/form/footer/form_timeline.js:626
+#: frappe/public/js/frappe/form/grid.js:66
+#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/views/reports/report_view.js:1734
+#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/templates/discussions/reply_card.html:35
+#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
-msgstr "Verwijder"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1857
+#: frappe/public/js/frappe/list/list_view.js:2027
msgctxt "Button in list view actions menu"
msgid "Delete"
-msgstr "Verwijder"
+msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Delete"
-msgstr "Verwijder"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Delete"
-msgstr "Verwijder"
-
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Delete"
-msgstr "Verwijder"
-
-#: www/me.html:75
+#: frappe/www/me.html:65
msgid "Delete Account"
msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:10
-msgid "Delete Data"
-msgstr "Verwijder data"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete All"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:103
+#: 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:106
msgid "Delete Kanban Board"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:824
-msgid "Delete Workspace"
+#: frappe/public/js/form_builder/components/Section.vue:125
+msgctxt "Title of confirmation dialog"
+msgid "Delete Section"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:696
+#: frappe/public/js/form_builder/components/Tabs.vue:64
+msgctxt "Title of confirmation dialog"
+msgid "Delete Tab"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:932
+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:738
msgid "Delete comment?"
-msgstr "Reactie verwijderen?"
+msgstr ""
-#: email/doctype/email_unsubscribe/email_unsubscribe.py:30
+#: frappe/public/js/form_builder/components/Section.vue:205
+msgctxt "Button text"
+msgid "Delete entire column with fields"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:134
+msgctxt "Button text"
+msgid "Delete entire section with fields"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:73
+msgctxt "Button text"
+msgid "Delete entire tab with fields"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:132
+msgctxt "Button text"
+msgid "Delete section"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:71
+msgctxt "Button text"
+msgid "Delete tab"
+msgstr ""
+
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:29
msgid "Delete this record to allow sending to this email address"
-msgstr "Verwijder dit record om mailverkeer naar dit e-mailadres toe te staan."
+msgstr ""
-#: public/js/frappe/list/list_view.js:1862
+#: frappe/public/js/frappe/list/list_view.js:2032
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: public/js/frappe/list/list_view.js:1868
+#: frappe/public/js/frappe/list/list_view.js:2038
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
-msgstr "Verwijder {0} items definitief?"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Deleted"
-msgstr "Verwijderd"
-
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Deleted"
-msgstr "Verwijderd"
-
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
-msgid "Deleted"
-msgstr "Verwijderd"
-
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Deleted"
-msgstr "Verwijderd"
+msgstr ""
-#. Label of a Data field in DocType 'Deleted Document'
-#: core/doctype/deleted_document/deleted_document.json
-msgctxt "Deleted Document"
+#. Label of the deleted_doctype (Data) field in DocType 'Deleted Document'
+#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted DocType"
-msgstr "verwijderde DocType"
+msgstr ""
#. Name of a DocType
-#: core/doctype/deleted_document/deleted_document.json
+#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted Document"
-msgstr "verwijderde Document"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Deleted Document"
+#: frappe/automation/workspace/tools/tools.json
msgid "Deleted Documents"
-msgstr "Documenten verwijderd"
+msgstr ""
-#. Label of a Data field in DocType 'Deleted Document'
-#: core/doctype/deleted_document/deleted_document.json
-msgctxt "Deleted Document"
+#. Label of the deleted_name (Data) field in DocType 'Deleted Document'
+#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted Name"
-msgstr "verwijderde Naam"
+msgstr ""
-#: desk/reportview.py:488
+#: frappe/desk/reportview.py:606
+msgid "Deleted all documents successfully"
+msgstr ""
+
+#: frappe/desk/reportview.py:583
msgid "Deleting {0}"
-msgstr "Het verwijderen van {0}"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:158
+#: frappe/public/js/frappe/list/bulk_operations.js:202
msgid "Deleting {0} records..."
msgstr ""
-#: public/js/frappe/model/model.js:706
+#: frappe/public/js/frappe/model/model.js:741
msgid "Deleting {0}..."
msgstr ""
-#. Label of a Table field in DocType 'Personal Data Deletion Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
+#. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion
+#. Request'
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Deletion Steps "
msgstr ""
-#: core/doctype/page/page.py:108
+#: frappe/core/doctype/page/page.py:110
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47
msgid "Deletion of this document is only permitted in developer mode."
msgstr ""
-#: public/js/frappe/views/reports/report_utils.js:276
+#. Label of the delimiter_options (Data) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Delimiter Options"
+msgstr ""
+
+#: frappe/utils/csvutils.py:76
+msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data."
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_utils.js:296
msgid "Delimiter must be a single character"
msgstr ""
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the delivery_status (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Delivery Status"
-msgstr "Verzendstatus"
-
-#: templates/includes/oauth_confirmation.html:14
-msgid "Deny"
msgstr ""
#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/templates/includes/oauth_confirmation.html:17
msgid "Deny"
msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the department (Data) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Department"
-msgstr "Afdeling"
+msgstr ""
-#. Label of a Data field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Label of the dependencies (Data) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:310
+#: frappe/www/attribution.html:29
msgid "Dependencies"
msgstr ""
-#. Label of a Code field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Depends On"
-msgstr "Hangt af van"
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
+msgid "Dependencies & Licenses"
+msgstr ""
-#. Label of a Code field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the depends_on (Code) field in DocType 'Custom Field'
+#. Label of the depends_on (Code) field in DocType 'Customize Form Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Depends On"
-msgstr "Hangt af van"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:32
+#: frappe/public/js/frappe/ui/filters/filter.js:32
msgid "Descendants Of"
-msgstr "Nakomelingen van"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:33
+#: frappe/public/js/frappe/ui/filters/filter.js:33
msgid "Descendants Of (inclusive)"
msgstr ""
-#: desk/report/todo/todo.py:39 public/js/frappe/form/reminders.js:44
+#. Label of the description (Small Text) field in DocType 'Assignment Rule'
+#. Label of the description (Small Text) field in DocType 'Reminder'
+#. Label of the description (Small Text) field in DocType 'DocField'
+#. Label of the description (Small Text) field in DocType 'DocType'
+#. Label of the description (Text) field in DocType 'Customize Form Field'
+#. Label of the description (Small Text) field in DocType 'Desktop Icon'
+#. Label of the description (Text Editor) field in DocType 'Event'
+#. Label of the description (HTML Editor) field in DocType 'Form Tour Step'
+#. Label of the description_section (Section Break) field in DocType
+#. 'Onboarding Step'
+#. Label of the description (Markdown Editor) field in DocType 'Onboarding
+#. Step'
+#. Label of the description (Small Text) field in DocType 'Tag'
+#. Label of the description (Text Editor) field in DocType 'ToDo'
+#. Label of the description (HTML Editor) field in DocType 'Workspace Link'
+#. Label of the description (Small Text) field in DocType 'Print Heading'
+#. Label of the description (Small Text) field in DocType 'Blog Category'
+#. Label of the description (Small Text) field in DocType 'UTM Medium'
+#. Label of the description (Small Text) field in DocType 'UTM Source'
+#. Label of the description (Text) field in DocType 'Web Form Field'
+#. Label of the meta_description (Small Text) field in DocType 'Web Page'
+#. Label of the description (Text) field in DocType 'Website Slideshow Item'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/todo/todo.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/report/todo/todo.py:39
+#: frappe/printing/doctype/print_heading/print_heading.json
+#: frappe/public/js/frappe/form/reminders.js:44
+#: frappe/public/js/frappe/widgets/widget_dialog.js:256
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
+#: frappe/www/attribution.html:24
msgid "Description"
-msgstr "Beschrijving"
-
-#. Label of a Small Text field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Description"
-msgstr "Beschrijving"
-
-#. Label of a Small Text field in DocType 'Blog Category'
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
-msgid "Description"
-msgstr "Beschrijving"
-
-#. Label of a Text field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Description"
-msgstr "Beschrijving"
-
-#. Label of a Small Text field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Description"
-msgstr "Beschrijving"
-
-#. Label of a Small Text field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Description"
-msgstr "Beschrijving"
-
-#. Label of a Small Text field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Description"
-msgstr "Beschrijving"
-
-#. Label of a Text Editor field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Description"
-msgstr "Beschrijving"
-
-#. Label of a HTML Editor field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Description"
-msgstr "Beschrijving"
-
-#. Label of a Section Break field in DocType 'Onboarding Step'
-#. Label of a Markdown Editor field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Description"
-msgstr "Beschrijving"
-
-#. Label of a Small Text field in DocType 'Print Heading'
-#: printing/doctype/print_heading/print_heading.json
-msgctxt "Print Heading"
-msgid "Description"
-msgstr "Beschrijving"
-
-#. Label of a Small Text field in DocType 'Reminder'
-#: automation/doctype/reminder/reminder.json
-msgctxt "Reminder"
-msgid "Description"
-msgstr "Beschrijving"
-
-#. Label of a Small Text field in DocType 'Tag'
-#: desk/doctype/tag/tag.json
-msgctxt "Tag"
-msgid "Description"
-msgstr "Beschrijving"
-
-#. Label of a Text Editor field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Description"
-msgstr "Beschrijving"
-
-#. Label of a Text field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Description"
-msgstr "Beschrijving"
-
-#. Label of a Small Text field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Description"
-msgstr "Beschrijving"
-
-#. Label of a Text field in DocType 'Website Slideshow Item'
-#: website/doctype/website_slideshow_item/website_slideshow_item.json
-msgctxt "Website Slideshow Item"
-msgid "Description"
-msgstr "Beschrijving"
+msgstr ""
#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)"
-msgstr "Beschrijving voor lijstpagina, in platte tekst, slechts een paar regels. (max 200 karakters)"
+msgstr ""
#. Description of the 'Description' (Section Break) field in DocType
#. 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Description to inform the user about any action that is going to be performed"
msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the designation (Data) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Designation"
-msgstr "Benaming"
+msgstr ""
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the desk_access (Check) field in DocType 'Role'
+#: frappe/core/doctype/role/role.json
msgid "Desk Access"
-msgstr "Desk Access"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the desk_settings_section (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Desk Settings"
msgstr ""
-#. Label of a Select field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the desk_theme (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Desk Theme"
msgstr ""
#. Name of a role
-#: automation/doctype/reminder/reminder.json core/doctype/report/report.json
-#: core/doctype/submission_queue/submission_queue.json
-#: core/doctype/user_group/user_group.json
-#: custom/doctype/doctype_layout/doctype_layout.json
-#: desk/doctype/calendar_view/calendar_view.json
-#: desk/doctype/custom_html_block/custom_html_block.json
-#: desk/doctype/dashboard/dashboard.json
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-#: desk/doctype/dashboard_settings/dashboard_settings.json
-#: desk/doctype/form_tour/form_tour.json
-#: desk/doctype/kanban_board/kanban_board.json
-#: desk/doctype/list_filter/list_filter.json
-#: desk/doctype/module_onboarding/module_onboarding.json
-#: desk/doctype/note/note.json desk/doctype/number_card/number_card.json
-#: desk/doctype/onboarding_step/onboarding_step.json
-#: email/doctype/document_follow/document_follow.json
-#: email/doctype/email_template/email_template.json
-#: integrations/doctype/google_calendar/google_calendar.json
-#: integrations/doctype/google_contacts/google_contacts.json
-#: printing/doctype/letter_head/letter_head.json
-#: printing/doctype/network_printer_settings/network_printer_settings.json
-#: printing/doctype/print_format/print_format.json
-#: social/doctype/energy_point_log/energy_point_log.json
-#: website/doctype/marketing_campaign/marketing_campaign.json
-#: workflow/doctype/workflow_action/workflow_action.json
-#: workflow/doctype/workflow_state/workflow_state.json
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_group/user_group.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
+#: frappe/desk/doctype/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/website/doctype/utm_campaign/utm_campaign.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Desk User"
msgstr ""
#. Name of a DocType
-#: desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Desktop Icon"
-msgstr "Bureaubladicoon"
+msgstr ""
-#: desk/doctype/desktop_icon/desktop_icon.py:230
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:225
msgid "Desktop Icon already exists"
-msgstr "Desktop-icoon bestaat al"
+msgstr ""
-#: public/js/form_builder/store.js:254 public/js/form_builder/utils.js:38
-#: public/js/frappe/form/layout.js:135 public/js/frappe/views/treeview.js:276
+#. Label of the details_tab (Tab Break) field in DocType 'Module Def'
+#. Label of the details (Code) field in DocType 'Scheduled Job Log'
+#. Label of the details_tab (Tab Break) field in DocType 'Customize Form'
+#. Label of the details (Section Break) field in DocType 'Event'
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/public/js/form_builder/components/Tabs.vue:92
+#: frappe/public/js/form_builder/store.js:259
+#: frappe/public/js/form_builder/utils.js:38
+#: frappe/public/js/frappe/form/layout.js:153
+#: frappe/public/js/frappe/views/treeview.js:292
msgid "Details"
-msgstr "Details"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Details"
-msgstr "Details"
+#. Label of the use_csv_sniffer (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Detect CSV type"
+msgstr ""
-#. Label of a Section Break field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Details"
-msgstr "Details"
-
-#. Label of a Code field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
-msgid "Details"
-msgstr "Details"
-
-#: core/page/permission_manager/permission_manager.js:477
+#: frappe/core/page/permission_manager/permission_manager.js:494
msgid "Did not add"
-msgstr "Niet toegevoegd"
+msgstr ""
-#: core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:388
msgid "Did not remove"
-msgstr "Niet verwijderd"
+msgstr ""
-#: public/js/frappe/utils/diffview.js:56
+#: frappe/public/js/frappe/utils/diffview.js:57
msgid "Diff"
msgstr ""
#. Description of the 'States' (Section Break) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Different \"States\" this document can exist in. Like \"Open\", \"Pending Approval\" etc."
-msgstr "Verschillende \"stadia\" waar dit document uit kan bestaan, bijvoorbeeld \"Open\", \"In afwachting van goedkeuring\", enz."
+msgstr ""
-#. Label of a Int field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#. Label of the prefix_digits (Int) field in DocType 'Document Naming Rule'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Digits"
-msgstr "Cijfers"
+msgstr ""
-#. Label of a Select field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_directory_server (Select) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Directory Server"
msgstr ""
-#. Label of a Check field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
+#. Label of the disable_auto_refresh (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Auto Refresh"
-msgstr "Schakel Auto Refresh uit"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the disable_automatic_recency_filters (Check) field in DocType
+#. 'List View Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Disable Automatic Recency Filters"
+msgstr ""
+
+#. Label of the disable_change_log_notification (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Change Log Notification"
msgstr ""
-#. Label of a Check field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
+#. Label of the disable_comment_count (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Comment Count"
msgstr ""
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the disable_comments (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Disable Comments"
-msgstr "Schakel opmerkingen uit"
+msgstr ""
-#. Label of a Check field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
+#. Label of the disable_contact_us (Check) field in DocType 'Contact Us
+#. Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Disable Contact Us Page"
+msgstr ""
+
+#. Label of the disable_count (Check) field in DocType 'List View Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Count"
-msgstr "Schakel graaf uit"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the disable_document_sharing (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Document Sharing"
msgstr ""
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the disable_likes (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Disable Likes"
msgstr ""
-#: core/doctype/report/report.js:36
+#: frappe/core/doctype/report/report.js:39
msgid "Disable Report"
-msgstr "Uitschakelen Report"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the no_smtp_authentication (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Disable SMTP server authentication"
-msgstr "SMTP-serververificatie uitschakelen"
+msgstr ""
-#. Label of a Check field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
+#. Label of the disable_sidebar_stats (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Sidebar Stats"
-msgstr "Schakel zijbalkstatistieken uit"
+msgstr ""
-#: website/doctype/website_settings/website_settings.js:146
+#: frappe/website/doctype/website_settings/website_settings.js:146
msgid "Disable Signup for your site"
-msgstr "Schakel Aanmelden voor uw site uit"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the disable_standard_email_footer (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Standard Email Footer"
-msgstr "Uitschakelen Standard Email Footer"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the disable_system_update_notification (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable System Update Notification"
msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the disable_user_pass_login (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Username/Password Login"
msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the disable_signup (Check) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Disable signups"
msgstr ""
-#: core/doctype/user/user_list.js:14 public/js/frappe/model/indicator.js:108
-#: public/js/frappe/model/indicator.js:115
-msgid "Disabled"
-msgstr "Uitgeschakeld"
-
-#. Label of a Check field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Disabled"
-msgstr "Uitgeschakeld"
-
-#. Label of a Check field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Disabled"
-msgstr "Uitgeschakeld"
-
-#. Label of a Check field in DocType 'Auto Repeat'
+#. Label of the disabled (Check) field in DocType 'Assignment Rule'
+#. Label of the disabled (Check) field in DocType 'Auto Repeat'
#. Option for the 'Status' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the disabled (Check) field in DocType 'Milestone Tracker'
+#. Label of the disabled (Check) field in DocType 'Address'
+#. Label of the disabled (Check) field in DocType 'Document Naming Rule'
+#. Label of the disabled (Check) field in DocType 'Report'
+#. Label of the disabled (Check) field in DocType 'Role'
+#. Label of the disabled (Check) field in DocType 'Server Script'
+#. Label of the disabled (Check) field in DocType 'Letter Head'
+#. Label of the disabled (Check) field in DocType 'Print Format'
+#. Label of the disabled (Check) field in DocType 'Print Style'
+#. Label of the disabled (Check) field in DocType 'Blogger'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/doctype/user/user_list.js:14
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/public/js/frappe/form/templates/address_list.html:35
+#: frappe/public/js/frappe/model/indicator.js:108
+#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
-msgstr "Uitgeschakeld"
+msgstr ""
-#. Label of a Check field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
-msgid "Disabled"
-msgstr "Uitgeschakeld"
-
-#. Label of a Check field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
-msgid "Disabled"
-msgstr "Uitgeschakeld"
-
-#. Label of a Check field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
-msgid "Disabled"
-msgstr "Uitgeschakeld"
-
-#. Label of a Check field in DocType 'Milestone Tracker'
-#: automation/doctype/milestone_tracker/milestone_tracker.json
-msgctxt "Milestone Tracker"
-msgid "Disabled"
-msgstr "Uitgeschakeld"
-
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Disabled"
-msgstr "Uitgeschakeld"
-
-#. Label of a Check field in DocType 'Print Style'
-#: printing/doctype/print_style/print_style.json
-msgctxt "Print Style"
-msgid "Disabled"
-msgstr "Uitgeschakeld"
-
-#. Label of a Check field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Disabled"
-msgstr "Uitgeschakeld"
-
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
-msgid "Disabled"
-msgstr "Uitgeschakeld"
-
-#. Label of a Check field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Disabled"
-msgstr "Uitgeschakeld"
-
-#: email/doctype/email_account/email_account.js:237
+#: frappe/email/doctype/email_account/email_account.js:300
msgid "Disabled Auto Reply"
-msgstr "Uitgeschakeld automatisch antwoord"
+msgstr ""
-#: public/js/frappe/views/communication.js:30
-#: public/js/frappe/views/dashboard/dashboard_view.js:70
-#: public/js/frappe/views/workspace/workspace.js:502
-#: public/js/frappe/web_form/web_form.js:187
-#: website/doctype/web_form/templates/web_form.html:41
+#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
+#: frappe/public/js/frappe/views/workspace/workspace.js:351
+#: frappe/public/js/frappe/web_form/web_form.js:187
msgid "Discard"
-msgstr "afdanken"
+msgstr ""
-#: public/js/frappe/web_form/web_form.js:184
+#: frappe/website/doctype/web_form/templates/web_form.html:44
+msgctxt "Button in web form"
+msgid "Discard"
+msgstr ""
+
+#: 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:184
msgid "Discard?"
msgstr ""
+#: frappe/desk/form/save.py:75
+msgid "Discarded"
+msgstr ""
+
+#. Description of the 'Suggested Indexes' (Table) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "Disclaimer: These indexes are suggested based on data and queries performed during this recording. These suggestions may or may not help."
+msgstr ""
+
#. Name of a DocType
-#: website/doctype/discussion_reply/discussion_reply.json
+#: frappe/website/doctype/discussion_reply/discussion_reply.json
msgid "Discussion Reply"
msgstr ""
#. Name of a DocType
-#: website/doctype/discussion_topic/discussion_topic.json
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
msgid "Discussion Topic"
msgstr ""
-#: templates/discussions/reply_card.html:16
+#: frappe/public/js/frappe/form/footer/form_timeline.js:638
+#: frappe/templates/discussions/reply_card.html:16
+#: frappe/templates/discussions/reply_section.html:29
msgid "Dismiss"
-msgstr "Afwijzen"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#: 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 "tonen"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Display"
-msgstr "tonen"
-
-#. Label of a Code field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the depends_on (Code) field in DocType 'Web Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Display Depends On"
-msgstr "Weergave is afhankelijk van"
+msgstr ""
-#. Label of a Code field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the depends_on (Code) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Display Depends On (JS)"
msgstr ""
-#. Label of a Check field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:180
+msgid "Divider"
+msgstr ""
+
+#. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Do Not Create New User "
msgstr ""
#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: public/js/frappe/form/grid.js:1156
+#: frappe/public/js/frappe/form/grid.js:1189
msgid "Do not edit headers which are preset in the template"
-msgstr "Bewerk geen kopteksten die vooraf zijn ingesteld in de sjabloon"
+msgstr ""
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:64
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:69
msgid "Do not have permission to access bucket {0}."
msgstr ""
-#: core/doctype/system_settings/system_settings.js:66
+#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
-#: public/js/frappe/form/form.js:977
+#: frappe/public/js/frappe/form/form.js:958
msgid "Do you want to cancel all linked documents?"
-msgstr "Wilt u alle gekoppelde documenten annuleren?"
+msgstr ""
-#. Label of a Select field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the webhook_docevent (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Doc Event"
-msgstr "Doc Event"
+msgstr ""
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the sb_doc_events (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Doc Events"
-msgstr "Doc Events"
+msgstr ""
-#. Label of a Select field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#. Label of the doc_status (Select) field in DocType 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Doc Status"
-msgstr "Doc Status"
+msgstr ""
#. Name of a DocType
-#: core/doctype/docfield/docfield.json
-msgid "DocField"
-msgstr "DocField"
-
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "DocField"
-msgstr "DocField"
+msgstr ""
#. Name of a DocType
-#: core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docperm/docperm.json
msgid "DocPerm"
-msgstr "DocPerm"
+msgstr ""
#. Name of a DocType
-#: core/doctype/docshare/docshare.json
+#: frappe/core/doctype/docshare/docshare.json
msgid "DocShare"
-msgstr "DocShare"
+msgstr ""
-#: workflow/doctype/workflow/workflow.js:264
-msgid ""
-"DocStatus of the following states have changed:
{0}
\n"
+#: frappe/workflow/doctype/workflow/workflow.js:264
+msgid "DocStatus of the following states have changed:
{0}
\n"
"\t\t\t\tDo you want to update the docstatus of existing documents in those states?
\n"
"\t\t\t\tThis does not undo any effect bought in by the document's existing docstatus.\n"
"\t\t\t\t"
msgstr ""
+#. Label of the document_type (Link) field in DocType 'Amended Document Naming
+#. Settings'
+#. Label of the doctype_name (Link) field in DocType 'Audit Trail'
#. Name of a DocType
-#: core/doctype/data_export/exporter.py:26 core/doctype/doctype/doctype.json
-#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:15
-#: website/doctype/website_slideshow/website_slideshow.js:18
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Amended Document Naming Settings'
-#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
-msgctxt "Amended Document Naming Settings"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link in the Build Workspace
-#. Label of a shortcut in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "DocType"
-msgid "DocType"
-msgstr "DocType"
-
#. Group in Module Def's connections
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Permission Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
-msgid "DocType"
-msgstr "Doctype"
-
-#. Label of a Link field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "DocType"
-msgstr "DocType"
-
+#. Label of the ref_doctype (Link) field in DocType 'Permission Inspector'
+#. Label of the ref_doctype (Link) field in DocType 'Version'
+#. Label of a shortcut in the Build Workspace
+#. Label of the dt (Link) field in DocType 'Client Script'
+#. Label of the dt (Link) field in DocType 'Custom Field'
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
-#. Label of a Link field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Version'
-#: core/doctype/version/version.json
-msgctxt "Version"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "DocType"
-msgstr "DocType"
-
+#. Label of the doc_type (Link) field in DocType 'Property Setter'
+#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Workspace Quick List'
-#: desk/doctype/workspace_quick_list/workspace_quick_list.json
-msgctxt "Workspace Quick List"
-msgid "DocType"
-msgstr "DocType"
-
+#. Label of the document_type (Link) field in DocType 'Workspace Quick List'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
+#. Label of the doc_type (Link) field in DocType 'Print Format'
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/data_export/exporter.py:26
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/core/doctype/version/version.json
+#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:15
+#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:38
+#: frappe/core/workspace/build/build.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:164
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:18
msgid "DocType"
-msgstr "DocType"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1528
+#: frappe/core/doctype/doctype/doctype.py:1577
msgid "DocType {0} provided for the field {1} must have atleast one Link field"
-msgstr "DocType {0} moet voor het veld {1} minimaal één Link-veld bevatten"
+msgstr ""
#. Name of a DocType
-#: core/doctype/doctype_action/doctype_action.json
-msgid "DocType Action"
-msgstr "DocType-actie"
-
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "DocType Action"
-msgstr "DocType-actie"
+msgstr ""
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
-#. Label of a Select field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the doctype_event (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "DocType Event"
-msgstr "DocType-evenement"
+msgstr ""
#. Name of a DocType
-#: custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
msgid "DocType Layout"
msgstr ""
#. Name of a DocType
-#: custom/doctype/doctype_layout_field/doctype_layout_field.json
+#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
msgid "DocType Layout Field"
msgstr ""
#. Name of a DocType
-#: core/doctype/doctype_link/doctype_link.json
-msgid "DocType Link"
-msgstr "DocType Link"
-
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/core/doctype/doctype_link/doctype_link.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "DocType Link"
-msgstr "DocType Link"
-
-#: core/doctype/doctype/doctype_list.js:10
-msgid "DocType Name"
msgstr ""
#. Name of a DocType
-#: core/doctype/doctype_state/doctype_state.json
-msgid "DocType State"
-msgstr ""
-
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "DocType State"
msgstr ""
-#. Label of a Select field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#. Label of the doc_view (Select) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:466
msgid "DocType View"
-msgstr "DocType-weergave"
+msgstr ""
-#: core/doctype/doctype/doctype.py:646
+#: frappe/core/doctype/doctype/doctype.py:656
msgid "DocType can not be merged"
-msgstr "DocType kan niet worden samengevoegd"
+msgstr ""
-#: core/doctype/doctype/doctype.py:640
+#: frappe/core/doctype/doctype/doctype.py:650
msgid "DocType can only be renamed by Administrator"
-msgstr "DocType kan alleen worden hernoemd door Administrator"
+msgstr ""
-#: integrations/doctype/webhook/webhook.py:79
+#. Description of a DocType
+#: frappe/core/doctype/doctype/doctype.json
+msgid "DocType is a Table / Form in the application."
+msgstr ""
+
+#: frappe/integrations/doctype/webhook/webhook.py:79
msgid "DocType must be Submittable for the selected Doc Event"
-msgstr "DocType moet Submitterbaar zijn voor het geselecteerde Doc Event"
+msgstr ""
-#: client.py:421
+#: frappe/client.py:403
msgid "DocType must be a string"
msgstr ""
-#: public/js/form_builder/store.js:149
+#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr ""
-#: core/doctype/log_settings/log_settings.py:57
+#: frappe/core/doctype/log_settings/log_settings.py:57
msgid "DocType not supported by Log Settings."
msgstr ""
#. Description of the 'Document Type' (Link) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "DocType on which this Workflow is applicable."
-msgstr "DocType waarop deze Workflow van toepassing is."
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_settings.js:4
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:4
msgid "DocType required"
msgstr ""
-#: modules/utils.py:161
+#: frappe/modules/utils.py:175
msgid "DocType {0} does not exist."
msgstr ""
-#: modules/utils.py:224
+#: frappe/modules/utils.py:238
msgid "DocType {} not found"
msgstr ""
-#: core/doctype/doctype/doctype.py:1009
+#: frappe/core/doctype/doctype/doctype.py:1028
msgid "DocType's name should not start or end with whitespace"
-msgstr "De naam van DocType mag niet beginnen of eindigen met spaties"
-
-#: core/doctype/doctype/doctype.js:70
-msgid "DocTypes can not be modified, please use {0} instead"
msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:645
-msgid "Doctype"
-msgstr "Doctype"
+#: frappe/core/doctype/doctype/doctype.js:67
+msgid "DocTypes cannot be modified, please use {0} instead"
+msgstr ""
-#. Label of a Link field in DocType 'Document Follow'
-#: email/doctype/document_follow/document_follow.json
-msgctxt "Document Follow"
+#. 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:669
msgid "Doctype"
-msgstr "Doctype"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1004
+#: frappe/core/doctype/doctype/doctype.py:1022
msgid "Doctype name is limited to {0} characters ({1})"
msgstr ""
-#: public/js/frappe/list/bulk_operations.js:3
+#: frappe/public/js/frappe/list/bulk_operations.js:3
msgid "Doctype required"
-msgstr "Doctype vereist"
-
-#: public/js/frappe/views/workspace/workspace.js:1303
-msgid "Doctype with same route already exist. Please choose different title."
msgstr ""
-#. Label of a Dynamic Link field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
-msgid "Document"
-msgstr "Document"
-
+#. 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'
-#: core/doctype/doctype/doctype.json
-msgctxt "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 "Document"
+msgstr ""
-#. Label of a Data field in DocType 'Milestone'
-#: automation/doctype/milestone/milestone.json
-msgctxt "Milestone"
-msgid "Document"
-msgstr "Document"
-
-#. Label of a Link field in DocType 'Notification Subscribed Document'
-#: desk/doctype/notification_subscribed_document/notification_subscribed_document.json
-msgctxt "Notification Subscribed Document"
-msgid "Document"
-msgstr "Document"
-
-#. Label of a Dynamic Link field in DocType 'Permission Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
-msgid "Document"
-msgstr "Document"
-
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the actions (Table) field in DocType 'DocType'
+#. Label of the document_actions_section (Section Break) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Document Actions"
-msgstr "Documentacties"
+msgstr ""
+#. Label of the document_follow_notifications_section (Section Break) field in
+#. DocType 'User'
#. Name of a DocType
-#: email/doctype/document_follow/document_follow.json
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/document_follow/document_follow.json
msgid "Document Follow"
-msgstr "Document volgen"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Document Follow"
-msgstr "Document volgen"
-
-#: desk/form/document_follow.py:84
+#: frappe/desk/form/document_follow.py:94
msgid "Document Follow Notification"
-msgstr "Document Volg melding"
+msgstr ""
-#. Label of a Data field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#. Label of the document_name (Data) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Document Link"
-msgstr "Documentlink"
+msgstr ""
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the section_break_12 (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Document Linking"
msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the links (Table) field in DocType 'DocType'
+#. Label of the document_links_section (Section Break) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Document Links"
-msgstr "Documentkoppelingen"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1162
+#: frappe/core/doctype/doctype/doctype.py:1211
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr ""
-#: core/doctype/doctype/doctype.py:1182
+#: frappe/core/doctype/doctype/doctype.py:1231
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr ""
-#: core/doctype/doctype/doctype.py:1145
+#: frappe/core/doctype/doctype/doctype.py:1194
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr ""
-#: core/doctype/doctype/doctype.py:1151
+#: frappe/core/doctype/doctype/doctype.py:1200
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:36
-#: public/js/frappe/form/form_tour.js:58
+#. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder'
+#. Label of the share_name (Dynamic Link) field in DocType 'DocShare'
+#. Label of the document_name (Data) field in DocType 'Transaction Log'
+#. Label of the docname (Data) field in DocType 'Version'
+#. Label of the document_name (Dynamic Link) field in DocType 'Tag Link'
+#. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow'
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:36
+#: frappe/core/doctype/version/version.json
+#: frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/public/js/frappe/form/form_tour.js:62
msgid "Document Name"
-msgstr "Documentnaam"
+msgstr ""
-#. Label of a Dynamic Link field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "Document Name"
-msgstr "Documentnaam"
-
-#. Label of a Dynamic Link field in DocType 'Document Follow'
-#: email/doctype/document_follow/document_follow.json
-msgctxt "Document Follow"
-msgid "Document Name"
-msgstr "Documentnaam"
-
-#. Label of a Dynamic Link field in DocType 'Reminder'
-#: automation/doctype/reminder/reminder.json
-msgctxt "Reminder"
-msgid "Document Name"
-msgstr "Documentnaam"
-
-#. Label of a Dynamic Link field in DocType 'Tag Link'
-#: desk/doctype/tag_link/tag_link.json
-msgctxt "Tag Link"
-msgid "Document Name"
-msgstr "Documentnaam"
-
-#. Label of a Data field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Document Name"
-msgstr "Documentnaam"
-
-#. Label of a Data field in DocType 'Version'
-#: core/doctype/version/version.json
-msgctxt "Version"
-msgid "Document Name"
-msgstr "Documentnaam"
-
-#: client.py:424
+#: frappe/client.py:406
msgid "Document Name must be a string"
msgstr ""
#. Name of a DocType
-#: core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Document Naming Rule"
-msgstr "Regel voor de naamgeving van documenten"
+msgstr ""
#. Name of a DocType
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "Document Naming Rule Condition"
-msgstr "Voorwaarde voor regel voor naamgeving van documenten"
+msgstr ""
#. Name of a DocType
-#: core/doctype/document_naming_settings/document_naming_settings.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Document Naming Settings"
msgstr ""
-#: model/document.py:1519
+#: frappe/model/document.py:477
msgid "Document Queued"
-msgstr "document wachtrij"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document_list.js:38
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:38
msgid "Document Restoration Summary"
-msgstr "Samenvatting van documentherstel"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document.py:67
+#: frappe/core/doctype/deleted_document/deleted_document.py:68
msgid "Document Restored"
-msgstr "Document hersteld"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:359
-#: public/js/frappe/widgets/onboarding_widget.js:401
-#: public/js/frappe/widgets/onboarding_widget.js:420
-#: public/js/frappe/widgets/onboarding_widget.js:439
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:354
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:396
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:415
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:434
msgid "Document Saved"
msgstr ""
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#. Label of the enable_email_share (Check) field in DocType 'Notification
+#. Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Document Share"
-msgstr "Document delen"
+msgstr ""
#. Name of a DocType
-#: core/doctype/document_share_key/document_share_key.json
+#: frappe/core/doctype/document_share_key/document_share_key.json
msgid "Document Share Key"
msgstr ""
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the document_share_key_expiry (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Document Share Key Expiry (in Days)"
msgstr ""
#. Name of a report
#. Label of a Link in the Users Workspace
-#: core/report/document_share_report/document_share_report.json
-#: core/workspace/users/users.json
+#: frappe/core/report/document_share_report/document_share_report.json
+#: frappe/core/workspace/users/users.json
msgid "Document Share Report"
-msgstr "Document Delen Report"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the states (Table) field in DocType 'DocType'
+#. Label of the document_states_section (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the states (Table) field in DocType 'Workflow'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document States"
-msgstr "Document Staten"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Document States"
-msgstr "Document Staten"
-
-#. Label of a Table field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
-msgid "Document States"
-msgstr "Document Staten"
-
-#: model/__init__.py:152 model/meta.py:47 public/js/frappe/model/meta.js:199
-#: public/js/frappe/model/model.js:127
+#: frappe/model/meta.py:52 frappe/public/js/frappe/model/meta.js:202
+#: frappe/public/js/frappe/model/model.js:137
msgid "Document Status"
-msgstr "Document Status"
+msgstr ""
-#. Label of a Link field in DocType 'Tag Link'
-#: desk/doctype/tag_link/tag_link.json
-msgctxt "Tag Link"
+#. Label of the tag (Link) field in DocType 'Tag Link'
+#: frappe/desk/doctype/tag_link/tag_link.json
msgid "Document Tag"
-msgstr "Document-tag"
+msgstr ""
-#. Label of a Data field in DocType 'Tag Link'
-#: desk/doctype/tag_link/tag_link.json
-msgctxt "Tag Link"
+#. Label of the title (Data) field in DocType 'Tag Link'
+#: frappe/desk/doctype/tag_link/tag_link.json
msgid "Document Title"
-msgstr "Document titel"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:26
-#: core/page/permission_manager/permission_manager.js:49
-#: core/page/permission_manager/permission_manager.js:211
-#: core/page/permission_manager/permission_manager.js:432
-msgid "Document Type"
-msgstr "Soort document"
-
-#. Label of a Link field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Document Type"
-msgstr "Soort document"
-
-#. Label of a Link field in DocType 'Bulk Update'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
-msgid "Document Type"
-msgstr "Soort document"
-
-#. Label of a Link field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Document Type"
-msgstr "Soort document"
-
-#. Label of a Link field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Document Type"
-msgstr "Soort document"
-
-#. Label of a Link field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "Document Type"
-msgstr "Soort document"
-
-#. Label of a Link field in DocType 'DocType Layout'
-#: custom/doctype/doctype_layout/doctype_layout.json
-msgctxt "DocType Layout"
-msgid "Document Type"
-msgstr "Soort document"
-
-#. Label of a Link field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
-msgid "Document Type"
-msgstr "Soort document"
-
-#. Label of a Link field in DocType 'Global Search DocType'
-#: desk/doctype/global_search_doctype/global_search_doctype.json
-msgctxt "Global Search DocType"
-msgid "Document Type"
-msgstr "Soort document"
-
-#. Label of a Link field in DocType 'Milestone'
-#: automation/doctype/milestone/milestone.json
-msgctxt "Milestone"
-msgid "Document Type"
-msgstr "Soort document"
-
-#. Label of a Link field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Document Type"
-msgstr "Soort document"
-
-#. Label of a Link field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "Document Type"
-msgstr "Soort document"
-
-#. Label of a Link field in DocType 'Number Card'
+#. Label of the document_type (Link) field in DocType 'Assignment Rule'
+#. Label of the reference_type (Link) field in DocType 'Milestone'
+#. Label of the reminder_doctype (Link) field in DocType 'Reminder'
+#. Label of the reference_doctype (Link) field in DocType 'Data Import'
+#. Label of the share_doctype (Link) field in DocType 'DocShare'
+#. Label of the document_type (Link) field in DocType 'Document Naming Rule'
+#. Label of the ref_doctype (Link) field in DocType 'Session Default'
+#. Label of the document_type (Link) field in DocType 'User Document Type'
+#. Label of the document_type (Link) field in DocType 'User Select Document
+#. Type'
+#. Label of the document_type (Link) field in DocType 'DocType Layout'
+#. Label of the document_type (Link) field in DocType 'Bulk Update'
+#. Label of the document_type (Link) field in DocType 'Dashboard Chart'
+#. Label of the document_type (Link) field in DocType 'Global Search DocType'
+#. Label of the document_type (Link) field in DocType 'Notification Log'
+#. Label of the document_type (Link) field in DocType 'Number Card'
#. Option for the 'Type' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#. Label of the document_type (Link) field in DocType 'Tag Link'
+#. Label of the document_type (Link) field in DocType 'Notification'
+#. Label of the document_type (Link) field in DocType 'Print Format Field
+#. Template'
+#. Label of the document_type (Data) field in DocType 'Personal Data Deletion
+#. Step'
+#. Label of the document_type (Link) field in DocType 'Workflow'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/session_default/session_default.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:26
+#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
+#: frappe/core/page/permission_manager/permission_manager.js:49
+#: frappe/core/page/permission_manager/permission_manager.js:218
+#: frappe/core/page/permission_manager/permission_manager.js:449
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
-msgstr "Soort document"
+msgstr ""
-#. Label of a Data field in DocType 'Personal Data Deletion Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
-msgid "Document Type"
-msgstr "Soort document"
-
-#. Label of a Link field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
-msgid "Document Type"
-msgstr "Soort document"
-
-#. Label of a Link field in DocType 'Reminder'
-#: automation/doctype/reminder/reminder.json
-msgctxt "Reminder"
-msgid "Document Type"
-msgstr "Soort document"
-
-#. Label of a Link field in DocType 'Session Default'
-#: core/doctype/session_default/session_default.json
-msgctxt "Session Default"
-msgid "Document Type"
-msgstr "Soort document"
-
-#. Label of a Link field in DocType 'Tag Link'
-#: desk/doctype/tag_link/tag_link.json
-msgctxt "Tag Link"
-msgid "Document Type"
-msgstr "Soort document"
-
-#. Label of a Link field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Document Type"
-msgstr "Soort document"
-
-#. Label of a Link field in DocType 'User Select Document Type'
-#: core/doctype/user_select_document_type/user_select_document_type.json
-msgctxt "User Select Document Type"
-msgid "Document Type"
-msgstr "Soort document"
-
-#. Label of a Link field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
-msgid "Document Type"
-msgstr "Soort document"
-
-#: desk/doctype/number_card/number_card.py:55
+#: frappe/desk/doctype/number_card/number_card.py:59
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: permissions.py:149
+#: frappe/permissions.py:148
msgid "Document Type is not importable"
-msgstr "Documenttype kan niet worden geïmporteerd"
+msgstr ""
-#: permissions.py:145
+#: frappe/permissions.py:144
msgid "Document Type is not submittable"
-msgstr "Documenttype kan niet worden ingediend"
+msgstr ""
-#. Label of a Link field in DocType 'Milestone Tracker'
-#: automation/doctype/milestone_tracker/milestone_tracker.json
-msgctxt "Milestone Tracker"
+#. Label of the document_type (Link) field in DocType 'Milestone Tracker'
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Document Type to Track"
-msgstr "Te volgen documenttype"
+msgstr ""
-#: desk/doctype/global_search_settings/global_search_settings.py:39
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:40
msgid "Document Type {0} has been repeated."
-msgstr "Documenttype {0} is herhaald."
+msgstr ""
-#. Label of a Table field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the user_doctypes (Table) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "Document Types"
-msgstr "Document Types"
+msgstr ""
-#. Label of a Table field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the select_doctypes (Table) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "Document Types (Select Permissions Only)"
msgstr ""
-#. Label of a Section Break field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the section_break_2 (Section Break) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "Document Types and Permissions"
msgstr ""
-#: core/doctype/submission_queue/submission_queue.py:162
+#: frappe/core/doctype/submission_queue/submission_queue.py:163
+#: frappe/model/document.py:1943
msgid "Document Unlocked"
msgstr ""
-#: public/js/frappe/list/list_view.js:1054
+#: frappe/desk/form/document_follow.py:56
+msgid "Document follow is not enabled for this user."
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1157
msgid "Document has been cancelled"
msgstr ""
-#: public/js/frappe/list/list_view.js:1053
+#: frappe/public/js/frappe/list/list_view.js:1156
msgid "Document has been submitted"
msgstr ""
-#: public/js/frappe/list/list_view.js:1052
+#: frappe/public/js/frappe/list/list_view.js:1155
msgid "Document is in draft state"
msgstr ""
-#: core/doctype/communication/communication.js:182
+#: frappe/public/js/frappe/form/workflow.js:45
+msgid "Document is only editable by users with role"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:182
msgid "Document not Relinked"
msgstr ""
-#: model/rename_doc.py:230 public/js/frappe/form/toolbar.js:145
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:155
msgid "Document renamed from {0} to {1}"
-msgstr "Document hernoemd van {0} tot {1}"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:154
+#: frappe/public/js/frappe/form/toolbar.js:164
msgid "Document renaming from {0} to {1} has been queued"
msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.py:397
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:397
msgid "Document type is required to create a dashboard chart"
-msgstr "Documenttype is vereist om een dashboarddiagram te maken"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document.py:44
+#: frappe/core/doctype/deleted_document/deleted_document.py:45
msgid "Document {0} Already Restored"
-msgstr "Document {0} is al hersteld"
+msgstr ""
-#: workflow/doctype/workflow_action/workflow_action.py:203
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:203
msgid "Document {0} has been set to state {1} by {2}"
-msgstr "Document {0} is ingesteld op staat {1} op {2}"
+msgstr ""
-#: client.py:443
+#: frappe/client.py:430
msgid "Document {0} {1} does not exist"
msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the documentation (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
-msgstr "Documentatielink"
+msgstr ""
-#. Label of a Data field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the documentation_url (Data) field in DocType 'DocField'
+#. Label of the documentation_url (Data) field in DocType 'Module Onboarding'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Documentation URL"
-msgstr "Documentatie-URL"
+msgstr ""
-#. Label of a Data field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Documentation URL"
-msgstr "Documentatie-URL"
+#: frappe/public/js/frappe/form/templates/form_dashboard.html:17
+msgid "Documents"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document_list.js:25
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:25
msgid "Documents restored successfully"
-msgstr "Documenten zijn hersteld"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document_list.js:33
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:33
msgid "Documents that failed to restore"
-msgstr "Documenten die niet kunnen worden hersteld"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document_list.js:29
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:29
msgid "Documents that were already restored"
-msgstr "Documenten die al zijn hersteld"
+msgstr ""
#. Name of a DocType
-#: core/doctype/domain/domain.json
+#. Label of the domain (Data) field in DocType 'Domain'
+#. Label of the domain (Link) field in DocType 'Has Domain'
+#. Label of the domain (Link) field in DocType 'Email Account'
+#: frappe/core/doctype/domain/domain.json
+#: frappe/core/doctype/has_domain/has_domain.json
+#: frappe/email/doctype/email_account/email_account.json
msgid "Domain"
-msgstr "Domein"
+msgstr ""
-#. Label of a Data field in DocType 'Domain'
-#: core/doctype/domain/domain.json
-msgctxt "Domain"
-msgid "Domain"
-msgstr "Domein"
-
-#. Label of a Link field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Domain"
-msgstr "Domein"
-
-#. Label of a Link field in DocType 'Has Domain'
-#: core/doctype/has_domain/has_domain.json
-msgctxt "Has Domain"
-msgid "Domain"
-msgstr "Domein"
-
-#. Label of a Data field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#. Label of the domain_name (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Domain Name"
msgstr ""
#. Name of a DocType
-#: core/doctype/domain_settings/domain_settings.json
+#: frappe/core/doctype/domain_settings/domain_settings.json
msgid "Domain Settings"
-msgstr "Domeininstellingen"
+msgstr ""
-#. Label of a HTML field in DocType 'Domain Settings'
-#: core/doctype/domain_settings/domain_settings.json
-msgctxt "Domain Settings"
+#. Label of the domains_html (HTML) field in DocType 'Domain Settings'
+#: frappe/core/doctype/domain_settings/domain_settings.json
msgid "Domains HTML"
-msgstr "Domeinen HTML"
+msgstr ""
#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom
#. Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
-msgstr "Doe geen HTML coderen HTML-tags zoals <script> of gewoon tekens zoals <en>, omdat ze bewust kunnen worden gebruikt in dit gebied"
+msgstr ""
-#: public/js/frappe/data_import/import_preview.js:268
+#: frappe/public/js/frappe/data_import/import_preview.js:272
msgid "Don't Import"
-msgstr "Niet importeren"
+msgstr ""
-#. Label of a Check field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the override_status (Check) field in DocType 'Workflow'
+#. Label of the avoid_status_override (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow/workflow.json
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Don't Override Status"
-msgstr "Niet overschrijven Status"
+msgstr ""
-#. Label of a Check field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
-msgid "Don't Override Status"
-msgstr "Niet overschrijven Status"
-
-#. Label of a Check field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the mute_emails (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Don't Send Emails"
-msgstr "Stuur geen e-mails"
-
-#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize
-#. Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
msgstr ""
#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize
+#. Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
msgstr ""
-#: www/login.html:119 www/login.html:135 www/update-password.html:34
+#: frappe/www/login.html:139 frappe/www/login.html:155
+#: frappe/www/update-password.html:57
msgid "Don't have an account?"
msgstr ""
-#: public/js/frappe/ui/messages.js:233
-#: public/js/onboarding_tours/onboarding_tours.js:17
+#: frappe/public/js/frappe/form/form_tour.js:16
+#: frappe/public/js/frappe/ui/messages.js:238
+#: frappe/public/js/onboarding_tours/onboarding_tours.js:17
+#: frappe/public/js/print_format_builder/HTMLEditor.vue:5
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52
msgid "Done"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Donut"
-msgstr "Donut"
+msgstr ""
-#: core/doctype/file/file.js:5
-#: email/doctype/auto_email_report/auto_email_report.js:8
+#: frappe/public/js/form_builder/components/EditableInput.vue:43
+msgid "Double click to edit label"
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:15
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
+#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
-msgstr "Downloaden"
+msgstr ""
-#: public/js/frappe/views/reports/report_utils.js:229
+#: frappe/public/js/frappe/views/reports/report_utils.js:237
msgctxt "Export report"
msgid "Download"
-msgstr "Downloaden"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json desk/page/backups/backups.js:4
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/page/backups/backups.js:4
msgid "Download Backups"
-msgstr "Download Backups"
+msgstr ""
-#: templates/emails/download_data.html:6
+#: frappe/templates/emails/download_data.html:6
msgid "Download Data"
-msgstr "Gegevens downloaden"
+msgstr ""
-#: desk/page/backups/backups.js:12
+#: frappe/desk/page/backups/backups.js:14
msgid "Download Files Backup"
-msgstr "Bestanden Backup downloaden"
+msgstr ""
-#: templates/emails/download_data.html:9
+#: frappe/templates/emails/download_data.html:9
msgid "Download Link"
-msgstr "Download link"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:764
+#: frappe/public/js/frappe/list/bulk_operations.js:134
+msgid "Download PDF"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:835
msgid "Download Report"
-msgstr "Rapport downloaden"
+msgstr ""
-#. Label of a Button field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the download_template (Button) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Download Template"
-msgstr "Download Template"
+msgstr ""
-#: website/doctype/personal_data_download_request/personal_data_download_request.py:60
-#: website/doctype/personal_data_download_request/personal_data_download_request.py:68
-#: website/doctype/personal_data_download_request/test_personal_data_download_request.py:50
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:61
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:69
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:57
msgid "Download Your Data"
-msgstr "Download uw gegevens"
+msgstr ""
-#: public/js/frappe/model/indicator.js:73
-#: public/js/frappe/ui/filters/filter.js:493
+#: frappe/core/doctype/prepared_report/prepared_report.js:49
+msgid "Download as CSV"
+msgstr ""
+
+#: frappe/contacts/doctype/contact/contact.js:98
+msgid "Download vCard"
+msgstr ""
+
+#: frappe/contacts/doctype/contact/contact_list.js:4
+msgid "Download vCards"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:46
+msgid "Dr"
+msgstr ""
+
+#: frappe/public/js/frappe/model/indicator.js:73
+#: frappe/public/js/frappe/ui/filters/filter.js:538
msgid "Draft"
-msgstr "Droogte"
+msgstr ""
-#: public/js/frappe/views/workspace/blocks/header.js:46
-#: public/js/frappe/views/workspace/blocks/paragraph.js:136
-#: public/js/frappe/views/workspace/blocks/spacer.js:44
-#: public/js/frappe/views/workspace/workspace.js:565
-#: public/js/frappe/widgets/base_widget.js:33
+#: frappe/public/js/frappe/views/workspace/blocks/header.js:46
+#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:136
+#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:44
+#: frappe/public/js/frappe/widgets/base_widget.js:33
msgid "Drag"
msgstr ""
-#. Label of a Password field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Dropbox Access Token"
-msgstr "Dropbox Access Token"
+#: frappe/public/js/form_builder/components/Tabs.vue:189
+msgid "Drag & Drop a section here from another tab"
+msgstr ""
-#. Label of a Password field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
+#: 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:172
+msgid "Drop files here"
+msgstr ""
+
+#. Label of the dropbox_access_token (Password) field in DocType 'Dropbox
+#. Settings'
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
+msgid "Dropbox Access Token"
+msgstr ""
+
+#. Label of the dropbox_refresh_token (Password) field in DocType 'Dropbox
+#. Settings'
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
msgid "Dropbox Refresh Token"
msgstr ""
#. Name of a DocType
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Settings"
-msgstr "Dropbox-instellingen"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Dropbox Settings"
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Dropbox Settings"
-msgstr "Dropbox-instellingen"
+msgstr ""
-#: integrations/doctype/dropbox_settings/dropbox_settings.py:348
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:347
msgid "Dropbox Setup"
-msgstr "Dropbox Setup"
+msgstr ""
-#. Label of a Section Break field in DocType 'Navbar Settings'
-#: core/doctype/navbar_settings/navbar_settings.json
-msgctxt "Navbar Settings"
+#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
+#. Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Dropdowns"
-msgstr "Dropdown-menu's"
+msgstr ""
-#. Label of a Date field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#. Label of the date (Date) field in DocType 'ToDo'
+#: frappe/desk/doctype/todo/todo.json
msgid "Due Date"
-msgstr "Vervaldatum"
+msgstr ""
-#. Label of a Select field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the due_date_based_on (Select) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Due Date Based On"
-msgstr "Vervaldatum op basis van"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:377
-#: public/js/frappe/views/workspace/workspace.js:808
-#: public/js/frappe/views/workspace/workspace.js:975
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+#: frappe/public/js/frappe/form/toolbar.js:419
msgid "Duplicate"
-msgstr "Dupliceer"
+msgstr ""
-#: printing/doctype/print_format_field_template/print_format_field_template.py:52
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:53
msgid "Duplicate Entry"
msgstr ""
-#: public/js/frappe/list/list_filter.js:137
+#: frappe/public/js/frappe/list/list_filter.js:144
msgid "Duplicate Filter Name"
-msgstr "Dubbele filternaam"
-
-#: model/base_document.py:563 model/rename_doc.py:113
-msgid "Duplicate Name"
-msgstr "Dubbele naam"
-
-#: public/js/frappe/views/workspace/workspace.js:547
-#: public/js/frappe/views/workspace/workspace.js:809
-msgid "Duplicate Workspace"
msgstr ""
-#: public/js/frappe/form/form.js:208
+#: frappe/model/base_document.py:666 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 ""
-#: public/js/frappe/views/workspace/workspace.js:990
-msgid "Duplicate of {0} named as {1} is created successfully"
+#: frappe/public/js/form_builder/components/Field.vue:245
+msgid "Duplicate field"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Duration"
-msgstr "Looptijd"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Duration"
-msgstr "Looptijd"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Duration"
-msgstr "Looptijd"
-
-#. Label of a Float field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "Duration"
-msgstr "Looptijd"
-
-#. Label of a Float field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
-msgid "Duration"
-msgstr "Looptijd"
-
+#. Label of the duration (Float) field in DocType 'Recorder'
+#. Label of the duration (Float) field in DocType 'Recorder Query'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Duration"
-msgstr "Looptijd"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/core/doctype/recorder_query/recorder_query.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Duration"
-msgstr "Looptijd"
-
-#. Label of a Section Break field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Dynamic Filters"
-msgstr "Dynamische filters"
-
-#. Label of a Code field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Dynamic Filters JSON"
-msgstr "Dynamische filters JSON"
-
-#. Label of a Code field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Dynamic Filters JSON"
-msgstr "Dynamische filters JSON"
-
-#. Label of a Section Break field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Dynamic Filters Section"
-msgstr "Dynamische filters sectie"
-
-#. Name of a DocType
-#: core/doctype/dynamic_link/dynamic_link.json
-msgid "Dynamic Link"
-msgstr "Dynamische Link"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Dynamic Link"
-msgstr "Dynamische Link"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Dynamic Link"
-msgstr "Dynamische Link"
-
-#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Dynamic Link"
-msgstr "Dynamische Link"
-
-#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Dynamic Link"
-msgstr "Dynamische Link"
-
-#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Dynamic Link"
-msgstr "Dynamische Link"
-
-#. Label of a Section Break field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Dynamic Report Filters"
-msgstr "Dynamische rapportfilters"
-
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Dynamic Route"
-msgstr "dynamische route"
-
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Dynamic Template"
-msgstr "Dynamische sjabloon"
-
-#. Description of the Onboarding Step 'Setup Naming Series'
-#: custom/onboarding_step/naming_series/naming_series.json
-msgid "Each document created in ERPNext can have a unique ID generated for it, using a prefix defined for it. Though each document has some prefix pre-configured, you can further customize it using tools like Naming Series Tool and Document Naming Rule.\n"
msgstr ""
-#: core/page/dashboard_view/dashboard_view.js:169
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:46
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:85
-#: public/js/frappe/form/controls/markdown_editor.js:31
-#: public/js/frappe/form/footer/form_timeline.js:638
-#: public/js/frappe/form/toolbar.js:672
-#: public/js/frappe/views/reports/query_report.js:809
-#: public/js/frappe/views/reports/query_report.js:1617
-#: public/js/frappe/views/workspace/workspace.js:448
-#: public/js/frappe/views/workspace/workspace.js:802
-#: public/js/frappe/widgets/base_widget.js:64
-#: public/js/frappe/widgets/chart_widget.js:298
-#: public/js/frappe/widgets/number_card_widget.js:314
-#: templates/discussions/reply_card.html:29
-#: workflow/page/workflow_builder/workflow_builder.js:46
-#: workflow/page/workflow_builder/workflow_builder.js:84
-msgid "Edit"
-msgstr "Bewerk"
+#. Option for the 'Row Format' (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Dynamic"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1943
-msgctxt "Button in list view actions menu"
-msgid "Edit"
-msgstr "Bewerk"
+#. 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'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/page/dashboard_view/dashboard_view.js:169
+#: frappe/printing/page/print_format_builder/print_format_builder_start.html:8
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85
+#: frappe/public/js/frappe/form/controls/markdown_editor.js:31
+#: frappe/public/js/frappe/form/footer/form_timeline.js:668
+#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/templates/address_list.html:13
+#: frappe/public/js/frappe/form/templates/contact_list.html:13
+#: frappe/public/js/frappe/form/toolbar.js:745
+#: frappe/public/js/frappe/views/reports/query_report.js:883
+#: frappe/public/js/frappe/views/reports/query_report.js:1722
+#: frappe/public/js/frappe/views/workspace/workspace.js:64
+#: frappe/public/js/frappe/widgets/base_widget.js:64
+#: frappe/public/js/frappe/widgets/chart_widget.js:299
+#: frappe/public/js/frappe/widgets/number_card_widget.js:347
+#: frappe/templates/discussions/reply_card.html:29
+#: frappe/templates/discussions/reply_section.html:29
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:84
msgid "Edit"
-msgstr "Bewerk"
+msgstr ""
-#: templates/emails/auto_email_report.html:63
+#: frappe/public/js/frappe/list/list_view.js:2113
+msgctxt "Button in list view actions menu"
+msgid "Edit"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:23
+msgctxt "Button in web form"
+msgid "Edit"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:345
+msgctxt "Edit grid row"
+msgid "Edit"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:66
+msgid "Edit Address in Form"
+msgstr ""
+
+#: frappe/templates/emails/auto_email_report.html:63
msgid "Edit Auto Email Report Settings"
-msgstr "Bewerk instellingen voor automatische e-mailberichten"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:719
+#: frappe/public/js/frappe/widgets/widget_dialog.js:38
+msgid "Edit Chart"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:50
+msgid "Edit Custom Block"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:727
msgid "Edit Custom HTML"
-msgstr "Bewerken maatwerk HTML"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:546
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "Edit DocType"
-msgstr "bewerken DocType"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1691
+#: frappe/public/js/frappe/list/list_view.js:1829
msgctxt "Button in list view menu"
msgid "Edit DocType"
-msgstr "bewerken DocType"
+msgstr ""
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:42
-#: workflow/page/workflow_builder/workflow_builder.js:42
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:42
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:42
msgid "Edit Existing"
msgstr ""
-#: printing/doctype/print_format/print_format.js:28
-msgid "Edit Format"
-msgstr "Bewerken Formaat"
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:55
+msgid "Edit Filters"
+msgstr ""
-#: public/js/frappe/form/quick_entry.js:275
+#: frappe/public/js/print_format_builder/PrintFormat.vue:29
+msgid "Edit Footer"
+msgstr ""
+
+#: frappe/printing/doctype/print_format/print_format.js:28
+msgid "Edit Format"
+msgstr ""
+
+#: frappe/public/js/frappe/form/quick_entry.js:326
msgid "Edit Full Form"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:602
-msgid "Edit Heading"
-msgstr "Bewerken Koptekst"
+#: 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 ""
-#: public/js/print_format_builder/print_format_builder.bundle.js:24
+#: 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 ""
-#: desk/page/user_profile/user_profile_controller.js:273 www/me.html:27
+#: frappe/www/me.html:38
msgid "Edit Profile"
-msgstr "Bewerk profiel"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:173
+#: frappe/printing/page/print_format_builder/print_format_builder.js:173
msgid "Edit Properties"
-msgstr "Eigenschappen bewerken"
-
-#: website/doctype/web_form/templates/web_form.html:20
-msgid "Edit Response"
msgstr ""
-#: public/js/frappe/utils/web_template.js:5
-msgid "Edit Values"
-msgstr "Waarden bewerken"
-
-#. Label of a Button field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
-msgid "Edit Values"
-msgstr "Waarden bewerken"
-
-#. Label of a Button field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Edit Values"
-msgstr "Waarden bewerken"
-
-#: public/js/frappe/views/workspace/workspace.js:803
-msgid "Edit Workspace"
+#: frappe/public/js/frappe/widgets/widget_dialog.js:48
+msgid "Edit Quick List"
msgstr ""
-#: desk/doctype/note/note.js:11
+#: frappe/public/js/frappe/widgets/widget_dialog.js:40
+msgid "Edit Shortcut"
+msgstr ""
+
+#. Label of the edit_values (Button) field in DocType 'Web Page Block'
+#. Label of the edit_navbar_template_values (Button) field in DocType 'Website
+#. Settings'
+#. Label of the edit_footer_template_values (Button) field in DocType 'Website
+#. Settings'
+#: frappe/public/js/frappe/utils/web_template.js:5
+#: frappe/website/doctype/web_page_block/web_page_block.json
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Edit Values"
+msgstr ""
+
+#: frappe/desk/doctype/note/note.js:11
msgid "Edit mode"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:713
-msgid "Edit to add content"
-msgstr "Bewerken om inhoud toe te voegen"
+#: frappe/public/js/form_builder/components/Field.vue:254
+msgid "Edit the {0} Doctype"
+msgstr ""
-#: workflow/doctype/workflow/workflow.js:18
+#: 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:446
+msgctxt "Button in web form"
+msgid "Edit your response"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.js:18
msgid "Edit your workflow visually using the Workflow Builder."
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:652
+#: frappe/public/js/frappe/views/reports/report_view.js:672
+#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
-msgstr "Bewerk {0}"
+msgstr ""
-#: core/doctype/doctype/doctype_list.js:41
+#. Label of the editable_grid (Check) field in DocType 'DocType'
+#. Label of the editable_grid (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
-msgstr "bewerkbare Grid"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Editable Grid"
-msgstr "bewerkbare Grid"
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Editing Row"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Editable Grid"
-msgstr "bewerkbare Grid"
-
-#: public/js/print_format_builder/print_format_builder.bundle.js:14
-#: public/js/workflow_builder/workflow_builder.bundle.js:20
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:14
+#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:20
msgid "Editing {0}"
msgstr ""
#. Description of the 'SMS Gateway URL' (Small Text) field in DocType 'SMS
#. Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Eg. smsgateway.com/api/send_sms.cgi"
-msgstr "Bijv. smsgateway.com / api / send_sms.cgi"
+msgstr ""
-#: rate_limiter.py:139
+#: frappe/rate_limiter.py:152
msgid "Either key or IP flag is required."
msgstr ""
-#. Label of a Data field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the element_selector (Data) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Element Selector"
msgstr ""
#. Label of a Card Break in the Tools Workspace
-#: automation/workspace/tools/tools.json
-#: core/doctype/success_action/success_action.js:57
-#: email/doctype/newsletter/newsletter.js:156
-#: public/js/frappe/form/success_action.js:85
-#: public/js/frappe/form/toolbar.js:341
-#: templates/includes/comments/comments.html:25 templates/signup.html:9
-#: www/login.html:7 www/login.py:93
-msgid "Email"
-msgstr "E-mail"
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Email"
-msgstr "E-mail"
-
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Email"
-msgstr "E-mail"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Email"
-msgstr "E-mail"
-
-#. Label of a Data field in DocType 'Email Group Member'
-#: email/doctype/email_group_member/email_group_member.json
-msgctxt "Email Group Member"
-msgid "Email"
-msgstr "E-mail"
-
-#. Label of a Data field in DocType 'Email Unsubscribe'
-#: email/doctype/email_unsubscribe/email_unsubscribe.json
-msgctxt "Email Unsubscribe"
-msgid "Email"
-msgstr "E-mail"
-
-#. Label of a Data field in DocType 'Event Participants'
-#: desk/doctype/event_participants/event_participants.json
-msgctxt "Event Participants"
-msgid "Email"
-msgstr "E-mail"
-
-#. Option for the 'Channel' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Email"
-msgstr "E-mail"
-
-#. Label of a Data field in DocType 'Personal Data Deletion Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
-msgid "Email"
-msgstr "E-mail"
-
+#. Label of the email (Check) field in DocType 'Custom DocPerm'
+#. Label of the email (Check) field in DocType 'DocPerm'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the email_tab (Tab Break) field in DocType 'System Settings'
+#. Label of the email (Data) field in DocType 'User'
+#. Label of the email_settings (Section Break) field in DocType 'User'
+#. Label of the email (Check) field in DocType 'User Document Type'
+#. Label of the email (Data) field in DocType 'Event Participants'
+#. Label of the email (Data) field in DocType 'Email Group Member'
+#. Label of the email (Data) field in DocType 'Email Unsubscribe'
+#. Option for the 'Channel' (Select) field in DocType 'Notification'
+#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/success_action/success_action.js:59
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/email/doctype/newsletter/newsletter.js:156
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/success_action.js:85
+#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/templates/includes/comments/comments.html:25
+#: frappe/templates/signup.html:9
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
-msgstr "E-mail"
-
-#. Label of a Data field in DocType 'User'
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Email"
-msgstr "E-mail"
-
-#. Name of a DocType
-#: core/doctype/communication/communication.js:199
-#: email/doctype/email_account/email_account.json
-msgid "Email Account"
-msgstr "E-mail account"
-
-#. Label of a Link field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Email Account"
-msgstr "E-mail account"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Email Account"
+#. Label of the email_account (Link) field in DocType 'Communication'
+#. Label of the email_account (Link) field in DocType 'User Email'
+#. Name of a DocType
+#. Label of the email_account (Data) field in DocType 'Email Flag Queue'
+#. Label of the email_account (Link) field in DocType 'Email Queue'
+#. Label of the email_account (Link) field in DocType 'Unhandled Email'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/communication/communication.js:199
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/user_email/user_email.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Email Account"
-msgstr "E-mail account"
+msgstr ""
-#. Linked DocType in Email Domain's connections
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Email Account"
-msgstr "E-mail account"
-
-#. Label of a Data field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
-msgid "Email Account"
-msgstr "E-mail account"
-
-#. Label of a Link field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Email Account"
-msgstr "E-mail account"
-
-#. Label of a Link field in DocType 'Unhandled Email'
-#: email/doctype/unhandled_email/unhandled_email.json
-msgctxt "Unhandled Email"
-msgid "Email Account"
-msgstr "E-mail account"
-
-#. Label of a Link field in DocType 'User Email'
-#: core/doctype/user_email/user_email.json
-msgctxt "User Email"
-msgid "Email Account"
-msgstr "E-mail account"
-
-#: email/doctype/email_account/email_account.py:298
+#: frappe/email/doctype/email_account/email_account.py:343
msgid "Email Account Disabled."
msgstr ""
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the email_account_name (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Email Account Name"
-msgstr "E-mail Account Naam"
+msgstr ""
-#: core/doctype/user/user.py:697
+#: frappe/core/doctype/user/user.py:736
msgid "Email Account added multiple times"
-msgstr "E-mail account meerdere keren toegevoegd"
+msgstr ""
-#: email/smtp.py:42
+#: frappe/email/smtp.py:43
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:470 www/complete_signup.html:11
-#: www/login.html:164 www/login.html:196
-msgid "Email Address"
-msgstr "E-mailadres"
+#: frappe/email/doctype/email_account/email_account.py:578
+msgid "Email Account {0} Disabled"
+msgstr ""
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. 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 "E-mailadres"
-
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Email Address"
-msgstr "E-mailadres"
-
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Email Address"
-msgstr "E-mailadres"
-
-#. Label of a Data field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
-msgid "Email Address"
-msgstr "E-mailadres"
+msgstr ""
#. Description of the 'Email Address' (Data) field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Email Address whose Google Contacts are to be synced."
-msgstr "E-mailadres waarvan Google-contacten moeten worden gesynchroniseerd."
+msgstr ""
-#: email/doctype/email_group/email_group.js:43
+#: frappe/email/doctype/email_group/email_group.js:43
msgid "Email Addresses"
-msgstr "E-mailadressen"
-
-#. Description of the 'Send Notification to' (Small Text) field in DocType
-#. 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Email Addresses"
-msgstr "E-mailadressen"
-
-#. Name of a DocType
-#: email/doctype/email_domain/email_domain.json
-msgid "Email Domain"
-msgstr "email Domain"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Email Domain"
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Email Domain"
-msgstr "email Domain"
+msgstr ""
#. Name of a DocType
-#: email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
msgid "Email Flag Queue"
-msgstr "E-mail Flag Queue"
+msgstr ""
-#. Label of a Small Text field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the email_footer_address (Small Text) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Email Footer Address"
-msgstr "Email Footer Adres"
-
-#. Name of a DocType
-#: email/doctype/email_group/email_group.json
-msgid "Email Group"
-msgstr "E-mail Group"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Email Group"
+#. Name of a DocType
+#. Label of the email_group (Link) field in DocType 'Email Group Member'
+#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/email/doctype/email_group/email_group.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
+#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
-msgstr "E-mail Group"
-
-#. Label of a Link field in DocType 'Email Group Member'
-#: email/doctype/email_group_member/email_group_member.json
-msgctxt "Email Group Member"
-msgid "Email Group"
-msgstr "E-mail Group"
-
-#. Label of a Link field in DocType 'Newsletter Email Group'
-#: email/doctype/newsletter_email_group/newsletter_email_group.json
-msgctxt "Newsletter Email Group"
-msgid "Email Group"
-msgstr "E-mail Group"
+msgstr ""
#. Name of a DocType
-#: email/doctype/email_group_member/email_group_member.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
msgid "Email Group Member"
-msgstr "E-mail Groepslid"
+msgstr ""
-#. Linked DocType in Email Group's connections
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
-msgid "Email Group Member"
-msgstr "E-mail Groepslid"
+#. Label of the email_header (Data) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
+msgid "Email Header"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Email'
-#: contacts/doctype/contact_email/contact_email.json
-msgctxt "Contact Email"
+#. Label of the email_id (Data) field in DocType 'Contact Email'
+#. Label of the email_id (Data) field in DocType 'User Email'
+#. Label of the email_id (Data) field in DocType 'Email Rule'
+#: frappe/contacts/doctype/contact/contact.py:131
+#: frappe/contacts/doctype/contact_email/contact_email.json
+#: frappe/core/doctype/user_email/user_email.json
+#: frappe/email/doctype/email_rule/email_rule.json
msgid "Email ID"
-msgstr "E-mail identiteit"
+msgstr ""
-#. Label of a Data field in DocType 'Email Rule'
-#: email/doctype/email_rule/email_rule.json
-msgctxt "Email Rule"
-msgid "Email ID"
-msgstr "E-mail identiteit"
-
-#. Label of a Data field in DocType 'User Email'
-#: core/doctype/user_email/user_email.json
-msgctxt "User Email"
-msgid "Email ID"
-msgstr "E-mail identiteit"
-
-#. Label of a Table field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the email_ids (Table) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Email IDs"
-msgstr "E-mail Ids"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
-msgstr "E-mail-ID"
+msgstr ""
-#. Label of a Section Break field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the email_inbox (Section Break) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Email Inbox"
-msgstr "Email Inbox"
+msgstr ""
#. Name of a DocType
-#: email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Email Queue"
-msgstr "E-mail Queue"
+msgstr ""
#. Name of a DocType
-#: email/doctype/email_queue_recipient/email_queue_recipient.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
msgid "Email Queue Recipient"
-msgstr "E-mail wachtrij Ontvanger"
+msgstr ""
-#: email/queue.py:163
+#: frappe/email/queue.py:160
msgid "Email Queue flushing aborted due to too many failures."
msgstr ""
-#. Label of a HTML field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
-msgid "Email Reply Help"
-msgstr "Email Reply Help"
+#. Description of a DocType
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Email Queue records."
+msgstr ""
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the email_reply_help (HTML) field in DocType 'Email Template'
+#: frappe/email/doctype/email_template/email_template.json
+msgid "Email Reply Help"
+msgstr ""
+
+#. Label of the email_retry_limit (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Email Retry Limit"
msgstr ""
#. Name of a DocType
-#: email/doctype/email_rule/email_rule.json
+#: frappe/email/doctype/email_rule/email_rule.json
msgid "Email Rule"
-msgstr "E-mail Rule"
+msgstr ""
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the email_sent (Check) field in DocType 'Newsletter'
+#. Label of the email_sent (Check) field in DocType 'Blog Post'
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
-msgstr "E-mail verzonden"
+msgstr ""
-#. Label of a Check field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Email Sent"
-msgstr "E-mail verzonden"
-
-#. Label of a Datetime field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Email Sent At"
msgstr ""
-#. Label of a Section Break field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
+#. Label of the email_settings_section (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the column_break_3 (Section Break) field in DocType 'Notification
+#. Settings'
+#. Label of the email_settings (Section Break) field in DocType 'Auto Email
+#. Report'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Email Settings"
-msgstr "E-mail Instellingen"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Email Settings"
-msgstr "E-mail Instellingen"
-
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Email Settings"
-msgstr "E-mail Instellingen"
-
-#. Label of a Section Break field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "Email Settings"
-msgstr "E-mail Instellingen"
-
-#. Label of a Small Text field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the email_signature (Text Editor) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Email Signature"
-msgstr "E-mail Handtekening"
+msgstr ""
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the email_status (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Email Status"
-msgstr "E-mail Status"
+msgstr ""
-#. Label of a Select field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the email_sync_option (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Email Sync Option"
-msgstr "E-mail Sync Option"
-
-#. Name of a DocType
-#: email/doctype/email_template/email_template.json
-#: public/js/frappe/views/communication.js:91
-msgid "Email Template"
-msgstr "Email sjabloon"
-
-#. Label of a Link field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Email Template"
-msgstr "Email sjabloon"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Email Template"
+#. Label of the email_template (Link) field in DocType 'Communication'
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:104
msgid "Email Template"
-msgstr "Email sjabloon"
+msgstr ""
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#. Label of the enable_email_threads_on_assigned_document (Check) field in
+#. DocType 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Email Threads on Assigned Document"
msgstr ""
-#. Label of a Small Text field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the email_to (Small Text) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Email To"
-msgstr "Email naar"
+msgstr ""
#. Name of a DocType
-#: email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
msgid "Email Unsubscribe"
-msgstr "E-mail Afmelden"
+msgstr ""
-#: core/doctype/communication/communication.js:342
+#: frappe/core/doctype/communication/communication.js:342
msgid "Email has been marked as spam"
-msgstr "E-mail is gemarkeerd als spam"
+msgstr ""
-#: core/doctype/communication/communication.js:355
+#: frappe/core/doctype/communication/communication.js:355
msgid "Email has been moved to trash"
-msgstr "E-mail is verplaatst naar de prullenbak"
+msgstr ""
-#: public/js/frappe/views/communication.js:707
+#: frappe/core/doctype/user/user.js:272
+msgid "Email is mandatory to create User Email"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:816
msgid "Email not sent to {0} (unsubscribed / disabled)"
-msgstr "Geen e-mail verstuurd naar {0} (uitgeschreven / uitgeschakeld)"
+msgstr ""
-#: utils/oauth.py:163
+#: frappe/utils/oauth.py:163
msgid "Email not verified with {0}"
-msgstr "E-mail niet geverifieerd met {0}"
+msgstr ""
-#: email/queue.py:141
+#: frappe/email/doctype/email_queue/email_queue.js:19
+msgid "Email queue is currently suspended. Resume to automatically send other emails."
+msgstr ""
+
+#. Label of the section_break_udjs (Section Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Emails"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.js:216
+msgid "Emails Pulled"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:936
+msgid "Emails are already being pulled from this account."
+msgstr ""
+
+#: frappe/email/queue.py:137
msgid "Emails are muted"
-msgstr "E-mails zijn gedempt"
+msgstr ""
#. Description of the 'Send Email Alert' (Check) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Emails will be sent with next possible workflow actions"
-msgstr "E-mails worden verzonden met de volgende mogelijke workflow-acties"
+msgstr ""
-#. Label of a Check field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#: frappe/website/doctype/web_form/web_form.js:34
+msgid "Embed code copied"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:285
+msgid "Empty column"
+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 Drive'
+#. 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_drive/google_drive.json
+#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
-msgstr "in staat stellen"
+msgstr ""
-#. Label of a Check field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
-msgid "Enable"
-msgstr "in staat stellen"
+#. Label of the enable_address_autocompletion (Check) field in DocType
+#. 'Geolocation Settings'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "Enable Address Autocompletion"
+msgstr ""
-#. Label of a Check field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Enable"
-msgstr "in staat stellen"
-
-#. Label of a Check field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
-msgid "Enable"
-msgstr "in staat stellen"
-
-#: automation/doctype/auto_repeat/auto_repeat.py:116
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119
msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form"
-msgstr "Schakel Automatisch herhalen in voor doctype {0} in Aanpassen formulier"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the enable_auto_reply (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Enable Auto Reply"
-msgstr "Inschakelen Automatisch Antwoord"
+msgstr ""
-#. Label of a Check field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#. Label of the enabled (Check) field in DocType 'S3 Backup Settings'
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Enable Automatic Backup"
-msgstr "Schakel Automatische back-up in"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the enable_automatic_linking (Check) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Enable Automatic Linking in Documents"
-msgstr "Schakel automatisch koppelen in documenten in"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the enable_comments (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Enable Comments"
-msgstr "Inschakelen Reacties"
+msgstr ""
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
msgstr ""
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#. Label of the enable_email_notifications (Check) field in DocType
+#. 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Enable Email Notifications"
-msgstr "E-mailmeldingen inschakelen"
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:89
-#: integrations/doctype/google_contacts/google_contacts.py:35
-#: website/doctype/website_settings/website_settings.py:129
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:106
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:36
+#: frappe/website/doctype/website_settings/website_settings.py:129
msgid "Enable Google API in Google Settings."
-msgstr "Schakel Google API in Google Instellingen in."
+msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the enable_google_indexing (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Enable Google indexing"
msgstr ""
-#: email/doctype/email_account/email_account.py:194
+#. Label of the enable_incoming (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:225
msgid "Enable Incoming"
-msgstr "Inschakelen Binnenkomend"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Enable Incoming"
-msgstr "Inschakelen Binnenkomend"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the enable_onboarding (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Enable Onboarding"
-msgstr "Schakel onboarding in"
+msgstr ""
-#: email/doctype/email_account/email_account.py:201
+#. Label of the enable_outgoing (Check) field in DocType 'User Email'
+#. Label of the enable_outgoing (Check) field in DocType 'Email Account'
+#: frappe/core/doctype/user_email/user_email.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:233
msgid "Enable Outgoing"
-msgstr "Inschakelen Uitgaand"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Enable Outgoing"
-msgstr "Inschakelen Uitgaand"
-
-#. Label of a Check field in DocType 'User Email'
-#: core/doctype/user_email/user_email.json
-msgctxt "User Email"
-msgid "Enable Outgoing"
-msgstr "Inschakelen Uitgaand"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the enable_password_policy (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Enable Password Policy"
-msgstr "Wachtwoordbeleid inschakelen"
+msgstr ""
-#. Label of a Check field in DocType 'Role Permission for Page and Report'
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgctxt "Role Permission for Page and Report"
+#. Label of the enable_prepared_report (Check) field in DocType 'Role
+#. Permission for Page and Report'
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
msgid "Enable Prepared Report"
msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the enable_print_server (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Enable Print Server"
-msgstr "Schakel afdrukserver in"
+msgstr ""
-#. Label of a Check field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the enable_push_notification_relay (Check) field in DocType 'Push
+#. Notification Settings'
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "Enable Push Notification Relay"
+msgstr ""
+
+#. Label of the enable_rate_limit (Check) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Enable Rate Limit"
msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the enable_raw_printing (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Enable Raw Printing"
-msgstr "Schakel Raw Printing in"
+msgstr ""
-#: core/doctype/report/report.js:36
+#: frappe/core/doctype/report/report.js:39
msgid "Enable Report"
-msgstr "Inschakelen Rapport"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the enable_scheduler (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Enable Scheduled Jobs"
-msgstr "Inschakelen Geplande Jobs"
+msgstr ""
-#: core/doctype/rq_job/rq_job_list.js:23
+#: frappe/core/doctype/rq_job/rq_job_list.js:23
msgid "Enable Scheduler"
msgstr ""
-#. Label of a Check field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the enable_security (Check) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Enable Security"
-msgstr "Schakel beveiliging in"
-
-#. Label of a Check field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Enable Social Login"
-msgstr "Schakel sociale login in"
-
-#. Label of a Check field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
-msgid "Enable Social Sharing"
-msgstr "Schakel sociaal delen in"
-
-#: website/doctype/website_settings/website_settings.js:139
-msgid "Enable Tracking Page Views"
-msgstr "Schakel het bijhouden van paginaweergaven in"
-
-#: twofactor.py:456
-msgid "Enable Two Factor Auth"
-msgstr "Schakel twee factoren automatisch in"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Enable Two Factor Auth"
-msgstr "Schakel twee factoren automatisch in"
-
-#. Title of an Onboarding Step
-#: website/onboarding_step/enable_website_tracking/enable_website_tracking.json
-msgid "Enable Website Tracking"
msgstr ""
-#: printing/doctype/print_format_field_template/print_format_field_template.py:27
+#. 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 ""
+
+#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Enable Social Sharing"
+msgstr ""
+
+#: 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:433
+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 ""
-#: website/doctype/web_template/web_template.py:33
+#: frappe/website/doctype/web_template/web_template.py:33
msgid "Enable developer mode to create a standard Web Template"
-msgstr "Schakel de ontwikkelaarsmodus in om een standaard websjabloon te maken"
+msgstr ""
#. Description of the 'Enable Email Notification' (Check) field in DocType
#. 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable email notification for any comment or likes received on your Blog Post."
msgstr ""
#. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid ""
-"Enable if on click\n"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Enable if on click\n"
"opens modal."
msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the enable_view_tracking (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Enable in-app website tracking"
msgstr ""
-#: public/js/frappe/model/indicator.js:106
-#: public/js/frappe/model/indicator.js:117
+#. Label of the enabled (Check) field in DocType 'Language'
+#. Label of the enabled (Check) field in DocType 'User'
+#. Label of the enabled (Check) field in DocType 'Client Script'
+#. Label of the enabled (Check) field in DocType 'Notification Settings'
+#. Label of the enabled (Check) field in DocType 'Auto Email Report'
+#. Label of the enabled (Check) field in DocType 'Notification'
+#. Label of the enabled (Check) field in DocType 'Currency'
+#. Label of the enabled (Check) field in DocType 'Dropbox Settings'
+#. Label of the enabled (Check) field in DocType 'LDAP Settings'
+#. Label of the enabled (Check) field in DocType 'Webhook'
+#. Label of the enabled (Check) field in DocType 'Portal Menu Item'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/user/user.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/geo/doctype/currency/currency.json
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/public/js/frappe/model/indicator.js:106
+#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
-msgstr "Ingeschakeld"
+msgstr ""
-#. Label of a Check field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Enabled"
-msgstr "Ingeschakeld"
-
-#. Label of a Check field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
-msgid "Enabled"
-msgstr "Ingeschakeld"
-
-#. Label of a Check field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "Enabled"
-msgstr "Ingeschakeld"
-
-#. Label of a Check field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Enabled"
-msgstr "Ingeschakeld"
-
-#. Label of a Check field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Enabled"
-msgstr "Ingeschakeld"
-
-#. Label of a Check field in DocType 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Enabled"
-msgstr "Ingeschakeld"
-
-#. Label of a Check field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
-msgid "Enabled"
-msgstr "Ingeschakeld"
-
-#. Label of a Check field in DocType 'Language'
-#: core/doctype/language/language.json
-msgctxt "Language"
-msgid "Enabled"
-msgstr "Ingeschakeld"
-
-#. Label of a Check field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Enabled"
-msgstr "Ingeschakeld"
-
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "Enabled"
-msgstr "Ingeschakeld"
-
-#. Label of a Check field in DocType 'Portal Menu Item'
-#: website/doctype/portal_menu_item/portal_menu_item.json
-msgctxt "Portal Menu Item"
-msgid "Enabled"
-msgstr "Ingeschakeld"
-
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Enabled"
-msgstr "Ingeschakeld"
-
-#. Label of a Check field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Enabled"
-msgstr "Ingeschakeld"
-
-#: core/doctype/rq_job/rq_job_list.js:29
+#: frappe/core/doctype/rq_job/rq_job_list.js:29
msgid "Enabled Scheduler"
msgstr ""
-#: email/doctype/email_account/email_account.py:896
+#: frappe/email/doctype/email_account/email_account.py:1012
msgid "Enabled email inbox for user {0}"
-msgstr "Inbox voor e-mail ingeschakeld voor gebruiker {0}"
-
-#: core/doctype/server_script/server_script.py:262
-msgid "Enabled scheduled execution for script {0}"
-msgstr "Geplande uitvoering ingeschakeld voor script {0}"
-
-#. Description of the 'Is Calendar and Gantt' (Check) field in DocType
-#. 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Enables Calendar and Gantt views."
msgstr ""
#. Description of the 'Is Calendar and Gantt' (Check) field in DocType
#. 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Description of the 'Is Calendar and Gantt' (Check) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Enables Calendar and Gantt views."
msgstr ""
-#: email/doctype/email_account/email_account.js:232
+#: frappe/email/doctype/email_account/email_account.js:295
msgid "Enabling auto reply on an incoming email account will send automated replies to all the synchronized emails. Do you wish to continue?"
msgstr ""
-#. Description of the 'Queue in Background (BETA)' (Check) field in DocType
-#. 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Enabling this will submit documents in background"
+#. Description of a DocType
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved."
+msgstr ""
+
+#. Description of the 'Relay Settings' (Section Break) field in DocType 'Push
+#. Notification Settings'
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. "
msgstr ""
#. Description of the 'Queue in Background (BETA)' (Check) field in DocType
#. 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Description of the 'Queue in Background (BETA)' (Check) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Enabling this will submit documents in background"
msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the encrypt_backup (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Encrypt Backups"
msgstr ""
-#: utils/password.py:184
+#: frappe/utils/password.py:197
msgid "Encryption key is in invalid format!"
msgstr ""
-#: utils/password.py:198
+#: frappe/utils/password.py:212
msgid "Encryption key is invalid! Please check site_config.json"
msgstr ""
-#: public/js/frappe/utils/common.js:416
-msgid "End Date"
-msgstr "Einddatum"
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:51
+msgid "End"
+msgstr ""
-#. Label of a Date field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
+#. Label of the end_date (Date) field in DocType 'Auto Repeat'
+#. Label of the end_date (Date) field in DocType 'Audit Trail'
+#. Label of the end_date (Datetime) field in DocType 'Web Page'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/public/js/frappe/utils/common.js:416
+#: frappe/website/doctype/web_page/web_page.json
msgid "End Date"
-msgstr "Einddatum"
+msgstr ""
-#. Label of a Date field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "End Date"
-msgstr "Einddatum"
-
-#. Label of a Datetime field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "End Date"
-msgstr "Einddatum"
-
-#. Label of a Select field in DocType 'Calendar View'
-#: desk/doctype/calendar_view/calendar_view.json
-msgctxt "Calendar View"
+#. Label of the end_date_field (Select) field in DocType 'Calendar View'
+#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "End Date Field"
-msgstr "Einddatum veld"
+msgstr ""
-#: website/doctype/web_page/web_page.py:207
+#: frappe/website/doctype/web_page/web_page.py:208
msgid "End Date cannot be before Start Date!"
-msgstr "Einddatum kan niet vóór startdatum zijn!"
+msgstr ""
-#. Label of a Datetime field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the ended_at (Datetime) field in DocType 'RQ Job'
+#. Label of the ended_at (Datetime) field in DocType 'Submission Queue'
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Ended At"
msgstr ""
-#. Label of a Datetime field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
-msgid "Ended At"
-msgstr ""
-
-#. Label of a Data field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#. Label of the endpoint_url (Data) field in DocType 'S3 Backup Settings'
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Endpoint URL"
-msgstr "Eindpunt-URL"
+msgstr ""
-#. Label of a Section Break field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the sb_endpoints_section (Section Break) field in DocType
+#. 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Endpoints"
msgstr ""
-#. Label of a Datetime field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the ends_on (Datetime) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Ends on"
-msgstr "Eindigt op"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Energy Point"
-msgstr "Energiepunt"
+msgstr ""
-#. Name of a DocType
-#: social/doctype/energy_point_log/energy_point_log.json
-msgid "Energy Point Log"
-msgstr "Energiepuntlogboek"
-
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Energy Point Log"
-msgstr "Energiepuntlogboek"
-
-#. Name of a DocType
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgid "Energy Point Rule"
-msgstr "Energiepuntregel"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Energy Point Rule"
-msgstr "Energiepuntregel"
-
-#. Name of a DocType
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgid "Energy Point Settings"
-msgstr "Instellingen energiepunt"
-
-#: desk/doctype/notification_log/notification_log.py:159
-msgid "Energy Point Update on {0}"
-msgstr "Energiepuntupdate op {0}"
-
-#: templates/emails/energy_points_summary.html:39
-msgid "Energy Points"
-msgstr "Energiepunten"
-
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "Energy Points"
-msgstr "Energiepunten"
-
-#. Label of a Data field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
+#. Label of the enqueued_by (Data) field in DocType 'Submission Queue'
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Enqueued By"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:105
+#: frappe/core/doctype/recorder/recorder.py:125
+msgid "Enqueued creation of indexes"
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108
msgid "Ensure the user and group search paths are correct."
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:92
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:109
msgid "Enter Client Id and Client Secret in Google Settings."
-msgstr "Voer klant-ID en klantgeheim in Google-instellingen in."
+msgstr ""
-#: public/js/frappe/views/communication.js:663
+#: frappe/templates/includes/login/login.js:351
+msgid "Enter Code displayed in OTP App."
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:771
msgid "Enter Email Recipient(s)"
-msgstr "Voer E-mail ontvanger (s)"
+msgstr ""
-#. Label of a Link field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the doc_type (Link) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Enter Form Type"
-msgstr "Voer Form Type in"
+msgstr ""
-#: public/js/frappe/ui/messages.js:94
+#: frappe/public/js/frappe/ui/messages.js:94
msgctxt "Title of prompt dialog"
msgid "Enter Value"
-msgstr "Waarde invoeren"
+msgstr ""
-#: public/js/frappe/form/form_tour.js:56
+#: frappe/public/js/frappe/form/form_tour.js:60
msgid "Enter a name for this {0}"
msgstr ""
#. Description of the 'User Defaults' (Table) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Enter default value fields (keys) and values. If you add multiple values for a field, the first one will be picked. These defaults are also used to set \"match\" permission rules. To see list of fields, go to \"Customize Form\"."
-msgstr "Voer standaardwaarde velden (toetsen) en waarden. Als u meerdere waarden toe te voegen voor een veld, zal de eerste worden opgepikt. Deze standaardwaarden worden ook gebruikt om "match" toestemming regels te stellen. Om lijst met velden te zien, ga naar "Customize Form"."
+msgstr ""
-#: public/js/frappe/views/file/file_view.js:111
+#: frappe/public/js/frappe/views/file/file_view.js:111
msgid "Enter folder name"
-msgstr "Voer mapnaam"
+msgstr ""
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)"
-msgstr "Voer statische url parameters hier in (bijv. afzender=ERPNext, username = ERPNext, wachtwoord = 1234 enz.)"
+msgstr ""
#. Description of the 'Message Parameter' (Data) field in DocType 'SMS
#. Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Enter url parameter for message"
-msgstr "Voer URL-parameter voor bericht in"
+msgstr ""
#. Description of the 'Receiver Parameter' (Data) field in DocType 'SMS
#. Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Enter url parameter for receiver nos"
-msgstr "Voer URL-parameter voor de ontvanger nos"
+msgstr ""
-#: public/js/frappe/ui/messages.js:334
+#: frappe/public/js/frappe/ui/messages.js:341
msgid "Enter your password"
-msgstr "Voer uw wachtwoord in"
+msgstr ""
-#: contacts/report/addresses_and_contacts/addresses_and_contacts.js:22
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:22
msgid "Entity Name"
-msgstr "Entiteit Naam"
+msgstr ""
-#: contacts/report/addresses_and_contacts/addresses_and_contacts.js:9
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:9
msgid "Entity Type"
-msgstr "Type entiteit"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:16
+#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
-msgstr "Is gelijk aan"
-
-#: desk/page/backups/backups.js:35 model/base_document.py:703
-#: model/base_document.py:708 public/js/frappe/ui/messages.js:22
-msgid "Error"
-msgstr "Fout"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Error"
-msgstr "Fout"
-
#. Option for the 'Status' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Error"
-msgstr "Fout"
-
-#. Option for the 'Status' (Select) field in DocType 'Email Queue'
-#. Label of a Code field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Error"
-msgstr "Fout"
-
-#. Label of a Code field in DocType 'Email Queue Recipient'
-#: email/doctype/email_queue_recipient/email_queue_recipient.json
-msgctxt "Email Queue Recipient"
-msgid "Error"
-msgstr "Fout"
-
-#. Label of a Code field in DocType 'Error Log'
-#: core/doctype/error_log/error_log.json
-msgctxt "Error Log"
-msgid "Error"
-msgstr "Fout"
-
-#. Label of a Code field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Error"
-msgstr "Fout"
-
+#. Label of the error (Code) field in DocType 'Error Log'
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Option for the 'Status' (Select) field in DocType 'Email Queue'
+#. Label of the error (Code) field in DocType 'Email Queue'
+#. Label of the error (Code) field in DocType 'Email Queue Recipient'
+#. Label of the error (Code) field in DocType 'Integration Request'
+#. Label of the error (Text) field in DocType 'Webhook Request Log'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/desk/page/backups/backups.js:37
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/public/js/frappe/ui/messages.js:22
msgid "Error"
-msgstr "Fout"
+msgstr ""
-#: public/js/frappe/web_form/web_form.js:240
+#: frappe/public/js/frappe/web_form/web_form.js:240
msgctxt "Title of error message in web form"
msgid "Error"
-msgstr "Fout"
-
-#. Label of a Text field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "Error"
-msgstr "Fout"
-
-#: www/error.html:34
-msgid "Error Code: {0}"
-msgstr "Error Code: {0}"
+msgstr ""
#. Name of a DocType
-#: core/doctype/error_log/error_log.json
+#: frappe/core/doctype/error_log/error_log.json
msgid "Error Log"
-msgstr "Error log"
+msgstr ""
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Error Log"
+#: frappe/core/workspace/build/build.json
msgid "Error Logs"
msgstr ""
-#. Label of a Text field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
-msgstr "Foutmelding"
+msgstr ""
-#: public/js/frappe/form/print_utils.js:126
+#: frappe/public/js/frappe/form/print_utils.js:128
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
-msgstr "Fout bij verbinding maken met QZ-ladetoepassing ...
De toepassing QZ-lade moet zijn geïnstalleerd en actief zijn om de functie Raw Print te kunnen gebruiken.
Klik hier om de QZ-lade te downloaden en te installeren .
Klik hier voor meer informatie over Raw Printing ."
+msgstr ""
-#: email/doctype/email_domain/email_domain.py:32
+#: frappe/email/doctype/email_domain/email_domain.py:32
msgid "Error connecting via IMAP/POP3: {e}"
msgstr ""
-#: email/doctype/email_domain/email_domain.py:33
+#: frappe/email/doctype/email_domain/email_domain.py:33
msgid "Error connecting via SMTP: {e}"
msgstr ""
-#: email/doctype/email_domain/email_domain.py:98
+#: frappe/email/doctype/email_domain/email_domain.py:101
msgid "Error has occurred in {0}"
-msgstr "Er is een fout opgetreden in {0}"
+msgstr ""
-#: public/js/frappe/form/script_manager.js:187
+#: frappe/public/js/frappe/form/script_manager.js:199
msgid "Error in Client Script"
msgstr ""
-#: public/js/frappe/form/script_manager.js:241
+#: frappe/public/js/frappe/form/script_manager.js:256
msgid "Error in Client Script."
msgstr ""
-#: email/doctype/notification/notification.py:391
-#: email/doctype/notification/notification.py:507
-#: email/doctype/notification/notification.py:513
-msgid "Error in Notification"
-msgstr "Fout in melding"
+#: frappe/printing/doctype/letter_head/letter_head.js:21
+msgid "Error in Header/Footer Script"
+msgstr ""
-#: utils/pdf.py:48
+#: frappe/email/doctype/notification/notification.py:598
+#: frappe/email/doctype/notification/notification.py:735
+#: frappe/email/doctype/notification/notification.py:741
+msgid "Error in Notification"
+msgstr ""
+
+#: frappe/utils/pdf.py:59
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: email/doctype/email_account/email_account.py:586
+#: frappe/email/doctype/email_account/email_account.py:672
msgid "Error while connecting to email account {0}"
-msgstr "Fout bij het verbinden met e-mailaccount {0}"
+msgstr ""
-#: email/doctype/notification/notification.py:504
+#: frappe/email/doctype/notification/notification.py:732
msgid "Error while evaluating Notification {0}. Please fix your template."
-msgstr "Fout bij het evalueren van Melding {0}. Corrigeer uw sjabloon."
+msgstr ""
-#: model/document.py:808
-msgid "Error: Document has been modified after you have opened it"
-msgstr "Fout: Document is gewijzigd nadat u het hebt geopend"
+#: frappe/model/base_document.py:806
+msgid "Error: Data missing in table {0}"
+msgstr ""
-#: model/base_document.py:716
+#: frappe/model/base_document.py:816
msgid "Error: Value missing for {0}: {1}"
-msgstr "Fout: Waarde ontbreekt voor {0}: {1}"
+msgstr ""
-#. Name of a DocType
-#: desk/doctype/event/event.json
-msgid "Event"
-msgstr "Evenement"
+#: frappe/model/base_document.py:810
+msgid "Error: {0} Row #{1}: Value missing for: {2}"
+msgstr ""
+
+#. Label of the errors_generated_in_last_1_day_section (Section Break) field in
+#. DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Errors"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Event"
-msgstr "Evenement"
-
+#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/core/doctype/communication/communication.json
+#: frappe/desk/doctype/event/event.json
msgid "Event"
-msgstr "Evenement"
+msgstr ""
-#. Label of a Select field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the event_category (Select) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Event Category"
-msgstr "Evenement Categorie"
+msgstr ""
-#. Label of a Select field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the event_frequency (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Event Frequency"
msgstr ""
+#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
-#: desk/doctype/event_participants/event_participants.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
msgid "Event Participants"
-msgstr "Deelnemers aan het evenement"
+msgstr ""
-#. Label of a Table field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Event Participants"
-msgstr "Deelnemers aan het evenement"
-
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#. Label of the enable_email_event_reminders (Check) field in DocType
+#. 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Event Reminders"
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:455
-#: integrations/doctype/google_calendar/google_calendar.py:539
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:493
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:577
msgid "Event Synced with Google Calendar."
-msgstr "Evenement gesynchroniseerd met Google Agenda."
-
-#. Label of a Select field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Event Type"
-msgstr "Gebeurtenis Type"
-
-#. Label of a Data field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "Event Type"
-msgstr "Gebeurtenis Type"
-
-#: desk/doctype/event/event.py:263
-msgid "Events in Today's Calendar"
-msgstr "Gebeurtenissen Vandaag"
-
-#. Description of the Onboarding Step 'Create Custom Fields'
-#: custom/onboarding_step/custom_field/custom_field.json
-msgid ""
-"Every form in ERPNext has a standard set of fields. If you need to capture some information, but there is no standard Field available for it, you can insert Custom Field for it.\n"
-"\n"
-"Once custom fields are added, you can use them for reports and analytics charts as well.\n"
msgstr ""
-#. Label of a Check field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
+#. Label of the 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:274
+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 "Iedereen"
+msgstr ""
#. Description of the 'Custom Options' (Code) field in DocType 'Dashboard
#. Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"]"
-msgstr "Voorbeeld: "kleuren": ["# d1d8dd", "# ff5858"]"
+msgstr ""
-#. Label of a Int field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
+#. Label of the exact_copies (Int) field in DocType 'Recorder Query'
+#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Exact Copies"
msgstr ""
-#. Label of a HTML field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
+#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
-msgstr "Voorbeeld"
+msgstr ""
#. Description of the 'Default Portal Home' (Data) field in DocType 'Portal
#. Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Example: \"/desk\""
-msgstr "Voorbeeld: "/ desk""
+msgstr ""
#. Description of the 'Path' (Data) field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Example: #Tree/Account"
-msgstr "Voorbeeld: # Tree / Account"
+msgstr ""
#. Description of the 'Digits' (Int) field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Example: 00001"
-msgstr "Voorbeeld: 00001"
+msgstr ""
#. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours."
msgstr ""
#. Description of the 'Description' (Small Text) field in DocType 'Assignment
#. Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Example: {{ subject }}"
-msgstr "Voorbeeld: {{subject}}"
+msgstr ""
#. Option for the 'File Type' (Select) field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#: frappe/core/doctype/data_export/data_export.json
msgid "Excel"
-msgstr "uitmunten"
+msgstr ""
-#: public/js/frappe/form/controls/password.js:91
+#: frappe/public/js/frappe/form/controls/password.js:90
msgid "Excellent"
msgstr ""
-#. Label of a Text field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
+#. Label of the exception (Text) field in DocType 'Data Import Log'
+#. Label of the exc_info (Code) field in DocType 'RQ Job'
+#. Label of the exception (Long Text) field in DocType 'Submission Queue'
+#: frappe/core/doctype/data_import_log/data_import_log.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Exception"
-msgstr "Uitzondering"
+msgstr ""
-#. Label of a Code field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
-msgid "Exception"
-msgstr "Uitzondering"
-
-#. Label of a Long Text field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
-msgid "Exception"
-msgstr "Uitzondering"
-
-#: desk/doctype/system_console/system_console.js:17
-#: desk/doctype/system_console/system_console.js:22
+#. Label of the execute_section (Section Break) field in DocType 'System
+#. Console'
+#: frappe/desk/doctype/system_console/system_console.js:17
+#: frappe/desk/doctype/system_console/system_console.js:22
+#: frappe/desk/doctype/system_console/system_console.json
msgid "Execute"
-msgstr "Uitvoeren"
+msgstr ""
-#. Label of a Section Break field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
-msgid "Execute"
-msgstr "Uitvoeren"
-
-#: desk/doctype/system_console/system_console.js:10
+#: frappe/desk/doctype/system_console/system_console.js:10
msgid "Execute Console script"
-msgstr "Voer het consolescript uit"
+msgstr ""
-#: desk/doctype/system_console/system_console.js:18
+#: frappe/public/js/frappe/ui/dropdown_console.js:125
+msgid "Executing Code"
+msgstr ""
+
+#: frappe/desk/doctype/system_console/system_console.js:18
msgid "Executing..."
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1961
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Execution Time: {0} sec"
-msgstr "Uitvoeringstijd: {0} sec"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Executive"
msgstr ""
-#: public/js/frappe/widgets/base_widget.js:157
-msgid "Expand"
-msgstr "Uitbreiden"
+#. Label of the existing_role (Link) field in DocType 'Role Replication'
+#: frappe/core/doctype/role_replication/role_replication.json
+msgid "Existing Role"
+msgstr ""
-#: public/js/frappe/form/controls/code.js:147
+#: 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 "Uitbreiden"
+msgstr ""
-#: public/js/frappe/views/treeview.js:125
+#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
-msgstr "Alles uitvouwen"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
+msgid "Experimental"
+msgstr ""
#. Option for the 'Level' (Select) field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
+#: frappe/website/doctype/help_article/help_article.json
msgid "Expert"
-msgstr "Deskundige"
+msgstr ""
-#. Label of a Datetime field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. 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 "vervaltijd"
+msgstr ""
-#. Label of a Datetime field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
-msgid "Expiration time"
-msgstr "vervaltijd"
-
-#. Label of a Date field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
+#. Label of the expire_notification_on (Datetime) field in DocType 'Note'
+#: frappe/desk/doctype/note/note.json
msgid "Expire Notification On"
-msgstr "Verlopen Notification On"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Expired"
-msgstr "Verlopen"
+msgstr ""
-#. Label of a Int field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
+#. 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 "Verloopt in"
+msgstr ""
-#. Label of a Int field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "Expires In"
-msgstr "Verloopt in"
-
-#. Label of a Date field in DocType 'Document Share Key'
-#: core/doctype/document_share_key/document_share_key.json
-msgctxt "Document Share Key"
+#. 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 a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. 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 "Vervaldatum van QR Code Image Page"
+msgstr ""
-#: core/doctype/recorder/recorder_list.js:42
-#: public/js/frappe/data_import/data_exporter.js:88
-#: public/js/frappe/data_import/data_exporter.js:239
-#: public/js/frappe/views/reports/query_report.js:1652
-#: public/js/frappe/views/reports/report_view.js:1552
+#. 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:1757
+#: frappe/public/js/frappe/views/reports/report_view.js:1621
+#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
-msgstr "Exporteren"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:2135
msgctxt "Button in list view actions menu"
msgid "Export"
-msgstr "Exporteren"
+msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Export"
-msgstr "Exporteren"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Export"
-msgstr "Exporteren"
-
-#: public/js/frappe/data_import/data_exporter.js:241
+#: frappe/public/js/frappe/data_import/data_exporter.js:245
msgid "Export 1 record"
-msgstr "1 record exporteren"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1563
-msgid "Export All {0} rows?"
-msgstr "Alle {0} rijen exporteren?"
-
-#: custom/doctype/customize_form/customize_form.js:220
+#: frappe/custom/doctype/customize_form/customize_form.js:262
msgid "Export Custom Permissions"
-msgstr "Export Custom Machtigingen"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:200
+#: frappe/custom/doctype/customize_form/customize_form.js:242
msgid "Export Customizations"
-msgstr "aanpassingen export"
-
-#: public/js/frappe/data_import/data_exporter.js:14
-msgid "Export Data"
-msgstr "Exportgegevens"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Data Export"
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/public/js/frappe/data_import/data_exporter.js:14
msgid "Export Data"
-msgstr "Exportgegevens"
+msgstr ""
-#: core/doctype/data_import/data_import.js:86
-#: public/js/frappe/data_import/import_preview.js:195
+#: frappe/core/doctype/data_import/data_import.js:86
+#: frappe/public/js/frappe/data_import/import_preview.js:199
msgid "Export Errored Rows"
-msgstr "Rijen met fouten exporteren"
+msgstr ""
-#. Label of a Data field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the export_from (Data) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "Export From"
-msgstr "Exporteren van"
+msgstr ""
-#: core/doctype/data_import/data_import.js:535
+#: frappe/core/doctype/data_import/data_import.js:518
msgid "Export Import Log"
msgstr ""
-#: public/js/frappe/views/reports/report_utils.js:227
+#: frappe/public/js/frappe/views/reports/report_utils.js:235
msgctxt "Export report"
msgid "Export Report: {0}"
-msgstr "Exportrapport: {0}"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:26
+#: frappe/public/js/frappe/data_import/data_exporter.js:26
msgid "Export Type"
-msgstr "Exporttype"
+msgstr ""
-#: public/js/frappe/views/file/file_view.js:154
+#: frappe/public/js/frappe/views/reports/report_view.js:1632
+msgid "Export all matching rows?"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1642
+msgid "Export all {0} rows?"
+msgstr ""
+
+#: frappe/public/js/frappe/views/file/file_view.js:154
msgid "Export as zip"
msgstr ""
-#: public/js/frappe/utils/tools.js:11
+#: frappe/public/js/frappe/utils/tools.js:11
msgid "Export not allowed. You need {0} role to export."
-msgstr "Exporteren niet toegestaan. Je hebt rol {0} nodig om te kunnen exporteren ."
+msgstr ""
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#: frappe/core/doctype/data_export/data_export.json
msgid "Export the data without any header notes and column descriptions"
msgstr ""
-#. Label of a Check field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#. Label of the export_without_main_header (Check) field in DocType 'Data
+#. Export'
+#: frappe/core/doctype/data_export/data_export.json
msgid "Export without main header"
msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:243
+#: frappe/public/js/frappe/data_import/data_exporter.js:247
msgid "Export {0} records"
-msgstr "Exporteer {0} records"
+msgstr ""
-#. Label of a Data field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#: frappe/custom/doctype/customize_form/customize_form.js:263
+msgid "Exported permissions will be force-synced on every migrate overriding any other customization."
+msgstr ""
+
+#. Label of the expose_recipients (Data) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Expose Recipients"
-msgstr "Expose Ontvangers"
+msgstr ""
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Expression"
msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Expression"
-msgstr ""
-
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Expression (old style)"
-msgstr ""
-
-#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Expression (old style)"
msgstr ""
#. Description of the 'Condition' (Data) field in DocType 'Notification
#. Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Expression, Optional"
-msgstr "Uitdrukking, Optioneel"
+msgstr ""
-#. Label of a Section Break field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the external_link (Data) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/views/workspace/workspace.js:426
+msgid "External Link"
+msgstr ""
+
+#. Label of the section_break_18 (Section Break) field in DocType 'Connected
+#. App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Extra Parameters"
msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Facebook"
-msgstr "Facebook"
+msgstr ""
+
+#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Fail"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Failed"
-msgstr "Gefaald"
-
-#. Option for the 'Status' (Select) field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Failed"
-msgstr "Gefaald"
-
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
-msgid "Failed"
-msgstr "Gefaald"
-
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Failed"
-msgstr "Gefaald"
+msgstr ""
-#. Label of a Int field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the failed_emails (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Failed Emails"
+msgstr ""
+
+#. Label of the failed_job_count (Int) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Failed Job Count"
msgstr ""
-#: model/workflow.py:305
-msgid "Failed Transactions"
-msgstr "Mislukte transacties"
+#. 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 ""
-#: utils/synchronization.py:46
+#. Label of the failed_logins (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Failed Logins (Last 30 days)"
+msgstr ""
+
+#: frappe/model/workflow.py:306
+msgid "Failed Transactions"
+msgstr ""
+
+#: frappe/utils/synchronization.py:46
msgid "Failed to aquire lock: {}. Lock may be held by another process."
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:360
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:359
msgid "Failed to change password."
-msgstr "Wachtwoord wijzigen is mislukt."
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:220
+#: frappe/desk/page/setup_wizard/setup_wizard.js:232
+#: frappe/desk/page/setup_wizard/setup_wizard.py:42
msgid "Failed to complete setup"
-msgstr "De installatie kon niet worden voltooid"
+msgstr ""
-#: integrations/doctype/webhook/webhook.py:148
+#: frappe/integrations/doctype/webhook/webhook.py:137
msgid "Failed to compute request body: {}"
msgstr ""
-#: printing/doctype/network_printer_settings/network_printer_settings.py:45
-#: printing/doctype/network_printer_settings/network_printer_settings.py:47
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:46
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:48
msgid "Failed to connect to server"
-msgstr "Kan geen verbinding maken met de server"
+msgstr ""
-#: auth.py:649
+#: frappe/auth.py:698
msgid "Failed to decode token, please provide a valid base64-encoded token."
-msgstr "Kan token niet decoderen. Geef een geldig base64-gecodeerd token op."
+msgstr ""
-#: core/doctype/rq_job/rq_job_list.js:33
+#: frappe/utils/password.py:211
+msgid "Failed to decrypt key {0}"
+msgstr ""
+
+#: frappe/desk/reportview.py:600
+msgid "Failed to delete {0} documents: {1}"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job_list.js:33
msgid "Failed to enable scheduler: {0}"
msgstr ""
-#: integrations/doctype/webhook/webhook.py:136
+#: frappe/email/doctype/notification/notification.py:99
+#: frappe/integrations/doctype/webhook/webhook.py:127
msgid "Failed to evaluate conditions: {}"
msgstr ""
-#: types/exporter.py:197
+#: frappe/types/exporter.py:205
msgid "Failed to export python type hints"
msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.py:252
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:249
msgid "Failed to generate names from the series"
msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.js:75
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:75
msgid "Failed to generate preview of series"
msgstr ""
-#: handler.py:76
+#: frappe/handler.py:75
msgid "Failed to get method for command {0} with {1}"
msgstr ""
-#: api/v2.py:48
+#: frappe/api/v2.py:46
msgid "Failed to get method {0} with {1}"
msgstr ""
-#: model/virtual_doctype.py:64
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:59
+msgid "Failed to get site info"
+msgstr ""
+
+#: frappe/model/virtual_doctype.py:63
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr ""
-#: utils/image.py:75
+#: frappe/utils/image.py:75
msgid "Failed to optimize image: {0}"
msgstr ""
-#: email/doctype/email_queue/email_queue.py:278
+#: frappe/email/doctype/notification/notification.py:116
+msgid "Failed to render message: {}"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:134
+msgid "Failed to render subject: {}"
+msgstr ""
+
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:94
+msgid "Failed to request login to Frappe Cloud"
+msgstr ""
+
+#: frappe/email/doctype/email_queue/email_queue.py:297
msgid "Failed to send email with subject:"
msgstr ""
-#: desk/doctype/notification_log/notification_log.py:41
+#: frappe/desk/doctype/notification_log/notification_log.py:43
msgid "Failed to send notification email"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.py:24
+#: frappe/desk/page/setup_wizard/setup_wizard.py:24
msgid "Failed to update global settings"
msgstr ""
-#: core/doctype/data_import/data_import.js:470
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:74
+msgid "Failed while calling API {0}"
+msgstr ""
+
+#. Label of the failing_scheduled_jobs (Table) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Failing Scheduled Jobs (last 7 days)"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:459
msgid "Failure"
-msgstr "Mislukking"
+msgstr ""
-#. Label of a Attach field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the failure_rate (Percent) field in DocType 'System Health Report
+#. Failing Jobs'
+#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
+msgid "Failure Rate"
+msgstr ""
+
+#. Label of the favicon (Attach) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "FavIcon"
-msgstr "FavIcon"
+msgstr ""
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the fax (Data) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "Fax"
-msgstr "Fax"
+msgstr ""
-#: website/doctype/blog_post/templates/blog_post_row.html:19
+#. Label of the featured (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19
msgid "Featured"
-msgstr "Uitgelicht"
+msgstr ""
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Featured"
-msgstr "Uitgelicht"
-
-#. Option for the 'Communication Type' (Select) field in DocType
-#. 'Communication'
-#. Label of a Section Break field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:33
msgid "Feedback"
-msgstr "Terugkoppeling"
+msgstr ""
-#. Label of a Data field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Feedback Request"
-msgstr "Terugkoppeling Request"
+#: frappe/desk/page/setup_wizard/install_fixtures.py:29
+msgid "Female"
+msgstr ""
-#. Label of a Small Text field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the fetch_from (Small Text) field in DocType 'DocField'
+#. Label of the fetch_from (Small Text) field in DocType 'Custom Field'
+#. Label of the fetch_from (Small Text) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:29
+#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:34
msgid "Fetch From"
-msgstr "Ophalen van"
+msgstr ""
-#. Label of a Small Text field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Fetch From"
-msgstr "Ophalen van"
-
-#. Label of a Small Text field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Fetch From"
-msgstr "Ophalen van"
-
-#: website/doctype/website_slideshow/website_slideshow.js:15
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:15
msgid "Fetch Images"
-msgstr "Afbeeldingen ophalen"
+msgstr ""
-#: website/doctype/website_slideshow/website_slideshow.js:13
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:13
msgid "Fetch attached images from document"
-msgstr "Haal bijgevoegde afbeeldingen uit het document"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the fetch_if_empty (Check) field in DocType 'DocField'
+#. Label of the fetch_if_empty (Check) field in DocType 'Custom Field'
+#. Label of the fetch_if_empty (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Fetch on Save if Empty"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Fetch on Save if Empty"
-msgstr ""
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Fetch on Save if Empty"
-msgstr ""
-
-#: desk/doctype/global_search_settings/global_search_settings.py:60
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:61
msgid "Fetching default Global Search documents."
-msgstr "Standaard Global Search-documenten ophalen."
+msgstr ""
-#: desk/page/leaderboard/leaderboard.js:131
-#: public/js/frappe/list/bulk_operations.js:262
-#: public/js/frappe/views/reports/query_report.js:235
-#: public/js/frappe/views/reports/query_report.js:1706
+#. Label of the field (Select) field in DocType 'Assignment Rule'
+#. Label of the field (Select) field in DocType 'Document Naming Rule
+#. Condition'
+#. Label of the field (Select) field in DocType 'Bulk Update'
+#. Label of the report_field (Select) field in DocType 'Number Card'
+#. Label of the field (Select) field in DocType 'Onboarding Step'
+#. Label of the fieldname (Select) field in DocType 'Web Form Field'
+#. Label of the fieldname (Select) field in DocType 'Web Form List Column'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+#: frappe/core/doctype/permission_log/permission_log.js:12
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/public/js/frappe/list/bulk_operations.js:327
+#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
+#: frappe/public/js/frappe/views/reports/query_report.js:237
+#: frappe/public/js/frappe/views/reports/query_report.js:1816
+#: 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 "Veld"
+msgstr ""
-#. Label of a Select field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Field"
-msgstr "Veld"
-
-#. Label of a Select field in DocType 'Bulk Update'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
-msgid "Field"
-msgstr "Veld"
-
-#. Label of a Select field in DocType 'Document Naming Rule Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
-msgid "Field"
-msgstr "Veld"
-
-#. Label of a Select field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Field"
-msgstr "Veld"
-
-#. Label of a Select field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Field"
-msgstr "Veld"
-
-#. Label of a Select field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Field"
-msgstr "Veld"
-
-#. Label of a Select field in DocType 'Web Form List Column'
-#: website/doctype/web_form_list_column/web_form_list_column.json
-msgctxt "Web Form List Column"
-msgid "Field"
-msgstr "Veld"
-
-#: core/doctype/doctype/doctype.py:419
+#: frappe/core/doctype/doctype/doctype.py:417
msgid "Field \"route\" is mandatory for Web Views"
-msgstr "Veld "route" is verplicht voor webweergaven"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1477
+#: frappe/core/doctype/doctype/doctype.py:1526
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.js:17
+#: frappe/desk/doctype/bulk_update/bulk_update.js:17
msgid "Field \"value\" is mandatory. Please specify value to be updated"
-msgstr "Field "waarde" is verplicht. Gelieve te specificeren waarde worden bijgewerkt"
+msgstr ""
-#. Label of a Text field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the description (Text) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Field Description"
-msgstr "Veld Omschrijving"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1040
+#: frappe/core/doctype/doctype/doctype.py:1077
msgid "Field Missing"
msgstr ""
-#. Label of a Select field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
+#. Label of the field_name (Data) field in DocType 'Property Setter'
+#. Label of the field_name (Select) field in DocType 'Kanban Board'
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
msgid "Field Name"
-msgstr "Veldnaam"
+msgstr ""
-#. Label of a Data field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
-msgid "Field Name"
-msgstr "Veldnaam"
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:141
+msgid "Field Orientation (Left-Right)"
+msgstr ""
-#. Label of a Select field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Field To Check"
-msgstr "Te controleren veld"
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:148
+msgid "Field Orientation (Top-Down)"
+msgstr ""
-#. Label of a Select field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:233
+#: frappe/public/js/print_format_builder/utils.js:69
+msgid "Field Template"
+msgstr ""
+
+#. Label of the fieldtype (Select) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/templates/form_grid/fields.html:40
msgid "Field Type"
-msgstr "Veldtype"
+msgstr ""
-#: desk/reportview.py:165
+#: frappe/desk/reportview.py:201
msgid "Field not permitted in query"
msgstr ""
#. Description of the 'Workflow State Field' (Data) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)"
-msgstr "Veld dat de workflow-status van de transactie vertegenwoordigt (indien veld niet aanwezig is, een nieuwe verborgen Aangepast veld wordt aangemaakt)"
+msgstr ""
-#. Label of a Select field in DocType 'Milestone Tracker'
-#: automation/doctype/milestone_tracker/milestone_tracker.json
-msgctxt "Milestone Tracker"
+#. Label of the track_field (Select) field in DocType 'Milestone Tracker'
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Field to Track"
-msgstr "Veld om te volgen"
+msgstr ""
-#: custom/doctype/property_setter/property_setter.py:50
+#: frappe/custom/doctype/property_setter/property_setter.py:51
msgid "Field type cannot be changed for {0}"
-msgstr "Veldtype kan niet worden gewijzigd voor {0}"
+msgstr ""
-#: database/database.py:783
+#: frappe/database/database.py:892
msgid "Field {0} does not exist on {1}"
msgstr ""
-#: desk/form/meta.py:203
+#: frappe/desk/form/meta.py:208
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
-#: public/js/frappe/form/form.js:1727
+#: frappe/public/js/frappe/form/form.js:1754
msgid "Field {0} not found."
-msgstr "Veld {0} niet gevonden."
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:119
+#: frappe/email/doctype/notification/notification.py:503
+msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
+msgstr ""
+
+#. Label of the fieldname (Data) field in DocType 'Report Column'
+#. Label of the fieldname (Data) field in DocType 'Report Filter'
+#. Label of the fieldname (Data) field in DocType 'Custom Field'
+#. Label of the fieldname (Select) field in DocType 'DocType Layout Field'
+#. Label of the fieldname (Select) field in DocType 'Form Tour Step'
+#. Label of the fieldname (Select) field in DocType 'Webhook Data'
+#. Label of the fieldname (Data) field in DocType 'Web Template Field'
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.js:120
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/integrations/doctype/webhook_data/webhook_data.json
+#: frappe/public/js/frappe/form/grid_row.js:438
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
-msgstr "Veldnaam"
+msgstr ""
-#. Label of a Data field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Fieldname"
-msgstr "Veldnaam"
-
-#. Label of a Select field in DocType 'DocType Layout Field'
-#: custom/doctype/doctype_layout_field/doctype_layout_field.json
-msgctxt "DocType Layout Field"
-msgid "Fieldname"
-msgstr "Veldnaam"
-
-#. Label of a Select field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Fieldname"
-msgstr "Veldnaam"
-
-#. Label of a Data field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Fieldname"
-msgstr "Veldnaam"
-
-#. Label of a Data field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Fieldname"
-msgstr "Veldnaam"
-
-#. Label of a Data field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Fieldname"
-msgstr "Veldnaam"
-
-#. Label of a Select field in DocType 'Webhook Data'
-#: integrations/doctype/webhook_data/webhook_data.json
-msgctxt "Webhook Data"
-msgid "Fieldname"
-msgstr "Veldnaam"
-
-#: core/doctype/doctype/doctype.py:270
+#: frappe/core/doctype/doctype/doctype.py:270
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr ""
-#: core/doctype/doctype/doctype.py:1039
+#: frappe/core/doctype/doctype/doctype.py:1076
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: database/schema.py:125 database/schema.py:359
+#: frappe/database/schema.py:127 frappe/database/schema.py:363
msgid "Fieldname is limited to 64 characters ({0})"
-msgstr "Veldnaam is beperkt tot 64 tekens ({0})"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.py:193
+#: frappe/custom/doctype/custom_field/custom_field.py:197
msgid "Fieldname not set for Custom Field"
-msgstr "Veldnaam niet ingesteld op Aangepast veld"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:107
+#: frappe/custom/doctype/custom_field/custom_field.js:107
msgid "Fieldname which will be the DocType for this link field."
-msgstr "Veldnaam die de DocType voor deze link veld zal zijn."
+msgstr ""
-#: public/js/form_builder/store.js:170
+#: frappe/public/js/form_builder/store.js:175
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: database/schema.py:349
+#: frappe/database/schema.py:353
msgid "Fieldname {0} cannot have special characters like {1}"
-msgstr "Veldnaam {0} kan geen speciale tekens, zoals hebben {1}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1850
+#: frappe/core/doctype/doctype/doctype.py:1907
msgid "Fieldname {0} conflicting with meta object"
-msgstr "Veldnaam {0} strijdig met meta-object"
+msgstr ""
-#: core/doctype/doctype/doctype.py:495 public/js/form_builder/utils.js:302
+#: frappe/core/doctype/doctype/doctype.py:496
+#: frappe/public/js/form_builder/utils.js:302
msgid "Fieldname {0} is restricted"
-msgstr "Veldnaam {0} is beperkt"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#. Label of a Table field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the fields (Table) field in DocType 'DocType'
+#. Label of the fields_section (Section Break) field in DocType 'DocType'
+#. Label of the fields_tab (Tab Break) field in DocType 'DocType'
+#. Label of the fields_section_break (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the fields (Table) field in DocType 'Customize Form'
+#. Label of the fields (Table) field in DocType 'DocType Layout'
+#. Label of the fields (Code) field in DocType 'Kanban Board'
+#. Label of the fields_html (HTML) field in DocType 'List View Settings'
+#. Label of the fields (Code) field in DocType 'List View Settings'
+#. Label of the fields (Small Text) field in DocType 'Personal Data Deletion
+#. Step'
+#. Label of the fields (Table) field in DocType 'Web Template'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+#: frappe/public/js/frappe/list/list_settings.js:135
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:83
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+#: frappe/website/doctype/web_template/web_template.json
msgid "Fields"
-msgstr "Velden"
+msgstr ""
-#. Label of a Table field in DocType 'DocType'
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Fields"
-msgstr "Velden"
-
-#. Label of a Table field in DocType 'DocType Layout'
-#: custom/doctype/doctype_layout/doctype_layout.json
-msgctxt "DocType Layout"
-msgid "Fields"
-msgstr "Velden"
-
-#. Label of a Code field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Fields"
-msgstr "Velden"
-
-#. Label of a HTML field in DocType 'List View Settings'
-#. Label of a Code field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
-msgid "Fields"
-msgstr "Velden"
-
-#. Label of a Small Text field in DocType 'Personal Data Deletion Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
-msgid "Fields"
-msgstr "Velden"
-
-#. Label of a Table field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
-msgid "Fields"
-msgstr "Velden"
-
-#. Label of a HTML field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#. Label of the fields_multicheck (HTML) field in DocType 'Data Export'
+#: frappe/core/doctype/data_export/data_export.json
msgid "Fields Multicheck"
-msgstr "Velden Multicheck"
+msgstr ""
-#: core/doctype/file/file.py:406
+#: frappe/core/doctype/file/file.py:410
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
+#: frappe/model/db_query.py:144
+msgid "Fields must be a list or tuple when as_list is enabled"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
-msgstr "Velden gescheiden door een komma (,) zal worden opgenomen in de "Zoek Per" lijst van Search dialoogvenster"
+msgstr ""
-#. Label of a Data field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the fieldtype (Select) field in DocType 'Report Column'
+#. Label of the fieldtype (Select) field in DocType 'Report Filter'
+#. Label of the fieldtype (Data) field in DocType 'Form Tour Step'
+#. Label of the fieldtype (Select) field in DocType 'Web Form Field'
+#. Label of the fieldtype (Data) field in DocType 'Web Form List Column'
+#. Label of the fieldtype (Select) field in DocType 'Web Template Field'
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldtype"
-msgstr "Veldtype"
+msgstr ""
-#. Label of a Select field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Fieldtype"
-msgstr "Veldtype"
-
-#. Label of a Select field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Fieldtype"
-msgstr "Veldtype"
-
-#. Label of a Select field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Fieldtype"
-msgstr "Veldtype"
-
-#. Label of a Data field in DocType 'Web Form List Column'
-#: website/doctype/web_form_list_column/web_form_list_column.json
-msgctxt "Web Form List Column"
-msgid "Fieldtype"
-msgstr "Veldtype"
-
-#. Label of a Select field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Fieldtype"
-msgstr "Veldtype"
-
-#: custom/doctype/custom_field/custom_field.py:189
+#: frappe/custom/doctype/custom_field/custom_field.py:193
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
-#: custom/doctype/customize_form/customize_form.py:586
+#: frappe/custom/doctype/customize_form/customize_form.py:588
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
-msgstr "FieldType kan niet worden veranderd van {0} tot {1} in rij {2}"
-
-#. Name of a DocType
-#: core/doctype/file/file.json
-msgid "File"
-msgstr "het dossier"
+msgstr ""
#. Label of a shortcut in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "File"
-msgid "File"
-msgstr "het dossier"
-
+#. Name of a DocType
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/file/file.json
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "File"
-msgstr "het dossier"
+msgstr ""
-#: core/doctype/file/utils.py:126
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478
+msgid "File \"{0}\" was skipped because of invalid file type"
+msgstr ""
+
+#: frappe/core/doctype/file/utils.py:128
msgid "File '{0}' not found"
-msgstr "Bestand '{0}' niet gevonden"
+msgstr ""
-#. Label of a Check field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
+#. Label of the file_backup (Check) field in DocType 'Dropbox Settings'
+#. Label of the file_backup (Check) field in DocType 'Google Drive'
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
+#: frappe/integrations/doctype/google_drive/google_drive.json
msgid "File Backup"
-msgstr "Bestandsback-up"
+msgstr ""
-#. Label of a Check field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "File Backup"
-msgstr "Bestandsback-up"
-
-#. Label of a Section Break field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the private_file_section (Section Break) field in DocType 'Access
+#. Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "File Information"
-msgstr "Bestandsinformatie"
+msgstr ""
-#: public/js/frappe/views/file/file_view.js:74
+#: frappe/public/js/frappe/views/file/file_view.js:74
msgid "File Manager"
-msgstr "Bestandsbeheer"
+msgstr ""
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the file_name (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "File Name"
-msgstr "Bestandsnaam"
+msgstr ""
-#. Label of a Int field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the file_size (Int) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "File Size"
-msgstr "Bestandsgrootte"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:19
+#. Label of the section_break_ryki (Section Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "File Storage"
+msgstr ""
+
+#. Label of the file_type (Data) field in DocType 'Access Log'
+#. Label of the file_type (Select) field in DocType 'Data Export'
+#. Label of the file_type (Data) field in DocType 'File'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/data_export/data_export.json
+#: frappe/core/doctype/file/file.json
+#: frappe/public/js/frappe/data_import/data_exporter.js:19
msgid "File Type"
-msgstr "Bestandstype"
+msgstr ""
-#. Label of a Data field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
-msgid "File Type"
-msgstr "Bestandstype"
-
-#. Label of a Select field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
-msgid "File Type"
-msgstr "Bestandstype"
-
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
-msgid "File Type"
-msgstr "Bestandstype"
-
-#. Label of a Code field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the file_url (Code) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "File URL"
-msgstr "File-URL"
+msgstr ""
-#: desk/page/backups/backups.py:109
+#: frappe/desk/page/backups/backups.py:107
msgid "File backup is ready"
-msgstr "Bestandskopie is klaar"
+msgstr ""
-#: core/doctype/file/file.py:577
+#: frappe/core/doctype/file/file.py:624
msgid "File name cannot have {0}"
-msgstr "Bestandsnaam mag geen {0} hebben"
+msgstr ""
-#: utils/csvutils.py:26
+#: frappe/utils/csvutils.py:28
msgid "File not attached"
-msgstr "Bestand niet bijgevoegd"
+msgstr ""
-#: core/doctype/file/file.py:682 public/js/frappe/request.js:197
-#: utils/file_manager.py:221
+#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200
+#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
-msgstr "Bestandsgrootte heeft de maximaal toegestane grootte van {0} MB overschreden"
+msgstr ""
-#: public/js/frappe/request.js:195
+#: frappe/public/js/frappe/request.js:198
msgid "File too big"
-msgstr "Bestand te groot"
+msgstr ""
-#: core/doctype/file/file.py:373
+#: frappe/core/doctype/file/file.py:375
msgid "File type of {0} is not allowed"
msgstr ""
-#: core/doctype/file/file.py:360 core/doctype/file/file.py:422
+#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426
msgid "File {0} does not exist"
-msgstr "Bestand {0} bestaat niet"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "File"
+#. Label of the files_tab (Tab Break) field in DocType 'System Settings'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Files"
-msgstr "bestanden"
+msgstr ""
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Files"
-msgstr "bestanden"
-
-#: email/doctype/auto_email_report/auto_email_report.js:90
-#: public/js/frappe/ui/filters/filter_list.js:132
+#: frappe/core/doctype/prepared_report/prepared_report.js:8
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
+#: frappe/desk/doctype/number_card/number_card.js:205
+#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
+#: frappe/public/js/frappe/list/base_list.js:953
+#: frappe/public/js/frappe/ui/filters/filter_list.js:134
+#: frappe/website/doctype/web_form/web_form.js:197
msgid "Filter"
-msgstr "Filter"
+msgstr ""
-#. Label of a Section Break field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#: frappe/public/js/frappe/list/list_sidebar.html:36
+msgid "Filter By"
+msgstr ""
+
+#. Label of the filter_data (Section Break) field in DocType 'Auto Email
+#. Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Filter Data"
-msgstr "Filter data"
+msgstr ""
-#. Label of a HTML field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#. Label of the filter_list (HTML) field in DocType 'Data Export'
+#: frappe/core/doctype/data_export/data_export.json
msgid "Filter List"
-msgstr "Filterlijst"
+msgstr ""
-#. Label of a Text field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the filter_meta (Text) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Filter Meta"
-msgstr "Filter Meta"
+msgstr ""
-#: public/js/frappe/list/list_filter.js:33
+#. Label of the filter_name (Data) field in DocType 'List Filter'
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/public/js/frappe/list/list_filter.js:33
msgid "Filter Name"
-msgstr "Naam filteren"
+msgstr ""
-#. Label of a Data field in DocType 'List Filter'
-#: desk/doctype/list_filter/list_filter.json
-msgctxt "List Filter"
-msgid "Filter Name"
-msgstr "Naam filteren"
-
-#. Label of a HTML field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Label of the filter_values (HTML) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Filter Values"
-msgstr "Filterwaarden"
+msgstr ""
-#: utils/data.py:2021
-msgid "Filter must be a tuple or list (in a list)"
-msgstr "Filter moet een tupel of een lijst zijn (in een lijst)"
+#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
+msgid "Filter..."
+msgstr ""
-#: utils/data.py:2029
-msgid "Filter must have 4 values (doctype, fieldname, operator, value): {0}"
-msgstr "Filter moet 4 waarden hebben (doctype, veldnaam, operator, waarde): {0}"
-
-#. Label of a Data field in DocType 'Personal Data Deletion Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
+#. Label of the filtered_by (Data) field in DocType 'Personal Data Deletion
+#. Step'
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Filtered By"
msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:33
+#: frappe/public/js/frappe/data_import/data_exporter.js:33
msgid "Filtered Records"
-msgstr "Gefilterde records"
-
-#: website/doctype/blog_post/blog_post.py:262
-#: website/doctype/help_article/help_article.py:91 www/list.py:45
-msgid "Filtered by \"{0}\""
-msgstr "Gefilterd op "{0}""
-
-#. Label of a Code field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
-msgid "Filters"
-msgstr "Filters"
-
-#. Label of a Text field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Filters"
-msgstr "Filters"
-
-#. Label of a Section Break field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Filters"
-msgstr "Filters"
-
-#. Label of a Code field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Filters"
-msgstr "Filters"
-
-#. Label of a Long Text field in DocType 'List Filter'
-#: desk/doctype/list_filter/list_filter.json
-msgctxt "List Filter"
-msgid "Filters"
-msgstr "Filters"
-
-#. Label of a Section Break field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Filters"
-msgstr "Filters"
-
-#. Label of a Section Break field in DocType 'Prepared Report'
-#. Label of a Small Text field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
-msgid "Filters"
-msgstr "Filters"
-
-#. Label of a Section Break field in DocType 'Report'
-#. Label of a Table field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Filters"
-msgstr "Filters"
-
-#: public/js/frappe/ui/filters/filter_list.js:131
-msgid "Filters {0}"
msgstr ""
-#. Label of a Code field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/website/doctype/blog_post/blog_post.py:268
+#: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45
+msgid "Filtered by \"{0}\""
+msgstr ""
+
+#. Label of the filters (Code) field in DocType 'Access Log'
+#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
+#. Label of the filters (Small Text) field in DocType 'Prepared Report'
+#. Label of the filters_section (Section Break) field in DocType 'Report'
+#. Label of the filters (Table) field in DocType 'Report'
+#. Label of the filters_section (Section Break) field in DocType 'Dashboard
+#. Chart'
+#. Label of the filters (Code) field in DocType 'Kanban Board'
+#. Label of the filters (Long Text) field in DocType 'List Filter'
+#. Label of the filters (Text) field in DocType 'Auto Email Report'
+#. Label of the filters (Section Break) field in DocType 'Notification'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/report/report.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/notification/notification.json
+msgid "Filters"
+msgstr ""
+
+#. Label of the filters_config (Code) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters Configuration"
-msgstr "Filters Configuratie"
+msgstr ""
-#. Label of a HTML field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the filters_display (HTML) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Filters Display"
-msgstr "filters weergeven"
+msgstr ""
-#. Label of a Code field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the filters_json (Code) field in DocType 'Dashboard Chart'
+#. Label of the filters_json (Code) field in DocType 'Number Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters JSON"
-msgstr "Filters JSON"
+msgstr ""
-#. Label of a Code field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Filters JSON"
-msgstr "Filters JSON"
-
-#. Label of a Section Break field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#. Label of the filters_section (Section Break) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters Section"
-msgstr "Filters Sectie"
+msgstr ""
-#: public/js/frappe/form/controls/link.js:486
+#: frappe/public/js/frappe/form/controls/link.js:510
msgid "Filters applied for {0}"
-msgstr "Filters toegepast op {0}"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:186
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
msgid "Filters saved"
-msgstr "filters gered"
+msgstr ""
#. Description of the 'Script' (Code) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#: frappe/core/doctype/report/report.json
msgid "Filters will be accessible via filters.
Send output as result = [result], or for old style data = [columns], [result]"
-msgstr "Filters zijn toegankelijk via filters .
Stuur uitvoer als result = [result] , of voor oude stijl data = [columns], [result]"
+msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:556
+#: frappe/public/js/frappe/ui/filters/filter_list.js:133
+msgid "Filters {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1421
+msgid "Filters:"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572
msgid "Find '{0}' in ..."
msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:325
-#: public/js/frappe/ui/toolbar/awesome_bar.js:326
-#: public/js/frappe/ui/toolbar/search_utils.js:125
-#: public/js/frappe/ui/toolbar/search_utils.js:128
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144
msgid "Find {0} in {1}"
-msgstr "Zoek {0} van {1}"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Finished"
-msgstr "Afgewerkt"
+msgstr ""
-#. Label of a Datetime field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Label of the report_end_time (Datetime) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Finished At"
msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the first_day_of_the_week (Select) field in DocType 'Language'
+#. Label of the first_day_of_the_week (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "First Day of the Week"
msgstr ""
-#: www/complete_signup.html:15
+#. Label of the first_name (Data) field in DocType 'Contact'
+#. Label of the first_name (Data) field in DocType 'User'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
msgid "First Name"
-msgstr "Voornaam"
+msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "First Name"
-msgstr "Voornaam"
-
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "First Name"
-msgstr "Voornaam"
-
-#. Label of a Data field in DocType 'Success Action'
-#: core/doctype/success_action/success_action.json
-msgctxt "Success Action"
+#. Label of the first_success_message (Data) field in DocType 'Success Action'
+#: frappe/core/doctype/success_action/success_action.json
msgid "First Success Message"
-msgstr "Eerste succesbericht"
+msgstr ""
-#: core/report/transaction_log_report/transaction_log_report.py:49
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:49
msgid "First Transaction"
-msgstr "Eerste transactie"
+msgstr ""
-#: core/doctype/data_export/exporter.py:185
+#: frappe/core/doctype/data_export/exporter.py:185
msgid "First data column must be blank."
-msgstr "Eerste data kolom moet leeg zijn."
+msgstr ""
-#: website/doctype/website_slideshow/website_slideshow.js:7
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:7
msgid "First set the name and save the record."
-msgstr "Stel eerst de naam in en sla de record op."
+msgstr ""
-#. Label of a Data field in DocType 'Language'
-#: core/doctype/language/language.json
-msgctxt "Language"
+#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:304
+msgid "Fit"
+msgstr ""
+
+#. Label of the flag (Data) field in DocType 'Language'
+#: frappe/core/doctype/language/language.json
msgid "Flag"
-msgstr "Vlag"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Float"
-msgstr "Zweven"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Float"
-msgstr "Zweven"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Float"
-msgstr "Zweven"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Float"
-msgstr "Zweven"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Float"
-msgstr "Zweven"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Float"
-msgstr "Zweven"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the float_precision (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Float Precision"
-msgstr "Decimale precisie"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Fold"
-msgstr "Vouw"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Fold"
-msgstr "Vouw"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Fold"
-msgstr "Vouw"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Fold"
-msgstr "Vouw"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Fold"
-msgstr "Vouw"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1401
+#: frappe/core/doctype/doctype/doctype.py:1450
msgid "Fold can not be at the end of the form"
-msgstr "Fold kan niet aan het einde van de vorm"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1399
+#: frappe/core/doctype/doctype/doctype.py:1448
msgid "Fold must come before a Section Break"
-msgstr "Vouw moet voor een sectie Break komen"
+msgstr ""
-#. Label of a Link field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the folder (Link) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Folder"
-msgstr "Map"
+msgstr ""
-#. Label of a Data field in DocType 'IMAP Folder'
-#: email/doctype/imap_folder/imap_folder.json
-msgctxt "IMAP Folder"
+#. Label of the folder_name (Data) field in DocType 'IMAP Folder'
+#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "Folder Name"
msgstr ""
-#: public/js/frappe/views/file/file_view.js:100
+#: frappe/public/js/frappe/views/file/file_view.js:100
msgid "Folder name should not include '/' (slash)"
-msgstr "De mapnaam mag geen '/' (slash)"
+msgstr ""
-#: core/doctype/file/file.py:466
+#: frappe/core/doctype/file/file.py:472
msgid "Folder {0} is not empty"
-msgstr "Folder {0} is niet leeg"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Folio"
msgstr ""
-#: public/js/frappe/form/sidebar/form_sidebar.js:232
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
+#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Follow"
-msgstr "Volgen"
+msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.py:124
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:101
+msgid "Followed by"
+msgstr ""
+
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
msgid "Following Report Filters have missing values:"
msgstr ""
-#: website/doctype/web_form/web_form.py:107
-msgid "Following fields are missing:"
-msgstr "Na velden ontbreken:"
+#: frappe/desk/form/document_follow.py:63
+msgid "Following document {0}"
+msgstr ""
-#: public/js/frappe/ui/field_group.js:133
+#: frappe/website/doctype/web_form/web_form.py:111
+msgid "Following fields are missing:"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/field_group.js:139
msgid "Following fields have invalid values:"
msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:314
+#: frappe/public/js/frappe/widgets/widget_dialog.js:345
msgid "Following fields have missing values"
msgstr ""
-#: public/js/frappe/ui/field_group.js:120
+#: frappe/public/js/frappe/ui/field_group.js:126
msgid "Following fields have missing values:"
-msgstr "Volgende gebieden ontbrekende waarden:"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:30
+#: frappe/email/doctype/newsletter/newsletter.js:30
msgid "Following links are broken in the email content: {0}"
msgstr ""
-#. Label of a Select field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the font (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
-msgstr "doopvont"
+msgstr ""
-#. Label of a Data field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the font_properties (Data) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Font Properties"
-msgstr "Lettertype-eigenschappen"
+msgstr ""
-#. Label of a Int field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the font_size (Int) field in DocType 'Print Format'
+#. Label of the font_size (Float) field in DocType 'Print Settings'
+#. Label of the font_size (Data) field in DocType 'Website Theme'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:45
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Font Size"
-msgstr "Tekengrootte"
+msgstr ""
-#. Label of a Float field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Font Size"
-msgstr "Tekengrootte"
-
-#. Label of a Data field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Font Size"
-msgstr "Tekengrootte"
-
-#. Label of a Section Break field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the section_break_8 (Section Break) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Fonts"
-msgstr "Fonts"
-
-#. Label of a Text Editor field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
-msgid "Footer"
-msgstr "Voettekst"
-
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Footer"
-msgstr "Voettekst"
-
-#. Label of a Section Break field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
-msgid "Footer"
-msgstr "Voettekst"
+msgstr ""
+#. Label of the set_footer (Section Break) field in DocType 'Email Account'
+#. Label of the footer_section (Section Break) field in DocType 'Letter Head'
+#. Label of the footer (Text Editor) field in DocType 'About Us Settings'
#. Option for the 'Type' (Select) field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
+#. Label of the footer_tab (Tab Break) field in DocType 'Website Settings'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer"
-msgstr "Voettekst"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Footer"
-msgstr "Voettekst"
-
-#. Label of a Small Text field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer_powered (Small Text) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer \"Powered By\""
msgstr ""
-#. Label of a Select field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the footer_source (Select) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer Based On"
msgstr ""
-#. Label of a Text Editor field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the footer (Text Editor) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Footer Content"
msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer_details_section (Section Break) field in DocType
+#. 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Details"
msgstr ""
-#. Label of a HTML Editor field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the footer (HTML Editor) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer HTML"
-msgstr "Voettekst HTML"
+msgstr ""
-#: printing/doctype/letter_head/letter_head.py:72
+#: frappe/printing/doctype/letter_head/letter_head.py:75
msgid "Footer HTML set from attachment {0}"
msgstr ""
-#. Label of a Section Break field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the footer_image_section (Section Break) field in DocType 'Letter
+#. Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer Image"
msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#. Label of a Table field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer (Section Break) field in DocType 'Website Settings'
+#. Label of the footer_items (Table) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Items"
-msgstr "Voettekst onderdelen"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer_logo (Attach Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Logo"
-msgstr "Voettekst Logo"
+msgstr ""
-#. Label of a Link field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer_script (Code) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Footer Script"
+msgstr ""
+
+#. Label of the footer_template (Link) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Template"
-msgstr "Voettekst sjabloon"
+msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer_template_values (Code) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Template Values"
-msgstr "Voettekstsjabloonwaarden"
+msgstr ""
-#: printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:116
msgid "Footer might not be visible as {0} option is disabled
/project/<name>"
-msgstr "Wijs routeparameters toe aan formuliervariabelen. Voorbeeld /project/<name>"
+msgstr ""
-#: core/doctype/data_import/importer.py:877
+#: frappe/core/doctype/data_import/importer.py:924
msgid "Mapping column {0} to field {1}"
-msgstr "Kolom {0} toewijzen aan veld {1}"
+msgstr ""
-#. Label of a Float field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the margin_bottom (Float) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Margin Bottom"
msgstr ""
-#. Label of a Float field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the margin_left (Float) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Margin Left"
msgstr ""
-#. Label of a Float field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the margin_right (Float) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Margin Right"
msgstr ""
-#. Label of a Float field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the margin_top (Float) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Margin Top"
msgstr ""
-#: public/js/frappe/ui/notifications/notifications.js:44
+#. Label of the mariadb_variables_section (Section Break) field in DocType
+#. 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "MariaDB Variables"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:45
msgid "Mark all as read"
msgstr ""
-#: core/doctype/communication/communication.js:78
-#: core/doctype/communication/communication_list.js:21
+#: frappe/core/doctype/communication/communication.js:78
+#: frappe/core/doctype/communication/communication_list.js:19
msgid "Mark as Read"
-msgstr "Markeer als gelezen"
+msgstr ""
-#: core/doctype/communication/communication.js:95
+#: frappe/core/doctype/communication/communication.js:95
msgid "Mark as Spam"
-msgstr "Markeer als spam"
+msgstr ""
-#: core/doctype/communication/communication.js:78
-#: core/doctype/communication/communication_list.js:24
+#: frappe/core/doctype/communication/communication.js:78
+#: frappe/core/doctype/communication/communication_list.js:22
msgid "Mark as Unread"
-msgstr "Markeren als ongelezen"
-
-#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Markdown"
-msgstr "Markdown"
+msgstr ""
#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Markdown"
-msgstr "Markdown"
-
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Markdown"
-msgstr "Markdown"
-
+#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:92
+#: frappe/website/doctype/web_page/web_page.json
msgid "Markdown"
-msgstr "Markdown"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Markdown Editor"
-msgstr "Markdown Editor"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Markdown Editor"
-msgstr "Markdown Editor"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Markdown Editor"
-msgstr "Markdown Editor"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Markdown Editor"
-msgstr "Markdown Editor"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Marked As Spam"
-msgstr "Gemarkeerd als spam"
+msgstr ""
-#. Name of a DocType
-#: website/doctype/marketing_campaign/marketing_campaign.json
-msgid "Marketing Campaign"
+#. 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'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
+#: frappe/desk/doctype/bulk_update/bulk_update.json
msgid "Max 500 records at a time"
-msgstr "Max 500 selecties tegelijkertijd"
+msgstr ""
-#. Label of a Int field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Max Attachment Size (in MB)"
-msgstr "Max Bijlage Grootte (in MB)"
-
-#. Label of a Int field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the max_attachments (Int) field in DocType 'DocType'
+#. Label of the max_attachments (Int) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Max Attachments"
-msgstr "Max Bijlagen"
+msgstr ""
-#. Label of a Int field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Max Attachments"
-msgstr "Max Bijlagen"
-
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the max_file_size (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Max File Size (MB)"
msgstr ""
-#. Label of a Data field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the max_height (Data) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Max Height"
msgstr ""
-#. Label of a Int field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the max_length (Int) field in DocType 'Web Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Max Length"
-msgstr "Maximale lengte"
+msgstr ""
-#. Label of a Int field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the max_report_rows (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Max Report Rows"
+msgstr ""
+
+#. Label of the max_value (Int) field in DocType 'Web Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Max Value"
-msgstr "Max Value"
+msgstr ""
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the max_attachment_size (Int) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Max attachment size"
+msgstr ""
+
+#. Label of the max_auto_email_report_per_user (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Max auto email report per user"
msgstr ""
-#: core/doctype/doctype/doctype.py:1293
+#: frappe/core/doctype/doctype/doctype.py:1342
msgid "Max width for type Currency is 100px in row {0}"
-msgstr "Max. breedte voor het type Valuta is 100px in rij {0}"
+msgstr ""
#. Option for the 'Function' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Maximum"
-msgstr "Maximaal"
+msgstr ""
-#: core/doctype/file/file.py:317
+#: frappe/core/doctype/file/file.py:320
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr ""
-#. Label of a Select field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
+#. Label of the total_fields (Select) field in DocType 'List View Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Maximum Number of Fields"
-msgstr "Maximaal aantal velden"
+msgstr ""
-#. Label of a Int field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Maximum Points"
-msgstr "Maximum aantal punten"
-
-#: public/js/frappe/form/sidebar/attachments.js:38
+#: frappe/public/js/frappe/form/sidebar/attachments.js:38
msgid "Maximum attachment limit of {0} has been reached."
msgstr ""
-#. Description of the 'Maximum Points' (Int) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid ""
-"Maximum points allowed after multiplying points with the multiplier value\n"
-"(Note: For no limit leave this field empty or set 0)"
+#: frappe/model/rename_doc.py:690
+msgid "Maximum {0} rows allowed"
msgstr ""
-#: model/rename_doc.py:675
-msgid "Maximum {0} rows allowed"
-msgstr "Maximum {0} rijen toegestaan"
-
-#: public/js/frappe/list/list_sidebar_group_by.js:221
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:221
msgid "Me"
-msgstr "Me"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:194
-#: public/js/frappe/utils/utils.js:1719
-#: website/report/website_analytics/website_analytics.js:40
-msgid "Medium"
-msgstr "Medium"
+#: frappe/core/page/permission_manager/permission_manager_help.html:14
+msgid "Meaning of Submit, Cancel, Amend"
+msgstr ""
#. Option for the 'Priority' (Select) field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#. Label of the medium (Data) field in DocType 'Web Page View'
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
+#: frappe/public/js/frappe/utils/utils.js:1734
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
-msgstr "Medium"
-
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Medium"
-msgstr "Medium"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Meeting"
-msgstr "Vergadering"
-
#. Option for the 'Event Category' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/core/doctype/communication/communication.json
+#: frappe/desk/doctype/event/event.json
msgid "Meeting"
-msgstr "Vergadering"
+msgstr ""
-#. Label of a Data field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/email/doctype/notification/notification.js:196
+#: frappe/integrations/doctype/webhook/webhook.js:96
msgid "Meets Condition?"
msgstr ""
#. Group in Email Group's connections
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#: frappe/email/doctype/email_group/email_group.json
msgid "Members"
msgstr ""
+#. Label of the cache_memory_usage (Data) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Memory Usage"
+msgstr ""
+
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63
+msgid "Memory Usage in MB"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Mention"
-msgstr "Vermelden"
+msgstr ""
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#. Label of the enable_email_mention (Check) field in DocType 'Notification
+#. Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Mentions"
-msgstr "vermeldingen"
+msgstr ""
-#: public/js/frappe/ui/page.js:155
+#: frappe/public/js/frappe/ui/page.html:41
+#: frappe/public/js/frappe/ui/page.js:162
msgid "Menu"
-msgstr "Menu"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:222 public/js/frappe/model/model.js:719
+#: frappe/public/js/frappe/form/toolbar.js:242
+#: frappe/public/js/frappe/model/model.js:754
msgid "Merge with existing"
-msgstr "Samenvoegen met bestaande"
+msgstr ""
-#: utils/nestedset.py:310
+#: frappe/utils/nestedset.py:307
msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node"
-msgstr "Samenvoegen is alleen mogelijk tussen de Groepen of tussen Blad Nodes."
+msgstr ""
-#: public/js/frappe/ui/messages.js:175
-#: public/js/frappe/views/communication.js:110 www/message.html:3
-#: www/message.html:25
+#. Label of the message (Text) field in DocType 'Auto Repeat'
+#. Label of the content (Text Editor) field in DocType 'Activity Log'
+#. Label of the content (Text Editor) field in DocType 'Communication'
+#. Label of the message (Small Text) field in DocType 'SMS Log'
+#. Label of the message (Data) field in DocType 'Success Action'
+#. Label of the email_content (Text Editor) field in DocType 'Notification Log'
+#. Label of the section_break_15 (Section Break) field in DocType 'Auto Email
+#. Report'
+#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
+#. Label of the message (Code) field in DocType 'Email Queue'
+#. Label of the message (Text Editor) field in DocType 'Newsletter'
+#. Label of the message_sb (Section Break) field in DocType 'Notification'
+#. Label of the message (Code) field in DocType 'Notification'
+#. Label of the message (Text) field in DocType 'Workflow Document State'
+#: 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/newsletter/newsletter.json
+#: frappe/email/doctype/notification/notification.js:201
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/ui/messages.js:182
+#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+#: frappe/www/message.html:3
msgid "Message"
-msgstr "Bericht"
+msgstr ""
-#. Label of a Text Editor field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Message"
-msgstr "Bericht"
-
-#. Label of a Section Break field in DocType 'Auto Email Report'
-#. Label of a Text Editor field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Message"
-msgstr "Bericht"
-
-#. Label of a Text field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Message"
-msgstr "Bericht"
-
-#. Label of a Text Editor field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Message"
-msgstr "Bericht"
-
-#: __init__.py:527 public/js/frappe/ui/messages.js:267
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
msgctxt "Default title of the message dialog"
msgid "Message"
-msgstr "Bericht"
+msgstr ""
-#. Label of a Code field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Message"
-msgstr "Bericht"
-
-#. Label of a Text Editor field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Message"
-msgstr "Bericht"
-
-#. Label of a Section Break field in DocType 'Notification'
-#. Label of a Code field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Message"
-msgstr "Bericht"
-
-#. Label of a Text Editor field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "Message"
-msgstr "Bericht"
-
-#. Label of a Small Text field in DocType 'SMS Log'
-#: core/doctype/sms_log/sms_log.json
-msgctxt "SMS Log"
-msgid "Message"
-msgstr "Bericht"
-
-#. Label of a Data field in DocType 'Success Action'
-#: core/doctype/success_action/success_action.json
-msgctxt "Success Action"
-msgid "Message"
-msgstr "Bericht"
-
-#. Label of a Text field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
-msgid "Message"
-msgstr "Bericht"
-
-#. Label of a HTML Editor field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Message (HTML)"
-msgstr "Bericht (HTML)"
+msgstr ""
-#. Label of a Markdown Editor field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Message (Markdown)"
-msgstr "Bericht (Markdown)"
+msgstr ""
-#. Label of a HTML field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the message_examples (HTML) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
-msgstr "Bericht Voorbeelden"
+msgstr ""
-#. Label of a Small Text field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the message_id (Small Text) field in DocType 'Communication'
+#. Label of the message_id (Small Text) field in DocType 'Email Queue'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Message ID"
-msgstr "Message ID"
+msgstr ""
-#. Label of a Small Text field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Message ID"
-msgstr "Message ID"
-
-#. Label of a Data field in DocType 'SMS Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#. Label of the message_parameter (Data) field in DocType 'SMS Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Message Parameter"
-msgstr "Bericht Parameter"
+msgstr ""
-#. Label of a Select field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/templates/includes/contact.js:36
+msgid "Message Sent"
+msgstr ""
+
+#. Label of the message_type (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Message Type"
msgstr ""
-#: public/js/frappe/views/communication.js:841
+#: frappe/public/js/frappe/views/communication.js:950
msgid "Message clipped"
-msgstr "Bericht afgekapt"
+msgstr ""
-#: email/doctype/email_account/email_account.py:299
+#: frappe/email/doctype/email_account/email_account.py:344
msgid "Message from server: {0}"
-msgstr "Bericht van server: {0}"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.js:102
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104
msgid "Message not setup"
-msgstr "Bericht niet ingesteld"
+msgstr ""
-#. Description of the 'Success Message' (Text) field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Description of the 'Success message' (Text) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Message to be displayed on successful completion"
msgstr ""
-#. Label of a Code field in DocType 'Unhandled Email'
-#: email/doctype/unhandled_email/unhandled_email.json
-msgctxt "Unhandled Email"
+#. Label of the message_id (Code) field in DocType 'Unhandled Email'
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Message-id"
-msgstr "Bericht-id"
+msgstr ""
-#. Label of a Code field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
+#. Label of the messages (Code) field in DocType 'Data Import Log'
+#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Messages"
msgstr ""
-#. Label of a Section Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the meta_section (Section Break) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Meta"
msgstr ""
-#: website/doctype/web_page/web_page.js:124
+#. Label of the meta_description (Small Text) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:124
msgid "Meta Description"
-msgstr "Meta omschrijving"
+msgstr ""
-#. Label of a Small Text field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Meta Description"
-msgstr "Meta omschrijving"
-
-#. Label of a Small Text field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Meta Description"
-msgstr "Meta omschrijving"
-
-#: website/doctype/web_page/web_page.js:131
+#. Label of the meta_image (Attach Image) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:131
msgid "Meta Image"
-msgstr "Meta afbeelding"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Meta Image"
-msgstr "Meta afbeelding"
-
-#. Label of a Attach Image field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Meta Image"
-msgstr "Meta afbeelding"
-
-#. Label of a Section Break field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the meta_tags (Section Break) field in DocType 'Blog Post'
+#. Label of the metatags_section (Section Break) field in DocType 'Web Page'
+#. Label of the meta_tags (Table) field in DocType 'Website Route Meta'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_route_meta/website_route_meta.json
msgid "Meta Tags"
-msgstr "Meta-tags"
+msgstr ""
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Meta Tags"
-msgstr "Meta-tags"
-
-#. Label of a Table field in DocType 'Website Route Meta'
-#: website/doctype/website_route_meta/website_route_meta.json
-msgctxt "Website Route Meta"
-msgid "Meta Tags"
-msgstr "Meta-tags"
-
-#: website/doctype/web_page/web_page.js:117
+#. Label of the meta_title (Data) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:117
msgid "Meta Title"
-msgstr "Metatitel"
+msgstr ""
-#. Label of a Data field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Meta Title"
-msgstr "Metatitel"
+#. Label of the meta_description (Small Text) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Meta description"
+msgstr ""
-#. Label of a Data field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Meta Title"
-msgstr "Metatitel"
+#. Label of the meta_image (Attach Image) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Meta image"
+msgstr ""
-#: website/doctype/web_page/web_page.js:110
+#. Label of the meta_title (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Meta title"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:110
msgid "Meta title for SEO"
-msgstr "Metatitel voor SEO"
-
-#. Label of a Data field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
-msgid "Method"
-msgstr "Methode"
-
-#. Label of a Select field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Method"
-msgstr "Methode"
+msgstr ""
+#. Label of the method (Data) field in DocType 'Access Log'
+#. Label of the method (Data) field in DocType 'API Request Log'
+#. Label of the method (Select) field in DocType 'Recorder'
+#. Label of the method (Data) field in DocType 'Scheduled Job Type'
+#. Label of the method (Data) field in DocType 'Scheduler Event'
+#. Label of the method (Data) field in DocType 'Number Card'
+#. Label of the auth_method (Select) field in DocType 'Email Account'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/api_request_log/api_request_log.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/scheduler_event/scheduler_event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/notification/notification.json
msgid "Method"
-msgstr "Methode"
+msgstr ""
-#. Label of a Data field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Method"
-msgstr "Methode"
+#: frappe/__init__.py:672
+msgid "Method Not Allowed"
+msgstr ""
-#. Label of a Select field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "Method"
-msgstr "Methode"
-
-#. Label of a Data field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Method"
-msgstr "Methode"
-
-#: desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:73
msgid "Method is required to create a number card"
msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Mid Center"
msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the middle_name (Data) field in DocType 'Contact'
+#. Label of the middle_name (Data) field in DocType 'User'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.json
msgid "Middle Name"
-msgstr "Midden-naam"
-
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Middle Name"
-msgstr "Midden-naam"
+msgstr ""
#. Name of a DocType
-#: automation/doctype/milestone/milestone.json
-msgid "Milestone"
-msgstr "Mijlpaal"
-
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Milestone"
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/automation/workspace/tools/tools.json
msgid "Milestone"
-msgstr "Mijlpaal"
+msgstr ""
+#. Label of the milestone_tracker (Link) field in DocType 'Milestone'
#. Name of a DocType
-#: automation/doctype/milestone_tracker/milestone_tracker.json
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Milestone Tracker"
-msgstr "Milestone Tracker"
-
-#. Label of a Link field in DocType 'Milestone'
-#: automation/doctype/milestone/milestone.json
-msgctxt "Milestone"
-msgid "Milestone Tracker"
-msgstr "Milestone Tracker"
+msgstr ""
#. Option for the 'Function' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Minimum"
-msgstr "Minimum"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the minimum_password_score (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Minimum Password Score"
-msgstr "Minimum wachtwoord score"
+msgstr ""
-#. Label of a Int field in DocType 'Package Release'
-#: core/doctype/package_release/package_release.json
-msgctxt "Package Release"
+#. Label of the minor (Int) field in DocType 'Package Release'
+#: frappe/core/doctype/package_release/package_release.json
msgid "Minor"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:100
-#: integrations/doctype/ldap_settings/ldap_settings.py:105
-#: integrations/doctype/ldap_settings/ldap_settings.py:114
-#: integrations/doctype/ldap_settings/ldap_settings.py:122
-#: integrations/doctype/ldap_settings/ldap_settings.py:332
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Minutes After"
+msgstr ""
+
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Minutes Before"
+msgstr ""
+
+#. Label of the minutes_offset (Int) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Minutes Offset"
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:103
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:117
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:125
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333
msgid "Misconfigured"
msgstr ""
-#: desk/form/meta.py:213
+#: frappe/desk/page/setup_wizard/install_fixtures.py:49
+msgid "Miss"
+msgstr ""
+
+#: frappe/desk/form/meta.py:218
msgid "Missing DocType"
msgstr ""
-#: core/doctype/doctype/doctype.py:1477
+#: frappe/core/doctype/doctype/doctype.py:1526
msgid "Missing Field"
msgstr ""
-#: public/js/frappe/form/save.js:178
+#: frappe/public/js/frappe/form/save.js:131
msgid "Missing Fields"
-msgstr "ontbrekende velden"
+msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.py:123
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
msgid "Missing Filters Required"
msgstr ""
-#: desk/form/assign_to.py:105
+#: frappe/desk/form/assign_to.py:110
msgid "Missing Permission"
msgstr ""
-#: www/update-password.html:107 www/update-password.html:114
+#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
msgid "Missing Value"
msgstr ""
-#: public/js/frappe/ui/field_group.js:118
-#: public/js/frappe/widgets/widget_dialog.js:330
-#: public/js/workflow_builder/store.js:97
-#: workflow/doctype/workflow/workflow.js:71
+#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/widgets/widget_dialog.js:361
+#: frappe/public/js/workflow_builder/store.js:97
+#: frappe/workflow/doctype/workflow/workflow.js:71
msgid "Missing Values Required"
-msgstr "Ontbrekende waarden vereist"
+msgstr ""
-#: www/login.py:96
+#: frappe/www/login.py:107
msgid "Mobile"
msgstr ""
-#: tests/test_translate.py:86 tests/test_translate.py:89
-#: tests/test_translate.py:91 tests/test_translate.py:94
+#. Label of the mobile_no (Data) field in DocType 'Contact'
+#. Label of the mobile_no (Data) field in DocType 'User'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.json frappe/tests/test_translate.py:86
+#: frappe/tests/test_translate.py:89 frappe/tests/test_translate.py:91
+#: frappe/tests/test_translate.py:94
msgid "Mobile No"
-msgstr "Mobiel nummer"
+msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Mobile No"
-msgstr "Mobiel nummer"
-
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Mobile No"
-msgstr "Mobiel nummer"
-
-#. Label of a Check field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
msgstr ""
-#. Label of a Card Break in the Build Workspace
-#: core/workspace/build/build.json
-msgid "Models"
-msgstr ""
-
-#: core/report/transaction_log_report/transaction_log_report.py:106
-#: social/doctype/energy_point_rule/energy_point_rule.js:43
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:106
msgid "Modified By"
-msgstr "Aangepast door"
-
-#: core/doctype/doctype/doctype_list.js:17
-msgid "Module"
-msgstr "module"
-
-#. Label of a Data field in DocType 'Block Module'
-#: core/doctype/block_module/block_module.json
-msgctxt "Block Module"
-msgid "Module"
-msgstr "module"
-
-#. Label of a Link field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
-msgid "Module"
-msgstr "module"
-
-#. Label of a Link field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Module"
-msgstr "module"
-
-#. Label of a Link field in DocType 'Dashboard Chart Source'
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
-msgctxt "Dashboard Chart Source"
-msgid "Module"
-msgstr "module"
-
-#. Label of a Link field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Module"
-msgstr "module"
-
-#. Label of a Link field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Module"
-msgstr "module"
-
-#. Label of a Link field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Module"
-msgstr "module"
-
-#. Label of a Link field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Module"
-msgstr "module"
-
-#. Label of a Link field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Module"
-msgstr "module"
-
-#. Label of a Link field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Module"
-msgstr "module"
-
-#. Label of a Link field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Module"
-msgstr "module"
-
-#. Label of a Link field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
-msgid "Module"
-msgstr "module"
-
-#. Label of a Link field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Module"
-msgstr "module"
-
-#. Label of a Link field in DocType 'User Type Module'
-#: core/doctype/user_type_module/user_type_module.json
-msgctxt "User Type Module"
-msgid "Module"
-msgstr "module"
-
-#. Label of a Link field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Module"
-msgstr "module"
-
-#. Label of a Link field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
-msgid "Module"
-msgstr "module"
-
-#. Label of a Link field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Module"
-msgstr "module"
-
-#. Label of a Link field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Module"
-msgstr "module"
-
-#. Label of a Link field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
-msgid "Module (for export)"
msgstr ""
-#. Label of a Link field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Module (for export)"
+#. Label of the module (Data) field in DocType 'Block Module'
+#. Label of the module (Link) field in DocType 'DocType'
+#. Label of the module (Link) field in DocType 'Page'
+#. Label of the module (Link) field in DocType 'Report'
+#. Label of the module (Link) field in DocType 'User Type Module'
+#. Label of the module (Link) field in DocType 'Dashboard'
+#. Label of the module (Link) field in DocType 'Dashboard Chart'
+#. Label of the module (Link) field in DocType 'Dashboard Chart Source'
+#. Label of the module (Link) field in DocType 'Form Tour'
+#. Label of the module (Link) field in DocType 'Module Onboarding'
+#. Label of the module (Link) field in DocType 'Number Card'
+#. Label of the module (Link) field in DocType 'Workspace'
+#. Label of the module (Link) field in DocType 'Notification'
+#. Label of the module (Link) field in DocType 'Print Format'
+#. Label of the module (Link) field in DocType 'Print Format Field Template'
+#. Label of the module (Link) field in DocType 'Web Form'
+#. Label of the module (Link) field in DocType 'Web Template'
+#. Label of the module (Link) field in DocType 'Website Theme'
+#: frappe/core/doctype/block_module/block_module.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
+#: frappe/core/doctype/user_type_module/user_type_module.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/public/js/frappe/utils/utils.js:926
+#: 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 a Link field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
-msgid "Module (for export)"
-msgstr ""
-
-#. Label of a Link field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Module (for export)"
-msgstr ""
-
-#. Label of a Link field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the module (Link) field in DocType 'Server Script'
+#. Label of the module (Link) field in DocType 'Client Script'
+#. Label of the module (Link) field in DocType 'Custom Field'
+#. Label of the module (Link) field in DocType 'Property Setter'
+#. Label of the module (Link) field in DocType 'Web Page'
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Module (for export)"
msgstr ""
#. Name of a DocType
-#: core/doctype/module_def/module_def.json
-msgid "Module Def"
-msgstr "Module Def"
-
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Module Def"
+#. Label of a shortcut in the Build Workspace
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/workspace/build/build.json
msgid "Module Def"
-msgstr "Module Def"
+msgstr ""
-#. Linked DocType in Package's connections
-#: core/doctype/package/package.json
-msgctxt "Package"
-msgid "Module Def"
-msgstr "Module Def"
-
-#. Label of a HTML field in DocType 'Module Profile'
-#: core/doctype/module_profile/module_profile.json
-msgctxt "Module Profile"
+#. Label of the module_html (HTML) field in DocType 'Module Profile'
+#: frappe/core/doctype/module_profile/module_profile.json
msgid "Module HTML"
msgstr ""
-#. Label of a Data field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#. Label of the module_name (Data) field in DocType 'Module Def'
+#. Label of the module_name (Data) field in DocType 'Desktop Icon'
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Module Name"
-msgstr "Modulenaam"
-
-#. Label of a Data field in DocType 'Module Def'
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Module Name"
-msgstr "Modulenaam"
-
-#. Name of a DocType
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgid "Module Onboarding"
-msgstr "Module onboarding"
+msgstr ""
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Module Onboarding"
+#. Name of a DocType
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Module Onboarding"
-msgstr "Module onboarding"
+msgstr ""
#. Name of a DocType
-#: core/doctype/module_profile/module_profile.json
-msgid "Module Profile"
-msgstr ""
-
+#. Label of the module_profile (Link) field in DocType 'User'
#. Label of a Link in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "Module Profile"
+#: frappe/core/doctype/module_profile/module_profile.json
+#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
msgid "Module Profile"
msgstr ""
-#. Label of a Link field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Module Profile"
-msgstr ""
-
-#. Label of a Data field in DocType 'Module Profile'
-#: core/doctype/module_profile/module_profile.json
-msgctxt "Module Profile"
+#. Label of the module_profile_name (Data) field in DocType 'Module Profile'
+#: frappe/core/doctype/module_profile/module_profile.json
msgid "Module Profile Name"
msgstr ""
-#: desk/doctype/module_onboarding/module_onboarding.py:68
+#: frappe/desk/doctype/module_onboarding/module_onboarding.py:69
msgid "Module onboarding progress reset"
msgstr ""
-#: custom/doctype/customize_form/customize_form.js:208
+#: frappe/custom/doctype/customize_form/customize_form.js:250
msgid "Module to Export"
-msgstr "Module exporteren"
+msgstr ""
-#: modules/utils.py:261
+#: frappe/modules/utils.py:273
msgid "Module {} not found"
msgstr ""
-#. Label of a Card Break in the Build Workspace
-#: core/workspace/build/build.json
-msgid "Modules"
-msgstr "modules"
-
#. Group in Package's connections
-#: core/doctype/package/package.json
-msgctxt "Package"
+#. Label of a Card Break in the Build Workspace
+#: frappe/core/doctype/package/package.json
+#: frappe/core/workspace/build/build.json
msgid "Modules"
-msgstr "modules"
+msgstr ""
-#. Label of a HTML field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the modules_html (HTML) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Modules HTML"
-msgstr "Modules HTML"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Monday"
-msgstr "Maandag"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Monday"
-msgstr "Maandag"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Monday"
-msgstr "Maandag"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Monday"
-msgstr "Maandag"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the monday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Monday"
-msgstr "Maandag"
+msgstr ""
+
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Monitor logs for errors, background jobs, communications, and user activity"
+msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Monospace"
-msgstr "Monospace"
+msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:268
+#: frappe/public/js/frappe/views/calendar/calendar.js:275
msgid "Month"
-msgstr "Maand"
-
-#: public/js/frappe/utils/common.js:400
-#: website/report/website_analytics/website_analytics.js:25
-msgid "Monthly"
-msgstr "Maandelijks"
-
-#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Monthly"
-msgstr "Maandelijks"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Monthly"
-msgstr "Maandelijks"
-
+#. 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'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Monthly"
-msgstr "Maandelijks"
-
-#. Option for the 'Point Allocation Periodicity' (Select) field in DocType
-#. 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Monthly"
-msgstr "Maandelijks"
-
#. Option for the 'Repeat On' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Monthly"
-msgstr "Maandelijks"
-
#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Monthly"
-msgstr "Maandelijks"
-
+#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
+#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
#. Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
+#: frappe/public/js/frappe/utils/common.js:400
+#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
-msgstr "Maandelijks"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Monthly"
-msgstr "Maandelijks"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Monthly"
-msgstr "Maandelijks"
-
-#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Monthly Long"
-msgstr "Maandelijks lang"
+msgstr ""
-#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Monthly Long"
-msgstr "Maandelijks lang"
-
-#: public/js/frappe/form/link_selector.js:39
-#: public/js/frappe/form/multi_select_dialog.js:43
-#: public/js/frappe/form/multi_select_dialog.js:70
-#: templates/includes/list/list.html:23
-#: templates/includes/search_template.html:13
+#: frappe/public/js/frappe/form/link_selector.js:39
+#: frappe/public/js/frappe/form/multi_select_dialog.js:45
+#: frappe/public/js/frappe/form/multi_select_dialog.js:72
+#: frappe/public/js/frappe/ui/toolbar/search.js:285
+#: frappe/public/js/frappe/ui/toolbar/search.js:300
+#: frappe/public/js/frappe/widgets/chart_widget.js:729
+#: frappe/templates/includes/list/list.html:25
+#: frappe/templates/includes/search_template.html:13
msgid "More"
-msgstr "Meer"
+msgstr ""
-#. Label of a Section Break field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. 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'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/user/user.json
msgid "More Information"
-msgstr "Meer informatie"
+msgstr ""
-#. Label of a Section Break field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "More Information"
-msgstr "Meer informatie"
-
-#. Label of a Section Break field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "More Information"
-msgstr "Meer informatie"
-
-#. Label of a Tab Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "More Information"
-msgstr "Meer informatie"
-
-#: website/doctype/help_article/templates/help_article.html:19
-#: website/doctype/help_article/templates/help_article.html:33
+#: frappe/website/doctype/help_article/templates/help_article.html:19
+#: frappe/website/doctype/help_article/templates/help_article.html:33
msgid "More articles on {0}"
-msgstr "Meer artikelen over {0}"
+msgstr ""
#. Description of the 'Footer' (Text Editor) field in DocType 'About Us
#. Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "More content for the bottom of the page."
-msgstr "Meer inhoud voor de onderkant van de pagina."
+msgstr ""
-#: public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:193
msgid "Most Used"
-msgstr "Meest gebruikt"
+msgstr ""
-#: utils/password.py:65
+#: frappe/utils/password.py:76
msgid "Most probably your password is too long."
msgstr ""
-#: core/doctype/communication/communication.js:86
-#: core/doctype/communication/communication.js:194
-#: core/doctype/communication/communication.js:212
+#: frappe/core/doctype/communication/communication.js:86
+#: frappe/core/doctype/communication/communication.js:194
+#: frappe/core/doctype/communication/communication.js:212
+#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "Move"
-msgstr "Verhuizing"
+msgstr ""
-#: public/js/frappe/form/grid_row.js:189
+#: frappe/public/js/frappe/form/grid_row.js:193
msgid "Move To"
-msgstr "Verplaatsen naar"
+msgstr ""
-#: core/doctype/communication/communication.js:104
+#: frappe/core/doctype/communication/communication.js:104
msgid "Move To Trash"
-msgstr "Verplaatsen naar prullenbak"
+msgstr ""
-#: public/js/frappe/form/form.js:176
+#: frappe/public/js/form_builder/components/Section.vue:295
+msgid "Move current and all subsequent sections to a new tab"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:177
msgid "Move cursor to above row"
msgstr ""
-#: public/js/frappe/form/form.js:180
+#: frappe/public/js/frappe/form/form.js:181
msgid "Move cursor to below row"
msgstr ""
-#: public/js/frappe/form/form.js:184
+#: frappe/public/js/frappe/form/form.js:185
msgid "Move cursor to next column"
msgstr ""
-#: public/js/frappe/form/form.js:188
+#: frappe/public/js/frappe/form/form.js:189
msgid "Move cursor to previous column"
msgstr ""
-#: public/js/frappe/form/grid_row.js:165
+#: frappe/public/js/form_builder/components/Section.vue:294
+msgid "Move sections to new tab"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Field.vue:237
+msgid "Move the current field and the following fields to a new column"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:168
msgid "Move to Row Number"
-msgstr "Ga naar rijnummer"
+msgstr ""
#. Description of the 'Next on Click' (Check) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Move to next step when clicked inside highlighted area."
msgstr ""
#. Description of the 'Parent Element Selector' (Data) field in DocType 'Form
#. Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Mozilla doesn't support :has() so you can pass parent selector here as workaround"
msgstr ""
-#: utils/nestedset.py:334
-msgid "Multiple root nodes not allowed."
-msgstr "Meerdere hoofdnodes niet toegestaan ."
+#: frappe/desk/page/setup_wizard/install_fixtures.py:43
+msgid "Mr"
+msgstr ""
-#. Label of a Select field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Multiplier Field"
-msgstr "Vermenigvuldiger veld"
+#: frappe/desk/page/setup_wizard/install_fixtures.py:47
+msgid "Mrs"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:44
+msgid "Ms"
+msgstr ""
+
+#: frappe/utils/nestedset.py:331
+msgid "Multiple root nodes not allowed."
+msgstr ""
#. Description of the 'Import from Google Sheets' (Data) field in DocType 'Data
#. Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/core/doctype/data_import/data_import.json
msgid "Must be a publicly accessible Google Sheets URL"
-msgstr "Moet een openbaar toegankelijke URL van Google Spreadsheets zijn"
+msgstr ""
#. Description of the 'LDAP Search String' (Data) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Must be enclosed in '()' and include '{0}', which is a placeholder for the user/login name. i.e. (&(objectclass=user)(uid={0}))"
msgstr ""
-#. Description of the 'Image Field' (Data) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Must be of type \"Attach Image\""
-msgstr "Moet van het type zijn "Attach Image""
-
#. Description of the 'Image Field' (Data) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Description of the 'Image Field' (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Must be of type \"Attach Image\""
-msgstr "Moet van het type zijn "Attach Image""
-
-#: desk/query_report.py:202
-msgid "Must have report permission to access this report."
-msgstr "Moet rapport toestemming hebben, om toegang tot dit rapport te krijgen."
-
-#: core/doctype/report/report.py:148
-msgid "Must specify a Query to run"
-msgstr "Moet een query opgeven om te draaien"
-
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Mute Sounds"
-msgstr "Mute Sounds"
-
-#: templates/includes/web_sidebar.html:41
-#: website/doctype/web_form/web_form.py:401
-#: website/doctype/website_settings/website_settings.py:181 www/list.py:21
-#: www/me.html:4 www/me.html:8 www/update_password.py:10
-msgid "My Account"
-msgstr "Mijn Account"
-
-#. Label of a standard navbar item
-#. Type: Route
-#: hooks.py
-msgid "My Profile"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: hooks.py
-msgid "My Settings"
+#: frappe/desk/query_report.py:208
+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:462
+#: 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'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "MyISAM"
-msgstr "MyISAM"
+msgstr ""
-#: workflow/doctype/workflow/workflow.js:19
+#: frappe/workflow/doctype/workflow/workflow.js:19
msgid "NOTE: If you add states or transitions in the table, it will be reflected in the Workflow Builder but you will have to position them manually. Also Workflow Builder is currently in BETA."
msgstr ""
#. Description of the 'LDAP Group Field' (Data) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "NOTE: This box is due for depreciation. Please re-setup LDAP to work with the newer settings"
msgstr ""
-#: public/js/frappe/form/layout.js:75
-#: public/js/frappe/form/multi_select_dialog.js:239
-#: public/js/frappe/form/save.js:154
-#: public/js/frappe/views/file/file_view.js:97
-#: website/doctype/website_slideshow/website_slideshow.js:25
+#. Label of the fieldname (Data) field in DocType 'DocField'
+#. Label of the fieldname (Data) field in DocType 'Customize Form Field'
+#. Label of the label (Data) field in DocType 'Workspace'
+#. Label of the webhook_name (Data) field in DocType 'Slack Webhook URL'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype_list.js:22
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
+#: frappe/public/js/frappe/form/layout.js:77
+#: frappe/public/js/frappe/form/multi_select_dialog.js:240
+#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/views/file/file_view.js:97
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
-msgstr "Naam"
+msgstr ""
-#. Label of a Data field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Name"
-msgstr "Naam"
+#: frappe/integrations/doctype/webhook/webhook.js:29
+msgid "Name (Doc Name)"
+msgstr ""
-#. Label of a Data field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Name"
-msgstr "Naam"
-
-#. Label of a Data field in DocType 'Slack Webhook URL'
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.json
-msgctxt "Slack Webhook URL"
-msgid "Name"
-msgstr "Naam"
-
-#. Label of a Data field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Name"
-msgstr "Naam"
-
-#: desk/utils.py:22
+#: frappe/desk/utils.py:22
msgid "Name already taken, please set a new name"
msgstr ""
-#: model/naming.py:460
+#: frappe/model/naming.py:504
msgid "Name cannot contain special characters like {0}"
-msgstr "Naam kan geen speciale tekens zoals bevatten {0}"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:91
+#: frappe/custom/doctype/custom_field/custom_field.js:91
msgid "Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer"
-msgstr "Naam van het type document (DocType) u wilt dit gebied moeten worden gekoppeld. bijvoorbeeld Customer"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:117
+#: frappe/printing/page/print_format_builder/print_format_builder.js:117
msgid "Name of the new Print Format"
-msgstr "Naam van de nieuwe Print Format"
+msgstr ""
-#: model/naming.py:454
+#: frappe/model/naming.py:499
msgid "Name of {0} cannot be {1}"
-msgstr "Naam van {0} kan niet {1} zijn"
+msgstr ""
-#: utils/password_strength.py:178
+#: frappe/utils/password_strength.py:174
msgid "Names and surnames by themselves are easy to guess."
-msgstr "Voor- en achternamen door zelf zijn makkelijk te raden."
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the sb1 (Tab Break) field in DocType 'DocType'
+#. Label of the naming_section (Section Break) field in DocType 'Document
+#. Naming Rule'
+#. Label of the naming_section (Section Break) field in DocType 'Customize
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Naming"
-msgstr "Benaming"
-
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Naming"
-msgstr "Benaming"
-
-#. Label of a Section Break field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
-msgid "Naming"
-msgstr "Benaming"
-
-#. Description of the 'Auto Name' (Data) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid ""
-"Naming Options:\n"
-"Reference: {{ reference_doctype }} {{ reference_name }} to send document reference"
-msgstr "Protip: Toevoegen Reference: {{ reference_doctype }} {{ reference_name }} te sturen documentverwijzing"
+msgstr ""
-#: core/doctype/document_naming_rule/document_naming_rule.js:22
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22
msgid "Proceed"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Proceed Anyway"
-msgstr "Ga toch door"
+msgstr ""
-#: public/js/frappe/form/controls/table.js:88
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
-msgstr "Verwerken"
+msgstr ""
-#: email/doctype/email_queue/email_queue.py:407
+#: frappe/email/doctype/email_queue/email_queue_list.js:52
msgid "Processing..."
-msgstr "Verwerken..."
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:51
+msgid "Prof"
+msgstr ""
#. Group in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Profile"
msgstr ""
-#: public/js/frappe/socketio_client.js:78
+#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
-msgstr "Vooruitgang"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:405
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
msgid "Project"
-msgstr "Project"
+msgstr ""
-#. Label of a Data field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#. Label of the property (Data) field in DocType 'Property Setter'
+#: frappe/core/doctype/version/version_view.html:12
+#: frappe/core/doctype/version/version_view.html:37
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
-msgstr "Eigendom"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the property_depends_on_section (Section Break) field in DocType
+#. 'Customize Form Field'
+#. Label of the property_depends_on_section (Section Break) field in DocType
+#. 'Web Form Field'
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Property Depends On"
-msgstr "Eigendom hangt af van"
-
-#. Label of a Section Break field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Property Depends On"
-msgstr "Eigendom hangt af van"
+msgstr ""
#. Name of a DocType
-#: custom/doctype/property_setter/property_setter.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property Setter"
-msgstr "Eigenschappen Insteller"
+msgstr ""
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Property Setter"
-msgstr "Eigenschappen Insteller"
+#. Description of a DocType
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "Property Setter overrides a standard DocType or Field property"
+msgstr ""
-#. Label of a Data field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#. Label of the property_type (Data) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property Type"
-msgstr "Eigendom 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:501
+msgid "Protected File"
+msgstr ""
#. Description of the 'Allowed File Extensions' (Small Text) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Provide a list of allowed file extensions for file uploads. Each line should contain one allowed file type. If unset, all file extensions are allowed. Example: \n"
"[{\n"
"\tfieldname: \"company\",\n"
@@ -28069,11 +23638,8 @@ msgid ""
msgstr ""
#. Description of the 'Method' (Data) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid ""
-"Set the path to a whitelisted function that will return the data for the number card in the format:\n"
-"\n"
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Set the path to a whitelisted function that will return the data for the number card in the format:\n\n"
"\n"
"{\n"
"\t\"value\": value,\n"
@@ -28083,9824 +23649,8080 @@ msgid ""
"}
"
msgstr ""
-#: contacts/doctype/address_template/address_template.py:32
+#: frappe/contacts/doctype/address_template/address_template.py:33
msgid "Setting this Address Template as default as there is no other default"
-msgstr "Dit adres Template instellen als standaard als er geen andere standaard"
+msgstr ""
-#: desk/doctype/global_search_settings/global_search_settings.py:85
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:86
msgid "Setting up Global Search documents."
-msgstr "Global Search-documenten instellen."
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:273
+#: frappe/desk/page/setup_wizard/setup_wizard.js:285
msgid "Setting up your system"
-msgstr "Uw systeem instellen"
+msgstr ""
-#. Label of a Card Break in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-#: public/js/frappe/ui/toolbar/toolbar.js:254
-#: public/js/frappe/views/workspace/workspace.js:515
-msgid "Settings"
-msgstr "instellingen"
-
-#. Label of a Tab Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Settings"
-msgstr "instellingen"
-
-#. Label of a Tab Break field in DocType 'User'
+#. Label of the settings_tab (Tab Break) field in DocType 'DocType'
+#. Label of the settings_tab (Tab Break) field in DocType 'User'
#. Group in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Settings"
-msgstr "instellingen"
-
-#. Label of a Tab Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Settings"
-msgstr "instellingen"
-
-#. Label of a Tab Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Settings"
-msgstr "instellingen"
-
-#. Label of a Table field in DocType 'Navbar Settings'
-#: core/doctype/navbar_settings/navbar_settings.json
-msgctxt "Navbar Settings"
-msgid "Settings Dropdown"
-msgstr "Instellingen dropdown"
-
+#. Label of a Card Break in the Integrations Workspace
+#. Label of the settings_tab (Tab Break) field in DocType 'Web Form'
+#. Label of the settings (Tab Break) field in DocType 'Web Page'
#. Label of a Card Break in the Website Workspace
-#: public/js/frappe/ui/toolbar/search_utils.js:551
-#: website/workspace/website/website.json
-msgid "Setup"
-msgstr "Instellingen"
+#: 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:313
+#: 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 ""
+
+#. Description of a DocType
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Settings to control blog categories and interactions like comments and likes"
+msgstr ""
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567
msgid "Setup"
-msgstr "Instellingen"
-
-#. Title of an Onboarding Step
-#: custom/onboarding_step/workflows/workflows.json
-msgid "Setup Approval Workflows"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1658
-#: public/js/frappe/views/reports/report_view.js:1609
+#: 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:1763
+#: frappe/public/js/frappe/views/reports/report_view.js:1698
msgid "Setup Auto Email"
-msgstr "Setup Auto E-mail"
-
-#: desk/page/setup_wizard/setup_wizard.js:204
-msgid "Setup Complete"
-msgstr "Installatie voltooid"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Setup Complete"
-msgstr "Installatie voltooid"
-
-#. Title of an Onboarding Step
-#: custom/onboarding_step/role_permissions/role_permissions.json
-msgid "Setup Limited Access for a User"
msgstr ""
-#. Title of an Onboarding Step
-#: custom/onboarding_step/naming_series/naming_series.json
-msgid "Setup Naming Series"
+#. 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 a Section Break field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the setup_series (Section Break) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Setup Series for transactions"
msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Share"
-msgstr "Delen"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Share"
-msgstr "Delen"
-
-#. Label of a Check field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "Share"
-msgstr "Delen"
+#: frappe/desk/page/setup_wizard/setup_wizard.js:236
+msgid "Setup failed"
+msgstr ""
+#. Label of the share (Check) field in DocType 'Custom DocPerm'
+#. Label of the share (Check) field in DocType 'DocPerm'
+#. Label of the share (Check) field in DocType 'DocShare'
+#. Label of the share (Check) field in DocType 'User Document Type'
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:90
msgid "Share"
-msgstr "Delen"
+msgstr ""
-#: public/js/frappe/form/sidebar/share.js:107
+#: frappe/public/js/frappe/form/sidebar/share.js:107
msgid "Share With"
-msgstr "Delen met"
+msgstr ""
-#: public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/templates/set_sharing.html:49
+msgid "Share this document with"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/share.js:45
msgid "Share {0} with"
-msgstr "Delen {0} met"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Shared"
-msgstr "gedeelde"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Shared"
-msgstr "gedeelde"
-
-#: desk/form/assign_to.py:127
+#: frappe/desk/form/assign_to.py:132
msgid "Shared with the following Users with Read access:{0}"
-msgstr "Gedeeld met de volgende gebruikers met leestoegang: {0}"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Shipping"
-msgstr "Logistiek"
+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'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Shop"
-msgstr "Winkelen"
+msgstr ""
-#. Label of a Data field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
+#. Label of the short_name (Data) field in DocType 'Blogger'
+#: frappe/website/doctype/blogger/blogger.json
msgid "Short Name"
-msgstr "Korte Naam"
+msgstr ""
-#: utils/password_strength.py:93
+#: frappe/utils/password_strength.py:91
msgid "Short keyboard patterns are easy to guess"
-msgstr "Kort toetsenbord patronen zijn makkelijk te raden"
+msgstr ""
-#. Label of a Table field in DocType 'Workspace'
-#. Label of a Tab Break field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the shortcuts (Table) field in DocType 'Workspace'
+#. Label of the tab_break_15 (Tab Break) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "Shortcuts"
-msgstr "shortcuts"
+msgstr ""
-#: public/js/frappe/widgets/base_widget.js:46
-#: public/js/frappe/widgets/base_widget.js:176 www/login.html:30
+#: frappe/public/js/frappe/widgets/base_widget.js:46
+#: frappe/public/js/frappe/widgets/base_widget.js:178
+#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
msgid "Show"
-msgstr "Tonen"
+msgstr ""
-#. Label of a Check field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Show \"Call to Action\" in Blog"
msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the absolute_value (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Absolute Values"
msgstr ""
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Show Attachments"
-msgstr "Bijlagen weergeven"
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:73
+msgid "Show All"
+msgstr ""
-#: desk/doctype/calendar_view/calendar_view.js:10
+#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
-msgstr "Toon kalender"
+msgstr ""
-#. Label of a Check field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the symbol_on_right (Check) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
msgid "Show Currency Symbol on Right Side"
msgstr ""
-#: desk/doctype/dashboard/dashboard.js:6
+#. Label of the show_dashboard (Check) field in DocType 'DocField'
+#. Label of the show_dashboard (Check) field in DocType 'Custom Field'
+#. Label of the show_dashboard (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/dashboard/dashboard.js:6
msgid "Show Dashboard"
-msgstr "Dashboard weergeven"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Show Dashboard"
-msgstr "Dashboard weergeven"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Show Dashboard"
-msgstr "Dashboard weergeven"
-
-#. Label of a Button field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the show_document (Button) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "Show Document"
-msgstr "Document weergeven"
+msgstr ""
-#: www/error.html:41 www/error.html:59
+#: frappe/www/error.html:42 frappe/www/error.html:65
msgid "Show Error"
msgstr ""
-#. Label of a Check field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Show Failed Logs"
-msgstr "Mislukte logboeken weergeven"
-
-#: public/js/frappe/form/layout.js:545
+#: frappe/public/js/frappe/form/layout.js:579
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the first_document (Check) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Show First Document Tour"
msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
-#. Label of a Check field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the show_form_tour (Check) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show Form Tour"
-msgstr "Toon formuliertour"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the allow_error_traceback (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Show Full Error and Allow Reporting of Issues to the Developer"
-msgstr "Toon volledige fout en laat rapportage van problemen toe aan de ontwikkelaar"
+msgstr ""
-#. Label of a Check field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the show_full_form (Check) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show Full Form?"
-msgstr "Volledig formulier weergeven?"
+msgstr ""
-#: public/js/frappe/ui/keyboard.js:228
+#. Label of the show_full_number (Check) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Show Full Number"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/keyboard.js:234
msgid "Show Keyboard Shortcuts"
-msgstr "Sneltoetsen weergeven"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_settings.js:30
+#. Label of the show_labels (Check) field in DocType 'Kanban Board'
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:30
msgid "Show Labels"
msgstr ""
-#. Label of a Check field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Show Labels"
-msgstr ""
-
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the show_language_picker (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show Language Picker"
msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the line_breaks (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Line Breaks after Sections"
-msgstr "Show Line Breaks na Secties"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Show List"
msgstr ""
-#. Label of a Check field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/public/js/frappe/form/toolbar.js:407
+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 "Percentagestatistieken weergeven"
+msgstr ""
-#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:30
+#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30
msgid "Show Permissions"
-msgstr "Show Machtigingen"
+msgstr ""
-#: public/js/form_builder/form_builder.bundle.js:31
-#: public/js/form_builder/form_builder.bundle.js:43
-#: public/js/print_format_builder/print_format_builder.bundle.js:18
-#: public/js/print_format_builder/print_format_builder.bundle.js:54
+#: frappe/public/js/form_builder/form_builder.bundle.js:31
+#: frappe/public/js/form_builder/form_builder.bundle.js:43
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:18
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54
msgid "Show Preview"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the show_preview_popup (Check) field in DocType 'DocType'
+#. Label of the show_preview_popup (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Show Preview Popup"
-msgstr "Voorbeeldpop-up weergeven"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Show Preview Popup"
-msgstr "Voorbeeldpop-up weergeven"
-
-#. Label of a Check field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#. Label of the show_processlist (Check) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
msgid "Show Processlist"
msgstr ""
-#: core/doctype/error_log/error_log.js:9
+#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
msgstr ""
-#: core/doctype/prepared_report/prepared_report.js:43
-#: core/doctype/report/report.js:13
+#. Label of the show_report (Button) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.js:43
+#: frappe/core/doctype/report/report.js:16
msgid "Show Report"
-msgstr "Rapport weergeven"
+msgstr ""
-#. Label of a Button field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
-msgid "Show Report"
-msgstr "Rapport weergeven"
-
-#: public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:15
+#: frappe/public/js/frappe/list/list_filter.js:94
msgid "Show Saved"
msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the show_section_headings (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Section Headings"
-msgstr "Show koppen"
+msgstr ""
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the show_sidebar (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Show Sidebar"
-msgstr "Show Sidebar"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Show Sidebar"
-msgstr "Show Sidebar"
-
-#: public/js/frappe/list/list_view.js:1566
+#: frappe/public/js/frappe/list/list_sidebar.html:77
+#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
-msgstr "Toon labels"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the show_title (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Show Title"
-msgstr "Show Titel"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the show_title_field_in_link (Check) field in DocType 'DocType'
+#. Label of the show_title_field_in_link (Check) field in DocType 'Customize
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Show Title in Link Fields"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Show Title in Link Fields"
-msgstr ""
-
-#: public/js/frappe/views/reports/report_view.js:1453
+#: frappe/public/js/frappe/views/reports/report_view.js:1521
msgid "Show Totals"
-msgstr "Show Totalen"
+msgstr ""
-#: desk/doctype/form_tour/form_tour.js:116
+#: frappe/desk/doctype/form_tour/form_tour.js:116
msgid "Show Tour"
msgstr ""
-#: public/js/frappe/data_import/import_preview.js:200
+#: frappe/core/doctype/data_import/data_import.js:448
+msgid "Show Traceback"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
-msgstr "Waarschuwingen weergeven"
+msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:184
+#: frappe/public/js/frappe/views/calendar/calendar.js:179
msgid "Show Weekends"
-msgstr "Weekends weergeven"
+msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the show_account_deletion_link (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show account deletion link in My Account page"
msgstr ""
-#: core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:6
msgid "Show all Versions"
-msgstr "Alle versies"
+msgstr ""
-#: website/doctype/blog_post/templates/blog_post_list.html:24
+#: frappe/public/js/frappe/form/footer/form_timeline.js:69
+msgid "Show all activity"
+msgstr ""
+
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24
msgid "Show all blogs"
msgstr ""
-#. Label of a Small Text field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#. Label of the show_as_cc (Small Text) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Show as cc"
-msgstr "Toon als cc"
+msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the show_attachments (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Show attachments"
+msgstr ""
+
+#. Label of the show_footer_on_login (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show footer on login"
msgstr ""
#. Description of the 'Show Full Form?' (Check) field in DocType 'Onboarding
#. Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show full form instead of a quick entry modal"
-msgstr "Toon volledig formulier in plaats van een snel invoermodaal"
+msgstr ""
-#. Label of a Select field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the document_type (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Show in Module Section"
-msgstr "Show in Module Sectie"
+msgstr ""
-#. Label of a Check field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
-msgstr "Toon in filter"
+msgstr ""
-#. Label of a Check field in DocType 'Slack Webhook URL'
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.json
-msgctxt "Slack Webhook URL"
+#. Label of the show_document_link (Check) field in DocType 'Slack Webhook URL'
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
msgid "Show link to document"
msgstr ""
-#: public/js/frappe/form/layout.js:265
+#. Label of the show_list (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Show list"
+msgstr ""
+
+#: frappe/public/js/frappe/form/layout.js:273
+#: frappe/public/js/frappe/form/layout.js:291
msgid "Show more details"
-msgstr "Toon meer 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'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Show percentage difference according to this time interval"
-msgstr "Toon procentuele verschil volgens dit tijdsinterval"
+msgstr ""
+
+#. Label of the show_sidebar (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Show sidebar"
+msgstr ""
#. Description of the 'Title Prefix' (Data) field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show title in browser window as \"Prefix - title\""
-msgstr "Toon titel in browservenster als "Prefix - titel""
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:475
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:148
+msgid "Show {0} List"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:495
msgid "Showing only Numeric fields from Report"
-msgstr "Alleen Numerieke velden uit rapport weergeven"
+msgstr ""
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#: frappe/public/js/frappe/data_import/import_preview.js:153
+msgid "Showing only first {0} rows out of {1}"
+msgstr ""
+
+#. Label of the list_sidebar (Check) field in DocType 'User'
+#. Label of the form_sidebar (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Sidebar"
msgstr ""
-#. Label of a Table field in DocType 'Website Sidebar'
-#: website/doctype/website_sidebar/website_sidebar.json
-msgctxt "Website Sidebar"
+#. Label of the sidebar_items (Table) field in DocType 'Website Sidebar'
+#: frappe/website/doctype/website_sidebar/website_sidebar.json
msgid "Sidebar Items"
-msgstr "sidebar items"
+msgstr ""
-#. Label of a Section Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the section_break_4 (Section Break) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Sidebar Settings"
-msgstr "sidebar Instellingen"
+msgstr ""
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the section_break_17 (Section Break) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Sidebar and Comments"
-msgstr "Sidebar en Reacties"
+msgstr ""
-#. Label of a Section Break field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#. Label of the sign_up_and_confirmation_section (Section Break) field in
+#. DocType 'Email Group'
+#: frappe/email/doctype/email_group/email_group.json
msgid "Sign Up and Confirmation"
msgstr ""
-#: core/doctype/user/user.py:972
+#: frappe/core/doctype/user/user.py:1016
msgid "Sign Up is disabled"
-msgstr "Aanmelden is uitgeschakeld"
+msgstr ""
-#: templates/signup.html:16 www/login.html:120 www/login.html:136
-#: www/update-password.html:35
+#: frappe/templates/signup.html:16 frappe/www/login.html:140
+#: frappe/www/login.html:156 frappe/www/update-password.html:58
msgid "Sign up"
-msgstr "Aanmelden"
+msgstr ""
-#. Label of a Select field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the sign_ups (Select) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Sign ups"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Signature"
-msgstr "Handtekening"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Signature"
-msgstr "Handtekening"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Signature"
-msgstr "Handtekening"
-
-#. Label of a Section Break field in DocType 'Email Account'
-#. Label of a Text Editor field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Signature"
-msgstr "Handtekening"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the signature_section (Section Break) field in DocType 'Email
+#. Account'
+#. Label of the signature (Text Editor) field in DocType 'Email Account'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Signature"
-msgstr "Handtekening"
+msgstr ""
-#: www/login.html:148
+#: frappe/www/login.html:168
msgid "Signup Disabled"
-msgstr "Aanmelden uitgeschakeld"
+msgstr ""
-#: www/login.html:149
+#: frappe/www/login.html:169
msgid "Signups have been disabled for this website."
-msgstr "Aanmeldingen voor deze website zijn uitgeschakeld."
+msgstr ""
#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
#. Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr "Eenvoudige Python-expressie, voorbeeld: status in ("Gesloten", "Geannuleerd")"
+msgstr ""
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
-msgstr "Eenvoudige Python-expressie, voorbeeld: status in ("Ongeldig")"
+msgstr ""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
-msgstr "Eenvoudige Python-expressie, voorbeeld: status == 'Open' en type == 'Bug'"
+msgstr ""
-#. Label of a Int field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the simultaneous_sessions (Int) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
-msgstr "Gelijktijdig Sessions"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:121
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Single DocTypes cannot be customized."
-msgstr "Enkele DocTypes kunnen niet worden aangepast."
-
-#: core/doctype/doctype/doctype_list.js:51
-msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
-msgstr "Enkele soorten hebben slechts een record geen tafels verbonden . Waarden worden opgeslagen in tabSingles"
+msgstr ""
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:67
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
-msgstr "Enkele soorten hebben slechts een record geen tafels verbonden . Waarden worden opgeslagen in tabSingles"
+msgstr ""
-#: database/database.py:230
+#: frappe/database/database.py:284
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
msgstr ""
-#: public/js/onboarding_tours/onboarding_tours.js:18
+#: frappe/public/js/frappe/views/file/file_view.js:337
+msgid "Size"
+msgstr ""
+
+#. 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 "Overspringen"
+msgstr ""
-#. Label of a Check field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
+#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
+#. Settings'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
msgid "Skip Authorization"
-msgstr "Sla Authorization"
+msgstr ""
-#. Label of a Select field in DocType 'OAuth Provider Settings'
-#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
-msgctxt "OAuth Provider Settings"
-msgid "Skip Authorization"
-msgstr "Sla Authorization"
-
-#: public/js/frappe/widgets/onboarding_widget.js:337
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:332
msgid "Skip Step"
-msgstr "Stap overslaan"
+msgstr ""
-#. Label of a Check field in DocType 'Patch Log'
-#: core/doctype/patch_log/patch_log.json
-msgctxt "Patch Log"
+#. Label of the skipped (Check) field in DocType 'Patch Log'
+#: frappe/core/doctype/patch_log/patch_log.json
msgid "Skipped"
msgstr ""
-#: core/doctype/data_import/importer.py:905
+#: frappe/core/doctype/data_import/importer.py:952
msgid "Skipping Duplicate Column {0}"
-msgstr "Dubbele kolom overslaan {0}"
+msgstr ""
-#: core/doctype/data_import/importer.py:930
+#: frappe/core/doctype/data_import/importer.py:977
msgid "Skipping Untitled Column"
-msgstr "Kolom zonder titel overslaan"
+msgstr ""
-#: core/doctype/data_import/importer.py:916
+#: frappe/core/doctype/data_import/importer.py:963
msgid "Skipping column {0}"
-msgstr "Kolom overslaan {0}"
+msgstr ""
-#: modules/utils.py:162
+#: frappe/modules/utils.py:176
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr ""
-#: core/doctype/data_import/data_import.js:39
+#: frappe/core/doctype/data_import/data_import.js:39
msgid "Skipping {0} of {1}, {2}"
msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the skype (Data) field in DocType 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Skype"
-msgstr "Skype"
+msgstr ""
#. Option for the 'Channel' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Slack"
-msgstr "speling"
+msgstr ""
-#. Label of a Link field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the slack_webhook_url (Link) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Slack Channel"
-msgstr "Slack Channel"
+msgstr ""
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:64
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65
msgid "Slack Webhook Error"
-msgstr "Slack Webhook-fout"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.json
-msgid "Slack Webhook URL"
-msgstr "Slack Webhook-URL"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Slack Webhook URL"
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Slack Webhook URL"
-msgstr "Slack Webhook-URL"
+msgstr ""
-#. Label of a Link field in DocType 'Web Page'
+#. Label of the slideshow (Link) field in DocType 'Web Page'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/website/doctype/web_page/web_page.json
msgid "Slideshow"
-msgstr "Diashow"
+msgstr ""
-#. Label of a Table field in DocType 'Website Slideshow'
-#: website/doctype/website_slideshow/website_slideshow.json
-msgctxt "Website Slideshow"
+#. Label of the slideshow_items (Table) field in DocType 'Website Slideshow'
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Items"
-msgstr "Diashow Items"
+msgstr ""
-#. Label of a Data field in DocType 'Website Slideshow'
-#: website/doctype/website_slideshow/website_slideshow.json
-msgctxt "Website Slideshow"
+#. Label of the slideshow_name (Data) field in DocType 'Website Slideshow'
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Name"
-msgstr "Diashow Naam"
+msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Small Text"
-msgstr "Kleine tekst"
+#. Description of a DocType
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
+msgid "Slideshow like display for the website"
+msgstr ""
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Small Text"
-msgstr "Kleine tekst"
+#. Label of the slug (Data) field in DocType 'UTM Campaign'
+#. Label of the slug (Data) field in DocType 'UTM Medium'
+#. Label of the slug (Data) field in DocType 'UTM Source'
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+msgid "Slug"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Small Text"
-msgstr "Kleine tekst"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Small Text"
-msgstr "Kleine tekst"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Small Text"
-msgstr "Kleine tekst"
+msgstr ""
-#. Label of a Currency field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the smallest_currency_fraction_value (Currency) field in DocType
+#. 'Currency'
+#: frappe/geo/doctype/currency/currency.json
msgid "Smallest Currency Fraction Value"
-msgstr "Kleinste Valuta fractiewaarde"
+msgstr ""
#. Description of the 'Smallest Currency Fraction Value' (Currency) field in
#. DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#: frappe/geo/doctype/currency/currency.json
msgid "Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01"
-msgstr "Kleinste circulerende fractie eenheid (munt). Voor bijvoorbeeld 1 cent voor USD en het moet worden ingevoerd als 0,01"
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.js:32
+msgid "Snippet and more variables: {0}"
+msgstr ""
#. Name of a DocType
-#: website/doctype/social_link_settings/social_link_settings.json
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "Social Link Settings"
-msgstr "Social Link-instellingen"
+msgstr ""
-#. Label of a Select field in DocType 'Social Link Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#. Label of the social_link_type (Select) field in DocType 'Social Link
+#. Settings'
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "Social Link Type"
-msgstr "Type sociale link"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/social_login_key/social_login_key.json
-msgid "Social Login Key"
-msgstr "Social Login Key"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Social Login Key"
-msgstr "Social Login Key"
+msgstr ""
-#. Label of a Select field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the social_login_provider (Select) field in DocType 'Social Login
+#. Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Social Login Provider"
-msgstr "Social Login Provider"
+msgstr ""
-#. Label of a Table field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the social_logins (Table) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Social Logins"
-msgstr "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'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Soft-Bounced"
-msgstr "Soft-Bounced"
+msgstr ""
-#: public/js/frappe/desk.js:20
+#: 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 "Sommige van de functies werken mogelijk niet in je browser. Update alstublieft uw browser naar de nieuwste versie."
+msgstr ""
-#: public/js/frappe/views/translation_manager.js:101
+#: frappe/public/js/frappe/views/translation_manager.js:101
msgid "Something went wrong"
-msgstr "Er ging iets mis"
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:116
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:133
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
-msgstr "Er is iets misgegaan tijdens de tokengeneratie. Klik op {0} om een nieuwe te genereren."
+msgstr ""
-#: public/js/frappe/views/pageview.js:110
+#: frappe/templates/includes/login/login.js:293
+msgid "Something went wrong."
+msgstr ""
+
+#: frappe/public/js/frappe/views/pageview.js:114
msgid "Sorry! I could not find what you were looking for."
-msgstr "Sorry! Ik kon niet vinden wat u zoekt."
+msgstr ""
-#: public/js/frappe/views/pageview.js:118
+#: frappe/public/js/frappe/views/pageview.js:122
msgid "Sorry! You are not permitted to view this page."
-msgstr "Sorry! U bent niet toegestaan om deze pagina te bekijken."
+msgstr ""
-#: public/js/frappe/utils/datatable.js:6
+#: frappe/public/js/frappe/utils/datatable.js:6
msgid "Sort Ascending"
msgstr ""
-#: public/js/frappe/utils/datatable.js:7
+#: frappe/public/js/frappe/utils/datatable.js:7
msgid "Sort Descending"
msgstr ""
-#. Label of a Select field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the sort_field (Select) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sort Field"
-msgstr "Sorteren Veld"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the sort_options (Check) field in DocType 'DocField'
+#. Label of the sort_options (Check) field in DocType 'Custom Field'
+#. Label of the sort_options (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Sort Options"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Sort Options"
-msgstr ""
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Sort Options"
-msgstr ""
-
-#. Label of a Select field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the sort_order (Select) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sort Order"
-msgstr "Sorteervolgorde"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1501
+#: frappe/core/doctype/doctype/doctype.py:1550
msgid "Sort field {0} must be a valid fieldname"
-msgstr "Sorteer veld {0} moet een geldige veldnaam te zijn"
+msgstr ""
-#: public/js/frappe/utils/utils.js:1705
-#: website/report/website_analytics/website_analytics.js:38
+#. Label of the source (Data) field in DocType 'Web Page View'
+#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
+#: frappe/public/js/frappe/utils/utils.js:1717
+#: 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 "Bron"
+msgstr ""
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Source"
-msgstr "Bron"
-
-#. Label of a Small Text field in DocType 'Website Route Redirect'
-#: website/doctype/website_route_redirect/website_route_redirect.json
-msgctxt "Website Route Redirect"
-msgid "Source"
-msgstr "Bron"
-
-#. Label of a Data field in DocType 'Dashboard Chart Source'
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
-msgctxt "Dashboard Chart Source"
+#. Label of the source_name (Data) field in DocType 'Dashboard Chart Source'
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
msgid "Source Name"
-msgstr "Bron naam"
+msgstr ""
-#: public/js/frappe/views/translation_manager.js:38
+#. Label of the source_text (Code) field in DocType 'Translation'
+#: frappe/core/doctype/translation/translation.json
+#: frappe/public/js/frappe/views/translation_manager.js:38
msgid "Source Text"
-msgstr "bron tekst"
+msgstr ""
-#. Label of a Code field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
-msgid "Source Text"
-msgstr "bron tekst"
+#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:23
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:174
+msgid "Spacer"
+msgstr ""
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Spam"
-msgstr "Spam"
+msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "SparkPost"
-msgstr "SparkPost"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:83
+#: frappe/custom/doctype/custom_field/custom_field.js:83
msgid "Special Characters are not allowed"
-msgstr "Speciale karakters zijn niet toegestaan"
+msgstr ""
-#: model/naming.py:58
+#: frappe/model/naming.py:68
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
-msgstr "Speciale tekens behalve "-", "#", ".", "/", "{{" En "}}" niet toegestaan in naamgevingsreeks {0}"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Description of the 'Timeout (In Seconds)' (Int) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Specify a custom timeout, default timeout is 1500 seconds"
+msgstr ""
+
+#. Description of the 'Allowed embedding domains' (Small Text) field in DocType
+#. 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin."
+msgstr ""
+
+#. Label of the splash_image (Attach Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Splash Image"
msgstr ""
-#: desk/reportview.py:365 templates/print_formats/standard_macros.html:44
+#: frappe/desk/reportview.py:419
+#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
-msgstr "Sr"
+msgstr ""
-#: core/doctype/recorder/recorder.js:33
+#: frappe/public/js/print_format_builder/Field.vue:143
+#: frappe/public/js/print_format_builder/Field.vue:164
+msgid "Sr No."
+msgstr ""
+
+#. Label of the stack_html (HTML) field in DocType 'Recorder Query'
+#: frappe/core/doctype/recorder/recorder.js:82
+#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Stack Trace"
msgstr ""
-#. Label of a HTML field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
-msgid "Stack Trace"
+#. 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 ""
-#: core/doctype/user_type/user_type_list.js:5
-msgid "Standard"
-msgstr "Standaard"
-
-#. Label of a Check field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Standard"
-msgstr "Standaard"
-
-#. Label of a Select field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Standard"
-msgstr "Standaard"
-
-#. Label of a Select field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Standard"
-msgstr "Standaard"
-
-#. Label of a Check field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
-msgid "Standard"
-msgstr "Standaard"
-
-#. Label of a Check field in DocType 'Print Style'
-#: printing/doctype/print_style/print_style.json
-msgctxt "Print Style"
-msgid "Standard"
-msgstr "Standaard"
-
-#. Label of a Check field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
-msgid "Standard"
-msgstr "Standaard"
-
-#: model/delete_doc.py:79
+#: frappe/model/delete_doc.py:78
msgid "Standard DocType can not be deleted."
msgstr ""
-#: core/doctype/doctype/doctype.py:228
+#: frappe/core/doctype/doctype/doctype.py:228
msgid "Standard DocType cannot have default print format, use Customize Form"
-msgstr "Standaard DocType kan niet standaard afdrukformaat hebben, gebruik maken van formulier aanpassen"
+msgstr ""
-#: desk/doctype/dashboard/dashboard.py:59
+#: frappe/desk/doctype/dashboard/dashboard.py:58
msgid "Standard Not Set"
-msgstr "Standaard niet ingesteld"
+msgstr ""
-#: printing/doctype/print_format/print_format.py:74
+#: frappe/core/page/permission_manager/permission_manager.js:132
+msgid "Standard Permissions"
+msgstr ""
+
+#: frappe/printing/doctype/print_format/print_format.py:75
msgid "Standard Print Format cannot be updated"
-msgstr "Standard Print Formaat kan niet worden bijgewerkt"
+msgstr ""
-#: printing/doctype/print_style/print_style.py:31
+#: frappe/printing/doctype/print_style/print_style.py:31
msgid "Standard Print Style cannot be changed. Please duplicate to edit."
-msgstr "Standaard afdrukstijl kan niet worden gewijzigd. Gelieve te dupliceren om te bewerken."
+msgstr ""
-#: desk/reportview.py:316
+#: frappe/desk/reportview.py:354
msgid "Standard Reports cannot be deleted"
msgstr ""
-#: desk/reportview.py:287
+#: frappe/desk/reportview.py:325
msgid "Standard Reports cannot be edited"
msgstr ""
-#. Label of a Section Break field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the standard_menu_items (Section Break) field in DocType 'Portal
+#. Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Standard Sidebar Menu"
-msgstr "Standard Sidebar Menu"
+msgstr ""
-#: core/doctype/role/role.py:61
+#: frappe/website/doctype/web_form/web_form.js:40
+msgid "Standard Web Forms can not be modified, duplicate the Web Form instead."
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "Standard rich text editor with controls"
+msgstr ""
+
+#: frappe/core/doctype/role/role.py:46
msgid "Standard roles cannot be disabled"
-msgstr "Standard rollen kan niet worden uitgeschakeld"
+msgstr ""
-#: core/doctype/role/role.py:48
+#: frappe/core/doctype/role/role.py:32
msgid "Standard roles cannot be renamed"
-msgstr "Standaard rollen kan niet worden hernoemd"
+msgstr ""
-#: core/doctype/user_type/user_type.py:60
+#: frappe/core/doctype/user_type/user_type.py:61
msgid "Standard user type {0} can not be deleted."
msgstr ""
-#: templates/emails/energy_points_summary.html:33
-msgid "Standings"
-msgstr "Standen"
-
-#: core/doctype/recorder/recorder_list.js:91 printing/page/print/print.js:289
-#: printing/page/print/print.js:336
+#: frappe/core/doctype/recorder/recorder_list.js:87
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
+#: frappe/printing/page/print/print.js:296
+#: frappe/printing/page/print/print.js:343
msgid "Start"
-msgstr "Start"
+msgstr ""
-#: public/js/frappe/utils/common.js:409
+#. Label of the start_date (Date) field in DocType 'Auto Repeat'
+#. Label of the start_date (Date) field in DocType 'Audit Trail'
+#. Label of the start_date (Datetime) field in DocType 'Web Page'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/public/js/frappe/utils/common.js:409
+#: frappe/website/doctype/web_page/web_page.json
msgid "Start Date"
-msgstr "Startdatum"
+msgstr ""
-#. Label of a Date field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
-msgid "Start Date"
-msgstr "Startdatum"
-
-#. Label of a Date field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Start Date"
-msgstr "Startdatum"
-
-#. Label of a Datetime field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Start Date"
-msgstr "Startdatum"
-
-#. Label of a Select field in DocType 'Calendar View'
-#: desk/doctype/calendar_view/calendar_view.json
-msgctxt "Calendar View"
+#. Label of the start_date_field (Select) field in DocType 'Calendar View'
+#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "Start Date Field"
-msgstr "Begindataveld"
+msgstr ""
-#: core/doctype/data_import/data_import.js:110
+#: frappe/core/doctype/data_import/data_import.js:110
msgid "Start Import"
-msgstr "Begin met importeren"
+msgstr ""
-#. Label of a Datetime field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#: 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 "Starttijd"
+msgstr ""
-#: templates/includes/comments/comments.html:8
+#: frappe/templates/includes/comments/comments.html:8
msgid "Start a new discussion"
msgstr ""
-#: core/doctype/data_export/exporter.py:22
+#: frappe/core/doctype/data_export/exporter.py:22
msgid "Start entering data below this line"
-msgstr "Beginnen met het invoeren onder deze lijn"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:165
+#: frappe/printing/page/print_format_builder/print_format_builder.js:165
msgid "Start new Format"
-msgstr "Start nieuwe Format"
+msgstr ""
#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "StartTLS"
-msgstr "StartTLS"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Started"
-msgstr "Begonnen"
+msgstr ""
-#. Label of a Datetime field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the started_at (Datetime) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Started At"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:274
+#: frappe/desk/page/setup_wizard/setup_wizard.js:286
msgid "Starting Frappe ..."
-msgstr "Frappe starten ..."
+msgstr ""
-#. Label of a Datetime field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the starts_on (Datetime) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Starts on"
-msgstr "Begint op"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the state (Data) field in DocType 'Token Cache'
+#. Label of the state (Link) field in DocType 'Workflow Document State'
+#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
+#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/integrations/doctype/token_cache/token_cache.json
+#: frappe/workflow/doctype/workflow/workflow.js:162
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "State"
-msgstr "Staat"
+msgstr ""
-#. Label of a Data field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "State"
-msgstr "Staat"
+#: frappe/public/js/workflow_builder/components/Properties.vue:24
+msgid "State Properties"
+msgstr ""
-#. Label of a Link field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
-msgid "State"
-msgstr "Staat"
-
-#. Label of a Data field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "State"
-msgstr "Staat"
-
-#. Label of a Link field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
-msgid "State"
-msgstr "Staat"
-
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the state (Data) field in DocType 'Address'
+#. Label of the state (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "State/Province"
-msgstr "Staat / provincie"
+msgstr ""
-#. Label of a Table field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the document_states_section (Tab Break) field in DocType 'DocType'
+#. Label of the states (Table) field in DocType 'Customize Form'
+#. Label of the states_head (Section Break) field in DocType 'Workflow'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "States"
-msgstr "Statussen"
+msgstr ""
-#. Label of a Table field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "States"
-msgstr "Statussen"
-
-#. Label of a Section Break field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
-msgid "States"
-msgstr "Statussen"
-
-#. Label of a Table field in DocType 'SMS Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#. Label of the parameters (Table) field in DocType 'SMS Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Static Parameters"
-msgstr "Statische Parameters"
+msgstr ""
-#. Label of a Section Break field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the statistics_section (Section Break) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Statistics"
msgstr ""
-#: public/js/frappe/form/dashboard.js:43
+#. Label of the stats_section (Section Break) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/form/dashboard.js:43
+#: frappe/public/js/frappe/form/templates/form_dashboard.html:13
msgid "Stats"
-msgstr "Statistieken"
+msgstr ""
-#. Label of a Section Break field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Stats"
-msgstr "Statistieken"
-
-#. Label of a Select field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#. Label of the stats_time_interval (Select) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Stats Time Interval"
-msgstr "Statistieken Tijdsinterval"
+msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:391
-msgid "Stats based on last month's performance (from {0} to {1})"
-msgstr "Statistieken gebaseerd op de prestaties van vorige maand (van {0} tot {1})"
-
-#: social/doctype/energy_point_log/energy_point_log.py:393
-msgid "Stats based on last week's performance (from {0} to {1})"
-msgstr "Statistieken gebaseerd op de prestaties van vorige week (van {0} tot {1})"
-
-#: public/js/frappe/views/reports/report_view.js:911
+#. Label of the status (Select) field in DocType 'Auto Repeat'
+#. Label of the status (Select) field in DocType 'Contact'
+#. Label of the status (Select) field in DocType 'Activity Log'
+#. Label of the status_section (Section Break) field in DocType 'Communication'
+#. Label of the status (Select) field in DocType 'Communication'
+#. Label of the status (Select) field in DocType 'Data Import'
+#. Label of the status (Select) field in DocType 'Permission Log'
+#. Label of the status (Select) field in DocType 'Prepared Report'
+#. Label of the status (Select) field in DocType 'RQ Job'
+#. Label of the status (Data) field in DocType 'RQ Worker'
+#. Label of the status (Select) field in DocType 'Scheduled Job Log'
+#. Label of the status_section (Section Break) field in DocType 'Scheduled Job
+#. Type'
+#. Label of the status (Select) field in DocType 'Submission Queue'
+#. Label of the status (Select) field in DocType 'Event'
+#. Label of the status (Select) field in DocType 'Kanban Board Column'
+#. Label of the status (Select) field in DocType 'ToDo'
+#. Label of the status (Select) field in DocType 'Email Queue'
+#. Label of the status (Select) field in DocType 'Email Queue Recipient'
+#. Label of the status_section (Section Break) field in DocType 'Newsletter'
+#. Label of the status (Select) field in DocType 'Integration Request'
+#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
+#. Label of the status (Select) field in DocType 'Personal Data Deletion
+#. Request'
+#. Label of the status (Select) field in DocType 'Personal Data Deletion Step'
+#. Label of the status (Select) field in DocType 'Workflow Action'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/data_import/data_import.js:483
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/public/js/frappe/list/list_settings.js:359
+#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Status"
-msgstr "Status"
+msgstr ""
-#. Label of a Select field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Section Break field in DocType 'Communication'
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Email Queue Recipient'
-#: email/doctype/email_queue_recipient/email_queue_recipient.json
-msgctxt "Email Queue Recipient"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Personal Data Deletion Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Personal Data Deletion Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Data field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Section Break field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Status"
-msgstr "Status"
-
-#. Label of a Select field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
-msgid "Status"
-msgstr "Status"
-
-#: www/update-password.html:161
+#: frappe/www/update-password.html:163
msgid "Status Updated"
-msgstr "Status bijgewerkt"
+msgstr ""
-#: www/message.html:40
+#: frappe/email/doctype/email_queue/email_queue.js:37
+msgid "Status Updated. The email will be picked up in the next scheduled run."
+msgstr ""
+
+#: frappe/www/message.html:24
msgid "Status: {0}"
-msgstr "Status: {0}"
+msgstr ""
-#. Label of a Link field in DocType 'Onboarding Step Map'
-#: desk/doctype/onboarding_step_map/onboarding_step_map.json
-msgctxt "Onboarding Step Map"
+#. Label of the step (Link) field in DocType 'Onboarding Step Map'
+#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json
msgid "Step"
-msgstr "Stap"
+msgstr ""
-#. Label of a Table field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the steps (Table) field in DocType 'Form Tour'
+#. Label of the steps (Table) field in DocType 'Module Onboarding'
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Steps"
-msgstr "Stappen"
+msgstr ""
-#. Label of a Table field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Steps"
-msgstr "Stappen"
-
-#: www/qrcode.html:11
+#: frappe/www/qrcode.html:11
msgid "Steps to verify your login"
-msgstr "Stappen om uw login te verifiëren"
+msgstr ""
-#: core/doctype/recorder/recorder_list.js:91
+#. Label of the sticky (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/public/js/frappe/form/grid_row.js:438
+msgid "Sticky"
+msgstr ""
+
+#: frappe/core/doctype/recorder/recorder_list.js:87
msgid "Stop"
msgstr ""
-#. Label of a Check field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#. Label of the stopped (Check) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Stopped"
-msgstr "Gestopt"
+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 ""
#. Description of the 'Last Known Versions' (Text) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Stores the JSON of last known versions of various installed apps. It is used to show release notes."
-msgstr "Slaat de JSON van de laatst bekende versies van de verschillende geïnstalleerde apps. Het wordt gebruikt om de release notes zien."
+msgstr ""
#. Description of the 'Last Reset Password Key Generated On' (Datetime) field
#. in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Stores the datetime when the last reset password key was generated."
msgstr ""
-#: utils/password_strength.py:99
+#: frappe/utils/password_strength.py:97
msgid "Straight rows of keys are easy to guess"
-msgstr "Rechte rijen van de toetsen zijn makkelijk te raden"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the strip_exif_metadata_from_uploaded_images (Check) field in
+#. DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Strip EXIF tags from uploaded images"
msgstr ""
-#: public/js/frappe/form/controls/password.js:90
+#: frappe/public/js/frappe/form/controls/password.js:89
msgid "Strong"
msgstr ""
-#. Label of a Tab Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the custom_css (Tab Break) field in DocType 'Web Page'
+#. Label of the style (Select) field in DocType 'Workflow State'
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Style"
-msgstr "Stijl"
+msgstr ""
-#. Label of a Select field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "Style"
-msgstr "Stijl"
-
-#. Label of a Section Break field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the section_break_9 (Section Break) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Style Settings"
-msgstr "Stijlinstellingen"
+msgstr ""
#. Description of the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange"
-msgstr "Stijl staat voor de kleur van de knoppen: Succes - Groen, Gevaar - Rood, Inverse - Zwart, Lager - Dark Blue, Info - Light Blue, Waarschuwing - Oranje"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the stylesheet_section (Tab Break) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Stylesheet"
-msgstr "Stylesheet"
+msgstr ""
#. Description of the 'Fraction' (Data) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#: frappe/geo/doctype/currency/currency.json
msgid "Sub-currency. For e.g. \"Cent\""
-msgstr "Sub-valuta. Voor bijvoorbeeld "Cent""
+msgstr ""
#. Description of the 'Subdomain' (Small Text) field in DocType 'Website
#. Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Sub-domain provided by erpnext.com"
-msgstr "Subdomein aangeleverd door erpnext.com"
+msgstr ""
-#. Label of a Small Text field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the subdomain (Small Text) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Subdomain"
-msgstr "Subdomein"
+msgstr ""
-#: public/js/frappe/views/communication.js:103
-#: public/js/frappe/views/inbox/inbox_view.js:63
+#. Label of the subject (Data) field in DocType 'Auto Repeat'
+#. Label of the subject (Small Text) field in DocType 'Activity Log'
+#. Label of the subject (Text) field in DocType 'Comment'
+#. Label of the subject (Small Text) field in DocType 'Communication'
+#. Label of the subject (Small Text) field in DocType 'Event'
+#. Label of the subject (Text) field in DocType 'Notification Log'
+#. Label of the subject (Data) field in DocType 'Email Template'
+#. Label of the subject (Small Text) field in DocType 'Newsletter'
+#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
+#. Label of the subject (Data) field in DocType 'Notification'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: 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/newsletter/newsletter.json
+#: frappe/email/doctype/notification/notification.js:200
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
-msgstr "Onderwerp"
+msgstr ""
-#. Label of a Small Text field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Subject"
-msgstr "Onderwerp"
-
-#. Label of a Data field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Subject"
-msgstr "Onderwerp"
-
-#. Label of a Text field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Subject"
-msgstr "Onderwerp"
-
-#. Label of a Small Text field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Subject"
-msgstr "Onderwerp"
-
-#. Label of a Data field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
-msgid "Subject"
-msgstr "Onderwerp"
-
-#. Label of a Small Text field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Subject"
-msgstr "Onderwerp"
-
-#. Label of a Small Text field in DocType 'Newsletter'
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Subject"
-msgstr "Onderwerp"
-
-#. Label of a Data field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Subject"
-msgstr "Onderwerp"
-
-#. Label of a Text field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "Subject"
-msgstr "Onderwerp"
-
-#. Label of a Select field in DocType 'Calendar View'
-#: desk/doctype/calendar_view/calendar_view.json
-msgctxt "Calendar View"
+#. Label of the subject_field (Data) field in DocType 'DocType'
+#. Label of the subject_field (Data) field in DocType 'Customize Form'
+#. Label of the subject_field (Select) field in DocType 'Calendar View'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "Subject Field"
-msgstr "Onderwerp veld"
+msgstr ""
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Subject Field"
-msgstr "Onderwerp veld"
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Subject Field"
-msgstr "Onderwerp veld"
-
-#: core/doctype/doctype/doctype.py:1878
+#: frappe/core/doctype/doctype/doctype.py:1935
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
-msgstr "Onderwerp Veldtype moet Data, Tekst, Lange tekst, Kleine tekst, Teksteditor zijn"
+msgstr ""
#. Name of a DocType
-#: core/doctype/submission_queue/submission_queue.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Submission Queue"
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:138
-#: public/js/frappe/form/quick_entry.js:193
-#: public/js/frappe/form/sidebar/review.js:116
-#: public/js/frappe/ui/capture.js:299
-#: social/doctype/energy_point_log/energy_point_log.js:39
-#: social/doctype/energy_point_settings/energy_point_settings.js:47
-#: website/doctype/web_form/templates/web_form.html:44
-msgid "Submit"
-msgstr "Indienen"
-
-#: public/js/frappe/list/list_view.js:1916
-msgctxt "Button in list view actions menu"
-msgid "Submit"
-msgstr "Indienen"
-
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Submit"
-msgstr "Indienen"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Submit"
-msgstr "Indienen"
-
-#. Label of a Check field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "Submit"
-msgstr "Indienen"
-
-#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Submit"
-msgstr "Indienen"
-
+#. 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'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:138
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/quick_entry.js:225
+#: frappe/public/js/frappe/ui/capture.js:307
msgid "Submit"
-msgstr "Indienen"
-
-#: public/js/frappe/ui/dialog.js:60
-msgctxt "Primary action in dialog"
-msgid "Submit"
-msgstr "Indienen"
-
-#: public/js/frappe/ui/messages.js:97
-msgctxt "Primary action of prompt dialog"
-msgid "Submit"
-msgstr "Indienen"
-
-#: public/js/frappe/desk.js:206
-msgctxt "Submit password for Email Account"
-msgid "Submit"
-msgstr "Indienen"
-
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Submit"
-msgstr "Indienen"
-
-#. Label of a Check field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Submit After Import"
-msgstr "Verzenden na importeren"
-
-#. Label of a Data field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Submit Button Label"
msgstr ""
-#: website/doctype/web_form/templates/web_form.html:153
+#: frappe/public/js/frappe/list/list_view.js:2086
+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:62
+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:156
+msgctxt "Button in web form"
msgid "Submit another response"
msgstr ""
-#. Label of a Check field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the button_label (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Submit button label"
+msgstr ""
+
+#. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128
msgid "Submit on Creation"
msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:400
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:395
msgid "Submit this document to complete this step."
-msgstr "Dien dit document in om deze stap te voltooien."
+msgstr ""
-#: public/js/frappe/form/form.js:1194
+#: frappe/public/js/frappe/form/form.js:1221
msgid "Submit this document to confirm"
-msgstr "Verzend dit document om te bevestigen"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1921
+#: frappe/public/js/frappe/list/list_view.js:2091
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
-msgstr "{0} documenten verzenden?"
-
-#: public/js/frappe/model/indicator.js:95
-#: public/js/frappe/ui/filters/filter.js:494
-#: website/doctype/web_form/templates/web_form.html:133
-msgid "Submitted"
-msgstr "Ingediend"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/public/js/frappe/model/indicator.js:95
+#: frappe/public/js/frappe/ui/filters/filter.js:539
+#: frappe/website/doctype/web_form/templates/web_form.html:136
msgid "Submitted"
-msgstr "Ingediend"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Submitted"
-msgstr "Ingediend"
-
-#: workflow/doctype/workflow/workflow.py:106
+#: frappe/workflow/doctype/workflow/workflow.py:103
msgid "Submitted Document cannot be converted back to draft. Transition row {0}"
-msgstr "Ingediend Document kan niet teruggezet worden naar Draft. Transitie rij {0}"
+msgstr ""
-#: public/js/workflow_builder/utils.js:176
+#: frappe/public/js/workflow_builder/utils.js:176
msgid "Submitted document cannot be converted back to draft while transitioning from {0} State to {1} State"
msgstr ""
-#: public/js/frappe/form/save.js:10
+#: frappe/public/js/frappe/form/save.js:10
msgctxt "Freeze message while submitting a document"
msgid "Submitting"
-msgstr "Indienen"
-
-#: desk/doctype/bulk_update/bulk_update.py:91
-msgid "Submitting {0}"
-msgstr "{0} indienen"
-
-#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Subsidiary"
-msgstr "Dochteronderneming"
-
-#. Label of a Data field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
-msgid "Subtitle"
-msgstr "subtitel"
-
-#. Label of a Data field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Subtitle"
-msgstr "subtitel"
-
-#: core/doctype/data_import/data_import.js:470
-#: desk/doctype/bulk_update/bulk_update.js:31
-#: desk/doctype/desktop_icon/desktop_icon.py:452
-#: public/js/frappe/form/grid.js:1133
-#: public/js/frappe/views/translation_manager.js:21
-#: templates/pages/integrations/gcalendar-success.html:9
-#: workflow/doctype/workflow_action/workflow_action.py:171
-msgid "Success"
-msgstr "Succes"
-
-#. Option for the 'Status' (Select) field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Success"
-msgstr "Succes"
-
-#. Option for the 'Status' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Success"
-msgstr "Succes"
-
-#. Label of a Check field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
-msgid "Success"
-msgstr "Succes"
-
-#. Option for the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "Success"
-msgstr "Succes"
-
-#. Name of a DocType
-#: core/doctype/success_action/success_action.json
-msgid "Success Action"
-msgstr "Succesactie"
-
-#. Label of a Data field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Success Message"
-msgstr "Succes Bericht"
-
-#. Label of a Text field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Success Message"
-msgstr "Succes Bericht"
-
-#. Label of a Data field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Success Title"
msgstr ""
-#. Label of a Data field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
+#: 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'
+#. Label of the subtitle (Data) field in DocType 'Blog Settings'
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Subtitle"
+msgstr ""
+
+#. 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:1166
+#: 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 a Data field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the success_url (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Success URL"
-msgstr "Succes URL"
+msgstr ""
-#: www/update-password.html:79
+#. Label of the success_message (Text) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Success message"
+msgstr ""
+
+#. Label of the success_title (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Success title"
+msgstr ""
+
+#: frappe/www/update-password.html:81
msgid "Success! You are good to go 👍"
-msgstr "Succes! Je bent goed om te gaan 👍"
+msgstr ""
-#. Label of a Int field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the successful_job_count (Int) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Successful Job Count"
msgstr ""
-#: model/workflow.py:306
+#: frappe/model/workflow.py:307
msgid "Successful Transactions"
-msgstr "Succesvolle transacties"
+msgstr ""
-#: model/rename_doc.py:684
+#: frappe/model/rename_doc.py:699
msgid "Successful: {0} to {1}"
-msgstr "Succesvolle: {0} tot {1}"
+msgstr ""
-#: social/doctype/energy_point_settings/energy_point_settings.js:41
-msgid "Successfully Done"
-msgstr "Met succes gedaan"
-
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113
msgid "Successfully Updated"
-msgstr "Succesvol geüpdatet"
+msgstr ""
-#: core/doctype/data_import/data_import.js:434
+#: frappe/core/doctype/data_import/data_import.js:423
msgid "Successfully imported {0}"
msgstr ""
-#: desk/doctype/form_tour/form_tour.py:86
+#: frappe/core/doctype/data_import/data_import.js:144
+msgid "Successfully imported {0} out of {1} records."
+msgstr ""
+
+#: frappe/desk/doctype/form_tour/form_tour.py:87
msgid "Successfully reset onboarding status for all users."
msgstr ""
-#: public/js/frappe/views/translation_manager.js:22
+#: frappe/public/js/frappe/views/translation_manager.js:22
msgid "Successfully updated translations"
-msgstr "Succesvol bijgewerkte vertalingen"
+msgstr ""
-#: core/doctype/data_import/data_import.js:442
+#: frappe/core/doctype/data_import/data_import.js:431
msgid "Successfully updated {0}"
msgstr ""
-#: core/doctype/data_import/data_import.js:149
-msgid "Successfully {0} 1 record."
+#: frappe/core/doctype/data_import/data_import.js:149
+msgid "Successfully updated {0} out of {1} records."
msgstr ""
-#: core/doctype/data_import/data_import.js:156
-msgid "Successfully {0} {1} record out of {2}. Click on Export Errored Rows, fix the errors and import again."
+#: frappe/core/doctype/recorder/recorder.js:15
+msgid "Suggest Optimizations"
msgstr ""
-#: core/doctype/data_import/data_import.js:161
-msgid "Successfully {0} {1} records out of {2}. Click on Export Errored Rows, fix the errors and import again."
+#. Label of the suggested_indexes (Table) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "Suggested Indexes"
msgstr ""
-#: core/doctype/data_import/data_import.js:151
-msgid "Successfully {0} {1} records."
-msgstr ""
-
-#: core/doctype/user/user.py:679
+#: frappe/core/doctype/user/user.py:720
msgid "Suggested Username: {0}"
-msgstr "Suggereerde Gebruikersnaam: {0}"
-
-#: public/js/frappe/ui/group_by/group_by.js:20
-msgid "Sum"
-msgstr "Som"
+msgstr ""
#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Sum"
-msgstr "Som"
-
#. Option for the 'Function' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/ui/group_by/group_by.js:20
msgid "Sum"
-msgstr "Som"
+msgstr ""
-#: public/js/frappe/ui/group_by/group_by.js:330
+#: frappe/public/js/frappe/ui/group_by/group_by.js:337
msgid "Sum of {0}"
-msgstr "Som van {0}"
+msgstr ""
-#: public/js/frappe/views/interaction.js:88
+#: frappe/public/js/frappe/views/interaction.js:88
msgid "Summary"
-msgstr "Overzicht"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Sunday"
-msgstr "Zondag"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Sunday"
-msgstr "Zondag"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Sunday"
-msgstr "Zondag"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Sunday"
-msgstr "Zondag"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the sunday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Sunday"
-msgstr "Zondag"
+msgstr ""
-#: email/doctype/email_queue/email_queue_list.js:27
+#: frappe/email/doctype/email_queue/email_queue_list.js:27
msgid "Suspend Sending"
-msgstr "opschorten verzenden"
+msgstr ""
-#: public/js/frappe/ui/capture.js:268
+#: frappe/public/js/frappe/ui/capture.js:276
msgid "Switch Camera"
msgstr ""
-#: public/js/frappe/desk.js:50 public/js/frappe/ui/theme_switcher.js:11
+#: frappe/public/js/frappe/desk.js:96
+#: frappe/public/js/frappe/ui/theme_switcher.js:11
msgid "Switch Theme"
msgstr ""
-#: templates/includes/navbar/navbar_login.html:17
+#: frappe/templates/includes/navbar/navbar_login.html:17
msgid "Switch To Desk"
-msgstr "Overschakelen naar Desk"
+msgstr ""
-#: public/js/frappe/ui/capture.js:273
+#: frappe/public/js/frappe/list/list_sidebar.js:319
+msgid "Switch to Frappe CRM for smarter sales"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/capture.js:281
msgid "Switching Camera"
msgstr ""
-#. Label of a Data field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the symbol (Data) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
msgid "Symbol"
-msgstr "Symbool"
+msgstr ""
-#. Label of a Section Break field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Label of the sb_01 (Section Break) field in DocType 'Google Calendar'
+#. Label of the sync (Section Break) field in DocType 'Google Contacts'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Sync"
-msgstr "Synchroniseren"
+msgstr ""
-#. Label of a Section Break field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
-msgid "Sync"
-msgstr "Synchroniseren"
-
-#: integrations/doctype/google_calendar/google_calendar.js:28
+#: frappe/integrations/doctype/google_calendar/google_calendar.js:28
msgid "Sync Calendar"
-msgstr "Kalender synchroniseren"
+msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.js:28
+#: frappe/integrations/doctype/google_contacts/google_contacts.js:28
msgid "Sync Contacts"
-msgstr "Contacten synchroniseren"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:214
+#. Label of the sync_as_public (Check) field in DocType 'Google Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+msgid "Sync events from Google as public"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:256
msgid "Sync on Migrate"
-msgstr "Sync op Migrate"
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:295
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:312
msgid "Sync token was invalid and has been reset, Retry syncing."
msgstr ""
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the sync_with_google_calendar (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Sync with Google Calendar"
-msgstr "Synchroniseren met Google Agenda"
+msgstr ""
-#. Label of a Check field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Sync with Google Contacts"
-msgstr "Synchroniseer met Google Contacten"
+msgstr ""
-#: custom/doctype/doctype_layout/doctype_layout.js:46
+#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46
msgid "Sync {0} Fields"
msgstr ""
-#: custom/doctype/doctype_layout/doctype_layout.js:100
+#: frappe/custom/doctype/doctype_layout/doctype_layout.js:100
msgid "Synced Fields"
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.js:31
-#: integrations/doctype/google_contacts/google_contacts.js:31
+#: frappe/integrations/doctype/google_calendar/google_calendar.js:31
+#: frappe/integrations/doctype/google_contacts/google_contacts.js:31
msgid "Syncing"
-msgstr "synchroniseren"
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.js:19
+#: frappe/integrations/doctype/google_calendar/google_calendar.js:19
msgid "Syncing {0} of {1}"
-msgstr "Synchroniseren {0} van {1}"
+msgstr ""
-#: utils/data.py:2424
+#: frappe/utils/data.py:2494
msgid "Syntax Error"
msgstr ""
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "System"
-msgstr "Systeem"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/system_console/system_console.json
+#: frappe/desk/doctype/system_console/system_console.json
+#: frappe/public/js/frappe/ui/dropdown_console.js:4
msgid "System Console"
-msgstr "Systeemconsole"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.py:358
+#: frappe/custom/doctype/custom_field/custom_field.py:408
msgid "System Generated Fields can not be renamed"
msgstr ""
+#. Label of a standard help item
+#. Type: Route
+#: frappe/hooks.py
+msgid "System Health"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "System Health Report"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json
+msgid "System Health Report Errors"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
+msgid "System Health Report Failing Jobs"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
+msgid "System Health Report Queue"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json
+msgid "System Health Report Tables"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
+msgid "System Health Report Workers"
+msgstr ""
+
#. Label of a Card Break in the Build Workspace
-#: core/workspace/build/build.json
+#: frappe/core/workspace/build/build.json
msgid "System Logs"
msgstr ""
#. Name of a role
-#: automation/doctype/assignment_rule/assignment_rule.json
-#: automation/doctype/auto_repeat/auto_repeat.json
-#: automation/doctype/milestone/milestone.json
-#: automation/doctype/milestone_tracker/milestone_tracker.json
-#: contacts/doctype/address/address.json
-#: contacts/doctype/address_template/address_template.json
-#: contacts/doctype/contact/contact.json contacts/doctype/gender/gender.json
-#: contacts/doctype/salutation/salutation.json
-#: core/doctype/access_log/access_log.json
-#: core/doctype/activity_log/activity_log.json
-#: core/doctype/audit_trail/audit_trail.json core/doctype/comment/comment.json
-#: core/doctype/communication/communication.json
-#: core/doctype/custom_docperm/custom_docperm.json
-#: core/doctype/custom_role/custom_role.json
-#: core/doctype/data_export/data_export.json
-#: core/doctype/data_import/data_import.json
-#: core/doctype/data_import_log/data_import_log.json
-#: core/doctype/deleted_document/deleted_document.json
-#: core/doctype/docshare/docshare.json core/doctype/doctype/doctype.json
-#: core/doctype/document_naming_rule/document_naming_rule.json
-#: core/doctype/document_naming_settings/document_naming_settings.json
-#: core/doctype/document_share_key/document_share_key.json
-#: core/doctype/domain/domain.json
-#: core/doctype/domain_settings/domain_settings.json
-#: core/doctype/error_log/error_log.json core/doctype/file/file.json
-#: core/doctype/installed_applications/installed_applications.json
-#: core/doctype/language/language.json
-#: core/doctype/log_settings/log_settings.json
-#: core/doctype/module_def/module_def.json
-#: core/doctype/module_profile/module_profile.json
-#: core/doctype/navbar_settings/navbar_settings.json
-#: core/doctype/package/package.json
-#: core/doctype/package_import/package_import.json
-#: core/doctype/package_release/package_release.json
-#: core/doctype/page/page.json core/doctype/patch_log/patch_log.json
-#: core/doctype/permission_inspector/permission_inspector.json
-#: core/doctype/prepared_report/prepared_report.json
-#: core/doctype/report/report.json core/doctype/role/role.json
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-#: core/doctype/role_profile/role_profile.json core/doctype/rq_job/rq_job.json
-#: core/doctype/rq_worker/rq_worker.json
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-#: core/doctype/session_default_settings/session_default_settings.json
-#: core/doctype/sms_log/sms_log.json
-#: core/doctype/sms_settings/sms_settings.json
-#: core/doctype/submission_queue/submission_queue.json
-#: core/doctype/success_action/success_action.json
-#: core/doctype/system_settings/system_settings.json
-#: core/doctype/translation/translation.json core/doctype/user/user.json
-#: core/doctype/user_group/user_group.json
-#: core/doctype/user_permission/user_permission.json
-#: core/doctype/user_type/user_type.json core/doctype/version/version.json
-#: core/doctype/view_log/view_log.json
-#: custom/doctype/client_script/client_script.json
-#: custom/doctype/custom_field/custom_field.json
-#: custom/doctype/customize_form/customize_form.json
-#: custom/doctype/doctype_layout/doctype_layout.json
-#: custom/doctype/property_setter/property_setter.json
-#: desk/doctype/bulk_update/bulk_update.json
-#: desk/doctype/calendar_view/calendar_view.json
-#: desk/doctype/console_log/console_log.json
-#: desk/doctype/custom_html_block/custom_html_block.json
-#: desk/doctype/dashboard/dashboard.json
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
-#: desk/doctype/desktop_icon/desktop_icon.json desk/doctype/event/event.json
-#: desk/doctype/form_tour/form_tour.json
-#: desk/doctype/global_search_settings/global_search_settings.json
-#: desk/doctype/kanban_board/kanban_board.json
-#: desk/doctype/list_view_settings/list_view_settings.json
-#: desk/doctype/module_onboarding/module_onboarding.json
-#: desk/doctype/note/note.json desk/doctype/number_card/number_card.json
-#: desk/doctype/route_history/route_history.json
-#: desk/doctype/system_console/system_console.json desk/doctype/tag/tag.json
-#: desk/doctype/tag_link/tag_link.json desk/doctype/todo/todo.json
-#: email/doctype/auto_email_report/auto_email_report.json
-#: email/doctype/document_follow/document_follow.json
-#: email/doctype/email_account/email_account.json
-#: email/doctype/email_domain/email_domain.json
-#: email/doctype/email_flag_queue/email_flag_queue.json
-#: email/doctype/email_queue/email_queue.json
-#: email/doctype/email_rule/email_rule.json
-#: email/doctype/email_template/email_template.json
-#: email/doctype/email_unsubscribe/email_unsubscribe.json
-#: email/doctype/notification/notification.json
-#: email/doctype/unhandled_email/unhandled_email.json
-#: geo/doctype/country/country.json geo/doctype/currency/currency.json
-#: integrations/doctype/connected_app/connected_app.json
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-#: integrations/doctype/google_calendar/google_calendar.json
-#: integrations/doctype/google_contacts/google_contacts.json
-#: integrations/doctype/google_drive/google_drive.json
-#: integrations/doctype/google_settings/google_settings.json
-#: integrations/doctype/integration_request/integration_request.json
-#: integrations/doctype/ldap_settings/ldap_settings.json
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-#: integrations/doctype/oauth_client/oauth_client.json
-#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.json
-#: integrations/doctype/social_login_key/social_login_key.json
-#: integrations/doctype/token_cache/token_cache.json
-#: integrations/doctype/webhook/webhook.json
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-#: printing/doctype/letter_head/letter_head.json
-#: printing/doctype/network_printer_settings/network_printer_settings.json
-#: printing/doctype/print_format/print_format.json
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-#: printing/doctype/print_heading/print_heading.json
-#: printing/doctype/print_settings/print_settings.json
-#: printing/doctype/print_style/print_style.json
-#: social/doctype/energy_point_log/energy_point_log.json
-#: social/doctype/energy_point_rule/energy_point_rule.json
-#: social/doctype/energy_point_settings/energy_point_settings.json
-#: website/doctype/discussion_reply/discussion_reply.json
-#: website/doctype/discussion_topic/discussion_topic.json
-#: website/doctype/marketing_campaign/marketing_campaign.json
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-#: website/doctype/personal_data_download_request/personal_data_download_request.json
-#: website/doctype/web_page_view/web_page_view.json
-#: website/doctype/web_template/web_template.json
-#: website/doctype/website_route_meta/website_route_meta.json
-#: workflow/doctype/workflow/workflow.json
-#: workflow/doctype/workflow_action_master/workflow_action_master.json
-#: workflow/doctype/workflow_state/workflow_state.json
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/gender/gender.json
+#: frappe/contacts/doctype/salutation/salutation.json
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/api_request_log/api_request_log.json
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/custom_role/custom_role.json
+#: frappe/core/doctype/data_export/data_export.json
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/data_import_log/data_import_log.json
+#: frappe/core/doctype/deleted_document/deleted_document.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+#: frappe/core/doctype/document_share_key/document_share_key.json
+#: frappe/core/doctype/domain/domain.json
+#: frappe/core/doctype/domain_settings/domain_settings.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/file/file.json
+#: frappe/core/doctype/installed_applications/installed_applications.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/log_settings/log_settings.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/module_profile/module_profile.json
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+#: frappe/core/doctype/package/package.json
+#: frappe/core/doctype/package_import/package_import.json
+#: frappe/core/doctype/package_release/package_release.json
+#: frappe/core/doctype/page/page.json
+#: frappe/core/doctype/patch_log/patch_log.json
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#: frappe/core/doctype/role_profile/role_profile.json
+#: frappe/core/doctype/role_replication/role_replication.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/scheduler_event/scheduler_event.json
+#: frappe/core/doctype/session_default_settings/session_default_settings.json
+#: frappe/core/doctype/sms_log/sms_log.json
+#: frappe/core/doctype/sms_settings/sms_settings.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/core/doctype/success_action/success_action.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/translation/translation.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_group/user_group.json
+#: frappe/core/doctype/user_permission/user_permission.json
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/core/doctype/version/version.json
+#: frappe/core/doctype/view_log/view_log.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+#: frappe/desk/doctype/console_log/console_log.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/global_search_settings/global_search_settings.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/desk/doctype/note/note.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/route_history/route_history.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_rule/email_rule.json
+#: frappe/email/doctype/email_template/email_template.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
+#: frappe/geo/doctype/country/country.json
+#: frappe/geo/doctype/currency/currency.json
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.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_drive/google_drive.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/push_notification_settings/push_notification_settings.json
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/printing/doctype/print_heading/print_heading.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/website/doctype/discussion_reply/discussion_reply.json
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/website/doctype/website_route_meta/website_route_meta.json
+#: frappe/workflow/doctype/workflow/workflow.json
+#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "System Manager"
-msgstr "System Manager"
+msgstr ""
-#: desk/page/backups/backups.js:36
+#: frappe/desk/page/backups/backups.js:38
msgid "System Manager privileges required."
msgstr ""
#. Option for the 'Channel' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "System Notification"
-msgstr "Systeemmelding"
-
-#. Label of a Section Break field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "System Notifications"
msgstr ""
-#. Label of a Check field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
+#. Label of the system_page (Check) field in DocType 'Page'
+#: frappe/core/doctype/page/page.json
msgid "System Page"
-msgstr "Systeempagina"
+msgstr ""
#. Name of a DocType
-#: core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "System Settings"
-msgstr "Systeeminstellingen"
-
-#. Label of a shortcut in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "System Settings"
-msgid "System Settings"
-msgstr "Systeeminstellingen"
+msgstr ""
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "System managers are allowed by default"
-msgstr "Systeembeheerders zijn standaard toegestaan"
+msgstr ""
-#: public/js/frappe/utils/number_systems.js:5
+#: frappe/public/js/frappe/utils/number_systems.js:5
msgctxt "Number system"
msgid "T"
msgstr ""
+#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "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 ""
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Tab Break"
+#: frappe/public/js/form_builder/components/Tabs.vue:135
+msgid "Tab Label"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Tab Break"
-msgstr ""
-
-#: core/doctype/data_export/exporter.py:23
-msgid "Table"
-msgstr "Tabel"
-
+#. Label of the table (Data) field in DocType 'Recorder Suggested Index'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Table"
-msgstr "Tabel"
-
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Table"
-msgstr "Tabel"
-
-#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Table"
-msgstr "Tabel"
-
+#. Label of the table (Data) field in DocType 'System Health Report Tables'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/data_export/exporter.py:23
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json
+#: frappe/printing/page/print_format_builder/print_format_builder_field.html:39
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Table"
-msgstr "Tabel"
+msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Table Break"
-msgstr "Tafelonderbreking"
+msgstr ""
-#. Label of a Data field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
+#: frappe/core/doctype/version/version_view.html:72
+msgid "Table Field"
+msgstr ""
+
+#. Label of the table_fieldname (Data) field in DocType 'DocType Link'
+#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Table Fieldname"
msgstr ""
-#: core/doctype/doctype/doctype.py:1154
+#: frappe/core/doctype/doctype/doctype.py:1203
msgid "Table Fieldname Missing"
msgstr ""
-#. Label of a HTML field in DocType 'Version'
-#: core/doctype/version/version.json
-msgctxt "Version"
+#. Label of the table_html (HTML) field in DocType 'Version'
+#: frappe/core/doctype/version/version.json
msgid "Table HTML"
-msgstr "Tabel HTML"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Table MultiSelect"
-msgstr "Tafel MultiSelect"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Table MultiSelect"
-msgstr "Tafel MultiSelect"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Table MultiSelect"
-msgstr "Tafel MultiSelect"
+msgstr ""
-#: public/js/frappe/form/grid.js:1132
+#: frappe/custom/doctype/customize_form/customize_form.js:229
+msgid "Table Trimmed"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:1165
msgid "Table updated"
-msgstr "tabel bijgewerkt"
+msgstr ""
-#: model/document.py:1366
+#: frappe/model/document.py:1565
msgid "Table {0} cannot be empty"
-msgstr "Tabel {0} mag niet leeg zijn"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Tabloid"
msgstr ""
#. Name of a DocType
-#: desk/doctype/tag/tag.json
+#: frappe/desk/doctype/tag/tag.json
msgid "Tag"
-msgstr "Label"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/tag_link/tag_link.json
+#: frappe/desk/doctype/tag_link/tag_link.json
msgid "Tag Link"
-msgstr "Tag Link"
+msgstr ""
-#: model/__init__.py:148 model/meta.py:52
-#: public/js/frappe/list/bulk_operations.js:365
-#: public/js/frappe/list/list_sidebar.js:226 public/js/frappe/model/meta.js:204
-#: public/js/frappe/model/model.js:123
-#: public/js/frappe/ui/toolbar/awesome_bar.js:171
+#: frappe/model/meta.py:57
+#: 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 "labels"
+msgstr ""
-#: integrations/doctype/google_drive/google_drive.js:28
+#: frappe/integrations/doctype/google_drive/google_drive.js:29
msgid "Take Backup"
-msgstr "Neem een back-up"
+msgstr ""
-#: integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
msgid "Take Backup Now"
-msgstr "Take Backup Now"
+msgstr ""
-#: public/js/frappe/ui/capture.js:212
+#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
-msgstr "Neem foto"
+msgstr ""
-#. Label of a Data field in DocType 'Portal Menu Item'
-#: website/doctype/portal_menu_item/portal_menu_item.json
-msgctxt "Portal Menu Item"
+#. Label of the target (Data) field in DocType 'Portal Menu Item'
+#. Label of the target (Small Text) field in DocType 'Website Route Redirect'
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
msgid "Target"
-msgstr "Doel"
+msgstr ""
-#. Label of a Small Text field in DocType 'Website Route Redirect'
-#: website/doctype/website_route_redirect/website_route_redirect.json
-msgctxt "Website Route Redirect"
-msgid "Target"
-msgstr "Doel"
-
-#: desk/doctype/todo/todo_calendar.js:19 desk/doctype/todo/todo_calendar.js:25
+#: frappe/desk/doctype/todo/todo_calendar.js:19
+#: frappe/desk/doctype/todo/todo_calendar.js:25
msgid "Task"
-msgstr "Taak"
+msgstr ""
-#: www/about.html:45
+#. Label of the sb1 (Section Break) field in DocType 'About Us Settings'
+#. Label of the team_members (Table) field in DocType 'About Us Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+#: frappe/www/about.html:45
msgid "Team Members"
-msgstr "Teamleden"
+msgstr ""
-#. Label of a Section Break field in DocType 'About Us Settings'
-#. Label of a Table field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
-msgid "Team Members"
-msgstr "Teamleden"
-
-#. Label of a Data field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#. Label of the team_members_heading (Data) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Team Members Heading"
-msgstr "Teamleden Koptekst"
+msgstr ""
-#. Label of a Small Text field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#. Label of the team_members_subtitle (Small Text) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Team Members Subtitle"
msgstr ""
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the telemetry_section (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Telemetry"
msgstr ""
-#. Label of a Code field in DocType 'Address Template'
-#: contacts/doctype/address_template/address_template.json
-msgctxt "Address Template"
+#. Label of the template (Link) field in DocType 'Auto Repeat'
+#. Label of the template (Code) field in DocType 'Address Template'
+#. Label of the template (Code) field in DocType 'Print Format Field Template'
+#. Label of the template (Code) field in DocType 'Web Template'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/website/doctype/web_template/web_template.json
msgid "Template"
-msgstr "Sjabloon"
+msgstr ""
-#. Label of a Link field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Template"
-msgstr "Sjabloon"
-
-#. Label of a Code field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
-msgid "Template"
-msgstr "Sjabloon"
-
-#. Label of a Code field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
-msgid "Template"
-msgstr "Sjabloon"
-
-#: core/doctype/data_import/importer.py:468
-#: core/doctype/data_import/importer.py:596
+#: frappe/core/doctype/data_import/importer.py:483
+#: frappe/core/doctype/data_import/importer.py:610
msgid "Template Error"
-msgstr "Sjabloonfout"
+msgstr ""
-#. Label of a Data field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
+#. Label of the template_file (Data) field in DocType 'Print Format Field
+#. Template'
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
msgid "Template File"
msgstr ""
-#. Label of a Code field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the template_options (Code) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Template Options"
-msgstr "Sjabloonopties"
+msgstr ""
-#. Label of a Code field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the template_warnings (Code) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Template Warnings"
-msgstr "Sjabloonwaarschuwingen"
+msgstr ""
-#: public/js/frappe/views/workspace/blocks/paragraph.js:78
+#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:78
msgid "Templates"
msgstr ""
-#: core/doctype/user/user.py:983
+#: frappe/core/doctype/user/user.py:1027
msgid "Temporarily Disabled"
-msgstr "Tijdelijk uitgeschakeld"
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:94
+#: frappe/core/doctype/translation/test_translation.py:56
+#: frappe/core/doctype/translation/test_translation.py:63
+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:58
+#: frappe/core/doctype/translation/test_translation.py:66
+msgid "Test Spanish"
+msgstr ""
+
+#: frappe/email/doctype/newsletter/newsletter.py:92
msgid "Test email sent to {0}"
-msgstr "Test-e-mail verzonden naar {0}"
+msgstr ""
-#: core/doctype/file/test_file.py:357
+#: frappe/core/doctype/file/test_file.py:388
msgid "Test_Folder"
-msgstr "Test_Folder"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Text"
-msgstr "Tekst"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Text"
-msgstr "Tekst"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Text"
-msgstr "Tekst"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Text"
-msgstr "Tekst"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Text"
-msgstr "Tekst"
+msgstr ""
-#. Label of a Select field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the text_align (Select) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Text Align"
-msgstr "Tekst uitlijnen"
+msgstr ""
-#. Label of a Link field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the text_color (Link) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Text Color"
-msgstr "Tekst Kleur"
+msgstr ""
-#. Label of a Code field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the text_content (Code) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Text Content"
-msgstr "text Content"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Text Editor"
-msgstr "Text Editor"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Text Editor"
-msgstr "Text Editor"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Text Editor"
-msgstr "Text Editor"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Text Editor"
-msgstr "Text Editor"
+msgstr ""
-#: templates/emails/password_reset.html:5
+#: frappe/templates/emails/password_reset.html:5
msgid "Thank you"
-msgstr "Dankjewel"
+msgstr ""
-#: website/doctype/web_form/templates/web_form.html:137
+#: frappe/www/contact.py:39
+msgid "Thank you for reaching out to us. We will get back to you at the earliest.\n\n\n"
+"Your query:\n\n"
+"{0}"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:140
msgid "Thank you for spending your valuable time to fill this form"
msgstr ""
-#: templates/emails/auto_reply.html:1
+#: frappe/templates/emails/auto_reply.html:1
msgid "Thank you for your email"
-msgstr "Bedankt voor je email"
+msgstr ""
-#: website/doctype/help_article/templates/help_article.html:27
+#: frappe/website/doctype/help_article/templates/help_article.html:27
msgid "Thank you for your feedback!"
-msgstr "Bedankt voor je feedback!"
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:332
+#: frappe/email/doctype/newsletter/newsletter.py:332
msgid "Thank you for your interest in subscribing to our updates"
-msgstr "Dank u voor uw interesse in een abonnement op onze updates"
+msgstr ""
-#: templates/emails/new_user.html:16
+#: frappe/templates/includes/contact.js:36
+msgid "Thank you for your message"
+msgstr ""
+
+#: frappe/templates/emails/new_user.html:16
msgid "Thanks"
msgstr ""
-#: templates/emails/auto_repeat_fail.html:3
+#: frappe/templates/emails/auto_repeat_fail.html:3
msgid "The Auto Repeat for this document has been disabled."
-msgstr "De automatische herhaling voor dit document is uitgeschakeld."
+msgstr ""
-#: public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1188
msgid "The CSV format is case sensitive"
-msgstr "Het CSV-formaat is hoofdlettergevoelig"
+msgstr ""
#. Description of the 'Client ID' (Data) field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
-msgid ""
-"The Client ID obtained from the Google Cloud Console under \n"
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "The Client ID obtained from the Google Cloud Console under \n"
"\"APIs & Services\" > \"Credentials\"\n"
""
msgstr ""
-#: email/doctype/notification/notification.py:129
+#: frappe/email/doctype/notification/notification.py:201
msgid "The Condition '{0}' is invalid"
-msgstr "De voorwaarde '{0}' is ongeldig"
+msgstr ""
-#: core/doctype/file/file.py:205
+#: frappe/core/doctype/file/file.py:208
msgid "The File URL you've entered is incorrect"
msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:364
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108
+msgid "The Next Scheduled Date cannot be later than the End Date."
+msgstr ""
+
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:29
+msgid "The Push Relay Server URL key (`push_relay_server_url`) is missing in your site config"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:367
msgid "The User record for this request has been auto-deleted due to inactivity by system admins."
msgstr ""
-#: public/js/frappe/desk.js:127
+#: frappe/public/js/frappe/desk.js:162
msgid "The application has been updated to a new version, please refresh this page"
-msgstr "De applicatie is bijgewerkt naar een nieuwe versie, gelieve deze pagina te vernieuwen"
+msgstr ""
#. Description of the 'Application Name' (Data) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "The application name will be used in the Login page."
msgstr ""
-#: public/js/frappe/views/interaction.js:324
+#: frappe/public/js/frappe/views/interaction.js:323
msgid "The attachments could not be correctly linked to the new document"
-msgstr "De bijlagen kunnen niet correct worden gekoppeld aan het nieuwe document"
+msgstr ""
#. Description of the 'API Key' (Data) field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
-msgid ""
-"The browser API key obtained from the Google Cloud Console under \n"
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "The browser API key obtained from the Google Cloud Console under \n"
"\"APIs & Services\" > \"Credentials\"\n"
""
msgstr ""
-#: database/database.py:388
+#: frappe/database/database.py:475
msgid "The changes have been reverted."
msgstr ""
-#: core/doctype/data_import/importer.py:962
+#: frappe/core/doctype/data_import/importer.py:1009
msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format."
-msgstr "De kolom {0} heeft {1} verschillende datumnotaties. Automatisch instellen van {2} als het standaardformaat, aangezien dit het meest voorkomt. Verander a.u.b. andere waarden in deze kolom in dit formaat."
+msgstr ""
-#: templates/includes/comments/comments.py:34
+#: frappe/templates/includes/comments/comments.py:34
msgid "The comment cannot be empty"
-msgstr "De opmerking mag niet leeg zijn"
+msgstr ""
-#: public/js/frappe/views/interaction.js:301
+#: frappe/templates/emails/workflow_action.html:9
+msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:658
+msgid "The count shown is an estimated count. Click here to see the accurate count."
+msgstr ""
+
+#. Description of the 'Code' (Data) field in DocType 'Country'
+#: frappe/geo/doctype/country/country.json
+msgid "The country's ISO 3166 ALPHA-2 code."
+msgstr ""
+
+#: frappe/public/js/frappe/views/interaction.js:301
msgid "The document could not be correctly assigned"
-msgstr "Het document kan niet correct worden toegewezen"
+msgstr ""
-#: public/js/frappe/views/interaction.js:295
+#: frappe/public/js/frappe/views/interaction.js:295
msgid "The document has been assigned to {0}"
-msgstr "Het document is toegewezen aan {0}"
+msgstr ""
#. Description of the 'Parent Document Type' (Link) field in DocType 'Dashboard
#. Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "The document type selected is a child table, so the parent document type is required."
-msgstr ""
-
#. Description of the 'Parent Document Type' (Link) field in DocType 'Number
#. Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
msgid "The document type selected is a child table, so the parent document type is required."
msgstr ""
-#: core/doctype/user_type/user_type.py:109
+#: frappe/core/doctype/user_type/user_type.py:110
msgid "The field {0} is mandatory"
msgstr ""
-#: core/doctype/file/file.py:143
+#: frappe/core/doctype/file/file.py:145
msgid "The fieldname you've specified in Attached To Field is invalid"
msgstr ""
-#: core/doctype/data_import/importer.py:1035
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:62
+msgid "The following Assignment Days have been repeated: {0}"
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.js:30
+msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:1086
msgid "The following values are invalid: {0}. Values must be one of {1}"
msgstr ""
-#: core/doctype/data_import/importer.py:998
+#: frappe/core/doctype/data_import/importer.py:1043
msgid "The following values do not exist for {0}: {1}"
msgstr ""
-#: core/doctype/user_type/user_type.py:88
+#: frappe/core/doctype/user_type/user_type.py:89
msgid "The limit has not set for the user type {0} in the site config file."
msgstr ""
-#: templates/emails/login_with_email_link.html:21
+#: frappe/templates/emails/login_with_email_link.html:21
msgid "The link will expire in {0} minutes"
msgstr ""
-#: www/login.py:178
+#: frappe/www/login.py:194
msgid "The link you trying to login is invalid or expired."
msgstr ""
-#: website/doctype/web_page/web_page.js:125
+#: frappe/website/doctype/web_page/web_page.js:125
msgid "The meta description is an HTML attribute that provides a brief summary of a web page. Search engines such as Google often display the meta description in search results, which can influence click-through rates."
-msgstr "De metabeschrijving is een HTML-kenmerk dat een korte samenvatting van een webpagina geeft. Zoekmachines zoals Google tonen de metabeschrijving vaak in zoekresultaten, wat de klikfrequenties kan beïnvloeden."
+msgstr ""
-#: website/doctype/web_page/web_page.js:132
+#: frappe/website/doctype/web_page/web_page.js:132
msgid "The meta image is unique image representing the content of the page. Images for this Card should be at least 280px in width, and at least 150px in height."
-msgstr "De meta-afbeelding is een unieke afbeelding die de inhoud van de pagina vertegenwoordigt. Afbeeldingen voor deze kaart moeten minimaal 280 px breed en minimaal 150 px hoog zijn."
+msgstr ""
#. Description of the 'Calendar Name' (Data) field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "The name that will appear in Google Calendar"
-msgstr "De naam die in Google Agenda wordt weergegeven"
+msgstr ""
#. Description of the 'Track Steps' (Check) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "The next tour will start from where the user left off."
msgstr ""
#. Description of the 'Request Timeout' (Int) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "The number of seconds until the request expires"
msgstr ""
-#: www/404.html:18
-msgid "The page you are looking for has gone missing."
+#: frappe/www/update-password.html:88
+msgid "The password of your account has expired."
msgstr ""
-#: www/update-password.html:86
-msgid "The password of your account has expired."
-msgstr "Het wachtwoord van uw account is verlopen."
-
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:395
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:398
msgid "The process for deletion of {0} data associated with {1} has been initiated."
-msgstr "Het proces voor het verwijderen van {0} gegevens geassocieerd met {1} is gestart."
+msgstr ""
#. Description of the 'App ID' (Data) field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
-msgid ""
-"The project number obtained from Google Cloud Console under \n"
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "The project number obtained from Google Cloud Console under \n"
"\"IAM & Admin\" > \"Settings\"\n"
""
msgstr ""
-#: core/doctype/user/user.py:943
+#: frappe/core/doctype/user/user.py:987
msgid "The reset password link has been expired"
msgstr ""
-#: core/doctype/user/user.py:945
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: app.py:364 public/js/frappe/request.js:147
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
-msgstr "De bron die u zoekt is niet beschikbaar"
+msgstr ""
-#: core/doctype/user_type/user_type.py:113
+#: frappe/core/doctype/user_type/user_type.py:114
msgid "The role {0} should be a custom role."
msgstr ""
-#: core/doctype/audit_trail/audit_trail.py:45
+#: frappe/core/doctype/audit_trail/audit_trail.py:46
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: utils/response.py:321
+#: frappe/utils/response.py:334
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
-#: public/js/frappe/form/grid_row.js:615
-msgid "The total column width cannot be more than 10."
+#: frappe/core/page/permission_manager/permission_manager_help.html:9
+msgid "The system provides many pre-defined roles. You can add new roles to set finer permissions."
msgstr ""
-#: core/doctype/user_type/user_type.py:96
+#: frappe/core/doctype/user_type/user_type.py:97
msgid "The total number of user document types limit has been crossed."
msgstr ""
-#. Description of the 'User Field' (Select) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "The user from this field will be rewarded points"
-msgstr "De gebruiker uit dit veld krijgt punten"
-
-#: public/js/frappe/form/controls/data.js:24
+#: frappe/public/js/frappe/form/controls/data.js:25
msgid "The value you pasted was {0} characters long. Max allowed characters is {1}."
msgstr ""
#. Description of the 'Condition' (Small Text) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "The webhook will be triggered if this expression is true"
-msgstr "De webhook wordt geactiveerd als deze uitdrukking waar is"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:168
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175
msgid "The {0} is already on auto repeat {1}"
-msgstr "De {0} is al op automatisch herhalen {1}"
+msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the section_break_6 (Section Break) field in DocType 'Website
+#. Settings'
+#. Label of the theme (Data) field in DocType 'Website Theme'
+#. Label of the theme_scss (Code) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme"
-msgstr "Thema"
+msgstr ""
-#. Label of a Data field in DocType 'Website Theme'
-#. Label of a Code field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Theme"
-msgstr "Thema"
-
-#: public/js/frappe/ui/theme_switcher.js:130
+#: frappe/public/js/frappe/ui/theme_switcher.js:130
msgid "Theme Changed"
msgstr ""
-#. Label of a Tab Break field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the bootstrap_theme_section (Tab Break) field in DocType 'Website
+#. Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme Configuration"
-msgstr "Thema configuratie"
+msgstr ""
-#. Label of a Data field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the theme_url (Data) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme URL"
-msgstr "Thema-URL"
+msgstr ""
-#: website/web_template/discussions/discussions.html:3
+#: frappe/workflow/doctype/workflow/workflow.js:125
+msgid "There are documents which have workflow states that do not exist in this Workflow. It is recommended that you add these states to the Workflow and change their states before removing these states."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:442
+msgid "There are no upcoming events for you."
+msgstr ""
+
+#: frappe/website/web_template/discussions/discussions.html:3
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: website/doctype/web_form/web_form.js:72
-#: website/doctype/web_form/web_form.js:308
+#: frappe/public/js/frappe/views/reports/query_report.js:961
+msgid "There are {0} with the same filters already in the queue:"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.js:81
+#: frappe/website/doctype/web_form/web_form.js:317
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
-#: core/doctype/doctype/doctype.py:1394
+#: frappe/core/doctype/doctype/doctype.py:1443
msgid "There can be only one Fold in a form"
-msgstr "Er kan slechts één Fold in een vorm"
+msgstr ""
-#: contacts/doctype/address/address.py:185
+#: frappe/contacts/doctype/address/address.py:183
msgid "There is an error in your Address Template {0}"
-msgstr "Er is een fout in uw Address Template {0}"
+msgstr ""
-#: core/doctype/data_export/exporter.py:162
+#: frappe/core/doctype/data_export/exporter.py:162
msgid "There is no data to be exported"
-msgstr "Er zijn geen gegevens om te exporteren"
+msgstr ""
-#: core/doctype/file/file.py:571 utils/file_manager.py:376
+#: frappe/public/js/frappe/ui/notifications/notifications.js:492
+msgid "There is nothing new to show you right now."
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
-msgstr "Er is een probleem met het bestand url: {0}"
+msgstr ""
-#: core/page/permission_manager/permission_manager.py:150
+#: frappe/public/js/frappe/views/reports/query_report.js:958
+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 "Er moet minimaal één toestemming regel."
+msgstr ""
-#: core/doctype/user/user.py:499
-msgid "There should remain at least one System Manager"
-msgstr "Er moet ten minste één System Manager blijven"
-
-#: www/error.py:16
+#: frappe/www/error.py:17
msgid "There was an error building this page"
-msgstr "Er is een fout opgetreden bij het maken van deze pagina"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:180
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
msgid "There was an error saving filters"
-msgstr "Er was een fout bij het opslaan van filters"
+msgstr ""
-#: public/js/frappe/form/sidebar/attachments.js:201
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
-msgstr "Er zijn fouten opgetreden."
+msgstr ""
-#: public/js/frappe/views/interaction.js:276
+#: frappe/public/js/frappe/views/interaction.js:277
msgid "There were errors while creating the document. Please try again."
-msgstr "Er zijn fouten opgetreden tijdens het maken van het document. Probeer het opnieuw."
+msgstr ""
-#: public/js/frappe/views/communication.js:728
+#: frappe/public/js/frappe/views/communication.js:837
msgid "There were errors while sending email. Please try again."
-msgstr "Er zijn fouten opgetreden tijdens het versturen van e-mail. Probeer het opnieuw ."
+msgstr ""
-#: model/naming.py:449
+#: frappe/model/naming.py:494
msgid "There were some errors setting the name, please contact the administrator"
-msgstr "Er zijn fouten opgetreden bij het instellen van de naam, neemt u aub contact op met de beheerder"
+msgstr ""
-#: www/404.html:15
-msgid "There's nothing here"
+#. Description of the 'Announcement Widget' (Text Editor) field in DocType
+#. 'Navbar Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+msgid "These announcements will appear inside a dismissible alert below the Navbar."
msgstr ""
#. Description of the 'LDAP Custom Settings' (Section Break) field in DocType
#. 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "These settings are required if 'Custom' LDAP Directory is used"
msgstr ""
#. Description of the 'Defaults' (Section Break) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values."
-msgstr "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 ""
-#: www/third_party_apps.html:3 www/third_party_apps.html:13
+#: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14
msgid "Third Party Apps"
-msgstr "Apps van derden"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the third_party_authentication (Section Break) field in DocType
+#. 'User'
+#: frappe/core/doctype/user/user.json
msgid "Third Party Authentication"
-msgstr "Third Party Authentication"
+msgstr ""
-#: geo/doctype/currency/currency.js:8
+#: frappe/geo/doctype/currency/currency.js:8
msgid "This Currency is disabled. Enable to use in transactions"
-msgstr "Deze valuta is uitgeschakeld. Schakel het in om deze valuta te kunnen gebruiken in transacties."
-
-#: geo/utils.py:84
-msgid "This Doctype does not contain latitude and longitude fields"
msgstr ""
-#: geo/utils.py:67
-msgid "This Doctype does not contain location fields"
-msgstr ""
-
-#: public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
msgid "This Kanban Board will be private"
-msgstr "Dit Kanban Board is privé"
+msgstr ""
-#: __init__.py:917
+#: frappe/public/js/frappe/ui/filters/filter.js:666
+msgid "This Month"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:670
+msgid "This Quarter"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:662
+msgid "This Week"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:674
+msgid "This Year"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:220
+msgid "This action is irreversible. Do you wish to continue?"
+msgstr ""
+
+#: frappe/__init__.py:750
msgid "This action is only allowed for {}"
-msgstr "Deze actie is alleen toegestaan voor {}"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:107 public/js/frappe/model/model.js:720
+#: frappe/public/js/frappe/form/toolbar.js:117
+#: frappe/public/js/frappe/model/model.js:755
msgid "This cannot be undone"
-msgstr "Dit kan niet ongedaan gemaakt worden"
+msgstr ""
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
-msgstr "Deze kaart is beschikbaar voor alle gebruikers als deze is ingesteld"
-
-#. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "This chart will be available to all Users if this is set"
-msgstr "Deze grafiek is beschikbaar voor alle gebruikers als deze is ingesteld"
-
-#: desk/doctype/workspace/workspace.js:23
-msgid "This document allows you to edit limited fields. For all kinds of workspace customization, use the Edit button located on the workspace page"
msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:90
-msgid "This document cannot be reverted"
-msgstr "Dit document kan niet worden teruggezet"
+#. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "This chart will be available to all Users if this is set"
+msgstr ""
-#: www/confirm_workflow_action.html:8
+#: frappe/custom/doctype/customize_form/customize_form.js:212
+msgid "This doctype has no orphan fields to trim"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1054
+msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
+msgstr ""
+
+#: frappe/model/delete_doc.py:112
+msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
+msgstr ""
+
+#: frappe/www/confirm_workflow_action.html:8
msgid "This document has been modified after the email was sent."
-msgstr "Dit document is gewijzigd nadat de e-mail is verzonden."
+msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.js:8
-msgid "This document has been reverted"
-msgstr "Dit document is teruggezet"
+#: frappe/public/js/frappe/form/form.js:1305
+msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
+msgstr ""
-#: public/js/frappe/form/form.js:1075
+#: frappe/public/js/frappe/form/form.js:1102
msgid "This document is already amended, you cannot ammend it again"
-msgstr "Dit document is al gewijzigd, u kunt het niet opnieuw wijzigen"
+msgstr ""
-#: model/document.py:1518
-msgid "This document is currently queued for execution. Please try again"
-msgstr "Dit document is momenteel in de wachtrij voor de uitvoering. Probeer het opnieuw"
+#: frappe/model/document.py:474
+msgid "This document is currently locked and queued for execution. Please try again after some time."
+msgstr ""
-#: templates/emails/auto_repeat_fail.html:7
+#: frappe/templates/emails/auto_repeat_fail.html:7
msgid "This email is autogenerated"
-msgstr "Deze email is autogenerated"
+msgstr ""
-#: printing/doctype/network_printer_settings/network_printer_settings.py:29
-msgid ""
-"This feature can not be used as dependencies are missing.\n"
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:30
+msgid "This feature can not be used as dependencies are missing.\n"
"\t\t\t\tPlease contact your system manager to enable this by installing pycups!"
msgstr ""
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
+msgid "This feature is brand new and still experimental"
+msgstr ""
+
#. Description of the 'Depends On' (Code) field in DocType 'Customize Form
#. Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid ""
-"This field will appear only if the fieldname defined here has value OR the rules are true (examples):\n"
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "This field will appear only if the fieldname defined here has value OR the rules are true (examples):\n"
"myfield\n"
"eval:doc.myfield=='My Value'\n"
"eval:doc.age>18"
msgstr ""
-#: core/doctype/file/file.js:10
+#: frappe/core/doctype/file/file.py:500
+msgid "This file is attached to a protected document and cannot be deleted."
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FilePreview.vue:76
+msgid "This file is public and can be accessed by anyone, even without logging in. Mark it private to limit access."
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:20
msgid "This file is public. It can be accessed without authentication."
msgstr ""
-#: public/js/frappe/form/form.js:1172
+#: frappe/public/js/frappe/form/form.js:1199
msgid "This form has been modified after you have loaded it"
-msgstr "Dit formulier is gewijzigd nadat u het hebt geladen"
+msgstr ""
-#: public/js/frappe/form/form.js:457
+#: frappe/public/js/frappe/form/form.js:2257
msgid "This form is not editable due to a Workflow."
msgstr ""
#. Description of the 'Is Default' (Check) field in DocType 'Address Template'
-#: contacts/doctype/address_template/address_template.json
-msgctxt "Address Template"
+#: frappe/contacts/doctype/address_template/address_template.json
msgid "This format is used if country specific format is not found"
-msgstr "Dit formaat wordt gebruikt als landspecifiek formaat niet kan worden gevonden"
+msgstr ""
+
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.py:52
+msgid "This geolocation provider is not supported yet."
+msgstr ""
#. Description of the 'Header' (HTML Editor) field in DocType 'Website
#. Slideshow'
-#: website/doctype/website_slideshow/website_slideshow.json
-msgctxt "Website Slideshow"
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "This goes above the slideshow."
-msgstr "Dit staat boven de diavoorstelling."
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2132
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
-msgstr "Dit is een achtergrondrapport. Stel de juiste filters in en genereer vervolgens een nieuwe."
+msgstr ""
-#: utils/password_strength.py:162
+#: frappe/utils/password_strength.py:158
msgid "This is a top-10 common password."
-msgstr "Dit is een gemeenschappelijk wachtwoord top-10."
+msgstr ""
-#: utils/password_strength.py:164
+#: frappe/utils/password_strength.py:160
msgid "This is a top-100 common password."
-msgstr "Dit is een gemeenschappelijk wachtwoord top-100."
+msgstr ""
-#: utils/password_strength.py:166
+#: frappe/utils/password_strength.py:162
msgid "This is a very common password."
-msgstr "Dit is een veel voorkomende wachtwoord."
+msgstr ""
-#: core/doctype/rq_job/rq_job.js:9
+#: frappe/core/doctype/rq_job/rq_job.js:9
msgid "This is a virtual doctype and data is cleared periodically."
msgstr ""
-#: templates/emails/auto_reply.html:5
+#: frappe/templates/emails/auto_reply.html:5
msgid "This is an automatically generated reply"
-msgstr "Dit is een automatisch gegenereerd antwoord"
+msgstr ""
#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog
#. Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "This is an example Google SERP Preview."
-msgstr "Dit is een voorbeeld van een Google SERP Preview."
+msgstr ""
-#: utils/password_strength.py:168
+#: frappe/utils/password_strength.py:164
msgid "This is similar to a commonly used password."
-msgstr "Dit is vergelijkbaar met een algemeen gebruikte wachtwoord."
+msgstr ""
#. Description of the 'Current Value' (Int) field in DocType 'Document Naming
#. Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "This is the number of the last created transaction with this prefix"
-msgstr "Dit is het nummer van de laatst gemaakte transactie met dit voorvoegsel"
+msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:404
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407
msgid "This link has already been activated for verification."
-msgstr "Deze link is al geactiveerd voor verificatie."
+msgstr ""
-#: utils/verified_command.py:49
+#: frappe/utils/verified_command.py:49
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
-msgstr "Deze koppeling is ongeldig of verlopen. Zorg ervoor dat u correct hebt geplakt."
+msgstr ""
-#: printing/page/print/print.js:403
+#: frappe/printing/page/print/print.js:410
msgid "This may get printed on multiple pages"
-msgstr "Dit kan op meerdere pagina's worden afgedrukt"
+msgstr ""
-#: utils/goal.py:109
+#: frappe/utils/goal.py:109
msgid "This month"
-msgstr "Deze maand"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:223
+#: frappe/email/doctype/newsletter/newsletter.js:223
msgid "This newsletter is scheduled to be sent on {0}"
msgstr ""
-#: email/doctype/newsletter/newsletter.js:50
+#: frappe/email/doctype/newsletter/newsletter.js:50
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
msgstr ""
-#: templates/emails/auto_email_report.html:57
+#: frappe/public/js/frappe/views/reports/query_report.js:1033
+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 "Dit rapport is gegenereerd op {0}"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:782
+#: frappe/public/js/frappe/views/reports/query_report.js:856
msgid "This report was generated {0}."
-msgstr "Dit rapport is gegenereerd {0}."
+msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:118
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:122
msgid "This request has not yet been approved by the user."
-msgstr "Dit verzoek is nog niet goedgekeurd door de gebruiker."
+msgstr ""
-#: templates/includes/navbar/navbar_items.html:95
+#: frappe/templates/includes/navbar/navbar_items.html:95
msgid "This site is in read only mode, full functionality will be restored soon."
msgstr ""
-#: core/doctype/doctype/doctype.js:76
+#: frappe/core/doctype/doctype/doctype.js:73
msgid "This site is running in developer mode. Any change made here will be updated in code."
msgstr ""
-#: website/doctype/web_page/web_page.js:71
-msgid "This title will be used as the title of the webpage as well as in meta tags"
-msgstr "Deze titel wordt zowel als titel van de webpagina als in metatags gebruikt"
+#: frappe/www/attribution.html:11
+msgid "This software is built on top of many open source packages."
+msgstr ""
-#: public/js/frappe/form/controls/base_input.js:120
+#: 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 ""
-#: website/doctype/web_page/web_page.js:85
+#. Description of the 'Max Report Rows' (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "This value specifies the max number of rows that can be rendered in report view. "
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:85
msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish"
-msgstr "Deze wordt automatisch gegenereerd wanneer u de pagina publiceert, u kunt desgewenst ook zelf een route invoeren"
+msgstr ""
#. Description of the 'Callback Message' (Small Text) field in DocType
#. 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "This will be shown in a modal after routing"
-msgstr "Dit wordt na routing in een modaal weergegeven"
+msgstr ""
#. Description of the 'Report Description' (Data) field in DocType 'Onboarding
#. Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "This will be shown to the user in a dialog after routing to the report"
-msgstr "Dit wordt aan de gebruiker getoond in een dialoogvenster nadat het naar het rapport is gestuurd"
+msgstr ""
-#: www/third_party_apps.html:21
+#: frappe/www/third_party_apps.html:23
msgid "This will log out {0} from all other devices"
-msgstr "Dit zal uitloggen {0} van alle andere apparaten"
+msgstr ""
-#: templates/emails/delete_data_confirmation.html:3
+#: frappe/templates/emails/delete_data_confirmation.html:3
msgid "This will permanently remove your data."
-msgstr "Hiermee worden uw gegevens permanent verwijderd."
+msgstr ""
-#: desk/doctype/form_tour/form_tour.js:103
+#: frappe/desk/doctype/form_tour/form_tour.js:103
msgid "This will reset this tour and show it to all users. Are you sure?"
msgstr ""
-#: core/doctype/rq_job/rq_job.js:15
+#: frappe/core/doctype/rq_job/rq_job.js:15
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: core/doctype/user/user.py:1209
+#: frappe/core/doctype/user/user.py:1240
msgid "Throttled"
-msgstr "gesmoord"
+msgstr ""
-#. Label of a Small Text field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the thumbnail_url (Small Text) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Thumbnail URL"
-msgstr "Miniatuur URL"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Thursday"
-msgstr "Donderdag"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Thursday"
-msgstr "Donderdag"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Thursday"
-msgstr "Donderdag"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Thursday"
-msgstr "Donderdag"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the thursday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Thursday"
-msgstr "Donderdag"
-
-#: email/doctype/newsletter/newsletter.js:118
-msgid "Time"
-msgstr "Tijd"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Time"
-msgstr "Tijd"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Time"
-msgstr "Tijd"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Time"
-msgstr "Tijd"
-
-#. Label of a Datetime field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "Time"
-msgstr "Tijd"
-
+#. Label of the time (Datetime) field in DocType 'Recorder'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Time"
-msgstr "Tijd"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Time"
-msgstr "Tijd"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/email/doctype/newsletter/newsletter.js:118
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
-msgstr "Tijd"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the time_format (Select) field in DocType 'Language'
+#. Label of the time_format (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Time Format"
-msgstr "Tijd formaat"
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the time_interval (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Time Interval"
-msgstr "Tijdsinterval"
+msgstr ""
-#. Label of a Check field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the timeseries (Check) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Time Series"
-msgstr "Tijdreeksen"
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the based_on (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Time Series Based On"
-msgstr "Tijdreeks gebaseerd op"
+msgstr ""
-#. Label of a Duration field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the time_taken (Duration) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Time Taken"
msgstr ""
-#. Label of a Int field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the rate_limit_seconds (Int) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Time Window (Seconds)"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:395
+#. Label of the time_zone (Select) field in DocType 'System Settings'
+#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of the time_zone (Data) field in DocType 'Web Page View'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:407
+#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
-msgstr "Tijdzone"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Time Zone"
-msgstr "Tijdzone"
-
-#. Label of a Autocomplete field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Time Zone"
-msgstr "Tijdzone"
-
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Time Zone"
-msgstr "Tijdzone"
-
-#. Label of a Text field in DocType 'Country'
-#: geo/doctype/country/country.json
-msgctxt "Country"
+#. Label of the time_zones (Text) field in DocType 'Country'
+#: frappe/geo/doctype/country/country.json
msgid "Time Zones"
-msgstr "Tijdzones"
+msgstr ""
-#. Label of a Data field in DocType 'Country'
-#: geo/doctype/country/country.json
-msgctxt "Country"
+#. Label of the time_format (Data) field in DocType 'Country'
+#: frappe/geo/doctype/country/country.json
msgid "Time format"
-msgstr "Tijd formaat"
+msgstr ""
-#. Label of a Float field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#. Label of the time_in_queries (Float) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
msgid "Time in Queries"
msgstr ""
#. Description of the 'Expiry time of QR Code Image Page' (Int) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Time in seconds to retain QR code image on server. Min:240"
-msgstr "Tijd in seconden om QR code-afbeelding op server te behouden. Min: 240"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.py:413
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:413
msgid "Time series based on is required to create a dashboard chart"
-msgstr "Op basis van tijdreeksen is vereist om een dashboardgrafiek te maken"
+msgstr ""
-#: public/js/frappe/form/controls/time.js:104
+#: frappe/public/js/frappe/form/controls/time.js:124
msgid "Time {0} must be in format: {1}"
-msgstr "Tijd {0} moet de notatie hebben: {1}"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/core/doctype/data_import/data_import.json
msgid "Timed Out"
msgstr ""
-#: public/js/frappe/ui/theme_switcher.js:64
+#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr ""
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the timeline (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Timeline"
msgstr ""
-#. Label of a Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. Label of the timeline_doctype (Link) field in DocType 'Activity Log'
+#: frappe/core/doctype/activity_log/activity_log.json
msgid "Timeline DocType"
-msgstr "Timeline DocType"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the timeline_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Timeline Field"
-msgstr "Timeline Field"
+msgstr ""
-#. Label of a Section Break field in DocType 'Communication'
-#. Label of a Table field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the timeline_links_sections (Section Break) field in DocType
+#. 'Communication'
+#. Label of the timeline_links (Table) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Timeline Links"
-msgstr "Tijdlijn koppelingen"
+msgstr ""
-#. Label of a Dynamic Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. Label of the timeline_name (Dynamic Link) field in DocType 'Activity Log'
+#: frappe/core/doctype/activity_log/activity_log.json
msgid "Timeline Name"
-msgstr "Timeline Naam"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1489
+#: frappe/core/doctype/doctype/doctype.py:1538
msgid "Timeline field must be a Link or Dynamic Link"
-msgstr "Timeline veld moet een link of Dynamic Link"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1485
+#: frappe/core/doctype/doctype/doctype.py:1534
msgid "Timeline field must be a valid fieldname"
-msgstr "Timeline veld moet een geldige veldnaam te zijn"
+msgstr ""
-#. Label of a Duration field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the timeout (Duration) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Timeout"
msgstr ""
-#. Label of a Check field in DocType 'Dashboard Chart Source'
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
-msgctxt "Dashboard Chart Source"
+#. Label of the timeout (Int) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Timeout (In Seconds)"
+msgstr ""
+
+#. Label of the timeseries (Check) field in DocType 'Dashboard Chart Source'
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
msgid "Timeseries"
-msgstr "Tijdreeksen"
+msgstr ""
-#: desk/page/leaderboard/leaderboard.js:123
-#: public/js/frappe/ui/filters/filter.js:28
+#. Label of the timespan (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/ui/filters/filter.js:28
msgid "Timespan"
-msgstr "Tijdspanne"
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Timespan"
-msgstr "Tijdspanne"
-
-#: core/report/transaction_log_report/transaction_log_report.py:112
+#. Label of the timestamp (Datetime) field in DocType 'Access Log'
+#. Label of the timestamp (Datetime) field in DocType 'Transaction Log'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:112
msgid "Timestamp"
-msgstr "Timestamp"
+msgstr ""
-#. Label of a Datetime field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
-msgid "Timestamp"
-msgstr "Timestamp"
+#: frappe/desk/doctype/system_console/system_console.js:41
+msgid "Tip: Try the new dropdown console using"
+msgstr ""
-#. Label of a Datetime field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Timestamp"
-msgstr "Timestamp"
-
-#: public/js/form_builder/store.js:89
-#: public/js/frappe/views/workspace/workspace.js:599
-#: public/js/frappe/views/workspace/workspace.js:928
-#: public/js/frappe/views/workspace/workspace.js:1175
+#. Label of the title (Data) field in DocType 'DocType State'
+#. Label of the method (Data) field in DocType 'Error Log'
+#. Label of the title (Data) field in DocType 'Page'
+#. Label of the title (Data) field in DocType 'Changelog Feed'
+#. Label of the title (Data) field in DocType 'Form Tour'
+#. Label of the title (Data) field in DocType 'Form Tour Step'
+#. Label of the title (Data) field in DocType 'Module Onboarding'
+#. Label of the title (Data) field in DocType 'Note'
+#. Label of the title (Data) field in DocType 'Onboarding Step'
+#. Label of the title (Data) field in DocType 'System Health Report Errors'
+#. Label of the title (Data) field in DocType 'Workspace'
+#. Label of the title (Data) field in DocType 'Email Group'
+#. Label of the title (Data) field in DocType 'Blog Category'
+#. Label of the title (Data) field in DocType 'Blog Post'
+#. Label of the title (Data) field in DocType 'Blog Settings'
+#. Label of the title (Data) field in DocType 'Discussion Topic'
+#. Label of the title (Data) field in DocType 'Help Article'
+#. Label of the title (Data) field in DocType 'Portal Menu Item'
+#. Label of the title (Data) field in DocType 'Web Form'
+#. Label of the list_title (Data) field in DocType 'Web Form'
+#. Label of the title (Data) field in DocType 'Web Page'
+#. Label of the meta_title (Data) field in DocType 'Web Page'
+#. Label of the title (Data) field in DocType 'Website Sidebar'
+#. Label of the title (Data) field in DocType 'Website Sidebar Item'
+#: frappe/core/doctype/doctype/boilerplate/controller_list.html:14
+#: frappe/core/doctype/doctype/boilerplate/controller_list.html:23
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/page/page.json
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/desk/doctype/note/note.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/email/doctype/email_group/email_group.json
+#: frappe/public/js/frappe/views/workspace/workspace.js:393
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
+#: frappe/website/doctype/help_article/help_article.json
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_sidebar/website_sidebar.json
+#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Title"
-msgstr "Titel"
+msgstr ""
-#. Label of a Data field in DocType 'Blog Category'
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
-msgid "Title"
-msgstr "Titel"
-
-#. Label of a Data field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Title"
-msgstr "Titel"
-
-#. Label of a Data field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
-msgid "Title"
-msgstr "Titel"
-
-#. Label of a Data field in DocType 'Discussion Topic'
-#: website/doctype/discussion_topic/discussion_topic.json
-msgctxt "Discussion Topic"
-msgid "Title"
-msgstr "Titel"
-
-#. Label of a Data field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Title"
-msgstr "Titel"
-
-#. Label of a Data field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
-msgid "Title"
-msgstr "Titel"
-
-#. Label of a Data field in DocType 'Error Log'
-#: core/doctype/error_log/error_log.json
-msgctxt "Error Log"
-msgid "Title"
-msgstr "Titel"
-
-#. Label of a Data field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Title"
-msgstr "Titel"
-
-#. Label of a Data field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Title"
-msgstr "Titel"
-
-#. Label of a Data field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
-msgid "Title"
-msgstr "Titel"
-
-#. Label of a Data field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Title"
-msgstr "Titel"
-
-#. Label of a Data field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
-msgid "Title"
-msgstr "Titel"
-
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Title"
-msgstr "Titel"
-
-#. Label of a Data field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Title"
-msgstr "Titel"
-
-#. Label of a Data field in DocType 'Portal Menu Item'
-#: website/doctype/portal_menu_item/portal_menu_item.json
-msgctxt "Portal Menu Item"
-msgid "Title"
-msgstr "Titel"
-
-#. Label of a Data field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Title"
-msgstr "Titel"
-
-#. Label of a Data field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Title"
-msgstr "Titel"
-
-#. Label of a Data field in DocType 'Website Sidebar'
-#: website/doctype/website_sidebar/website_sidebar.json
-msgctxt "Website Sidebar"
-msgid "Title"
-msgstr "Titel"
-
-#. Label of a Data field in DocType 'Website Sidebar Item'
-#: website/doctype/website_sidebar_item/website_sidebar_item.json
-msgctxt "Website Sidebar Item"
-msgid "Title"
-msgstr "Titel"
-
-#. Label of a Data field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Title"
-msgstr "Titel"
-
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the title_field (Data) field in DocType 'DocType'
+#. Label of the title_field (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Title Field"
-msgstr "Titelveld"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Title Field"
-msgstr "Titelveld"
-
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the title_prefix (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Title Prefix"
-msgstr "Titel Voorvoegsel"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1426
+#: frappe/core/doctype/doctype/doctype.py:1475
msgid "Title field must be a valid fieldname"
-msgstr "Titelveld moet een geldige veldnaam zijn"
+msgstr ""
-#: website/doctype/web_page/web_page.js:70
+#: frappe/website/doctype/web_page/web_page.js:70
msgid "Title of the page"
-msgstr "Titel van de pagina"
+msgstr ""
-#: public/js/frappe/views/communication.js:52
-#: public/js/frappe/views/inbox/inbox_view.js:70
+#. Label of the recipients (Code) field in DocType 'Communication'
+#. Label of the recipients (Section Break) field in DocType 'Newsletter'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/permission_log/permission_log.js:12
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
-msgstr "Naar"
+msgstr ""
-#. Label of a Code field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/public/js/frappe/views/communication.js:53
+msgctxt "Email Recipients"
msgid "To"
-msgstr "Naar"
+msgstr ""
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "To"
-msgstr "Naar"
-
-#: website/report/website_analytics/website_analytics.js:14
+#. Label of the to_date (Date) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/website/report/website_analytics/website_analytics.js:14
msgid "To Date"
-msgstr "Tot Datum"
+msgstr ""
-#. Label of a Date field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "To Date"
-msgstr "Tot Datum"
-
-#. Label of a Select field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the to_date_field (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "To Date Field"
-msgstr "Tot op heden veld"
-
-#: desk/doctype/todo/todo_list.js:12
-msgid "To Do"
-msgstr "Actie"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "ToDo"
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/todo/todo_list.js:6
msgid "To Do"
-msgstr "Actie"
-
-#: public/js/frappe/form/sidebar/review.js:50
-msgid "To User"
-msgstr "Naar gebruiker"
+msgstr ""
#. Description of the 'Subject' (Data) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid ""
-"To add dynamic subject, use jinja tags like\n"
-"\n"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+msgid "To add dynamic subject, use jinja tags like\n\n"
"New {{ doc.doctype }} #{{ doc.name }}
"
msgstr ""
#. Description of the 'Subject' (Data) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid ""
-"To add dynamic subject, use jinja tags like\n"
-"\n"
+#: frappe/email/doctype/notification/notification.json
+msgid "To add dynamic subject, use jinja tags like\n\n"
"{{ doc.name }} Delivered
"
msgstr ""
#. Description of the 'JSON Request Body' (Code) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid ""
-"To add dynamic values from the document, use jinja tags like\n"
-"\n"
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "To add dynamic values from the document, use jinja tags like\n\n"
"\n"
"{ \"id\": \"{{ doc.name }}\" }\n"
"
\n"
""
msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.py:101
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:107
msgid "To allow more reports update limit in System Settings."
msgstr ""
-#. Label of a Section Break field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the section_break_10 (Section Break) field in DocType
+#. 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "To and CC"
-msgstr "Aan en CC"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.js:35
+#. Description of the 'Use First Day of Period' (Check) field in DocType 'Auto
+#. Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "To begin the date range at the start of the chosen period. For example, if 'Year' is selected as the period, the report will start from January 1st of the current year."
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:35
msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}."
-msgstr "Om Auto Repeat te configureren, schakelt u "Allow Auto Repeat" in vanaf {0}."
+msgstr ""
-#: www/login.html:73
+#: frappe/www/login.html:76
msgid "To enable it follow the instructions in the following link: {0}"
-msgstr "Volg de instructies in de volgende link om dit in te schakelen: {0}"
+msgstr ""
-#: desk/doctype/onboarding_step/onboarding_step.js:18
+#: frappe/core/doctype/server_script/server_script.js:40
+msgid "To enable server scripts, read the {0}."
+msgstr ""
+
+#: frappe/desk/doctype/onboarding_step/onboarding_step.js:18
msgid "To export this step as JSON, link it in a Onboarding document and save the document."
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:783
-msgid "To get the updated report, click on {0}."
-msgstr "Klik op {0} om het bijgewerkte rapport te krijgen."
+#: frappe/email/doctype/email_account/email_account.js:126
+msgid "To generate password click {0}"
+msgstr ""
-#: www/me.html:51
-msgid "To manage your authorized third party apps"
+#: frappe/public/js/frappe/views/reports/query_report.js:857
+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'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#: frappe/desk/doctype/system_console/system_console.json
msgid "To print output use print(text)"
msgstr ""
-#: core/doctype/user_type/user_type.py:295
+#: frappe/core/doctype/user_type/user_type.py:291
msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record."
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.js:8
+#: frappe/integrations/doctype/google_calendar/google_calendar.js:8
msgid "To use Google Calendar, enable {0}."
-msgstr "Schakel {0} in om Google Agenda te gebruiken."
+msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.js:8
+#: frappe/integrations/doctype/google_contacts/google_contacts.js:8
msgid "To use Google Contacts, enable {0}."
-msgstr "Schakel {0} in om Google Contacten te gebruiken."
+msgstr ""
-#: integrations/doctype/google_drive/google_drive.js:8
+#: frappe/integrations/doctype/google_drive/google_drive.js:8
msgid "To use Google Drive, enable {0}."
-msgstr "Schakel {0} in om Google Drive te gebruiken."
+msgstr ""
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "To use Google Indexing, enable Google Settings."
msgstr ""
#. Description of the 'Slack Channel' (Link) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "To use Slack Channel, add a Slack Webhook URL."
msgstr ""
-#: public/js/frappe/utils/diffview.js:43
+#: frappe/public/js/frappe/utils/diffview.js:44
msgid "To version"
msgstr ""
+#. Label of a shortcut in the Tools Workspace
#. Name of a DocType
#. Name of a report
-#: desk/doctype/todo/todo.json desk/report/todo/todo.json
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.json
msgid "ToDo"
-msgstr "Actie"
+msgstr ""
-#. Label of a shortcut in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "ToDo"
-msgid "ToDo"
-msgstr "Actie"
-
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "ToDo"
-msgstr "Actie"
-
-#: public/js/frappe/form/controls/date.js:58
-#: public/js/frappe/views/calendar/calendar.js:267
+#: frappe/public/js/frappe/form/controls/date.js:58
+#: frappe/public/js/frappe/ui/filters/filter.js:733
+#: frappe/public/js/frappe/views/calendar/calendar.js:274
msgid "Today"
-msgstr "Vandaag"
+msgstr ""
-#: public/js/frappe/ui/notifications/notifications.js:55
-msgid "Today's Events"
-msgstr "Evenementen van vandaag"
-
-#: public/js/frappe/views/reports/report_view.js:1495
+#: frappe/public/js/frappe/views/reports/report_view.js:1564
msgid "Toggle Chart"
-msgstr "Wissel diagram"
+msgstr ""
#. Label of a standard navbar item
#. Type: Action
-#: hooks.py
+#: frappe/hooks.py
msgid "Toggle Full Width"
msgstr ""
-#: public/js/frappe/views/file/file_view.js:33
+#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
-msgstr "Schakelen tussen rasterweergave"
+msgstr ""
-#: public/js/frappe/ui/page.js:193 public/js/frappe/ui/page.js:195
-#: public/js/frappe/views/reports/report_view.js:1499
+#: frappe/public/js/frappe/ui/page.js:201
+#: frappe/public/js/frappe/ui/page.js:203
+#: frappe/public/js/frappe/views/reports/report_view.js:1568
msgid "Toggle Sidebar"
-msgstr "Zijbalk verschuiven"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1681
+#: frappe/public/js/frappe/list/list_view.js:1819
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
-msgstr "Zijbalk verschuiven"
+msgstr ""
#. Label of a standard navbar item
#. Type: Action
-#: hooks.py
+#: frappe/hooks.py
msgid "Toggle Theme"
msgstr ""
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
-msgstr "blijk"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/token_cache/token_cache.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Cache"
msgstr ""
-#. Linked DocType in Connected App's connections
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
-msgid "Token Cache"
-msgstr ""
-
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Token Cache"
-msgstr ""
-
-#. Label of a Data field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
+#. Label of the token_type (Data) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Type"
msgstr ""
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the token_uri (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Token URI"
msgstr ""
-#: utils/oauth.py:184
+#: frappe/utils/oauth.py:184
msgid "Token is missing"
-msgstr "Token ontbreekt"
+msgstr ""
-#: desk/doctype/bulk_update/bulk_update.py:70 model/workflow.py:253
+#: frappe/public/js/frappe/ui/filters/filter.js:739
+msgid "Tomorrow"
+msgstr ""
+
+#: frappe/desk/doctype/bulk_update/bulk_update.py:68
+#: frappe/model/workflow.py:254
msgid "Too Many Documents"
msgstr ""
-#: rate_limiter.py:88
+#: frappe/rate_limiter.py:101
msgid "Too Many Requests"
-msgstr "Te veel verzoeken"
+msgstr ""
-#: database/database.py:387
+#: frappe/database/database.py:474
msgid "Too many changes to database in single action."
msgstr ""
-#: core/doctype/user/user.py:984
+#: frappe/utils/background_jobs.py:728
+msgid "Too many queued background jobs ({0}). Please retry after some time."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1028
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
-msgstr "Te veel gebruikers aangemeld voor kort, zodat de registratie is uitgeschakeld. Probeer het over een uur terug"
+msgstr ""
#. Name of a Workspace
#. Label of a Card Break in the Tools Workspace
-#: automation/workspace/tools/tools.json
+#: frappe/automation/workspace/tools/tools.json
msgid "Tools"
msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:153
msgid "Top"
-msgstr "Top"
+msgstr ""
+
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13
+msgid "Top 10"
+msgstr ""
#. Name of a DocType
-#: website/doctype/top_bar_item/top_bar_item.json
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Top Bar Item"
-msgstr "Top Bar Item"
+msgstr ""
-#. Label of a Table field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the top_bar_items (Table) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Top Bar Items"
-msgstr "Top Bar Items"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:245
msgid "Top Center"
msgstr ""
-#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Top Center"
+#. Label of the top_errors (Table) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Top Errors"
msgstr ""
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:244
msgid "Top Left"
msgstr ""
-#: templates/emails/energy_points_summary.html:3
-msgid "Top Performer"
-msgstr "Toppresteerder"
-
-#: templates/emails/energy_points_summary.html:18
-msgid "Top Reviewer"
-msgstr "Toprecensent"
-
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Top Right"
-msgstr ""
-
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:246
msgid "Top Right"
msgstr ""
-#: templates/emails/energy_points_summary.html:33
-msgid "Top {0}"
-msgstr "Top {0}"
-
-#. Label of a Link field in DocType 'Discussion Reply'
-#: website/doctype/discussion_reply/discussion_reply.json
-msgctxt "Discussion Reply"
+#. Label of the topic (Link) field in DocType 'Discussion Reply'
+#: frappe/website/doctype/discussion_reply/discussion_reply.json
msgid "Topic"
-msgstr "Onderwerp"
+msgstr ""
-#: desk/query_report.py:503
+#: frappe/desk/query_report.py:533
+#: frappe/public/js/frappe/views/reports/print_grid.html:45
+#: frappe/public/js/frappe/views/reports/query_report.js:1320
+#: frappe/public/js/frappe/views/reports/report_view.js:1545
msgid "Total"
-msgstr "Totaal"
+msgstr ""
-#. Label of a Int field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. 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_recipients (Int) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Total Recipients"
msgstr ""
-#. Label of a Int field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#. Label of the total_subscribers (Int) field in DocType 'Email Group'
+#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
+#. Email Group'
+#: frappe/email/doctype/email_group/email_group.json
+#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
-msgstr "Totaal Abonnees"
+msgstr ""
-#. Label of a Read Only field in DocType 'Newsletter Email Group'
-#: email/doctype/newsletter_email_group/newsletter_email_group.json
-msgctxt "Newsletter Email Group"
-msgid "Total Subscribers"
-msgstr "Totaal Abonnees"
+#. 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 a Int field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the total_views (Int) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Total Views"
msgstr ""
-#. Label of a Duration field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
msgstr ""
#. Description of the 'Initial Sync Count' (Select) field in DocType 'Email
#. Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Total number of emails to sync in initial sync process "
-msgstr "Totaal aantal e-mails te synchroniseren in eerste synchronisatie proces"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1181
-#: public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/print_format_builder/ConfigureColumns.vue:12
+msgid "Total:"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1250
msgid "Totals"
-msgstr "Totalen"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1156
+#: frappe/public/js/frappe/views/reports/report_view.js:1225
msgid "Totals Row"
-msgstr "Totalen rij"
+msgstr ""
-#. Label of a Data field in DocType 'Error Log'
-#: core/doctype/error_log/error_log.json
-msgctxt "Error Log"
+#. Label of the trace_id (Data) field in DocType 'Error Log'
+#: frappe/core/doctype/error_log/error_log.json
msgid "Trace ID"
msgstr ""
-#. Label of a Code field in DocType 'Patch Log'
-#: core/doctype/patch_log/patch_log.json
-msgctxt "Patch Log"
+#. Label of the traceback (Code) field in DocType 'Patch Log'
+#: frappe/core/doctype/patch_log/patch_log.json
msgid "Traceback"
-msgstr "Herleiden"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the track_changes (Check) field in DocType 'DocType'
+#. Label of the track_changes (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Track Changes"
-msgstr "Spoorwissel"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Track Changes"
-msgstr "Spoorwissel"
-
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the track_email_status (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Track Email Status"
-msgstr "Volg e-mailstatus"
+msgstr ""
-#. Label of a Data field in DocType 'Milestone'
-#: automation/doctype/milestone/milestone.json
-msgctxt "Milestone"
+#. Label of the track_field (Data) field in DocType 'Milestone'
+#: frappe/automation/doctype/milestone/milestone.json
msgid "Track Field"
-msgstr "Volg veld"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the track_seen (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Track Seen"
-msgstr "Track Seen"
+msgstr ""
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the track_steps (Check) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Track Steps"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the track_views (Check) field in DocType 'DocType'
+#. Label of the track_views (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Track Views"
-msgstr "Trackweergaven"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Track Views"
-msgstr "Trackweergaven"
+msgstr ""
#. Description of the 'Track Email Status' (Check) field in DocType 'Email
#. Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid ""
-"Track if your email has been opened by the recipient.\n"
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Track if your email has been opened by the recipient.\n"
"
\n"
"Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered \"Opened\""
msgstr ""
-#: public/js/frappe/utils/utils.js:1744
+#. Description of a DocType
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
+msgid "Track milestones for any document"
+msgstr ""
+
+#. Label of a Card Break in the Website Workspace
+#: frappe/website/workspace/website/website.json
+msgid "Tracking"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/utils.js:1781
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
-#. Label of a Small Text field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
+#. Label of the transaction_hash (Small Text) field in DocType 'Transaction
+#. Log'
+#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Transaction Hash"
-msgstr "Transactie Hash"
+msgstr ""
#. Name of a DocType
-#: core/doctype/transaction_log/transaction_log.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Transaction Log"
-msgstr "Transactielogboek"
+msgstr ""
#. Name of a report
-#: core/report/transaction_log_report/transaction_log_report.json
+#: frappe/core/report/transaction_log_report/transaction_log_report.json
msgid "Transaction Log Report"
-msgstr "Transactielogboekrapport"
+msgstr ""
-#. Label of a Section Break field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/desk/page/setup_wizard/install_fixtures.py:31
+msgid "Transgender"
+msgstr ""
+
+#: frappe/public/js/workflow_builder/components/Properties.vue:19
+msgid "Transition Properties"
+msgstr ""
+
+#. Label of the transition_rules (Section Break) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Transition Rules"
-msgstr "Overgang Regels"
+msgstr ""
-#. Label of a Table field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the transitions (Table) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Transitions"
-msgstr "Overgangen"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the translatable (Check) field in DocType 'DocField'
+#. Label of the translatable (Check) field in DocType 'Custom Field'
+#. Label of the translatable (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Translatable"
-msgstr "vertaalbaar"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Translatable"
-msgstr "vertaalbaar"
+#: frappe/public/js/frappe/views/reports/query_report.js:2188
+msgid "Translate Data"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Translatable"
-msgstr "vertaalbaar"
-
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the translated_doctype (Check) field in DocType 'DocType'
+#. Label of the translated_doctype (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Translate Link Fields"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Translate Link Fields"
+#: frappe/public/js/frappe/views/reports/report_view.js:1650
+msgid "Translate values"
msgstr ""
-#: public/js/frappe/views/translation_manager.js:11
+#: frappe/public/js/frappe/views/translation_manager.js:11
msgid "Translate {0}"
-msgstr "Vertaal {0}"
+msgstr ""
-#. Label of a Code field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
+#. Label of the translated_text (Code) field in DocType 'Translation'
+#: frappe/core/doctype/translation/translation.json
msgid "Translated Text"
-msgstr "vertaalde tekst"
+msgstr ""
#. Name of a DocType
-#: core/doctype/translation/translation.json
+#: frappe/core/doctype/translation/translation.json
msgid "Translation"
-msgstr "Vertaling"
+msgstr ""
-#: public/js/frappe/views/translation_manager.js:46
+#: frappe/public/js/frappe/views/translation_manager.js:46
msgid "Translations"
-msgstr "vertaalwerk"
+msgstr ""
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Trash"
-msgstr "uitschot"
+msgstr ""
#. Option for the 'View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Tree"
-msgstr "Boom"
-
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Tree"
-msgstr "Boom"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:210
+msgid "Tree View"
+msgstr ""
#. Description of the 'Is Tree' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "Tree structures are implemented using Nested Set"
-msgstr "Boomstructuren worden geïmplementeerd met behulp van Nested Set"
+msgstr ""
-#: public/js/frappe/views/treeview.js:20
+#: frappe/public/js/frappe/views/treeview.js:19
msgid "Tree view is not available for {0}"
-msgstr "Structuurweergave is niet beschikbaar voor {0}"
+msgstr ""
-#. Label of a Data field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the method (Data) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Trigger Method"
-msgstr "Trigger Methode"
+msgstr ""
-#: public/js/frappe/ui/keyboard.js:191
+#: frappe/public/js/frappe/ui/keyboard.js:196
msgid "Trigger Primary Action"
-msgstr "Activeer primaire actie"
+msgstr ""
-#: tests/test_translate.py:55
+#: frappe/tests/test_translate.py:55
msgid "Trigger caching"
msgstr ""
#. Description of the 'Trigger Method' (Data) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Trigger on valid methods like \"before_insert\", \"after_update\", etc (will depend on the DocType selected)"
-msgstr "Trigger geldige methoden zoals "before_insert", "after_update", etc (hangt af van de geselecteerde DocType)"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:323
+#: frappe/custom/doctype/customize_form/customize_form.js:144
+msgid "Trim Table"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:318
msgid "Try Again"
msgstr ""
-#. Label of a Data field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the try_naming_series (Data) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Try a Naming Series"
msgstr ""
-#: utils/password_strength.py:108
-msgid "Try to avoid repeated words and characters"
-msgstr "Probeer om herhaalde woorden en tekens te vermijden"
+#: frappe/printing/page/print/print.js:189
+#: frappe/printing/page/print/print.js:195
+msgid "Try the new Print Designer"
+msgstr ""
-#: utils/password_strength.py:100
+#: 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 "Probeer een langere keyboard patroon met meer bochten te gebruiken"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Tuesday"
-msgstr "Dinsdag"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Tuesday"
-msgstr "Dinsdag"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Tuesday"
-msgstr "Dinsdag"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Tuesday"
-msgstr "Dinsdag"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the tuesday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Tuesday"
-msgstr "Dinsdag"
+msgstr ""
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the two_factor_auth (Check) field in DocType 'Role'
+#. Label of the two_factor_authentication (Section Break) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/role/role.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Two Factor Authentication"
-msgstr "Twee Factor Authentication"
+msgstr ""
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Two Factor Authentication"
-msgstr "Twee Factor Authentication"
-
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the two_factor_method (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Two Factor Authentication method"
-msgstr "Twee Factor Authentication methode"
+msgstr ""
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the communication_medium (Select) field in DocType 'Communication'
+#. Label of the fieldtype (Select) field in DocType 'DocField'
+#. Label of the fieldtype (Select) field in DocType 'Customize Form Field'
+#. Label of the type (Data) field in DocType 'Console Log'
+#. Label of the type (Select) field in DocType 'Dashboard Chart'
+#. Label of the type (Select) field in DocType 'Desktop Icon'
+#. Label of the type (Select) field in DocType 'Notification Log'
+#. Label of the type (Select) field in DocType 'Number Card'
+#. Label of the type (Select) field in DocType 'System Console'
+#. Label of the type (Select) field in DocType 'Workspace'
+#. Label of the type (Select) field in DocType 'Workspace Link'
+#. Label of the type (Select) field in DocType 'Workspace Shortcut'
+#. Label of the type (Select) field in DocType 'Web Template'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/console_log/console_log.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/system_console/system_console.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/views/file/file_view.js:337
+#: frappe/public/js/frappe/views/workspace/workspace.js:399
+#: frappe/public/js/frappe/widgets/widget_dialog.js:391
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/www/attribution.html:35
msgid "Type"
-msgstr "Type"
+msgstr ""
-#. Label of a Data field in DocType 'Console Log'
-#: desk/doctype/console_log/console_log.json
-msgctxt "Console Log"
-msgid "Type"
-msgstr "Type"
-
-#. Label of a Select field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Type"
-msgstr "Type"
-
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Type"
-msgstr "Type"
-
-#. Label of a Select field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Type"
-msgstr "Type"
-
-#. Label of a Select field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Type"
-msgstr "Type"
-
-#. Label of a Select field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Type"
-msgstr "Type"
-
-#. Label of a Select field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "Type"
-msgstr "Type"
-
-#. Label of a Select field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Type"
-msgstr "Type"
-
-#. Label of a Select field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
-msgid "Type"
-msgstr "Type"
-
-#. Label of a Select field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
-msgid "Type"
-msgstr "Type"
-
-#. Label of a Select field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
-msgid "Type"
-msgstr "Type"
-
-#. Label of a Select field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Type"
-msgstr "Type"
-
-#: public/js/frappe/form/controls/comment.js:78
+#: frappe/public/js/frappe/form/controls/comment.js:90
msgid "Type a reply / comment"
msgstr ""
-#: templates/includes/search_template.html:51
+#: frappe/templates/includes/search_template.html:51
msgid "Type something in the search box to search"
-msgstr "Typ iets in het zoekvak om te zoeken"
+msgstr ""
-#: templates/discussions/comment_box.html:8
+#: frappe/templates/discussions/comment_box.html:8
+#: frappe/templates/discussions/reply_section.html:53
+#: frappe/templates/discussions/topic_modal.html:11
msgid "Type title"
msgstr ""
-#: templates/discussions/discussions.js:341
+#: frappe/templates/discussions/discussions.js:341
msgid "Type your reply here..."
msgstr ""
-#: core/doctype/data_export/exporter.py:143
+#: frappe/core/doctype/data_export/exporter.py:143
msgid "Type:"
-msgstr "Type:"
+msgstr ""
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the ui_tour (Check) field in DocType 'Form Tour'
+#. Label of the ui_tour (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "UI Tour"
msgstr ""
-#. Label of a Check field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "UI Tour"
+#. Label of the uid (Int) field in DocType 'Communication'
+#. Label of the uid (Data) field in DocType 'Email Flag Queue'
+#. Label of the uid (Data) field in DocType 'Unhandled Email'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
+msgid "UID"
msgstr ""
-#. Label of a Int field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "UID"
-msgstr "UID"
-
-#. Label of a Data field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
-msgid "UID"
-msgstr "UID"
-
-#. Label of a Data field in DocType 'Unhandled Email'
-#: email/doctype/unhandled_email/unhandled_email.json
-msgctxt "Unhandled Email"
-msgid "UID"
-msgstr "UID"
-
-#. Label of a Int field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the uidnext (Int) field in DocType 'Email Account'
+#. Label of the uidnext (Data) field in DocType 'IMAP Folder'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "UIDNEXT"
-msgstr "UIDNEXT"
+msgstr ""
-#. Label of a Data field in DocType 'IMAP Folder'
-#: email/doctype/imap_folder/imap_folder.json
-msgctxt "IMAP Folder"
-msgid "UIDNEXT"
-msgstr "UIDNEXT"
-
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the uidvalidity (Data) field in DocType 'Email Account'
+#. Label of the uidvalidity (Data) field in DocType 'IMAP Folder'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "UIDVALIDITY"
-msgstr "UIDVALIDITY"
-
-#. Label of a Data field in DocType 'IMAP Folder'
-#: email/doctype/imap_folder/imap_folder.json
-msgctxt "IMAP Folder"
-msgid "UIDVALIDITY"
-msgstr "UIDVALIDITY"
+msgstr ""
#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "UNSEEN"
-msgstr "ONGEZIEN"
+msgstr ""
#. Description of the 'Redirect URIs' (Text) field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
-msgid ""
-"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n"
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n"
"
e.g. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook"
msgstr ""
-#. Label of a Small Text field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "URL"
-msgstr "URL"
-
-#. Label of a Data field in DocType 'Top Bar Item'
-#: website/doctype/top_bar_item/top_bar_item.json
-msgctxt "Top Bar Item"
-msgid "URL"
-msgstr "URL"
-
-#. Label of a Data field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "URL"
-msgstr "URL"
-
-#. Label of a Data field in DocType 'Website Slideshow Item'
-#: website/doctype/website_slideshow_item/website_slideshow_item.json
-msgctxt "Website Slideshow Item"
-msgid "URL"
-msgstr "URL"
-
+#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
-#. Label of a Data field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#. Label of the url (Data) field in DocType 'Workspace Shortcut'
+#. Label of the url (Small Text) field in DocType 'Integration Request'
+#. Label of the url (Text) field in DocType 'Webhook Request Log'
+#. Label of the url (Data) field in DocType 'Top Bar Item'
+#. Label of the url (Data) field in DocType 'Website Slideshow Item'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:458
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "URL"
-msgstr "URL"
+msgstr ""
#. Description of the 'Documentation Link' (Data) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "URL for documentation or help"
-msgstr "URL voor documentatie of hulp"
+msgstr ""
-#: core/doctype/file/file.py:216
+#: frappe/core/doctype/file/file.py:219
msgid "URL must start with http:// or https://"
msgstr ""
-#: website/doctype/web_page/web_page.js:84
+#: frappe/website/doctype/web_page/web_page.js:84
msgid "URL of the page"
-msgstr "URL van de pagina"
+msgstr ""
#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item'
-#: website/doctype/website_slideshow_item/website_slideshow_item.json
-msgctxt "Website Slideshow Item"
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "URL to go to on clicking the slideshow image"
-msgstr "URL om naar toe te gaan door op de afbeelding van de diavoorstelling te klikken"
+msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.py:68
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+#: frappe/website/workspace/website/website.json
+msgid "UTM Campaign"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/workspace/website/website.json
+msgid "UTM Medium"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/utm_source/utm_source.json
+#: frappe/website/workspace/website/website.json
+msgid "UTM Source"
+msgstr ""
+
+#. 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 "Kon DocType {0} niet vinden"
+msgstr ""
-#: public/js/frappe/ui/capture.js:330
+#: frappe/public/js/frappe/ui/capture.js:338
msgid "Unable to load camera."
-msgstr "Kan de camera niet laden."
+msgstr ""
-#: public/js/frappe/model/model.js:258
+#: frappe/public/js/frappe/model/model.js:268
msgid "Unable to load: {0}"
-msgstr "Kan niet laden: {0}"
+msgstr ""
-#: utils/csvutils.py:35
+#: frappe/utils/csvutils.py:37
msgid "Unable to open attached file. Did you export it as CSV?"
-msgstr "Bijgevoegd bestand openen onmogelijk. Is het een .CSV bestand?"
+msgstr ""
-#: core/doctype/file/utils.py:99 core/doctype/file/utils.py:128
+#: frappe/core/doctype/file/utils.py:98 frappe/core/doctype/file/utils.py:130
msgid "Unable to read file format for {0}"
-msgstr "Kan de bestandsindeling niet lezen voor {0}"
+msgstr ""
-#: core/doctype/communication/email.py:173
+#: frappe/core/doctype/communication/email.py:179
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:439
+#: frappe/public/js/frappe/views/calendar/calendar.js:450
msgid "Unable to update event"
-msgstr "Event actualiseren onmogelijk"
+msgstr ""
-#: core/doctype/file/file.py:458
+#: frappe/core/doctype/file/file.py:464
msgid "Unable to write file format for {0}"
-msgstr "Kan geen bestandsformaat schrijven voor {0}"
+msgstr ""
-#. Label of a Code field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the unassign_condition (Code) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Unassign Condition"
-msgstr "Toewijzing ongedaan maken"
+msgstr ""
-#: www/error.py:15
-msgid "Uncaught Server Exception"
-msgstr "Niet-afgevangen serveruitzondering"
+#: frappe/app.py:383
+msgid "Uncaught Exception"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:93
+#: frappe/public/js/frappe/form/toolbar.js:103
msgid "Unchanged"
-msgstr "onveranderd"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:450
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Undo"
msgstr ""
-#: public/js/frappe/form/toolbar.js:458
+#: frappe/public/js/frappe/form/toolbar.js:523
msgid "Undo last action"
msgstr ""
-#: public/js/frappe/form/sidebar/form_sidebar.js:232
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
+#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
-msgstr "Volg niet"
-
-#. Name of a DocType
-#: email/doctype/unhandled_email/unhandled_email.json
-msgid "Unhandled Email"
-msgstr "unhandled Email"
-
-#: public/js/frappe/views/workspace/workspace.js:556
-msgid "Unhide Workspace"
msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Unique"
-msgstr "Uniek"
+#. Name of a DocType
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
+msgid "Unhandled Email"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Unique"
-msgstr "Uniek"
+#. Label of the unhandled_emails (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Unhandled Emails"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. 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 "Uniek"
+msgstr ""
-#: public/js/frappe/model/model.js:199
+#: 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 "Onbekend Kolom : {0}"
+msgstr ""
-#: utils/data.py:1215
+#: frappe/utils/data.py:1246
msgid "Unknown Rounding Method: {}"
msgstr ""
-#: auth.py:299
+#: frappe/auth.py:316
msgid "Unknown User"
-msgstr "Onbekende gebruiker"
+msgstr ""
-#: utils/csvutils.py:52
-msgid "Unknown file encoding. Tried utf-8, windows-1250, windows-1252."
-msgstr "Onbekend bestandscodering. UTF-8 , windows-1250 en windows-1252 geprobeerd..."
+#: frappe/utils/csvutils.py:54
+msgid "Unknown file encoding. Tried to use: {0}"
+msgstr ""
-#: core/doctype/submission_queue/submission_queue.js:7
+#: frappe/core/doctype/submission_queue/submission_queue.js:7
msgid "Unlock Reference Document"
msgstr ""
-#: website/doctype/blog_post/blog_post.js:36
-#: website/doctype/web_form/web_form.js:77
+#: frappe/public/js/frappe/form/footer/form_timeline.js:632
+#: frappe/website/doctype/blog_post/blog_post.js:36
+#: frappe/website/doctype/web_form/web_form.js:86
msgid "Unpublish"
msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
msgid "Unread"
-msgstr "Ongelezen"
+msgstr ""
-#. Label of a Check field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the unread_notification_sent (Check) field in DocType
+#. 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Unread Notification Sent"
-msgstr "Melding 'Ongelezen' verstuurd"
+msgstr ""
-#: utils/safe_exec.py:438
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr ""
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/public/js/frappe/form/controls/multicheck.js:166
+msgid "Unselect All"
+msgstr ""
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Unshared"
-msgstr "ongedeelde"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Unshared"
-msgstr "ongedeelde"
-
-#: email/queue.py:68
+#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
msgid "Unsubscribe"
-msgstr "Afmelden"
+msgstr ""
-#. Label of a Data field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#. Label of the unsubscribe_method (Data) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Unsubscribe Method"
-msgstr "Afmelden Methode"
+msgstr ""
-#. Label of a Data field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Unsubscribe Param"
-msgstr "Afmelden Param"
+#. Label of the unsubscribe_params (Code) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Unsubscribe Params"
+msgstr ""
-#: email/queue.py:126
+#. Label of the unsubscribed (Check) field in DocType 'Contact'
+#. Label of the unsubscribed (Check) field in DocType 'User'
+#. Label of the unsubscribed (Check) field in DocType 'Email Group Member'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
+#: frappe/email/queue.py:122
msgid "Unsubscribed"
-msgstr "Uitgeschreven"
+msgstr ""
-#. Label of a Check field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Unsubscribed"
-msgstr "Uitgeschreven"
-
-#. Label of a Check field in DocType 'Email Group Member'
-#: email/doctype/email_group_member/email_group_member.json
-msgctxt "Email Group Member"
-msgid "Unsubscribed"
-msgstr "Uitgeschreven"
-
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Unsubscribed"
-msgstr "Uitgeschreven"
-
-#: public/js/frappe/data_import/import_preview.js:72
+#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
-msgstr "Kolom zonder titel"
+msgstr ""
-#: core/doctype/file/file.js:28
+#: frappe/core/doctype/file/file.js:38
msgid "Unzip"
-msgstr "Uitpakken"
+msgstr ""
-#: public/js/frappe/views/file/file_view.js:132
+#: frappe/public/js/frappe/views/file/file_view.js:132
msgid "Unzipped {0} files"
-msgstr "Uitgepakte {0} bestanden"
+msgstr ""
-#: public/js/frappe/views/file/file_view.js:125
+#: frappe/public/js/frappe/views/file/file_view.js:125
msgid "Unzipping files..."
-msgstr "Bestanden uitpakken ..."
+msgstr ""
-#: desk/doctype/event/event.py:258
+#: frappe/desk/doctype/event/event.py:269
msgid "Upcoming Events for Today"
-msgstr "Geplande evenementen voor vandaag"
+msgstr ""
-#: core/doctype/data_import/data_import_list.js:40
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:23
-#: custom/doctype/customize_form/customize_form.js:370
-#: desk/doctype/bulk_update/bulk_update.js:15
-#: printing/page/print_format_builder/print_format_builder.js:447
-#: printing/page/print_format_builder/print_format_builder.js:501
-#: printing/page/print_format_builder/print_format_builder.js:670
-#: printing/page/print_format_builder/print_format_builder.js:757
-#: public/js/frappe/form/grid_row.js:402
-#: public/js/frappe/views/workspace/workspace.js:647
+#. Label of the update (Button) field in DocType 'Document Naming Settings'
+#: frappe/core/doctype/data_import/data_import_list.js:36
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:23
+#: frappe/custom/doctype/customize_form/customize_form.js:438
+#: frappe/desk/doctype/bulk_update/bulk_update.js:15
+#: frappe/printing/page/print_format_builder/print_format_builder.js:447
+#: frappe/printing/page/print_format_builder/print_format_builder.js:507
+#: frappe/printing/page/print_format_builder/print_format_builder.js:678
+#: frappe/printing/page/print_format_builder/print_format_builder.js:765
+#: frappe/public/js/frappe/form/grid_row.js:411
msgid "Update"
-msgstr "Bijwerken"
+msgstr ""
-#. Label of a Button field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
-msgid "Update"
-msgstr "Bijwerken"
-
-#. Label of a Button field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the update_amendment_naming (Button) field in DocType 'Document
+#. Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Amendment Naming"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:596
-msgid "Update Details"
-msgstr "Bijwerken details"
-
#. Option for the 'Import Type' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/core/doctype/data_import/data_import.json
msgid "Update Existing Records"
-msgstr "Bestaande records bijwerken"
+msgstr ""
-#. Label of a Select field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#. Label of the update_field (Select) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Update Field"
-msgstr "Veld bijwerken"
+msgstr ""
-#: core/doctype/installed_applications/installed_applications.js:6
-#: core/doctype/installed_applications/installed_applications.js:13
+#: frappe/core/doctype/installed_applications/installed_applications.js:6
+#: frappe/core/doctype/installed_applications/installed_applications.js:13
msgid "Update Hooks Resolution Order"
msgstr ""
-#: core/doctype/installed_applications/installed_applications.js:45
+#: frappe/core/doctype/installed_applications/installed_applications.js:45
msgid "Update Order"
msgstr ""
-#. Label of a Section Break field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/desk/page/setup_wizard/setup_wizard.js:494
+msgid "Update Password"
+msgstr ""
+
+#. Label of the update_series (Section Break) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Series Counter"
msgstr ""
-#. Label of a Button field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the update_series_start (Button) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Series Number"
-msgstr "Serienummer bijwerken"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Update Settings"
-msgstr "Update-instellingen"
+msgstr ""
-#: public/js/frappe/views/translation_manager.js:13
+#: frappe/public/js/frappe/views/translation_manager.js:13
msgid "Update Translations"
-msgstr "Update vertalingen"
+msgstr ""
-#. Label of a Small Text field in DocType 'Bulk Update'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
+#. Label of the update_value (Small Text) field in DocType 'Bulk Update'
+#. Label of the update_value (Data) field in DocType 'Workflow Document State'
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Update Value"
-msgstr "Waarde bijwerken"
+msgstr ""
-#. Label of a Data field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
-msgid "Update Value"
-msgstr "Waarde bijwerken"
+#: frappe/utils/change_log.py:381
+msgid "Update from Frappe Cloud"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:310
+#: frappe/public/js/frappe/list/bulk_operations.js:375
msgid "Update {0} records"
msgstr ""
-#: desk/doctype/desktop_icon/desktop_icon.py:452
-#: public/js/frappe/web_form/web_form.js:423
-msgid "Updated"
-msgstr "Bijgewerkt"
-
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#. Option for the 'Status' (Select) field in DocType 'Permission Log'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
+#: frappe/desk/doctype/workspace_settings/workspace_settings.py:41
+#: frappe/public/js/frappe/web_form/web_form.js:427
msgid "Updated"
-msgstr "Bijgewerkt"
-
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Updated"
-msgstr "Bijgewerkt"
-
-#: desk/doctype/bulk_update/bulk_update.js:32
-msgid "Updated Successfully"
-msgstr "succesvol geupdatet"
-
-#: public/js/frappe/desk.js:420
-msgid "Updated To A New Version 🎉"
-msgstr "Bijgewerkt naar een nieuwe versie 🎉"
-
-#: public/js/frappe/list/bulk_operations.js:307
-msgid "Updated successfully"
-msgstr "Succesvol geupdatet"
-
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Updates"
msgstr ""
-#: utils/response.py:320
-msgid "Updating"
-msgstr "Aan het bijwerken"
+#: frappe/desk/doctype/bulk_update/bulk_update.js:32
+msgid "Updated Successfully"
+msgstr ""
-#: public/js/frappe/form/save.js:11
+#: frappe/public/js/frappe/desk.js:444
+msgid "Updated To A New Version 🎉"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:372
+msgid "Updated successfully"
+msgstr ""
+
+#: frappe/utils/response.py:333
+msgid "Updating"
+msgstr ""
+
+#: frappe/public/js/frappe/form/save.js:11
msgctxt "Freeze message while updating a document"
msgid "Updating"
-msgstr "Aan het bijwerken"
+msgstr ""
-#: email/doctype/email_queue/email_queue.py:406
+#: frappe/email/doctype/email_queue/email_queue_list.js:49
msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run."
msgstr ""
-#: core/doctype/document_naming_rule/document_naming_rule.js:17
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:17
msgid "Updating counter may lead to document name conflicts if not done properly"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.py:23
+#: frappe/desk/page/setup_wizard/setup_wizard.py:23
msgid "Updating global settings"
msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.js:59
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59
msgid "Updating naming series options"
msgstr ""
-#: public/js/frappe/form/toolbar.js:126
+#: frappe/public/js/frappe/form/toolbar.js:136
msgid "Updating related fields..."
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.py:98
+#: frappe/desk/doctype/bulk_update/bulk_update.py:95
msgid "Updating {0}"
-msgstr "{0} updaten"
+msgstr ""
-#: core/doctype/data_import/data_import.js:36
+#: frappe/core/doctype/data_import/data_import.js:36
msgid "Updating {0} of {1}, {2}"
-msgstr "Updaten {0} van {1}, {2}"
+msgstr ""
-#: public/js/frappe/file_uploader/file_uploader.bundle.js:121
-#: public/js/frappe/file_uploader/file_uploader.bundle.js:122
+#: frappe/public/js/billing.bundle.js:131
+msgid "Upgrade plan"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_sidebar.js:331
+msgid "Upgrade your support experience with Frappe Helpdesk"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132
+#: frappe/public/js/frappe/form/grid.js:66
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
-msgstr "Uploaden"
+msgstr ""
-#. Label of a Check field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:93
+msgid "Upload Image"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198
+msgid "Upload file"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201
+msgid "Upload {0} files"
+msgstr ""
+
+#. Label of the uploaded_to_dropbox (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Uploaded To Dropbox"
-msgstr "Geupload naar Dropbox"
+msgstr ""
-#. Label of a Check field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the uploaded_to_google_drive (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Uploaded To Google Drive"
-msgstr "Geupload naar Google Drive"
+msgstr ""
+
+#: frappe/integrations/doctype/google_drive/google_drive.py:196
+msgid "Uploading backup to Google Drive."
+msgstr ""
+
+#: frappe/integrations/doctype/google_drive/google_drive.py:201
+msgid "Uploading successful."
+msgstr ""
+
+#: frappe/integrations/doctype/google_drive/google_drive.js:16
+msgid "Uploading to Google Drive"
+msgstr ""
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#, python-format
-msgctxt "Onboarding Step"
msgid "Use % for any non empty value."
msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the ascii_encode_password (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Use ASCII encoding for password"
-msgstr "Gebruik ASCII-codering voor wachtwoord"
+msgstr ""
-#. Label of a Check field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
+#. Label of the use_first_day_of_period (Check) field in DocType 'Auto Email
+#. Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Use First Day of Period"
+msgstr ""
+
+#. Label of the use_html (Check) field in DocType 'Email Template'
+#: frappe/email/doctype/email_template/email_template.json
msgid "Use HTML"
msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the use_imap (Check) field in DocType 'Email Account'
+#. Label of the use_imap (Check) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use IMAP"
-msgstr "Met IMAP"
+msgstr ""
-#. Label of a Check field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Use IMAP"
-msgstr "Met IMAP"
+#. Label of the use_number_format_from_currency (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Use Number Format from Currency"
+msgstr ""
-#. Label of a Check field in DocType 'SMS Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#. Label of the use_post (Check) field in DocType 'SMS Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Use POST"
-msgstr "Gebruik POST"
+msgstr ""
-#. Label of a Check field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the use_report_chart (Check) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Use Report Chart"
-msgstr "Gebruik rapportdiagram"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the use_ssl (Check) field in DocType 'Email Account'
+#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Account'
+#. Label of the use_ssl (Check) field in DocType 'Email Domain'
+#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use SSL"
-msgstr "Gebruik SSL"
+msgstr ""
-#. Label of a Check field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Use SSL"
-msgstr "Gebruik SSL"
-
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the use_starttls (Check) field in DocType 'Email Account'
+#. Label of the use_starttls (Check) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use STARTTLS"
msgstr ""
-#. Label of a Check field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Use STARTTLS"
+#. Label of the use_tls (Check) field in DocType 'Email Account'
+#. Label of the use_tls (Check) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Use TLS"
msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Use TLS"
-msgstr "gebruik TLS"
-
-#. Label of a Check field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Use TLS"
-msgstr "gebruik TLS"
-
-#: utils/password_strength.py:44
+#: frappe/utils/password_strength.py:44
msgid "Use a few words, avoid common phrases."
-msgstr "Gebruik een paar woorden, vermijd voorkomende zinnen."
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the login_id_is_different (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Use different Email ID"
msgstr ""
-#: model/db_query.py:434
+#. Description of the 'Detect CSV type' (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Use if the default settings don't seem to detect your data correctly"
+msgstr ""
+
+#: frappe/model/db_query.py:434
msgid "Use of function {0} in field is restricted"
msgstr ""
-#: model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
-msgstr "Het gebruik van subvragen of functies is beperkt"
+msgstr ""
-#: printing/page/print/print.js:272
+#: frappe/printing/page/print/print.js:279
msgid "Use the new Print Format Builder"
msgstr ""
#. Description of the 'Title Field' (Data) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Use this fieldname to generate title"
-msgstr "Gebruik deze veldnaam om de titel te genereren"
+msgstr ""
-#. Label of a Check field in DocType 'User Email'
-#: core/doctype/user_email/user_email.json
-msgctxt "User Email"
+#. Description of the 'Always BCC Address' (Data) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Use this, for example, if all sent emails should also be send to an archive."
+msgstr ""
+
+#. Label of the used_oauth (Check) field in DocType 'User Email'
+#: frappe/core/doctype/user_email/user_email.json
msgid "Used OAuth"
msgstr ""
+#. Label of the user (Link) field in DocType 'Assignment Rule User'
+#. Label of the user (Link) field in DocType 'Reminder'
+#. Label of the user (Link) field in DocType 'Activity Log'
+#. Label of the user (Link) field in DocType 'API Request Log'
+#. Label of the user (Link) field in DocType 'Communication'
+#. Label of the user (Link) field in DocType 'DocShare'
+#. Label of the user (Link) field in DocType 'Log Setting User'
+#. Label of the user (Link) field in DocType 'Permission Inspector'
#. Name of a DocType
-#: core/doctype/user/user.json
-#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:8
-#: desk/page/user_profile/user_profile_controller.js:65
-#: templates/emails/energy_points_summary.html:38
-msgid "User"
-msgstr "Gebruiker"
-
-#. Label of a Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Label of a Link field in DocType 'Assignment Rule User'
-#: automation/doctype/assignment_rule_user/assignment_rule_user.json
-msgctxt "Assignment Rule User"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Label of a Link field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Label of a Link field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Label of a Link field in DocType 'Dashboard Settings'
-#: desk/doctype/dashboard_settings/dashboard_settings.json
-msgctxt "Dashboard Settings"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Label of a Link field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Label of a Link field in DocType 'Document Follow'
-#: email/doctype/document_follow/document_follow.json
-msgctxt "Document Follow"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Label of a Link field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Label of a Link field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Label of a Link field in DocType 'Log Setting User'
-#: core/doctype/log_setting_user/log_setting_user.json
-msgctxt "Log Setting User"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Linked DocType in Module Profile's connections
-#: core/doctype/module_profile/module_profile.json
-msgctxt "Module Profile"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Label of a Link field in DocType 'Note Seen By'
-#: desk/doctype/note_seen_by/note_seen_by.json
-msgctxt "Note Seen By"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Label of a Link field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Label of a Link field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Label of a Link field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Label of a Link field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Label of a Link field in DocType 'Permission Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
-msgid "User"
-msgstr "gebruiker"
-
-#. Label of a Link field in DocType 'Personal Data Download Request'
-#: website/doctype/personal_data_download_request/personal_data_download_request.json
-msgctxt "Personal Data Download Request"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Label of a Link field in DocType 'Reminder'
-#: automation/doctype/reminder/reminder.json
-msgctxt "Reminder"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Linked DocType in Role Profile's connections
-#: core/doctype/role_profile/role_profile.json
-msgctxt "Role Profile"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Label of a Link field in DocType 'Route History'
-#: desk/doctype/route_history/route_history.json
-msgctxt "Route History"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Label of a Link field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "User"
-msgstr "Gebruiker"
-
+#. Label of the user (Link) field in DocType 'User Group Member'
+#. Label of the user (Link) field in DocType 'User Permission'
#. Label of a Link in the Users Workspace
#. Label of a shortcut in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "User"
+#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Note Seen By'
+#. Label of the user (Link) field in DocType 'Notification Settings'
+#. Label of the user (Link) field in DocType 'Route History'
+#. Label of the user (Link) field in DocType 'Document Follow'
+#. Label of the user (Link) field in DocType 'Google Calendar'
+#. Label of the user (Link) field in DocType 'OAuth Authorization Code'
+#. Label of the user (Link) field in DocType 'OAuth Bearer Token'
+#. Label of the user (Link) field in DocType 'OAuth Client'
+#. Label of the user (Link) field in DocType 'Token Cache'
+#. Label of the user (Link) field in DocType 'Webhook Request Log'
+#. Label of the user (Link) field in DocType 'Blogger'
+#. Label of the user (Link) field in DocType 'Personal Data Download Request'
+#. Label of the user (Link) field in DocType 'Workflow Action'
+#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/api_request_log/api_request_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/log_setting_user/log_setting_user.json
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_group_member/user_group_member.json
+#: frappe/core/doctype/user_permission/user_permission.json
+#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8
+#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8
+#: frappe/core/workspace/users/users.json
+#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
+#: frappe/desk/doctype/note_seen_by/note_seen_by.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/desk/doctype/route_history/route_history.json
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/public/js/frappe/form/templates/set_sharing.html:3
+#: frappe/website/doctype/blogger/blogger.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "User"
-msgstr "Gebruiker"
+msgstr ""
-#. Label of a Link field in DocType 'User Group Member'
-#: core/doctype/user_group_member/user_group_member.json
-msgctxt "User Group Member"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Label of a Link field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Label of a Link field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Label of a Link field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
-msgid "User"
-msgstr "Gebruiker"
-
-#. Label of a Link field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the user (Link) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "User "
-msgstr "Gebruiker"
+msgstr ""
-#: core/doctype/has_role/has_role.py:24
+#: frappe/core/doctype/has_role/has_role.py:25
msgid "User '{0}' already has the role '{1}'"
-msgstr "Gebruiker '{0}' heeft al de rol van '{1}'"
+msgstr ""
#. Name of a DocType
-#: core/doctype/report/user_activity_report.json
+#: frappe/core/doctype/report/user_activity_report.json
msgid "User Activity Report"
msgstr ""
#. Name of a DocType
-#: core/doctype/report/user_activity_report_without_sort.json
+#: frappe/core/doctype/report/user_activity_report_without_sort.json
msgid "User Activity Report Without Sort"
msgstr ""
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
+#. Label of the user_agent (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "User Agent"
-msgstr "User Agent"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the in_create (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "User Cannot Create"
-msgstr "Gebruiker kan niet aanmaken"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the read_only (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "User Cannot Search"
-msgstr "Gebruiker kan niet zoeken"
+msgstr ""
-#. Label of a Table field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/public/js/frappe/desk.js:546
+msgid "User Changed"
+msgstr ""
+
+#. Label of the defaults (Table) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "User Defaults"
-msgstr "Gebruiker Standaardwaarden"
+msgstr ""
-#. Label of a Tab Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the user_details_tab (Tab Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "User Details"
msgstr ""
+#. Name of a report
+#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.json
+msgid "User Doctype Permissions"
+msgstr ""
+
#. Name of a DocType
-#: core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "User Document Type"
msgstr ""
-#: core/doctype/user_type/user_type.py:97
+#: frappe/core/doctype/user_type/user_type.py:98
msgid "User Document Types Limit Exceeded"
msgstr ""
#. Name of a DocType
-#: core/doctype/user_email/user_email.json
+#: frappe/core/doctype/user_email/user_email.json
msgid "User Email"
-msgstr "gebruiker E-mail"
+msgstr ""
-#. Label of a Table field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the user_emails (Table) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "User Emails"
-msgstr "gebruiker Emails"
-
-#. Label of a Select field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "User Field"
-msgstr "Gebruikersveld"
+msgstr ""
#. Name of a DocType
-#: core/doctype/user_group/user_group.json
+#: frappe/core/doctype/user_group/user_group.json
msgid "User Group"
msgstr ""
#. Name of a DocType
-#: core/doctype/user_group_member/user_group_member.json
+#: frappe/core/doctype/user_group_member/user_group_member.json
msgid "User Group Member"
msgstr ""
-#. Label of a Table MultiSelect field in DocType 'User Group'
-#: core/doctype/user_group/user_group.json
-msgctxt "User Group"
+#. Label of the user_group_members (Table MultiSelect) field in DocType 'User
+#. Group'
+#: frappe/core/doctype/user_group/user_group.json
msgid "User Group Members"
msgstr ""
-#. Label of a Data field in DocType 'User Social Login'
-#: core/doctype/user_social_login/user_social_login.json
-msgctxt "User Social Login"
+#. Label of the userid (Data) field in DocType 'User Social Login'
+#: frappe/core/doctype/user_social_login/user_social_login.json
msgid "User ID"
-msgstr "Gebruikers-ID"
+msgstr ""
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the user_id_property (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "User ID Property"
-msgstr "Gebruiker ID Eigendom"
+msgstr ""
-#. Label of a Link field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Description of a DocType
+#: frappe/website/doctype/blogger/blogger.json
+msgid "User ID of a Blogger"
+msgstr ""
+
+#. Label of the user (Link) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "User Id"
-msgstr "Gebruikersnaam"
+msgstr ""
-#. Label of a Select field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the user_id_field (Select) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "User Id Field"
msgstr ""
-#: core/doctype/user_type/user_type.py:287
+#: frappe/core/doctype/user_type/user_type.py:283
msgid "User Id Field is mandatory in the user type {0}"
msgstr ""
-#. Label of a Attach Image field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the user_image (Attach Image) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "User Image"
-msgstr "Gebruiker Afbeelding"
+msgstr ""
-#. Label of a Data field in DocType 'Personal Data Download Request'
-#: website/doctype/personal_data_download_request/personal_data_download_request.json
-msgctxt "Personal Data Download Request"
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:115
+msgid "User Menu"
+msgstr ""
+
+#. Label of the user_name (Data) field in DocType 'Personal Data Download
+#. Request'
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
msgid "User Name"
-msgstr "Gebruikersnaam"
+msgstr ""
#. Name of a DocType
-#: core/doctype/user_permission/user_permission.json
+#: frappe/core/doctype/user_permission/user_permission.json
msgid "User Permission"
-msgstr "Gebruikersmachtiging"
-
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "User Permission"
-msgstr "Gebruikersmachtiging"
-
-#: public/js/frappe/views/reports/query_report.js:1772
-#: public/js/frappe/views/reports/report_view.js:1657
-msgid "User Permissions"
-msgstr "Gebruikersmachtigingen"
-
-#: public/js/frappe/list/list_view.js:1639
-msgctxt "Button in list view menu"
-msgid "User Permissions"
-msgstr "Gebruikersmachtigingen"
+msgstr ""
#. Label of a Link in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "User Permission"
+#: 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:1881
+#: frappe/public/js/frappe/views/reports/report_view.js:1746
msgid "User Permissions"
-msgstr "Gebruikersmachtigingen"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:124
-msgid "User Permissions created sucessfully"
-msgstr "Gebruikersmachtigingen succesvol aangemaakt"
+#: frappe/public/js/frappe/list/list_view.js:1777
+msgctxt "Button in list view menu"
+msgid "User Permissions"
+msgstr ""
-#. Label of a shortcut in the Users Workspace
-#: core/workspace/users/users.json
-msgid "User Profile"
-msgstr "Gebruikersprofiel"
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "User Permissions are used to limit users to specific records."
+msgstr ""
-#. Label of a Link field in DocType 'LDAP Group Mapping'
-#: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
-msgctxt "LDAP Group Mapping"
+#: frappe/core/doctype/user_permission/user_permission_list.js:124
+msgid "User Permissions created successfully"
+msgstr ""
+
+#. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping'
+#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
msgid "User Role"
msgstr ""
#. Name of a DocType
-#: core/doctype/user_select_document_type/user_select_document_type.json
+#: frappe/core/doctype/user_role_profile/user_role_profile.json
+msgid "User Role Profile"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
msgid "User Select Document Type"
msgstr ""
-#. Name of a DocType
-#: core/doctype/user_social_login/user_social_login.json
-msgid "User Social Login"
-msgstr "Gebruikers sociale login"
-
-#. Label of a Data field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "User Tags"
-msgstr "Gebruiker-tags"
-
-#. Name of a DocType
-#: core/doctype/user_type/user_type.json core/doctype/user_type/user_type.py:82
-msgid "User Type"
-msgstr "Gebruikerstype"
-
-#. Label of a Link field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "User Type"
-msgstr "Gebruikerstype"
-
-#. Label of a shortcut in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "User Type"
-msgid "User Type"
-msgstr "Gebruikerstype"
-
-#. Name of a DocType
-#: core/doctype/user_type_module/user_type_module.json
-msgid "User Type Module"
+#. Label of a standard navbar item
+#. Type: Action
+#: frappe/hooks.py
+msgid "User Settings"
msgstr ""
-#. Label of a Table field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. 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'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "User can login using Email id or Mobile number"
-msgstr "Gebruiker kan inloggen met e-mail id of mobiel nummer"
+msgstr ""
#. Description of the 'Allow Login using User Name' (Check) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "User can login using Email id or User Name"
-msgstr "Gebruiker kan inloggen met e-mail id of gebruikersnaam"
+msgstr ""
-#: desk/page/user_profile/user_profile_controller.js:26
-msgid "User does not exist"
-msgstr "Gebruiker bestaat niet"
+#: frappe/templates/includes/login/login.js:292
+msgid "User does not exist."
+msgstr ""
-#: core/doctype/user_type/user_type.py:82
+#: frappe/core/doctype/user_type/user_type.py:83
msgid "User does not have permission to create the new {0}"
msgstr ""
-#: core/doctype/docshare/docshare.py:55
+#: frappe/core/doctype/docshare/docshare.py:56
msgid "User is mandatory for Share"
-msgstr "Gebruiker is verplicht voor Share"
+msgstr ""
-#. Label of a Check field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the user_must_always_select (Check) field in DocType 'Document
+#. Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "User must always select"
-msgstr "Gebruiker moet altijd kiezen"
+msgstr ""
-#: model/delete_doc.py:224
-msgid "User not allowed to delete {0}: {1}"
-msgstr "Gebruiker niet toegestaan om {0} te verwijderen: {1}"
-
-#: core/doctype/user_permission/user_permission.py:59
+#: frappe/core/doctype/user_permission/user_permission.py:60
msgid "User permission already exists"
-msgstr "Gebruikersrechten bestaan al"
+msgstr ""
-#: www/login.py:153
+#: frappe/www/login.py:167
msgid "User with email address {0} does not exist"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:224
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:225
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: core/doctype/user/user.py:504
+#: frappe/core/doctype/user/user.py:536
msgid "User {0} cannot be deleted"
-msgstr "Gebruiker {0} kan niet worden verwijderd"
+msgstr ""
-#: core/doctype/user/user.py:242
+#: frappe/core/doctype/user/user.py:326
msgid "User {0} cannot be disabled"
-msgstr "Gebruiker {0} kan niet worden uitgeschakeld"
+msgstr ""
-#: core/doctype/user/user.py:564
+#: frappe/core/doctype/user/user.py:602
msgid "User {0} cannot be renamed"
-msgstr "Gebruiker {0} kan niet worden hernoemd"
+msgstr ""
-#: permissions.py:139
+#: frappe/permissions.py:138
msgid "User {0} does not have access to this document"
-msgstr "Gebruiker {0} heeft geen toegang tot dit document"
+msgstr ""
-#: permissions.py:162
+#: frappe/permissions.py:161
msgid "User {0} does not have doctype access via role permission for document {1}"
-msgstr "Gebruiker {0} heeft geen doctype toegang via rolrechten voor document {1}"
+msgstr ""
-#: templates/emails/data_deletion_approval.html:1
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:108
+#: frappe/desk/doctype/workspace/workspace.py:275
+msgid "User {0} does not have the permission to create a Workspace."
+msgstr ""
+
+#: frappe/templates/emails/data_deletion_approval.html:1
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:112
msgid "User {0} has requested for data deletion"
-msgstr "Gebruiker {0} heeft gevraagd om gegevens te verwijderen"
+msgstr ""
-#: utils/oauth.py:272
+#: frappe/core/doctype/user/user.py:1369
+msgid "User {0} impersonated as {1}"
+msgstr ""
+
+#: frappe/utils/oauth.py:269
msgid "User {0} is disabled"
-msgstr "Gebruiker {0} is uitgeschakeld"
+msgstr ""
-#: desk/form/assign_to.py:101
+#: frappe/sessions.py:242
+msgid "User {0} is disabled. Please contact your System Manager."
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:104
msgid "User {0} is not permitted to access this document."
msgstr ""
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the userinfo_uri (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Userinfo URI"
msgstr ""
-#: www/login.py:99
+#. Label of the username (Data) field in DocType 'User'
+#. Label of the username (Data) field in DocType 'User Social Login'
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_social_login/user_social_login.json
+#: frappe/www/login.py:110
msgid "Username"
-msgstr "Gebruikersnaam"
+msgstr ""
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Username"
-msgstr "Gebruikersnaam"
-
-#. Label of a Data field in DocType 'User Social Login'
-#: core/doctype/user_social_login/user_social_login.json
-msgctxt "User Social Login"
-msgid "Username"
-msgstr "Gebruikersnaam"
-
-#: core/doctype/user/user.py:644
+#: frappe/core/doctype/user/user.py:687
msgid "Username {0} already exists"
-msgstr "Gebruikersnaam {0} bestaat al"
+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
-#: core/workspace/users/users.json
+#. Label of the users_section (Section Break) field in DocType 'System Health
+#. Report'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/core/workspace/users/users.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
-msgstr "Gebruikers"
+msgstr ""
-#. Label of a Table MultiSelect field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Users"
-msgstr "Gebruikers"
+#. Description of the 'Protect Attached Files' (Check) field in DocType
+#. 'DocType'
+#. Description of the 'Protect Attached Files' (Check) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Users are only able to delete attached files if the document is either in draft or if the document is canceled and they are also able to delete the document."
+msgstr ""
-#. Description of the 'Allot Points To Assigned Users' (Check) field in DocType
-#. 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Users assigned to the reference document will get points."
-msgstr "Gebruikers die aan het referentiedocument zijn toegewezen, krijgen punten."
-
-#: core/page/permission_manager/permission_manager.js:345
+#: frappe/core/page/permission_manager/permission_manager.js:355
msgid "Users with role {0}:"
-msgstr "Gebruikers met de rol {0} :"
+msgstr ""
-#: public/js/frappe/ui/theme_switcher.js:70
+#: frappe/public/js/frappe/ui/theme_switcher.js:70
msgid "Uses system's theme to switch between light and dark mode"
msgstr ""
-#: public/js/frappe/desk.js:112
+#: frappe/public/js/frappe/desk.js:154
msgid "Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand."
-msgstr "Door deze console te gebruiken, kunnen aanvallers zich voordoen als u en uw gegevens stelen. Typ of plak geen code die u niet begrijpt."
+msgstr ""
-#. Label of a Percent field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the utilization (Percent) field in DocType 'System Health Report
+#. Workers'
+#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
+msgid "Utilization"
+msgstr ""
+
+#. Label of the utilization_percent (Percent) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Utilization %"
msgstr ""
#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization
#. Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Valid"
-msgstr "Geldig"
+msgstr ""
-#. Label of a Check field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/templates/includes/login/login.js:52
+#: frappe/templates/includes/login/login.js:65
+msgid "Valid Login id required."
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:39
+msgid "Valid email and name required"
+msgstr ""
+
+#. Label of the validate_action (Check) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Validate Field"
-msgstr "Valideer veld"
+msgstr ""
-#: public/js/frappe/web_form/web_form.js:356
+#. Label of the validate_frappe_mail_settings (Button) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Validate Frappe Mail Settings"
+msgstr ""
+
+#. Label of the validate_ssl_certificate (Check) field in DocType 'Email
+#. Account'
+#. Label of the validate_ssl_certificate (Check) field in DocType 'Email
+#. Domain'
+#. Label of the validate_ssl_certificate_for_outgoing (Check) field in DocType
+#. 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Validate SSL Certificate"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:360
msgid "Validation Error"
-msgstr "Validatiefout"
+msgstr ""
-#. Label of a Select field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. Label of the validity (Select) field in DocType 'OAuth Authorization Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Validity"
-msgstr "Geldigheid"
+msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.js:92
-#: public/js/frappe/list/bulk_operations.js:271
-#: public/js/frappe/list/bulk_operations.js:333
+#. Label of the value (Data) field in DocType 'Milestone'
+#. Label of the defvalue (Text) field in DocType 'DefaultValue'
+#. Label of the value (Data) field in DocType 'Document Naming Rule Condition'
+#. Label of the value (Data) field in DocType 'SMS Parameter'
+#. Label of the value (Data) field in DocType 'Query Parameters'
+#. Label of the value (Small Text) field in DocType 'Webhook Header'
+#. Label of the value (Text) field in DocType 'Website Meta Tag'
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/core/doctype/defaultvalue/defaultvalue.json
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+#: frappe/core/doctype/prepared_report/prepared_report.js:8
+#: frappe/core/doctype/sms_parameter/sms_parameter.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
+#: frappe/desk/doctype/number_card/number_card.js:205
+#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
+#: frappe/integrations/doctype/query_parameters/query_parameters.json
+#: frappe/integrations/doctype/webhook_header/webhook_header.json
+#: frappe/public/js/frappe/list/bulk_operations.js:336
+#: frappe/public/js/frappe/list/bulk_operations.js:398
+#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
+#: frappe/website/doctype/web_form/web_form.js:197
+#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Value"
-msgstr "Waarde"
+msgstr ""
-#. Label of a Text field in DocType 'DefaultValue'
-#: core/doctype/defaultvalue/defaultvalue.json
-msgctxt "DefaultValue"
-msgid "Value"
-msgstr "Waarde"
-
-#. Label of a Data field in DocType 'Document Naming Rule Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
-msgid "Value"
-msgstr "Waarde"
-
-#. Label of a Data field in DocType 'Milestone'
-#: automation/doctype/milestone/milestone.json
-msgctxt "Milestone"
-msgid "Value"
-msgstr "Waarde"
-
-#. Label of a Data field in DocType 'Query Parameters'
-#: integrations/doctype/query_parameters/query_parameters.json
-msgctxt "Query Parameters"
-msgid "Value"
-msgstr "Waarde"
-
-#. Label of a Data field in DocType 'SMS Parameter'
-#: core/doctype/sms_parameter/sms_parameter.json
-msgctxt "SMS Parameter"
-msgid "Value"
-msgstr "Waarde"
-
-#. Label of a Small Text field in DocType 'Webhook Header'
-#: integrations/doctype/webhook_header/webhook_header.json
-msgctxt "Webhook Header"
-msgid "Value"
-msgstr "Waarde"
-
-#. Label of a Text field in DocType 'Website Meta Tag'
-#: website/doctype/website_meta_tag/website_meta_tag.json
-msgctxt "Website Meta Tag"
-msgid "Value"
-msgstr "Waarde"
-
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the value_based_on (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Value Based On"
-msgstr "Op basis van waarde"
-
-#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Value Change"
-msgstr "Waarde Veranderen"
+msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Value Change"
-msgstr "Waarde Veranderen"
+msgstr ""
-#. Label of a Select field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the value_changed (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Value Changed"
-msgstr "Waarde Veranderd"
+msgstr ""
-#. Label of a Data field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the property_value (Data) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Value To Be Set"
-msgstr "Waarde om te worden ingesteld"
+msgstr ""
-#: model/base_document.py:930 model/document.py:648
+#: frappe/model/base_document.py:1049 frappe/model/document.py:834
msgid "Value cannot be changed for {0}"
-msgstr "Waarde kan niet worden gewijzigd voor {0}"
+msgstr ""
-#: model/document.py:593
+#: frappe/model/document.py:780
msgid "Value cannot be negative for"
-msgstr "Waarde kan niet negatief zijn voor"
+msgstr ""
-#: model/document.py:597
+#: frappe/model/document.py:784
msgid "Value cannot be negative for {0}: {1}"
-msgstr "Waarde mag niet negatief zijn voor {0}: {1}"
+msgstr ""
-#: custom/doctype/property_setter/property_setter.js:7
+#: frappe/custom/doctype/property_setter/property_setter.js:7
msgid "Value for a check field can be either 0 or 1"
-msgstr "Waarde voor een controle veld kan 0 of 1 zijn"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:611
+#: frappe/custom/doctype/customize_form/customize_form.py:611
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
-msgstr "Waarde voor veld {0} is te lang in {1}. De lengte mag niet langer zijn dan {2} tekens"
+msgstr ""
-#: model/base_document.py:360
+#: frappe/model/base_document.py:445
msgid "Value for {0} cannot be a list"
-msgstr "Waar voor {0} kan geen lijst worden"
+msgstr ""
#. Description of the 'Due Date Based On' (Select) field in DocType 'Assignment
#. Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Value from this field will be set as the due date in the ToDo"
-msgstr "De waarde van dit veld wordt ingesteld als de vervaldatum in de taak"
+msgstr ""
-#: model/base_document.py:712
-msgid "Value missing for"
-msgstr "Waarde ontbreekt voor"
-
-#: core/doctype/data_import/importer.py:698
+#: frappe/core/doctype/data_import/importer.py:714
msgid "Value must be one of {0}"
-msgstr "Waarde moet een van {0} zijn"
+msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. 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 "Waarde om te valideren"
+msgstr ""
-#: model/base_document.py:997
+#: frappe/model/base_document.py:1119
msgid "Value too big"
-msgstr "Waarde te groot"
+msgstr ""
-#: core/doctype/data_import/importer.py:711
+#: frappe/core/doctype/data_import/importer.py:727
msgid "Value {0} missing for {1}"
-msgstr "Waarde {0} ontbreekt voor {1}"
+msgstr ""
-#: core/doctype/data_import/importer.py:742 utils/data.py:877
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
msgid "Value {0} must be in the valid duration format: d h m s"
-msgstr "Waarde {0} moet de geldige notatie voor duur hebben: dhms"
+msgstr ""
-#: core/doctype/data_import/importer.py:729
+#: frappe/core/doctype/data_import/importer.py:745
+#: frappe/core/doctype/data_import/importer.py:760
msgid "Value {0} must in {1} format"
-msgstr "Waarde {0} moet de indeling {1} hebben"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:8
+msgid "Values Changed"
+msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Verdana"
-msgstr "Verdana"
+msgstr ""
-#: twofactor.py:362
-msgid "Verfication Code"
-msgstr "Verfication Code"
+#: frappe/templates/includes/login/login.js:333
+msgid "Verification"
+msgstr ""
-#: templates/emails/delete_data_confirmation.html:10
+#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352
+msgid "Verification Code"
+msgstr ""
+
+#: frappe/templates/emails/delete_data_confirmation.html:10
msgid "Verification Link"
-msgstr "Verificatie link"
+msgstr ""
-#: twofactor.py:251
+#: frappe/templates/includes/login/login.js:383
+msgid "Verification code email not sent. Please contact Administrator."
+msgstr ""
+
+#: frappe/twofactor.py:248
msgid "Verification code has been sent to your registered email address."
-msgstr "Verificatiecode is verzonden naar uw geregistreerde e-mailadres."
+msgstr ""
#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
+#: frappe/core/doctype/translation/translation.json
msgid "Verified"
-msgstr "geverifieerd"
+msgstr ""
-#: public/js/frappe/ui/messages.js:352
+#: frappe/public/js/frappe/ui/messages.js:359
+#: frappe/templates/includes/login/login.js:337
msgid "Verify"
-msgstr "Controleren"
+msgstr ""
-#: public/js/frappe/ui/messages.js:351
+#: frappe/public/js/frappe/ui/messages.js:358
msgid "Verify Password"
-msgstr "Bevestig wachtwoord"
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:171
+msgid "Verifying..."
+msgstr ""
#. Name of a DocType
-#: core/doctype/version/version.json
+#: frappe/core/doctype/version/version.json
msgid "Version"
-msgstr "Versie"
+msgstr ""
-#: public/js/frappe/desk.js:131
+#: frappe/public/js/frappe/desk.js:166
msgid "Version Updated"
-msgstr "Versie bijgewerkt"
+msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the video_url (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Video URL"
-msgstr "Video URL"
+msgstr ""
-#. Label of a Select field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the view_name (Select) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "View"
msgstr ""
-#: core/doctype/success_action/success_action.js:58
-#: public/js/frappe/form/success_action.js:89
+#: frappe/core/doctype/success_action/success_action.js:60
+#: frappe/public/js/frappe/form/success_action.js:89
msgid "View All"
-msgstr "Bekijk alles"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:507
+#: frappe/public/js/frappe/form/toolbar.js:577
msgid "View Audit Trail"
msgstr ""
-#: templates/includes/likes/likes.py:34
+#: frappe/templates/includes/likes/likes.py:34
msgid "View Blog Post"
msgstr ""
-#: templates/includes/comments/comments.py:58
+#: frappe/templates/includes/comments/comments.py:56
msgid "View Comment"
-msgstr "Bekijk reactie"
+msgstr ""
-#: public/js/frappe/views/treeview.js:467
+#: frappe/core/doctype/user/user.js:151
+msgid "View Doctype Permissions"
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:4
+msgid "View File"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:220
+msgid "View Full Log"
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
-msgstr "Lijst weergeven"
+msgstr ""
#. Name of a DocType
-#: core/doctype/view_log/view_log.json
+#: frappe/core/doctype/view_log/view_log.json
msgid "View Log"
-msgstr "Bekijk log"
+msgstr ""
-#: core/doctype/user/user.js:133
-#: core/doctype/user_permission/user_permission.js:24
+#: frappe/core/doctype/user/user.js:142
+#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
-msgstr "Bekijk toegestane documenten"
+msgstr ""
-#. Label of a Button field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the view_properties (Button) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "View Properties (via Customize Form)"
-msgstr "Bekijk Properties (via Customize Form)"
-
-#: social/doctype/energy_point_log/energy_point_log_list.js:20
-msgid "View Ref"
-msgstr "Bekijk Ref"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "View Report"
-msgstr "Bekijk het rapport"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the view_settings (Section Break) field in DocType 'DocType'
+#. Label of the view_settings_section (Section Break) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "View Settings"
-msgstr "Bekijk instellingen"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "View Settings"
-msgstr "Bekijk instellingen"
-
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the view_switcher (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "View Switcher"
msgstr ""
#. Label of a standard navbar item
#. Type: Action
-#: hooks.py website/doctype/website_settings/website_settings.js:16
+#: frappe/hooks.py
+#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
-msgstr "Bekijk Website"
-
-#: www/confirm_workflow_action.html:12
-msgid "View document"
-msgstr "Bekijk document"
-
-#: core/doctype/file/file.js:31
-msgid "View file"
msgstr ""
-#: templates/emails/auto_email_report.html:60
+#: 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 "Bekijk rapport in je browser"
+msgstr ""
-#: templates/emails/print_link.html:2
+#: frappe/templates/emails/print_link.html:2
msgid "View this in your browser"
-msgstr "Bekijk deze in uw browser"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.js:43
-#: desk/doctype/calendar_view/calendar_view_list.js:10
-#: desk/doctype/dashboard/dashboard_list.js:10
+#: frappe/public/js/frappe/web_form/web_form.js:454
+msgctxt "Button in web form"
+msgid "View your response"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:43
+#: frappe/desk/doctype/calendar_view/calendar_view_list.js:10
+#: frappe/desk/doctype/dashboard/dashboard_list.js:10
msgid "View {0}"
-msgstr "Bekijk {0}"
+msgstr ""
-#. Label of a Data field in DocType 'View Log'
-#: core/doctype/view_log/view_log.json
-msgctxt "View Log"
+#. Label of the viewed_by (Data) field in DocType 'View Log'
+#: frappe/core/doctype/view_log/view_log.json
msgid "Viewed By"
-msgstr "Bekeken door"
-
-#. Label of a Card Break in the Build Workspace
-#: core/workspace/build/build.json
-msgid "Views"
msgstr ""
#. Group in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of a Card Break in the Build Workspace
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/workspace/build/build.json
msgid "Views"
msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the is_virtual (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Virtual"
msgstr ""
-#: model/virtual_doctype.py:78
+#: frappe/model/virtual_doctype.py:76
msgid "Virtual DocType {} requires a static method called {} found {}"
msgstr ""
-#: model/virtual_doctype.py:91
+#: frappe/model/virtual_doctype.py:89
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr ""
-#. Label of a Section Break field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the visibility_section (Section Break) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Visibility"
msgstr ""
+#: 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'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Visit"
-msgstr "Bezoeken"
+msgstr ""
-#: website/doctype/website_route_meta/website_route_meta.js:7
+#: frappe/website/doctype/website_route_meta/website_route_meta.js:7
msgid "Visit Web Page"
-msgstr "Bezoek webpagina"
+msgstr ""
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
+#. Label of the visitor_id (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Visitor ID"
msgstr ""
-#: templates/discussions/reply_section.html:38
+#: frappe/templates/discussions/reply_section.html:39
msgid "Want to discuss?"
msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Warehouse"
-msgstr "Magazijn"
+msgstr ""
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
-msgstr "Waarschuwing"
+msgstr ""
-#: public/js/frappe/model/meta.js:179
+#: frappe/custom/doctype/customize_form/customize_form.js:217
+msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1125
+msgid "Warning: Naming is not set"
+msgstr ""
+
+#: frappe/public/js/frappe/model/meta.js:182
msgid "Warning: Unable to find {0} in any table related to {1}"
-msgstr "Waarschuwing: kan {0} niet vinden in een tabel met betrekking tot {1}"
+msgstr ""
#. Description of the 'Counter' (Int) field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Warning: Updating counter may lead to document name conflicts if not done properly"
msgstr ""
-#: website/doctype/help_article/templates/help_article.html:24
+#: frappe/website/doctype/help_article/templates/help_article.html:24
msgid "Was this article helpful?"
-msgstr "Was dit artikel behulpzaam?"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:127
+msgid "Watch Tutorial"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Watch Video"
-msgstr "Bekijk video"
+msgstr ""
-#: desk/doctype/workspace/workspace.js:38
+#: frappe/desk/doctype/workspace/workspace.js:34
msgid "We do not allow editing of this document. Simply click the Edit button on the workspace page to make your workspace editable and customize it as you wish"
msgstr ""
-#: templates/emails/delete_data_confirmation.html:2
+#: frappe/templates/emails/delete_data_confirmation.html:2
msgid "We have received a request for deletion of {0} data associated with: {1}"
-msgstr "We hebben een verzoek ontvangen om {0} gegevens te verwijderen die zijn gekoppeld aan: {1}"
+msgstr ""
-#: templates/emails/download_data.html:2
+#: frappe/templates/emails/download_data.html:2
msgid "We have received a request from you to download your {0} data associated with: {1}"
-msgstr "We hebben een verzoek van u ontvangen om uw {0} gegevens te downloaden die zijn gekoppeld aan: {1}"
+msgstr ""
-#: public/js/frappe/form/controls/password.js:88
+#: frappe/www/attribution.html:12
+msgid "We would like to thank the authors of these packages for their contribution."
+msgstr ""
+
+#: frappe/www/contact.py:50
+msgid "We've received your query!"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/password.js:87
msgid "Weak"
msgstr ""
#. Name of a DocType
-#: website/doctype/web_form/web_form.json
-msgid "Web Form"
-msgstr "Web Form"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Web Form"
-msgstr "Web Form"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Web Form"
-msgstr "Web Form"
-
#. Label of a Link in the Website Workspace
#. Label of a shortcut in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Web Form"
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/workspace/website/website.json
msgid "Web Form"
-msgstr "Web Form"
+msgstr ""
#. Name of a DocType
-#: website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Web Form Field"
-msgstr "Webformulier invulveld"
+msgstr ""
-#. Label of a Table field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the web_form_fields (Table) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Web Form Fields"
-msgstr "Webformulier invulvelden"
+msgstr ""
#. Name of a DocType
-#: website/doctype/web_form_list_column/web_form_list_column.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Web Form List Column"
msgstr ""
#. Name of a DocType
-#: website/doctype/web_page/web_page.json
-msgid "Web Page"
-msgstr "Webpagina"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Web Page"
-msgstr "Webpagina"
-
#. Label of a Link in the Website Workspace
#. Label of a shortcut in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Web Page"
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/workspace/website/website.json
msgid "Web Page"
-msgstr "Webpagina"
+msgstr ""
#. Name of a DocType
-#: website/doctype/web_page_block/web_page_block.json
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Web Page Block"
-msgstr "Webpaginablok"
+msgstr ""
-#: public/js/frappe/utils/utils.js:1697
+#: frappe/public/js/frappe/utils/utils.js:1709
msgid "Web Page URL"
msgstr ""
#. Name of a DocType
-#: website/doctype/web_page_view/web_page_view.json
+#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Web Page View"
-msgstr "Webpaginaweergave"
+msgstr ""
#. Label of a Card Break in the Website Workspace
-#: website/workspace/website/website.json
+#: frappe/website/workspace/website/website.json
msgid "Web Site"
-msgstr "Website"
+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
-#: website/doctype/web_template/web_template.json
-msgid "Web Template"
-msgstr "Websjabloon"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Web Template"
-msgstr "Websjabloon"
-
-#. Label of a Link field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
-msgid "Web Template"
-msgstr "Websjabloon"
-
-#. Name of a DocType
-#: website/doctype/web_template_field/web_template_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Web Template Field"
-msgstr "Websjabloon veld"
+msgstr ""
-#. Label of a Code field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the web_template_values (Code) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Web Template Values"
-msgstr "Waarden van websjablonen"
+msgstr ""
-#: utils/jinja_globals.py:48
+#: frappe/utils/jinja_globals.py:48
msgid "Web Template is not specified"
msgstr ""
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the web_view (Tab Break) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Web View"
-msgstr "Webweergave"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/webhook/webhook.json
-msgid "Webhook"
-msgstr "webhook"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Webhook"
-msgstr "webhook"
-
+#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Webhook"
-msgstr "webhook"
+msgstr ""
-#. Label of a Link field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "Webhook"
-msgstr "webhook"
+#. 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
-#: integrations/doctype/webhook_data/webhook_data.json
-msgid "Webhook Data"
-msgstr "Webhook Data"
-
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Webhook Data"
-msgstr "Webhook Data"
-
-#. Name of a DocType
-#: integrations/doctype/webhook_header/webhook_header.json
+#: frappe/integrations/doctype/webhook_header/webhook_header.json
msgid "Webhook Header"
-msgstr "Webhook Header"
+msgstr ""
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Headers"
-msgstr "Webhook Headers"
+msgstr ""
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the sb_webhook (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Request"
-msgstr "Webhook aanvraag"
+msgstr ""
+#. Label of a Link in the Build Workspace
#. Name of a DocType
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/core/workspace/build/build.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Webhook Request Log"
msgstr ""
-#. Linked DocType in Webhook's connections
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Webhook Request Log"
-msgstr ""
-
-#. Label of a Password field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the webhook_secret (Password) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Secret"
-msgstr "Webhook Secret"
+msgstr ""
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the sb_security (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Security"
-msgstr "Webhook-beveiliging"
+msgstr ""
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the sb_condition (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Trigger"
-msgstr "Webhook-trigger"
+msgstr ""
-#. Label of a Data field in DocType 'Slack Webhook URL'
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.json
-msgctxt "Slack Webhook URL"
+#. Label of the webhook_url (Data) field in DocType 'Slack Webhook URL'
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
msgid "Webhook URL"
-msgstr "Webhook-URL"
-
-#. Name of a Workspace
-#: email/doctype/newsletter/newsletter.py:451
-#: website/workspace/website/website.json
-msgid "Website"
-msgstr "Website"
+msgstr ""
#. Group in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
+#. Name of a Workspace
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/email/doctype/newsletter/newsletter.py:457
+#: frappe/public/js/frappe/ui/apps_switcher.js:125
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
+#: frappe/website/workspace/website/website.json
msgid "Website"
-msgstr "Website"
+msgstr ""
#. Name of a report
-#: website/report/website_analytics/website_analytics.json
+#. Label of a Link in the Website Workspace
+#: frappe/website/report/website_analytics/website_analytics.json
+#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
-msgstr "Website-analyse"
+msgstr ""
#. Name of a role
-#: core/doctype/comment/comment.json
-#: website/doctype/about_us_settings/about_us_settings.json
-#: website/doctype/blog_category/blog_category.json
-#: website/doctype/blog_post/blog_post.json
-#: website/doctype/blog_settings/blog_settings.json
-#: website/doctype/blogger/blogger.json website/doctype/color/color.json
-#: website/doctype/contact_us_settings/contact_us_settings.json
-#: website/doctype/help_category/help_category.json
-#: website/doctype/portal_settings/portal_settings.json
-#: website/doctype/web_form/web_form.json
-#: website/doctype/web_page/web_page.json
-#: website/doctype/website_script/website_script.json
-#: website/doctype/website_settings/website_settings.json
-#: website/doctype/website_sidebar/website_sidebar.json
-#: website/doctype/website_slideshow/website_slideshow.json
-#: website/doctype/website_theme/website_theme.json
+#: frappe/core/doctype/comment/comment.json
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
+#: frappe/website/doctype/blogger/blogger.json
+#: frappe/website/doctype/color/color.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/doctype/help_category/help_category.json
+#: frappe/website/doctype/portal_settings/portal_settings.json
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_script/website_script.json
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/doctype/website_sidebar/website_sidebar.json
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Website Manager"
-msgstr "Website Manager"
+msgstr ""
#. Name of a DocType
-#: website/doctype/website_meta_tag/website_meta_tag.json
+#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Website Meta Tag"
-msgstr "Website-metatag"
+msgstr ""
#. Name of a DocType
-#: website/doctype/website_route_meta/website_route_meta.json
-msgid "Website Route Meta"
-msgstr "Website Route Meta"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Route Meta"
+#: frappe/website/doctype/website_route_meta/website_route_meta.json
+#: frappe/website/workspace/website/website.json
msgid "Website Route Meta"
-msgstr "Website Route Meta"
+msgstr ""
#. Name of a DocType
-#: website/doctype/website_route_redirect/website_route_redirect.json
+#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
msgid "Website Route Redirect"
-msgstr "Website-route omleiden"
+msgstr ""
#. Name of a DocType
-#: website/doctype/website_script/website_script.json
-msgid "Website Script"
-msgstr "Website Script"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Script"
+#: frappe/website/doctype/website_script/website_script.json
+#: frappe/website/workspace/website/website.json
msgid "Website Script"
-msgstr "Website Script"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the website_search_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Website Search Field"
msgstr ""
-#: core/doctype/doctype/doctype.py:1473
+#: frappe/core/doctype/doctype/doctype.py:1522
msgid "Website Search Field must be a valid fieldname"
msgstr ""
#. Name of a DocType
-#: website/doctype/website_settings/website_settings.json
-msgid "Website Settings"
-msgstr "Website instellingen"
-
#. Label of a Link in the Website Workspace
-#. Label of a shortcut in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/workspace/website/website.json
msgid "Website Settings"
-msgstr "Website instellingen"
+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
-#: website/doctype/website_sidebar/website_sidebar.json
-msgid "Website Sidebar"
-msgstr "Website Sidebar"
-
-#. Label of a Link field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Website Sidebar"
-msgstr "Website Sidebar"
-
-#. Label of a Link field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Website Sidebar"
-msgstr "Website Sidebar"
-
-#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Sidebar"
-msgid "Website Sidebar"
-msgstr "Website Sidebar"
-
-#. Name of a DocType
-#: website/doctype/website_sidebar_item/website_sidebar_item.json
+#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Website Sidebar Item"
-msgstr "Website Sidebar Item"
+msgstr ""
#. Name of a DocType
-#: website/doctype/website_slideshow/website_slideshow.json
-msgid "Website Slideshow"
-msgstr "Website Diashow"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Slideshow"
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
+#: frappe/website/workspace/website/website.json
msgid "Website Slideshow"
-msgstr "Website Diashow"
+msgstr ""
#. Name of a DocType
-#: website/doctype/website_slideshow_item/website_slideshow_item.json
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "Website Slideshow Item"
-msgstr "Website Diashow Item"
+msgstr ""
+#. Label of the website_theme (Link) field in DocType 'Website Settings'
#. Name of a DocType
-#: website/doctype/website_theme/website_theme.json
-msgid "Website Theme"
-msgstr "Website Theme"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Website Theme"
-msgstr "Website Theme"
-
-#. Label of a Link field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Website Theme"
-msgstr "Website Theme"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Theme"
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/doctype/website_theme/website_theme.json
+#: frappe/website/workspace/website/website.json
msgid "Website Theme"
-msgstr "Website Theme"
+msgstr ""
#. Name of a DocType
-#: website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
+#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
msgid "Website Theme Ignore App"
-msgstr "Website-thema App negeren"
+msgstr ""
-#. Label of a Image field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the website_theme_image (Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Website Theme Image"
-msgstr "Website Theme Afbeelding"
+msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the website_theme_image_link (Code) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Website Theme image link"
msgstr ""
+#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Websocket"
+msgstr ""
+
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Wednesday"
-msgstr "Woensdag"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Wednesday"
-msgstr "Woensdag"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Wednesday"
-msgstr "Woensdag"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Wednesday"
-msgstr "Woensdag"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the wednesday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Wednesday"
-msgstr "Woensdag"
+msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:269
+#: frappe/public/js/frappe/views/calendar/calendar.js:276
msgid "Week"
-msgstr "Week"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Weekdays"
-msgstr "Doordeweekse dagen"
-
-#: public/js/frappe/utils/common.js:399
-#: website/report/website_analytics/website_analytics.js:24
-msgid "Weekly"
-msgstr "Wekelijks"
-
-#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Weekly"
-msgstr "Wekelijks"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Weekly"
-msgstr "Wekelijks"
-
+#. 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'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Weekly"
-msgstr "Wekelijks"
-
+#. 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'
#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
#. Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Weekly"
-msgstr "Wekelijks"
-
-#. Option for the 'Point Allocation Periodicity' (Select) field in DocType
-#. 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Weekly"
-msgstr "Wekelijks"
-
-#. Option for the 'Repeat On' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Weekly"
-msgstr "Wekelijks"
-
#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Weekly"
-msgstr "Wekelijks"
-
-#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Weekly"
-msgstr "Wekelijks"
-
#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
#. Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/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/integrations/doctype/dropbox_settings/dropbox_settings.json
+#: frappe/integrations/doctype/google_drive/google_drive.json
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
+#: frappe/public/js/frappe/utils/common.js:399
+#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
-msgstr "Wekelijks"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Weekly"
-msgstr "Wekelijks"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Weekly"
-msgstr "Wekelijks"
-
-#. Option for the 'Frequency' (Select) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Weekly"
-msgstr "Wekelijks"
-
-#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Weekly Long"
-msgstr "Wekelijks lang"
+msgstr ""
-#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Weekly Long"
-msgstr "Wekelijks lang"
-
-#: desk/page/setup_wizard/setup_wizard.js:372
+#: frappe/desk/page/setup_wizard/setup_wizard.js:384
msgid "Welcome"
msgstr ""
-#. Label of a Link field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#. Label of the welcome_email_template (Link) field in DocType 'System
+#. Settings'
+#. Label of the welcome_email_template (Link) field in DocType 'Email Group'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/email/doctype/email_group/email_group.json
msgid "Welcome Email Template"
-msgstr "Welkom e-mailsjabloon"
+msgstr ""
-#. Label of a Link field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Welcome Email Template"
-msgstr "Welkom e-mailsjabloon"
-
-#. Label of a Data field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#. Label of the welcome_url (Data) field in DocType 'Email Group'
+#: frappe/email/doctype/email_group/email_group.json
msgid "Welcome URL"
msgstr ""
#. Name of a Workspace
-#: core/workspace/welcome_workspace/welcome_workspace.json desk/desktop.py:468
+#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "Welcome Workspace"
msgstr ""
-#: core/doctype/user/user.py:361
+#: frappe/core/doctype/user/user.py:414
msgid "Welcome email sent"
-msgstr "Welkomst e-mail verzonden"
+msgstr ""
-#: core/doctype/user/user.py:436
+#: frappe/core/doctype/user/user.py:475
msgid "Welcome to {0}"
-msgstr "Welkom op de {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'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "When enabled this will allow guests to upload files to your application, You can enable this if you wish to collect files from user without having them to log in, for example in job applications web form."
-msgstr "Indien ingeschakeld, kunnen gasten bestanden naar uw toepassing uploaden. U kunt dit inschakelen als u bestanden van de gebruiker wilt verzamelen zonder dat ze hoeven in te loggen, bijvoorbeeld in het webformulier voor sollicitaties."
+msgstr ""
+
+#. Description of the 'Store Attached PDF Document' (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "When sending document using email, store the PDF on Communication. Warning: This can increase your storage usage."
+msgstr ""
#. Description of the 'Force Web Capture Mode for Uploads' (Check) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected."
msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:440
-msgid "Which view of the associated DocType should this shortcut take you to?"
-msgstr "Naar welke weergave van het bijbehorende DocType moet deze snelkoppeling u leiden?"
+#: frappe/core/page/permission_manager/permission_manager_help.html:18
+msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number."
+msgstr ""
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:468
msgid "Which view of the associated DocType should this shortcut take you to?"
-msgstr "Naar welke weergave van het bijbehorende DocType moet deze snelkoppeling u leiden?"
+msgstr ""
-#. Label of a Data field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the width (Data) field in DocType 'DocField'
+#. Label of the width (Int) field in DocType 'Report Column'
+#. Label of the width (Data) field in DocType 'Custom Field'
+#. Label of the width (Data) field in DocType 'Customize Form Field'
+#. Label of the width (Select) field in DocType 'Dashboard Chart Link'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
-msgstr "Breedte"
+msgstr ""
-#. Label of a Data field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Width"
-msgstr "Breedte"
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:2
+msgid "Widths can be set in px or %."
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart Link'
-#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json
-msgctxt "Dashboard Chart Link"
-msgid "Width"
-msgstr "Breedte"
-
-#. Label of a Data field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Width"
-msgstr "Breedte"
-
-#. Label of a Int field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Width"
-msgstr "Breedte"
-
-#. Label of a Check field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
+#. Label of the wildcard_filter (Check) field in DocType 'Report Filter'
+#: frappe/core/doctype/report_filter/report_filter.json
msgid "Wildcard Filter"
-msgstr "Jokertekenfilter"
+msgstr ""
#. Description of the 'Wildcard Filter' (Check) field in DocType 'Report
#. Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
+#: frappe/core/doctype/report_filter/report_filter.json
msgid "Will add \"%\" before and after the query"
msgstr ""
#. Description of the 'Short Name' (Data) field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
+#: frappe/website/doctype/blogger/blogger.json
msgid "Will be used in url (usually first name)."
-msgstr "Wordt gebruikt in url (meestal voornaam)."
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:470
+#: frappe/desk/page/setup_wizard/setup_wizard.js:485
msgid "Will be your login ID"
-msgstr "Wordt uw login ID"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:424
+#: frappe/printing/page/print_format_builder/print_format_builder.js:424
msgid "Will only be shown if section headings are enabled"
-msgstr "Wordt alleen weergegeven als koppen zijn ingeschakeld"
+msgstr ""
#. Description of the 'Run Jobs only Daily if Inactive For (Days)' (Int) field
#. in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0."
-msgstr "Voert geplande taken slechts eenmaal per dag uit voor inactieve sites. Standaard 4 dagen indien ingesteld op 0."
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
+msgstr ""
-#: public/js/frappe/form/print_utils.js:13
+#: frappe/public/js/frappe/form/print_utils.js:15
msgid "With Letter head"
-msgstr "Met Brief hoofd"
+msgstr ""
-#: workflow/doctype/workflow/workflow.js:140
-msgid "Worflow States Don't Exist"
-msgstr "Worflow-staten bestaan niet"
-
-#. Label of a Section Break field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the worker_information_section (Section Break) field in DocType 'RQ
+#. Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Worker Information"
msgstr ""
-#. Label of a Data field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the worker_name (Data) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Worker Name"
msgstr ""
-#. Name of a DocType
-#: workflow/doctype/workflow/workflow.json
-msgid "Workflow"
-msgstr "Workflow"
-
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Workflow"
-msgstr "Workflow"
-
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Workflow"
-msgstr "Workflow"
-
#. Group in DocType's connections
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. 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 "Workflow"
-
-#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Workflow"
-msgid "Workflow"
-msgstr "Workflow"
+msgstr ""
#. Name of a DocType
-#: workflow/doctype/workflow_action/workflow_action.json
-#: workflow/doctype/workflow_action/workflow_action.py:486
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:444
msgid "Workflow Action"
-msgstr "Workflow Actie"
+msgstr ""
#. Name of a DocType
-#: workflow/doctype/workflow_action_master/workflow_action_master.json
+#. Description of a DocType
+#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
msgid "Workflow Action Master"
-msgstr "Workflow Actie Master"
+msgstr ""
-#. Label of a Data field in DocType 'Workflow Action Master'
-#: workflow/doctype/workflow_action_master/workflow_action_master.json
-msgctxt "Workflow Action Master"
+#. Label of the workflow_action_name (Data) field in DocType 'Workflow Action
+#. Master'
+#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
msgid "Workflow Action Name"
-msgstr "Workflow Actie Naam"
+msgstr ""
#. Name of a DocType
-#: workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
+#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
msgid "Workflow Action Permitted Role"
msgstr ""
#. Description of the 'Is Optional State' (Check) field in DocType 'Workflow
#. Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Workflow Action is not created for optional states"
-msgstr "Workflowactie wordt niet gemaakt voor optionele statussen"
+msgstr ""
-#: workflow/page/workflow_builder/workflow_builder.js:4
+#: frappe/public/js/workflow_builder/store.js:129
+#: frappe/workflow/doctype/workflow/workflow.js:25
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:4
msgid "Workflow Builder"
msgstr ""
-#. Label of a Data field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#. Label of the workflow_builder_id (Data) field in DocType 'Workflow Document
+#. State'
+#. Label of the workflow_builder_id (Data) field in DocType 'Workflow
+#. Transition'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Workflow Builder ID"
msgstr ""
-#. Label of a Data field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
-msgid "Workflow Builder ID"
-msgstr ""
-
-#: workflow/doctype/workflow/workflow.js:11
+#: frappe/workflow/doctype/workflow/workflow.js:11
msgid "Workflow Builder allows you to create workflows visually. You can drag and drop states and link them to create transitions. Also you can update thieir properties from the sidebar."
msgstr ""
-#. Label of a JSON field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the workflow_data (JSON) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Data"
msgstr ""
+#: frappe/public/js/workflow_builder/components/Properties.vue:42
+msgid "Workflow Details"
+msgstr ""
+
#. Name of a DocType
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Workflow Document State"
-msgstr "Workflow Document Status"
+msgstr ""
-#. Label of a Data field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the workflow_name (Data) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
-msgstr "Workflow Naam"
+msgstr ""
+#. Label of the workflow_state (Data) field in DocType 'Workflow Action'
#. Name of a DocType
-#: workflow/doctype/workflow_state/workflow_state.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Workflow State"
-msgstr "Workflow Status"
+msgstr ""
-#. Label of a Data field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
-msgid "Workflow State"
-msgstr "Workflow Status"
-
-#. Label of a Data field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the workflow_state_field (Data) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow State Field"
-msgstr "Workflow Status Veld"
+msgstr ""
-#: model/workflow.py:63
+#: frappe/model/workflow.py:61
msgid "Workflow State not set"
-msgstr "Werkstroomstatus niet ingesteld"
+msgstr ""
-#: model/workflow.py:201 model/workflow.py:209
+#: frappe/model/workflow.py:204 frappe/model/workflow.py:212
msgid "Workflow State transition not allowed from {0} to {1}"
-msgstr "Overgang werkstroomstatus niet toegestaan van {0} naar {1}"
+msgstr ""
-#: model/workflow.py:327
+#: frappe/workflow/doctype/workflow/workflow.js:140
+msgid "Workflow States Don't Exist"
+msgstr ""
+
+#: frappe/model/workflow.py:328
msgid "Workflow Status"
-msgstr "Werkstroomstatus"
+msgstr ""
#. Name of a DocType
-#: workflow/doctype/workflow_transition/workflow_transition.json
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Workflow Transition"
-msgstr "Workflow Overgang"
-
-#. Description of the Onboarding Step 'Setup Approval Workflows'
-#: custom/onboarding_step/workflows/workflows.json
-msgid "Workflows allow you to define custom rules for the approval process of a particular document in ERPNext. You can also set complex Workflow Rules and set approval conditions."
msgstr ""
-#. Name of a DocType
-#: desk/doctype/workspace/workspace.json
-#: public/js/frappe/ui/toolbar/search_utils.js:541
-#: public/js/frappe/views/workspace/workspace.js:10
-msgid "Workspace"
+#. Description of a DocType
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+msgid "Workflow state represents the current state of a document."
msgstr ""
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Workspace"
+#: frappe/public/js/workflow_builder/store.js:83
+msgid "Workflow updated successfully"
msgstr ""
+#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Workspace"
+#. Name of a DocType
+#. Option for the 'Type' (Select) field in DocType 'Workspace'
+#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557
+#: frappe/public/js/frappe/utils/utils.js:929
+#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
-#: public/js/frappe/router.js:194
+#: frappe/public/js/frappe/router.js:177
msgid "Workspace {0} does not exist"
msgstr ""
#. Name of a DocType
-#: desk/doctype/workspace_chart/workspace_chart.json
+#: frappe/desk/doctype/workspace_chart/workspace_chart.json
msgid "Workspace Chart"
msgstr ""
#. Name of a DocType
-#: desk/doctype/workspace_custom_block/workspace_custom_block.json
+#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json
msgid "Workspace Custom Block"
msgstr ""
#. Name of a DocType
-#: desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Workspace Link"
msgstr ""
#. Name of a role
-#: desk/doctype/custom_html_block/custom_html_block.json
-#: desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
msgid "Workspace Manager"
msgstr ""
#. Name of a DocType
-#: desk/doctype/workspace_number_card/workspace_number_card.json
+#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json
msgid "Workspace Number Card"
msgstr ""
#. Name of a DocType
-#: desk/doctype/workspace_quick_list/workspace_quick_list.json
+#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
msgid "Workspace Quick List"
msgstr ""
+#. Label of a standard navbar item
+#. Type: Action
#. Name of a DocType
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+#: frappe/hooks.py
+msgid "Workspace Settings"
+msgstr ""
+
+#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
+#. Settings'
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+msgid "Workspace Setup Completed"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:1265
-msgid "Workspace {0} Created Successfully"
+#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
+#. Settings'
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+msgid "Workspace Visibility"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:894
-msgid "Workspace {0} Deleted Successfully"
-msgstr ""
-
-#: public/js/frappe/views/workspace/workspace.js:672
-msgid "Workspace {0} Edited Successfully"
+#: frappe/public/js/frappe/views/workspace/workspace.js:538
+msgid "Workspace {0} created"
msgstr ""
#. Option for the 'View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Workspaces"
msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Write"
-msgstr "Schrijven"
+#: frappe/public/js/frappe/form/footer/form_timeline.js:753
+msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
+msgstr ""
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Write"
-msgstr "Schrijven"
+#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
+msgstr ""
-#. Label of a Check field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "Write"
-msgstr "Schrijven"
+#: frappe/desk/page/setup_wizard/setup_wizard.py:41
+msgid "Wrapping up"
+msgstr ""
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
+#. Label of the write (Check) field in DocType 'Custom DocPerm'
+#. Label of the write (Check) field in DocType 'DocPerm'
+#. Label of the write (Check) field in DocType 'DocShare'
+#. Label of the write (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Write"
-msgstr "Schrijven"
+msgstr ""
-#: model/base_document.py:840
+#: frappe/model/base_document.py:949
msgid "Wrong Fetch From value"
-msgstr "Verkeerde waarde voor ophalen van"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:464
+#: frappe/public/js/frappe/views/reports/report_view.js:484
msgid "X Axis Field"
-msgstr "X-as veld"
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the x_field (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "X Field"
-msgstr "X veld"
+msgstr ""
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "XLSX"
-msgstr "XLSX"
+msgstr ""
-#. Label of a Table field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the y_axis (Table) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Y Axis"
-msgstr "Y-as"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:471
+#: frappe/public/js/frappe/views/reports/report_view.js:491
msgid "Y Axis Fields"
-msgstr "Y-asvelden"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1132
+#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
+#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
+#: frappe/public/js/frappe/views/reports/query_report.js:1221
msgid "Y Field"
-msgstr "Y veld"
-
-#. Label of a Select field in DocType 'Dashboard Chart Field'
-#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-msgctxt "Dashboard Chart Field"
-msgid "Y Field"
-msgstr "Y veld"
+msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Yahoo Mail"
-msgstr "Yahoo Mail"
+msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Yandex.Mail"
-msgstr "Yandex.Mail"
+msgstr ""
-#. Label of a Data field in DocType 'Company History'
-#: website/doctype/company_history/company_history.json
-msgctxt "Company History"
+#. Label of the heatmap_year (Select) field in DocType 'Dashboard Chart'
+#. Label of the year (Data) field in DocType 'Company History'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/website/doctype/company_history/company_history.json
msgid "Year"
-msgstr "Jaar"
-
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Year"
-msgstr "Jaar"
-
-#: public/js/frappe/utils/common.js:403
-msgid "Yearly"
-msgstr "Jaarlijks"
-
-#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Yearly"
-msgstr "Jaarlijks"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Yearly"
-msgstr "Jaarlijks"
-
-#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Yearly"
-msgstr "Jaarlijks"
-
-#. Option for the 'Repeat On' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Yearly"
-msgstr "Jaarlijks"
-
-#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Yearly"
-msgstr "Jaarlijks"
-
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Yearly"
-msgstr "Jaarlijks"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Repeat On' (Select) field in DocType 'Event'
+#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
+#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/utils/common.js:403
msgid "Yearly"
-msgstr "Jaarlijks"
+msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Yellow"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Yellow"
msgstr ""
-#: integrations/doctype/webhook/webhook.py:127
-#: integrations/doctype/webhook/webhook.py:137
-#: public/js/form_builder/utils.js:336
-#: public/js/frappe/form/controls/link.js:471
-#: public/js/frappe/list/list_sidebar_group_by.js:223
-#: public/js/frappe/views/reports/query_report.js:1513
-#: website/doctype/help_article/templates/help_article.html:25
-msgid "Yes"
-msgstr "Ja"
-
-#: public/js/frappe/ui/messages.js:32
-msgctxt "Approve confirmation dialog"
-msgid "Yes"
-msgstr "Ja"
-
-#: public/js/frappe/ui/filters/filter.js:500
-msgctxt "Checkbox is checked"
-msgid "Yes"
-msgstr "Ja"
-
-#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP
-#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
-msgid "Yes"
-msgstr "Ja"
-
#. Option for the 'Standard' (Select) field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Yes"
-msgstr "Ja"
-
-#. Option for the 'Standard' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Yes"
-msgstr "Ja"
-
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP
+#. Settings'
+#. Option for the 'Standard' (Select) field in DocType 'Print Format'
+#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
+#: frappe/email/doctype/notification/notification.py:92
+#: frappe/email/doctype/notification/notification.py:96
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/webhook/webhook.py:121
+#: frappe/integrations/doctype/webhook/webhook.py:128
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/form_builder/utils.js:336
+#: frappe/public/js/frappe/form/controls/link.js:494
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
+#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
-msgstr "Ja"
+msgstr ""
-#: public/js/frappe/utils/user.js:33
+#: 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 "U"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:462
+#: frappe/public/js/frappe/form/footer/form_timeline.js:463
msgid "You Liked"
msgstr ""
-#: public/js/frappe/dom.js:425
+#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
-msgstr "Je bent verbonden met internet."
+msgstr ""
-#: permissions.py:417
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:20
+msgid "You are impersonating as another user."
+msgstr ""
+
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:28
+msgid "You are not allowed to access this resource"
+msgstr ""
+
+#: frappe/permissions.py:409
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
-msgstr "U bent niet gemachtigd om toegang te krijgen tot dit {0} record omdat het is gekoppeld aan {1} '{2}' in veld {3}"
+msgstr ""
-#: permissions.py:406
+#: frappe/permissions.py:398
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
-#: public/js/frappe/views/kanban/kanban_board.bundle.js:69
+#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:68
msgid "You are not allowed to create columns"
-msgstr "Het is niet toegestaan om kolommen te maken"
+msgstr ""
-#: core/doctype/report/report.py:93
+#: frappe/core/doctype/report/report.py:97
msgid "You are not allowed to delete Standard Report"
-msgstr "U mag het standaardrapport niet verwijderen"
+msgstr ""
-#: website/doctype/website_theme/website_theme.py:74
+#: frappe/website/doctype/website_theme/website_theme.py:73
msgid "You are not allowed to delete a standard Website Theme"
-msgstr "Het is niet toegestaan om een standaard website thema verwijderen"
+msgstr ""
-#: core/doctype/report/report.py:380
+#: frappe/core/doctype/report/report.py:391
msgid "You are not allowed to edit the report."
msgstr ""
-#: permissions.py:614
+#: frappe/core/doctype/data_import/exporter.py:121
+#: frappe/core/doctype/data_import/exporter.py:125
+#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
+#: frappe/permissions.py:604
msgid "You are not allowed to export {} doctype"
-msgstr "Het is niet toegestaan om {} doctype te exporteren"
+msgstr ""
-#: public/js/frappe/views/treeview.js:431
+#: frappe/public/js/frappe/views/treeview.js:448
msgid "You are not allowed to print this report"
-msgstr "U hebt geen toestemming om dit rapport af te drukken"
+msgstr ""
-#: public/js/frappe/views/communication.js:673
+#: frappe/public/js/frappe/views/communication.js:781
msgid "You are not allowed to send emails related to this document"
-msgstr "U bent niet bevoegd om e-mails met betrekking tot dit document te versturen"
+msgstr ""
-#: website/doctype/web_form/web_form.py:463
+#: frappe/website/doctype/web_form/web_form.py:569
msgid "You are not allowed to update this Web Form Document"
-msgstr "U bent niet toegestaan om dit webformulier document bij te werken"
+msgstr ""
-#: public/js/frappe/request.js:35
+#: frappe/public/js/frappe/request.js:37
msgid "You are not connected to Internet. Retry after sometime."
-msgstr "U bent niet verbonden met internet. Probeer het na een tijdje opnieuw."
+msgstr ""
-#: public/js/frappe/web_form/webform_script.js:22
+#: frappe/public/js/frappe/web_form/webform_script.js:22
msgid "You are not permitted to access this page without login."
msgstr ""
-#: www/app.py:25
+#: frappe/www/app.py:27
msgid "You are not permitted to access this page."
-msgstr "U bent niet toegestaan om deze pagina te bekijken."
-
-#: __init__.py:834
-msgid "You are not permitted to access this resource."
msgstr ""
-#: 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 "U volgt nu dit document. U ontvangt dagelijks updates via e-mail. U kunt dit wijzigen in Gebruikersinstellingen."
+#: frappe/__init__.py:669
+msgid "You are not permitted to access this resource. Login to access"
+msgstr ""
-#: core/doctype/installed_applications/installed_applications.py:59
+#: 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:82
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
-#: email/doctype/email_account/email_account.js:221
+#: frappe/email/doctype/email_account/email_account.js:284
msgid "You are selecting Sync Option as ALL, It will resync all read as well as unread message from server. This may also cause the duplication of Communication (emails)."
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:413
+#: frappe/public/js/frappe/form/footer/form_timeline.js:414
msgctxt "Form timeline"
msgid "You attached {0}"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:741
+#: frappe/printing/page/print_format_builder/print_format_builder.js:749
msgid "You can add dynamic properties from the document by using Jinja templating."
-msgstr "U kunt de dynamische eigenschappen van het document toevoegen met behulp van Jinja template."
+msgstr ""
-#: templates/emails/new_user.html:22
+#: frappe/printing/doctype/letter_head/letter_head.js:32
+msgid "You can also access wkhtmltopdf variables (valid only in PDF print):"
+msgstr ""
+
+#: frappe/templates/emails/new_user.html:22
msgid "You can also copy-paste following link in your browser"
msgstr ""
-#: templates/emails/download_data.html:9
+#: frappe/templates/emails/download_data.html:9
msgid "You can also copy-paste this "
-msgstr "Je kunt dit ook kopiëren en plakken"
+msgstr ""
-#: templates/emails/delete_data_confirmation.html:11
+#: frappe/templates/emails/delete_data_confirmation.html:11
msgid "You can also copy-paste this {0} to your browser"
-msgstr "U kunt deze {0} ook in uw browser kopiëren en plakken"
+msgstr ""
-#: public/js/frappe/logtypes.js:21
+#: frappe/core/page/permission_manager/permission_manager_help.html:17
+msgid "You can change Submitted documents by cancelling them and then, amending them."
+msgstr ""
+
+#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:199
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:194
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: core/doctype/file/file.py:684
+#: frappe/model/delete_doc.py:136
+msgid "You can disable this {0} instead of deleting it."
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:736
msgid "You can increase the limit from System Settings."
msgstr ""
-#: utils/synchronization.py:48
+#: frappe/utils/synchronization.py:48
msgid "You can manually remove the lock if you think it's safe: {}"
msgstr ""
-#: public/js/frappe/form/controls/markdown_editor.js:74
+#: frappe/public/js/frappe/form/controls/markdown_editor.js:75
msgid "You can only insert images in Markdown fields"
msgstr ""
-#: core/doctype/user_type/user_type.py:103
+#: frappe/public/js/frappe/list/bulk_operations.js:42
+msgid "You can only print upto {0} documents at a time"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:104
msgid "You can only set the 3 custom doctypes in the Document Types table."
msgstr ""
-#: handler.py:226
-msgid "You can only upload JPG, PNG, PDF, TXT or Microsoft documents."
+#: frappe/handler.py:182
+msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents."
msgstr ""
-#: core/doctype/data_export/exporter.py:201
+#: frappe/core/doctype/data_export/exporter.py:199
msgid "You can only upload upto 5000 records in one go. (may be less in some cases)"
-msgstr "U kunt maximaal 5000 records in één keer uploaden (soms minder)."
+msgstr ""
-#: desk/query_report.py:336
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "You can select one from the following,"
+msgstr ""
+
+#. Description of the 'Rate limit for email link login' (Int) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "You can set a high value here if multiple users will be logging in from the same network."
+msgstr ""
+
+#: frappe/desk/query_report.py:343
msgid "You can try changing the filters of your report."
-msgstr "U kunt proberen de filters van uw rapport te wijzigen."
+msgstr ""
-#: public/js/frappe/form/link_selector.js:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "You can use Customize Form to set levels on fields."
+msgstr ""
+
+#: frappe/public/js/frappe/form/link_selector.js:30
msgid "You can use wildcard %"
msgstr ""
-#: custom/doctype/customize_form/customize_form.py:387
+#: frappe/custom/doctype/customize_form/customize_form.py:389
msgid "You can't set 'Options' for field {0}"
-msgstr "U kunt 'Opties' niet instellen voor veld {0}"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:391
+#: frappe/custom/doctype/customize_form/customize_form.py:393
msgid "You can't set 'Translatable' for field {0}"
-msgstr "U kunt 'Vertaalbaar' niet instellen voor veld {0}"
+msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:74
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:74
msgctxt "Form timeline"
msgid "You cancelled this document"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:61
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:61
msgctxt "Form timeline"
msgid "You cancelled this document {1}"
msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.py:417
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:417
msgid "You cannot create a dashboard chart from single DocTypes"
-msgstr "U kunt geen dashboarddiagram maken van afzonderlijke DocTypes"
+msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:44
-msgid "You cannot give review points to yourself"
-msgstr "Je kunt jezelf geen beoordelingspunten geven"
-
-#: custom/doctype/customize_form/customize_form.py:383
+#: frappe/custom/doctype/customize_form/customize_form.py:385
msgid "You cannot unset 'Read Only' for field {0}"
-msgstr "Je kan 'Alleen lezen' niet uitschakelen voor het veld {0}"
+msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:121
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125
msgid "You changed the value of {0}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:110
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114
msgid "You changed the value of {0} {1}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:183
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:191
msgid "You changed the values for {0}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:172
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:180
msgid "You changed the values for {0} {1}"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:442
+#: frappe/public/js/frappe/form/footer/form_timeline.js:443
msgctxt "Form timeline"
msgid "You changed {0} to {1}"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:138
-#: public/js/frappe/form/sidebar/form_sidebar.js:106
+#: frappe/public/js/frappe/form/footer/form_timeline.js:140
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:94
msgid "You created this"
msgstr ""
-#: client.py:430
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247
+msgctxt "Form timeline"
+msgid "You created this document {0}"
+msgstr ""
+
+#: frappe/client.py:417
msgid "You do not have Read or Select Permissions for {}"
msgstr ""
-#: public/js/frappe/request.js:174
+#: frappe/public/js/frappe/request.js:177
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
-msgstr "Je hoeft niet voldoende rechten om deze bron te hebben. Neem contact op met uw manager om toegang te krijgen."
-
-#: app.py:355
-msgid "You do not have enough permissions to complete the action"
-msgstr "Je hebt niet genoeg rechten om de actie te voltooien"
-
-#: public/js/frappe/form/sidebar/review.js:91
-msgid "You do not have enough points"
-msgstr "Je hebt niet genoeg punten"
-
-#: social/doctype/energy_point_log/energy_point_log.py:296
-msgid "You do not have enough review points"
-msgstr "Je hebt niet voldoende beoordelingspunten"
-
-#: www/printview.py:369
-msgid "You do not have permission to view this document"
msgstr ""
-#: public/js/frappe/form/form.js:979
+#: frappe/app.py:368
+msgid "You do not have enough permissions to complete the action"
+msgstr ""
+
+#: frappe/desk/query_report.py:838
+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 "U hebt geen rechten om alle gekoppelde documenten te annuleren."
+msgstr ""
-#: desk/query_report.py:39
+#: frappe/desk/query_report.py:42
msgid "You don't have access to Report: {0}"
-msgstr "U heeft geen toegang tot Rapport: {0}"
+msgstr ""
-#: website/doctype/web_form/web_form.py:699
+#: frappe/website/doctype/web_form/web_form.py:772
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: utils/response.py:278
+#: frappe/utils/response.py:286 frappe/utils/response.py:290
msgid "You don't have permission to access this file"
-msgstr "U hebt geen toestemming om dit bestand te openen"
+msgstr ""
-#: desk/query_report.py:45
+#: frappe/desk/query_report.py:48
msgid "You don't have permission to get a report on: {0}"
-msgstr "Je hebt geen machtiging om een rapport over: {0} op te vragen."
+msgstr ""
-#: website/doctype/web_form/web_form.py:167
+#: frappe/website/doctype/web_form/web_form.py:175
msgid "You don't have the permissions to access this document"
-msgstr "U hebt niet de rechten om toegang te krijgen tot dit document"
+msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:156
-msgid "You gained {0} point"
-msgstr "U heeft {0} punt behaald"
-
-#: social/doctype/energy_point_log/energy_point_log.py:158
-msgid "You gained {0} points"
-msgstr "Je hebt {0} punten verdiend"
-
-#: templates/emails/new_message.html:1
+#: frappe/templates/emails/new_message.html:1
msgid "You have a new message from: "
-msgstr "Je hebt een nieuw bericht van:"
+msgstr ""
-#: handler.py:123
+#: frappe/handler.py:118
msgid "You have been successfully logged out"
-msgstr "U bent succesvol uitgelogd"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:240
+#: frappe/custom/doctype/customize_form/customize_form.py:244
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
-#: public/js/frappe/list/bulk_operations.js:347
+#: frappe/public/js/frappe/list/bulk_operations.js:412
msgid "You have not entered a value. The field will be set to empty."
msgstr ""
-#: templates/includes/likes/likes.py:31
+#: frappe/templates/includes/likes/likes.py:31
msgid "You have received a ❤️ like on your blog post"
msgstr ""
-#: twofactor.py:455
+#: frappe/twofactor.py:432
msgid "You have to enable Two Factor Auth from System Settings."
msgstr ""
-#: public/js/frappe/model/create_new.js:332
+#: frappe/public/js/frappe/model/create_new.js:328
msgid "You have unsaved changes in this form. Please save before you continue."
-msgstr "U hebt niet-opgeslagen wijzigingen in dit scherm. Sla eerst op."
+msgstr ""
-#: core/doctype/log_settings/log_settings.py:127
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:50
+msgid "You have unseen notifications"
+msgstr ""
+
+#: frappe/core/doctype/log_settings/log_settings.py:125
msgid "You have unseen {0}"
-msgstr "Je hebt {0} niet gezien"
+msgstr ""
-#: public/js/frappe/list/list_view.js:468
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:192
+msgid "You haven't added any Dashboard Charts or Number Cards yet."
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:498
msgid "You haven't created a {0} yet"
msgstr ""
-#: rate_limiter.py:150
+#: frappe/rate_limiter.py:166
msgid "You hit the rate limit because of too many requests. Please try after sometime."
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:149
-#: public/js/frappe/form/sidebar/form_sidebar.js:95
+#: frappe/public/js/frappe/form/footer/form_timeline.js:151
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103
msgid "You last edited this"
msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:308
+#: frappe/public/js/frappe/widgets/widget_dialog.js:339
msgid "You must add atleast one link."
msgstr ""
-#: website/doctype/web_form/web_form.py:669
+#: frappe/website/doctype/web_form/web_form.py:768
msgid "You must be logged in to use this form."
msgstr ""
-#: website/doctype/web_form/web_form.py:503
+#: frappe/website/doctype/web_form/web_form.py:609
msgid "You must login to submit this form"
-msgstr "U moet inloggen om dit formulier in te dienen"
+msgstr ""
-#: desk/doctype/workspace/workspace.py:69
+#: frappe/model/document.py:357
+msgid "You need the '{0}' permission on {1} {2} to perform this action."
+msgstr ""
+
+#: frappe/desk/doctype/workspace/workspace.py:127
+msgid "You need to be Workspace Manager to delete a public workspace."
+msgstr ""
+
+#: frappe/desk/doctype/workspace/workspace.py:76
msgid "You need to be Workspace Manager to edit this document"
msgstr ""
-#: website/doctype/web_form/web_form.py:90
+#: frappe/www/attribution.py:16
+msgid "You need to be a system user to access this page."
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.py:94
msgid "You need to be in developer mode to edit a Standard Web Form"
-msgstr "U moet ontwikkelaarsmodus inschakelen om een standaard webformulier te kunnen bewerken"
+msgstr ""
-#: utils/response.py:259
+#: frappe/utils/response.py:275
msgid "You need to be logged in and have System Manager Role to be able to access backups."
-msgstr "U moet ingelogd zijn en de System Manager Rol hebben om toegang te krijgen tot back-ups."
+msgstr ""
-#: www/me.py:13 www/third_party_apps.py:10
+#: frappe/www/me.py:13 frappe/www/third_party_apps.py:10
msgid "You need to be logged in to access this page"
-msgstr "Je moet ingelogd zijn om toegang te krijgen tot deze pagina"
+msgstr ""
-#: website/doctype/web_form/web_form.py:158
+#: frappe/website/doctype/web_form/web_form.py:164
msgid "You need to be logged in to access this {0}."
-msgstr "U moet ingelogd zijn om toegang te krijgen tot {0}."
+msgstr ""
-#: www/login.html:73
+#: frappe/public/js/frappe/widgets/links_widget.js:63
+msgid "You need to create these first: "
+msgstr ""
+
+#: frappe/www/login.html:76
msgid "You need to enable JavaScript for your app to work."
-msgstr "U moet JavaScript inschakelen om uw app te laten werken."
+msgstr ""
-#: core/doctype/docshare/docshare.py:62
+#: frappe/core/doctype/docshare/docshare.py:62
msgid "You need to have \"Share\" permission"
-msgstr "U hebt de \"Delen\" machtiging nodig."
+msgstr ""
-#: utils/print_format.py:156
+#: frappe/utils/print_format.py:268
msgid "You need to install pycups to use this feature!"
-msgstr "U moet pycups installeren om deze functie te gebruiken!"
+msgstr ""
-#: email/doctype/email_account/email_account.py:140
+#: frappe/core/doctype/recorder/recorder.js:38
+msgid "You need to select indexes you want to add first."
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:160
msgid "You need to set one IMAP folder for {0}"
msgstr ""
-#: model/rename_doc.py:385
-msgid "You need write permission to rename"
-msgstr "U hebt moet een schrijf-machtiging hebben om te kunnen hernoemen."
+#: frappe/model/rename_doc.py:391
+msgid "You need write permission on {0} {1} to merge"
+msgstr ""
-#: client.py:458
+#: frappe/model/rename_doc.py:386
+msgid "You need write permission on {0} {1} to rename"
+msgstr ""
+
+#: frappe/client.py:449
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:418
+#: frappe/public/js/frappe/form/footer/form_timeline.js:419
msgctxt "Form timeline"
msgid "You removed attachment {0}"
msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:525
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:520
msgid "You seem good to go!"
-msgstr "Je lijkt goed om te gaan!"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:29
+#: frappe/templates/includes/contact.js:20
+msgid "You seem to have written your name instead of your email. Please enter a valid email address so that we can get back."
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:31
msgid "You selected Draft or Cancelled documents"
-msgstr "U selecteerde Ontwerp of Geannuleerde documenten"
+msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:48
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:48
msgctxt "Form timeline"
msgid "You submitted this document"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:35
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:35
msgctxt "Form timeline"
msgid "You submitted this document {0}"
msgstr ""
-#: public/js/frappe/form/sidebar/document_follow.js:144
+#: frappe/public/js/frappe/form/sidebar/document_follow.js:144
msgid "You unfollowed this document"
-msgstr "U heeft dit document niet meer gevolgd"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:182
+#: frappe/public/js/frappe/form/footer/form_timeline.js:183
msgid "You viewed this"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:385
+#: frappe/public/js/frappe/desk.js:543
+msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
+msgstr ""
+
+#: frappe/core/doctype/prepared_report/prepared_report.js:57
+msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download."
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:397
msgid "Your Country"
-msgstr "Jouw land"
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:377
+#: frappe/desk/page/setup_wizard/setup_wizard.js:389
msgid "Your Language"
-msgstr "Je taal"
+msgstr ""
-#: templates/includes/comments/comments.html:21
+#: frappe/templates/includes/comments/comments.html:21
msgid "Your Name"
-msgstr "Uw naam"
+msgstr ""
-#: patches/v14_0/update_workspace2.py:34
+#: frappe/public/js/frappe/list/bulk_operations.js:132
+msgid "Your PDF is ready for download"
+msgstr ""
+
+#: frappe/patches/v14_0/update_workspace2.py:34
msgid "Your Shortcuts"
-msgstr "Uw snelkoppelingen"
+msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:141
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:147
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:145
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:151
msgid "Your account has been deleted"
msgstr ""
-#: auth.py:465
+#: frappe/auth.py:514
msgid "Your account has been locked and will resume after {0} seconds"
-msgstr "Uw account is vergrendeld en zal na {0} seconden worden hervat"
+msgstr ""
-#: desk/form/assign_to.py:268
+#: frappe/desk/form/assign_to.py:279
msgid "Your assignment on {0} {1} has been removed by {2}"
-msgstr "Je opdracht op {0} {1} is verwijderd door {2}"
+msgstr ""
-#: templates/pages/integrations/gcalendar-success.html:11
+#: frappe/core/doctype/file/file.js:73
+msgid "Your browser does not support the audio element."
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:55
+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 "Uw verbindingsverzoek naar Google Agenda is met succes geaccepteerd"
+msgstr ""
-#: www/contact.html:35
+#: frappe/www/contact.html:35
msgid "Your email address"
-msgstr "jouw e-mailadres"
+msgstr ""
-#: public/js/frappe/web_form/web_form.js:424
+#: frappe/public/js/frappe/web_form/web_form.js:428
msgid "Your form has been successfully updated"
msgstr ""
-#: templates/emails/new_user.html:6
+#: frappe/templates/emails/new_user.html:6
msgid "Your login id is"
-msgstr "Uw login id is"
+msgstr ""
-#: www/update-password.html:165
+#: frappe/www/update-password.html:167
msgid "Your new password has been set successfully."
msgstr ""
-#: www/update-password.html:145
+#: frappe/www/update-password.html:147
msgid "Your old password is incorrect."
msgstr ""
#. Description of the 'Email Footer Address' (Small Text) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Your organization name and address for the email footer."
-msgstr "Naam van uw organisatie en het adres van de e-mail voettekst."
+msgstr ""
-#: templates/emails/auto_reply.html:2
+#: frappe/templates/emails/auto_reply.html:2
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
-msgstr "Uw vraag is ontvangen. We zullen binnenkort antwoord terug. Als u aanvullende informatie, dan kunt u reageren op dit e-mail."
+msgstr ""
-#: app.py:346
+#: frappe/app.py:361
msgid "Your session has expired, please login again to continue."
-msgstr "Uw sessie is verlopen, log opnieuw in om door te gaan."
+msgstr ""
-#: templates/emails/verification_code.html:1
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:15
+msgid "Your site is undergoing maintenance or being updated."
+msgstr ""
+
+#: frappe/templates/emails/verification_code.html:1
msgid "Your verification code is {0}"
msgstr ""
-#. Success message of the Module Onboarding 'Website'
-#: website/module_onboarding/website/website.json
-msgid "Your website is all set up!"
-msgstr ""
-
-#: utils/data.py:1518
+#: frappe/utils/data.py:1547
msgid "Zero"
-msgstr "Nul"
+msgstr ""
#. Description of the 'Only Send Records Updated in Last X Hours' (Int) field
#. in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Zero means send records updated at anytime"
-msgstr "Nul betekent dat u op elk gewenst moment de gegevens bijwerkt"
+msgstr ""
-#. Label of a Link field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265
+msgid "[Action taken by {0}]"
+msgstr ""
+
+#. Label of the _doctype (Link) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "_doctype"
-msgstr "_doctype"
+msgstr ""
-#. Label of a Link field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#. Label of the _report (Link) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "_report"
-msgstr "_rapport"
+msgstr ""
-#: utils/background_jobs.py:94
+#: frappe/database/database.py:361
+msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
+msgstr ""
+
+#: frappe/utils/background_jobs.py:120
msgid "`job_id` paramater is required for deduplication."
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:219
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232
msgid "added rows for {0}"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "adjust"
-msgstr "aanpassen"
-
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "after_insert"
-msgstr "after_insert"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "align-center"
-msgstr "align-center"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "align-justify"
-msgstr "align-justify"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "align-left"
-msgstr "align-left"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "align-right"
-msgstr "align-right"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "amend"
-msgstr "Amenderen"
+msgstr ""
-#: public/js/frappe/utils/utils.js:396 utils/data.py:1528
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
msgid "and"
-msgstr "en"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "arrow-down"
-msgstr "arrow-down"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "arrow-left"
-msgstr "pijl-links"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "arrow-right"
-msgstr "pijl-rechts"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "arrow-up"
-msgstr "pijl-up"
-
-#: public/js/frappe/ui/sort_selector.js:48
+#: frappe/public/js/frappe/ui/sort_selector.html:5
+#: frappe/public/js/frappe/ui/sort_selector.js:48
msgid "ascending"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "asterisk"
-msgstr "sterretje"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "backward"
-msgstr "achterwaarts"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "ban-circle"
-msgstr "ban-cirkel"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "barcode"
-msgstr "barcode"
-
-#: model/document.py:1337
-msgid "beginning with"
-msgstr "beginnend met"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "bell"
-msgstr "bel"
-
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "blue"
-msgstr "blauw"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "bold"
-msgstr "Vet"
+#: frappe/public/js/frappe/form/workflow.js:35
+msgid "by Role"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "book"
-msgstr "boek"
+#. Label of the profile (Code) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "cProfile Output"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "bookmark"
-msgstr "bladwijzer"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "briefcase"
-msgstr "koffer"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "bullhorn"
-msgstr "megafoon"
-
-#: public/js/frappe/ui/toolbar/search_utils.js:270
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
msgid "calendar"
-msgstr "kalender"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "calendar"
-msgstr "kalender"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "camera"
-msgstr "camera"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "cancel"
-msgstr "Annuleren"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "canceled"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "certificate"
-msgstr "certificaat"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "check"
-msgstr "controleren"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "chevron-down"
-msgstr "chevron-down"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "chevron-left"
-msgstr "chevron-links"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "chevron-right"
-msgstr "chevron-rechts"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "chevron-up"
-msgstr "chevron-up"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "circle-arrow-down"
-msgstr "circle-arrow-down"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "circle-arrow-left"
-msgstr "cirkel-pijl-links"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "circle-arrow-right"
-msgstr "cirkel-pijl-rechts"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "circle-arrow-up"
-msgstr "cirkel-pijl-up"
-
-#: templates/includes/list/filters.html:19
+#: frappe/templates/includes/list/filters.html:19
msgid "clear"
-msgstr "wissen"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "cog"
-msgstr "tandwiel"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "comment"
-msgstr "Reactie"
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:34
+msgid "commented"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "create"
-msgstr "Creëren"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "cyan"
msgstr ""
-#: public/js/frappe/utils/utils.js:1113
+#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
-msgstr "d"
-
-#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "darkgrey"
-msgstr "donker grijs"
-
-#: core/page/dashboard_view/dashboard_view.js:65
-msgid "dashboard"
-msgstr "dashboard"
-
-#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "dd-mm-yyyy"
-msgstr "dd-mm-jjjj"
-
-#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "dd.mm.yyyy"
-msgstr "dd.mm.jjjj"
-
-#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "dd/mm/yyyy"
-msgstr "dd/mm/jjjj"
-
-#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
-msgid "default"
msgstr ""
+#. Option for the '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'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "default"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "deferred"
msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "delete"
-msgstr "Verwijder"
+msgstr ""
-#: public/js/frappe/ui/sort_selector.js:48
+#: frappe/public/js/frappe/ui/sort_selector.html:5
+#: frappe/public/js/frappe/ui/sort_selector.js:48
msgid "descending"
msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:163
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163
msgid "document type..., e.g. customer"
-msgstr "documenttype ..., bijvoorbeeld klant"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "download"
-msgstr "Download"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "download-alt"
-msgstr "download-alt"
+msgstr ""
#. Description of the 'Email Account Name' (Data) field in DocType 'Email
#. Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
-msgstr "bijv. \"Ondersteuning \",\" Verkoop \",\"Henk de Vries\""
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:183
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:183
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
-msgstr "bijv (55 + 434) / 4 = of Math.sin (Math.PI / 2) ..."
+msgstr ""
#. Description of the 'Incoming Server' (Data) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "e.g. pop.gmail.com / imap.gmail.com"
-msgstr "bv pop.gmail.com / imap.gmail.com"
-
#. Description of the 'Incoming Server' (Data) field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "e.g. pop.gmail.com / imap.gmail.com"
-msgstr "bv pop.gmail.com / imap.gmail.com"
+msgstr ""
#. Description of the 'Default Incoming' (Check) field in DocType 'Email
#. Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "e.g. replies@yourcomany.com. All replies will come to this inbox."
-msgstr "bijv. antwoord@uwbedrijf.nl. Alle antwoorden zullen op deze inbox binnenkomen."
+msgstr ""
#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "e.g. smtp.gmail.com"
-msgstr "bv smtp.gmail.com"
-
#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "e.g. smtp.gmail.com"
-msgstr "bv smtp.gmail.com"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:98
+#: frappe/custom/doctype/custom_field/custom_field.js:98
msgid "e.g.:"
-msgstr "bijvoorbeeld:"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "edit"
-msgstr "Bewerken"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "eject"
-msgstr "uitwerpen"
+#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "emacs"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
-msgid "email"
-msgstr "e-mail"
-
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "email"
-msgstr "e-mail"
+msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305
msgid "email inbox"
-msgstr "Email Inbox"
+msgstr ""
-#: permissions.py:411 permissions.py:422
-#: public/js/frappe/form/controls/link.js:479
+#: frappe/permissions.py:403 frappe/permissions.py:414
+#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
-msgstr "leeg"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "envelope"
-msgstr "envelop"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "exclamation-sign"
-msgstr "uitroepteken"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "export"
-msgstr "Exporteren"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "eye-close"
-msgstr "oog-gesloten"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "eye-open"
-msgstr "oog-open"
+msgstr ""
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "facebook"
-msgstr "facebook"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "facetime-video"
-msgstr "FaceTime-video"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "failed"
msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "fairlogin"
-msgstr "fairlogin"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "fast-backward"
-msgstr "snel achteruit"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "fast-forward"
-msgstr "snel vooruit"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "file"
-msgstr "bestand"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "film"
-msgstr "film"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "filter"
-msgstr "filter"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "finished"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "fire"
-msgstr "brand"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "flag"
-msgstr "vlag"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "folder-close"
-msgstr "map-close"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "folder-open"
-msgstr "map te openen"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "font"
-msgstr "font"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "forward"
-msgstr "vooruit"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "fullscreen"
-msgstr "volledig scherm"
-
-#: public/js/frappe/utils/energy_point_utils.js:61
-msgid "gained by {0} via automatic rule {1}"
-msgstr "verkregen door {0} via automatische regel {1}"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "gift"
-msgstr "gift"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "glass"
-msgstr "glas"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "globe"
-msgstr "wereldbol"
-
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "gray"
msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "green"
-msgstr "groen"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "grey"
msgstr ""
-#: utils/backups.py:375
+#: frappe/utils/backups.py:399
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: public/js/frappe/utils/utils.js:1117
+#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
-msgstr "h"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "hand-down"
-msgstr "hand-neer"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "hand-left"
-msgstr "hand-links"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "hand-right"
-msgstr "hand-rechts"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "hand-up"
-msgstr "hand-op"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "hdd"
-msgstr "hdd"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "headphones"
-msgstr "hoofdtelefoon"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "heart"
-msgstr "hart"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "home"
-msgstr "huis"
-
-#: public/js/frappe/ui/toolbar/search_utils.js:280
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296
msgid "hub"
-msgstr "naaf"
+msgstr ""
-#. Label of a Data field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
+#. Label of the icon (Data) field in DocType 'Page'
+#: frappe/core/doctype/page/page.json
msgid "icon"
-msgstr "pictogram"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "import"
-msgstr "Importeren"
+msgstr ""
#. Description of the 'Read Time' (Int) field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "in minutes"
-msgstr "in minuten"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "inbox"
-msgstr "Inbox"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "indent-left"
-msgstr "inspringing-links"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "indent-right"
-msgstr "inspringing-rechts"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "info-sign"
-msgstr "info-teken"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "italic"
-msgstr "cursief"
-
-#: templates/signup.html:11 www/login.html:10
+#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr ""
-#: public/js/frappe/utils/pretty_date.js:46
+#: frappe/public/js/frappe/utils/pretty_date.js:46
msgid "just now"
-msgstr "net nu"
+msgstr ""
-#: desk/desktop.py:254 desk/query_report.py:279
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
msgid "label"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "leaf"
-msgstr "blad"
-
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "light-blue"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "link"
-msgstr "Link"
+msgstr ""
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "linkedin"
-msgstr "LinkedIn"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "list"
-msgstr "lijst"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "list"
-msgstr "lijst"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "list-alt"
-msgstr "list-alt"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "lock"
-msgstr "slot"
-
-#: www/third_party_apps.html:41
+#: frappe/www/third_party_apps.html:43
msgid "logged in"
-msgstr "ingelogd"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.js:362
+msgid "login_required"
+msgstr ""
#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
-msgid "long"
-msgstr ""
-
#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "long"
msgstr ""
-#: public/js/frappe/utils/utils.js:1121
+#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
-msgstr "m"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "magnet"
-msgstr "magneet"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "map-marker"
-msgstr "kaart-marker"
-
-#: model/rename_doc.py:214
+#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
-msgstr "samengevoegd {0} tot {1}"
+msgstr ""
-#: website/doctype/blog_post/templates/blog_post.html:25
-#: website/doctype/blog_post/templates/blog_post_row.html:36
+#: frappe/website/doctype/blog_post/templates/blog_post.html:25
+#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36
msgid "min read"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "minus"
-msgstr "minus"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "minus-sign"
-msgstr "min-teken"
-
+#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "mm-dd-yyyy"
-msgstr "mm-dd-jjjj"
+msgstr ""
+#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "mm/dd/yyyy"
-msgstr "mm/dd/jjjj"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "module"
-msgstr "Module"
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:178
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:178
msgid "module name..."
-msgstr "module naam ..."
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "move"
-msgstr "verhuizing"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "music"
-msgstr "Muziek"
-
-#: public/js/frappe/ui/toolbar/search_utils.js:144
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160
msgid "new"
-msgstr "nieuw"
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:158
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:158
msgid "new type of document"
-msgstr "nieuw type document"
+msgstr ""
-#. Label of a Int field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the no_failed (Int) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "no failed attempts"
-msgstr "geen mislukte pogingen"
+msgstr ""
-#. Label of a Data field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. Label of the nonce (Data) field in DocType 'OAuth Authorization Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "nonce"
msgstr ""
-#: model/document.py:1336
-msgid "none of"
-msgstr "geen van"
-
-#. Label of a Check field in DocType 'Reminder'
-#: automation/doctype/reminder/reminder.json
-msgctxt "Reminder"
+#. Label of the notified (Check) field in DocType 'Reminder'
+#: frappe/automation/doctype/reminder/reminder.json
msgid "notified"
msgstr ""
-#: public/js/frappe/utils/pretty_date.js:25
+#: frappe/public/js/frappe/utils/pretty_date.js:25
msgid "now"
-msgstr "nu"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "off"
-msgstr "uit"
+#: frappe/public/js/frappe/form/grid_pagination.js:116
+msgid "of"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "ok"
-msgstr "OK"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "ok-circle"
-msgstr "ok-cirkel"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "ok-sign"
-msgstr "ok-teken"
-
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the old_parent (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "old_parent"
-msgstr "old_parent"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_cancel"
-msgstr "on_cancel"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_change"
-msgstr "on_change"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_submit"
-msgstr "on_submit"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_trash"
-msgstr "on_trash"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_update"
-msgstr "on_update"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_update_after_submit"
-msgstr "on_update_after_submit"
+msgstr ""
-#: model/document.py:1335
-msgid "one of"
-msgstr "een van de"
-
-#: utils/data.py:1535
-msgid "only."
-msgstr "alleen."
-
-#: public/js/frappe/utils/utils.js:393 www/login.html:87
+#: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90
+#: frappe/www/login.py:112
msgid "or"
-msgstr "of"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "orange"
-msgstr "oranje"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "page"
-msgstr "Pagina"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "pause"
-msgstr "pauze"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "pencil"
-msgstr "potlood"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "picture"
-msgstr "afbeelding"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "pink"
msgstr ""
#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth
#. Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "plain"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "plane"
-msgstr "vliegtuig"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "play"
-msgstr "spelen"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "play-circle"
-msgstr "play-cirkel"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "plus"
-msgstr "plus"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "plus-sign"
-msgstr "plus-teken"
-
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "print"
-msgstr "afdruk"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "print"
-msgstr "afdruk"
-
-#. Label of a HTML field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#. Label of the processlist (HTML) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
msgid "processlist"
msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "purple"
-msgstr "Purper"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "qrcode"
-msgstr "qrcode"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "query-report"
-msgstr "vraag-rapport"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "question-sign"
-msgstr "vraagteken"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "queued"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "random"
-msgstr "toevallig"
-
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "read"
-msgstr "Lezen"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "red"
-msgstr "rood"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "refresh"
-msgstr "vernieuwen"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "remove"
-msgstr "verwijderen"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "remove-circle"
-msgstr "remove-cirkel"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "remove-sign"
-msgstr "remove-teken"
-
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:221
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234
msgid "removed rows for {0}"
msgstr ""
-#: model/rename_doc.py:217
+#: frappe/model/rename_doc.py:217
msgid "renamed from {0} to {1}"
-msgstr "hernoemd van {0} tot {1}"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "repeat"
-msgstr "herhaling"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "report"
-msgstr "Rapport"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "resize-full"
-msgstr "resize-full"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "resize-horizontal"
-msgstr "resize-horizontale"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "resize-small"
-msgstr "resize-small"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "resize-vertical"
-msgstr "resize-verticale"
-
-#. Label of a HTML field in DocType 'Custom Role'
-#: core/doctype/custom_role/custom_role.json
-msgctxt "Custom Role"
+#. Label of the response (HTML) field in DocType 'Custom Role'
+#: frappe/core/doctype/custom_role/custom_role.json
msgid "response"
-msgstr "antwoord"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document.py:60
+#: frappe/core/doctype/deleted_document/deleted_document.py:61
msgid "restored {0} as {1}"
-msgstr "herstelde {0} en {1}"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "retweet"
-msgstr "retweet"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "road"
-msgstr "weg"
-
-#: public/js/frappe/utils/utils.js:1125
+#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
-msgstr "s"
+msgstr ""
#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth
#. Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "s256"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "scheduled"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "screenshot"
-msgstr "screenshot"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "search"
-msgstr "zoeken"
-
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "select"
-msgstr "Kiezen"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "share"
-msgstr "aandeel"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "share"
-msgstr "aandeel"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "share-alt"
-msgstr "delen-alt"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "shopping-cart"
-msgstr "shopping-cart"
+msgstr ""
#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
-msgid "short"
-msgstr ""
-
#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "short"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "signal"
-msgstr "signaal"
-
-#: public/js/frappe/widgets/number_card_widget.js:265
+#: frappe/public/js/frappe/widgets/number_card_widget.js:298
msgid "since last month"
-msgstr "sinds afgelopen maand"
+msgstr ""
-#: public/js/frappe/widgets/number_card_widget.js:264
+#: frappe/public/js/frappe/widgets/number_card_widget.js:297
msgid "since last week"
-msgstr "sinds vorige week"
+msgstr ""
-#: public/js/frappe/widgets/number_card_widget.js:266
+#: frappe/public/js/frappe/widgets/number_card_widget.js:299
msgid "since last year"
-msgstr "sinds vorig jaar"
+msgstr ""
-#: public/js/frappe/widgets/number_card_widget.js:263
+#: frappe/public/js/frappe/widgets/number_card_widget.js:296
msgid "since yesterday"
-msgstr "sinds gisteren"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "star"
-msgstr "ster"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "star-empty"
-msgstr "star-leeg"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "started"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:194
+#: frappe/desk/page/setup_wizard/setup_wizard.js:201
msgid "starting the setup..."
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "step-backward"
-msgstr "step-achteruit"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "step-forward"
-msgstr "stap-vooruit"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "stop"
-msgstr "hou op"
-
#. Description of the 'Group Object Class' (Data) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "string value, i.e. group"
msgstr ""
#. Description of the 'LDAP Group Member attribute' (Data) field in DocType
#. 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "string value, i.e. member"
msgstr ""
#. Description of the 'Custom Group Search' (Data) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "string value, i.e. {0} or uid={0},ou=users,dc=example,dc=com"
msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "submit"
-msgstr "Indienen"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "tag"
-msgstr "Tag"
-
-#: public/js/frappe/ui/toolbar/awesome_bar.js:173
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:173
msgid "tag name..., e.g. #tag"
-msgstr "tagnaam ..., bijvoorbeeld #tag"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "tags"
-msgstr "tags"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "tasks"
-msgstr "taken"
-
-#: public/js/frappe/ui/toolbar/awesome_bar.js:168
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:168
msgid "text in document type"
-msgstr "tekst in het documenttype"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "text-height"
-msgstr "text-height"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "text-width"
-msgstr "text-width"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "th"
-msgstr "th"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "th-large"
-msgstr "th-large"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "th-list"
-msgstr "th-list"
-
-#: public/js/frappe/form/controls/data.js:35
+#: frappe/public/js/frappe/form/controls/data.js:36
msgid "this form"
msgstr ""
-#: tests/test_translate.py:158
+#: frappe/tests/test_translate.py:174
msgid "this shouldn't break"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "thumbs-down"
-msgstr "duim-omlaag"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "thumbs-up"
-msgstr "duim-omhoog"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "time"
-msgstr "tijd"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "tint"
-msgstr "tint"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "trash"
-msgstr "prullenbak"
-
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "twitter"
-msgstr "twitter"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "upload"
-msgstr "uploaden"
+#: frappe/public/js/frappe/change_log.html:7
+msgid "updated to {0}"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:340
+#: frappe/public/js/frappe/ui/filters/filter.js:361
msgid "use % as wildcard"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "user"
-msgstr "gebruiker"
-
-#: public/js/frappe/ui/filters/filter.js:339
+#: frappe/public/js/frappe/ui/filters/filter.js:360
msgid "values separated by commas"
-msgstr "waarden gescheiden door komma's"
+msgstr ""
-#. Label of a HTML field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
+#. Label of the version_table (HTML) field in DocType 'Audit Trail'
+#: frappe/core/doctype/audit_trail/audit_trail.json
msgid "version_table"
msgstr ""
-#: automation/doctype/assignment_rule/assignment_rule.py:386
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:382
msgid "via Assignment Rule"
-msgstr "via toewijzingsregel"
+msgstr ""
-#: core/doctype/data_import/importer.py:259
-#: core/doctype/data_import/importer.py:280
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242
+msgid "via Auto Repeat"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:271
+#: frappe/core/doctype/data_import/importer.py:292
msgid "via Data Import"
-msgstr "via gegevensimport"
+msgstr ""
#. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/desk/doctype/event/event.json
msgid "via Google Meet"
msgstr ""
-#: email/doctype/notification/notification.py:214
+#: frappe/email/doctype/notification/notification.py:361
msgid "via Notification"
-msgstr "via kennisgeving"
+msgstr ""
-#: public/js/frappe/utils/energy_point_utils.js:46
-msgid "via automatic rule {0} on {1}"
-msgstr "via automatische regel {0} op {1}"
-
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:17
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:17
msgid "via {0}"
-msgstr "via {0}"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "volume-down"
-msgstr "volume-omlaag"
+#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "vim"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "volume-off"
-msgstr "volume-uit"
+#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "vscode"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "volume-up"
-msgstr "volume-omhoog"
-
-#: templates/includes/oauth_confirmation.html:5
+#: frappe/templates/includes/oauth_confirmation.html:5
msgid "wants to access the following details from your account"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "warning-sign"
-msgstr "waarschuwing-teken"
-
#. Description of the 'Popover Element' (Check) field in DocType 'Form Tour
#. Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "when clicked on element it will focus popover if present."
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "wrench"
-msgstr "moersleutel"
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "wkhtmltopdf"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:622
+msgid "wkhtmltopdf 0.12.x (with patched qt)."
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "write"
-msgstr "Schrijven"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "yellow"
-msgstr "geel"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:58
+#: frappe/public/js/frappe/utils/pretty_date.js:58
msgid "yesterday"
-msgstr "gisteren"
+msgstr ""
+#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "yyyy-mm-dd"
-msgstr "jjjj-mm-dd"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "zoom-in"
-msgstr "inzoomen"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "zoom-out"
-msgstr "uitzoomen"
-
-#: desk/doctype/event/event.js:83
-#: integrations/doctype/google_drive/google_drive.js:19
+#: frappe/desk/doctype/event/event.js:87
+#: frappe/public/js/frappe/form/footer/form_timeline.js:547
msgid "{0}"
msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:81
-#: public/js/frappe/ui/toolbar/search_utils.js:82
-msgid "{0} ${label}"
-msgstr ""
-
-#: public/js/frappe/ui/toolbar/search_utils.js:177
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193
msgid "{0} ${skip_list ? \"\" : type}"
msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198
msgid "{0} ${type}"
msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:77
-#: public/js/frappe/views/gantt/gantt_view.js:54
+#: frappe/public/js/frappe/data_import/data_exporter.js:80
+#: frappe/public/js/frappe/views/gantt/gantt_view.js:54
msgid "{0} ({1})"
msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:76
+#: frappe/public/js/frappe/data_import/data_exporter.js:77
msgid "{0} ({1}) (1 row mandatory)"
-msgstr "{0} ({1}) (1 rij verplicht)"
+msgstr ""
-#: public/js/frappe/views/gantt/gantt_view.js:53
+#: frappe/public/js/frappe/views/gantt/gantt_view.js:53
msgid "{0} ({1}) - {2}%"
msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:346
-#: public/js/frappe/ui/toolbar/awesome_bar.js:349
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:377
msgid "{0} = {1}"
msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:29
+#: frappe/public/js/frappe/views/calendar/calendar.js:30
msgid "{0} Calendar"
-msgstr "{0} Kalender"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:544
+#: frappe/public/js/frappe/views/reports/report_view.js:564
msgid "{0} Chart"
-msgstr "{0} Grafiek"
+msgstr ""
-#: core/page/dashboard_view/dashboard_view.js:67
-#: public/js/frappe/ui/toolbar/search_utils.js:331
-#: public/js/frappe/ui/toolbar/search_utils.js:332
-#: public/js/frappe/utils/utils.js:929
-#: public/js/frappe/views/dashboard/dashboard_view.js:10
+#: frappe/core/page/dashboard_view/dashboard_view.js:67
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
-msgstr "{0} Dashboard"
+msgstr ""
-#: public/js/frappe/form/grid_row.js:456
-#: public/js/frappe/list/list_settings.js:224
-#: public/js/frappe/views/kanban/kanban_settings.js:178
+#: frappe/public/js/frappe/form/grid_row.js:470
+#: frappe/public/js/frappe/list/list_settings.js:227
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
-msgstr "{0} Velden"
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:360
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:376
msgid "{0} Google Calendar Events synced."
-msgstr "{0} Google Agenda-evenementen gesynchroniseerd."
+msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.py:190
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:193
msgid "{0} Google Contacts synced."
-msgstr "{0} Google Contacten gesynchroniseerd."
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:463
+#: frappe/public/js/frappe/form/footer/form_timeline.js:464
msgid "{0} Liked"
msgstr ""
-#: public/js/frappe/utils/utils.js:923
-#: public/js/frappe/widgets/chart_widget.js:317 www/list.html:4 www/list.html:8
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:83
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:84
+#: frappe/public/js/frappe/widgets/chart_widget.js:358 frappe/www/list.html:4
+#: frappe/www/list.html:8
msgid "{0} List"
-msgstr "{0} Lijst"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:37
+#: frappe/public/js/frappe/utils/pretty_date.js:37
msgid "{0} M"
-msgstr "{0} M"
+msgstr ""
-#: public/js/frappe/views/map/map_view.js:14
+#: frappe/public/js/frappe/views/map/map_view.js:14
msgid "{0} Map"
msgstr ""
-#: public/js/frappe/utils/utils.js:926
-msgid "{0} Modules"
-msgstr "{0} Modules"
-
-#: public/js/frappe/form/quick_entry.js:113
+#: frappe/public/js/frappe/form/quick_entry.js:122
msgid "{0} Name"
-msgstr "{0} Naam"
+msgstr ""
-#: model/base_document.py:1027
+#: frappe/model/base_document.py:1149
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
-#: public/js/frappe/utils/utils.js:920
-#: public/js/frappe/widgets/chart_widget.js:325
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/widgets/chart_widget.js:366
msgid "{0} Report"
-msgstr "{0} Rapport"
+msgstr ""
-#: public/js/frappe/list/list_settings.js:32
-#: public/js/frappe/views/kanban/kanban_settings.js:26
+#: frappe/public/js/frappe/views/reports/query_report.js:952
+msgid "{0} Reports"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_settings.js:32
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:26
msgid "{0} Settings"
-msgstr "{0} Instellingen"
+msgstr ""
-#: public/js/frappe/views/treeview.js:139
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:87
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:88
+#: frappe/public/js/frappe/views/treeview.js:152
msgid "{0} Tree"
-msgstr "{0} Boom"
-
-#: public/js/frappe/list/base_list.js:206
-msgid "{0} View"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:126
-#: public/js/frappe/form/sidebar/form_sidebar.js:86
+#: frappe/public/js/frappe/form/footer/form_timeline.js:128
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:73
msgid "{0} Web page views"
-msgstr "{0} paginaweergaven"
+msgstr ""
-#: public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:91
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+msgid "{0} Workspace"
+msgstr ""
+
+#: frappe/public/js/frappe/form/link_selector.js:225
msgid "{0} added"
-msgstr "{0} toegevoegd"
+msgstr ""
-#: public/js/frappe/form/controls/data.js:203
+#: frappe/public/js/frappe/form/controls/data.js:204
msgid "{0} already exists. Select another name"
-msgstr "{0} bestaat al. Selecteer een andere naam"
+msgstr ""
-#: email/doctype/email_unsubscribe/email_unsubscribe.py:37
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:36
msgid "{0} already unsubscribed"
-msgstr "{0} al afgemeld"
+msgstr ""
-#: email/doctype/email_unsubscribe/email_unsubscribe.py:50
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49
msgid "{0} already unsubscribed for {1} {2}"
-msgstr "{0} al afgemeld voor {1} {2}"
+msgstr ""
-#: utils/data.py:1715
+#: frappe/utils/data.py:1740
msgid "{0} and {1}"
-msgstr "{0} en {1}"
-
-#: public/js/frappe/utils/energy_point_utils.js:38
-msgid "{0} appreciated on {1}"
-msgstr "{0} gewaardeerd op {1}"
-
-#: social/doctype/energy_point_log/energy_point_log.py:126
-#: social/doctype/energy_point_log/energy_point_log.py:163
-msgid "{0} appreciated your work on {1} with {2} point"
-msgstr "{0} waardeerde uw werk op {1} met {2} punt"
-
-#: social/doctype/energy_point_log/energy_point_log.py:128
-#: social/doctype/energy_point_log/energy_point_log.py:165
-msgid "{0} appreciated your work on {1} with {2} points"
-msgstr "{0} waardeerde uw werk op {1} met {2} punten"
-
-#: public/js/frappe/utils/energy_point_utils.js:53
-msgid "{0} appreciated {1}"
-msgstr "{0} gewaardeerd {1}"
-
-#: public/js/frappe/form/sidebar/review.js:148
-msgid "{0} appreciation point for {1}"
msgstr ""
-#: public/js/frappe/form/sidebar/review.js:150
-msgid "{0} appreciation points for {1}"
-msgstr ""
-
-#: public/js/frappe/form/sidebar/form_sidebar_users.js:72
+#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:72
msgid "{0} are currently {1}"
-msgstr "{0} zijn momenteel {1}"
+msgstr ""
-#: printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:89
msgid "{0} are required"
-msgstr "{0} zijn verplicht"
+msgstr ""
-#: desk/form/assign_to.py:275
+#: frappe/desk/form/assign_to.py:286
msgid "{0} assigned a new task {1} {2} to you"
-msgstr "{0} heeft een nieuwe taak {1} {2} aan u toegewezen"
+msgstr ""
-#: desk/doctype/todo/todo.py:48
+#: frappe/desk/doctype/todo/todo.py:48
msgid "{0} assigned {1}: {2}"
-msgstr "{0} heeft {1} toegewezen: {2}"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:414
+#: frappe/public/js/frappe/form/footer/form_timeline.js:415
msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:77
+#: frappe/core/doctype/system_settings/system_settings.py:149
+msgid "{0} can not be more than {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:77
msgid "{0} cancelled this document"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:68
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:68
msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: public/js/form_builder/store.js:185
+#: frappe/model/document.py:547
+msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
+msgstr ""
+
+#: frappe/public/js/form_builder/store.js:190
msgid "{0} cannot be hidden and mandatory without any default value"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:124
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128
msgid "{0} changed the value of {1}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:115
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:119
msgid "{0} changed the value of {1} {2}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:186
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:194
msgid "{0} changed the values for {1}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:177
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:185
msgid "{0} changed the values for {1} {2}"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:443
+#: frappe/public/js/frappe/form/footer/form_timeline.js:444
msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr ""
-#: website/doctype/blog_post/blog_post.py:380
+#: frappe/website/doctype/blog_post/blog_post.py:382
msgid "{0} comments"
-msgstr "{0} opmerkingen"
+msgstr ""
-#: public/js/frappe/views/interaction.js:261
+#: frappe/core/doctype/doctype/doctype.py:1605
+msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
+msgstr ""
+
+#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
-msgstr "{0} is succesvol aangemaakt"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:139
-#: public/js/frappe/form/sidebar/form_sidebar.js:107
+#: frappe/public/js/frappe/form/footer/form_timeline.js:141
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:95
msgid "{0} created this"
msgstr ""
-#: public/js/frappe/form/sidebar/review.js:154
-msgid "{0} criticism point for {1}"
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250
+msgctxt "Form timeline"
+msgid "{0} created this document {1}"
msgstr ""
-#: public/js/frappe/form/sidebar/review.js:156
-msgid "{0} criticism points for {1}"
-msgstr ""
-
-#: public/js/frappe/utils/energy_point_utils.js:41
-msgid "{0} criticized on {1}"
-msgstr "{0} bekritiseerd op {1}"
-
-#: social/doctype/energy_point_log/energy_point_log.py:132
-#: social/doctype/energy_point_log/energy_point_log.py:170
-msgid "{0} criticized your work on {1} with {2} point"
-msgstr "{0} bekritiseerde uw werk op {1} met {2} punt"
-
-#: social/doctype/energy_point_log/energy_point_log.py:134
-#: social/doctype/energy_point_log/energy_point_log.py:172
-msgid "{0} criticized your work on {1} with {2} points"
-msgstr "{0} bekritiseerde uw werk op {1} met {2} punten"
-
-#: public/js/frappe/utils/energy_point_utils.js:56
-msgid "{0} criticized {1}"
-msgstr "{0} bekritiseerd {1}"
-
-#: public/js/frappe/utils/pretty_date.js:33
+#: frappe/public/js/frappe/utils/pretty_date.js:33
msgid "{0} d"
-msgstr "{0} d"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:60
+#: frappe/public/js/frappe/utils/pretty_date.js:60
msgid "{0} days ago"
-msgstr "{0} dagen geleden"
+msgstr ""
-#: website/doctype/website_settings/website_settings.py:96
-#: website/doctype/website_settings/website_settings.py:116
+#: frappe/website/doctype/website_settings/website_settings.py:96
+#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
-msgstr "{0} bestaat niet in rij {1}"
+msgstr ""
-#: database/mariadb/schema.py:131 database/postgres/schema.py:184
+#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:184
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
-msgstr "{0} veld kan niet worden ingesteld als uniek {1}, omdat er niet uniek bestaande waarden"
+msgstr ""
-#: core/doctype/data_import/importer.py:1017
+#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:97
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101
msgid "{0} from {1} to {2}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:157
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:165
msgid "{0} from {1} to {2} in row #{3}"
msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:120
-msgid "{0} gained {1} point for {2} {3}"
-msgstr "{0} behaalde {1} punt voor {2} {3}"
-
-#: templates/emails/energy_points_summary.html:8
-msgid "{0} gained {1} points"
-msgstr ""
-
-#: social/doctype/energy_point_log/energy_point_log.py:122
-msgid "{0} gained {1} points for {2} {3}"
-msgstr "{0} behaalde {1} punten voor {2} {3}"
-
-#: templates/emails/energy_points_summary.html:23
-msgid "{0} gave {1} points"
-msgstr ""
-
-#: public/js/frappe/utils/pretty_date.js:29
+#: frappe/public/js/frappe/utils/pretty_date.js:29
msgid "{0} h"
-msgstr "{0} u"
+msgstr ""
-#: core/doctype/user_permission/user_permission.py:76
+#: frappe/core/doctype/user_permission/user_permission.py:77
msgid "{0} has already assigned default value for {1}."
-msgstr "{0} heeft al een standaardwaarde toegewezen voor {1}."
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:382
+#: frappe/email/doctype/newsletter/newsletter.py:380
msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} is succesvol toegevoegd aan de e-mail Group."
+msgstr ""
-#: email/queue.py:127
+#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
-msgstr "{0} heeft het gesprek verlaten in {1} {2}"
+msgstr ""
-#: __init__.py:2373
-msgid "{0} has no versions tracked."
-msgstr "{0} heeft geen versies bijgehouden."
-
-#: public/js/frappe/utils/pretty_date.js:54
+#: frappe/public/js/frappe/utils/pretty_date.js:54
msgid "{0} hours ago"
-msgstr "{0} uur geleden"
+msgstr ""
-#: website/doctype/web_form/templates/web_form.html:145
+#: frappe/website/doctype/web_form/templates/web_form.html:148
msgid "{0} if you are not redirected within {1} seconds"
msgstr ""
-#: website/doctype/website_settings/website_settings.py:102
-#: website/doctype/website_settings/website_settings.py:122
+#: frappe/website/doctype/website_settings/website_settings.py:102
+#: frappe/website/doctype/website_settings/website_settings.py:122
msgid "{0} in row {1} cannot have both URL and child items"
-msgstr "{0} in rij {1} kan niet zowel URL en onderliggende items bevatten"
+msgstr ""
-#: core/doctype/doctype/doctype.py:916
+#: frappe/core/doctype/doctype/doctype.py:934
msgid "{0} is a mandatory field"
-msgstr "{0} is een verplicht veld"
+msgstr ""
-#: core/doctype/file/file.py:503
+#: frappe/core/doctype/file/file.py:544
msgid "{0} is a not a valid zip file"
msgstr ""
-#: core/doctype/doctype/doctype.py:1559
+#: frappe/core/doctype/doctype/doctype.py:1618
msgid "{0} is an invalid Data field."
-msgstr "{0} is een ongeldig gegevensveld."
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:147
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154
msgid "{0} is an invalid email address in 'Recipients'"
-msgstr "{0} is een ongeldig e-mailadres in 'Ontvangers'"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1394
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is between {1} and {2}"
msgstr ""
-#: public/js/frappe/form/sidebar/form_sidebar_users.js:41
-#: public/js/frappe/form/sidebar/form_sidebar_users.js:69
+#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:41
+#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:69
msgid "{0} is currently {1}"
-msgstr "{0} is momenteel {1}"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1363
+#: frappe/public/js/frappe/views/reports/report_view.js:1431
msgid "{0} is equal to {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1383
+#: frappe/public/js/frappe/views/reports/report_view.js:1451
msgid "{0} is greater than or equal to {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1373
+#: frappe/public/js/frappe/views/reports/report_view.js:1441
msgid "{0} is greater than {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1456
msgid "{0} is less than or equal to {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1446
msgid "{0} is less than {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1413
+#: frappe/public/js/frappe/views/reports/report_view.js:1481
msgid "{0} is like {1}"
msgstr ""
-#: email/doctype/email_account/email_account.py:169
+#: frappe/email/doctype/email_account/email_account.py:193
msgid "{0} is mandatory"
-msgstr "{0} is verplicht"
+msgstr ""
-#: core/doctype/document_naming_rule/document_naming_rule.py:49
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
-#: www/printview.py:350
+#: frappe/www/printview.py:384
msgid "{0} is not a raw printing format."
-msgstr "{0} is geen raw-afdrukindeling."
+msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:81
+#: frappe/public/js/frappe/views/calendar/calendar.js:82
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr ""
-#: public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:64
+msgid "{0} is not a valid Cron expression."
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
msgid "{0} is not a valid DocType for Dynamic Link"
-msgstr "{0} is geen geldig DocType voor Dynamic Link"
+msgstr ""
-#: email/doctype/email_group/email_group.py:130 utils/__init__.py:189
+#: frappe/email/doctype/email_group/email_group.py:131
+#: frappe/utils/__init__.py:202
msgid "{0} is not a valid Email Address"
-msgstr "{0} is geen geldig e-mailadres"
+msgstr ""
-#: utils/__init__.py:157
+#: frappe/geo/doctype/country/country.py:30
+msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
+msgstr ""
+
+#: frappe/utils/__init__.py:170
msgid "{0} is not a valid Name"
-msgstr "{0} is geen geldige naam"
+msgstr ""
-#: utils/__init__.py:136
+#: frappe/utils/__init__.py:149
msgid "{0} is not a valid Phone Number"
-msgstr "{0} is geen geldig telefoonnummer"
+msgstr ""
-#: model/workflow.py:186
+#: frappe/model/workflow.py:189
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
-msgstr "{0} is geen geldige workflowstatus. Werk uw Workflow bij en probeer het opnieuw."
+msgstr ""
-#: permissions.py:795
+#: frappe/permissions.py:787
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: permissions.py:815
+#: frappe/permissions.py:807
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.py:109
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
msgid "{0} is not a valid report format. Report format should one of the following {1}"
-msgstr "{0} is geen geldige rapportindeling. Rapportindeling moet een van de volgende {1} zijn"
+msgstr ""
-#: core/doctype/file/file.py:483
+#: frappe/core/doctype/file/file.py:524
msgid "{0} is not a zip file"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1368
+#: frappe/public/js/frappe/views/reports/report_view.js:1436
msgid "{0} is not equal to {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1415
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not like {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1409
+#: frappe/public/js/frappe/views/reports/report_view.js:1477
msgid "{0} is not one of {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1419
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is not set"
msgstr ""
-#: printing/doctype/print_format/print_format.py:166
+#: frappe/printing/doctype/print_format/print_format.py:165
msgid "{0} is now default print format for {1} doctype"
-msgstr "{0} is nu standaard afdrukformaat voor {1} doctype"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1402
+#: frappe/public/js/frappe/views/reports/report_view.js:1470
msgid "{0} is one of {1}"
msgstr ""
-#: email/doctype/email_account/email_account.py:263 model/naming.py:201
-#: printing/doctype/print_format/print_format.py:93 utils/csvutils.py:131
+#: frappe/email/doctype/email_account/email_account.py:304
+#: frappe/model/naming.py:218
+#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/utils/csvutils.py:156
msgid "{0} is required"
-msgstr "{0} is verplicht"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1418
+#: frappe/public/js/frappe/views/reports/report_view.js:1486
msgid "{0} is set"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1397
+#: frappe/public/js/frappe/views/reports/report_view.js:1465
msgid "{0} is within {1}"
msgstr ""
-#: public/js/frappe/list/list_view.js:1556
+#: frappe/public/js/frappe/list/list_view.js:1694
msgid "{0} items selected"
-msgstr "{0} items geselecteerd"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:150
-#: public/js/frappe/form/sidebar/form_sidebar.js:96
+#: frappe/core/doctype/user/user.py:1378
+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:104
msgid "{0} last edited this"
msgstr ""
-#: core/doctype/activity_log/feed.py:13
+#: frappe/core/doctype/activity_log/feed.py:13
msgid "{0} logged in"
-msgstr "{0} ingelogd"
-
-#: core/doctype/activity_log/feed.py:19
-msgid "{0} logged out: {1}"
-msgstr "{0} afgemeld: {1}"
-
-#: public/js/frappe/utils/pretty_date.js:27
-msgid "{0} m"
-msgstr "{0} m"
-
-#: desk/notifications.py:373
-msgid "{0} mentioned you in a comment in {1} {2}"
-msgstr "{0} heeft je genoemd in een reactie in {1} {2}"
-
-#: public/js/frappe/utils/pretty_date.js:50
-msgid "{0} minutes ago"
-msgstr "{0} minuten geleden"
-
-#: public/js/frappe/utils/pretty_date.js:68
-msgid "{0} months ago"
-msgstr "{0} maanden geleden"
-
-#: model/document.py:1564
-msgid "{0} must be after {1}"
-msgstr "{0} moet na {1} zijn"
-
-#: utils/csvutils.py:136
-msgid "{0} must be one of {1}"
-msgstr "{0} moet een van {1} zijn"
-
-#: model/base_document.py:771
-msgid "{0} must be set first"
-msgstr "{0} moet eerst worden ingesteld"
-
-#: model/base_document.py:629
-msgid "{0} must be unique"
-msgstr "{0} moet uniek zijn"
-
-#: core/doctype/language/language.py:42
-msgid ""
-"{0} must begin and end with a letter and can only contain letters,\n"
-"\t\t\t\thyphen or underscore."
msgstr ""
-#: workflow/doctype/workflow/workflow.py:93
+#: 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:397
+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:1792
+msgid "{0} must be after {1}"
+msgstr ""
+
+#: frappe/model/document.py:1551
+msgid "{0} must be beginning with '{1}'"
+msgstr ""
+
+#: frappe/model/document.py:1553
+msgid "{0} must be equal to '{1}'"
+msgstr ""
+
+#: frappe/model/document.py:1549
+msgid "{0} must be none of {1}"
+msgstr ""
+
+#: frappe/model/document.py:1547 frappe/utils/csvutils.py:161
+msgid "{0} must be one of {1}"
+msgstr ""
+
+#: frappe/model/base_document.py:875
+msgid "{0} must be set first"
+msgstr ""
+
+#: frappe/model/base_document.py:732
+msgid "{0} must be unique"
+msgstr ""
+
+#: frappe/model/document.py:1555
+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:90
msgid "{0} not a valid State"
-msgstr "{0} geen geldig Status"
+msgstr ""
-#: model/rename_doc.py:388
+#: frappe/model/rename_doc.py:394
msgid "{0} not allowed to be renamed"
-msgstr "{0} mag niet worden hernoemd"
+msgstr ""
-#: desk/doctype/desktop_icon/desktop_icon.py:371
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:365
msgid "{0} not found"
-msgstr "{0} niet gevonden"
+msgstr ""
-#: core/doctype/report/report.py:416 public/js/frappe/list/list_view.js:956
+#: frappe/core/doctype/report/report.py:427
+#: frappe/public/js/frappe/list/list_view.js:1068
msgid "{0} of {1}"
-msgstr "{0} van {1}"
+msgstr ""
-#: public/js/frappe/list/list_view.js:958
+#: frappe/public/js/frappe/list/list_view.js:1070
msgid "{0} of {1} ({2} rows with children)"
-msgstr "{0} van {1} ({2} rijen met kinderen)"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:205
+#: frappe/email/doctype/newsletter/newsletter.js:205
msgid "{0} of {1} sent"
msgstr ""
-#: utils/data.py:1705
+#: frappe/utils/data.py:1555
+msgctxt "Money in words"
+msgid "{0} only."
+msgstr ""
+
+#: frappe/utils/data.py:1730
msgid "{0} or {1}"
-msgstr "{0} of {1}"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:177
+#: frappe/core/doctype/user_permission/user_permission_list.js:177
msgid "{0} record deleted"
-msgstr "{0} record verwijderd"
+msgstr ""
-#: public/js/frappe/logtypes.js:22
+#: frappe/public/js/frappe/logtypes.js:22
msgid "{0} records are not automatically deleted."
msgstr ""
-#: public/js/frappe/logtypes.js:29
+#: frappe/public/js/frappe/logtypes.js:29
msgid "{0} records are retained for {1} days."
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:179
+#: frappe/core/doctype/user_permission/user_permission_list.js:179
msgid "{0} records deleted"
-msgstr "{0} records verwijderd"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:229
msgid "{0} records will be exported"
-msgstr "{0} records worden geëxporteerd"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:419
+#: frappe/public/js/frappe/form/footer/form_timeline.js:420
msgctxt "Form timeline"
msgid "{0} removed attachment {1}"
msgstr ""
-#: desk/doctype/todo/todo.py:58
+#: frappe/desk/doctype/todo/todo.py:58
msgid "{0} removed their assignment."
msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:139
-#: social/doctype/energy_point_log/energy_point_log.py:178
-msgid "{0} reverted your point on {1}"
-msgstr "{0} heeft uw punt teruggezet op {1}"
+#: frappe/public/js/frappe/roles_editor.js:62
+msgid "{0} role does not have permission on any doctype"
+msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:141
-#: social/doctype/energy_point_log/energy_point_log.py:180
-msgid "{0} reverted your points on {1}"
-msgstr "{0} heeft uw punten teruggezet op {1}"
+#: frappe/model/document.py:1785
+msgid "{0} row #{1}: "
+msgstr ""
-#: public/js/frappe/utils/energy_point_utils.js:44
-#: public/js/frappe/utils/energy_point_utils.js:59
-msgid "{0} reverted {1}"
-msgstr "{0} keerde terug {1}"
-
-#: desk/query_report.py:583
+#: frappe/desk/query_report.py:612
msgid "{0} saved successfully"
-msgstr "{0} succesvol opgeslagen"
+msgstr ""
-#: desk/doctype/todo/todo.py:44
+#: frappe/desk/doctype/todo/todo.py:44
msgid "{0} self assigned this task: {1}"
-msgstr "{0} heeft deze taak zelf toegewezen: {1}"
+msgstr ""
-#: share.py:238
+#: frappe/share.py:233
msgid "{0} shared a document {1} {2} with you"
-msgstr "{0} heeft een document {1} {2} met u gedeeld"
+msgstr ""
-#: core/doctype/docshare/docshare.py:79
+#: frappe/core/doctype/docshare/docshare.py:77
msgid "{0} shared this document with everyone"
-msgstr "{0} deelde dit document met iedereen"
+msgstr ""
-#: core/doctype/docshare/docshare.py:82
+#: frappe/core/doctype/docshare/docshare.py:80
msgid "{0} shared this document with {1}"
-msgstr "{0} deelde dit document met {1}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:320
+#: frappe/core/doctype/doctype/doctype.py:316
msgid "{0} should be indexed because it's referred in dashboard connections"
msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:136
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141
msgid "{0} should not be same as {1}"
-msgstr "{0} mag niet hetzelfde zijn als {1}"
+msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:51
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:51
msgid "{0} submitted this document"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:42
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:42
msgctxt "Form timeline"
msgid "{0} submitted this document {1}"
msgstr ""
-#: email/doctype/email_group/email_group.py:61
-#: email/doctype/email_group/email_group.py:132
+#: frappe/email/doctype/email_group/email_group.py:62
+#: frappe/email/doctype/email_group/email_group.py:133
msgid "{0} subscribers added"
-msgstr "{0} abonnees toegevoegd"
+msgstr ""
-#: email/queue.py:70
+#: frappe/email/queue.py:68
msgid "{0} to stop receiving emails of this type"
-msgstr "{0} om te stoppen met het ontvangen van e-mails van dit type"
+msgstr ""
-#: public/js/frappe/form/controls/date_range.js:46
-#: public/js/frappe/form/controls/date_range.js:62
-#: public/js/frappe/form/formatters.js:218
+#: frappe/public/js/frappe/form/controls/date_range.js:48
+#: frappe/public/js/frappe/form/controls/date_range.js:64
+#: frappe/public/js/frappe/form/formatters.js:234
msgid "{0} to {1}"
-msgstr "{0} tot {1}"
+msgstr ""
-#: core/doctype/docshare/docshare.py:91
+#: frappe/core/doctype/docshare/docshare.py:89
msgid "{0} un-shared this document with {1}"
-msgstr "{0} maakte de deling van dit document met {1} ongedaan"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:253
msgid "{0} updated"
-msgstr "{0} bijgewerkt"
+msgstr ""
-#: public/js/frappe/form/controls/multiselect_list.js:162
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:198
msgid "{0} values selected"
-msgstr "{0} waarden geselecteerd"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:183
+#: frappe/public/js/frappe/form/footer/form_timeline.js:184
msgid "{0} viewed this"
msgstr ""
-#: public/js/frappe/utils/pretty_date.js:35
+#: frappe/public/js/frappe/utils/pretty_date.js:35
msgid "{0} w"
-msgstr "{0} w"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:64
+#: frappe/public/js/frappe/utils/pretty_date.js:64
msgid "{0} weeks ago"
-msgstr "{0} weken geleden"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:39
+#: frappe/public/js/frappe/utils/pretty_date.js:39
msgid "{0} y"
-msgstr "{0} j"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:72
+#: frappe/public/js/frappe/utils/pretty_date.js:72
msgid "{0} years ago"
-msgstr "{0} jaar geleden"
+msgstr ""
-#: public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:219
msgid "{0} {1} added"
-msgstr "{0} {1} toegevoegd"
+msgstr ""
-#: public/js/frappe/utils/dashboard_utils.js:270
+#: frappe/public/js/frappe/utils/dashboard_utils.js:270
msgid "{0} {1} added to Dashboard {2}"
-msgstr "{0} {1} toegevoegd aan Dashboard {2}"
+msgstr ""
-#: model/base_document.py:562 model/rename_doc.py:112
+#: frappe/model/base_document.py:665 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
-msgstr "{0} {1} bestaat al"
+msgstr ""
-#: model/base_document.py:873
+#: frappe/model/base_document.py:982
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
-msgstr "{0} {1} kan niet \"{2}\" worden. Het moet één zijn van \"{3}\""
+msgstr ""
-#: utils/nestedset.py:343
+#: frappe/utils/nestedset.py:340
msgid "{0} {1} cannot be a leaf node as it has children"
-msgstr "{0} {1} kan geen leaf node zijn, want hij is vertakt"
+msgstr ""
-#: model/rename_doc.py:377
+#: frappe/model/rename_doc.py:376
msgid "{0} {1} does not exist, select a new target to merge"
-msgstr "{0} {1} bestaat niet, kies een nieuw doel om samen te voegen"
+msgstr ""
-#: public/js/frappe/form/form.js:970
+#: frappe/public/js/frappe/form/form.js:951
msgid "{0} {1} is linked with the following submitted documents: {2}"
-msgstr "{0} {1} is gekoppeld aan de volgende ingediende documenten: {2}"
+msgstr ""
-#: model/document.py:170 permissions.py:566
+#: frappe/model/document.py:260 frappe/permissions.py:558
msgid "{0} {1} not found"
-msgstr "{0} {1} niet gevonden"
+msgstr ""
-#: model/delete_doc.py:231
+#: frappe/model/delete_doc.py:247
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
-msgstr "{0} {1}: Ingediend record kan niet worden verwijderd. U moet het eerst {2} annuleren {3}."
+msgstr ""
-#: model/base_document.py:988
+#: frappe/model/base_document.py:1110
msgid "{0}, Row {1}"
-msgstr "{0}, Rij {1}"
+msgstr ""
-#: model/base_document.py:993
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+msgid "{0}/{1} complete | Please leave this tab open until completion."
+msgstr ""
+
+#: frappe/model/base_document.py:1115
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
-msgstr "{0}: {1} '({3}) zal afgekapt krijgen, als maximum toegestane tekens is {2}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1741
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "{0}: Cannot set Amend without Cancel"
-msgstr "{0} : Kan niet Wijzigen zonder te Annuleren"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1759
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr "{0}: Kan wijziging niet doorvoeren indien niet indienbaar"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1757
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr "{0} : Kan niet op \"In te dienen\" gezet worden indien niet indienbaar"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1736
+#: frappe/core/doctype/doctype/doctype.py:1795
msgid "{0}: Cannot set Cancel without Submit"
-msgstr "{0} : Kan niet Annuleren zonder in te dienen"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1743
+#: frappe/core/doctype/doctype/doctype.py:1802
msgid "{0}: Cannot set Import without Create"
-msgstr "{0} : Kan niet importeren zonder aan te maken"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1739
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr "{0} : Kan niet Indienen, Annuleren, Wijzigen zonder te Schrijven"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1763
+#: frappe/core/doctype/doctype/doctype.py:1822
msgid "{0}: Cannot set import as {1} is not importable"
-msgstr "{0} : Kan niet Importeren omdat {1} niet importeerbaar is"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:393
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
-msgstr "{0}: kan geen nieuw terugkerend document bijvoegen. Schakel {1} in Afdrukinstellingen in om het bijvoegen van een document in de e-mail voor automatisch herhalen in te schakelen"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1377
+#: frappe/core/doctype/doctype/doctype.py:1426
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
-msgstr "{0}: Veld '{1}' kan niet als Uniek worden ingesteld omdat het niet-unieke waarden heeft"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1285
+#: frappe/core/doctype/doctype/doctype.py:1334
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
-msgstr "{0}: Veld {1} in rij {2} kan niet standaard worden verborgen en verplicht"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1244
+#: frappe/core/doctype/doctype/doctype.py:1293
msgid "{0}: Field {1} of type {2} cannot be mandatory"
-msgstr "{0}: Veld {1} van type {2} kan niet verplicht zijn"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1232
+#: frappe/core/doctype/doctype/doctype.py:1281
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
-msgstr "{0}: Veldnaam {1} verschijnt meerdere keren in rijen {2}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1362
+#: frappe/core/doctype/doctype/doctype.py:1413
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
-msgstr "{0}: Veldtype {1} voor {2} kan niet uniek zijn"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1698
+#: frappe/core/doctype/doctype/doctype.py:1755
msgid "{0}: No basic permissions set"
-msgstr "{0} : Geen basis machtigingen ingesteld"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1712
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
-msgstr "{0}: Slechts één regel toegestaan met dezelfde rol, niveau en {1}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1266
+#: frappe/core/doctype/doctype/doctype.py:1315
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
-msgstr "{0}: Opties moeten een geldig DocType zijn voor veld {1} in rij {2}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1255
+#: frappe/core/doctype/doctype/doctype.py:1304
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
-msgstr "{0}: opties vereist voor het veld Link of Tabeltype {1} in rij {2}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1273
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
-msgstr "{0}: Opties {1} moeten hetzelfde zijn als doctype naam {2} voor het veld {3}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1727
+#: frappe/public/js/frappe/form/workflow.js:45
+msgid "{0}: Other permission rules may also apply"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1784
msgid "{0}: Permission at level 0 must be set before higher levels are set"
-msgstr "{0}: Toestemming op niveau 0 moet worden ingesteld voordat hogere niveaus worden ingesteld"
+msgstr ""
-#: public/js/frappe/form/controls/data.js:50
+#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr ""
-#: core/doctype/doctype/doctype.py:1219
+#: frappe/core/doctype/doctype/doctype.py:1268
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr ""
-#: contacts/doctype/address/address.js:35
-#: contacts/doctype/contact/contact.js:78
-#: public/js/frappe/views/workspace/workspace.js:169
+#: frappe/contacts/doctype/address/address.js:35
+#: frappe/contacts/doctype/contact/contact.js:88
msgid "{0}: {1}"
msgstr ""
-#: workflow/doctype/workflow_action/workflow_action.py:172
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:172
msgid "{0}: {1} is set to state {2}"
-msgstr "{0}: {1} is ingesteld op staat {2}"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:1279
msgid "{0}: {1} vs {2}"
-msgstr "{0}: {1} versus {2}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1385
+#: frappe/core/doctype/doctype/doctype.py:1434
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
-msgstr "{0}: Veldtype {1} voor {2} kan niet worden geïndexeerd"
+msgstr ""
-#: public/js/frappe/utils/datatable.js:12
+#: frappe/public/js/frappe/form/quick_entry.js:195
+msgid "{1} saved"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/datatable.js:12
msgid "{count} cell copied"
msgstr ""
-#: public/js/frappe/utils/datatable.js:13
+#: frappe/public/js/frappe/utils/datatable.js:13
msgid "{count} cells copied"
msgstr ""
-#: public/js/frappe/utils/datatable.js:16
+#: frappe/public/js/frappe/utils/datatable.js:16
msgid "{count} row selected"
msgstr ""
-#: public/js/frappe/utils/datatable.js:17
+#: frappe/public/js/frappe/utils/datatable.js:17
msgid "{count} rows selected"
msgstr ""
-#: core/doctype/doctype/doctype.py:1439
+#: frappe/core/doctype/doctype/doctype.py:1488
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
-msgstr "{{{0}}} is een ongeldig veldnaampatroon. Gebruik {{field_name}}."
+msgstr ""
-#: public/js/frappe/form/form.js:553
+#: frappe/public/js/frappe/form/form.js:521
msgid "{} Complete"
-msgstr "{} Compleet"
+msgstr ""
-#: utils/data.py:2418
+#: frappe/utils/data.py:2488
msgid "{} Invalid python code on line {}"
msgstr ""
-#: utils/data.py:2427
+#: frappe/utils/data.py:2497
msgid "{} Possibly invalid python code.
{}"
msgstr ""
-#: core/doctype/log_settings/log_settings.py:54
+#. Count format of shortcut in the Website Workspace
+#: frappe/website/workspace/website/website.json
+msgid "{} Published"
+msgstr ""
+
+#: frappe/core/doctype/log_settings/log_settings.py:54
msgid "{} does not support automated log clearing."
msgstr ""
-#: core/doctype/audit_trail/audit_trail.py:40
+#: frappe/core/doctype/audit_trail/audit_trail.py:41
msgid "{} field cannot be empty."
msgstr ""
-#: email/doctype/email_account/email_account.py:193
-#: email/doctype/email_account/email_account.py:200
+#: frappe/email/doctype/email_account/email_account.py:223
+#: frappe/email/doctype/email_account/email_account.py:231
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: utils/data.py:123
+#: frappe/utils/data.py:135
msgid "{} is not a valid date string."
-msgstr "{} is geen geldige datumtekenreeks."
+msgstr ""
-#: commands/utils.py:519
+#: frappe/commands/utils.py:562
msgid "{} not found in PATH! This is required to access the console."
msgstr ""
-#: database/db_manager.py:81
+#: frappe/database/db_manager.py:99
msgid "{} not found in PATH! This is required to restore the database."
msgstr ""
-#: utils/backups.py:441
+#: frappe/utils/backups.py:466
msgid "{} not found in PATH! This is required to take a backup."
msgstr ""
+#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:5
+#: frappe/public/js/frappe/file_uploader/WebLink.vue:4
+msgid "← Back to upload files"
+msgstr ""
+
diff --git a/frappe/locale/pl.po b/frappe/locale/pl.po
index ea3ed7c29c..ae6ea0aea8 100644
--- a/frappe/locale/pl.po
+++ b/frappe/locale/pl.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
"POT-Creation-Date: 2025-06-08 09:34+0000\n"
-"PO-Revision-Date: 2025-06-11 14:05\n"
+"PO-Revision-Date: 2025-06-16 15:29\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Polish\n"
"MIME-Version: 1.0\n"
@@ -780,7 +780,7 @@ msgstr ""
#. Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Access Control"
-msgstr ""
+msgstr "Ustawienia dostępu"
#. Label of the access_key_id (Data) field in DocType 'S3 Backup Settings'
#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
@@ -1902,7 +1902,7 @@ msgstr ""
#. Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Allowed embedding domains"
-msgstr ""
+msgstr "Dozwolone domeny osadzania"
#: frappe/public/js/frappe/form/form.js:1256
msgid "Allowing DocType, DocType. Be careful!"
@@ -2001,7 +2001,7 @@ msgstr ""
#: frappe/model/document.py:550
msgid "Amendment Not Allowed"
-msgstr ""
+msgstr "Zmiana niedozwolona"
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:207
msgid "Amendment naming rules updated."
@@ -3059,7 +3059,7 @@ msgstr ""
#: frappe/public/js/frappe/views/communication.js:85
msgctxt "Email Recipients"
msgid "BCC"
-msgstr ""
+msgstr "BCC"
#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31
#: frappe/public/js/frappe/widgets/onboarding_widget.js:181
diff --git a/frappe/locale/ru.po b/frappe/locale/ru.po
index 49c7da0664..859cf0cfdb 100644
--- a/frappe/locale/ru.po
+++ b/frappe/locale/ru.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
"POT-Creation-Date: 2025-06-08 09:34+0000\n"
-"PO-Revision-Date: 2025-06-11 14:05\n"
+"PO-Revision-Date: 2025-06-16 15:29\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Russian\n"
"MIME-Version: 1.0\n"
@@ -1889,7 +1889,7 @@ msgstr ""
#. Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Allowed embedding domains"
-msgstr ""
+msgstr "Допустимые области встраивания"
#: frappe/public/js/frappe/form/form.js:1256
msgid "Allowing DocType, DocType. Be careful!"
@@ -2863,7 +2863,7 @@ msgstr ""
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227
msgid "Auto repeat failed. Please enable auto repeat after fixing the issues."
-msgstr ""
+msgstr "Автоматическое повторение не удалось. Пожалуйста, включите автоповтор после устранения неполадок."
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -2911,7 +2911,7 @@ msgstr ""
#: frappe/public/js/frappe/list/list_view.js:128
msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings."
-msgstr ""
+msgstr "Автоматическое применение фильтра для последних данных. Это поведение можно отключить в настройках представления списка."
#. Label of the auto_account_deletion (Int) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -4732,7 +4732,7 @@ msgstr ""
#. Label of the client_script (Code) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Client script"
-msgstr ""
+msgstr "Клиентский скрипт"
#: frappe/core/doctype/communication/communication.js:39
#: frappe/desk/doctype/todo/todo.js:23
@@ -5070,7 +5070,7 @@ msgstr ""
#: frappe/integrations/frappe_providers/frappecloud_billing.py:32
msgid "Communication secret not set"
-msgstr ""
+msgstr "Секрет связи не установлен"
#. Name of a DocType
#: frappe/website/doctype/company_history/company_history.json
@@ -5193,7 +5193,7 @@ msgstr ""
#. Label of the condition_description (HTML) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Condition description"
-msgstr ""
+msgstr "Описание состояния"
#. Label of the conditions (Table) field in DocType 'Document Naming Rule'
#. Label of the conditions (Section Break) field in DocType 'Workflow
@@ -5250,7 +5250,7 @@ msgstr ""
#: frappe/integrations/oauth2.py:120
msgid "Confirm Access"
-msgstr ""
+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
@@ -7164,7 +7164,7 @@ msgstr ""
#. 'List View Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Automatic Recency Filters"
-msgstr ""
+msgstr "Отключить автоматические фильтры повторяемости"
#. Label of the disable_change_log_notification (Check) field in DocType
#. 'System Settings'
@@ -9743,7 +9743,7 @@ msgstr ""
#: frappe/integrations/frappe_providers/frappecloud_billing.py:59
msgid "Failed to get site info"
-msgstr ""
+msgstr "Не удалось получить информацию о сайте"
#: frappe/model/virtual_doctype.py:63
msgid "Failed to import virtual doctype {}, is controller file present?"
@@ -9763,7 +9763,7 @@ msgstr ""
#: frappe/integrations/frappe_providers/frappecloud_billing.py:94
msgid "Failed to request login to Frappe Cloud"
-msgstr ""
+msgstr "Не удалось запросить вход в Frappe Cloud"
#: frappe/email/doctype/email_queue/email_queue.py:297
msgid "Failed to send email with subject:"
@@ -9779,7 +9779,7 @@ msgstr ""
#: frappe/integrations/frappe_providers/frappecloud_billing.py:74
msgid "Failed while calling API {0}"
-msgstr ""
+msgstr "Неудача при вызове API {0}"
#. Label of the failing_scheduled_jobs (Table) field in DocType 'System Health
#. Report'
@@ -11443,7 +11443,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Grid Page Length"
-msgstr ""
+msgstr "Длина страницы сетки"
#: frappe/public/js/frappe/ui/keyboard.js:127
msgid "Grid Shortcuts"
@@ -12208,7 +12208,7 @@ msgstr ""
#. Description of the 'Anonymous responses' (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "If enabled, all responses on the web form will be submitted anonymously"
-msgstr ""
+msgstr "Если эта функция включена, все ответы в веб-форме будут отправляться анонимно"
#. Description of the 'Bypass restricted IP Address check If Two Factor Auth
#. Enabled' (Check) field in DocType 'System Settings'
@@ -13120,7 +13120,7 @@ msgstr ""
#: frappe/integrations/frappe_providers/frappecloud_billing.py:111
msgid "Invalid Code. Please try again."
-msgstr ""
+msgstr "Неверный код. Пожалуйста, попробуйте еще раз."
#: frappe/integrations/doctype/webhook/webhook.py:87
msgid "Invalid Condition: {}"
@@ -13247,7 +13247,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/field_group.js:137
msgid "Invalid Values"
-msgstr ""
+msgstr "Недопустимые значения"
#: frappe/integrations/doctype/webhook/webhook.py:116
msgid "Invalid Webhook Secret"
@@ -14729,7 +14729,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 "Сообщение о настройке списка"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542
msgid "Lists"
@@ -14947,7 +14947,7 @@ msgstr ""
#: frappe/www/login.html:116
msgid "Login with Frappe Cloud"
-msgstr ""
+msgstr "Вход в систему с помощью Frappe Cloud"
#: frappe/www/login.html:49
msgid "Login with LDAP"
@@ -15338,7 +15338,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 "Максимальный размер крепления"
#. Label of the max_auto_email_report_per_user (Int) field in DocType 'System
#. Settings'
@@ -15415,7 +15415,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63
msgid "Memory Usage in MB"
-msgstr ""
+msgstr "Использование памяти в МБ"
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
@@ -15578,17 +15578,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 "Мета-описание"
#. 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 "Мета-изображение"
#. Label of the meta_title (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Meta title"
-msgstr ""
+msgstr "Мета-заголовок"
#: frappe/website/doctype/web_page/web_page.js:110
msgid "Meta title for SEO"
@@ -18643,7 +18643,7 @@ 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 ""
+msgstr "Пиковое использование памяти"
#. Option for the 'Status' (Select) field in DocType 'Data Import'
#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
@@ -19283,7 +19283,7 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:434
msgid "Please setup default outgoing Email Account from Tools > Email Account"
-msgstr ""
+msgstr "Настройте учетную запись исходящей электронной почты по умолчанию в меню Инструменты > Учетная запись электронной почты"
#: frappe/public/js/frappe/model/model.js:823
msgid "Please specify"
@@ -19475,7 +19475,7 @@ msgstr ""
#. Name of a report
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json
msgid "Prepared Report Analytics"
-msgstr ""
+msgstr "Подготовленный отчет Аналитика"
#. Name of a role
#: frappe/core/doctype/prepared_report/prepared_report.json
@@ -22080,11 +22080,11 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57
msgid "Runtime in Minutes"
-msgstr ""
+msgstr "Время выполнения в минутах"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57
msgid "Runtime in Seconds"
-msgstr ""
+msgstr "Время выполнения в секундах"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
@@ -22137,7 +22137,7 @@ msgstr ""
#: frappe/core/doctype/sms_settings/sms_settings.py:110
msgid "SMS sent successfully"
-msgstr ""
+msgstr "SMS успешно отправлено"
#: frappe/templates/includes/login/login.js:369
msgid "SMS was not sent. Please contact Administrator."
@@ -22376,7 +22376,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 "Запланировано против"
#. Label of the scheduled_job_type (Link) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
@@ -23315,7 +23315,7 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Sent Folder Name"
-msgstr ""
+msgstr "Имя отправленной папки"
#. Label of the sent_on (Date) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
@@ -23612,7 +23612,7 @@ msgstr ""
#. Description of the 'Max attachment size' (Int) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Set size in MB"
-msgstr ""
+msgstr "Установленный размер в МБ"
#. Description of the 'Filters Configuration' (Code) field in DocType 'Number
#. Card'
@@ -23737,7 +23737,7 @@ msgstr ""
#: frappe/desk/page/setup_wizard/setup_wizard.js:236
msgid "Setup failed"
-msgstr ""
+msgstr "Сбой установки"
#. Label of the share (Check) field in DocType 'Custom DocPerm'
#. Label of the share (Check) field in DocType 'DocPerm'
@@ -24393,7 +24393,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 "Для некоторых почтовых ящиков требуется другое имя папки \"Отправленные\", например \"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."
@@ -24503,7 +24503,7 @@ msgstr ""
#. 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin."
-msgstr ""
+msgstr "Укажите домены или источники, которым разрешено встраивать эту форму. Укажите по одному домену в строке (например, https://example.com). Если домены не указаны, форма может быть встроена только в один источник."
#. Label of the splash_image (Attach Image) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -25006,7 +25006,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 "Ярлык кнопки отправки"
#. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
@@ -25109,12 +25109,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 "Сообщение об успехе"
#. Label of the success_title (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Success title"
-msgstr ""
+msgstr "Название успеха"
#: frappe/www/update-password.html:81
msgid "Success! You are good to go 👍"
@@ -25256,7 +25256,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 "Синхронизируйте события из Google как общедоступные"
#: frappe/custom/doctype/customize_form/customize_form.js:256
msgid "Sync on Migrate"
@@ -25845,7 +25845,7 @@ msgstr ""
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108
msgid "The Next Scheduled Date cannot be later than the End Date."
-msgstr ""
+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"
@@ -26935,7 +26935,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13
msgid "Top 10"
-msgstr ""
+msgstr "Топ 10"
#. Name of a DocType
#: frappe/website/doctype/top_bar_item/top_bar_item.json
@@ -27164,7 +27164,7 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:2188
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'
@@ -27772,7 +27772,7 @@ msgstr ""
#: 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"
@@ -28578,7 +28578,7 @@ msgstr ""
#: frappe/core/doctype/file/file.js:4
msgid "View File"
-msgstr ""
+msgstr "Просмотр файла"
#: frappe/public/js/frappe/ui/notifications/notifications.js:220
msgid "View Full Log"
@@ -29211,7 +29211,7 @@ msgstr ""
#. in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
-msgstr ""
+msgstr "Будет запускать запланированные задания только раз в день для неактивных сайтов. Установите значение 0, чтобы избежать автоматического отключения планировщика."
#: frappe/public/js/frappe/form/print_utils.js:15
msgid "With Letter head"
@@ -29580,7 +29580,7 @@ msgstr ""
#: frappe/integrations/frappe_providers/frappecloud_billing.py:28
msgid "You are not allowed to access this resource"
-msgstr ""
+msgstr "Вы не имеете права доступа к этому ресурсу"
#: frappe/permissions.py:409
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
@@ -29716,7 +29716,7 @@ msgstr ""
#: frappe/handler.py:182
msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents."
-msgstr ""
+msgstr "Вы можете загружать только документы в форматах JPG, PNG, PDF, TXT, CSV или Microsoft."
#: frappe/core/doctype/data_export/exporter.py:199
msgid "You can only upload upto 5000 records in one go. (may be less in some cases)"
@@ -29908,11 +29908,11 @@ msgstr ""
#: frappe/model/document.py:357
msgid "You need the '{0}' permission on {1} {2} to perform this action."
-msgstr ""
+msgstr "Для выполнения этого действия вам необходимо разрешение '{0}' на {1} {2} ."
#: frappe/desk/doctype/workspace/workspace.py:127
msgid "You need to be Workspace Manager to delete a public workspace."
-msgstr ""
+msgstr "Чтобы удалить публичную рабочую область, необходимо быть менеджером рабочей области."
#: frappe/desk/doctype/workspace/workspace.py:76
msgid "You need to be Workspace Manager to edit this document"
@@ -29964,11 +29964,11 @@ msgstr ""
#: frappe/model/rename_doc.py:391
msgid "You need write permission on {0} {1} to merge"
-msgstr ""
+msgstr "Для объединения необходимо разрешение на запись на {0} {1} ."
#: frappe/model/rename_doc.py:386
msgid "You need write permission on {0} {1} to rename"
-msgstr ""
+msgstr "Чтобы переименовать {0} {1} , вам нужно разрешение на запись."
#: frappe/client.py:449
msgid "You need {0} permission to fetch values from {1} {2}"
@@ -31014,7 +31014,7 @@ msgstr ""
#: frappe/model/document.py:547
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
-msgstr ""
+msgstr "{0} не может быть изменен, поскольку он не отменен. Пожалуйста, отмените документ перед созданием поправки."
#: frappe/public/js/form_builder/store.js:190
msgid "{0} cannot be hidden and mandatory without any default value"
@@ -31540,7 +31540,7 @@ msgstr ""
#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "{0}/{1} complete | Please leave this tab open until completion."
-msgstr ""
+msgstr "{0}/{1} complete | Пожалуйста, оставьте эту вкладку открытой до завершения."
#: frappe/model/base_document.py:1115
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
diff --git a/frappe/locale/sv.po b/frappe/locale/sv.po
index 3951fb7011..45dc07247d 100644
--- a/frappe/locale/sv.po
+++ b/frappe/locale/sv.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
"POT-Creation-Date: 2025-06-08 09:34+0000\n"
-"PO-Revision-Date: 2025-06-11 14:05\n"
+"PO-Revision-Date: 2025-06-12 14:56\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Swedish\n"
"MIME-Version: 1.0\n"
@@ -7077,12 +7077,12 @@ msgstr "Borttagen DocType"
#. Name of a DocType
#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted Document"
-msgstr "Papperskorg"
+msgstr "Raderad Dokument"
#. Label of a Link in the Tools Workspace
#: frappe/automation/workspace/tools/tools.json
msgid "Deleted Documents"
-msgstr "Papperskorg"
+msgstr "Raderade Dokument"
#. Label of the deleted_name (Data) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
@@ -13708,7 +13708,7 @@ msgstr "Är Installation Klar?"
#: frappe/core/doctype/doctype/doctype_list.js:64
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
-msgstr "Är Enskild"
+msgstr "Är Singel"
#. Label of the is_skipped (Check) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -19028,7 +19028,7 @@ msgstr "Tillåtna Roller"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Personal"
-msgstr "Personal"
+msgstr "Personlig"
#. Name of a DocType
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
@@ -20178,7 +20178,7 @@ msgstr "Publik"
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Public Files (MB)"
-msgstr "Publika Filer (MB)"
+msgstr "Allmänna Filer (MB)"
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
@@ -30772,7 +30772,7 @@ msgstr "på_godkänn"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_trash"
-msgstr "på_papperskorg"
+msgstr "on_trash"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
diff --git a/frappe/locale/vi.po b/frappe/locale/vi.po
index 75d9d5b154..135db3c172 100644
--- a/frappe/locale/vi.po
+++ b/frappe/locale/vi.po
@@ -1,365 +1,263 @@
-# Translations template for Frappe Framework.
-# Copyright (C) 2024 Frappe Technologies
-# This file is distributed under the same license as the Frappe Framework
-# project.
-# FIRST AUTHOR , 2024.
-#
msgid ""
msgstr ""
-"Project-Id-Version: Frappe Framework VERSION\n"
+"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2024-01-12 01:53+0053\n"
-"PO-Revision-Date: 2024-01-10 16:34+0553\n"
+"POT-Creation-Date: 2025-06-08 09:34+0000\n"
+"PO-Revision-Date: 2025-06-16 15:30\n"
"Last-Translator: developers@frappe.io\n"
-"Language-Team: developers@frappe.io\n"
+"Language-Team: Vietnamese\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.13.1\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Crowdin-Project: frappe\n"
+"X-Crowdin-Project-ID: 639578\n"
+"X-Crowdin-Language: vi\n"
+"X-Crowdin-File: /[frappe.frappe] develop/frappe/locale/main.pot\n"
+"X-Crowdin-File-ID: 52\n"
+"Language: vi_VN\n"
-#: templates/emails/download_data.html:9
+#: frappe/templates/emails/download_data.html:9
msgid " to your browser"
-msgstr "vào trình duyệt của bạn"
+msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "!="
msgstr ""
#. Description of the 'Org History Heading' (Data) field in DocType 'About Us
#. Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "\"Company History\""
-msgstr "\"Lịch sử công ty\""
+msgstr ""
-#: core/doctype/data_export/exporter.py:204
+#: frappe/core/doctype/data_export/exporter.py:202
msgid "\"Parent\" signifies the parent table in which this row must be added"
-msgstr "\"Gốc\" biểu thị một bảng gốc nơi mà dãy này phải được thêm vào"
+msgstr ""
#. Description of the 'Team Members Heading' (Data) field in DocType 'About Us
#. Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "\"Team Members\" or \"Management\""
-msgstr "\"Các Thành Viên Nhóm\" hoặc \"Ban Quản Lý\""
+msgstr ""
-#: public/js/frappe/form/form.js:1063
+#: frappe/public/js/frappe/form/form.js:1090
msgid "\"amended_from\" field must be present to do an amendment."
-msgstr "Trường "đã sửa đổi" phải có mặt để thực hiện sửa đổi."
+msgstr ""
-#: utils/csvutils.py:219
+#: frappe/utils/csvutils.py:246
msgid "\"{0}\" is not a valid Google Sheets URL"
-msgstr ""{0}" không phải là URL Google Trang tính hợp lệ"
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "# ###,##"
msgstr ""
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "# ###,##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "# ###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "# ###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#'###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#'###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#, ###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#, ###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#,###"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#,###"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#,###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#,###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#,###.###"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#,###.###"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#,##,###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#,##,###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#.###"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#.###"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#.###,##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#.###,##"
-msgstr ""
-
-#: public/js/frappe/ui/toolbar/tag_utils.js:21
-#: public/js/frappe/ui/toolbar/tag_utils.js:22
+#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:21
+#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:22
msgid "#{0}"
msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "<head> HTML"
-msgstr "HTML"
+#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:36
+msgid "${values.doctype_name} has been added to queue for optimization"
+msgstr ""
-#: public/js/form_builder/store.js:201
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
+msgid "© Frappe Technologies Pvt. Ltd. and contributors"
+msgstr ""
+
+#. Label of the head_html (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "<head> HTML"
+msgstr ""
+
+#: frappe/public/js/form_builder/store.js:206
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr ""
-#: core/doctype/doctype/doctype.py:1305
+#: frappe/core/doctype/doctype/doctype.py:1354
msgid "'In Global Search' not allowed for type {0} in row {1}"
-msgstr "\"Trong Tìm kiếm chung\" không được công nhận với loại {0} trong dãy {1}"
+msgstr ""
-#: public/js/form_builder/store.js:193
+#: frappe/public/js/form_builder/store.js:198
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr ""
-#: custom/doctype/customize_form/customize_form.py:360
+#: frappe/custom/doctype/customize_form/customize_form.py:362
msgid "'In List View' not allowed for type {0} in row {1}"
-msgstr "\"Trong danh sách hiển thị\" không được công nhận với loại {0} trong hàng {1}"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:149
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156
msgid "'Recipients' not specified"
-msgstr "'Người nhận' không được chỉ định"
+msgstr ""
-#: utils/__init__.py:240
+#: frappe/utils/__init__.py:255
msgid "'{0}' is not a valid URL"
msgstr ""
-#: core/doctype/doctype/doctype.py:1299
+#: frappe/core/doctype/doctype/doctype.py:1348
msgid "'{0}' not allowed for type {1} in row {2}"
-msgstr "'{0}' không được phép đối với loại {1} trong hàng {2}"
+msgstr ""
-#: model/rename_doc.py:689
+#: frappe/public/js/frappe/data_import/data_exporter.js:302
+msgid "(Mandatory)"
+msgstr ""
+
+#: frappe/model/rename_doc.py:704
msgid "** Failed: {0} to {1}: {2}"
-msgstr "** Thất bại: {0} đến {1}: {2}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_settings.js:135
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111
+msgid "+ Add / Remove Fields"
+msgstr ""
#. Description of the 'Doc Status' (Select) field in DocType 'Workflow Document
#. State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "0 - Draft; 1 - Submitted; 2 - Cancelled"
-msgstr "0 - Nháp; 1 - Đã duyệt; 2 - Đã hủy"
+msgstr ""
#. Description of the 'Priority' (Int) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/website/doctype/web_page/web_page.json
msgid "0 is highest"
-msgstr "0 là cao nhất"
+msgstr ""
-#: public/js/frappe/form/grid_row.js:786
+#: frappe/public/js/frappe/form/grid_row.js:876
msgid "1 = True & 0 = False"
msgstr ""
#. Description of the 'Fraction Units' (Int) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid ""
-"1 Currency = [?] Fraction\n"
+#: frappe/geo/doctype/currency/currency.json
+msgid "1 Currency = [?] Fraction\n"
"For e.g. 1 USD = 100 Cent"
msgstr ""
-#: public/js/frappe/form/reminders.js:19
+#: frappe/public/js/frappe/form/reminders.js:19
msgid "1 Day"
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:358
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:374
msgid "1 Google Calendar Event synced."
-msgstr "1 Sự kiện Lịch Google được đồng bộ hóa."
+msgstr ""
-#: website/doctype/blog_post/blog_post.py:378
+#: frappe/public/js/frappe/views/reports/query_report.js:951
+msgid "1 Report"
+msgstr ""
+
+#: frappe/website/doctype/blog_post/blog_post.py:380
msgid "1 comment"
-msgstr "1 bình luận"
+msgstr ""
-#: tests/test_utils.py:647
+#: frappe/tests/test_utils.py:710
msgid "1 day ago"
msgstr ""
-#: public/js/frappe/form/reminders.js:17
+#: frappe/public/js/frappe/form/reminders.js:17
msgid "1 hour"
msgstr ""
-#: public/js/frappe/utils/pretty_date.js:52 tests/test_utils.py:645
+#: frappe/public/js/frappe/utils/pretty_date.js:52
+#: frappe/tests/test_utils.py:708
msgid "1 hour ago"
-msgstr "1 giờ trước"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:48 tests/test_utils.py:643
+#: frappe/public/js/frappe/utils/pretty_date.js:48
+#: frappe/tests/test_utils.py:706
msgid "1 minute ago"
-msgstr "1 phút trước"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:66 tests/test_utils.py:651
+#: frappe/public/js/frappe/utils/pretty_date.js:66
+#: frappe/tests/test_utils.py:714
msgid "1 month ago"
-msgstr "1 tháng trước"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:223
+#: frappe/public/js/print_format_builder/PrintFormat.vue:3
+msgid "1 of 2"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:227
msgid "1 record will be exported"
-msgstr "1 bản ghi sẽ được xuất"
+msgstr ""
-#: tests/test_utils.py:642
+#: frappe/tests/test_utils.py:705
msgid "1 second ago"
msgstr ""
-#: public/js/frappe/utils/pretty_date.js:62 tests/test_utils.py:649
+#: frappe/public/js/frappe/utils/pretty_date.js:62
+#: frappe/tests/test_utils.py:712
msgid "1 week ago"
-msgstr "1 tuần trước"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:70 tests/test_utils.py:653
+#: frappe/public/js/frappe/utils/pretty_date.js:70
+#: frappe/tests/test_utils.py:716
msgid "1 year ago"
-msgstr "1 năm trước"
+msgstr ""
-#: tests/test_utils.py:646
+#: frappe/tests/test_utils.py:709
msgid "2 hours ago"
msgstr ""
-#: tests/test_utils.py:652
+#: frappe/tests/test_utils.py:715
msgid "2 months ago"
msgstr ""
-#: tests/test_utils.py:650
+#: frappe/tests/test_utils.py:713
msgid "2 weeks ago"
msgstr ""
-#: tests/test_utils.py:654
+#: frappe/tests/test_utils.py:717
msgid "2 years ago"
msgstr ""
-#: tests/test_utils.py:644
+#: frappe/tests/test_utils.py:707
msgid "3 minutes ago"
msgstr ""
-#: public/js/frappe/form/reminders.js:16
+#: frappe/public/js/frappe/form/reminders.js:16
msgid "30 minutes"
msgstr ""
-#: public/js/frappe/form/reminders.js:18
+#: frappe/public/js/frappe/form/reminders.js:18
msgid "4 hours"
msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:37
+#: frappe/public/js/frappe/data_import/data_exporter.js:37
msgid "5 Records"
-msgstr "5 hồ sơ"
+msgstr ""
-#: tests/test_utils.py:648
+#: frappe/tests/test_utils.py:711
msgid "5 days ago"
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.py:37
+#: frappe/desk/doctype/bulk_update/bulk_update.py:36
msgid "; not allowed in condition"
-msgstr "; không được cho phép trong điều kiện"
+msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "<"
msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "<="
msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:564
+#: frappe/public/js/frappe/widgets/widget_dialog.js:588
msgid "{0} is not a valid URL"
msgstr ""
#. Content of the 'Help' (HTML) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!"
msgstr ""
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
-msgid ""
-"\n"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "\n"
" Edit list of Series in the box. Rules:\n"
" \n"
" - Each Series Prefix on a new line.
\n"
@@ -380,11 +278,12 @@ msgid ""
" .MM. - Month \n"
" .DD. - Day of month \n"
" .WW. - Week of the year \n"
-" .FY. - Fiscal Year \n"
" - \n"
"
.{fieldname}. - fieldname on the document e.g.\n"
" branch\n"
" \n"
+" .FY. - Fiscal Year (requires ERPNext to be installed) \n"
+" .ABBR. - Company Abbreviation (requires ERPNext to be installed) \n"
"
\n"
" \n"
" \n"
@@ -400,38 +299,27 @@ msgid ""
msgstr ""
#. Content of the 'Custom HTML Help' (HTML) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid ""
-"Custom CSS Help
\n"
-"\n"
-"Notes:
\n"
-"\n"
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Custom CSS Help
\n\n"
+"Notes:
\n\n"
"\n"
"- All field groups (label + value) are set attributes
data-fieldtype and data-fieldname \n"
"- All values are given class
value \n"
"- All Section Breaks are given class
section-break \n"
"- All Column Breaks are given class
column-break \n"
-"
\n"
-"\n"
-"Examples
\n"
-"\n"
-"1. Left align integers
\n"
-"\n"
-"[data-fieldtype=\"Int\"] .value { text-align: left; }
\n"
-"\n"
-"1. Add border to sections except the last section
\n"
-"\n"
+"\n\n"
+"Examples
\n\n"
+"1. Left align integers
\n\n"
+"[data-fieldtype=\"Int\"] .value { text-align: left; }
\n\n"
+"1. Add border to sections except the last section
\n\n"
".section-break { padding: 30px 0px; border-bottom: 1px solid #eee; }\n"
".section-break:last-child { padding-bottom: 0px; border-bottom: 0px; }
\n"
msgstr ""
#. Content of the 'Print Format Help' (HTML) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.json
#, python-format
-msgctxt "Print Format"
-msgid ""
-"Print Format Help
\n"
+msgid "Print Format Help
\n"
"
\n"
"Introduction
\n"
"Print Formats are rendered on the server side using the Jinja Templating Language. All forms have access to the doc object which contains information about the document that is being formatted. You can also access common utilities via the frappe module.
\n"
@@ -500,11 +388,9 @@ msgid ""
msgstr ""
#. Description of the 'Template' (Code) field in DocType 'Address Template'
-#: contacts/doctype/address_template/address_template.json
+#: frappe/contacts/doctype/address_template/address_template.json
#, python-format
-msgctxt "Address Template"
-msgid ""
-"Default Template
\n"
+msgid "Default Template
\n"
"Uses Jinja Templating and all the fields of Address (including Custom Fields if any) will be available
\n"
"{{ address_line1 }}<br>\n"
"{% if address_line2 %}{{ address_line2 }}<br>{% endif -%}\n"
@@ -519,54 +405,36 @@ msgid ""
msgstr ""
#. Content of the 'Email Reply Help' (HTML) field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
-msgid ""
-"Email Reply Example
\n"
-"\n"
-"Order Overdue\n"
-"\n"
-"Transaction {{ name }} has exceeded Due Date. Please take necessary action.\n"
-"\n"
-"Details\n"
-"\n"
+#: frappe/email/doctype/email_template/email_template.json
+msgid "Email Reply Example
\n\n"
+"Order Overdue\n\n"
+"Transaction {{ name }} has exceeded Due Date. Please take necessary action.\n\n"
+"Details\n\n"
"- Customer: {{ customer }}\n"
"- Amount: {{ grand_total }}\n"
-"\n"
-"\n"
-"How to get fieldnames
\n"
-"\n"
-"The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)
\n"
-"\n"
-"Templating
\n"
-"\n"
+"\n\n"
+"How to get fieldnames
\n\n"
+"The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)
\n\n"
+"Templating
\n\n"
"Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
\n"
msgstr ""
#. Content of the 'html_5' (HTML) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/core/doctype/data_import/data_import.json
msgid "Or
"
msgstr ""
#. Content of the 'Message Examples' (HTML) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
+#: frappe/email/doctype/notification/notification.json
#, python-format
-msgctxt "Notification"
-msgid ""
-"Message Example
\n"
-"\n"
-"<h3>Order Overdue</h3>\n"
-"\n"
-"<p>Transaction {{ doc.name }} has exceeded Due Date. Please take necessary action.</p>\n"
-"\n"
+msgid "Message Example
\n\n"
+"<h3>Order Overdue</h3>\n\n"
+"<p>Transaction {{ doc.name }} has exceeded Due Date. Please take necessary action.</p>\n\n"
"<!-- show last comment -->\n"
"{% if comments %}\n"
"Last comment: {{ comments[-1].comment }} by {{ comments[-1].by }}\n"
-"{% endif %}\n"
-"\n"
-"<h4>Details</h4>\n"
-"\n"
+"{% endif %}\n\n"
+"<h4>Details</h4>\n\n"
"<ul>\n"
"<li>Customer: {{ doc.customer }}\n"
"<li>Amount: {{ doc.grand_total }}\n"
@@ -575,103 +443,68 @@ msgid ""
msgstr ""
#. Content of the 'html_condition' (HTML) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid ""
-"Condition Examples:
\n"
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Condition Examples:
\n"
"doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n"
"
"
msgstr ""
#. Content of the 'html_7' (HTML) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid ""
-"Condition Examples:
\n"
+#: frappe/email/doctype/notification/notification.json
+msgid "Condition Examples:
\n"
"doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n"
"
\n"
msgstr ""
-#. Content of the 'Condition Description' (HTML) field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid ""
-"Multiple webforms can be created for a single doctype. Add filters specific to this webform to display correct record after submission.
For Example:
\n"
+#. Content of the 'Condition description' (HTML) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Multiple webforms can be created for a single doctype. Add filters specific to this webform to display correct record after submission.
For Example:
\n"
"If you create a separate webform every year to capture feedback from employees add a \n"
" field named year in doctype and add a filter year = 2023
\n"
msgstr ""
#. Description of the 'Context Script' (Code) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid ""
-"Set context before rendering a template. Example:
\n"
+#: frappe/website/doctype/web_page/web_page.json
+msgid "
Set context before rendering a template. Example:
\n"
"
\n"
"context.project = frappe.get_doc(\"Project\", frappe.form_dict.name)\n"
"
"
msgstr ""
#. Content of the 'JS Message' (HTML) field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
-msgid ""
-"To interact with above HTML you will have to use `root_element` as a parent selector.
For example:
// here root_element is provided by default\n"
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+msgid "To interact with above HTML you will have to use `root_element` as a parent selector.
For example:
// here root_element is provided by default\n"
"let some_class_element = root_element.querySelector('.some-class');\n"
"some_class_element.textContent = \"New content\";\n"
"
"
msgstr ""
-#: twofactor.py:469
+#: frappe/twofactor.py:446
msgid "Your OTP secret on {0} has been reset. If you did not perform this reset and did not request it, please contact your System Administrator immediately.
"
msgstr ""
#. Description of the 'Cron Format' (Data) field in DocType 'Scheduled Job
#. Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid ""
-"* * * * *\n"
-"┬ ┬ ┬ ┬ ┬\n"
-"│ │ │ │ │\n"
-"│ │ │ │ └ day of week (0 - 6) (0 is Sunday)\n"
-"│ │ │ └───── month (1 - 12)\n"
-"│ │ └────────── day of month (1 - 31)\n"
-"│ └─────────────── hour (0 - 23)\n"
-"└──────────────────── minute (0 - 59)\n"
-"\n"
-"---\n"
-"\n"
-"* - Any value\n"
-"/ - Step values\n"
-"
\n"
-msgstr ""
-
#. Description of the 'Cron Format' (Data) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid ""
-"* * * * *\n"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+msgid "* * * * *\n"
"┬ ┬ ┬ ┬ ┬\n"
"│ │ │ │ │\n"
"│ │ │ │ └ day of week (0 - 6) (0 is Sunday)\n"
"│ │ │ └───── month (1 - 12)\n"
"│ │ └────────── day of month (1 - 31)\n"
"│ └─────────────── hour (0 - 23)\n"
-"└──────────────────── minute (0 - 59)\n"
-"\n"
-"---\n"
-"\n"
+"└──────────────────── minute (0 - 59)\n\n"
+"---\n\n"
"* - Any value\n"
"/ - Step values\n"
"
\n"
msgstr ""
#. Content of the 'Example' (HTML) field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
-msgid ""
-"doc.grand_total > 0
\n"
-"\n"
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "doc.grand_total > 0
\n\n"
"Conditions should be written in simple Python. Please use properties available in the form only.
\n"
"Allowed functions:\n"
"
\n"
@@ -686,27369 +519,23105 @@ msgid ""
"Example:
doc.creation > frappe.utils.add_to_date(frappe.utils.now_datetime(), days=-5, as_string=True, as_datetime=True)
"
msgstr ""
-#: custom/doctype/custom_field/custom_field.js:39
+#. Header text in the Welcome Workspace Workspace
+#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
+msgid "Hi,"
+msgstr ""
+
+#. Header text in the Integrations Workspace
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Reports & Masters"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "="
msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid ">"
msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid ">="
msgstr ""
-#. Description of the Onboarding Step 'Custom Document Types'
-#: custom/onboarding_step/custom_doctype/custom_doctype.json
-msgid "A DocType (Document Type) is used to insert forms in ERPNext. Forms such as Customer, Orders, and Invoices are Doctypes in the backend. You can also create new DocTypes to create new forms in ERPNext as per your business needs."
-msgstr ""
-
-#: core/doctype/doctype/doctype.py:1015
+#: frappe/core/doctype/doctype/doctype.py:1034
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr ""
-#: website/doctype/blog_post/blog_post.py:93
+#: frappe/website/doctype/blog_post/blog_post.py:92
msgid "A featured post must have a cover image"
-msgstr "Một bài đăng nổi bật phải có ảnh bìa"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.py:171
+#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr ""
-#: core/doctype/file/file.py:254
+#: frappe/core/doctype/file/file.py:257
msgid "A file with same name {} already exists"
msgstr ""
#. Description of the 'Scopes' (Text) field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "A list of resources which the Client App will have access to after the user allows it.
e.g. project"
-msgstr "Một danh sách các nguồn App Khách hàng sẽ có quyền truy cập đến sau khi người dùng cho phép nó.
ví dụ như dự án"
+msgstr ""
-#: templates/emails/new_user.html:5
+#: frappe/templates/emails/new_user.html:5
msgid "A new account has been created for you at {0}"
-msgstr "Một tài khoản mới đã được tạo ra cho bạn tại {0}"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:388
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400
msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}."
-msgstr "Một {0} {1} định kỳ đã được tạo cho bạn thông qua Tự động lặp lại {2}."
+msgstr ""
#. Description of the 'Symbol' (Data) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#: frappe/geo/doctype/currency/currency.json
msgid "A symbol for this currency. For e.g. $"
-msgstr "Biểu tượng đồng tiền này. Ví dụ như $"
+msgstr ""
-#: printing/doctype/print_format_field_template/print_format_field_template.py:48
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:49
msgid "A template already exists for field {0} of {1}"
msgstr ""
-#: utils/password_strength.py:173
+#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
-msgstr "Một từ đơn giản dễ đoán"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A0"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A1"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A2"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A3"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A4"
-msgstr "A4"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A5"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A6"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A7"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A8"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A9"
msgstr ""
#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "ALL"
-msgstr "TẤT CẢ"
+msgstr ""
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "API"
-msgstr "API"
+msgstr ""
-#. Label of a Section Break field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#. Label of the api_access (Section Break) field in DocType 'User'
+#. Label of the api_access_section (Section Break) field in DocType 'S3 Backup
+#. Settings'
+#: frappe/core/doctype/user/user.json
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "API Access"
-msgstr "Quyền truy cập API"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "API Access"
-msgstr "Quyền truy cập API"
-
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the api_endpoint (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "API Endpoint"
-msgstr "Điểm cuối API"
+msgstr ""
-#. Label of a Code field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the api_endpoint_args (Code) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "API Endpoint Args"
-msgstr "API đối tượng điểm cuối"
+msgstr ""
-#. Label of a Data field in DocType 'Google Settings'
-#. Label of a Section Break field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
+#. Label of the api_key (Data) field in DocType 'User'
+#. Label of the api_key (Data) field in DocType 'Email Account'
+#. Label of the api_key (Password) field in DocType 'Geolocation Settings'
+#. Label of the api_key (Data) field in DocType 'Google Settings'
+#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
+#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Key"
-msgstr "API Key"
+msgstr ""
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "API Key"
-msgstr "API Key"
+#. Description of the 'Authentication' (Section Break) field in DocType 'Push
+#. Notification Settings'
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "API Key and Secret to interact with the relay server. These will be auto-generated when the first push notification is sent from any of the apps installed on this site."
+msgstr ""
#. Description of the 'API Key' (Data) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "API Key cannot be regenerated"
msgstr ""
-#. Label of a Data field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the api_logging_section (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "API Logging"
+msgstr ""
+
+#. Label of the api_method (Data) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "API Method"
-msgstr "Phương pháp API"
+msgstr ""
-#. Label of a Password field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Name of a DocType
+#: frappe/core/doctype/api_request_log/api_request_log.json
+msgid "API Request Log"
+msgstr ""
+
+#. Label of the api_secret (Password) field in DocType 'User'
+#. Label of the api_secret (Password) field in DocType 'Email Account'
+#. Label of the api_secret (Password) field in DocType 'Push Notification
+#. Settings'
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
-msgstr "API Bí mật"
-
-#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "ASC"
-msgstr "ASC"
+msgstr ""
#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "ASC"
-msgstr "ASC"
+msgstr ""
#. Label of a standard help item
#. Type: Action
-#: hooks.py
+#: frappe/hooks.py
msgid "About"
msgstr ""
-#: www/about.html:11 www/about.html:18
+#: frappe/www/about.html:11 frappe/www/about.html:18
msgid "About Us"
msgstr ""
#. Name of a DocType
-#: website/doctype/about_us_settings/about_us_settings.json
-msgid "About Us Settings"
-msgstr "thiết lập mục 'về chúng tôi'"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "About Us Settings"
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+#: frappe/website/workspace/website/website.json
msgid "About Us Settings"
-msgstr "thiết lập mục 'về chúng tôi'"
+msgstr ""
#. Name of a DocType
-#: website/doctype/about_us_team_member/about_us_team_member.json
+#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
msgid "About Us Team Member"
-msgstr "Thành viên nhóm 'Về chúng tôi'"
+msgstr ""
-#: core/doctype/data_import/data_import.js:27
+#: frappe/core/doctype/data_import/data_import.js:27
msgid "About {0} minute remaining"
-msgstr "Khoảng {0} phút còn lại"
+msgstr ""
-#: core/doctype/data_import/data_import.js:28
+#: frappe/core/doctype/data_import/data_import.js:28
msgid "About {0} minutes remaining"
-msgstr "Khoảng {0} phút còn lại"
+msgstr ""
-#: core/doctype/data_import/data_import.js:25
+#: frappe/core/doctype/data_import/data_import.js:25
msgid "About {0} seconds remaining"
-msgstr "Khoảng {0} giây còn lại"
+msgstr ""
-#. Label of a Data field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#. 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 ""
+
+#. Label of the access_key_id (Data) field in DocType 'S3 Backup Settings'
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Access Key ID"
-msgstr "ID khóa truy cập"
+msgstr ""
-#. Label of a Password field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#. Label of the secret_access_key (Password) field in DocType 'S3 Backup
+#. Settings'
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Access Key Secret"
-msgstr "Truy cập bí mật khóa"
+msgstr ""
#. Name of a DocType
-#: core/doctype/access_log/access_log.json
-msgid "Access Log"
-msgstr "Nhật ký truy cập"
-
#. Label of a Link in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "Access Log"
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/workspace/users/users.json
msgid "Access Log"
-msgstr "Nhật ký truy cập"
+msgstr ""
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Access Log"
-msgstr "Nhật ký truy cập"
-
-#. Label of a Data field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
+#. Label of the access_token (Data) field in DocType 'OAuth Bearer Token'
+#. Label of the access_token (Password) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Access Token"
-msgstr "Mã truy cập"
+msgstr ""
-#. Label of a Password field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "Access Token"
-msgstr "Mã truy cập"
-
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the access_token_url (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Access Token URL"
-msgstr "Truy cập URL Token"
+msgstr ""
-#: auth.py:444
+#: frappe/auth.py:491
msgid "Access not allowed from this IP Address"
-msgstr "Truy cập không được phép từ Địa chỉ IP này"
+msgstr ""
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the account_section (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Account"
-msgstr "Tài khoản"
+msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the account_deletion_settings_section (Section Break) field in
+#. DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Account Deletion Settings"
msgstr ""
#. Name of a role
-#: automation/doctype/auto_repeat/auto_repeat.json
-#: contacts/doctype/contact/contact.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/geo/doctype/currency/currency.json
msgid "Accounts Manager"
-msgstr "Quản lý tài khoản"
+msgstr ""
#. Name of a role
-#: automation/doctype/auto_repeat/auto_repeat.json
-#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json
-#: geo/doctype/currency/currency.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/geo/doctype/currency/currency.json
msgid "Accounts User"
-msgstr "Người dùng kế toán"
-
-#: email/doctype/email_group/email_group.js:34
-#: email/doctype/email_group/email_group.js:63
-#: email/doctype/email_group/email_group.js:72
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:37
-#: public/js/frappe/form/sidebar/review.js:59
-#: workflow/page/workflow_builder/workflow_builder.js:37
-msgid "Action"
-msgstr "thao tác"
-
-#. Label of a Select field in DocType 'Amended Document Naming Settings'
-#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
-msgctxt "Amended Document Naming Settings"
-msgid "Action"
-msgstr "thao tác"
-
-#. Label of a Select field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
-msgid "Action"
-msgstr "thao tác"
+msgstr ""
+#. Label of the action (Select) field in DocType 'Amended Document Naming
+#. Settings'
#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
-#. Label of a Data field in DocType 'Navbar Item'
-#: core/doctype/navbar_item/navbar_item.json
-msgctxt "Navbar Item"
+#. Label of the action (Data) field in DocType 'Navbar Item'
+#. Label of the action (Select) field in DocType 'Onboarding Step'
+#. Label of the action (Select) field in DocType 'Email Flag Queue'
+#. Label of the action (Link) field in DocType 'Workflow Transition'
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/navbar_item/navbar_item.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_group/email_group.js:34
+#: frappe/email/doctype/email_group/email_group.js:63
+#: frappe/email/doctype/email_group/email_group.js:72
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
msgid "Action"
-msgstr "thao tác"
+msgstr ""
-#. Label of a Select field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Action"
-msgstr "thao tác"
-
-#. Label of a Link field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
-msgid "Action"
-msgstr "thao tác"
-
-#. Label of a Small Text field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
+#. Label of the action (Small Text) field in DocType 'DocType Action'
+#: frappe/core/doctype/doctype_action/doctype_action.json
msgid "Action / Route"
-msgstr "Hành động / Lộ trình"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:310
-#: public/js/frappe/widgets/onboarding_widget.js:381
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:305
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:376
msgid "Action Complete"
msgstr ""
-#: model/document.py:1648
+#: frappe/model/document.py:1872
msgid "Action Failed"
-msgstr "thao tác thất bại"
+msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the action_label (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Action Label"
msgstr ""
-#. Label of a Int field in DocType 'Success Action'
-#: core/doctype/success_action/success_action.json
-msgctxt "Success Action"
+#. Label of the action_timeout (Int) field in DocType 'Success Action'
+#: frappe/core/doctype/success_action/success_action.json
msgid "Action Timeout (Seconds)"
-msgstr "Thời gian chờ hành động (Giây)"
+msgstr ""
-#. Label of a Select field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
+#. Label of the action_type (Select) field in DocType 'DocType Action'
+#: frappe/core/doctype/doctype_action/doctype_action.json
msgid "Action Type"
-msgstr "Loại hành động"
+msgstr ""
-#: core/doctype/submission_queue/submission_queue.py:119
+#: frappe/core/doctype/submission_queue/submission_queue.py:120
msgid "Action {0} completed successfully on {1} {2}. View it {3}"
msgstr ""
-#: core/doctype/submission_queue/submission_queue.py:115
+#: frappe/core/doctype/submission_queue/submission_queue.py:116
msgid "Action {0} failed on {1} {2}. View it {3}"
msgstr ""
-#: core/doctype/communication/communication.js:66
-#: core/doctype/communication/communication.js:74
-#: core/doctype/communication/communication.js:82
-#: core/doctype/communication/communication.js:90
-#: core/doctype/communication/communication.js:99
-#: core/doctype/communication/communication.js:108
-#: core/doctype/communication/communication.js:131
-#: core/doctype/rq_job/rq_job_list.js:14 core/doctype/rq_job/rq_job_list.js:39
-#: custom/doctype/customize_form/customize_form.js:108
-#: custom/doctype/customize_form/customize_form.js:116
-#: custom/doctype/customize_form/customize_form.js:124
-#: custom/doctype/customize_form/customize_form.js:132
-#: custom/doctype/customize_form/customize_form.js:140
-#: custom/doctype/customize_form/customize_form.js:238
-#: public/js/frappe/views/reports/query_report.js:190
-#: public/js/frappe/views/reports/query_report.js:203
-#: public/js/frappe/views/reports/query_report.js:213
+#. Label of the actions_section (Tab Break) field in DocType 'DocType'
+#. Label of the actions (Table) field in DocType 'Customize Form'
+#: frappe/core/doctype/communication/communication.js:66
+#: frappe/core/doctype/communication/communication.js:74
+#: frappe/core/doctype/communication/communication.js:82
+#: frappe/core/doctype/communication/communication.js:90
+#: frappe/core/doctype/communication/communication.js:99
+#: frappe/core/doctype/communication/communication.js:108
+#: frappe/core/doctype/communication/communication.js:131
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/rq_job/rq_job_list.js:14
+#: frappe/core/doctype/rq_job/rq_job_list.js:39
+#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:48
+#: frappe/custom/doctype/customize_form/customize_form.js:108
+#: frappe/custom/doctype/customize_form/customize_form.js:116
+#: frappe/custom/doctype/customize_form/customize_form.js:124
+#: frappe/custom/doctype/customize_form/customize_form.js:132
+#: frappe/custom/doctype/customize_form/customize_form.js:140
+#: frappe/custom/doctype/customize_form/customize_form.js:148
+#: frappe/custom/doctype/customize_form/customize_form.js:283
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/public/js/frappe/ui/page.html:57
+#: frappe/public/js/frappe/views/reports/query_report.js:192
+#: frappe/public/js/frappe/views/reports/query_report.js:205
+#: frappe/public/js/frappe/views/reports/query_report.js:215
+#: frappe/public/js/frappe/views/reports/query_report.js:845
msgid "Actions"
-msgstr "Các thao tác"
+msgstr ""
-#. Label of a Table field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Actions"
-msgstr "Các thao tác"
-
-#. Label of a Section Break field in DocType 'DocType'
-#. Label of a Table field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Actions"
-msgstr "Các thao tác"
-
-#. Label of a Check field in DocType 'Package Import'
-#: core/doctype/package_import/package_import.json
-msgctxt "Package Import"
+#. Label of the activate (Check) field in DocType 'Package Import'
+#: frappe/core/doctype/package_import/package_import.json
msgid "Activate"
msgstr ""
-#: core/doctype/recorder/recorder_list.js:105 core/doctype/user/user_list.js:12
-#: workflow/doctype/workflow/workflow_list.js:5
-msgid "Active"
-msgstr "có hiệu lực"
-
#. Option for the 'Status' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Active"
-msgstr "có hiệu lực"
-
#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
-msgid "Active"
-msgstr "có hiệu lực"
-
#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/recorder/recorder_list.js:207
+#: frappe/core/doctype/user/user_list.js:12
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/workflow/doctype/workflow/workflow_list.js:5
msgid "Active"
-msgstr "có hiệu lực"
+msgstr ""
#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Active Directory"
msgstr ""
-#. Label of a Section Break field in DocType 'Domain Settings'
-#. Label of a Table field in DocType 'Domain Settings'
-#: core/doctype/domain_settings/domain_settings.json
-msgctxt "Domain Settings"
+#. Label of the active_domains_sb (Section Break) field in DocType 'Domain
+#. Settings'
+#. Label of the active_domains (Table) field in DocType 'Domain Settings'
+#: frappe/core/doctype/domain_settings/domain_settings.json
msgid "Active Domains"
-msgstr "Kích hoạt miền"
+msgstr ""
-#: www/third_party_apps.html:32
+#. Label of the active_sessions (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+#: frappe/www/third_party_apps.html:34
msgid "Active Sessions"
-msgstr "Số phiên tích cực"
-
-#: public/js/frappe/form/dashboard.js:22
-msgid "Activity"
-msgstr "Hoạt động"
+msgstr ""
#. Group in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
+#: frappe/public/js/frappe/form/dashboard.js:22
+#: frappe/public/js/frappe/form/footer/form_timeline.js:60
msgid "Activity"
-msgstr "Hoạt động"
+msgstr ""
#. Name of a DocType
-#: core/doctype/activity_log/activity_log.json
-msgid "Activity Log"
-msgstr "Nhật ký hoạt động"
-
#. Label of a Link in the Build Workspace
#. Label of a Link in the Users Workspace
-#: core/workspace/build/build.json core/workspace/users/users.json
-msgctxt "Activity Log"
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/workspace/build/build.json
+#: frappe/core/workspace/users/users.json
msgid "Activity Log"
-msgstr "Nhật ký hoạt động"
+msgstr ""
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Activity Log"
-msgstr "Nhật ký hoạt động"
-
-#: core/page/permission_manager/permission_manager.js:465
-#: email/doctype/email_group/email_group.js:60
-#: public/js/frappe/form/grid_row.js:468
-#: public/js/frappe/form/sidebar/assign_to.js:100
-#: public/js/frappe/list/bulk_operations.js:372
-#: public/js/frappe/views/dashboard/dashboard_view.js:440
-#: public/js/frappe/views/reports/query_report.js:265
-#: public/js/frappe/views/reports/query_report.js:293
-#: public/js/frappe/widgets/widget_dialog.js:30
+#: frappe/core/page/permission_manager/permission_manager.js:482
+#: frappe/email/doctype/email_group/email_group.js:60
+#: frappe/public/js/frappe/form/grid_row.js:485
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
+#: frappe/public/js/frappe/form/templates/set_sharing.html:68
+#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
+#: frappe/public/js/frappe/views/reports/query_report.js:267
+#: frappe/public/js/frappe/views/reports/query_report.js:295
+#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
-msgstr "Thêm"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:4
+#: frappe/public/js/frappe/form/grid_row.js:438
+msgid "Add / Remove Columns"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:4
msgid "Add / Update"
-msgstr "Thêm / Cập nhật"
+msgstr ""
-#: core/page/permission_manager/permission_manager.js:425
+#: frappe/core/page/permission_manager/permission_manager.js:442
msgid "Add A New Rule"
-msgstr "Thêm một quy tắc mới"
+msgstr ""
-#: public/js/frappe/views/interaction.js:159
+#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
-msgstr "Thêm bản đính kèm"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_background_image (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Background Image"
msgstr ""
-#. Title of an Onboarding Step
-#: website/onboarding_step/add_blog_category/add_blog_category.json
-msgid "Add Blog Category"
-msgstr ""
-
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_border_at_bottom (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Border at Bottom"
msgstr ""
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_border_at_top (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Border at Top"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:209
+#: frappe/desk/doctype/number_card/number_card.js:36
+msgid "Add Card to Dashboard"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:211
msgid "Add Chart to Dashboard"
-msgstr "Thêm biểu đồ vào bảng điều khiển"
+msgstr ""
-#: public/js/frappe/views/treeview.js:285
+#: frappe/public/js/frappe/views/treeview.js:301
msgid "Add Child"
-msgstr "Thêm mẫu con"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1664
-#: public/js/frappe/views/reports/query_report.js:1667
-#: public/js/frappe/views/reports/report_view.js:329
-#: public/js/frappe/views/reports/report_view.js:354
+#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
+#: frappe/public/js/frappe/views/reports/query_report.js:1769
+#: frappe/public/js/frappe/views/reports/query_report.js:1772
+#: frappe/public/js/frappe/views/reports/report_view.js:349
+#: frappe/public/js/frappe/views/reports/report_view.js:374
+#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
-msgstr "Thêm cột"
+msgstr ""
-#: core/doctype/communication/communication.js:127
+#: frappe/core/doctype/communication/communication.js:127
msgid "Add Contact"
-msgstr "Add Contact"
+msgstr ""
-#: desk/doctype/event/event.js:38
+#: frappe/desk/doctype/event/event.js:38
msgid "Add Contacts"
-msgstr "Thêm liên hệ"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_container (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Container"
-msgstr "Thêm vùng chứa"
+msgstr ""
-#. Label of a Button field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the set_meta_tags (Button) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Add Custom Tags"
-msgstr "Thêm thẻ tùy chỉnh"
+msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:159
-#: public/js/frappe/widgets/widget_dialog.js:683
+#: frappe/public/js/frappe/widgets/widget_dialog.js:188
+#: frappe/public/js/frappe/widgets/widget_dialog.js:703
msgid "Add Filters"
-msgstr "Thêm bộ lọc"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_shade (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Gray Background"
-msgstr "Thêm nền xám"
+msgstr ""
-#: public/js/frappe/ui/group_by/group_by.js:417
+#: frappe/public/js/frappe/ui/group_by/group_by.js:230
+#: frappe/public/js/frappe/ui/group_by/group_by.js:427
msgid "Add Group"
-msgstr "Thêm nhóm"
+msgstr ""
-#: core/page/permission_manager/permission_manager.js:428
+#: frappe/core/doctype/recorder/recorder.js:30
+msgid "Add Indexes"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add Multiple"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.js:445
msgid "Add New Permission Rule"
-msgstr "Add New phép tắc"
+msgstr ""
-#: desk/doctype/event/event.js:35 desk/doctype/event/event.js:42
+#: frappe/desk/doctype/event/event.js:35 frappe/desk/doctype/event/event.js:42
msgid "Add Participants"
-msgstr "Thêm người tham gia"
+msgstr ""
-#. Label of a Check field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#. Label of the add_query_parameters (Check) field in DocType 'Email Group'
+#: frappe/email/doctype/email_group/email_group.json
msgid "Add Query Parameters"
msgstr ""
-#: public/js/frappe/form/sidebar/review.js:45
-msgid "Add Review"
-msgstr "Thêm nhận xét"
-
-#: core/doctype/user/user.py:768
+#: frappe/core/doctype/user/user.py:806
msgid "Add Roles"
msgstr ""
-#: public/js/frappe/views/communication.js:117
-msgid "Add Signature"
-msgstr "Thêm Chữ ký"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add Row"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the add_signature (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/public/js/frappe/views/communication.js:130
msgid "Add Signature"
-msgstr "Thêm Chữ ký"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_bottom_padding (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Space at Bottom"
msgstr ""
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_top_padding (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Space at Top"
msgstr ""
-#: email/doctype/email_group/email_group.js:38
-#: email/doctype/email_group/email_group.js:59
+#: frappe/email/doctype/email_group/email_group.js:38
+#: frappe/email/doctype/email_group/email_group.js:59
msgid "Add Subscribers"
-msgstr "Thêm Subscribers"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:360
+#: frappe/public/js/frappe/list/bulk_operations.js:425
msgid "Add Tags"
msgstr ""
-#: public/js/frappe/list/list_view.js:1834
+#: frappe/public/js/frappe/list/list_view.js:2004
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
-#: public/js/frappe/views/communication.js:320
+#: frappe/public/js/frappe/views/communication.js:427
msgid "Add Template"
msgstr ""
-#. Label of a Check field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#. Label of the add_total_row (Check) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
msgid "Add Total Row"
-msgstr "Tổng số Row thêm"
+msgstr ""
-#. Label of a Check field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#. Label of the add_translate_data (Check) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Add Translate Data"
+msgstr ""
+
+#. Label of the add_unsubscribe_link (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Add Unsubscribe Link"
-msgstr "Thêm Hủy đăng ký liên kết"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:6
+#: frappe/core/doctype/user_permission/user_permission_list.js:6
msgid "Add User Permissions"
-msgstr "Thêm quyền người dùng"
+msgstr ""
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the add_video_conferencing (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Add Video Conferencing"
msgstr ""
-#: public/js/frappe/form/form_tour.js:203
+#: frappe/public/js/frappe/ui/filters/filter_list.js:299
+msgid "Add a Filter"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:9
+msgid "Add a New Role"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_tour.js:211
msgid "Add a Row"
msgstr ""
-#: templates/includes/comments/comments.html:30
-#: templates/includes/comments/comments.html:47
+#: frappe/templates/includes/comments/comments.html:30
+#: frappe/templates/includes/comments/comments.html:47
msgid "Add a comment"
-msgstr "Thêm một lời nhận xét"
+msgstr ""
-#: public/js/frappe/form/form.js:192
+#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:28
+#: frappe/public/js/form_builder/components/Tabs.vue:192
+msgid "Add a new section"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:193
msgid "Add a row above the current row"
msgstr ""
-#: public/js/frappe/form/form.js:204
+#: frappe/public/js/frappe/form/form.js:205
msgid "Add a row at the bottom"
msgstr ""
-#: public/js/frappe/form/form.js:200
+#: frappe/public/js/frappe/form/form.js:201
msgid "Add a row at the top"
msgstr ""
-#: public/js/frappe/form/form.js:196
+#: frappe/public/js/frappe/form/form.js:197
msgid "Add a row below the current row"
msgstr ""
-#: public/js/frappe/views/dashboard/dashboard_view.js:285
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:286
msgid "Add a {0} Chart"
-msgstr "Thêm biểu đồ {0}"
+msgstr ""
-#: custom/doctype/client_script/client_script.js:16
+#: frappe/public/js/form_builder/components/Section.vue:271
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:115
+msgid "Add column"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/AddFieldButton.vue:9
+#: frappe/public/js/form_builder/components/AddFieldButton.vue:48
+msgid "Add field"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Sidebar.vue:49
+#: frappe/public/js/form_builder/components/Tabs.vue:153
+msgid "Add new tab"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:125
+msgid "Add page break"
+msgstr ""
+
+#: frappe/custom/doctype/client_script/client_script.js:16
msgid "Add script for Child Table"
-msgstr "Thêm tập lệnh cho Bảng con"
+msgstr ""
-#: public/js/frappe/utils/dashboard_utils.js:263
-#: public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:111
+msgid "Add section above"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:265
+msgid "Add section below"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Sidebar.vue:52
+#: frappe/public/js/form_builder/components/Tabs.vue:157
+msgid "Add tab"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/dashboard_utils.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:253
msgid "Add to Dashboard"
-msgstr "Thêm vào Bảng điều khiển"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:98
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:99
msgid "Add to ToDo"
-msgstr "Thêm vào Công việc"
+msgstr ""
-#: website/doctype/website_slideshow/website_slideshow.js:32
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:32
msgid "Add to table"
-msgstr "Thêm vào bảng"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:97
+#: frappe/public/js/frappe/form/footer/form_timeline.js:99
msgid "Add to this activity by mailing to {0}"
msgstr ""
+#: frappe/public/js/frappe/views/kanban/kanban_column.html:20
+msgid "Add {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:286
+msgctxt "Primary action in list view"
+msgid "Add {0}"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Added"
+msgstr ""
+
#. Description of the '<head> HTML' (Code) field in DocType 'Website
#. Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Added HTML in the <head> section of the web page, primarily used for website verification and SEO"
-msgstr "Thêm HTML vào trong <head> của trang web, chủ yếu được sử dụng để xác minh trang web và SEO"
+msgstr ""
-#: core/doctype/log_settings/log_settings.py:82
+#: frappe/core/doctype/log_settings/log_settings.py:81
msgid "Added default log doctypes: {}"
msgstr ""
-#: core/doctype/file/file.py:720
-msgid "Added {0}"
-msgstr "Đã thêm {0}"
-
-#: public/js/frappe/form/link_selector.js:180
-#: public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:180
+#: frappe/public/js/frappe/form/link_selector.js:202
msgid "Added {0} ({1})"
-msgstr "Thêm {0} ({1})"
+msgstr ""
-#: core/doctype/user/user.py:271
-msgid "Adding System Manager to this User as there must be atleast one System Manager"
-msgstr "Thêm hệ thống quản lý để tài này phải có ít nhất một hệ thống quản lý"
-
-#. Label of a Section Break field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
+#. Label of the additional_permissions (Section Break) field in DocType 'Custom
+#. DocPerm'
+#. Label of the additional_permissions (Section Break) field in DocType
+#. 'DocPerm'
+#. Label of the additional_permissions_section (Section Break) field in DocType
+#. 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Additional Permissions"
-msgstr "Quyền thêm"
-
-#. Label of a Section Break field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Additional Permissions"
-msgstr "Quyền thêm"
+msgstr ""
#. Name of a DocType
-#: contacts/doctype/address/address.json
+#. Label of the address (Link) field in DocType 'Contact'
+#. Label of the address (Section Break) field in DocType 'Contact Us Settings'
+#. Label of the address (Small Text) field in DocType 'Website Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
-msgstr "Địa chỉ"
+msgstr ""
-#. Label of a Link field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Address"
-msgstr "Địa chỉ"
-
-#. Label of a Section Break field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Address"
-msgstr "Địa chỉ"
-
-#. Label of a Small Text field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Address"
-msgstr "Địa chỉ"
-
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the address_line1 (Data) field in DocType 'Address'
+#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
-msgstr "Địa chỉ Line 1"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Address Line 1"
-msgstr "Địa chỉ Line 1"
-
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the address_line2 (Data) field in DocType 'Address'
+#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
-msgstr "Địa chỉ Dòng 2"
-
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Address Line 2"
-msgstr "Địa chỉ Dòng 2"
+msgstr ""
#. Name of a DocType
-#: contacts/doctype/address_template/address_template.json
+#: frappe/contacts/doctype/address_template/address_template.json
msgid "Address Template"
-msgstr "Địa chỉ Template"
+msgstr ""
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the address_title (Data) field in DocType 'Address'
+#. Label of the address_title (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Title"
-msgstr "Địa chỉ Tiêu đề"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Address Title"
-msgstr "Địa chỉ Tiêu đề"
-
-#: contacts/doctype/address/address.py:71
+#: frappe/contacts/doctype/address/address.py:72
msgid "Address Title is mandatory."
-msgstr "Địa chỉ Tiêu đề là bắt buộc."
+msgstr ""
-#. Label of a Select field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the address_type (Select) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "Address Type"
-msgstr "Địa chỉ Loại"
+msgstr ""
#. Description of the 'Address' (Small Text) field in DocType 'Website
#. Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address and other legal information you may want to put in the footer."
-msgstr "Địa chỉ và thông tin pháp lý khác mà bạn có thể muốn đặt ở chân."
+msgstr ""
-#: contacts/doctype/address/address.py:208
+#: frappe/contacts/doctype/address/address.py:206
msgid "Addresses"
-msgstr "Địa chỉ"
+msgstr ""
#. Name of a report
-#: contacts/report/addresses_and_contacts/addresses_and_contacts.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.json
msgid "Addresses And Contacts"
-msgstr "Địa chỉ và danh bạ"
+msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:536
+#. Description of a DocType
+#: frappe/custom/doctype/client_script/client_script.json
+msgid "Adds a custom client script to a DocType"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/custom/doctype/custom_field/custom_field.json
+msgid "Adds a custom field to a DocType"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552
msgid "Administration"
-msgstr "Quản trị"
+msgstr ""
#. Name of a role
-#: contacts/doctype/salutation/salutation.json
-#: core/doctype/doctype/doctype.json core/doctype/domain/domain.json
-#: core/doctype/module_def/module_def.json core/doctype/page/page.json
-#: core/doctype/patch_log/patch_log.json core/doctype/recorder/recorder.json
-#: core/doctype/report/report.json core/doctype/rq_job/rq_job.json
-#: core/doctype/transaction_log/transaction_log.json
-#: core/doctype/user_type/user_type.json core/doctype/version/version.json
-#: custom/doctype/client_script/client_script.json
-#: custom/doctype/custom_field/custom_field.json
-#: custom/doctype/property_setter/property_setter.json
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
-#: desk/doctype/onboarding_step/onboarding_step.json
-#: website/doctype/website_theme/website_theme.json
+#: frappe/contacts/doctype/salutation/salutation.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/domain/domain.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/page/page.json
+#: frappe/core/doctype/patch_log/patch_log.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/core/doctype/version/version.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/system_console/system_console.json
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Administrator"
-msgstr "Quản trị viên"
+msgstr ""
-#: core/doctype/user/user.py:1180
+#: frappe/core/doctype/user/user.py:1211
msgid "Administrator Logged In"
-msgstr "Quản trị Logged In"
+msgstr ""
-#: core/doctype/user/user.py:1174
+#: frappe/core/doctype/user/user.py:1205
msgid "Administrator accessed {0} on {1} via IP Address {2}."
-msgstr "Quản trị viên truy cập {0} vào {1} qua IP Address {2}."
+msgstr ""
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: 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 "Nâng cao"
+msgstr ""
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Advanced"
-msgstr "Nâng cao"
-
-#. Label of a Section Break field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
+#. Label of the advanced_control_section (Section Break) field in DocType 'User
+#. Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
msgid "Advanced Control"
-msgstr "Kiểm soát nâng cao"
+msgstr ""
-#: public/js/frappe/form/controls/link.js:315
-#: public/js/frappe/form/controls/link.js:317
+#: frappe/public/js/frappe/form/controls/link.js:335
+#: frappe/public/js/frappe/form/controls/link.js:337
msgid "Advanced Search"
-msgstr "Tìm kiếm nâng cao"
+msgstr ""
-#. Label of a Section Break field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the sb_advanced (Section Break) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Advanced Settings"
-msgstr "Cài đặt nâng cao"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:64
+#: frappe/public/js/frappe/ui/filters/filter.js:70
+msgid "After"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "After Cancel"
-msgstr "Sau khi hủy"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "After Delete"
-msgstr "Sau khi xóa"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Discard"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "After Insert"
msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "After Save"
-msgstr "Sau khi lưu"
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Rename"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "After Save (Submitted Document)"
-msgstr "Sau khi lưu (Tài liệu đã gửi)"
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Save"
+msgstr ""
-#. Label of a Section Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Save (Submitted Document)"
+msgstr ""
+
+#. Label of the section_break_5 (Section Break) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "After Submission"
msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "After Submit"
-msgstr "Sau khi gửi"
+msgstr ""
-#: desk/doctype/number_card/number_card.py:58
+#: frappe/desk/doctype/number_card/number_card.py:62
msgid "Aggregate Field is required to create a number card"
msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the aggregate_function_based_on (Select) field in DocType
+#. 'Dashboard Chart'
+#. Label of the aggregate_function_based_on (Select) field in DocType 'Number
+#. Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Aggregate Function Based On"
-msgstr "Hàm tổng hợp dựa trên"
+msgstr ""
-#. Label of a Select field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Aggregate Function Based On"
-msgstr "Hàm tổng hợp dựa trên"
-
-#: desk/doctype/dashboard_chart/dashboard_chart.py:410
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:410
msgid "Aggregate Function field is required to create a dashboard chart"
-msgstr "Trường hàm tổng hợp được yêu cầu để tạo biểu đồ bảng điều khiển"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Alert"
-msgstr "Cảnh báo"
+msgstr ""
#. Label of a Card Break in the Tools Workspace
-#: automation/workspace/tools/tools.json
+#: frappe/automation/workspace/tools/tools.json
msgid "Alerts and Notifications"
msgstr ""
-#. Label of a Select field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the align (Select) field in DocType 'Letter Head'
+#. Label of the footer_align (Select) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Align"
msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the align_labels_right (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Align Labels to the Right"
-msgstr "Căn chỉnh Nhãn ở bên phải"
+msgstr ""
-#. Label of a Check field in DocType 'Top Bar Item'
-#: website/doctype/top_bar_item/top_bar_item.json
-msgctxt "Top Bar Item"
+#. Label of the right (Check) field in DocType 'Top Bar Item'
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Align Right"
-msgstr "Sắp xếp đúng"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:479
+#: frappe/printing/page/print_format_builder/print_format_builder.js:479
msgid "Align Value"
-msgstr "Căn Giá trị"
+msgstr ""
#. Name of a role
-#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json
-#: contacts/doctype/gender/gender.json
-#: contacts/doctype/salutation/salutation.json
-#: core/doctype/communication/communication.json core/doctype/file/file.json
-#: core/doctype/language/language.json core/doctype/module_def/module_def.json
-#: core/doctype/user/user.json desk/doctype/event/event.json
-#: desk/doctype/notification_log/notification_log.json
-#: desk/doctype/notification_settings/notification_settings.json
-#: desk/doctype/tag/tag.json desk/doctype/tag_link/tag_link.json
-#: desk/doctype/todo/todo.json geo/doctype/country/country.json
-#: integrations/doctype/connected_app/connected_app.json
-#: integrations/doctype/token_cache/token_cache.json
-#: printing/doctype/print_heading/print_heading.json
-#: website/doctype/personal_data_download_request/personal_data_download_request.json
-#: website/doctype/website_settings/website_settings.json
-msgid "All"
-msgstr "Tất cả"
-
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "All"
-msgstr "Tất cả"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/gender/gender.json
+#: frappe/contacts/doctype/salutation/salutation.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/file/file.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+#: frappe/printing/doctype/print_heading/print_heading.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
-msgstr "Tất cả"
+msgstr ""
-#: public/js/frappe/ui/notifications/notifications.js:394
+#. Label of the all_day (Check) field in DocType 'Calendar View'
+#. Label of the all_day (Check) field in DocType 'Event'
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:408
msgid "All Day"
-msgstr "Tất cả các ngày"
+msgstr ""
-#. Label of a Check field in DocType 'Calendar View'
-#: desk/doctype/calendar_view/calendar_view.json
-msgctxt "Calendar View"
-msgid "All Day"
-msgstr "Tất cả các ngày"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "All Day"
-msgstr "Tất cả các ngày"
-
-#: website/doctype/website_slideshow/website_slideshow.py:42
+#: frappe/website/doctype/website_slideshow/website_slideshow.py:43
msgid "All Images attached to Website Slideshow should be public"
-msgstr "Tất cả hình ảnh đính kèm với Website Slideshow phải là công khai"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:29
+#: frappe/public/js/frappe/data_import/data_exporter.js:29
msgid "All Records"
-msgstr "Tất cả hồ sơ"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:384
+#: frappe/public/js/frappe/form/form.js:2222
+msgid "All Submissions"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:452
msgid "All customizations will be removed. Please confirm."
-msgstr "Tất cả các tùy chỉnh sẽ được gỡ bỏ. Vui lòng xác nhận."
+msgstr ""
-#: templates/includes/comments/comments.html:158
+#: frappe/templates/includes/comments/comments.html:158
msgid "All fields are necessary to submit the comment."
msgstr ""
#. Description of the 'Document States' (Table) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "All possible Workflow States and roles of the workflow. Docstatus Options: 0 is \"Saved\", 1 is \"Submitted\" and 2 is \"Cancelled\""
msgstr ""
-#: utils/password_strength.py:187
+#: frappe/utils/password_strength.py:183
msgid "All-uppercase is almost as easy to guess as all-lowercase."
-msgstr "All-hoa là gần như là dễ đoán như tất cả-chữ thường."
-
-#. Label of a Link field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Allocated To"
-msgstr "Để phân bổ"
-
-#. Label of a Check field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Allot Points To Assigned Users"
-msgstr "Phân bổ điểm cho người dùng được chỉ định"
-
-#: templates/includes/oauth_confirmation.html:15
-msgid "Allow"
-msgstr "Cho phép"
-
-#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Allow"
-msgstr "Cho phép"
-
-#. Label of a Link field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
-msgid "Allow"
-msgstr "Cho phép"
-
-#: website/doctype/website_settings/website_settings.py:160
-msgid "Allow API Indexing Access"
-msgstr "Cho phép quyền truy cập lập chỉ mục API"
-
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Allow Auto Repeat"
-msgstr "Cho phép tự động lặp lại"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Allow Auto Repeat"
-msgstr "Cho phép tự động lặp lại"
-
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Allow Bulk Edit"
-msgstr "Cho phép Chỉnh sửa Hàng loạt"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Allow Bulk Edit"
-msgstr "Cho phép Chỉnh sửa Hàng loạt"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Comments"
-msgstr "Cho phép Comments"
-
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Allow Consecutive Login Attempts "
-msgstr "Cho phép thử liên tục đăng nhập"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Delete"
-msgstr "Cho phép Xóa"
-
-#. Label of a Button field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Allow Dropbox Access"
-msgstr "Cho phép truy cập Dropbox"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Editing After Submit"
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:100
-#: integrations/doctype/google_calendar/google_calendar.py:114
+#. Label of the 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 ""
+
+#. Label of the allow_dropbox_access (Button) field in DocType 'Dropbox
+#. Settings'
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
+msgid "Allow Dropbox Access"
+msgstr ""
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
msgid "Allow Google Calendar Access"
-msgstr "Cho phép truy cập lịch Google"
+msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.py:39
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:40
msgid "Allow Google Contacts Access"
-msgstr "Cho phép truy cập danh bạ Google"
+msgstr ""
-#: integrations/doctype/google_drive/google_drive.py:51
+#: frappe/integrations/doctype/google_drive/google_drive.py:52
msgid "Allow Google Drive Access"
-msgstr "Cho phép truy cập Google Drive"
+msgstr ""
-#. Label of a Check field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the allow_guest (Check) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
-msgstr "Cho phép khách"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the allow_guest_to_view (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Allow Guest to View"
-msgstr "Cho phép Khách đến Xem"
+msgstr ""
-#. Label of a Check field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Allow Guest to comment"
msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the allow_guests_to_upload_files (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow Guests to Upload Files"
-msgstr "Cho phép khách tải lên tập tin"
-
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Allow Import (via Data Import Tool)"
-msgstr "Cho phép nhập khẩu (thông qua Công cụ Nhập dữ liệu)"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Allow Import (via Data Import Tool)"
-msgstr "Cho phép nhập khẩu (thông qua Công cụ Nhập dữ liệu)"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Incomplete Forms"
-msgstr "Cho phép hình thức không đầy đủ"
-
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Allow Login After Fail"
-msgstr "Cho phép đăng nhập sau khi thất bại"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Allow Login using Mobile Number"
-msgstr "Cho phép đăng nhập sử dụng số di động"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Allow Login using User Name"
-msgstr "Cho phép Đăng nhập bằng Tên Người dùng"
-
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Allow Modules"
-msgstr "Cho phép mô-đun"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Multiple Responses"
msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the allow_import (Check) field in DocType 'DocType'
+#. Label of the allow_import (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Allow Import (via Data Import Tool)"
+msgstr ""
+
+#. Label of the allow_login_after_fail (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Login After Fail"
+msgstr ""
+
+#. Label of the allow_login_using_mobile_number (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Login using Mobile Number"
+msgstr ""
+
+#. Label of the allow_login_using_user_name (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Login using User Name"
+msgstr ""
+
+#. Label of the sb_allow_modules (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Allow Modules"
+msgstr ""
+
+#. Label of the allow_older_web_view_links (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow Older Web View Links (Insecure)"
msgstr ""
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Print"
-msgstr "cho phép In"
-
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the allow_print_for_cancelled (Check) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Allow Print for Cancelled"
-msgstr "cho phép để hủy"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:395
+#. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Allow Print for Draft"
-msgstr "cho phép in nháp"
+msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Allow Print for Draft"
-msgstr "cho phép in nháp"
-
-#. Label of a Check field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the allow_read_on_all_link_options (Check) field in DocType 'Web
+#. Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Allow Read On All Link Options"
-msgstr "Cho phép tùy chọn đọc trên tất cả liên kết"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the allow_rename (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Allow Rename"
-msgstr "Cho phép đổi tên"
+msgstr ""
-#. Label of a Table MultiSelect field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
+#. Label of the roles_permission (Section Break) field in DocType 'Role
+#. Permission for Page and Report'
+#. Label of the allow_roles (Table MultiSelect) field in DocType 'Module
+#. Onboarding'
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Allow Roles"
-msgstr "cho phép Vai trò"
+msgstr ""
-#. Label of a Section Break field in DocType 'Role Permission for Page and
-#. Report'
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgctxt "Role Permission for Page and Report"
-msgid "Allow Roles"
-msgstr "cho phép Vai trò"
-
-#. Label of a Check field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
+#. Label of the allow_self_approval (Check) field in DocType 'Workflow
+#. Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Allow Self Approval"
-msgstr "Cho phép tự phê duyệt"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the enable_telemetry (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow Sending Usage Data for Improving Applications"
msgstr ""
#. Description of the 'Allow Self Approval' (Check) field in DocType 'Workflow
#. Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Allow approval for creator of the document"
-msgstr "Cho phép phê duyệt đối với người tạo tài liệu"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the allow_comments (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow comments"
+msgstr ""
+
+#. Label of the allow_delete (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow delete"
+msgstr ""
+
+#. Label of the email_append_to (Check) field in DocType 'DocType'
+#. Label of the email_append_to (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Allow document creation via Email"
-msgstr "Cho phép tạo tài liệu qua Email"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Allow document creation via Email"
-msgstr "Cho phép tạo tài liệu qua Email"
+#. Label of the allow_edit (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow editing after submit"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Description of the 'Allow Bulk Editing' (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Allow editing even if the doctype has a workflow set up.\n\n"
+"Does nothing if a workflow isn't set up."
+msgstr ""
+
+#. Label of the allow_events_in_timeline (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Allow events in timeline"
-msgstr "Cho phép sự kiện trong dòng thời gian"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the allow_in_quick_entry (Check) field in DocType 'DocField'
+#. Label of the allow_in_quick_entry (Check) field in DocType 'Custom Field'
+#. Label of the allow_in_quick_entry (Check) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Allow in Quick Entry"
-msgstr "Cho phép trong mục nhập nhanh"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Allow in Quick Entry"
-msgstr "Cho phép trong mục nhập nhanh"
+#. Label of the allow_incomplete (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow incomplete forms"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Allow in Quick Entry"
-msgstr "Cho phép trong mục nhập nhanh"
+#. Label of the allow_multiple (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow multiple responses"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the allow_on_submit (Check) field in DocType 'DocField'
+#. Label of the allow_on_submit (Check) field in DocType 'Custom Field'
+#. Label of the allow_on_submit (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Allow on Submit"
-msgstr "Cho phép khi Đệ trình"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Allow on Submit"
-msgstr "Cho phép khi Đệ trình"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Allow on Submit"
-msgstr "Cho phép khi Đệ trình"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the deny_multiple_sessions (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow only one session per user"
-msgstr "Chỉ cho phép một phiên mỗi người dùng"
+msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the allow_page_break_inside_tables (Check) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Allow page break inside tables"
-msgstr "Cho phép trang phá vỡ bên trong bảng"
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:420
+#. Label of the allow_print (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow print"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:431
msgid "Allow recording my first session to improve user experience"
msgstr ""
-#. Description of the 'Allow Incomplete Forms' (Check) field in DocType 'Web
+#. Description of the 'Allow incomplete forms' (Check) field in DocType 'Web
#. Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#: frappe/website/doctype/web_form/web_form.json
msgid "Allow saving if mandatory fields are not filled"
-msgstr "Cho phép tiết kiệm nếu các lĩnh vực bắt buộc không được điền"
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:413
+#: frappe/desk/page/setup_wizard/setup_wizard.js:424
msgid "Allow sending usage data for improving applications"
msgstr ""
#. Description of the 'Login After' (Int) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Allow user to login only after this hour (0-24)"
-msgstr "Cho phép người dùng đăng nhập chỉ sau giờ này (0-24)"
+msgstr ""
#. Description of the 'Login Before' (Int) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Allow user to login only before this hour (0-24)"
-msgstr "Cho phép người dùng đăng nhập chỉ trước khi giờ này (0-24)"
+msgstr ""
#. Description of the 'Login with email link' (Check) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow users to log in without a password, using a login link sent to their email"
msgstr ""
-#. Label of a Link field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
+#. Label of the allowed (Link) field in DocType 'Workflow Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Allowed"
-msgstr "Cho phép"
+msgstr ""
-#. Label of a Small Text field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the allowed_file_extensions (Small Text) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allowed File Extensions"
msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the allowed_in_mentions (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Allowed In Mentions"
-msgstr "Được phép trong Mentions"
+msgstr ""
-#. Label of a Section Break field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the allowed_modules_section (Section Break) field in DocType 'User
+#. Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "Allowed Modules"
msgstr ""
-#: public/js/frappe/form/form.js:1229
+#. Label of the allowed_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 "Cho phép DocType, DocType. Chị cẩn thận đó!"
+msgstr ""
-#: core/doctype/user/user.py:977
+#: frappe/core/doctype/user/user.py:1021
msgid "Already Registered"
-msgstr "Đã đăng ký"
+msgstr ""
-#: desk/form/assign_to.py:132
+#: frappe/desk/form/assign_to.py:137
msgid "Already in the following Users ToDo list:{0}"
-msgstr "Đã có trong danh sách Việc cần làm của Người dùng sau: {0}"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:840
+#: frappe/public/js/frappe/views/reports/report_view.js:896
msgid "Also adding the dependent currency field {0}"
-msgstr "Thêm trường ngoại tệ phụ thuộc {0}"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:853
+#: frappe/public/js/frappe/views/reports/report_view.js:909
msgid "Also adding the status dependency field {0}"
-msgstr "Đồng thời thêm trường phụ thuộc trạng thái {0}"
+msgstr ""
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the login_id (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Alternative Email ID"
msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Always add \"Draft\" Heading for printing draft documents"
-msgstr "Luôn luôn thêm "Dự thảo" Heading cho dự thảo văn bản in ấn"
+#. Label of the always_bcc (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Always BCC Address"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the add_draft_heading (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Always add \"Draft\" Heading for printing draft documents"
+msgstr ""
+
+#. Label of the always_use_account_email_id_as_sender (Check) field in DocType
+#. 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Always use this email address as sender address"
msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the always_use_account_name_as_sender_name (Check) field in DocType
+#. 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Always use this name as sender name"
msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
+#. Label of the amend (Check) field in DocType 'Custom DocPerm'
+#. Label of the amend (Check) field in DocType 'DocPerm'
+#. Label of the amend (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Amend"
-msgstr "Sửa đổi"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Amend"
-msgstr "Sửa đổi"
-
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Amend"
-msgstr "Sửa đổi"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming
#. Settings'
-#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
-msgctxt "Amended Document Naming Settings"
-msgid "Amend Counter"
-msgstr ""
-
#. Option for the 'Default Amendment Naming' (Select) field in DocType
#. 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Amend Counter"
msgstr ""
#. Name of a DocType
-#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
msgid "Amended Document Naming Settings"
msgstr ""
-#. Label of a Section Break field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the amended_documents_section (Section Break) field in DocType
+#. 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Amended Documents"
msgstr ""
-#. Label of a Link field in DocType 'Personal Data Download Request'
-#: website/doctype/personal_data_download_request/personal_data_download_request.json
-msgctxt "Personal Data Download Request"
+#. Label of the amended_from (Link) field in DocType 'Transaction Log'
+#. Label of the amended_from (Link) field in DocType 'Personal Data Download
+#. Request'
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
msgid "Amended From"
-msgstr "Sửa đổi Từ"
+msgstr ""
-#. Label of a Link field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Amended From"
-msgstr "Sửa đổi Từ"
-
-#: public/js/frappe/form/save.js:12
+#: frappe/public/js/frappe/form/save.js:12
msgctxt "Freeze message while amending a document"
msgid "Amending"
-msgstr "Sửa đổi"
+msgstr ""
-#. Label of a Table field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the amend_naming_override (Table) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Amendment Naming Override"
msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.py:208
+#: frappe/model/document.py:550
+msgid "Amendment Not Allowed"
+msgstr ""
+
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:207
msgid "Amendment naming rules updated."
msgstr ""
-#: public/js/frappe/ui/toolbar/toolbar.js:287
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
msgid "An error occurred while setting Session Defaults"
-msgstr "Đã xảy ra lỗi trong khi cài đặt Mặc định phiên"
+msgstr ""
#. Description of the 'FavIcon' (Attach) field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]"
-msgstr "Một biểu tượng tập tin với phần mở rộng .ico. Nên là 16 x 16 px. Được tạo ra bằng cách sử dụng favicon. [favicon-generator.org]"
+msgstr ""
-#: templates/includes/oauth_confirmation.html:35
+#: frappe/templates/includes/oauth_confirmation.html:38
msgid "An unexpected error occurred while authorizing {}."
msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the analytics_section (Section Break) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Analytics"
-msgstr "phân tích"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:35
+#: frappe/public/js/frappe/ui/filters/filter.js:35
msgid "Ancestors Of"
-msgstr "Tổ tiên của"
+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'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Annual"
-msgstr "Hàng năm"
+msgstr ""
-#. Label of a Code field in DocType 'Personal Data Deletion Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
+#. Label of the anonymization_matrix (Code) field in DocType 'Personal Data
+#. Deletion Request'
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Anonymization Matrix"
msgstr ""
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Anonymous"
-msgstr "Vô danh"
+#. Label of the anonymous (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Anonymous responses"
+msgstr ""
-#: public/js/frappe/request.js:186
+#: frappe/public/js/frappe/request.js:189
msgid "Another transaction is blocking this one. Please try again in a few seconds."
-msgstr "Giao dịch khác là chặn này. Vui lòng thử lại trong vài giây."
+msgstr ""
-#: model/rename_doc.py:380
+#: frappe/model/rename_doc.py:379
msgid "Another {0} with name {1} exists, select another name"
-msgstr "Khác {0} với tên {1} tồn tại, chọn tên khác"
+msgstr ""
#. Description of the 'Raw Commands' (Code) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language."
-msgstr "Bất kỳ ngôn ngữ máy in dựa trên chuỗi có thể được sử dụng. Viết lệnh thô đòi hỏi kiến thức về ngôn ngữ bản địa của máy in được cung cấp bởi nhà sản xuất máy in. Vui lòng tham khảo hướng dẫn dành cho nhà phát triển được cung cấp bởi nhà sản xuất máy in về cách viết lệnh gốc của họ. Các lệnh này được hiển thị ở phía máy chủ bằng Ngôn ngữ tạo khuôn Jinja."
+msgstr ""
-#. Label of a Data field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: 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 "App"
+msgstr ""
-#. Label of a Data field in DocType 'Website Theme Ignore App'
-#: website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
-msgctxt "Website Theme Ignore App"
-msgid "App"
-msgstr "App"
-
-#. Label of a Data field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
+#. Label of the app_access_key (Data) field in DocType 'Dropbox Settings'
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
msgid "App Access Key"
-msgstr "App Access Key"
+msgstr ""
-#: integrations/doctype/dropbox_settings/dropbox_settings.js:22
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:22
msgid "App Access Key and/or Secret Key are not present."
msgstr ""
-#. Label of a Data field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the client_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client ID"
-msgstr "App Client ID"
+msgstr ""
-#. Label of a Data field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client Secret"
-msgstr "App Khách hàng Bí mật"
+msgstr ""
-#. Label of a Data field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
+#. Label of the app_id (Data) field in DocType 'Google Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
msgstr ""
-#. Label of a Attach Image field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the app_logo (Attach Image) field in DocType 'Website Settings'
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Logo"
msgstr ""
-#: core/doctype/installed_applications/installed_applications.js:27
+#. Label of the app_name (Select) field in DocType 'Module Def'
+#. Label of the app_name (Data) field in DocType 'Changelog Feed'
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#. Label of the app_name (Data) field in DocType 'Website Settings'
+#: frappe/core/doctype/installed_applications/installed_applications.js:27
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
-msgstr "Tên ứng dụng"
+msgstr ""
-#. Label of a Select field in DocType 'Module Def'
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "App Name"
-msgstr "Tên ứng dụng"
-
-#. Label of a Data field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
-msgid "App Name"
-msgstr "Tên ứng dụng"
-
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "App Name"
-msgstr "Tên ứng dụng"
-
-#. Label of a Password field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
+#. Label of the app_secret_key (Password) field in DocType 'Dropbox Settings'
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
msgid "App Secret Key"
-msgstr "App bí mật chính"
+msgstr ""
-#: modules/utils.py:268
+#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: __init__.py:1677
+#: frappe/__init__.py:1462
msgid "App {0} is not installed"
-msgstr "{0} ứng dụng không được cài đặt"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email
+#. Account'
+#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email
+#. Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Append Emails to Sent Folder"
-msgstr "Nối các email vào thư mục đã gửi"
+msgstr ""
-#. Label of a Check field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Append Emails to Sent Folder"
-msgstr "Nối các email vào thư mục đã gửi"
-
-#. Label of a Link field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the append_to (Link) field in DocType 'Email Account'
+#. Label of the append_to (Link) field in DocType 'IMAP Folder'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "Append To"
-msgstr "Nối Để"
+msgstr ""
-#. Label of a Link field in DocType 'IMAP Folder'
-#: email/doctype/imap_folder/imap_folder.json
-msgctxt "IMAP Folder"
-msgid "Append To"
-msgstr "Nối Để"
-
-#: email/doctype/email_account/email_account.py:178
+#: frappe/email/doctype/email_account/email_account.py:202
msgid "Append To can be one of {0}"
-msgstr "Nối Để có thể là một trong {0}"
+msgstr ""
#. Description of the 'Append To' (Link) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Append as communication against this DocType (must have fields: \"Sender\" and \"Subject\"). These fields can be defined in the email settings section of the appended doctype."
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:105
+#: frappe/core/doctype/user_permission/user_permission_list.js:105
msgid "Applicable Document Types"
-msgstr "Các loại tài liệu áp dụng"
+msgstr ""
-#. Label of a Link field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
+#. Label of the applicable_for (Link) field in DocType 'User Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
msgid "Applicable For"
-msgstr "Đối với áp dụng"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Navbar Settings'
-#. Label of a Section Break field in DocType 'Navbar Settings'
-#: core/doctype/navbar_settings/navbar_settings.json
-msgctxt "Navbar Settings"
+#. Label of the app_logo (Attach Image) field in DocType 'Navbar Settings'
+#. Label of the logo_section (Section Break) field in DocType 'Navbar Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Application Logo"
-msgstr "Logo ứng dụng"
+msgstr ""
-#. Label of a Data field in DocType 'Installed Application'
-#: core/doctype/installed_application/installed_application.json
-msgctxt "Installed Application"
+#. Label of the app_name (Data) field in DocType 'Installed Application'
+#. Label of the app_name (Data) field in DocType 'System Settings'
+#: frappe/core/doctype/installed_application/installed_application.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Application Name"
-msgstr "Tên ứng dụng"
+msgstr ""
-#. Label of a Data field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Application Name"
-msgstr "Tên ứng dụng"
-
-#. Label of a Data field in DocType 'Installed Application'
-#: core/doctype/installed_application/installed_application.json
-msgctxt "Installed Application"
+#. Label of the app_version (Data) field in DocType 'Installed Application'
+#: frappe/core/doctype/installed_application/installed_application.json
msgid "Application Version"
-msgstr "Phiên bản ứng dụng"
+msgstr ""
-#. Label of a Select field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#. Label of the doctype_or_field (Select) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Applied On"
-msgstr "Áp dụng trên"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/form_builder/components/Field.vue:103
+msgid "Apply"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1989
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
-msgstr "Áp dụng quy tắc chuyển nhượng"
+msgstr ""
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Apply Document Permissions"
-msgstr "Áp dụng quyền đối với tài liệu"
-
-#: public/js/frappe/ui/filters/filter_list.js:315
+#: frappe/public/js/frappe/ui/filters/filter_list.js:318
msgid "Apply Filters"
msgstr ""
-#. Label of a Check field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Apply Only Once"
-msgstr "Chỉ áp dụng một lần"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the apply_strict_user_permissions (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Apply Strict User Permissions"
-msgstr "Áp dụng Quyền người dùng nghiêm ngặt"
+msgstr ""
-#. Label of a Select field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
+#. Label of the view (Select) field in DocType 'Client Script'
+#: frappe/custom/doctype/client_script/client_script.json
msgid "Apply To"
msgstr ""
-#. Label of a Check field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
+#. Label of the apply_to_all_doctypes (Check) field in DocType 'User
+#. Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
msgid "Apply To All Document Types"
-msgstr "Áp dụng cho tất cả các loại tài liệu"
+msgstr ""
-#. Label of a Link field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the apply_user_permission_on (Link) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "Apply User Permission On"
msgstr ""
+#. Label of the apply_document_permissions (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Apply document permissions"
+msgstr ""
+
#. Description of the 'If user is the owner' (Check) field in DocType 'Custom
#. DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Apply this rule if the User is the Owner"
-msgstr "Áp dụng quy tắc này nếu người dùng là chủ sở hữu"
-
#. Description of the 'If user is the owner' (Check) field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
msgid "Apply this rule if the User is the Owner"
-msgstr "Áp dụng quy tắc này nếu người dùng là chủ sở hữu"
+msgstr ""
-#. Description of the 'Apply Only Once' (Check) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Apply this rule only once per document"
-msgstr "Chỉ áp dụng quy tắc này một lần cho mỗi tài liệu"
-
-#: core/doctype/user_permission/user_permission_list.js:75
+#: frappe/core/doctype/user_permission/user_permission_list.js:75
msgid "Apply to all Documents Types"
-msgstr "Áp dụng cho tất cả các loại tài liệu"
+msgstr ""
-#: model/workflow.py:265
+#: frappe/model/workflow.py:266
msgid "Applying: {0}"
-msgstr "Áp dụng: {0}"
+msgstr ""
-#: public/js/frappe/form/sidebar/review.js:62
-msgid "Appreciate"
-msgstr "Đánh giá"
-
-#. Option for the 'Type' (Select) field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Appreciation"
-msgstr "Sự đánh giá"
-
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:111
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:115
msgid "Approval Required"
-msgstr "Chấp nhận những thứ thật cần thiết"
+msgstr ""
-#: public/js/frappe/utils/number_systems.js:41
+#. Label of a standard navbar item
+#. Type: Route
+#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/website/js/website.js:619 frappe/www/me.html:80
+msgid "Apps"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
msgid "Ar"
msgstr ""
-#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
-msgid "Archived"
-msgstr "Lưu trữ"
-
-#: public/js/frappe/views/kanban/kanban_board.bundle.js:490
-msgid "Archived Columns"
-msgstr "Cột lưu trữ"
-
-#: public/js/frappe/form/grid.js:269
-msgid "Are you sure you want to delete all rows?"
-msgstr "Bạn có chắc chắn muốn xóa tất cả các hàng?"
-
-#: public/js/frappe/views/workspace/workspace.js:885
-msgid "Are you sure you want to delete page {0}?"
+#: frappe/public/js/frappe/views/kanban/kanban_column.html:14
+msgid "Archive"
msgstr ""
-#: public/js/frappe/form/sidebar/attachments.js:135
-msgid "Are you sure you want to delete the attachment?"
-msgstr "Bạn có chắc bạn muốn xóa các tập tin đính kèm?"
+#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column'
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Archived"
+msgstr ""
-#: public/js/frappe/web_form/web_form.js:185
+#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:494
+msgid "Archived Columns"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1968
+msgid "Are you sure you want to clear the assignments?"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:290
+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:185
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: public/js/frappe/form/toolbar.js:110
-msgid "Are you sure you want to merge {0} with {1}?"
-msgstr "Bạn có chắc chắn muốn hợp nhất {0} với {1} không?"
+#: frappe/public/js/frappe/views/reports/query_report.js:965
+msgid "Are you sure you want to generate a new report?"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:105
+#: 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:108
msgid "Are you sure you want to proceed?"
msgstr ""
-#: core/doctype/rq_job/rq_job_list.js:25
+#: frappe/core/doctype/rq_job/rq_job_list.js:25
msgid "Are you sure you want to re-enable scheduler?"
msgstr ""
-#: core/doctype/communication/communication.js:163
+#: frappe/core/doctype/communication/communication.js:163
msgid "Are you sure you want to relink this communication to {0}?"
-msgstr "Bạn có chắc chắn bạn muốn liên kết lại thông tin liên lạc này để {0}?"
+msgstr ""
-#: core/doctype/rq_job/rq_job_list.js:10
+#: frappe/core/doctype/rq_job/rq_job_list.js:10
msgid "Are you sure you want to remove all failed jobs?"
msgstr ""
-#: public/js/frappe/list/list_filter.js:109
+#: frappe/public/js/frappe/list/list_filter.js:116
msgid "Are you sure you want to remove the {0} filter?"
msgstr ""
-#: public/js/frappe/views/dashboard/dashboard_view.js:267
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:268
msgid "Are you sure you want to reset all customizations?"
-msgstr "Bạn có chắc chắn muốn đặt lại tất cả các tùy chỉnh không?"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:60
+#: frappe/workflow/doctype/workflow/workflow.js:125
+msgid "Are you sure you want to save this document?"
+msgstr ""
+
+#: frappe/email/doctype/newsletter/newsletter.js:60
msgid "Are you sure you want to send this newsletter now?"
msgstr ""
-#: core/doctype/document_naming_rule/document_naming_rule.js:16
-#: core/doctype/user_permission/user_permission_list.js:165
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
+#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
-msgstr "Bạn có chắc không?"
+msgstr ""
-#. Label of a Code field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the arguments (Code) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Arguments"
msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Arial"
-msgstr "Arial"
+msgstr ""
-#: desk/form/assign_to.py:102
+#: frappe/core/page/permission_manager/permission_manager_help.html:11
+msgid "As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User."
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:107
msgid "As document sharing is disabled, please give them the required permissions before assigning."
msgstr ""
-#: templates/emails/account_deletion_notification.html:3
+#: frappe/templates/emails/account_deletion_notification.html:3
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr ""
-#. Label of a Code field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
-msgstr "Chỉ định điều kiện"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:163
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
msgid "Assign To"
-msgstr "Để gán"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1804
+#: frappe/public/js/frappe/list/list_view.js:1950
msgctxt "Button in list view actions menu"
msgid "Assign To"
-msgstr "Để gán"
+msgstr ""
-#. Label of a Section Break field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+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 "Chỉ định cho người dùng"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:232
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:260
msgid "Assign a user"
msgstr ""
-#: automation/doctype/assignment_rule/assignment_rule.js:52
+#: frappe/automation/doctype/assignment_rule/assignment_rule.js:52
msgid "Assign one by one, in sequence"
-msgstr "Chỉ định từng cái một, theo thứ tự"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:154
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:174
msgid "Assign to me"
-msgstr "Gán cho tôi"
+msgstr ""
-#: automation/doctype/assignment_rule/assignment_rule.js:53
+#: frappe/automation/doctype/assignment_rule/assignment_rule.js:53
msgid "Assign to the one who has the least assignments"
-msgstr "Chỉ định cho người có ít bài tập nhất"
+msgstr ""
-#: automation/doctype/assignment_rule/assignment_rule.js:54
+#: frappe/automation/doctype/assignment_rule/assignment_rule.js:54
msgid "Assign to the user set in this field"
-msgstr "Gán cho tập người dùng trong trường này"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Assigned"
-msgstr "giao"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Assigned"
-msgstr "giao"
-
-#: desk/report/todo/todo.py:41
+#. Label of the assigned_by (Link) field in DocType 'ToDo'
+#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:41
msgid "Assigned By"
-msgstr "Giao By"
+msgstr ""
-#. Label of a Link field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Assigned By"
-msgstr "Giao By"
-
-#. Label of a Read Only field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#. Label of the assigned_by_full_name (Read Only) field in DocType 'ToDo'
+#: frappe/desk/doctype/todo/todo.json
msgid "Assigned By Full Name"
-msgstr "Giao By Tên đầy đủ"
+msgstr ""
-#: desk/doctype/todo/todo_list.js:35
-msgid "Assigned By Me"
-msgstr "Giao By Me"
-
-#: model/__init__.py:151 model/meta.py:55
-#: public/js/frappe/list/list_sidebar_group_by.js:71
-#: public/js/frappe/model/meta.js:207 public/js/frappe/model/model.js:126
-#: public/js/frappe/views/interaction.js:82
+#: frappe/model/meta.py:60
+#: 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 "Để giao"
+msgstr ""
-#: desk/report/todo/todo.py:40
+#: frappe/desk/report/todo/todo.py:40
msgid "Assigned To/Owner"
-msgstr "Để giao / chủ sở hữu"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:241
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:269
msgid "Assigning..."
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Assignment"
-msgstr "Chuyển nhượng"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Assignment Completed"
-msgstr "phân Hoàn thành"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Assignment Completed"
-msgstr "phân Hoàn thành"
-
-#. Label of a Section Break field in DocType 'Assignment Rule'
-#. Label of a Table field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the sb (Section Break) field in DocType 'Assignment Rule'
+#. Label of the assignment_days (Table) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assignment Days"
-msgstr "Ngày chuyển nhượng"
-
-#: automation/doctype/assignment_rule/assignment_rule.py:64
-msgid "Assignment Day{0} {1} has been repeated."
msgstr ""
#. Name of a DocType
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgid "Assignment Rule"
-msgstr "Quy tắc chuyển nhượng"
-
#. Label of a Link in the Tools Workspace
#. Label of a shortcut in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Assignment Rule"
+#. 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 "Quy tắc chuyển nhượng"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Assignment Rule"
-msgstr "Quy tắc chuyển nhượng"
-
-#. Label of a Link field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Assignment Rule"
-msgstr "Quy tắc chuyển nhượng"
-
-#. Name of a DocType
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgid "Assignment Rule Day"
-msgstr "Ngày quy tắc chuyển nhượng"
-
-#. Name of a DocType
-#: automation/doctype/assignment_rule_user/assignment_rule_user.json
-msgid "Assignment Rule User"
-msgstr "Quy tắc chuyển nhượng người dùng"
-
-#: automation/doctype/assignment_rule/assignment_rule.py:53
-msgid "Assignment Rule is not allowed on {0} document type"
msgstr ""
-#. Label of a Section Break field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. 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 "Quy tắc chuyển nhượng"
+msgstr ""
-#: desk/doctype/notification_log/notification_log.py:157
+#: frappe/desk/doctype/notification_log/notification_log.py:153
msgid "Assignment Update on {0}"
-msgstr "Cập nhật bài tập trên {0}"
+msgstr ""
-#: desk/form/assign_to.py:75
+#: frappe/desk/form/assign_to.py:78
msgid "Assignment for {0} {1}"
-msgstr "Bài tập cho {0} {1}"
+msgstr ""
-#: desk/doctype/todo/todo.py:62
+#: frappe/desk/doctype/todo/todo.py:62
msgid "Assignment of {0} removed by {1}"
msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:227
+#. Label of the enable_email_assignment (Check) field in DocType 'Notification
+#. Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:255
msgid "Assignments"
-msgstr "Bài tập"
+msgstr ""
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "Assignments"
-msgstr "Bài tập"
-
-#: public/js/frappe/form/grid_row.js:629
+#: frappe/public/js/frappe/form/grid_row.js:680
msgid "At least one column is required to show in the grid."
msgstr ""
-#: website/doctype/web_form/web_form.js:64
-msgid "Atleast one field is required in Web Form Fields Table"
+#: frappe/website/doctype/web_form/web_form.js:73
+msgid "At least one field is required in Web Form Fields Table"
msgstr ""
-#: core/doctype/data_export/data_export.js:44
-msgid "Atleast one field of Parent Document Type is mandatory"
-msgstr "Atleast một trường thuộc loại tài liệu cha mẹ là bắt buộc"
-
-#: public/js/frappe/form/controls/attach.js:5
-msgid "Attach"
-msgstr "Đính kèm"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Attach"
-msgstr "Đính kèm"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Attach"
-msgstr "Đính kèm"
+#: frappe/core/doctype/data_export/data_export.js:44
+msgid "At least one field of Parent Document Type is mandatory"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Attach"
-msgstr "Đính kèm"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/public/js/form_builder/components/controls/AttachControl.vue:15
+#: frappe/public/js/frappe/form/controls/attach.js:5
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Attach"
-msgstr "Đính kèm"
+msgstr ""
-#: public/js/frappe/views/communication.js:139
+#: frappe/public/js/frappe/views/communication.js:152
msgid "Attach Document Print"
-msgstr "Đính kèm tài liệu In"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Attach Image"
-msgstr "Hình ảnh đính kèm"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Attach Image"
-msgstr "Hình ảnh đính kèm"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Attach Image"
-msgstr "Hình ảnh đính kèm"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Attach Image"
-msgstr "Hình ảnh đính kèm"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Attach Image"
-msgstr "Hình ảnh đính kèm"
+msgstr ""
-#. Label of a Attach field in DocType 'Package Import'
-#: core/doctype/package_import/package_import.json
-msgctxt "Package Import"
+#. Label of the attach_package (Attach) field in DocType 'Package Import'
+#: frappe/core/doctype/package_import/package_import.json
msgid "Attach Package"
msgstr ""
-#. Label of a Check field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the attach_print (Check) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Attach Print"
-msgstr "Đính kèm In"
+msgstr ""
-#: website/doctype/website_slideshow/website_slideshow.js:8
+#: frappe/public/js/frappe/file_uploader/WebLink.vue:10
+msgid "Attach a web link"
+msgstr ""
+
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:8
msgid "Attach files / urls and add in table."
-msgstr "Đính kèm tệp / url và thêm vào bảng."
+msgstr ""
-#. Label of a Code field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#. Label of the attached_file (Code) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Attached File"
-msgstr "Tập tin đính kèm"
+msgstr ""
-#. Label of a Link field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the attached_to_doctype (Link) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Attached To DocType"
-msgstr "Để gắn DocType"
+msgstr ""
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the attached_to_field (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Attached To Field"
-msgstr "Đã gắn vào trường"
+msgstr ""
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the attached_to_name (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Attached To Name"
-msgstr "Để gắn Tên"
+msgstr ""
-#: core/doctype/file/file.py:140
+#: frappe/core/doctype/file/file.py:142
msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
-msgstr "Đính kèm"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Attachment"
-msgstr "Đính kèm"
-
-#. Label of a Attach field in DocType 'Newsletter Attachment'
-#: email/doctype/newsletter_attachment/newsletter_attachment.json
-msgctxt "Newsletter Attachment"
-msgid "Attachment"
-msgstr "Đính kèm"
-
-#. Label of a Int field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the attachment_limit (Int) field in DocType 'Email Account'
+#. Label of the attachment_limit (Int) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Attachment Limit (MB)"
-msgstr "Giới hạn Attachment (MB)"
+msgstr ""
-#. Label of a Int field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Attachment Limit (MB)"
-msgstr "Giới hạn Attachment (MB)"
-
-#: core/doctype/file/file.py:321
-#: public/js/frappe/form/sidebar/attachments.js:36
+#: frappe/core/doctype/file/file.py:324
+#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr ""
-#. Label of a HTML field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#. Label of the attachment_link (HTML) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Attachment Link"
-msgstr "Liên kết tệp đính kèm"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Attachment Removed"
-msgstr "Đã gỡ bỏ đính kèm"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Attachment Removed"
-msgstr "Đã gỡ bỏ đính kèm"
-
-#: core/doctype/file/utils.py:40
-#: email/doctype/newsletter/templates/newsletter.html:47
-#: website/doctype/web_form/templates/web_form.html:103
+#. Label of the attachments (Code) field in DocType 'Email Queue'
+#. Label of the attachments (Table) field in DocType 'Newsletter'
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/email/doctype/newsletter/templates/newsletter.html:47
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
+#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
-msgstr "File đính kèm"
+msgstr ""
-#. Label of a Code field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Attachments"
-msgstr "File đính kèm"
-
-#. Label of a Table field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Attachments"
-msgstr "File đính kèm"
-
-#: public/js/frappe/form/print_utils.js:89
+#: frappe/public/js/frappe/form/print_utils.js:91
msgid "Attempting Connection to QZ Tray..."
-msgstr "Đang cố gắng kết nối với khay QZ ..."
+msgstr ""
-#: public/js/frappe/form/print_utils.js:105
+#: frappe/public/js/frappe/form/print_utils.js:107
msgid "Attempting to launch QZ Tray..."
-msgstr "Đang cố gắng khởi chạy Khay QZ ..."
+msgstr ""
-#. Label of a Table field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#: frappe/www/attribution.html:9
+msgid "Attribution"
+msgstr ""
+
+#. Label of the email_group (Table) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Audience"
msgstr ""
#. Name of a report
-#: custom/report/audit_system_hooks/audit_system_hooks.json
+#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
msgstr ""
#. Name of a DocType
-#: core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/audit_trail/audit_trail.json
msgid "Audit Trail"
msgstr ""
-#. Label of a Code field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the auth_url_data (Code) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Auth URL Data"
-msgstr "Dữ liệu URL Auth"
+msgstr ""
+#. Label of the backend_app_flow (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Authenticate as Service Principal"
+msgstr ""
+
+#. Label of the authentication_column (Section Break) field in DocType 'Email
+#. Account'
+#. Label of the authentication_credential_section (Section Break) field in
+#. DocType 'Push Notification Settings'
#. Label of a Card Break in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Authentication"
-msgstr "Xác thực"
+msgstr ""
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Authentication"
-msgstr "Xác thực"
-
-#: www/qrcode.html:19
+#: frappe/www/qrcode.html:19
msgid "Authentication Apps you can use are: "
-msgstr "Ứng dụng xác thực bạn có thể sử dụng là:"
+msgstr ""
-#: email/doctype/email_account/email_account.py:294
+#: frappe/email/doctype/email_account/email_account.py:339
msgid "Authentication failed while receiving emails from Email Account: {0}."
-msgstr "Xác thực không thành công khi nhận email từ Tài khoản Email: {0}."
+msgstr ""
-#. Label of a Data field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
+#. Label of the author (Data) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
msgid "Author"
-msgstr "tác giả"
-
-#. Label of a Password field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
-msgid "Authorization Code"
-msgstr "Mã ủy quyền"
-
-#. Label of a Password field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
-msgid "Authorization Code"
-msgstr "Mã ủy quyền"
-
-#. Label of a Data field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Authorization Code"
-msgstr "Mã ủy quyền"
-
-#. Label of a Data field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
-msgid "Authorization Code"
-msgstr "Mã ủy quyền"
+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 'Google Drive'
+#. Label of the authorization_code (Data) field in DocType 'OAuth Authorization
+#. Code'
#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/integrations/doctype/google_drive/google_drive.json
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
-msgstr "Mã ủy quyền"
+msgstr ""
-#. Label of a Small Text field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the authorization_uri (Small Text) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Authorization URI"
msgstr ""
-#: templates/includes/oauth_confirmation.html:32
+#: frappe/templates/includes/oauth_confirmation.html:35
msgid "Authorization error for {}."
msgstr ""
-#. Label of a Button field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the authorize_api_access (Button) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Authorize API Access"
msgstr ""
-#. Label of a Button field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the authorize_api_indexing_access (Button) field in DocType
+#. 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Authorize API Indexing Access"
-msgstr "Cho phép quyền truy cập lập chỉ mục API"
+msgstr ""
-#. Label of a Button field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Label of the authorize_google_calendar_access (Button) field in DocType
+#. 'Google Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Authorize Google Calendar Access"
-msgstr "Cho phép truy cập lịch Google"
+msgstr ""
-#. Label of a Button field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
+#. Label of the authorize_google_contacts_access (Button) field in DocType
+#. 'Google Contacts'
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Authorize Google Contacts Access"
-msgstr "Cho phép truy cập danh bạ Google"
+msgstr ""
-#. Label of a Button field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
+#. Label of the authorize_google_drive_access (Button) field in DocType 'Google
+#. Drive'
+#: frappe/integrations/doctype/google_drive/google_drive.json
msgid "Authorize Google Drive Access"
-msgstr "Cho phép truy cập Google Drive"
+msgstr ""
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the authorize_url (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Authorize URL"
-msgstr "Ủy quyền URL"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Authorized"
-msgstr "Ủy quyền"
+msgstr ""
-#. Option for the 'Type' (Select) field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Auto"
-msgstr "Tự động"
+#: frappe/www/attribution.html:20
+msgid "Authors"
+msgstr ""
+
+#: frappe/www/attribution.html:37
+msgid "Authors / Maintainers"
+msgstr ""
#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth
#. Provider Settings'
-#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
-msgctxt "OAuth Provider Settings"
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
msgid "Auto"
-msgstr "Tự động"
-
-#. Name of a DocType
-#: email/doctype/auto_email_report/auto_email_report.json
-msgid "Auto Email Report"
-msgstr "Báo cáo Email tự động"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Auto Email Report"
+#. 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 "Báo cáo Email tự động"
+msgstr ""
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the autoname (Data) field in DocType 'DocType'
+#. Label of the autoname (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Auto Name"
-msgstr "Tên tự động"
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Auto Name"
-msgstr "Tên tự động"
+msgstr ""
#. Name of a DocType
-#: automation/doctype/auto_repeat/auto_repeat.json
-#: public/js/frappe/utils/common.js:442
-msgid "Auto Repeat"
-msgstr "Tự động lặp lại"
-
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Auto Repeat"
+#: 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 "Tự động lặp lại"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Auto Repeat"
-msgstr "Tự động lặp lại"
+msgstr ""
#. Name of a DocType
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
msgid "Auto Repeat Day"
msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:158
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165
msgid "Auto Repeat Day{0} {1} has been repeated."
msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:436
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448
msgid "Auto Repeat Document Creation Failed"
-msgstr "Tạo lại tài liệu tự động không thành công"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.js:115
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:117
msgid "Auto Repeat Schedule"
msgstr ""
-#: public/js/frappe/utils/common.js:434
+#: frappe/public/js/frappe/utils/common.js:434
msgid "Auto Repeat created for this document"
-msgstr "Tự động lặp lại được tạo cho tài liệu này"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:439
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451
msgid "Auto Repeat failed for {0}"
-msgstr "Tự động lặp lại thất bại trong {0}"
+msgstr ""
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the auto_reply (Section Break) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Auto Reply"
msgstr ""
-#. Label of a Text Editor field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the auto_reply_message (Text Editor) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Auto Reply Message"
-msgstr "Auto Reply tin nhắn"
+msgstr ""
-#: automation/doctype/assignment_rule/assignment_rule.py:179
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:177
msgid "Auto assignment failed: {0}"
-msgstr "Tự động gán không thành công: {0}"
+msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the follow_assigned_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that are assigned to you"
msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the follow_shared_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that are shared with you"
msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the follow_liked_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that you Like"
msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the follow_commented_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that you comment on"
msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the follow_created_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that you create"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Autocomplete"
-msgstr ""
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Autocomplete"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227
+msgid "Auto repeat failed. Please enable auto repeat after fixing the issues."
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Autocomplete"
msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "Autoincrement"
msgstr ""
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Automate processes and extend standard functionality using scripts and background jobs"
+msgstr ""
+
#. Option for the 'Communication Type' (Select) field in DocType
#. 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Automated Message"
msgstr ""
-#: public/js/frappe/ui/theme_switcher.js:69
-msgid "Automatic"
-msgstr ""
-
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
+#: frappe/public/js/frappe/ui/theme_switcher.js:69
msgid "Automatic"
msgstr ""
-#: email/doctype/email_account/email_account.py:675
+#: frappe/email/doctype/email_account/email_account.py:774
msgid "Automatic Linking can be activated only for one Email Account."
-msgstr "Liên kết tự động chỉ có thể được kích hoạt cho một Tài khoản Email."
+msgstr ""
-#: email/doctype/email_account/email_account.py:670
+#: frappe/email/doctype/email_account/email_account.py:768
msgid "Automatic Linking can be activated only if Incoming is enabled."
-msgstr "Liên kết tự động chỉ có thể được kích hoạt nếu Bật đến."
+msgstr ""
-#. Label of a Int field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Description of a DocType
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Automatically Assign Documents to Users"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:128
+msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings."
+msgstr ""
+
+#. Label of the auto_account_deletion (Int) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Automatically delete account within (hours)"
msgstr ""
#. Label of a Card Break in the Tools Workspace
-#: automation/workspace/tools/tools.json
+#: frappe/automation/workspace/tools/tools.json
msgid "Automation"
-msgstr "Tự động hóa"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
+#. Label of the avatar (Attach Image) field in DocType 'Blogger'
+#: frappe/website/doctype/blogger/blogger.json
msgid "Avatar"
-msgstr "Avatar"
-
-#: public/js/frappe/form/controls/password.js:89
-#: public/js/frappe/ui/group_by/group_by.js:21
-msgid "Average"
-msgstr "Trung bình cộng"
+msgstr ""
#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Average"
-msgstr "Trung bình cộng"
-
#. Option for the 'Function' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/form/controls/password.js:88
+#: frappe/public/js/frappe/ui/group_by/group_by.js:21
msgid "Average"
-msgstr "Trung bình cộng"
+msgstr ""
-#: public/js/frappe/ui/group_by/group_by.js:332
+#: frappe/public/js/frappe/ui/group_by/group_by.js:342
msgid "Average of {0}"
-msgstr "Trung bình {0}"
+msgstr ""
-#: utils/password_strength.py:132
+#: frappe/utils/password_strength.py:130
msgid "Avoid dates and years that are associated with you."
-msgstr "Tránh ngày và năm đó được liên kết với bạn."
+msgstr ""
-#: utils/password_strength.py:126
+#: frappe/utils/password_strength.py:124
msgid "Avoid recent years."
-msgstr "Tránh những năm gần đây."
+msgstr ""
-#: utils/password_strength.py:119
+#: frappe/utils/password_strength.py:117
msgid "Avoid sequences like abc or 6543 as they are easy to guess"
-msgstr "Tránh trình tự như abc hay 6543 khi họ rất dễ đoán"
+msgstr ""
-#: utils/password_strength.py:126
+#: frappe/utils/password_strength.py:124
msgid "Avoid years that are associated with you."
-msgstr "Tránh năm có liên quan đến bạn."
+msgstr ""
-#. Label of a Check field in DocType 'User Email'
-#: core/doctype/user_email/user_email.json
-msgctxt "User Email"
+#. Label of the awaiting_password (Check) field in DocType 'User Email'
+#: frappe/core/doctype/user_email/user_email.json
msgid "Awaiting Password"
-msgstr "Đang chờ mật khẩu"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the awaiting_password (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Awaiting password"
-msgstr "Đang chờ Mật khẩu"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:200
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:195
msgid "Awesome Work"
msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:358
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:353
msgid "Awesome, now try making an entry yourself"
msgstr ""
-#: public/js/frappe/utils/number_systems.js:9
+#: frappe/public/js/frappe/utils/number_systems.js:9
msgctxt "Number system"
msgid "B"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B0"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B1"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B10"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B2"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B3"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B4"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B5"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B6"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B7"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B8"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B9"
msgstr ""
-#: public/js/frappe/views/communication.js:76
+#. Label of the bcc (Code) field in DocType 'Communication'
+#. Label of the bcc (Code) field in DocType 'Notification Recipient'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "BCC"
-msgstr "BCC"
+msgstr ""
-#. Label of a Code field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/public/js/frappe/views/communication.js:85
+msgctxt "Email Recipients"
msgid "BCC"
-msgstr "BCC"
+msgstr ""
-#. Label of a Code field in DocType 'Notification Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
-msgid "BCC"
-msgstr "BCC"
+#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:181
+msgid "Back"
+msgstr ""
-#: templates/pages/integrations/gcalendar-success.html:13
+#: frappe/templates/pages/integrations/gcalendar-success.html:13
msgid "Back to Desk"
-msgstr "Quay lại Desk"
+msgstr ""
-#: www/404.html:20
+#: frappe/www/404.html:26
msgid "Back to Home"
-msgstr "Trở về nhà"
+msgstr ""
-#: www/login.html:181 www/login.html:212
+#: frappe/www/login.html:201 frappe/www/login.html:232
msgid "Back to Login"
-msgstr "Quay lại đăng nhập"
+msgstr ""
-#. Label of a Color field in DocType 'Social Link Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#. Label of the background_color (Color) field in DocType 'Number Card'
+#. Label of the background_color (Color) field in DocType 'Social Link
+#. Settings'
+#. Label of the background_color (Link) field in DocType 'Website Theme'
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Background Color"
-msgstr "Màu nền"
+msgstr ""
-#. Label of a Link field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Background Color"
-msgstr "Màu nền"
-
-#. Label of a Attach Image field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the background_image (Attach Image) field in DocType 'Web Page
+#. Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Background Image"
msgstr ""
-#: public/js/frappe/ui/toolbar/toolbar.js:143
-msgid "Background Jobs"
-msgstr "Công việc nền"
-
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "RQ Job"
+#. Label of the background_jobs_section (Section Break) field in DocType
+#. 'System Health Report'
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
msgid "Background Jobs"
-msgstr "Công việc nền"
+msgstr ""
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the background_jobs_check (Data) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Background Jobs Check"
+msgstr ""
+
+#. Label of the background_jobs_queue (Autocomplete) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Background Jobs Queue"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:87
+msgid "Background Print (required for >25 documents)"
+msgstr ""
+
+#. Label of the background_workers (Section Break) field in DocType 'System
+#. Settings'
+#. Label of the background_workers (Table) field in DocType 'System Health
+#. Report'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Background Workers"
-msgstr "Người làm công nền"
+msgstr ""
-#: integrations/doctype/google_drive/google_drive.js:31
+#: frappe/integrations/doctype/google_drive/google_drive.py:170
+msgid "Backing up Data."
+msgstr ""
+
+#: frappe/integrations/doctype/google_drive/google_drive.js:32
msgid "Backing up to Google Drive."
-msgstr "Sao lưu lên Google Drive."
+msgstr ""
#. Label of a Card Break in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Backup"
-msgstr "Sao lưu"
+msgstr ""
-#. Label of a Section Break field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#. Label of the backup_details_section (Section Break) field in DocType 'S3
+#. Backup Settings'
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Backup Details"
-msgstr "Chi tiết dự phòng"
+msgstr ""
-#: desk/page/backups/backups.js:26
+#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
msgstr ""
-#. Label of a Check field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#. Label of the backup_files (Check) field in DocType 'S3 Backup Settings'
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Backup Files"
-msgstr "Tập tin sao lưu"
+msgstr ""
-#. Label of a Data field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
+#. Label of the backup_folder_id (Data) field in DocType 'Google Drive'
+#: frappe/integrations/doctype/google_drive/google_drive.json
msgid "Backup Folder ID"
-msgstr "ID thư mục sao lưu"
+msgstr ""
-#. Label of a Data field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
+#. Label of the backup_folder_name (Data) field in DocType 'Google Drive'
+#: frappe/integrations/doctype/google_drive/google_drive.json
msgid "Backup Folder Name"
-msgstr "Tên thư mục sao lưu"
+msgstr ""
-#. Label of a Select field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
+#. Label of the backup_frequency (Select) field in DocType 'Dropbox Settings'
+#. Label of the frequency (Select) field in DocType 'S3 Backup Settings'
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Backup Frequency"
-msgstr "Tần số sao lưu"
+msgstr ""
-#. Label of a Select field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Backup Frequency"
-msgstr "Tần số sao lưu"
+#. Label of the backup_path (Data) field in DocType 'S3 Backup Settings'
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
+msgid "Backup Path"
+msgstr ""
-#: desk/page/backups/backups.py:99
+#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
-msgstr "Công việc sao lưu đã được xếp hàng đợi. Bạn sẽ nhận được một email với liên kết tải xuống"
+msgstr ""
#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup
#. Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Backup public and private files along with the database."
-msgstr "Sao lưu các tệp công khai và riêng tư cùng với cơ sở dữ liệu."
+msgstr ""
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the backups_tab (Tab Break) field in DocType 'System Settings'
+#. Label of the backups_section (Section Break) field in DocType 'System Health
+#. Report'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Backups"
-msgstr "Sao lưu"
+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:65
+msgid "Bad Cron Expression"
+msgstr ""
#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Banker's Rounding"
msgstr ""
#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Banker's Rounding (legacy)"
msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the banner (Section Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Banner"
-msgstr "Biểu ngữ"
+msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the banner_html (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Banner HTML"
-msgstr "Biểu ngữ HTML"
+msgstr ""
-#. Label of a Attach Image field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the banner_image (Attach Image) field in DocType 'User'
+#. Label of the banner_image (Attach Image) field in DocType 'Web Form'
+#: frappe/core/doctype/user/user.json
+#: frappe/website/doctype/web_form/web_form.json
msgid "Banner Image"
-msgstr "Banner Image"
-
-#. Label of a Attach Image field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Banner Image"
-msgstr "Banner Image"
+msgstr ""
#. Description of the 'Banner HTML' (Code) field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Banner is above the Top Menu Bar."
-msgstr "BIểu ngữ nằm trên cùng thanh menu"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Bar"
-msgstr "Quán ba"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Barcode"
-msgstr "Mã vạch"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Barcode"
-msgstr "Mã vạch"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Barcode"
-msgstr "Mã vạch"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the base_dn (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Base Distinguished Name (DN)"
-msgstr "Cơ sở tên phân biệt (DN)"
+msgstr ""
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the base_url (Data) field in DocType 'Geolocation Settings'
+#. Label of the base_url (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Base URL"
-msgstr "URL cơ sở"
+msgstr ""
-#: printing/page/print/print.js:266 printing/page/print/print.js:320
+#. Label of the based_on (Link) field in DocType 'Language'
+#: frappe/core/doctype/language/language.json
+#: frappe/printing/page/print/print.js:273
+#: frappe/printing/page/print/print.js:327
msgid "Based On"
-msgstr "Dựa trên"
-
-#. Label of a Link field in DocType 'Language'
-#: core/doctype/language/language.json
-msgctxt "Language"
-msgid "Based On"
-msgstr "Dựa trên"
+msgstr ""
#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Based on Field"
-msgstr "Dựa trên lĩnh vực"
+msgstr ""
-#. Label of a Link field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the user (Link) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Based on Permissions For User"
-msgstr "Dựa trên sự chấp thuận đối với người sử dụng"
+msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Basic"
-msgstr "Cơ bản"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the section_break_3 (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Basic Info"
msgstr ""
+#: frappe/public/js/frappe/ui/filters/filter.js:63
+#: frappe/public/js/frappe/ui/filters/filter.js:69
+msgid "Before"
+msgstr ""
+
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Cancel"
-msgstr "Trước khi hủy"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Delete"
-msgstr "Trước khi xóa"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Discard"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Insert"
-msgstr "Trước khi chèn"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Print"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Rename"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Save"
-msgstr "Trước khi lưu"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Save (Submitted Document)"
-msgstr "Trước khi lưu (Tài liệu đã gửi)"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Submit"
-msgstr "Trước khi gửi"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Validate"
msgstr ""
#. Option for the 'Level' (Select) field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
+#: frappe/website/doctype/help_article/help_article.json
msgid "Beginner"
-msgstr "Người bắt đầu"
+msgstr ""
-#: public/js/frappe/form/link_selector.js:29
+#: frappe/public/js/frappe/form/link_selector.js:29
msgid "Beginning with"
-msgstr "Bắt đầu bằng"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the beta (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Beta"
-msgstr "thử nghiệm"
+msgstr ""
-#: utils/password_strength.py:75
+#: frappe/utils/password_strength.py:73
msgid "Better add a few more letters or another word"
-msgstr "Nên thêm một vài chữ cái hoặc một từ"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:27
+#: frappe/public/js/frappe/ui/filters/filter.js:27
msgid "Between"
-msgstr "Giữa"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Billing"
-msgstr "thanh toán"
+msgstr ""
-#. Label of a Small Text field in DocType 'About Us Team Member'
-#: website/doctype/about_us_team_member/about_us_team_member.json
-msgctxt "About Us Team Member"
+#: frappe/public/js/frappe/form/templates/contact_list.html:27
+msgid "Billing Contact"
+msgstr ""
+
+#. Label of the binary_logging (Data) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Binary Logging"
+msgstr ""
+
+#. Label of the bio (Small Text) field in DocType 'User'
+#. Label of the bio (Small Text) field in DocType 'About Us Team Member'
+#. Label of the bio (Small Text) field in DocType 'Blogger'
+#: frappe/core/doctype/user/user.json
+#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
+#: frappe/website/doctype/blogger/blogger.json
msgid "Bio"
-msgstr "Sinh học"
+msgstr ""
-#. Label of a Small Text field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
-msgid "Bio"
-msgstr "Sinh học"
-
-#. Label of a Small Text field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Bio"
-msgstr "Sinh học"
-
-#. Label of a Date field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the birth_date (Date) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Birth Date"
-msgstr "Ngày sinh"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:41
+#: frappe/public/js/frappe/data_import/data_exporter.js:41
msgid "Blank Template"
-msgstr "Mẫu trống"
+msgstr ""
#. Name of a DocType
-#: core/doctype/block_module/block_module.json
+#: frappe/core/doctype/block_module/block_module.json
msgid "Block Module"
-msgstr "Khối mô đun"
+msgstr ""
-#. Label of a Table field in DocType 'Module Profile'
-#: core/doctype/module_profile/module_profile.json
-msgctxt "Module Profile"
+#. Label of the block_modules (Table) field in DocType 'Module Profile'
+#. Label of the block_modules (Table) field in DocType 'User'
+#: frappe/core/doctype/module_profile/module_profile.json
+#: frappe/core/doctype/user/user.json
msgid "Block Modules"
-msgstr "Khối mô đun"
+msgstr ""
-#. Label of a Table field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Block Modules"
-msgstr "Khối mô đun"
-
-#. Label of a Check field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#. Label of the blocked (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Blocked"
-msgstr "Đã ngăn lại"
+msgstr ""
#. Label of a Card Break in the Website Workspace
-#: website/doctype/blog_post/blog_post.py:239
-#: website/doctype/blog_post/templates/blog_post.html:13
-#: website/doctype/blog_post/templates/blog_post_list.html:2
-#: website/doctype/blog_post/templates/blog_post_list.html:11
-#: website/workspace/website/website.json
+#: frappe/website/doctype/blog_post/blog_post.py:245
+#: frappe/website/doctype/blog_post/templates/blog_post.html:13
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11
+#: frappe/website/workspace/website/website.json
msgid "Blog"
-msgstr "Blog"
+msgstr ""
#. Name of a DocType
-#: website/doctype/blog_category/blog_category.json
-msgid "Blog Category"
-msgstr "Mục Blog"
-
+#. Label of the blog_category (Link) field in DocType 'Blog Post'
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Blog Category"
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/workspace/website/website.json
msgid "Blog Category"
-msgstr "Mục Blog"
+msgstr ""
-#. Label of a Link field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Blog Category"
-msgstr "Mục Blog"
-
-#. Label of a Small Text field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the blog_intro (Small Text) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Blog Intro"
-msgstr "Giới thiệu Blog"
+msgstr ""
-#. Label of a Small Text field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Blog Introduction"
-msgstr "Blog Giới thiệu"
+msgstr ""
#. Name of a DocType
-#: website/doctype/blog_post/blog_post.json
-msgid "Blog Post"
-msgstr "Bài Blog"
-
-#. Linked DocType in Blog Category's connections
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
-msgid "Blog Post"
-msgstr "Bài Blog"
-
#. Label of a Link in the Website Workspace
#. Label of a shortcut in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Blog Post"
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/workspace/website/website.json
msgid "Blog Post"
-msgstr "Bài Blog"
-
-#. Linked DocType in Blogger's connections
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
-msgid "Blog Post"
-msgstr "Bài Blog"
+msgstr ""
#. Name of a DocType
-#: website/doctype/blog_settings/blog_settings.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Blog Settings"
-msgstr "Thiết lập Blog"
+msgstr ""
-#. Label of a Data field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the blog_title (Data) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Blog Title"
-msgstr "Nhan đề blog"
+msgstr ""
#. Name of a role
+#. Label of the blogger (Link) field in DocType 'Blog Post'
#. Name of a DocType
-#: website/doctype/blog_category/blog_category.json
-#: website/doctype/blog_post/blog_post.json
-#: website/doctype/blog_settings/blog_settings.json
-#: website/doctype/blogger/blogger.json
-msgid "Blogger"
-msgstr "Blogger"
-
-#. Label of a Link field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Blogger"
-msgstr "Blogger"
-
#. Label of a Link in the Website Workspace
-#. Label of a shortcut in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Blogger"
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
+#: frappe/website/doctype/blogger/blogger.json
+#: frappe/website/workspace/website/website.json
msgid "Blogger"
-msgstr "Blogger"
-
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Blogger"
-msgstr "Blogger"
-
-#. Subtitle of the Module Onboarding 'Website'
-#: website/module_onboarding/website/website.json
-msgid "Blogs, Website View Tracking, and more."
msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Blue"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Blue"
msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. 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 "Dũng cảm"
-
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Bold"
-msgstr "Dũng cảm"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Bold"
-msgstr "Dũng cảm"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Bot"
-msgstr "Máy"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:126
+#: frappe/printing/page/print_format_builder/print_format_builder.js:126
msgid "Both DocType and Name required"
-msgstr "Đều phải có cả Dạng văn bản và Tên"
+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'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:154
msgid "Bottom"
-msgstr "Dưới cùng"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:248
msgid "Bottom Center"
msgstr ""
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Bottom Center"
-msgstr ""
-
-#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:247
msgid "Bottom Left"
msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Bottom Right"
-msgstr ""
-
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:249
msgid "Bottom Right"
msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Bounced"
-msgstr "đã thải hồi"
+msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the brand (Section Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand"
-msgstr "Nhãn"
+msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the brand_html (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand HTML"
-msgstr "Nhãn HTML"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the banner_image (Attach Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand Image"
-msgstr "Hình ảnh của nhãn hàng"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Brand Logo"
msgstr ""
#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid ""
-"Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n"
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n"
"has a transparent background and use the <img /> tag. Keep size as 200px x 30px"
msgstr ""
-#. Label of a Code field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the breadcrumbs (Code) field in DocType 'Web Form'
+#. Label of the breadcrumbs (Code) field in DocType 'Web Page'
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Breadcrumbs"
-msgstr "Đường dẫn"
+msgstr ""
-#. Label of a Code field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Breadcrumbs"
-msgstr "Đường dẫn"
-
-#: website/doctype/blog_post/templates/blog_post_list.html:18
-#: website/doctype/blog_post/templates/blog_post_list.html:21
+#. Label of the browse_by_category (Check) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Browse by category"
msgstr ""
-#. Label of a Check field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
-msgid "Browse by category"
+#. Label of the browser (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:36
+msgid "Browser"
msgstr ""
-#: website/report/website_analytics/website_analytics.js:36
-msgid "Browser"
-msgstr "Trình duyệt"
-
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Browser"
-msgstr "Trình duyệt"
-
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
+#. Label of the browser_version (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Browser Version"
-msgstr "Phiên bản trình duyệt"
+msgstr ""
-#: public/js/frappe/desk.js:19
+#: frappe/public/js/frappe/desk.js:19
msgid "Browser not supported"
-msgstr "Trình duyệt không được hỗ trợ"
+msgstr ""
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the brute_force_security (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Brute Force Security"
-msgstr "Brute Force Security"
+msgstr ""
-#. Label of a Data field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#. Label of the bucket (Data) field in DocType 'S3 Backup Settings'
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Bucket Name"
-msgstr "Tên nhóm"
+msgstr ""
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:66
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:71
msgid "Bucket {0} not found."
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
-#: core/workspace/build/build.json
+#: frappe/core/workspace/build/build.json
msgid "Build"
msgstr ""
-#: workflow/doctype/workflow/workflow_list.js:18
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Build your own reports, print formats, and dashboards. Create personalized workspaces for easier navigation"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow_list.js:18
msgid "Build {0}"
msgstr ""
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#: frappe/templates/includes/footer/footer_powered.html:1
+msgid "Built on {0}"
+msgstr ""
+
+#. Label of the bulk_actions (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Bulk Actions"
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:142
+#: frappe/core/doctype/user_permission/user_permission_list.js:142
msgid "Bulk Delete"
-msgstr "Xóa hàng loạt"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:256
+#: frappe/public/js/frappe/list/bulk_operations.js:321
msgid "Bulk Edit"
msgstr ""
-#: public/js/frappe/form/grid.js:1151
+#: frappe/public/js/frappe/form/grid.js:1184
msgid "Bulk Edit {0}"
-msgstr "Chỉnh sửa hàng loạt {0}"
+msgstr ""
-#. Name of a DocType
-#: desk/doctype/bulk_update/bulk_update.json
-msgid "Bulk Update"
-msgstr "Cật nhật hàng loạt"
+#: frappe/desk/reportview.py:602
+msgid "Bulk Operation Failed"
+msgstr ""
+
+#: frappe/desk/reportview.py:606
+msgid "Bulk Operation Successful"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:131
+msgid "Bulk PDF Export"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Bulk Update"
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/bulk_update/bulk_update.json
msgid "Bulk Update"
-msgstr "Cật nhật hàng loạt"
+msgstr ""
-#: model/workflow.py:253
+#: frappe/model/workflow.py:254
msgid "Bulk approval only support up to 500 documents."
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.py:57
+#: frappe/desk/doctype/bulk_update/bulk_update.py:56
msgid "Bulk operation is enqueued in background."
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.py:70
+#: frappe/desk/doctype/bulk_update/bulk_update.py:68
msgid "Bulk operations only support up to 500 documents."
msgstr ""
-#: model/workflow.py:243
+#: frappe/model/workflow.py:243
msgid "Bulk {0} is enqueued in background."
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Button"
-msgstr "Nút"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Button"
-msgstr "Nút"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Button"
-msgstr "Nút"
+msgstr ""
-#. Label of a Check field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the button_gradients (Check) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Gradients"
-msgstr "Nút Gradients"
+msgstr ""
-#. Label of a Check field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the button_rounded_corners (Check) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Rounded Corners"
-msgstr "Nút tròn góc"
+msgstr ""
-#. Label of a Check field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the button_shadows (Check) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Shadows"
-msgstr "Bóng nút"
-
-#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "By \"Naming Series\" field"
msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "By \"Naming Series\" field"
msgstr ""
-#: website/doctype/web_page/web_page.js:111
-#: website/doctype/web_page/web_page.js:118
+#: frappe/website/doctype/web_page/web_page.js:111
+#: frappe/website/doctype/web_page/web_page.js:118
msgid "By default the title is used as meta title, adding a value here will override it."
-msgstr "Theo mặc định, tiêu đề được sử dụng làm tiêu đề meta, việc thêm một giá trị ở đây sẽ ghi đè lên nó."
+msgstr ""
#. Description of the 'Send Email for Successful Backup' (Check) field in
#. DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "By default, emails are only sent for failed backups."
msgstr ""
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "By fieldname"
msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "By fieldname"
-msgstr ""
-
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "By script"
msgstr ""
-#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "By script"
-msgstr ""
-
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in
+#. DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Bypass Restricted IP Address Check If Two Factor Auth Enabled"
-msgstr "Bỏ qua địa chỉ IP bị hạn chế Kiểm tra nếu xác thực hai yếu tố được bật"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the bypass_2fa_for_retricted_ip_users (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Bypass Two Factor Auth for users who login from restricted IP Address"
-msgstr "Bỏ qua hai yếu tố Auth cho người dùng đăng nhập từ Địa chỉ IP bị hạn chế"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in
+#. DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Bypass restricted IP Address check If Two Factor Auth Enabled"
-msgstr "Bỏ qua kiểm tra địa chỉ IP bị hạn chế Nếu đã bật tính năng xác thực hai yếu tố"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "C5E"
msgstr ""
-#: templates/print_formats/standard_macros.html:212
+#: frappe/templates/print_formats/standard_macros.html:220
msgid "CANCELLED"
-msgstr "Hủy"
+msgstr ""
-#: public/js/frappe/views/communication.js:71
+#. Label of the cc (Code) field in DocType 'Communication'
+#. Label of the cc (Code) field in DocType 'Notification Recipient'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "CC"
-msgstr "CC"
+msgstr ""
-#. Label of a Code field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/public/js/frappe/views/communication.js:76
+msgctxt "Email Recipients"
msgid "CC"
-msgstr "CC"
+msgstr ""
-#. Label of a Code field in DocType 'Notification Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
-msgid "CC"
-msgstr "CC"
-
-#. Label of a Data field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#. Label of the cmd (Data) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
msgid "CMD"
msgstr ""
-#. Label of a Section Break field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
-msgid "CSS"
-msgstr "CSS"
+#: frappe/public/js/frappe/color_picker/color_picker.js:20
+msgid "COLOR PICKER"
+msgstr ""
-#. Label of a Code field in DocType 'Print Style'
-#: printing/doctype/print_style/print_style.json
-msgctxt "Print Style"
+#. Label of the css_section (Section Break) field in DocType 'Custom HTML
+#. Block'
+#. Label of the css (Code) field in DocType 'Print Style'
+#. Label of the css (Code) field in DocType 'Web Page'
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "CSS"
-msgstr "CSS"
+msgstr ""
-#. Label of a Code field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "CSS"
-msgstr "CSS"
-
-#. Label of a Small Text field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the css_class (Small Text) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "CSS Class"
-msgstr "Lớp CSS"
+msgstr ""
#. Description of the 'Element Selector' (Data) field in DocType 'Form Tour
#. Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "CSS selector for the element you want to highlight."
msgstr ""
-#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "CSV"
-msgstr "CSV"
-
#. Option for the 'File Type' (Select) field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/core/doctype/data_export/data_export.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "CSV"
-msgstr "CSV"
+msgstr ""
-#. Label of a Data field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the cta_label (Data) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "CTA Label"
-msgstr "Nhãn CTA"
+msgstr ""
-#. Label of a Data field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the cta_url (Data) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "CTA URL"
-msgstr "URL CTA"
+msgstr ""
-#: sessions.py:31
+#. Label of the cache_section (Section Break) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Cache"
+msgstr ""
+
+#: frappe/sessions.py:35
msgid "Cache Cleared"
-msgstr "Xóa bộ nhớ cache"
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:181
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:181
msgid "Calculate"
-msgstr "Tính toán"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Event"
-msgid "Calendar"
-msgstr "Lịch"
-
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Calendar"
-msgstr "Lịch"
-
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Calendar"
-msgstr "Lịch"
+msgstr ""
-#. Label of a Data field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Label of the calendar_name (Data) field in DocType 'Google Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Calendar Name"
-msgstr "Tên lịch"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/public/js/frappe/list/base_list.js:207
msgid "Calendar View"
-msgstr "Chế độ xem lịch"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Calendar View"
-msgstr "Chế độ xem lịch"
-
-#: contacts/doctype/contact/contact.js:50
-msgid "Call"
-msgstr "Cuộc gọi"
+msgstr ""
#. Option for the 'Event Category' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/contacts/doctype/contact/contact.js:55
+#: frappe/desk/doctype/event/event.json
msgid "Call"
-msgstr "Cuộc gọi"
+msgstr ""
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the call_to_action (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Call To Action"
-msgstr "Kêu gọi hành động"
+msgstr ""
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the call_to_action_url (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Call To Action URL"
-msgstr "URL Kêu gọi Hành động"
+msgstr ""
-#. Label of a Section Break field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the cta_section (Section Break) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Call to Action"
msgstr ""
-#. Label of a Small Text field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the callback_message (Small Text) field in DocType 'Onboarding
+#. Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Callback Message"
-msgstr "Tin nhắn gọi lại"
+msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the callback_title (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Callback Title"
-msgstr "Tiêu đề gọi lại"
+msgstr ""
-#: public/js/frappe/ui/capture.js:326
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
+#: frappe/public/js/frappe/ui/capture.js:334
msgid "Camera"
-msgstr "Máy ảnh"
+msgstr ""
-#: public/js/frappe/utils/utils.js:1711
-#: website/report/website_analytics/website_analytics.js:39
+#. Label of the campaign (Link) field in DocType 'Newsletter'
+#. Label of the campaign (Data) field in DocType 'Web Page View'
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
msgstr ""
-#. Label of a Link field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Campaign"
-msgstr ""
-
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Campaign"
-msgstr ""
-
-#. Label of a Small Text field in DocType 'Marketing Campaign'
-#: website/doctype/marketing_campaign/marketing_campaign.json
-msgctxt "Marketing Campaign"
+#. Label of the campaign_description (Small Text) field in DocType 'UTM
+#. Campaign'
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Campaign Description (Optional)"
msgstr ""
-#: custom/doctype/custom_field/custom_field.py:360
+#: frappe/public/js/frappe/form/templates/set_sharing.html:4
+#: frappe/public/js/frappe/form/templates/set_sharing.html:50
+msgid "Can Read"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/set_sharing.html:7
+#: frappe/public/js/frappe/form/templates/set_sharing.html:53
+msgid "Can Share"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/set_sharing.html:6
+#: frappe/public/js/frappe/form/templates/set_sharing.html:52
+msgid "Can Submit"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/set_sharing.html:5
+#: frappe/public/js/frappe/form/templates/set_sharing.html:51
+msgid "Can Write"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "Can not rename as column {0} is already present on DocType."
msgstr ""
-#: core/doctype/doctype/doctype.py:1114
+#: frappe/core/doctype/doctype/doctype.py:1163
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
msgstr ""
#. Description of the 'Apply User Permission On' (Link) field in DocType 'User
#. Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#: frappe/core/doctype/user_type/user_type.json
msgid "Can only list down the document types which has been linked to the User document type."
msgstr ""
-#: model/rename_doc.py:367
+#: frappe/desk/form/document_follow.py:48
+msgid "Can't follow since changes are not tracked."
+msgstr ""
+
+#: frappe/model/rename_doc.py:366
msgid "Can't rename {0} to {1} because {0} doesn't exist."
msgstr ""
-#: core/doctype/doctype/doctype_list.js:113
-#: public/js/frappe/form/reminders.js:54
+#. Label of the cancel (Check) field in DocType 'Custom DocPerm'
+#. Label of the cancel (Check) field in DocType 'DocPerm'
+#. Label of the cancel (Check) field in DocType 'User Document Type'
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/reminders.js:54
msgid "Cancel"
-msgstr "Hủy bỏ"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1889
+#: frappe/public/js/frappe/list/list_view.js:2059
msgctxt "Button in list view actions menu"
msgid "Cancel"
-msgstr "Hủy bỏ"
+msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Cancel"
-msgstr "Hủy bỏ"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Cancel"
-msgstr "Hủy bỏ"
-
-#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Cancel"
-msgstr "Hủy bỏ"
-
-#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Cancel"
-msgstr "Hủy bỏ"
-
-#: public/js/frappe/ui/messages.js:68
+#: frappe/public/js/frappe/ui/messages.js:68
msgctxt "Secondary button in warning dialog"
msgid "Cancel"
-msgstr "Hủy bỏ"
+msgstr ""
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Cancel"
-msgstr "Hủy bỏ"
-
-#: public/js/frappe/form/form.js:998
+#: frappe/public/js/frappe/form/form.js:979
msgid "Cancel All"
msgstr ""
-#: public/js/frappe/form/form.js:985
+#: frappe/public/js/frappe/form/form.js:966
msgid "Cancel All Documents"
-msgstr "Hủy tất cả tài liệu"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:132
+#: frappe/email/doctype/newsletter/newsletter.js:132
msgid "Cancel Scheduling"
msgstr ""
-#: public/js/frappe/list/list_view.js:1894
+#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
-msgstr "Hủy {0} tài liệu?"
-
-#: desk/form/save.py:59 public/js/frappe/model/indicator.js:78
-#: public/js/frappe/ui/filters/filter.js:495
-msgid "Cancelled"
-msgstr "HỦY BỎ"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Cancelled"
-msgstr "HỦY BỎ"
-
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Cancelled"
-msgstr "HỦY BỎ"
-
#. Option for the 'Status' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Cancelled"
-msgstr "HỦY BỎ"
-
-#. Option for the 'Status' (Select) field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Cancelled"
-msgstr "HỦY BỎ"
-
#. Option for the 'Status' (Select) field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
+#: frappe/desk/form/save.py:64
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/public/js/frappe/model/indicator.js:78
+#: frappe/public/js/frappe/ui/filters/filter.js:540
msgid "Cancelled"
-msgstr "HỦY BỎ"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document.py:51
+#: frappe/core/doctype/deleted_document/deleted_document.py:52
msgid "Cancelled Document restored as Draft"
-msgstr "Đã hủy Phục hồi Tài liệu dưới dạng Bản nháp"
+msgstr ""
-#: public/js/frappe/form/save.js:13
+#: frappe/public/js/frappe/form/save.js:13
msgctxt "Freeze message while cancelling a document"
msgid "Cancelling"
-msgstr "Hủy"
+msgstr ""
-#: desk/form/linked_with.py:379
+#: frappe/desk/form/linked_with.py:381
msgid "Cancelling documents"
-msgstr "Hủy tài liệu"
+msgstr ""
-#: desk/doctype/bulk_update/bulk_update.py:94
+#: frappe/desk/doctype/bulk_update/bulk_update.py:91
msgid "Cancelling {0}"
-msgstr "Hủy {0}"
+msgstr ""
-#: core/doctype/prepared_report/prepared_report.py:244
+#: frappe/core/doctype/prepared_report/prepared_report.py:265
msgid "Cannot Download Report due to insufficient permissions"
msgstr ""
-#: client.py:461
+#: frappe/client.py:452
msgid "Cannot Fetch Values"
msgstr ""
-#: core/page/permission_manager/permission_manager.py:150
+#: frappe/core/page/permission_manager/permission_manager.py:156
msgid "Cannot Remove"
-msgstr "Không thể bỏ"
+msgstr ""
-#: model/base_document.py:1034
+#: frappe/model/base_document.py:1156
msgid "Cannot Update After Submit"
msgstr ""
-#: core/doctype/file/file.py:574
+#: frappe/core/doctype/file/file.py:621
msgid "Cannot access file path {0}"
msgstr ""
-#: public/js/workflow_builder/utils.js:183
+#: frappe/public/js/workflow_builder/utils.js:183
msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State"
msgstr ""
-#: workflow/doctype/workflow/workflow.py:112
+#: frappe/workflow/doctype/workflow/workflow.py:109
msgid "Cannot cancel before submitting. See Transition {0}"
-msgstr "Không thể hủy bỏ trước khi trình. Xem chuyển {0}"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:229
+#: frappe/public/js/frappe/list/bulk_operations.js:294
msgid "Cannot cancel {0}."
msgstr ""
-#: model/document.py:838
+#: frappe/model/document.py:1012
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: model/document.py:852
+#: frappe/model/document.py:1026
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
-#: public/js/workflow_builder/utils.js:170
+#: frappe/public/js/workflow_builder/utils.js:170
msgid "Cannot change state of Cancelled Document ({0} State)"
msgstr ""
-#: workflow/doctype/workflow/workflow.py:101
+#: frappe/workflow/doctype/workflow/workflow.py:98
msgid "Cannot change state of Cancelled Document. Transition row {0}"
-msgstr "Không thể thay đổi trạng thái của tài liệu bị hủy. Hàng chuyển {0}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1104
+#: frappe/core/doctype/doctype/doctype.py:1153
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr ""
-#: core/doctype/communication/communication.py:193
+#: frappe/core/doctype/communication/communication.py:169
msgid "Cannot create a {0} against a child document: {1}"
-msgstr "Không thể tạo một {0} đối với một tài liệu trẻ em: {1}"
+msgstr ""
-#: desk/doctype/workspace/workspace.py:250
+#: frappe/desk/doctype/workspace/workspace.py:272
msgid "Cannot create private workspace of other users"
msgstr ""
-#: core/doctype/file/file.py:151
+#: frappe/core/doctype/file/file.py:153
msgid "Cannot delete Home and Attachments folders"
-msgstr "Không thể xóa thư mục Home và đính kèm"
+msgstr ""
-#: model/delete_doc.py:367
+#: frappe/model/delete_doc.py:378
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
-msgstr "Không thể xóa hoặc hủy vì {0} {1} được liên kết với {2} {3} {4}"
-
-#: desk/doctype/workspace/workspace.py:417
-msgid "Cannot delete private workspace of other users"
msgstr ""
-#: desk/doctype/workspace/workspace.py:410
-msgid "Cannot delete public workspace without Workspace Manager role"
-msgstr ""
-
-#: custom/doctype/customize_form/customize_form.js:313
+#: frappe/custom/doctype/customize_form/customize_form.js:369
msgid "Cannot delete standard action. You can hide it if you want"
-msgstr "Không thể xóa hành động chuẩn. Bạn có thể ẩn nó nếu bạn muốn"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:328
+#: frappe/custom/doctype/customize_form/customize_form.js:391
msgid "Cannot delete standard document state."
msgstr ""
-#: custom/doctype/customize_form/customize_form.js:276
+#: frappe/custom/doctype/customize_form/customize_form.js:321
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr ""
-#: custom/doctype/customize_form/customize_form.js:298
-msgid "Cannot delete standard link. You can hide it if you want"
-msgstr "Không thể xóa liên kết chuẩn. Bạn có thể ẩn nó nếu bạn muốn"
+#: 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 ""
-#: custom/doctype/customize_form/customize_form.js:268
+#: 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 ""
-#: public/js/frappe/list/bulk_operations.js:171
+#: frappe/public/js/frappe/list/bulk_operations.js:215
msgid "Cannot delete {0}"
-msgstr "Không thể xóa {0}"
+msgstr ""
-#: utils/nestedset.py:302
+#: frappe/utils/nestedset.py:299
msgid "Cannot delete {0} as it has child nodes"
-msgstr "Không thể xóa {0} vì nó có các nút con"
+msgstr ""
-#: desk/doctype/dashboard/dashboard.py:49
+#: frappe/desk/doctype/dashboard/dashboard.py:48
msgid "Cannot edit Standard Dashboards"
msgstr ""
-#: email/doctype/notification/notification.py:120
+#: frappe/email/doctype/notification/notification.py:192
msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it"
-msgstr "Không thể chỉnh sửa Thông báo chuẩn. Để chỉnh sửa, hãy tắt tính năng này và sao chép nó"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.py:388
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:388
msgid "Cannot edit Standard charts"
msgstr ""
-#: core/doctype/report/report.py:68
+#: frappe/core/doctype/report/report.py:72
msgid "Cannot edit a standard report. Please duplicate and create a new report"
-msgstr "Không thể chỉnh sửa báo cáo chuẩn. Hãy lặp lại và tạo một báo cáo mới"
+msgstr ""
-#: model/document.py:858
+#: frappe/model/document.py:1032
msgid "Cannot edit cancelled document"
-msgstr "Không thể chỉnh sửa tài liệu hủy"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.js:378
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:378
msgid "Cannot edit filters for standard charts"
-msgstr "Không thể chỉnh sửa bộ lọc cho biểu đồ chuẩn"
+msgstr ""
-#: client.py:166
+#: frappe/desk/doctype/number_card/number_card.js:277
+#: frappe/desk/doctype/number_card/number_card.js:364
+msgid "Cannot edit filters for standard number cards"
+msgstr ""
+
+#: frappe/client.py:166
msgid "Cannot edit standard fields"
-msgstr "Không thể chỉnh sửa các lĩnh vực tiêu chuẩn"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:124
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr ""
-#: core/doctype/file/file.py:249
+#: frappe/core/doctype/file/file.py:252
msgid "Cannot find file {} on disk"
msgstr ""
-#: core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:561
msgid "Cannot get file contents of a Folder"
msgstr ""
-#: printing/page/print/print.js:817
+#: frappe/printing/page/print/print.js:844
msgid "Cannot have multiple printers mapped to a single print format."
-msgstr "Không thể có nhiều máy in được ánh xạ tới một định dạng in."
+msgstr ""
-#: model/document.py:926
+#: frappe/public/js/frappe/form/grid.js:1128
+msgid "Cannot import table with more than 5000 rows."
+msgstr ""
+
+#: frappe/model/document.py:1100
msgid "Cannot link cancelled document: {0}"
-msgstr "Không thể liên kết tài liệu hủy: {0}"
+msgstr ""
-#: model/mapper.py:184
+#: frappe/model/mapper.py:175
msgid "Cannot map because following condition fails:"
msgstr ""
-#: core/doctype/data_import/importer.py:924
+#: frappe/core/doctype/data_import/importer.py:971
msgid "Cannot match column {0} with any field"
-msgstr "Không thể khớp cột {0} với bất kỳ trường nào"
+msgstr ""
-#: public/js/frappe/form/grid_row.js:172
+#: frappe/public/js/frappe/form/grid_row.js:175
msgid "Cannot move row"
-msgstr "Không thể di chuyển hàng"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:865
+#: frappe/public/js/frappe/views/reports/report_view.js:921
msgid "Cannot remove ID field"
-msgstr "Không thể xóa trường ID"
+msgstr ""
-#: email/doctype/notification/notification.py:136
-msgid "Cannot set Notification on Document Type {0}"
-msgstr "Không thể đặt Thông báo trên Loại tài liệu {0}"
+#: frappe/core/page/permission_manager/permission_manager.py:132
+msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set"
+msgstr ""
-#: core/doctype/docshare/docshare.py:69
+#: frappe/email/doctype/notification/notification.py:209
+msgid "Cannot set Notification with event {0} on Document Type {1}"
+msgstr ""
+
+#: frappe/core/doctype/docshare/docshare.py:67
msgid "Cannot share {0} with submit permission as the doctype {1} is not submittable"
msgstr ""
-#: public/js/frappe/list/bulk_operations.js:226
+#: frappe/public/js/frappe/list/bulk_operations.js:291
msgid "Cannot submit {0}."
msgstr ""
-#: desk/doctype/workspace/workspace.py:351
-msgid "Cannot update private workspace of other users"
+#: frappe/desk/doctype/bulk_update/bulk_update.js:26
+#: frappe/public/js/frappe/list/bulk_operations.js:366
+msgid "Cannot update {0}"
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.js:26
-#: public/js/frappe/list/bulk_operations.js:301
-msgid "Cannot update {0}"
-msgstr "Không thể cập nhật {0}"
-
-#: model/db_query.py:1125
+#: frappe/model/db_query.py:1125
msgid "Cannot use sub-query in order by"
-msgstr "Không thể sử dụng phụ truy vấn theo thứ tự bằng"
+msgstr ""
-#: model/db_query.py:1143
+#: frappe/model/db_query.py:1144
msgid "Cannot use {0} in order/group by"
msgstr ""
-#: public/js/frappe/list/bulk_operations.js:232
+#: frappe/public/js/frappe/list/bulk_operations.js:297
msgid "Cannot {0} {1}."
msgstr ""
-#: utils/password_strength.py:185
+#: frappe/utils/password_strength.py:181
msgid "Capitalization doesn't help very much."
-msgstr "Hoa không giúp ích gì nhiều."
+msgstr ""
-#: public/js/frappe/ui/capture.js:286
+#: frappe/public/js/frappe/ui/capture.js:294
msgid "Capture"
msgstr ""
-#. Label of a Link field in DocType 'Number Card Link'
-#: desk/doctype/number_card_link/number_card_link.json
-msgctxt "Number Card Link"
+#. Label of the card (Link) field in DocType 'Number Card Link'
+#: frappe/desk/doctype/number_card_link/number_card_link.json
msgid "Card"
-msgstr "Thẻ"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Card Break"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:263
msgid "Card Label"
-msgstr "Nhãn thẻ"
+msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:227
+#: frappe/public/js/frappe/widgets/widget_dialog.js:262
msgid "Card Links"
msgstr ""
-#. Label of a Table field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
+#. Label of the cards (Table) field in DocType 'Dashboard'
+#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Cards"
-msgstr "thẻ"
+msgstr ""
-#: public/js/frappe/views/interaction.js:72
+#. Label of the category (Data) field in DocType 'Desktop Icon'
+#. Label of the category (Link) field in DocType 'Help Article'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/views/interaction.js:72
+#: frappe/website/doctype/help_article/help_article.json
msgid "Category"
-msgstr "thể loại"
+msgstr ""
-#. Label of a Data field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Category"
-msgstr "thể loại"
-
-#. Label of a Link field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
-msgid "Category"
-msgstr "thể loại"
-
-#. Label of a Text field in DocType 'Help Category'
-#: website/doctype/help_category/help_category.json
-msgctxt "Help Category"
+#. Label of the category_description (Text) field in DocType 'Help Category'
+#: frappe/website/doctype/help_category/help_category.json
msgid "Category Description"
-msgstr "Category Description"
+msgstr ""
-#. Label of a Data field in DocType 'Help Category'
-#: website/doctype/help_category/help_category.json
-msgctxt "Help Category"
+#. Label of the category_name (Data) field in DocType 'Help Category'
+#: frappe/website/doctype/help_category/help_category.json
msgid "Category Name"
-msgstr "Category Name"
+msgstr ""
-#: utils/data.py:1491
+#: frappe/utils/data.py:1520
msgid "Cent"
-msgstr "Phần trăm"
+msgstr ""
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
-msgid "Center"
-msgstr "Trung tâm"
-
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
-msgstr "Trung tâm"
+msgstr ""
-#: core/report/transaction_log_report/transaction_log_report.py:82
+#: frappe/core/page/permission_manager/permission_manager_help.html:16
+msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit."
+msgstr ""
+
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:82
msgid "Chain Integrity"
-msgstr "Tính toàn vẹn chuỗi"
+msgstr ""
-#. Label of a Small Text field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
+#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log'
+#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Chaining Hash"
-msgstr "Dây xích"
+msgstr ""
-#: tests/test_translate.py:98
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
+#: frappe/tests/test_translate.py:111
msgid "Change"
-msgstr "Thay đổi"
+msgstr ""
-#: tests/test_translate.py:99
+#: frappe/tests/test_translate.py:112
msgctxt "Coins"
msgid "Change"
-msgstr "Thay đổi"
+msgstr ""
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:38
+msgid "Change Image"
+msgstr ""
+
+#. Label of the label (Data) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Change Label (via Custom Translation)"
-msgstr "Thay đổi Label (qua chỉnh dịch)"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:45
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:141
+msgid "Change Letter Head"
+msgstr ""
+
+#. Label of the change_password (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Change Password"
-msgstr "Đổi mật khẩu"
+msgstr ""
-#: public/js/print_format_builder/print_format_builder.bundle.js:27
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:27
msgid "Change Print Format"
msgstr ""
-#: desk/page/user_profile/user_profile_controller.js:51
-#: desk/page/user_profile/user_profile_controller.js:59
-msgid "Change User"
-msgstr "Thay đổi người sử dụng"
-
#. Description of the 'Update Series Counter' (Section Break) field in DocType
#. 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
-msgid ""
-"Change the starting / current sequence number of an existing series.
\n"
-"\n"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Change the starting / current sequence number of an existing series.
\n\n"
"Warning: Incorrectly updating counters can prevent documents from getting created. "
msgstr ""
-#: email/doctype/email_domain/email_domain.js:5
+#. Label of the changed_at (Datetime) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Changed at"
+msgstr ""
+
+#. Label of the changed_by (Link) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Changed by"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+msgid "Changelog Feed"
+msgstr ""
+
+#. Label of the changed_values (HTML) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Changes"
+msgstr ""
+
+#: frappe/email/doctype/email_domain/email_domain.js:5
msgid "Changing any setting will reflect on all the email accounts associated with this domain."
msgstr ""
-#: core/doctype/system_settings/system_settings.js:62
+#: frappe/core/doctype/system_settings/system_settings.js:67
msgid "Changing rounding method on site with data can result in unexpected behaviour."
msgstr ""
-#. Label of a Select field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the channel (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Channel"
-msgstr "Kênh"
+msgstr ""
-#. Label of a Link field in DocType 'Dashboard Chart Link'
-#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json
-msgctxt "Dashboard Chart Link"
+#. Label of the chart (Link) field in DocType 'Dashboard Chart Link'
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
msgid "Chart"
-msgstr "Đồ thị"
+msgstr ""
-#. Label of a Code field in DocType 'Dashboard Settings'
-#: desk/doctype/dashboard_settings/dashboard_settings.json
-msgctxt "Dashboard Settings"
+#. Label of the chart_config (Code) field in DocType 'Dashboard Settings'
+#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
msgid "Chart Configuration"
-msgstr "Cấu hình biểu đồ"
+msgstr ""
-#. Label of a Data field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the chart_name (Data) field in DocType 'Dashboard Chart'
+#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/workspace_chart/workspace_chart.json
+#: frappe/public/js/frappe/views/reports/query_report.js:290
+#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
-msgstr "Tên biểu đồ"
+msgstr ""
-#. Label of a Link field in DocType 'Workspace Chart'
-#: desk/doctype/workspace_chart/workspace_chart.json
-msgctxt "Workspace Chart"
-msgid "Chart Name"
-msgstr "Tên biểu đồ"
-
-#. Label of a Code field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
+#. Label of the chart_options (Code) field in DocType 'Dashboard'
+#. Label of the chart_options_section (Section Break) field in DocType
+#. 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Chart Options"
-msgstr "Tùy chọn biểu đồ"
+msgstr ""
-#. Label of a Section Break field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Chart Options"
-msgstr "Tùy chọn biểu đồ"
-
-#. Label of a Link field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the source (Link) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Chart Source"
-msgstr "Nguồn biểu đồ"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:479
+#. Label of the chart_type (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/views/reports/report_view.js:499
msgid "Chart Type"
-msgstr "Loại biểu đồ"
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Chart Type"
-msgstr "Loại biểu đồ"
-
-#. Label of a Table field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
+#. Label of the charts (Table) field in DocType 'Dashboard'
+#. Label of the charts (Table) field in DocType 'Workspace'
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Charts"
-msgstr "Biểu đồ"
-
-#. Label of a Table field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Charts"
-msgstr "Biểu đồ"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
-#. Option for the 'Communication Type' (Select) field in DocType
-#. 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Chat"
-msgstr "Trò chuyện"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Check"
-msgstr "Kiểm tra"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Check"
-msgstr "Kiểm tra"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Check"
-msgstr "Kiểm tra"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Check"
-msgstr "Kiểm tra"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Check"
-msgstr "Kiểm tra"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Check"
-msgstr "Kiểm tra"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Check"
-msgstr "Kiểm tra"
+msgstr ""
-#: integrations/doctype/webhook/webhook.py:95
+#: frappe/integrations/doctype/webhook/webhook.py:95
msgid "Check Request URL"
-msgstr "URL yêu cầu kiểm tra"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:18
+#: frappe/email/doctype/newsletter/newsletter.js:18
msgid "Check broken links"
msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:442
-msgid "Check the Error Log for more information: {0}"
-msgstr "Kiểm tra Nhật ký lỗi để biết thêm thông tin: {0}"
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
+msgid "Check columns to select, drag to set order."
+msgstr ""
-#: website/doctype/website_settings/website_settings.js:147
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454
+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 "Kiểm tra điều này nếu bạn không muốn người dùng đăng ký tài khoản trên trang web của bạn. Người dùng sẽ không có quyền truy cập bàn trừ khi bạn cung cấp rõ ràng."
+msgstr ""
#. Description of the 'User must always select' (Check) field in DocType
#. 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Check this if you want to force the user to select a series before saving. There will be no default if you check this."
-msgstr "Kiểm tra này nếu bạn muốn ép buộc người dùng lựa chọn một loạt trước khi lưu. Sẽ không có mặc định nếu bạn kiểm tra này."
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:20
+#. 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/email/doctype/newsletter/newsletter.js:20
msgid "Checking broken links..."
msgstr ""
-#: public/js/frappe/desk.js:214
+#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
-msgstr "Kiểm tra một khoảnh khắc"
+msgstr ""
-#: website/doctype/website_settings/website_settings.js:140
+#: frappe/website/doctype/website_settings/website_settings.js:140
msgid "Checking this will enable tracking page views for blogs, web pages, etc."
-msgstr "Kiểm tra điều này sẽ cho phép theo dõi lượt xem trang cho blog, trang web, v.v."
+msgstr ""
#. Description of the 'Hide Custom DocTypes and Reports' (Check) field in
#. DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Checking this will hide custom doctypes and reports cards in Links section"
-msgstr "Việc kiểm tra này sẽ ẩn các thẻ báo cáo và tài liệu tùy chỉnh trong phần Liên kết"
+msgstr ""
-#: website/doctype/web_page/web_page.js:78
+#: frappe/website/doctype/web_page/web_page.js:78
msgid "Checking this will publish the page on your website and it'll be visible to everyone."
-msgstr "Kiểm tra điều này sẽ xuất bản trang trên trang web của bạn và nó sẽ hiển thị cho mọi người."
+msgstr ""
-#: website/doctype/web_page/web_page.js:104
+#: frappe/website/doctype/web_page/web_page.js:104
msgid "Checking this will show a text area where you can write custom javascript that will run on this page."
-msgstr "Kiểm tra điều này sẽ hiển thị một vùng văn bản nơi bạn có thể viết javascript tùy chỉnh sẽ chạy trên trang này."
+msgstr ""
-#. Label of a Data field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
+#. Label of the checksum_version (Data) field in DocType 'Transaction Log'
+#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Checksum Version"
-msgstr "Phiên bản Checksum"
+msgstr ""
-#: www/list.py:85
+#: frappe/www/list.py:85
msgid "Child DocTypes are not allowed"
msgstr ""
-#. Label of a Data field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the child_doctype (Data) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Child Doctype"
msgstr ""
-#: core/doctype/doctype/doctype.py:1588
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "Child Table {0} for field {1}"
msgstr ""
-#: core/doctype/doctype/doctype_list.js:37
-msgid "Child Tables are shown as a Grid in other DocTypes"
-msgstr "Bảng con được hiển thị dưới dạng lưới trong các DocTypes khác"
-
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:52
msgid "Child Tables are shown as a Grid in other DocTypes"
-msgstr "Bảng con được hiển thị dưới dạng lưới trong các DocTypes khác"
+msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:614
+#: frappe/public/js/frappe/widgets/widget_dialog.js:638
msgid "Choose Existing Card or create New Card"
-msgstr "Chọn thẻ hiện có hoặc tạo thẻ mới"
+msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:1385
+#: frappe/public/js/frappe/views/workspace/workspace.js:571
msgid "Choose a block or continue typing"
msgstr ""
-#: public/js/frappe/form/controls/color.js:5
+#: frappe/public/js/form_builder/components/controls/DataControl.vue:18
+#: frappe/public/js/frappe/form/controls/color.js:5
msgid "Choose a color"
msgstr ""
-#: public/js/frappe/form/controls/icon.js:5
+#: frappe/public/js/form_builder/components/controls/DataControl.vue:21
+#: frappe/public/js/frappe/form/controls/icon.js:5
msgid "Choose an icon"
msgstr ""
#. Description of the 'Two Factor Authentication method' (Select) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Choose authentication method to be used by all users"
-msgstr "Chọn phương thức xác thực để sử dụng bởi tất cả người dùng"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
-msgstr "Thành phố"
+msgstr ""
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the city (Data) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "City/Town"
-msgstr "Thành phố / thị xã"
+msgstr ""
-#: core/doctype/recorder/recorder_list.js:12
+#: frappe/core/doctype/recorder/recorder_list.js:12
+#: frappe/public/js/frappe/form/controls/attach.js:16
msgid "Clear"
-msgstr "Thông thoáng"
+msgstr ""
-#: public/js/frappe/views/communication.js:325
+#: frappe/public/js/frappe/views/communication.js:432
msgid "Clear & Add Template"
msgstr ""
-#: public/js/frappe/views/communication.js:98
+#: frappe/public/js/frappe/views/communication.js:111
msgid "Clear & Add template"
msgstr ""
-#: public/js/frappe/ui/keyboard.js:275
+#: frappe/public/js/frappe/list/list_view.js:1965
+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 "Xóa bộ nhớ cache và tải lại"
+msgstr ""
-#: core/doctype/error_log/error_log_list.js:12
+#: frappe/core/doctype/error_log/error_log_list.js:12
msgid "Clear Error Logs"
-msgstr "Xoá danh sách lỗi"
+msgstr ""
-#. Label of a Int field in DocType 'Logs To Clear'
-#: core/doctype/logs_to_clear/logs_to_clear.json
-msgctxt "Logs To Clear"
+#: frappe/public/js/frappe/ui/filters/filter_list.js:299
+msgid "Clear Filters"
+msgstr ""
+
+#. Label of the days (Int) field in DocType 'Logs To Clear'
+#: frappe/core/doctype/logs_to_clear/logs_to_clear.json
msgid "Clear Logs After (days)"
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:144
+#: frappe/core/doctype/user_permission/user_permission_list.js:144
msgid "Clear User Permissions"
-msgstr "Xóa quyền người dùng"
+msgstr ""
-#: public/js/frappe/views/communication.js:326
+#: frappe/public/js/frappe/views/communication.js:433
msgid "Clear the email message and add the template"
msgstr ""
-#: website/doctype/web_page/web_page.py:214
+#: frappe/website/doctype/web_page/web_page.py:215
msgid "Clearing end date, as it cannot be in the past for published pages."
-msgstr "Xóa ngày kết thúc, vì nó không thể trong quá khứ cho các trang đã xuất bản."
+msgstr ""
-#: website/doctype/web_form/templates/web_form.html:144
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:194
+msgid "Click On Customize to add your first widget"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:147
msgid "Click here"
msgstr ""
-#: email/doctype/newsletter/newsletter.py:335
+#: frappe/email/doctype/newsletter/newsletter.py:335
msgid "Click here to verify"
-msgstr "Nhấn vào đây để xác minh"
+msgstr ""
-#: integrations/doctype/google_drive/google_drive.js:46
+#: frappe/integrations/doctype/google_drive/google_drive.js:47
msgid "Click on Authorize Google Drive Access to authorize Google Drive Access."
-msgstr "Nhấp vào Ủy quyền truy cập Google Drive để ủy quyền truy cập Google Drive."
+msgstr ""
-#: templates/emails/login_with_email_link.html:19
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
+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 ""
-#: templates/emails/data_deletion_approval.html:2
+#: frappe/templates/emails/data_deletion_approval.html:2
msgid "Click on the link below to approve the request"
-msgstr "Nhấp vào liên kết dưới đây để phê duyệt yêu cầu"
+msgstr ""
-#: templates/emails/new_user.html:7
+#: frappe/templates/emails/new_user.html:7
msgid "Click on the link below to complete your registration and set a new password"
-msgstr "Click vào liên kết dưới đây để hoàn tất đăng ký của bạn và thiết lập một mật khẩu mới"
+msgstr ""
-#: templates/emails/download_data.html:3
+#: frappe/templates/emails/download_data.html:3
msgid "Click on the link below to download your data"
-msgstr "Nhấp vào liên kết dưới đây để tải xuống dữ liệu của bạn"
+msgstr ""
-#: templates/emails/delete_data_confirmation.html:4
+#: frappe/templates/emails/delete_data_confirmation.html:4
msgid "Click on the link below to verify your request"
-msgstr "Nhấp vào liên kết dưới đây để xác minh yêu cầu của bạn"
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:101
-#: integrations/doctype/google_contacts/google_contacts.py:40
-#: integrations/doctype/google_drive/google_drive.py:52
-#: website/doctype/website_settings/website_settings.py:161
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
+#: frappe/integrations/doctype/google_drive/google_drive.py:53
+#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
-msgstr "Nhấp vào {0} để tạo Mã thông báo làm mới."
+msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.js:96
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
+#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
+#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
-msgstr "Click vào bảng để chỉnh sửa"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
+#: frappe/desk/doctype/number_card/number_card.js:402
+msgid "Click to Set Dynamic Filters"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
+#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/website/doctype/web_form/web_form.js:262
+msgid "Click to Set Filters"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:711
+msgid "Click to sort by {0}"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Clicked"
-msgstr "Clicked"
+msgstr ""
-#. Label of a Link field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. Label of the client (Link) field in DocType 'OAuth Authorization Code'
+#. Label of the client (Link) field in DocType 'OAuth Bearer Token'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
msgid "Client"
-msgstr "Khách hàng"
+msgstr ""
-#. Label of a Link field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
-msgid "Client"
-msgstr "Khách hàng"
-
-#. Label of a Section Break field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#. Label of the client_code_section (Section Break) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
msgid "Client Code"
-msgstr "Mã khách hàng"
+msgstr ""
-#. Label of a Section Break field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the sb_client_credentials_section (Section Break) field in DocType
+#. 'Connected App'
+#. Label of the client_credentials (Section Break) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Credentials"
-msgstr "Giây chứng nhận khách hàng"
+msgstr ""
-#. Label of a Section Break field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Client Credentials"
-msgstr "Giây chứng nhận khách hàng"
-
-#. Label of a Data field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
+#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
-msgstr "Tài khoản khách hàng"
+msgstr ""
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Client ID"
-msgstr "Tài khoản khách hàng"
-
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the client_id (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Client Id"
msgstr ""
-#. Label of a Section Break field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the client_information (Section Break) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Information"
-msgstr "Thông tin khách hàng"
-
-#. Name of a DocType
-#: custom/doctype/client_script/client_script.json
-#: website/doctype/web_page/web_page.js:103
-msgid "Client Script"
-msgstr "Kịch bản khách hàng"
+msgstr ""
#. Label of a Link in the Build Workspace
-#. Label of a shortcut in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Client Script"
+#. Name of a DocType
+#. Label of the client_script (Code) field in DocType 'DocType Layout'
+#: frappe/core/workspace/build/build.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/website/doctype/web_page/web_page.js:103
msgid "Client Script"
-msgstr "Kịch bản khách hàng"
+msgstr ""
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Client Script"
-msgstr "Kịch bản khách hàng"
-
-#. Label of a Code field in DocType 'DocType Layout'
-#: custom/doctype/doctype_layout/doctype_layout.json
-msgctxt "DocType Layout"
-msgid "Client Script"
-msgstr "Kịch bản khách hàng"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Client Script"
-msgstr "Kịch bản khách hàng"
-
-#. Label of a Code field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Client Script"
-msgstr "Kịch bản khách hàng"
-
-#. Label of a Password field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the client_secret (Password) field in DocType 'Connected App'
+#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (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/social_login_key/social_login_key.json
msgid "Client Secret"
-msgstr "BÍ mật khách hàng"
+msgstr ""
-#. Label of a Password field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
-msgid "Client Secret"
-msgstr "BÍ mật khách hàng"
-
-#. Label of a Password field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Client Secret"
-msgstr "BÍ mật khách hàng"
-
-#. Label of a Section Break field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
-msgstr "URL máy khách"
+msgstr ""
-#: core/doctype/communication/communication.js:39 desk/doctype/todo/todo.js:23
-#: public/js/frappe/ui/messages.js:245
+#. Label of the client_script (Code) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Client script"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:39
+#: frappe/desk/doctype/todo/todo.js:23
+#: frappe/public/js/frappe/form/form_tour.js:17
+#: frappe/public/js/frappe/ui/messages.js:251
+#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
-msgstr "Đóng"
+msgstr ""
-#. Label of a Code field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the close_condition (Code) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Close Condition"
-msgstr "Đóng điều kiện"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+msgid "Close properties"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Closed"
-msgstr "Đã đóng"
-
#. Option for the 'Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Closed"
-msgstr "Đã đóng"
-
#. Option for the 'Status' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Closed"
-msgstr "Đã đóng"
-
#. Option for the 'Status' (Select) field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
msgid "Closed"
-msgstr "Đã đóng"
+msgstr ""
-#: templates/discussions/comment_box.html:25
+#: frappe/templates/discussions/comment_box.html:25
+#: frappe/templates/discussions/reply_section.html:53
+#: frappe/templates/discussions/topic_modal.html:11
msgid "Cmd+Enter to add comment"
msgstr ""
-#. Label of a Data field in DocType 'Country'
-#: geo/doctype/country/country.json
-msgctxt "Country"
-msgid "Code"
-msgstr "Code"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Code"
-msgstr "Code"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Code"
-msgstr "Code"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Code"
-msgstr "Code"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the code (Data) field in DocType 'Country'
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/geo/doctype/country/country.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Code"
-msgstr "Code"
+msgstr ""
-#. Label of a Data field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. Label of the code_challenge (Data) field in DocType 'OAuth Authorization
+#. Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Code Challenge"
msgstr ""
-#. Label of a Select field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. Label of the code_editor_type (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Code Editor Type"
+msgstr ""
+
+#. Label of the code_challenge_method (Select) field in DocType 'OAuth
+#. Authorization Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Code challenge method"
msgstr ""
-#: public/js/frappe/form/form_tour.js:268
-#: public/js/frappe/widgets/base_widget.js:157
+#: frappe/public/js/frappe/form/form_tour.js:276
+#: frappe/public/js/frappe/ui/sidebar.html:11
+#: frappe/public/js/frappe/widgets/base_widget.js:159
msgid "Collapse"
-msgstr "Sự sụp đổ"
+msgstr ""
-#: public/js/frappe/form/controls/code.js:146
+#: frappe/public/js/frappe/form/controls/code.js:184
msgctxt "Shrink code field."
msgid "Collapse"
-msgstr "Sự sụp đổ"
+msgstr ""
-#: public/js/frappe/views/treeview.js:121
+#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
-msgstr "Thu gọn tất cả"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the collapsible (Check) field in DocType 'DocField'
+#. Label of the collapsible (Check) field in DocType 'Custom Field'
+#. Label of the collapsible (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Collapsible"
-msgstr "Ráp"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Collapsible"
-msgstr "Ráp"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Collapsible"
-msgstr "Ráp"
-
-#. Label of a Code field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the collapsible_depends_on (Code) field in DocType 'Custom Field'
+#. Label of the collapsible_depends_on (Code) field in DocType 'Customize Form
+#. Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Collapsible Depends On"
-msgstr "Phụ thuộc ráp On"
+msgstr ""
-#. Label of a Code field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Collapsible Depends On"
-msgstr "Phụ thuộc ráp On"
-
-#. Label of a Code field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the collapsible_depends_on (Code) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Collapsible Depends On (JS)"
msgstr ""
+#. 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
-#: public/js/frappe/views/reports/query_report.js:1140
-#: public/js/frappe/widgets/widget_dialog.js:505
-#: public/js/frappe/widgets/widget_dialog.js:657
-#: website/doctype/color/color.json
-msgid "Color"
-msgstr "Màu"
-
-#. Label of a Color field in DocType 'Color'
-#: website/doctype/color/color.json
-msgctxt "Color"
-msgid "Color"
-msgstr "Màu"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Color"
-msgstr "Màu"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Color"
-msgstr "Màu"
-
-#. Label of a Color field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Color"
-msgstr "Màu"
-
-#. Label of a Color field in DocType 'Dashboard Chart Field'
-#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-msgctxt "Dashboard Chart Field"
-msgid "Color"
-msgstr "Màu"
-
-#. Label of a Data field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Color"
-msgstr "Màu"
-
-#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Color"
-msgstr "Màu"
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Color"
-msgstr "Màu"
-
-#. Label of a Select field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Color"
-msgstr "Màu"
-
-#. Label of a Color field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Color"
-msgstr "Màu"
-
-#. Label of a Color field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Color"
-msgstr "Màu"
-
-#. Label of a Color field in DocType 'Social Link Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
-msgid "Color"
-msgstr "Màu"
-
-#. Label of a Color field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Color"
-msgstr "Màu"
-
+#. Label of the color (Color) field in DocType 'Color'
+#. Label of the color (Color) field in DocType 'Social Link Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/views/reports/query_report.js:1229
+#: frappe/public/js/frappe/widgets/widget_dialog.js:533
+#: frappe/public/js/frappe/widgets/widget_dialog.js:681
+#: 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 "Màu"
+msgstr ""
-#. Label of a Color field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Color"
-msgstr "Màu"
+#. Label of the column (Data) field in DocType 'Recorder Suggested Index'
+#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:7
+#: frappe/public/js/form_builder/components/Section.vue:270
+#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
+msgid "Column"
+msgstr ""
-#: desk/doctype/kanban_board/kanban_board.py:85
+#: frappe/core/doctype/report/boilerplate/controller.py:28
+msgid "Column 1"
+msgstr ""
+
+#: frappe/core/doctype/report/boilerplate/controller.py:33
+msgid "Column 2"
+msgstr ""
+
+#: frappe/desk/doctype/kanban_board/kanban_board.py:84
msgid "Column {0} already exist."
-msgstr "Cột {0} đã tồn tại."
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Column Break"
-msgstr "Cột lao"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Column Break"
-msgstr "Cột lao"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Column Break"
-msgstr "Cột lao"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Column Break"
-msgstr "Cột lao"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Column Break"
-msgstr "Cột lao"
+msgstr ""
-#: core/doctype/data_export/exporter.py:140
+#: frappe/core/doctype/data_export/exporter.py:140
msgid "Column Labels:"
-msgstr "Nhãn cột:"
+msgstr ""
-#: core/doctype/data_export/exporter.py:25
+#. Label of the column_name (Data) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/data_export/exporter.py:25
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Column Name"
-msgstr "Tên cột"
+msgstr ""
-#. Label of a Data field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
-msgid "Column Name"
-msgstr "Tên cột"
-
-#: desk/doctype/kanban_board/kanban_board.py:44
+#: frappe/desk/doctype/kanban_board/kanban_board.py:45
msgid "Column Name cannot be empty"
-msgstr "Tên cột không thể để trống"
+msgstr ""
-#: public/js/frappe/form/grid_row.js:593
+#: frappe/public/js/frappe/form/grid_row.js:438
+msgid "Column Width"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:645
msgid "Column width cannot be zero."
msgstr ""
-#. Label of a Int field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Columns"
-msgstr "Cột"
+#: frappe/core/doctype/data_import/data_import.js:380
+msgid "Column {0}"
+msgstr ""
-#. Label of a Int field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the columns (Int) field in DocType 'DocField'
+#. Label of the columns_section (Section Break) field in DocType 'Report'
+#. Label of the columns (Table) field in DocType 'Report'
+#. Label of the columns (Int) field in DocType 'Custom Field'
+#. Label of the columns (Int) field in DocType 'Customize Form Field'
+#. Label of the columns (Table) field in DocType 'Kanban Board'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report/report.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
msgid "Columns"
-msgstr "Cột"
+msgstr ""
-#. Label of a Int field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Columns"
-msgstr "Cột"
-
-#. Label of a Table field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Columns"
-msgstr "Cột"
-
-#. Label of a Section Break field in DocType 'Report'
-#. Label of a Table field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Columns"
-msgstr "Cột"
-
-#. Label of a HTML Editor field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the columns (HTML Editor) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "Columns / Fields"
-msgstr "Cột / Lĩnh vực"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:394
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
msgid "Columns based on"
-msgstr "Cột dựa trên"
+msgstr ""
-#: integrations/doctype/oauth_client/oauth_client.py:43
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
-msgstr "Kết hợp Loại khoản tài trợ ( {0} ) và Loại phản hồi ( {1} ) không được phép"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Comm10E"
msgstr ""
#. Name of a DocType
-#: core/doctype/comment/comment.json
-#: public/js/frappe/form/sidebar/assign_to.js:210
-#: templates/includes/comments/comments.html:34
-msgid "Comment"
-msgstr "Bình luận"
-
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/version/version_view.html:3
+#: frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:237
+#: frappe/templates/includes/comments/comments.html:34
msgid "Comment"
-msgstr "Bình luận"
+msgstr ""
-#. Option for the 'Communication Type' (Select) field in DocType
-#. 'Communication'
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Comment"
-msgstr "Bình luận"
-
-#. Label of a Data field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#. Label of the comment_by (Data) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
msgid "Comment By"
-msgstr "Bình luận bởi"
+msgstr ""
-#. Label of a Data field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#. Label of the comment_email (Data) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
msgid "Comment Email"
-msgstr "Bình luận Email"
+msgstr ""
-#. Label of a Select field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#. Label of the comment_type (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
msgid "Comment Type"
-msgstr "Comment Loại"
+msgstr ""
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Comment Type"
-msgstr "Comment Loại"
-
-#: desk/form/utils.py:58
+#: frappe/desk/form/utils.py:58
msgid "Comment can only be edited by the owner"
-msgstr "Chỉ chủ sở hữu mới có thể chỉnh sửa nhận xét"
+msgstr ""
-#. Label of a Int field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the comment_limit (Int) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Comment limit"
msgstr ""
#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Comment limit per hour"
msgstr ""
-#: model/__init__.py:150 model/meta.py:54 public/js/frappe/model/meta.js:206
-#: public/js/frappe/model/model.js:125
-#: website/doctype/web_form/templates/web_form.html:119
+#: frappe/desk/form/utils.py:75
+msgid "Comment publicity can only be updated by the original author or a System Manager."
+msgstr ""
+
+#: frappe/model/meta.py:59 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/public/js/frappe/model/meta.js:209
+#: frappe/public/js/frappe/model/model.js:135
+#: frappe/website/doctype/web_form/templates/web_form.html:122
msgid "Comments"
-msgstr "Thẻ chú thích"
+msgstr ""
#. Description of the 'Timeline Field' (Data) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "Comments and Communications will be associated with this linked document"
-msgstr "Nhận xét và Truyền thông sẽ được liên kết với các tài liệu liên kết này"
+msgstr ""
-#: templates/includes/comments/comments.py:38
+#: frappe/templates/includes/comments/comments.py:38
msgid "Comments cannot have links or email addresses"
-msgstr "Nhận xét không thể có liên kết hoặc địa chỉ email"
+msgstr ""
#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Commercial Rounding"
msgstr ""
-#. Label of a Check field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#. Label of the commit (Check) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
msgid "Commit"
-msgstr "Cam kết"
+msgstr ""
-#. Label of a Check field in DocType 'Console Log'
-#: desk/doctype/console_log/console_log.json
-msgctxt "Console Log"
+#. Label of the committed (Check) field in DocType 'Console Log'
+#: frappe/desk/doctype/console_log/console_log.json
msgid "Committed"
msgstr ""
-#: utils/password_strength.py:180
+#: frappe/utils/password_strength.py:176
msgid "Common names and surnames are easy to guess."
-msgstr "Tên thường gặp và tên rất dễ đoán."
+msgstr ""
#. Name of a DocType
-#: core/doctype/communication/communication.json tests/test_translate.py:35
-#: tests/test_translate.py:103
-msgid "Communication"
-msgstr "Liên lạc"
-
#. Option for the 'Communication Type' (Select) field in DocType
#. 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "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 "Liên lạc"
-
-#. Label of a Data field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
-msgid "Communication"
-msgstr "Liên lạc"
-
-#. Label of a Link field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Communication"
-msgstr "Liên lạc"
-
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Communication"
-msgstr "Liên lạc"
+msgstr ""
#. Name of a DocType
-#: core/doctype/communication_link/communication_link.json
+#: frappe/core/doctype/communication_link/communication_link.json
msgid "Communication Link"
-msgstr "Liên kết truyền thông"
+msgstr ""
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Communication"
+#: frappe/core/workspace/build/build.json
msgid "Communication Logs"
msgstr ""
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the communication_type (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Communication Type"
-msgstr "Loại thông tin liên lạc"
+msgstr ""
-#: desk/page/leaderboard/leaderboard.js:112
-msgid "Company"
-msgstr "Giỏ hàng Giá liệt kê"
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:32
+msgid "Communication secret not set"
+msgstr ""
#. Name of a DocType
-#: website/doctype/company_history/company_history.json www/about.html:29
+#: frappe/website/doctype/company_history/company_history.json
+#: frappe/www/about.html:29
msgid "Company History"
-msgstr "Lịch sử công ty"
+msgstr ""
-#. Label of a Text Editor field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#. Label of the company_introduction (Text Editor) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Company Introduction"
-msgstr "Giới thiệu công ty"
+msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the company_name (Data) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Company Name"
-msgstr "Tên công ty"
+msgstr ""
-#: core/doctype/server_script/server_script.js:14
-#: custom/doctype/client_script/client_script.js:54
-#: public/js/frappe/utils/diffview.js:27
+#: frappe/core/doctype/server_script/server_script.js:14
+#: frappe/custom/doctype/client_script/client_script.js:54
+#: frappe/public/js/frappe/utils/diffview.js:28
msgid "Compare Versions"
msgstr ""
-#: core/doctype/server_script/server_script.py:134
+#: frappe/core/doctype/server_script/server_script.py:157
msgid "Compilation warning"
msgstr ""
-#: website/doctype/website_theme/website_theme.py:125
+#: frappe/website/doctype/website_theme/website_theme.py:123
msgid "Compiled Successfully"
-msgstr "Biên dịch thành công"
-
-#: www/complete_signup.html:21
-msgid "Complete"
-msgstr "Hoàn chỉnh"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/www/complete_signup.html:21
msgid "Complete"
-msgstr "Hoàn chỉnh"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:176
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:203
msgid "Complete By"
-msgstr "Hoàn chỉnh bởi"
+msgstr ""
-#: core/doctype/user/user.py:438 templates/emails/new_user.html:10
+#: frappe/core/doctype/user/user.py:477
+#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
-msgstr "Hoàn tất đăng ký"
+msgstr ""
-#: utils/goal.py:117
-msgid "Completed"
-msgstr "Hoàn thành"
+#: frappe/public/js/frappe/ui/slides.js:355
+msgctxt "Finish the setup wizard"
+msgid "Complete Setup"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Completed"
-msgstr "Hoàn thành"
-
-#. Option for the 'Status' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Completed"
-msgstr "Hoàn thành"
-
-#. Option for the 'Status' (Select) field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Completed"
-msgstr "Hoàn thành"
-
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
-msgid "Completed"
-msgstr "Hoàn thành"
-
+#. Option for the 'Status' (Select) field in DocType 'Event'
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#. Option for the 'Status' (Select) field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/doctype/boilerplate/controller_list.html:31
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/utils/goal.py:117
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
-msgstr "Hoàn thành"
+msgstr ""
-#. Label of a Link field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
+#. Label of the completed_by_role (Link) field in DocType 'Workflow Action'
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed By Role"
msgstr ""
-#. Label of a Link field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
+#. Label of the completed_by (Link) field in DocType 'Workflow Action'
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed By User"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
+#: frappe/website/doctype/web_template/web_template.json
msgid "Component"
-msgstr "Hợp phần"
-
-#: public/js/frappe/views/inbox/inbox_view.js:184
-msgid "Compose Email"
-msgstr "Soạn email"
-
-#. Label of a Small Text field in DocType 'Bulk Update'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
-msgid "Condition"
-msgstr "Điều kiện"
-
-#. Label of a Select field in DocType 'Document Naming Rule Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
-msgid "Condition"
-msgstr "Điều kiện"
-
-#. Label of a Code field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Condition"
-msgstr "Điều kiện"
-
-#. Label of a Code field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Condition"
-msgstr "Điều kiện"
-
-#. Label of a Data field in DocType 'Notification Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
-msgid "Condition"
-msgstr "Điều kiện"
-
-#. Label of a Small Text field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Condition"
-msgstr "Điều kiện"
-
-#. Label of a Code field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
-msgid "Condition"
-msgstr "Điều kiện"
-
-#. Label of a HTML field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Condition Description"
msgstr ""
-#. Label of a JSON field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#: 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:205
+#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/email/doctype/notification/notification.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/website/doctype/web_form/web_form.js:197
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Condition"
+msgstr ""
+
+#. Label of the condition_json (JSON) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Condition JSON"
msgstr ""
-#. Label of a Table field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
-msgid "Conditions"
-msgstr "Điều kiện"
+#. Label of the condition_description (HTML) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Condition description"
+msgstr ""
-#. Label of a Section Break field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
+#. Label of the conditions (Table) field in DocType 'Document Naming Rule'
+#. Label of the conditions (Section Break) field in DocType 'Workflow
+#. Transition'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Conditions"
-msgstr "Điều kiện"
+msgstr ""
-#. Label of a Section Break field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the configuration_section (Section Break) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Configuration"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:461
+#: frappe/public/js/frappe/views/reports/report_view.js:481
msgid "Configure Chart"
-msgstr "Định cấu hình biểu đồ"
+msgstr ""
-#: public/js/frappe/form/grid_row.js:381
+#: frappe/public/js/frappe/form/grid_row.js:390
msgid "Configure Columns"
msgstr ""
+#: frappe/core/doctype/recorder/recorder_list.js:200
+msgid "Configure Recorder"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/Field.vue:103
+msgid "Configure columns for {0}"
+msgstr ""
+
#. Description of the 'Amended Documents' (Section Break) field in DocType
#. 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
-msgid ""
-"Configure how amended documents will be named.
\n"
-"\n"
-"Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
\n"
-"\n"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Configure how amended documents will be named.
\n\n"
+"Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
\n\n"
"Default Naming will make the amended document to behave same as new documents."
msgstr ""
-#: www/update-password.html:30
-msgid "Confirm"
-msgstr "Xác nhậ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 ""
-#: public/js/frappe/ui/messages.js:31
+#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
+#: frappe/www/update-password.html:53
+msgid "Confirm"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/messages.js:31
msgctxt "Title of confirmation dialog"
msgid "Confirm"
-msgstr "Xác nhận"
+msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:92
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:100
+#: frappe/integrations/oauth2.py:120
+msgid "Confirm Access"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:93
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:101
msgid "Confirm Deletion of Account"
msgstr ""
-#: core/doctype/user/user.js:173
+#: frappe/core/doctype/user/user.js:191
msgid "Confirm New Password"
-msgstr "Xác nhận mật khẩu mới"
+msgstr ""
-#: www/update-password.html:24
+#: frappe/www/update-password.html:47
msgid "Confirm Password"
msgstr ""
-#: templates/emails/data_deletion_approval.html:6
-#: templates/emails/delete_data_confirmation.html:7
+#: frappe/templates/emails/data_deletion_approval.html:6
+#: frappe/templates/emails/delete_data_confirmation.html:7
msgid "Confirm Request"
-msgstr "Xác nhận yêu cầu"
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:330
+#: frappe/email/doctype/newsletter/newsletter.py:330
msgid "Confirm Your Email"
-msgstr "Xác nhận Email của bạn"
+msgstr ""
-#. Label of a Link field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#. Label of the confirmation_email_template (Link) field in DocType 'Email
+#. Group'
+#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
-msgstr "Mẫu email xác nhận"
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:381
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:394
+#: frappe/email/doctype/newsletter/newsletter.py:379
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
-msgstr "Xác nhận"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:530
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:525
msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here."
msgstr ""
-#: integrations/doctype/connected_app/connected_app.js:25
+#: frappe/integrations/doctype/connected_app/connected_app.js:25
msgid "Connect to {}"
msgstr ""
+#. Label of the connected_app (Link) field in DocType 'Email Account'
#. Name of a DocType
-#: integrations/doctype/connected_app/connected_app.json
+#. Label of the connected_app (Link) field in DocType 'Token Cache'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Connected App"
msgstr ""
-#. Label of a Link field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Connected App"
-msgstr ""
-
-#. Label of a Link field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "Connected App"
-msgstr ""
-
-#. Label of a Link field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the connected_user (Link) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Connected User"
msgstr ""
-#: public/js/frappe/form/print_utils.js:95
-#: public/js/frappe/form/print_utils.js:119
+#: frappe/public/js/frappe/form/print_utils.js:97
+#: frappe/public/js/frappe/form/print_utils.js:121
msgid "Connected to QZ Tray!"
-msgstr "Đã kết nối với Khay QZ!"
+msgstr ""
-#: public/js/frappe/request.js:34
+#: frappe/public/js/frappe/request.js:36
msgid "Connection Lost"
msgstr ""
-#: templates/pages/integrations/gcalendar-success.html:3
+#: frappe/templates/pages/integrations/gcalendar-success.html:3
msgid "Connection Success"
-msgstr "Kết nối thành công"
+msgstr ""
-#: public/js/frappe/dom.js:433
+#: frappe/public/js/frappe/dom.js:446
msgid "Connection lost. Some features might not work."
-msgstr "Kết nối bị mất. Một số tính năng có thể không hoạt động."
+msgstr ""
-#: public/js/frappe/form/dashboard.js:54
+#. Label of the connections_tab (Tab Break) field in DocType 'DocType'
+#. Label of the connections_tab (Tab Break) field in DocType 'Module Def'
+#. Label of the connections_tab (Tab Break) field in DocType 'User'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/user/user.json
+#: frappe/public/js/frappe/form/dashboard.js:54
msgid "Connections"
msgstr ""
-#. Label of a Tab Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Connections"
-msgstr ""
-
-#. Label of a Tab Break field in DocType 'Module Def'
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Connections"
-msgstr ""
-
-#. Label of a Tab Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Connections"
-msgstr ""
-
-#. Label of a Code field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#. Label of the console (Code) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
msgid "Console"
-msgstr "Bảng điều khiển"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/console_log/console_log.json
+#: frappe/desk/doctype/console_log/console_log.json
msgid "Console Log"
-msgstr "Nhật ký bảng điều khiển"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#: frappe/desk/doctype/console_log/console_log.py:24
+msgid "Console Logs can not be deleted"
+msgstr ""
+
+#. Label of the constraints_section (Section Break) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Constraints"
msgstr ""
#. Name of a DocType
-#: contacts/doctype/contact/contact.json
-#: core/doctype/communication/communication.js:113
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/communication/communication.js:113
msgid "Contact"
-msgstr "Liên hệ"
+msgstr ""
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Contact"
-msgstr "Liên hệ"
-
-#. Label of a Section Break field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the sb_01 (Section Break) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
-msgstr "Chi tiết Liên hệ"
+msgstr ""
#. Name of a DocType
-#: contacts/doctype/contact_email/contact_email.json
+#: frappe/contacts/doctype/contact_email/contact_email.json
msgid "Contact Email"
-msgstr "Email Liên hệ"
+msgstr ""
-#. Label of a Table field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the phone_nos (Table) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Numbers"
-msgstr "Số liên lạc"
+msgstr ""
#. Name of a DocType
-#: contacts/doctype/contact_phone/contact_phone.json
+#: frappe/contacts/doctype/contact_phone/contact_phone.json
msgid "Contact Phone"
-msgstr "Điện thoại liên hệ"
+msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.py:288
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:291
msgid "Contact Synced with Google Contacts."
-msgstr "Liên hệ được đồng bộ hóa với Danh bạ Google."
+msgstr ""
+
+#: frappe/www/contact.html:4
+msgid "Contact Us"
+msgstr ""
#. Name of a DocType
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgid "Contact Us Settings"
-msgstr "Thiết lập Liên hệ"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Contact Us Settings"
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/workspace/website/website.json
msgid "Contact Us Settings"
-msgstr "Thiết lập Liên hệ"
+msgstr ""
#. Description of the 'Query Options' (Small Text) field in DocType 'Contact Us
#. Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
-msgstr "Tùy chọn liên hệ, như \"Truy vấn Bán hàng, Truy vấn Hỗ trợ\" v.v.. mỗi thứ một dòng mới hoặc cách nhau bằng dấu phẩy."
+msgstr ""
-#. Label of a Text Editor field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#: 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 newsletter_content (Section Break) field in DocType
+#. 'Newsletter'
+#. Label of the content (Text Editor) field in DocType 'Blog Post'
+#. Label of the content (Text Editor) field in DocType 'Help Article'
+#. Label of the section_title (Tab Break) field in DocType 'Web Page'
+#. 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/email/doctype/newsletter/newsletter.json
+#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/help_article/help_article.json
+#: 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 "Lọc nội dung"
+msgstr ""
-#. Label of a HTML Editor field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Content"
-msgstr "Lọc nội dung"
-
-#. Label of a Text Editor field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
-msgid "Content"
-msgstr "Lọc nội dung"
-
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Content"
-msgstr "Lọc nội dung"
-
-#. Label of a Text Editor field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
-msgid "Content"
-msgstr "Lọc nội dung"
-
-#. Label of a Tab Break field in DocType 'Web Page'
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Content"
-msgstr "Lọc nội dung"
-
-#. Label of a Long Text field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Content"
-msgstr "Lọc nội dung"
-
-#. Label of a HTML Editor field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the content_html (HTML Editor) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Content (HTML)"
-msgstr "Nội dung (HTML)"
+msgstr ""
-#. Label of a Markdown Editor field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Content (Markdown)"
-msgstr "Nội dung (Đánh dấu)"
+msgstr ""
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the content_hash (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Content Hash"
-msgstr "Nội dung Hash"
+msgstr ""
-#. Label of a Select field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the content_type (Select) field in DocType 'Newsletter'
+#. Label of the content_type (Select) field in DocType 'Blog Post'
+#. Label of the content_type (Select) field in DocType 'Web Page'
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
-msgstr "Loại nội dung"
+msgstr ""
-#. Label of a Select field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Content Type"
-msgstr "Loại nội dung"
-
-#. Label of a Select field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Content Type"
-msgstr "Loại nội dung"
-
-#: desk/doctype/workspace/workspace.py:79
+#: frappe/desk/doctype/workspace/workspace.py:86
msgid "Content data shoud be a list"
msgstr ""
-#: website/doctype/web_page/web_page.js:91
+#: frappe/website/doctype/web_page/web_page.js:91
msgid "Content type for building the page"
-msgstr "Loại nội dung để xây dựng trang"
-
-#. Label of a Data field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
-msgid "Context"
-msgstr "Bối cảnh"
-
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Context"
-msgstr "Bối cảnh"
-
-#. Label of a Code field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Context Script"
-msgstr "Tập lệnh ngữ cảnh"
-
-#: public/js/frappe/widgets/onboarding_widget.js:209
-#: public/js/frappe/widgets/onboarding_widget.js:237
-#: public/js/frappe/widgets/onboarding_widget.js:277
-#: public/js/frappe/widgets/onboarding_widget.js:317
-#: public/js/frappe/widgets/onboarding_widget.js:366
-#: public/js/frappe/widgets/onboarding_widget.js:388
-#: public/js/frappe/widgets/onboarding_widget.js:428
-msgid "Continue"
-msgstr "Tiếp tục"
-
-#. Label of a Check field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
-msgid "Contributed"
-msgstr "Đóng góp"
-
-#. Label of a Data field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
-msgid "Contribution Document Name"
-msgstr "Tên tài liệu đóng góp"
-
-#. Label of a Select field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
-msgid "Contribution Status"
-msgstr "Trạng thái đóng góp"
-
-#. Description of the 'Sign ups' (Select) field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected. "
msgstr ""
-#: public/js/frappe/utils/utils.js:1030
-msgid "Copied to clipboard."
-msgstr "Sao chép vào clipboard."
+#. 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 ""
-#: public/js/frappe/request.js:615
+#. 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:1033
+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:620
msgid "Copy error to clipboard"
msgstr ""
-#: public/js/frappe/form/toolbar.js:388
+#: frappe/public/js/frappe/form/toolbar.js:504
msgid "Copy to Clipboard"
msgstr ""
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the copyright (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Copyright"
-msgstr "Bản quyền"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:118
+#: frappe/custom/doctype/customize_form/customize_form.py:122
msgid "Core DocTypes cannot be customized."
-msgstr "Core DocTypes không thể được tùy chỉnh."
+msgstr ""
-#: desk/doctype/global_search_settings/global_search_settings.py:35
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:36
msgid "Core Modules {0} cannot be searched in Global Search."
-msgstr "Mô-đun lõi {0} không thể được tìm kiếm trong Tìm kiếm toàn cầu."
+msgstr ""
-#: email/smtp.py:77
+#: frappe/printing/page/print/print.js:620
+msgid "Correct version :"
+msgstr ""
+
+#: frappe/email/smtp.py:78
msgid "Could not connect to outgoing email server"
-msgstr "Không thể kết nối đến máy chủ email gửi đi"
+msgstr ""
-#: model/document.py:922
+#: frappe/model/document.py:1096
msgid "Could not find {0}"
-msgstr "Không thể tìm thấy {0}"
+msgstr ""
-#: core/doctype/data_import/importer.py:886
+#: frappe/core/doctype/data_import/importer.py:933
msgid "Could not map column {0} to field {1}"
-msgstr "Không thể ánh xạ cột {0} với trường {1}"
+msgstr ""
-#: public/js/frappe/web_form/web_form.js:355
+#: frappe/desk/page/setup_wizard/setup_wizard.js:234
+msgid "Could not start up: "
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:359
msgid "Couldn't save, please check the data you have entered"
-msgstr "Không thể lưu, vui lòng kiểm tra dữ liệu bạn đã nhập"
-
-#: public/js/frappe/ui/group_by/group_by.js:19
-#: public/js/frappe/ui/group_by/group_by.js:318
-msgid "Count"
-msgstr "Đếm"
+msgstr ""
#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Count"
-msgstr "Đếm"
-
#. Option for the 'Function' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#. Label of the count (Int) field in DocType 'System Health Report Workers'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
+#: frappe/public/js/frappe/ui/group_by/group_by.js:19
+#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
-msgstr "Đếm"
+msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:499
+#: frappe/public/js/frappe/widgets/widget_dialog.js:527
msgid "Count Customizations"
-msgstr "Đếm tùy chỉnh"
+msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:484
+#. Label of the section_break_5 (Section Break) field in DocType 'Workspace
+#. Shortcut'
+#. Label of the stats_filter (Code) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:512
msgid "Count Filter"
-msgstr "Bộ lọc đếm"
+msgstr ""
-#. Label of a Section Break field in DocType 'Workspace Shortcut'
-#. Label of a Code field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Count Filter"
-msgstr "Bộ lọc đếm"
-
-#. Label of a Int field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#. Label of the counter (Int) field in DocType 'Document Naming Rule'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Counter"
-msgstr "Quầy tính tiền"
+msgstr ""
+#. Label of the country (Link) field in DocType 'Address'
+#. Label of the country (Link) field in DocType 'Address Template'
+#. Label of the country (Link) field in DocType 'System Settings'
#. Name of a DocType
-#: geo/doctype/country/country.json
+#. Label of the country (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/geo/doctype/country/country.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
-msgstr "Tại"
+msgstr ""
-#. Label of a Link field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Country"
-msgstr "Tại"
-
-#. Label of a Link field in DocType 'Address Template'
-#: contacts/doctype/address_template/address_template.json
-msgctxt "Address Template"
-msgid "Country"
-msgstr "Tại"
-
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Country"
-msgstr "Tại"
-
-#. Label of a Link field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Country"
-msgstr "Tại"
-
-#: utils/__init__.py:116
+#: frappe/utils/__init__.py:129
msgid "Country Code Required"
msgstr ""
-#. Label of a Data field in DocType 'Country'
-#: geo/doctype/country/country.json
-msgctxt "Country"
+#. Label of the country_name (Data) field in DocType 'Country'
+#: frappe/geo/doctype/country/country.json
msgid "Country Name"
-msgstr "Tên nước"
+msgstr ""
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the county (Data) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "County"
-msgstr "quận"
+msgstr ""
-#: public/js/frappe/utils/number_systems.js:23
-#: public/js/frappe/utils/number_systems.js:45
+#: frappe/public/js/frappe/utils/number_systems.js:23
+#: frappe/public/js/frappe/utils/number_systems.js:45
msgctxt "Number system"
msgid "Cr"
msgstr ""
-#: core/doctype/communication/communication.js:117
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:46
-#: public/js/frappe/form/reminders.js:49
-#: public/js/frappe/views/file/file_view.js:112
-#: public/js/frappe/views/interaction.js:18
-#: public/js/frappe/views/reports/query_report.js:1172
-#: public/js/frappe/views/workspace/workspace.js:1217
-#: workflow/page/workflow_builder/workflow_builder.js:46
+#. Label of the create (Check) field in DocType 'Custom DocPerm'
+#. Label of the create (Check) field in DocType 'DocPerm'
+#. Label of the create (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/communication/communication.js:117
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46
+#: frappe/public/js/frappe/form/reminders.js:49
+#: frappe/public/js/frappe/views/file/file_view.js:112
+#: frappe/public/js/frappe/views/interaction.js:18
+#: frappe/public/js/frappe/views/reports/query_report.js:1261
+#: frappe/public/js/frappe/views/workspace/workspace.js:469
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
-msgstr "Tạo"
+msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Create"
-msgstr "Tạo"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Create"
-msgstr "Tạo"
-
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Create"
-msgstr "Tạo"
-
-#: core/doctype/doctype/doctype_list.js:85
+#: frappe/core/doctype/doctype/doctype_list.js:102
msgid "Create & Continue"
msgstr ""
-#. Title of an Onboarding Step
-#: website/onboarding_step/create_blogger/create_blogger.json
-msgid "Create Blogger"
+#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:49
+msgid "Create Address"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:186
-#: public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:188
+#: frappe/public/js/frappe/views/reports/query_report.js:233
msgid "Create Card"
-msgstr "Tạo thẻ"
-
-#: public/js/frappe/views/reports/query_report.js:284
-#: public/js/frappe/views/reports/query_report.js:1099
-msgid "Create Chart"
-msgstr "Tạo biểu đồ"
-
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Create Contacts from Incoming Emails"
-msgstr "Tạo địa chỉ liên hệ từ email đến"
-
-#. Title of an Onboarding Step
-#: custom/onboarding_step/custom_field/custom_field.json
-msgid "Create Custom Fields"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:925
-msgid "Create Duplicate"
+#: frappe/public/js/frappe/views/reports/query_report.js:286
+#: frappe/public/js/frappe/views/reports/query_report.js:1188
+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'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Create Entry"
-msgstr "Tạo mục nhập"
+msgstr ""
-#. Label of a Check field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:59
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:195
+msgid "Create Letter Head"
+msgstr ""
+
+#. Label of the create_log (Check) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Create Log"
-msgstr "Tạo nhật ký"
+msgstr ""
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:41
-#: public/js/frappe/views/treeview.js:361
-#: workflow/page/workflow_builder/workflow_builder.js:41
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:41
+#: frappe/public/js/frappe/views/treeview.js:378
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:41
msgid "Create New"
-msgstr "Tạo mới"
+msgstr ""
-#: core/doctype/doctype/doctype_list.js:83
+#: frappe/public/js/frappe/list/list_view.js:509
+msgctxt "Create a new document from list view"
+msgid "Create New"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype_list.js:100
msgid "Create New DocType"
msgstr ""
-#: public/js/frappe/list/list_view_select.js:204
+#: frappe/public/js/frappe/list/list_view_select.js:204
msgid "Create New Kanban Board"
msgstr ""
-#: core/doctype/user/user.js:251
+#: frappe/core/doctype/user/user.js:270
msgid "Create User Email"
-msgstr "Tạo Email của Người dùng"
-
-#: public/js/frappe/views/workspace/workspace.js:465
-msgid "Create Workspace"
msgstr ""
-#: public/js/frappe/form/reminders.js:9
+#: 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 ""
-#: public/js/frappe/ui/toolbar/search_utils.js:521
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537
msgid "Create a new ..."
msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:156
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:156
msgid "Create a new record"
-msgstr "Tạo một bản ghi mới"
+msgstr ""
-#: public/js/frappe/form/controls/link.js:291
-#: public/js/frappe/form/controls/link.js:293
-#: public/js/frappe/form/link_selector.js:139
-#: public/js/frappe/list/list_view.js:470
+#: frappe/public/js/frappe/form/controls/link.js:311
+#: frappe/public/js/frappe/form/controls/link.js:313
+#: frappe/public/js/frappe/form/link_selector.js:139
+#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/web_form/web_form_list.js:225
msgid "Create a new {0}"
-msgstr "Tạo một {0} mới"
+msgstr ""
-#: www/login.html:142
+#: frappe/www/login.html:162
msgid "Create a {0} Account"
msgstr ""
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:34
+#. Description of a DocType
+#: frappe/email/doctype/newsletter/newsletter.json
+msgid "Create and send emails to a specific group of subscribers periodically."
+msgstr ""
+
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
-#: workflow/page/workflow_builder/workflow_builder.js:34
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:34
msgid "Create or Edit Workflow"
msgstr ""
-#: public/js/frappe/list/list_view.js:473
+#: frappe/public/js/frappe/list/list_view.js:504
msgid "Create your first {0}"
-msgstr "Tạo {0} đầu tiên của bạn"
+msgstr ""
-#: workflow/doctype/workflow/workflow.js:16
+#: frappe/workflow/doctype/workflow/workflow.js:16
msgid "Create your workflow visually using the Workflow Builder."
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/public/js/frappe/views/file/file_view.js:337
msgid "Created"
-msgstr "Tạo"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Created"
-msgstr "Tạo"
-
-#. Label of a Datetime field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
+#. Label of the created_at (Datetime) field in DocType 'Submission Queue'
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Created At"
msgstr ""
-#: model/__init__.py:138 model/meta.py:51
-#: public/js/frappe/list/list_sidebar_group_by.js:73
-#: public/js/frappe/model/meta.js:203 public/js/frappe/model/model.js:113
+#: frappe/model/meta.py:56
+#: 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 "Tạo ra bởi"
+msgstr ""
-#: workflow/doctype/workflow/workflow.py:65
+#: frappe/workflow/doctype/workflow/workflow.py:64
msgid "Created Custom Field {0} in {1}"
-msgstr "Tạo Trường Tuỳ chỉnh {0} trong {1}"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.js:241 model/__init__.py:140
-#: model/meta.py:46 public/js/frappe/model/meta.js:198
-#: public/js/frappe/model/model.js:115
-#: public/js/frappe/views/dashboard/dashboard_view.js:478
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241
+#: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:51
+#: 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 "Ngày tạo"
+msgstr ""
-#: public/js/frappe/desk.js:497 public/js/frappe/views/treeview.js:376
+#: frappe/public/js/frappe/desk.js:515
+#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
-msgstr "Tạo {0}"
+msgstr ""
-#. Option for the 'Type' (Select) field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Criticism"
-msgstr "Sự chỉ trích"
-
-#: public/js/frappe/form/sidebar/review.js:66
-msgid "Criticize"
-msgstr "Chỉ trích"
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:41
+msgid "Creation of this document is only permitted in developer mode."
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Cron"
-msgstr "Cron"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Cron"
-msgstr "Cron"
+msgstr ""
-#. Label of a Data field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#. Label of the cron_format (Data) field in DocType 'Scheduled Job Type'
+#. Label of the cron_format (Data) field in DocType 'Server Script'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Cron Format"
-msgstr "Định dạng cron"
+msgstr ""
-#. Label of a Data field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Cron Format"
-msgstr "Định dạng cron"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:59
+msgid "Cron format is required for job types with Cron frequency."
+msgstr ""
-#: templates/includes/comments/comments.html:32
+#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:34
+msgid "Crop"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Ctrl + Down"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Ctrl + Up"
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.html:32
msgid "Ctrl+Enter to add comment"
-msgstr "Ctrl + Enter để thêm bình luận"
-
-#. Name of a DocType
-#: desk/page/setup_wizard/setup_wizard.js:403
-#: geo/doctype/currency/currency.json
-msgid "Currency"
-msgstr "Tiền tệ"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Currency"
-msgstr "Tiền tệ"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Currency"
-msgstr "Tiền tệ"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Currency"
-msgstr "Tiền tệ"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Currency"
-msgstr "Tiền tệ"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Currency"
-msgstr "Tiền tệ"
-
+#. Label of the currency (Link) field in DocType 'System Settings'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the currency (Link) field in DocType 'Dashboard Chart'
+#. Label of the currency (Link) field in DocType 'Number Card'
+#. Name of a DocType
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:414
+#: frappe/geo/doctype/currency/currency.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Currency"
-msgstr "Tiền tệ"
+msgstr ""
-#. Label of a Data field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the currency_name (Data) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
msgid "Currency Name"
-msgstr "Tên tiền tệ"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the currency_precision (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Currency Precision"
-msgstr "Tiền tệ chính xác"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/geo/doctype/currency/currency.json
+msgid "Currency list stores the currency value, its symbol and fraction unit"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Current"
-msgstr "Hiện hành"
+msgstr ""
-#. Label of a Link field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the current_job_id (Link) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Current Job ID"
msgstr ""
-#. Label of a Int field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the current_value (Int) field in DocType 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Current Value"
msgstr ""
-#: public/js/frappe/form/form_viewers.js:5
+#: frappe/public/js/frappe/form/workflow.js:45
+msgid "Current status"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_viewers.js:5
msgid "Currently Viewing"
-msgstr "Hiện nay Xem"
-
-#: public/js/frappe/form/sidebar/review.js:77
-msgid "Currently you have {0} review points"
-msgstr "Hiện tại bạn có {0} điểm đánh giá"
-
-#: core/doctype/user_type/user_type_list.js:7
-#: public/js/frappe/form/reminders.js:20
-msgid "Custom"
-msgstr "Tuỳ chỉnh"
+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'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Custom"
-msgstr "Tuỳ chỉnh"
-
-#. Label of a Check field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Custom"
-msgstr "Tuỳ chỉnh"
-
-#. Label of a Check field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
-msgid "Custom"
-msgstr "Tuỳ chỉnh"
-
-#. Label of a Check field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
-msgid "Custom"
-msgstr "Tuỳ chỉnh"
-
-#. Label of a Check field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Custom"
-msgstr "Tuỳ chỉnh"
-
-#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Custom"
-msgstr "Tuỳ chỉnh"
-
-#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
-msgid "Custom"
-msgstr "Tuỳ chỉnh"
-
-#. Label of a Check field in DocType 'Module Def'
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Custom"
-msgstr "Tuỳ chỉnh"
-
-#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Custom"
-msgstr "Tuỳ chỉnh"
-
+#. Label of the custom (Check) field in DocType 'Desktop Icon'
#. Option for the 'Type' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Custom"
-msgstr "Tuỳ chỉnh"
-
-#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Custom"
-msgstr "Tuỳ chỉnh"
-
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/core/doctype/doctype_link/doctype_link.json
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/user_type/user_type_list.js:7
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/public/js/frappe/form/reminders.js:20
msgid "Custom"
-msgstr "Tuỳ chỉnh"
+msgstr ""
-#. Label of a Check field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the custom_base_url (Check) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Custom Base URL"
-msgstr "URL cơ sở tùy chỉnh"
+msgstr ""
-#. Label of a Link field in DocType 'Workspace Custom Block'
-#: desk/doctype/workspace_custom_block/workspace_custom_block.json
-msgctxt "Workspace Custom Block"
+#. Label of the custom_block_name (Link) field in DocType 'Workspace Custom
+#. Block'
+#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json
msgid "Custom Block Name"
msgstr ""
-#. Label of a Tab Break field in DocType 'Workspace'
-#. Label of a Table field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the custom_blocks_tab (Tab Break) field in DocType 'Workspace'
+#. Label of the custom_blocks (Table) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Custom Blocks"
msgstr ""
-#. Label of a Code field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the css (Code) field in DocType 'Print Format'
+#. Label of the custom_css (Code) field in DocType 'Web Form'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/website/doctype/web_form/web_form.json
msgid "Custom CSS"
-msgstr "CSS Tuỳ chỉnh"
-
-#. Label of a Code field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Custom CSS"
-msgstr "CSS Tuỳ chỉnh"
-
-#. Label of a Section Break field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Custom Configuration"
-msgstr "Cấu hình tùy chỉnh"
-
-#. Name of a DocType
-#: core/doctype/custom_docperm/custom_docperm.json
-msgid "Custom DocPerm"
-msgstr "tuỳ chỉnh DocPerm"
-
-#. Title of an Onboarding Step
-#: custom/onboarding_step/custom_doctype/custom_doctype.json
-msgid "Custom Document Types"
msgstr ""
-#. Label of a Table field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the custom_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 ""
-#: core/doctype/user_type/user_type.py:104
+#: frappe/core/doctype/user_type/user_type.py:105
msgid "Custom Document Types Limit Exceeded"
msgstr ""
-#: desk/desktop.py:483
+#: frappe/desk/desktop.py:524
msgid "Custom Documents"
-msgstr "Tài liệu tùy chỉnh"
-
-#. Name of a DocType
-#: custom/doctype/custom_field/custom_field.json
-msgid "Custom Field"
-msgstr "Trường Tuỳ chỉnh"
-
-#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Custom Field"
-msgid "Custom Field"
-msgstr "Trường Tuỳ chỉnh"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Custom Field"
-msgstr "Trường Tuỳ chỉnh"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Custom Field"
-msgstr "Trường Tuỳ chỉnh"
-
-#: custom/doctype/custom_field/custom_field.py:216
-msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
-msgstr "Trường Tùy chỉnh {0} do Quản trị viên tạo và chỉ có thể bị xóa thông qua tài khoản Quản trị viên."
-
-#. Subtitle of the Module Onboarding 'Customization'
-#: custom/module_onboarding/customization/customization.json
-msgid "Custom Field, Custom Doctype, Naming Series, Role Permission, Workflow, Print Formats, Reports"
msgstr ""
-#: custom/doctype/custom_field/custom_field.py:260
+#. 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 "Trường tùy chỉnh chỉ có thể được thêm vào một loại tài liệu tiêu chuẩn."
+msgstr ""
-#: custom/doctype/custom_field/custom_field.py:257
+#: frappe/custom/doctype/custom_field/custom_field.py:274
msgid "Custom Fields cannot be added to core DocTypes."
-msgstr "Trường tùy chỉnh không thể được thêm vào DocTypes cốt lõi."
+msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the custom_footer_section (Section Break) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Custom Footer"
msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the custom_format (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Custom Format"
-msgstr "Tuỳ chỉnh Format"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_custom_group_search (Data) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Custom Group Search"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:119
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:122
msgid "Custom Group Search if filled needs to contain the user placeholder {0}, eg uid={0},ou=users,dc=example,dc=com"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:190
-#: printing/page/print_format_builder/print_format_builder.js:720
+#: frappe/printing/page/print_format_builder/print_format_builder.js:190
+#: frappe/printing/page/print_format_builder/print_format_builder.js:728
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
-msgstr "Tuỳ chỉnh HTML"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
msgid "Custom HTML Block"
msgstr ""
-#. Label of a HTML field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the custom_html_help (HTML) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Custom HTML Help"
-msgstr "Tuỳ chỉnh HTML Help"
+msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:111
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:114
msgid "Custom LDAP Directoy Selected, please ensure 'LDAP Group Member attribute' and 'Group Object Class' are entered"
msgstr ""
-#. Label of a Data field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the label (Data) field in DocType 'Web Form Field'
+#. Label of the label (Data) field in DocType 'Web Form List Column'
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Custom Label"
msgstr ""
-#. Label of a Data field in DocType 'Web Form List Column'
-#: website/doctype/web_form_list_column/web_form_list_column.json
-msgctxt "Web Form List Column"
-msgid "Custom Label"
-msgstr ""
-
-#. Label of a Table field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the custom_menu (Table) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Custom Menu Items"
-msgstr "Custom Menu Items"
+msgstr ""
-#. Label of a Code field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the custom_options (Code) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Custom Options"
-msgstr "Tùy chọn tùy chỉnh"
+msgstr ""
-#. Label of a Code field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the custom_overrides (Code) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom Overrides"
-msgstr "Ghi đè tùy chỉnh"
+msgstr ""
#. Option for the 'Report Type' (Select) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#: frappe/core/doctype/report/report.json
msgid "Custom Report"
-msgstr "Báo cáo tùy chỉnh"
+msgstr ""
-#: desk/desktop.py:484
+#: frappe/desk/desktop.py:525
msgid "Custom Reports"
-msgstr "Báo cáo tùy chỉnh"
+msgstr ""
#. Name of a DocType
-#: core/doctype/custom_role/custom_role.json
+#: frappe/core/doctype/custom_role/custom_role.json
msgid "Custom Role"
-msgstr "Vai trò tùy chỉnh"
+msgstr ""
-#. Label of a Code field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the custom_scss (Code) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom SCSS"
-msgstr "SCSS tùy chỉnh"
+msgstr ""
-#. Label of a Section Break field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the custom_sidebar_menu (Section Break) field in DocType 'Portal
+#. Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Custom Sidebar Menu"
-msgstr "Tuỳ chỉnh bên Menu"
+msgstr ""
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Translation"
+#: frappe/core/workspace/build/build.json
msgid "Custom Translation"
msgstr ""
-#: core/doctype/doctype/doctype_list.js:65
-msgid "Custom?"
-msgstr "Tùy chỉnh?"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Custom?"
-msgstr "Tùy chỉnh?"
-
-#. Label of a Check field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Custom?"
-msgstr "Tùy chỉnh?"
-
-#. Label of a Card Break in the Build Workspace
-#. Title of the Module Onboarding 'Customization'
-#: core/workspace/build/build.json
-#: custom/module_onboarding/customization/customization.json
-msgid "Customization"
-msgstr "Tùy biến"
-
-#. Group in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Customization"
-msgstr "Tùy biến"
-
-#. Group in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Customization"
-msgstr "Tùy biến"
-
-#. Label of a Tab Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Customization"
-msgstr "Tùy biến"
-
-#. Success message of the Module Onboarding 'Customization'
-#: custom/module_onboarding/customization/customization.json
-msgid "Customization onboarding is all done!"
+#: frappe/custom/doctype/custom_field/custom_field.py:423
+msgid "Custom field renamed to {0} successfully."
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:511
+#. Label of the custom (Check) field in DocType 'DocType'
+#. Label of the custom (Check) field in DocType 'Website Theme'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Custom?"
+msgstr ""
+
+#. 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 ""
-#: custom/doctype/customize_form/customize_form.js:397
+#: frappe/custom/doctype/customize_form/customize_form.js:465
msgid "Customizations Reset"
-msgstr "Tuỳ chỉnh Thiết lập lại"
+msgstr ""
-#: modules/utils.py:95
+#: frappe/modules/utils.py:96
msgid "Customizations for {0} exported to:
{1}"
-msgstr "Tùy chỉnh cho {0} xuất ra:
{1}"
+msgstr ""
-#: printing/page/print/print.js:171 public/js/frappe/form/toolbar.js:527
+#: frappe/printing/page/print/print.js:171
+#: frappe/public/js/frappe/form/templates/print_layout.html:39
+#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
-msgstr "Tùy chỉnh"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1664
+#: frappe/public/js/frappe/list/list_view.js:1802
msgctxt "Button in list view menu"
msgid "Customize"
-msgstr "Tùy chỉnh"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:89
+#: frappe/custom/doctype/customize_form/customize_form.js:89
msgid "Customize Child Table"
msgstr ""
-#: public/js/frappe/views/dashboard/dashboard_view.js:37
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:38
msgid "Customize Dashboard"
msgstr ""
-#. Name of a DocType
-#: custom/doctype/customize_form/customize_form.json
-#: public/js/frappe/views/kanban/kanban_view.js:340
-msgid "Customize Form"
-msgstr "Tùy chỉnh mẫu"
-
#. Label of a Link in the Build Workspace
-#. Label of a shortcut in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Customize Form"
+#. Name of a DocType
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:33
+#: frappe/core/doctype/doctype/doctype.js:61
+#: frappe/core/workspace/build/build.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
msgid "Customize Form"
-msgstr "Tùy chỉnh mẫu"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:100
+#: frappe/custom/doctype/customize_form/customize_form.js:100
msgid "Customize Form - {0}"
msgstr ""
#. Name of a DocType
-#: custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Customize Form Field"
-msgstr "Tùy chỉnh Field"
-
-#. Title of an Onboarding Step
-#: custom/onboarding_step/print_format/print_format.json
-msgid "Customize Print Formats"
msgstr ""
-#: public/js/frappe/views/file/file_view.js:144
+#. 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 "Cắt tỉa"
+msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Cyan"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Cyan"
msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "DELETE"
-msgstr ""
-
#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "DELETE"
msgstr ""
-#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "DESC"
-msgstr "DESC"
-
#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "DESC"
-msgstr "DESC"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "DLE"
msgstr ""
-#: templates/print_formats/standard_macros.html:207
+#: frappe/templates/print_formats/standard_macros.html:215
msgid "DRAFT"
-msgstr "Dự thảo"
-
-#: public/js/frappe/utils/common.js:398
-#: website/report/website_analytics/website_analytics.js:23
-msgid "Daily"
-msgstr "Hàng ngày"
-
-#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Daily"
-msgstr "Hàng ngày"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Daily"
-msgstr "Hàng ngày"
-
+#. 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'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Daily"
-msgstr "Hàng ngày"
-
+#. 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'
#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
#. Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Daily"
-msgstr "Hàng ngày"
-
-#. Option for the 'Point Allocation Periodicity' (Select) field in DocType
-#. 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Daily"
-msgstr "Hàng ngày"
-
-#. Option for the 'Repeat On' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Daily"
-msgstr "Hàng ngày"
-
#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Daily"
-msgstr "Hàng ngày"
-
-#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Daily"
-msgstr "Hàng ngày"
-
#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
#. Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/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/integrations/doctype/dropbox_settings/dropbox_settings.json
+#: frappe/integrations/doctype/google_drive/google_drive.json
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
+#: frappe/public/js/frappe/utils/common.js:398
+#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
-msgstr "Hàng ngày"
+msgstr ""
-#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Daily"
-msgstr "Hàng ngày"
-
-#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Daily"
-msgstr "Hàng ngày"
-
-#. Option for the 'Frequency' (Select) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Daily"
-msgstr "Hàng ngày"
-
-#: templates/emails/upcoming_events.html:8
+#: frappe/templates/emails/upcoming_events.html:8
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
-msgstr "báo cáo sự kiện hàng ngày được gửi như là Lịch sự kiện cùng với nhắc nhở"
+msgstr ""
-#: desk/doctype/event/event.py:93
+#: frappe/desk/doctype/event/event.py:100
msgid "Daily Events should finish on the Same Day."
-msgstr "Sự kiện hàng ngày sẽ kết thúc vào cùng một ngày."
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Daily Long"
-msgstr "Hàng ngày dài"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Daily Long"
-msgstr "Hàng ngày dài"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+msgid "Daily Maintenance"
+msgstr ""
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Danger"
-msgstr "Nguy hiểm"
+msgstr ""
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Dark"
msgstr ""
-#. Label of a Link field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the dark_color (Link) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Dark Color"
-msgstr "Màu tối"
+msgstr ""
-#: public/js/frappe/ui/theme_switcher.js:65
+#: frappe/public/js/frappe/ui/theme_switcher.js:65
msgid "Dark Theme"
msgstr ""
-#. Name of a DocType
-#: core/page/dashboard_view/dashboard_view.js:10
-#: desk/doctype/dashboard/dashboard.json
-#: public/js/frappe/ui/toolbar/search_utils.js:546
-msgid "Dashboard"
-msgstr "bảng điều khiển"
-
+#. Label of the dashboard (Check) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Dashboard"
-msgid "Dashboard"
-msgstr "bảng điều khiển"
-
+#. Name of a DocType
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Dashboard"
-msgstr "bảng điều khiển"
-
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
-msgid "Dashboard"
-msgstr "bảng điều khiển"
-
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/core/doctype/user/user.json
+#: frappe/core/page/dashboard_view/dashboard_view.js:10
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
+#: frappe/public/js/frappe/utils/utils.js:932
msgid "Dashboard"
-msgstr "bảng điều khiển"
-
-#. Name of a DocType
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8
-msgid "Dashboard Chart"
-msgstr "Bảng điều khiển"
+msgstr ""
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Dashboard Chart"
+#. Name of a DocType
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8
msgid "Dashboard Chart"
-msgstr "Bảng điều khiển"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json
+#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
msgid "Dashboard Chart Field"
-msgstr "Trường biểu đồ bảng điều khiển"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
msgid "Dashboard Chart Link"
-msgstr "Bảng điều khiển liên kết"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
msgid "Dashboard Chart Source"
-msgstr "Bảng điều khiển nguồn"
+msgstr ""
#. Name of a role
-#: desk/doctype/dashboard/dashboard.json
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-#: desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Dashboard Manager"
-msgstr "Trình quản lý trang tổng quan"
+msgstr ""
-#. Label of a Data field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
+#. Label of the dashboard_name (Data) field in DocType 'Dashboard'
+#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Dashboard Name"
-msgstr "Tên bảng điều khiển"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/dashboard_settings/dashboard_settings.json
+#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
msgid "Dashboard Settings"
-msgstr "Cài đặt trang tổng quan"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/public/js/frappe/list/base_list.js:204
+msgid "Dashboard View"
+msgstr ""
+
+#. Label of the tab_break_2 (Tab Break) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Dashboards"
-msgstr "Bảng điều khiển"
+msgstr ""
#. Label of a Card Break in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgid "Data"
-msgstr "Dữ liệu"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Data"
-msgstr "Dữ liệu"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Data"
-msgstr "Dữ liệu"
-
-#. Label of a Code field in DocType 'Deleted Document'
-#: core/doctype/deleted_document/deleted_document.json
-msgctxt "Deleted Document"
-msgid "Data"
-msgstr "Dữ liệu"
-
+#. Label of the data (Code) field in DocType 'Deleted Document'
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Data"
-msgstr "Dữ liệu"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Data"
-msgstr "Dữ liệu"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Data"
-msgstr "Dữ liệu"
-
-#. Label of a Long Text field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Data"
-msgstr "Dữ liệu"
-
-#. Label of a Code field in DocType 'Version'
-#: core/doctype/version/version.json
-msgctxt "Version"
-msgid "Data"
-msgstr "Dữ liệu"
-
+#. Label of the data (Long Text) field in DocType 'Transaction Log'
+#. Label of the data (Code) field in DocType 'Version'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the webhook_data (Table) field in DocType 'Webhook'
+#. Label of the data (Code) field in DocType 'Webhook Request Log'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Data"
-msgstr "Dữ liệu"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/deleted_document/deleted_document.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/core/doctype/version/version.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Data"
-msgstr "Dữ liệu"
+msgstr ""
-#. Label of a Table field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Data"
-msgstr "Dữ liệu"
-
-#. Label of a Code field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "Data"
-msgstr "Dữ liệu"
-
-#: public/js/frappe/form/controls/data.js:58
+#: frappe/public/js/frappe/form/controls/data.js:59
msgid "Data Clipped"
msgstr ""
#. Name of a DocType
-#: core/doctype/data_export/data_export.json
+#: frappe/core/doctype/data_export/data_export.json
msgid "Data Export"
-msgstr "Xuất dữ liệu"
+msgstr ""
#. Name of a DocType
-#: core/doctype/data_import/data_import.json
+#. 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 "Nhập dữ liệu"
-
-#. Label of a Link field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
-msgid "Data Import"
-msgstr "Nhập dữ liệu"
+msgstr ""
#. Name of a DocType
-#: core/doctype/data_import_log/data_import_log.json
+#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Data Import Log"
msgstr ""
-#: core/doctype/data_export/exporter.py:174
+#: frappe/core/doctype/data_export/exporter.py:174
msgid "Data Import Template"
-msgstr "Mẫu dữ liệu nhập"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:614
+#: frappe/custom/doctype/customize_form/customize_form.py:614
msgid "Data Too Long"
-msgstr "Dữ liệu quá dài"
+msgstr ""
-#: model/base_document.py:703
-msgid "Data missing in table"
-msgstr "Dữ liệu bị mất trong bảng"
+#. Label of the database (Data) field in DocType 'System Health Report'
+#. Label of the database_section (Section Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Database"
+msgstr ""
-#. Label of a Select field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the engine (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Database Engine"
-msgstr "bộ máy cơ sở dữ liệu"
+msgstr ""
-#. Label of a Section Break field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#. Label of the database_processes_section (Section Break) field in DocType
+#. 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
msgid "Database Processes"
msgstr ""
-#: public/js/frappe/doctype/index.js:38
+#: frappe/public/js/frappe/doctype/index.js:38
msgid "Database Row Size Utilization"
msgstr ""
#. Name of a report
-#: core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json
+#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json
msgid "Database Storage Usage By Tables"
msgstr ""
-#: custom/doctype/customize_form/customize_form.py:244
+#: frappe/custom/doctype/customize_form/customize_form.py:248
msgid "Database Table Row Size Limit"
msgstr ""
-#: public/js/frappe/doctype/index.js:40
+#: frappe/public/js/frappe/doctype/index.js:40
msgid "Database Table Row Size Utilization: {0}%, this limits number of fields you can add."
msgstr ""
-#: desk/report/todo/todo.py:38 email/doctype/newsletter/newsletter.js:109
-#: public/js/frappe/views/interaction.js:80
-msgid "Date"
-msgstr "Ngày"
-
-#. Label of a Datetime field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Date"
-msgstr "Ngày"
-
-#. Label of a Datetime field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Date"
-msgstr "Ngày"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Date"
-msgstr "Ngày"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Date"
-msgstr "Ngày"
+#. Label of the database_version (Data) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Database Version"
+msgstr ""
+#. Label of the communication_date (Datetime) field in DocType 'Activity Log'
+#. Label of the communication_date (Datetime) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Date"
-msgstr "Ngày"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Date"
-msgstr "Ngày"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Date"
-msgstr "Ngày"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/report/todo/todo.py:38
+#: frappe/email/doctype/newsletter/newsletter.js:109
+#: frappe/public/js/frappe/views/interaction.js:80
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
-msgstr "Ngày"
+msgstr ""
-#. Label of a Data field in DocType 'Country'
-#: geo/doctype/country/country.json
-msgctxt "Country"
+#. Label of the date_format (Select) field in DocType 'Language'
+#. Label of the date_format (Select) field in DocType 'System Settings'
+#. Label of the date_format (Data) field in DocType 'Country'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/geo/doctype/country/country.json
msgid "Date Format"
-msgstr "Định dạng ngày"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Date Format"
-msgstr "Định dạng ngày"
-
-#: desk/page/leaderboard/leaderboard.js:165
+#. Label of the section_break_dfrx (Section Break) field in DocType 'Audit
+#. Trail'
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/public/js/frappe/widgets/chart_widget.js:237
msgid "Date Range"
msgstr ""
-#. Label of a Section Break field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
-msgid "Date Range"
-msgstr ""
-
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the date_and_number_format (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Date and Number Format"
-msgstr "định dạng ngày và số"
+msgstr ""
-#: public/js/frappe/form/controls/date.js:163
+#: frappe/public/js/frappe/form/controls/date.js:247
msgid "Date {0} must be in format: {1}"
-msgstr "Ngày {0} phải ở định dạng: {1}"
+msgstr ""
-#: utils/password_strength.py:131
+#: frappe/utils/password_strength.py:129
msgid "Dates are often easy to guess."
-msgstr "Ngày thường dễ đoán."
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Datetime"
-msgstr "Ngày giờ"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Datetime"
-msgstr "Ngày giờ"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Datetime"
-msgstr "Ngày giờ"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Datetime"
-msgstr "Ngày giờ"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Datetime"
-msgstr "Ngày giờ"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Datetime"
-msgstr "Ngày giờ"
+msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:270
+#. Label of the day (Select) field in DocType 'Assignment Rule Day'
+#. Label of the day (Select) field in DocType 'Auto Repeat Day'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/public/js/frappe/views/calendar/calendar.js:277
msgid "Day"
-msgstr "ngày"
+msgstr ""
-#. Label of a Select field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Day"
-msgstr "ngày"
-
-#. Label of a Select field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Day"
-msgstr "ngày"
-
-#. Label of a Select field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the day_of_week (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Day of Week"
-msgstr "Ngày trong tuần"
+msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Days After"
-msgstr "những ngày sau đó"
+msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Days Before"
-msgstr "những ngày trước đó"
+msgstr ""
-#. Label of a Int field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the days_in_advance (Int) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Days Before or After"
-msgstr "những ngày trước hoặc sau"
+msgstr ""
-#: public/js/frappe/request.js:249
+#: frappe/public/js/frappe/request.js:252
msgid "Deadlock Occurred"
msgstr ""
-#: templates/emails/password_reset.html:1
+#: frappe/templates/emails/password_reset.html:1
msgid "Dear"
-msgstr "Thân"
+msgstr ""
-#: templates/emails/administrator_logged_in.html:1
+#: frappe/templates/emails/administrator_logged_in.html:1
msgid "Dear System Manager,"
-msgstr "Thưa System Manager,"
+msgstr ""
-#: templates/emails/account_deletion_notification.html:1
-#: templates/emails/delete_data_confirmation.html:1
+#: frappe/templates/emails/account_deletion_notification.html:1
+#: frappe/templates/emails/delete_data_confirmation.html:1
msgid "Dear User,"
-msgstr "Kính gửi người dùng"
+msgstr ""
-#: templates/emails/download_data.html:1
+#: frappe/templates/emails/download_data.html:1
msgid "Dear {0}"
-msgstr "Kính gửi {0}"
+msgstr ""
-#. Label of a Code field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
+#. Label of the debug_log (Code) field in DocType 'Scheduled Job Log'
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
msgid "Debug Log"
msgstr ""
-#. Label of a Small Text field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Default"
-msgstr "Mặc định"
+#: frappe/public/js/frappe/views/reports/report_utils.js:308
+msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric"
+msgstr ""
-#. Label of a Small Text field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Default"
-msgstr "Mặc định"
+#: frappe/public/js/frappe/views/reports/report_utils.js:300
+msgid "Decimal Separator must be a single character"
+msgstr ""
+#. Label of the default (Small Text) field in DocType 'DocField'
+#. Label of the default (Small Text) field in DocType 'Report Filter'
+#. Label of the default (Small Text) field in DocType 'Customize Form Field'
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the default (Data) field in DocType 'Web Form Field'
+#. Label of the default (Small Text) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/templates/form_grid/fields.html:30
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Default"
-msgstr "Mặc định"
+msgstr ""
-#. Label of a Small Text field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Default"
-msgstr "Mặc định"
-
-#. Label of a Data field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Default"
-msgstr "Mặc định"
-
-#. Label of a Small Text field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Default"
-msgstr "Mặc định"
-
-#: contacts/doctype/address_template/address_template.py:40
+#: frappe/contacts/doctype/address_template/address_template.py:41
msgid "Default Address Template cannot be deleted"
-msgstr "Địa chỉ mặc định mẫu không thể bị xóa"
+msgstr ""
-#. Label of a Select field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the default_amend_naming (Select) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Default Amendment Naming"
msgstr ""
-#. Label of a Link field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the default_app (Select) field in DocType 'System Settings'
+#. Label of the default_app (Select) field in DocType 'User'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+msgid "Default App"
+msgstr ""
+
+#. Label of the default_email_template (Link) field in DocType 'DocType'
+#. Label of the default_email_template (Link) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Default Email Template"
msgstr ""
-#. Label of a Link field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Default Email Template"
-msgstr ""
-
-#: email/doctype/email_account/email_account_list.js:13
+#: frappe/email/doctype/email_account/email_account_list.js:13
msgid "Default Inbox"
-msgstr "Mặc định Inbox"
+msgstr ""
-#: email/doctype/email_account/email_account.py:194
+#. Label of the default_incoming (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:224
msgid "Default Incoming"
-msgstr "Mặc định Incoming"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Default Incoming"
-msgstr "Mặc định Incoming"
-
-#. Label of a Check field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the is_default (Check) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Default Letter Head"
-msgstr "Tiêu đề trang mặc định"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming
#. Settings'
-#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
-msgctxt "Amended Document Naming Settings"
-msgid "Default Naming"
-msgstr ""
-
#. Option for the 'Default Amendment Naming' (Select) field in DocType
#. 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Default Naming"
msgstr ""
-#: email/doctype/email_account/email_account.py:201
+#. Label of the default_outgoing (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:232
msgid "Default Outgoing"
-msgstr "Mặc định Outgoing"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Default Outgoing"
-msgstr "Mặc định Outgoing"
-
-#. Label of a Data field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the default_portal_home (Data) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Default Portal Home"
-msgstr "Trang chủ Cổng thông tin Mặc định"
+msgstr ""
-#. Label of a Link field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the default_print_format (Data) field in DocType 'DocType'
+#. Label of the default_print_format (Link) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Default Print Format"
-msgstr "Mặc định In Định dạng"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Default Print Format"
-msgstr "Mặc định In Định dạng"
-
-#. Label of a Link field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the default_print_language (Link) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Default Print Language"
-msgstr "Ngôn ngữ in mặc định"
+msgstr ""
-#. Label of a Data field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the default_redirect_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Default Redirect URI"
-msgstr "Mặc định Redirect URI"
+msgstr ""
-#. Label of a Link field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the default_role (Link) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Default Role at Time of Signup"
-msgstr "Mặc định vai trò tại Thời gian đăng ký"
+msgstr ""
-#: email/doctype/email_account/email_account_list.js:16
+#: frappe/email/doctype/email_account/email_account_list.js:16
msgid "Default Sending"
-msgstr "Mặc định gửi"
+msgstr ""
-#: email/doctype/email_account/email_account_list.js:7
+#: frappe/email/doctype/email_account/email_account_list.js:7
msgid "Default Sending and Inbox"
-msgstr "Mặc định Gửi và Inbox"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the sort_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Default Sort Field"
-msgstr "Trường sắp xếp mặc định"
+msgstr ""
-#. Label of a Select field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the sort_order (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Default Sort Order"
-msgstr "Thứ tự sắp xếp mặc định"
+msgstr ""
-#. Label of a Data field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
+#. Label of the field (Data) field in DocType 'Print Format Field Template'
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
msgid "Default Template For Field"
msgstr ""
-#: website/doctype/website_theme/website_theme.js:28
+#: frappe/website/doctype/website_theme/website_theme.js:28
msgid "Default Theme"
-msgstr "Hình nền mặc định"
+msgstr ""
-#. Label of a Link field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the default_role (Link) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Default User Role"
msgstr ""
-#. Label of a Link field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the default_user_type (Link) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Default User Type"
msgstr ""
-#. Label of a Text field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the default (Text) field in DocType 'Custom Field'
+#. Label of the default_value (Data) field in DocType 'Property Setter'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Default Value"
-msgstr "Giá trị mặc định"
+msgstr ""
-#. Label of a Data field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
-msgid "Default Value"
-msgstr "Giá trị mặc định"
-
-#. Label of a Select field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the default_view (Select) field in DocType 'DocType'
+#. Label of the default_view (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Default View"
msgstr ""
-#. Label of a Select field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Default View"
+#. Label of the default_workspace (Link) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Default Workspace"
msgstr ""
-#: core/doctype/doctype/doctype.py:1327
+#. Description of the 'Currency' (Link) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Default display currency"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1376
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
-msgstr "Mặc định cho loại trường 'Kiểm tra' {0} phải là '0' hoặc '1'"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1340
+#: frappe/core/doctype/doctype/doctype.py:1389
msgid "Default value for {0} must be in the list of options."
-msgstr "Giá trị mặc định cho {0} phải nằm trong danh sách các tùy chọn."
+msgstr ""
-#: core/doctype/session_default_settings/session_default_settings.py:37
+#: frappe/core/doctype/session_default_settings/session_default_settings.py:38
msgid "Default {0}"
-msgstr "Mặc định {0}"
+msgstr ""
#. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Default: \"Contact Us\""
-msgstr "Mặc định: \"Liên hệ\""
+msgstr ""
#. Name of a DocType
-#: core/doctype/defaultvalue/defaultvalue.json
+#: frappe/core/doctype/defaultvalue/defaultvalue.json
msgid "DefaultValue"
-msgstr "DefaultValue"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the defaults_section (Section Break) field in DocType 'DocField'
+#. Label of the sb2 (Section Break) field in DocType 'User'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/user/user.json
msgid "Defaults"
-msgstr "Mặc định"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Defaults"
-msgstr "Mặc định"
-
-#: email/doctype/email_account/email_account.py:207
+#: 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 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'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Delayed"
-msgstr "Bị hoãn"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:189
-#: public/js/frappe/form/toolbar.js:423
-#: public/js/frappe/views/reports/report_view.js:1645
-#: public/js/frappe/views/treeview.js:313
-#: public/js/frappe/views/workspace/workspace.js:823
-#: templates/discussions/reply_card.html:35
+#. Label of the delete (Check) field in DocType 'Custom DocPerm'
+#. Label of the delete (Check) field in DocType 'DocPerm'
+#. Label of the delete (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:189
+#: frappe/public/js/frappe/form/footer/form_timeline.js:626
+#: frappe/public/js/frappe/form/grid.js:66
+#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/views/reports/report_view.js:1734
+#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/templates/discussions/reply_card.html:35
+#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
-msgstr "Xóa"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1857
+#: frappe/public/js/frappe/list/list_view.js:2027
msgctxt "Button in list view actions menu"
msgid "Delete"
-msgstr "Xóa"
+msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Delete"
-msgstr "Xóa"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Delete"
-msgstr "Xóa"
-
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Delete"
-msgstr "Xóa"
-
-#: www/me.html:75
+#: frappe/www/me.html:65
msgid "Delete Account"
msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:10
-msgid "Delete Data"
-msgstr "Xóa dữ liệu"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete All"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:103
+#: 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:106
msgid "Delete Kanban Board"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:824
-msgid "Delete Workspace"
+#: frappe/public/js/form_builder/components/Section.vue:125
+msgctxt "Title of confirmation dialog"
+msgid "Delete Section"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:696
+#: frappe/public/js/form_builder/components/Tabs.vue:64
+msgctxt "Title of confirmation dialog"
+msgid "Delete Tab"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:932
+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:738
msgid "Delete comment?"
-msgstr "Xóa comment?"
+msgstr ""
-#: email/doctype/email_unsubscribe/email_unsubscribe.py:30
+#: frappe/public/js/form_builder/components/Section.vue:205
+msgctxt "Button text"
+msgid "Delete entire column with fields"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:134
+msgctxt "Button text"
+msgid "Delete entire section with fields"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:73
+msgctxt "Button text"
+msgid "Delete entire tab with fields"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:132
+msgctxt "Button text"
+msgid "Delete section"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:71
+msgctxt "Button text"
+msgid "Delete tab"
+msgstr ""
+
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:29
msgid "Delete this record to allow sending to this email address"
-msgstr "Xóa hồ sơ này để cho phép gửi đến địa chỉ email này"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1862
+#: frappe/public/js/frappe/list/list_view.js:2032
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: public/js/frappe/list/list_view.js:1868
+#: frappe/public/js/frappe/list/list_view.js:2038
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
-msgstr "Xóa {0} mục vĩnh viễn?"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Deleted"
-msgstr "Đã bị xóa"
-
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Deleted"
-msgstr "Đã bị xóa"
-
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
-msgid "Deleted"
-msgstr "Đã bị xóa"
-
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Deleted"
-msgstr "Đã bị xóa"
+msgstr ""
-#. Label of a Data field in DocType 'Deleted Document'
-#: core/doctype/deleted_document/deleted_document.json
-msgctxt "Deleted Document"
+#. Label of the deleted_doctype (Data) field in DocType 'Deleted Document'
+#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted DocType"
-msgstr "DocType xóa"
+msgstr ""
#. Name of a DocType
-#: core/doctype/deleted_document/deleted_document.json
+#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted Document"
-msgstr "Tài liệu bị xóa"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Deleted Document"
+#: frappe/automation/workspace/tools/tools.json
msgid "Deleted Documents"
-msgstr "hồ sơ đã xóa"
+msgstr ""
-#. Label of a Data field in DocType 'Deleted Document'
-#: core/doctype/deleted_document/deleted_document.json
-msgctxt "Deleted Document"
+#. Label of the deleted_name (Data) field in DocType 'Deleted Document'
+#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted Name"
-msgstr "Tên xóa"
+msgstr ""
-#: desk/reportview.py:488
+#: frappe/desk/reportview.py:606
+msgid "Deleted all documents successfully"
+msgstr ""
+
+#: frappe/desk/reportview.py:583
msgid "Deleting {0}"
-msgstr "Xóa {0}"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:158
+#: frappe/public/js/frappe/list/bulk_operations.js:202
msgid "Deleting {0} records..."
msgstr ""
-#: public/js/frappe/model/model.js:706
+#: frappe/public/js/frappe/model/model.js:741
msgid "Deleting {0}..."
msgstr ""
-#. Label of a Table field in DocType 'Personal Data Deletion Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
+#. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion
+#. Request'
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Deletion Steps "
msgstr ""
-#: core/doctype/page/page.py:108
+#: frappe/core/doctype/page/page.py:110
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47
msgid "Deletion of this document is only permitted in developer mode."
msgstr ""
-#: public/js/frappe/views/reports/report_utils.js:276
+#. Label of the delimiter_options (Data) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Delimiter Options"
+msgstr ""
+
+#: frappe/utils/csvutils.py:76
+msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data."
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_utils.js:296
msgid "Delimiter must be a single character"
msgstr ""
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the delivery_status (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Delivery Status"
-msgstr "Tình trạng giao"
-
-#: templates/includes/oauth_confirmation.html:14
-msgid "Deny"
msgstr ""
#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/templates/includes/oauth_confirmation.html:17
msgid "Deny"
msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the department (Data) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Department"
-msgstr "Cục"
+msgstr ""
-#. Label of a Data field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Label of the dependencies (Data) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:310
+#: frappe/www/attribution.html:29
msgid "Dependencies"
msgstr ""
-#. Label of a Code field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Depends On"
-msgstr "Phụ thuộc Bật"
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
+msgid "Dependencies & Licenses"
+msgstr ""
-#. Label of a Code field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the depends_on (Code) field in DocType 'Custom Field'
+#. Label of the depends_on (Code) field in DocType 'Customize Form Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Depends On"
-msgstr "Phụ thuộc Bật"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:32
+#: frappe/public/js/frappe/ui/filters/filter.js:32
msgid "Descendants Of"
-msgstr "Hậu duệ của"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:33
+#: frappe/public/js/frappe/ui/filters/filter.js:33
msgid "Descendants Of (inclusive)"
msgstr ""
-#: desk/report/todo/todo.py:39 public/js/frappe/form/reminders.js:44
+#. Label of the description (Small Text) field in DocType 'Assignment Rule'
+#. Label of the description (Small Text) field in DocType 'Reminder'
+#. Label of the description (Small Text) field in DocType 'DocField'
+#. Label of the description (Small Text) field in DocType 'DocType'
+#. Label of the description (Text) field in DocType 'Customize Form Field'
+#. Label of the description (Small Text) field in DocType 'Desktop Icon'
+#. Label of the description (Text Editor) field in DocType 'Event'
+#. Label of the description (HTML Editor) field in DocType 'Form Tour Step'
+#. Label of the description_section (Section Break) field in DocType
+#. 'Onboarding Step'
+#. Label of the description (Markdown Editor) field in DocType 'Onboarding
+#. Step'
+#. Label of the description (Small Text) field in DocType 'Tag'
+#. Label of the description (Text Editor) field in DocType 'ToDo'
+#. Label of the description (HTML Editor) field in DocType 'Workspace Link'
+#. Label of the description (Small Text) field in DocType 'Print Heading'
+#. Label of the description (Small Text) field in DocType 'Blog Category'
+#. Label of the description (Small Text) field in DocType 'UTM Medium'
+#. Label of the description (Small Text) field in DocType 'UTM Source'
+#. Label of the description (Text) field in DocType 'Web Form Field'
+#. Label of the meta_description (Small Text) field in DocType 'Web Page'
+#. Label of the description (Text) field in DocType 'Website Slideshow Item'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/todo/todo.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/report/todo/todo.py:39
+#: frappe/printing/doctype/print_heading/print_heading.json
+#: frappe/public/js/frappe/form/reminders.js:44
+#: frappe/public/js/frappe/widgets/widget_dialog.js:256
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
+#: frappe/www/attribution.html:24
msgid "Description"
-msgstr "Mô tả"
-
-#. Label of a Small Text field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Description"
-msgstr "Mô tả"
-
-#. Label of a Small Text field in DocType 'Blog Category'
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
-msgid "Description"
-msgstr "Mô tả"
-
-#. Label of a Text field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Description"
-msgstr "Mô tả"
-
-#. Label of a Small Text field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Description"
-msgstr "Mô tả"
-
-#. Label of a Small Text field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Description"
-msgstr "Mô tả"
-
-#. Label of a Small Text field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Description"
-msgstr "Mô tả"
-
-#. Label of a Text Editor field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Description"
-msgstr "Mô tả"
-
-#. Label of a HTML Editor field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Description"
-msgstr "Mô tả"
-
-#. Label of a Section Break field in DocType 'Onboarding Step'
-#. Label of a Markdown Editor field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Description"
-msgstr "Mô tả"
-
-#. Label of a Small Text field in DocType 'Print Heading'
-#: printing/doctype/print_heading/print_heading.json
-msgctxt "Print Heading"
-msgid "Description"
-msgstr "Mô tả"
-
-#. Label of a Small Text field in DocType 'Reminder'
-#: automation/doctype/reminder/reminder.json
-msgctxt "Reminder"
-msgid "Description"
-msgstr "Mô tả"
-
-#. Label of a Small Text field in DocType 'Tag'
-#: desk/doctype/tag/tag.json
-msgctxt "Tag"
-msgid "Description"
-msgstr "Mô tả"
-
-#. Label of a Text Editor field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Description"
-msgstr "Mô tả"
-
-#. Label of a Text field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Description"
-msgstr "Mô tả"
-
-#. Label of a Small Text field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Description"
-msgstr "Mô tả"
-
-#. Label of a Text field in DocType 'Website Slideshow Item'
-#: website/doctype/website_slideshow_item/website_slideshow_item.json
-msgctxt "Website Slideshow Item"
-msgid "Description"
-msgstr "Mô tả"
+msgstr ""
#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)"
-msgstr "Mô tả cho trang danh sách, bằng văn bản thuần túy, chỉ có một vài dòng. (tối đa 200 ký tự)"
+msgstr ""
#. Description of the 'Description' (Section Break) field in DocType
#. 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Description to inform the user about any action that is going to be performed"
msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the designation (Data) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Designation"
-msgstr "Chỉ định"
+msgstr ""
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the desk_access (Check) field in DocType 'Role'
+#: frappe/core/doctype/role/role.json
msgid "Desk Access"
-msgstr "bàn truy cập"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the desk_settings_section (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Desk Settings"
msgstr ""
-#. Label of a Select field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the desk_theme (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Desk Theme"
msgstr ""
#. Name of a role
-#: automation/doctype/reminder/reminder.json core/doctype/report/report.json
-#: core/doctype/submission_queue/submission_queue.json
-#: core/doctype/user_group/user_group.json
-#: custom/doctype/doctype_layout/doctype_layout.json
-#: desk/doctype/calendar_view/calendar_view.json
-#: desk/doctype/custom_html_block/custom_html_block.json
-#: desk/doctype/dashboard/dashboard.json
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-#: desk/doctype/dashboard_settings/dashboard_settings.json
-#: desk/doctype/form_tour/form_tour.json
-#: desk/doctype/kanban_board/kanban_board.json
-#: desk/doctype/list_filter/list_filter.json
-#: desk/doctype/module_onboarding/module_onboarding.json
-#: desk/doctype/note/note.json desk/doctype/number_card/number_card.json
-#: desk/doctype/onboarding_step/onboarding_step.json
-#: email/doctype/document_follow/document_follow.json
-#: email/doctype/email_template/email_template.json
-#: integrations/doctype/google_calendar/google_calendar.json
-#: integrations/doctype/google_contacts/google_contacts.json
-#: printing/doctype/letter_head/letter_head.json
-#: printing/doctype/network_printer_settings/network_printer_settings.json
-#: printing/doctype/print_format/print_format.json
-#: social/doctype/energy_point_log/energy_point_log.json
-#: website/doctype/marketing_campaign/marketing_campaign.json
-#: workflow/doctype/workflow_action/workflow_action.json
-#: workflow/doctype/workflow_state/workflow_state.json
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_group/user_group.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
+#: frappe/desk/doctype/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/website/doctype/utm_campaign/utm_campaign.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Desk User"
msgstr ""
#. Name of a DocType
-#: desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Desktop Icon"
-msgstr "Biểu tượng Desktop"
+msgstr ""
-#: desk/doctype/desktop_icon/desktop_icon.py:230
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:225
msgid "Desktop Icon already exists"
-msgstr "biểu tượng màn hình chờ tồn tại sẵn"
+msgstr ""
-#: public/js/form_builder/store.js:254 public/js/form_builder/utils.js:38
-#: public/js/frappe/form/layout.js:135 public/js/frappe/views/treeview.js:276
+#. Label of the details_tab (Tab Break) field in DocType 'Module Def'
+#. Label of the details (Code) field in DocType 'Scheduled Job Log'
+#. Label of the details_tab (Tab Break) field in DocType 'Customize Form'
+#. Label of the details (Section Break) field in DocType 'Event'
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/public/js/form_builder/components/Tabs.vue:92
+#: frappe/public/js/form_builder/store.js:259
+#: frappe/public/js/form_builder/utils.js:38
+#: frappe/public/js/frappe/form/layout.js:153
+#: frappe/public/js/frappe/views/treeview.js:292
msgid "Details"
-msgstr "Chi tiết"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Details"
-msgstr "Chi tiết"
+#. Label of the use_csv_sniffer (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Detect CSV type"
+msgstr ""
-#. Label of a Section Break field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Details"
-msgstr "Chi tiết"
-
-#. Label of a Code field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
-msgid "Details"
-msgstr "Chi tiết"
-
-#: core/page/permission_manager/permission_manager.js:477
+#: frappe/core/page/permission_manager/permission_manager.js:494
msgid "Did not add"
-msgstr "Không thêm"
+msgstr ""
-#: core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:388
msgid "Did not remove"
-msgstr "Không loại bỏ"
+msgstr ""
-#: public/js/frappe/utils/diffview.js:56
+#: frappe/public/js/frappe/utils/diffview.js:57
msgid "Diff"
msgstr ""
#. Description of the 'States' (Section Break) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Different \"States\" this document can exist in. Like \"Open\", \"Pending Approval\" etc."
-msgstr "Khác nhau \"Hoa\" tài liệu này có thể tồn tại in Như \"Open\", \"Đang xem xét\", vv"
+msgstr ""
-#. Label of a Int field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#. Label of the prefix_digits (Int) field in DocType 'Document Naming Rule'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Digits"
-msgstr "Chữ số"
+msgstr ""
-#. Label of a Select field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_directory_server (Select) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Directory Server"
msgstr ""
-#. Label of a Check field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
+#. Label of the disable_auto_refresh (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Auto Refresh"
-msgstr "Vô hiệu hóa Tự động làm mới"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the disable_automatic_recency_filters (Check) field in DocType
+#. 'List View Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Disable Automatic Recency Filters"
+msgstr ""
+
+#. Label of the disable_change_log_notification (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Change Log Notification"
msgstr ""
-#. Label of a Check field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
+#. Label of the disable_comment_count (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Comment Count"
msgstr ""
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the disable_comments (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Disable Comments"
-msgstr "Tắt nhận xét"
+msgstr ""
-#. Label of a Check field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
+#. Label of the disable_contact_us (Check) field in DocType 'Contact Us
+#. Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Disable Contact Us Page"
+msgstr ""
+
+#. Label of the disable_count (Check) field in DocType 'List View Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Count"
-msgstr "Vô hiệu hóa Đếm"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the disable_document_sharing (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Document Sharing"
msgstr ""
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the disable_likes (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Disable Likes"
msgstr ""
-#: core/doctype/report/report.js:36
+#: frappe/core/doctype/report/report.js:39
msgid "Disable Report"
-msgstr "Disable Báo cáo"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the no_smtp_authentication (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Disable SMTP server authentication"
-msgstr "Vô hiệu hóa xác thực máy chủ SMTP"
+msgstr ""
-#. Label of a Check field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
+#. Label of the disable_sidebar_stats (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Sidebar Stats"
-msgstr "Vô hiệu hóa thống kê Sidebar"
+msgstr ""
-#: website/doctype/website_settings/website_settings.js:146
+#: frappe/website/doctype/website_settings/website_settings.js:146
msgid "Disable Signup for your site"
-msgstr "Tắt Đăng ký cho trang web của bạn"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the disable_standard_email_footer (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Standard Email Footer"
-msgstr "Vô hiệu hóa chân trang email chuẩn"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the disable_system_update_notification (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable System Update Notification"
msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the disable_user_pass_login (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Username/Password Login"
msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the disable_signup (Check) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Disable signups"
msgstr ""
-#: core/doctype/user/user_list.js:14 public/js/frappe/model/indicator.js:108
-#: public/js/frappe/model/indicator.js:115
-msgid "Disabled"
-msgstr "Đã vô hiệu hóa"
-
-#. Label of a Check field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Disabled"
-msgstr "Đã vô hiệu hóa"
-
-#. Label of a Check field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Disabled"
-msgstr "Đã vô hiệu hóa"
-
-#. Label of a Check field in DocType 'Auto Repeat'
+#. Label of the disabled (Check) field in DocType 'Assignment Rule'
+#. Label of the disabled (Check) field in DocType 'Auto Repeat'
#. Option for the 'Status' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the disabled (Check) field in DocType 'Milestone Tracker'
+#. Label of the disabled (Check) field in DocType 'Address'
+#. Label of the disabled (Check) field in DocType 'Document Naming Rule'
+#. Label of the disabled (Check) field in DocType 'Report'
+#. Label of the disabled (Check) field in DocType 'Role'
+#. Label of the disabled (Check) field in DocType 'Server Script'
+#. Label of the disabled (Check) field in DocType 'Letter Head'
+#. Label of the disabled (Check) field in DocType 'Print Format'
+#. Label of the disabled (Check) field in DocType 'Print Style'
+#. Label of the disabled (Check) field in DocType 'Blogger'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/doctype/user/user_list.js:14
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/public/js/frappe/form/templates/address_list.html:35
+#: frappe/public/js/frappe/model/indicator.js:108
+#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
-msgstr "Đã vô hiệu hóa"
+msgstr ""
-#. Label of a Check field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
-msgid "Disabled"
-msgstr "Đã vô hiệu hóa"
-
-#. Label of a Check field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
-msgid "Disabled"
-msgstr "Đã vô hiệu hóa"
-
-#. Label of a Check field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
-msgid "Disabled"
-msgstr "Đã vô hiệu hóa"
-
-#. Label of a Check field in DocType 'Milestone Tracker'
-#: automation/doctype/milestone_tracker/milestone_tracker.json
-msgctxt "Milestone Tracker"
-msgid "Disabled"
-msgstr "Đã vô hiệu hóa"
-
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Disabled"
-msgstr "Đã vô hiệu hóa"
-
-#. Label of a Check field in DocType 'Print Style'
-#: printing/doctype/print_style/print_style.json
-msgctxt "Print Style"
-msgid "Disabled"
-msgstr "Đã vô hiệu hóa"
-
-#. Label of a Check field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Disabled"
-msgstr "Đã vô hiệu hóa"
-
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
-msgid "Disabled"
-msgstr "Đã vô hiệu hóa"
-
-#. Label of a Check field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Disabled"
-msgstr "Đã vô hiệu hóa"
-
-#: email/doctype/email_account/email_account.js:237
+#: frappe/email/doctype/email_account/email_account.js:300
msgid "Disabled Auto Reply"
-msgstr "Đã tắt trả lời tự động"
+msgstr ""
-#: public/js/frappe/views/communication.js:30
-#: public/js/frappe/views/dashboard/dashboard_view.js:70
-#: public/js/frappe/views/workspace/workspace.js:502
-#: public/js/frappe/web_form/web_form.js:187
-#: website/doctype/web_form/templates/web_form.html:41
+#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
+#: frappe/public/js/frappe/views/workspace/workspace.js:351
+#: frappe/public/js/frappe/web_form/web_form.js:187
msgid "Discard"
-msgstr "Huỷ bỏ"
+msgstr ""
-#: public/js/frappe/web_form/web_form.js:184
+#: frappe/website/doctype/web_form/templates/web_form.html:44
+msgctxt "Button in web form"
+msgid "Discard"
+msgstr ""
+
+#: 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:184
msgid "Discard?"
msgstr ""
+#: frappe/desk/form/save.py:75
+msgid "Discarded"
+msgstr ""
+
+#. Description of the 'Suggested Indexes' (Table) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "Disclaimer: These indexes are suggested based on data and queries performed during this recording. These suggestions may or may not help."
+msgstr ""
+
#. Name of a DocType
-#: website/doctype/discussion_reply/discussion_reply.json
+#: frappe/website/doctype/discussion_reply/discussion_reply.json
msgid "Discussion Reply"
msgstr ""
#. Name of a DocType
-#: website/doctype/discussion_topic/discussion_topic.json
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
msgid "Discussion Topic"
msgstr ""
-#: templates/discussions/reply_card.html:16
+#: frappe/public/js/frappe/form/footer/form_timeline.js:638
+#: frappe/templates/discussions/reply_card.html:16
+#: frappe/templates/discussions/reply_section.html:29
msgid "Dismiss"
-msgstr "Bỏ qua"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#: 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 "Hiển thị"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Display"
-msgstr "Hiển thị"
-
-#. Label of a Code field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the depends_on (Code) field in DocType 'Web Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Display Depends On"
-msgstr "Hiện thị dựa trên"
+msgstr ""
-#. Label of a Code field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the depends_on (Code) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Display Depends On (JS)"
msgstr ""
-#. Label of a Check field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:180
+msgid "Divider"
+msgstr ""
+
+#. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Do Not Create New User "
msgstr ""
#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: public/js/frappe/form/grid.js:1156
+#: frappe/public/js/frappe/form/grid.js:1189
msgid "Do not edit headers which are preset in the template"
-msgstr "Không sửa tiêu đề được đặt sẵn trong mẫu"
+msgstr ""
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:64
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:69
msgid "Do not have permission to access bucket {0}."
msgstr ""
-#: core/doctype/system_settings/system_settings.js:66
+#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
-#: public/js/frappe/form/form.js:977
+#: frappe/public/js/frappe/form/form.js:958
msgid "Do you want to cancel all linked documents?"
-msgstr "Bạn có muốn hủy bỏ tất cả các tài liệu liên kết?"
+msgstr ""
-#. Label of a Select field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the webhook_docevent (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Doc Event"
-msgstr "Sự kiện Doc"
+msgstr ""
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the sb_doc_events (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Doc Events"
-msgstr "Sự kiện Doc"
+msgstr ""
-#. Label of a Select field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#. Label of the doc_status (Select) field in DocType 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Doc Status"
-msgstr "Doc Trạng thái"
+msgstr ""
#. Name of a DocType
-#: core/doctype/docfield/docfield.json
-msgid "DocField"
-msgstr "DocField"
-
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "DocField"
-msgstr "DocField"
+msgstr ""
#. Name of a DocType
-#: core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docperm/docperm.json
msgid "DocPerm"
-msgstr "DocPerm"
+msgstr ""
#. Name of a DocType
-#: core/doctype/docshare/docshare.json
+#: frappe/core/doctype/docshare/docshare.json
msgid "DocShare"
-msgstr "DocShare"
+msgstr ""
-#: workflow/doctype/workflow/workflow.js:264
-msgid ""
-"DocStatus of the following states have changed:
{0}
\n"
+#: frappe/workflow/doctype/workflow/workflow.js:264
+msgid "DocStatus of the following states have changed:
{0}
\n"
"\t\t\t\tDo you want to update the docstatus of existing documents in those states?
\n"
"\t\t\t\tThis does not undo any effect bought in by the document's existing docstatus.\n"
"\t\t\t\t"
msgstr ""
+#. Label of the document_type (Link) field in DocType 'Amended Document Naming
+#. Settings'
+#. Label of the doctype_name (Link) field in DocType 'Audit Trail'
#. Name of a DocType
-#: core/doctype/data_export/exporter.py:26 core/doctype/doctype/doctype.json
-#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:15
-#: website/doctype/website_slideshow/website_slideshow.js:18
-msgid "DocType"
-msgstr "Tài liệu"
-
-#. Label of a Link field in DocType 'Amended Document Naming Settings'
-#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
-msgctxt "Amended Document Naming Settings"
-msgid "DocType"
-msgstr "Tài liệu"
-
-#. Label of a Link field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
-msgid "DocType"
-msgstr "Tài liệu"
-
-#. Label of a Link field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
-msgid "DocType"
-msgstr "Tài liệu"
-
-#. Label of a Link field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "DocType"
-msgstr "Tài liệu"
-
-#. Label of a Link in the Build Workspace
-#. Label of a shortcut in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "DocType"
-msgid "DocType"
-msgstr "Tài liệu"
-
#. Group in Module Def's connections
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "DocType"
-msgstr "Tài liệu"
-
-#. Label of a Link field in DocType 'Permission Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "DocType"
-msgstr "Tài liệu"
-
+#. Label of the ref_doctype (Link) field in DocType 'Permission Inspector'
+#. Label of the ref_doctype (Link) field in DocType 'Version'
+#. Label of a shortcut in the Build Workspace
+#. Label of the dt (Link) field in DocType 'Client Script'
+#. Label of the dt (Link) field in DocType 'Custom Field'
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
-#. Label of a Link field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
-msgid "DocType"
-msgstr "Tài liệu"
-
-#. Label of a Link field in DocType 'Version'
-#: core/doctype/version/version.json
-msgctxt "Version"
-msgid "DocType"
-msgstr "Tài liệu"
-
-#. Label of a Link field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "DocType"
-msgstr "Tài liệu"
-
+#. Label of the doc_type (Link) field in DocType 'Property Setter'
+#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
-msgid "DocType"
-msgstr "Tài liệu"
-
-#. Label of a Link field in DocType 'Workspace Quick List'
-#: desk/doctype/workspace_quick_list/workspace_quick_list.json
-msgctxt "Workspace Quick List"
-msgid "DocType"
-msgstr "Tài liệu"
-
+#. Label of the document_type (Link) field in DocType 'Workspace Quick List'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
+#. Label of the doc_type (Link) field in DocType 'Print Format'
+#: 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 "Tài liệu"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1528
+#: frappe/core/doctype/doctype/doctype.py:1577
msgid "DocType {0} provided for the field {1} must have atleast one Link field"
-msgstr "DocType {0} được cung cấp cho trường {1} phải có ít nhất một trường Liên kết"
+msgstr ""
#. Name of a DocType
-#: core/doctype/doctype_action/doctype_action.json
-msgid "DocType Action"
-msgstr "Hành động DocType"
-
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "DocType Action"
-msgstr "Hành động DocType"
+msgstr ""
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
-#. Label of a Select field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the doctype_event (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "DocType Event"
-msgstr "Sự kiện DocType"
+msgstr ""
#. Name of a DocType
-#: custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
msgid "DocType Layout"
msgstr ""
#. Name of a DocType
-#: custom/doctype/doctype_layout_field/doctype_layout_field.json
+#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
msgid "DocType Layout Field"
msgstr ""
#. Name of a DocType
-#: core/doctype/doctype_link/doctype_link.json
-msgid "DocType Link"
-msgstr "Liên kết tài liệu"
-
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/core/doctype/doctype_link/doctype_link.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "DocType Link"
-msgstr "Liên kết tài liệu"
-
-#: core/doctype/doctype/doctype_list.js:10
-msgid "DocType Name"
msgstr ""
#. Name of a DocType
-#: core/doctype/doctype_state/doctype_state.json
-msgid "DocType State"
-msgstr ""
-
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "DocType State"
msgstr ""
-#. Label of a Select field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#. Label of the doc_view (Select) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:466
msgid "DocType View"
-msgstr "Chế độ xem DocType"
+msgstr ""
-#: core/doctype/doctype/doctype.py:646
+#: frappe/core/doctype/doctype/doctype.py:656
msgid "DocType can not be merged"
-msgstr "DocType không thể được sáp nhập"
+msgstr ""
-#: core/doctype/doctype/doctype.py:640
+#: frappe/core/doctype/doctype/doctype.py:650
msgid "DocType can only be renamed by Administrator"
-msgstr "DocType chỉ có thể được đổi tên thành bởi Administrator"
+msgstr ""
-#: integrations/doctype/webhook/webhook.py:79
+#. Description of a DocType
+#: frappe/core/doctype/doctype/doctype.json
+msgid "DocType is a Table / Form in the application."
+msgstr ""
+
+#: frappe/integrations/doctype/webhook/webhook.py:79
msgid "DocType must be Submittable for the selected Doc Event"
-msgstr "DocType phải được Cho phép chuyển tiếp cho sự kiện Doc đã chọn"
+msgstr ""
-#: client.py:421
+#: frappe/client.py:403
msgid "DocType must be a string"
msgstr ""
-#: public/js/form_builder/store.js:149
+#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr ""
-#: core/doctype/log_settings/log_settings.py:57
+#: frappe/core/doctype/log_settings/log_settings.py:57
msgid "DocType not supported by Log Settings."
msgstr ""
#. Description of the 'Document Type' (Link) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "DocType on which this Workflow is applicable."
-msgstr "DocType mà Workflow này được áp dụng."
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_settings.js:4
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:4
msgid "DocType required"
msgstr ""
-#: modules/utils.py:161
+#: frappe/modules/utils.py:175
msgid "DocType {0} does not exist."
msgstr ""
-#: modules/utils.py:224
+#: frappe/modules/utils.py:238
msgid "DocType {} not found"
msgstr ""
-#: core/doctype/doctype/doctype.py:1009
+#: frappe/core/doctype/doctype/doctype.py:1028
msgid "DocType's name should not start or end with whitespace"
-msgstr "Tên của DocType không được bắt đầu hoặc kết thúc bằng khoảng trắng"
-
-#: core/doctype/doctype/doctype.js:70
-msgid "DocTypes can not be modified, please use {0} instead"
msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:645
-msgid "Doctype"
-msgstr "DocType"
+#: frappe/core/doctype/doctype/doctype.js:67
+msgid "DocTypes cannot be modified, please use {0} instead"
+msgstr ""
-#. Label of a Link field in DocType 'Document Follow'
-#: email/doctype/document_follow/document_follow.json
-msgctxt "Document Follow"
+#. 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:669
msgid "Doctype"
-msgstr "DocType"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1004
+#: frappe/core/doctype/doctype/doctype.py:1022
msgid "Doctype name is limited to {0} characters ({1})"
msgstr ""
-#: public/js/frappe/list/bulk_operations.js:3
+#: frappe/public/js/frappe/list/bulk_operations.js:3
msgid "Doctype required"
-msgstr "Doctype yêu cầu"
-
-#: public/js/frappe/views/workspace/workspace.js:1303
-msgid "Doctype with same route already exist. Please choose different title."
msgstr ""
-#. Label of a Dynamic Link field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
-msgid "Document"
-msgstr "Tài liệu"
-
+#. 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'
-#: core/doctype/doctype/doctype.json
-msgctxt "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 "Tài liệu"
+msgstr ""
-#. Label of a Data field in DocType 'Milestone'
-#: automation/doctype/milestone/milestone.json
-msgctxt "Milestone"
-msgid "Document"
-msgstr "Tài liệu"
-
-#. Label of a Link field in DocType 'Notification Subscribed Document'
-#: desk/doctype/notification_subscribed_document/notification_subscribed_document.json
-msgctxt "Notification Subscribed Document"
-msgid "Document"
-msgstr "Tài liệu"
-
-#. Label of a Dynamic Link field in DocType 'Permission Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
-msgid "Document"
-msgstr "Tài liệu"
-
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the actions (Table) field in DocType 'DocType'
+#. Label of the document_actions_section (Section Break) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Document Actions"
-msgstr "Hành động tài liệu"
+msgstr ""
+#. Label of the document_follow_notifications_section (Section Break) field in
+#. DocType 'User'
#. Name of a DocType
-#: email/doctype/document_follow/document_follow.json
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/document_follow/document_follow.json
msgid "Document Follow"
-msgstr "Tài liệu theo dõi"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Document Follow"
-msgstr "Tài liệu theo dõi"
-
-#: desk/form/document_follow.py:84
+#: frappe/desk/form/document_follow.py:94
msgid "Document Follow Notification"
-msgstr "Tài liệu theo thông báo"
+msgstr ""
-#. Label of a Data field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#. Label of the document_name (Data) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Document Link"
-msgstr "Liên kết tài liệu"
+msgstr ""
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the section_break_12 (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Document Linking"
msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the links (Table) field in DocType 'DocType'
+#. Label of the document_links_section (Section Break) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Document Links"
-msgstr "Liên kết tài liệu"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1162
+#: frappe/core/doctype/doctype/doctype.py:1211
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr ""
-#: core/doctype/doctype/doctype.py:1182
+#: frappe/core/doctype/doctype/doctype.py:1231
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr ""
-#: core/doctype/doctype/doctype.py:1145
+#: frappe/core/doctype/doctype/doctype.py:1194
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr ""
-#: core/doctype/doctype/doctype.py:1151
+#: frappe/core/doctype/doctype/doctype.py:1200
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:36
-#: public/js/frappe/form/form_tour.js:58
+#. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder'
+#. Label of the share_name (Dynamic Link) field in DocType 'DocShare'
+#. Label of the document_name (Data) field in DocType 'Transaction Log'
+#. Label of the docname (Data) field in DocType 'Version'
+#. Label of the document_name (Dynamic Link) field in DocType 'Tag Link'
+#. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow'
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:36
+#: frappe/core/doctype/version/version.json
+#: frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/public/js/frappe/form/form_tour.js:62
msgid "Document Name"
-msgstr "Document Name"
+msgstr ""
-#. Label of a Dynamic Link field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "Document Name"
-msgstr "Document Name"
-
-#. Label of a Dynamic Link field in DocType 'Document Follow'
-#: email/doctype/document_follow/document_follow.json
-msgctxt "Document Follow"
-msgid "Document Name"
-msgstr "Document Name"
-
-#. Label of a Dynamic Link field in DocType 'Reminder'
-#: automation/doctype/reminder/reminder.json
-msgctxt "Reminder"
-msgid "Document Name"
-msgstr "Document Name"
-
-#. Label of a Dynamic Link field in DocType 'Tag Link'
-#: desk/doctype/tag_link/tag_link.json
-msgctxt "Tag Link"
-msgid "Document Name"
-msgstr "Document Name"
-
-#. Label of a Data field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Document Name"
-msgstr "Document Name"
-
-#. Label of a Data field in DocType 'Version'
-#: core/doctype/version/version.json
-msgctxt "Version"
-msgid "Document Name"
-msgstr "Document Name"
-
-#: client.py:424
+#: frappe/client.py:406
msgid "Document Name must be a string"
msgstr ""
#. Name of a DocType
-#: core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Document Naming Rule"
-msgstr "Quy tắc đặt tên tài liệu"
+msgstr ""
#. Name of a DocType
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "Document Naming Rule Condition"
-msgstr "Điều kiện quy tắc đặt tên tài liệu"
+msgstr ""
#. Name of a DocType
-#: core/doctype/document_naming_settings/document_naming_settings.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Document Naming Settings"
msgstr ""
-#: model/document.py:1519
+#: frappe/model/document.py:477
msgid "Document Queued"
-msgstr "Tài liệu xếp hàng đợi"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document_list.js:38
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:38
msgid "Document Restoration Summary"
-msgstr "Tóm tắt khôi phục tài liệu"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document.py:67
+#: frappe/core/doctype/deleted_document/deleted_document.py:68
msgid "Document Restored"
-msgstr "tài liệu được khôi phục"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:359
-#: public/js/frappe/widgets/onboarding_widget.js:401
-#: public/js/frappe/widgets/onboarding_widget.js:420
-#: public/js/frappe/widgets/onboarding_widget.js:439
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:354
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:396
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:415
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:434
msgid "Document Saved"
msgstr ""
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#. Label of the enable_email_share (Check) field in DocType 'Notification
+#. Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Document Share"
-msgstr "Chia sẻ tài liệu"
+msgstr ""
#. Name of a DocType
-#: core/doctype/document_share_key/document_share_key.json
+#: frappe/core/doctype/document_share_key/document_share_key.json
msgid "Document Share Key"
msgstr ""
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the document_share_key_expiry (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Document Share Key Expiry (in Days)"
msgstr ""
#. Name of a report
#. Label of a Link in the Users Workspace
-#: core/report/document_share_report/document_share_report.json
-#: core/workspace/users/users.json
+#: frappe/core/report/document_share_report/document_share_report.json
+#: frappe/core/workspace/users/users.json
msgid "Document Share Report"
-msgstr "Tài liệu Chia sẻ Báo cáo"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the states (Table) field in DocType 'DocType'
+#. Label of the document_states_section (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the states (Table) field in DocType 'Workflow'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document States"
-msgstr "Tài liệu Hoa"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Document States"
-msgstr "Tài liệu Hoa"
-
-#. Label of a Table field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
-msgid "Document States"
-msgstr "Tài liệu Hoa"
-
-#: model/__init__.py:152 model/meta.py:47 public/js/frappe/model/meta.js:199
-#: public/js/frappe/model/model.js:127
+#: frappe/model/meta.py:52 frappe/public/js/frappe/model/meta.js:202
+#: frappe/public/js/frappe/model/model.js:137
msgid "Document Status"
-msgstr "Trạng thái bản ghi"
+msgstr ""
-#. Label of a Link field in DocType 'Tag Link'
-#: desk/doctype/tag_link/tag_link.json
-msgctxt "Tag Link"
+#. Label of the tag (Link) field in DocType 'Tag Link'
+#: frappe/desk/doctype/tag_link/tag_link.json
msgid "Document Tag"
-msgstr "Thẻ tài liệu"
+msgstr ""
-#. Label of a Data field in DocType 'Tag Link'
-#: desk/doctype/tag_link/tag_link.json
-msgctxt "Tag Link"
+#. Label of the title (Data) field in DocType 'Tag Link'
+#: frappe/desk/doctype/tag_link/tag_link.json
msgid "Document Title"
-msgstr "Tiêu đề tài liệu"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:26
-#: core/page/permission_manager/permission_manager.js:49
-#: core/page/permission_manager/permission_manager.js:211
-#: core/page/permission_manager/permission_manager.js:432
-msgid "Document Type"
-msgstr "loại tài liệu"
-
-#. Label of a Link field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Document Type"
-msgstr "loại tài liệu"
-
-#. Label of a Link field in DocType 'Bulk Update'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
-msgid "Document Type"
-msgstr "loại tài liệu"
-
-#. Label of a Link field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Document Type"
-msgstr "loại tài liệu"
-
-#. Label of a Link field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Document Type"
-msgstr "loại tài liệu"
-
-#. Label of a Link field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "Document Type"
-msgstr "loại tài liệu"
-
-#. Label of a Link field in DocType 'DocType Layout'
-#: custom/doctype/doctype_layout/doctype_layout.json
-msgctxt "DocType Layout"
-msgid "Document Type"
-msgstr "loại tài liệu"
-
-#. Label of a Link field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
-msgid "Document Type"
-msgstr "loại tài liệu"
-
-#. Label of a Link field in DocType 'Global Search DocType'
-#: desk/doctype/global_search_doctype/global_search_doctype.json
-msgctxt "Global Search DocType"
-msgid "Document Type"
-msgstr "loại tài liệu"
-
-#. Label of a Link field in DocType 'Milestone'
-#: automation/doctype/milestone/milestone.json
-msgctxt "Milestone"
-msgid "Document Type"
-msgstr "loại tài liệu"
-
-#. Label of a Link field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Document Type"
-msgstr "loại tài liệu"
-
-#. Label of a Link field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "Document Type"
-msgstr "loại tài liệu"
-
-#. Label of a Link field in DocType 'Number Card'
+#. Label of the document_type (Link) field in DocType 'Assignment Rule'
+#. Label of the reference_type (Link) field in DocType 'Milestone'
+#. Label of the reminder_doctype (Link) field in DocType 'Reminder'
+#. Label of the reference_doctype (Link) field in DocType 'Data Import'
+#. Label of the share_doctype (Link) field in DocType 'DocShare'
+#. Label of the document_type (Link) field in DocType 'Document Naming Rule'
+#. Label of the ref_doctype (Link) field in DocType 'Session Default'
+#. Label of the document_type (Link) field in DocType 'User Document Type'
+#. Label of the document_type (Link) field in DocType 'User Select Document
+#. Type'
+#. Label of the document_type (Link) field in DocType 'DocType Layout'
+#. Label of the document_type (Link) field in DocType 'Bulk Update'
+#. Label of the document_type (Link) field in DocType 'Dashboard Chart'
+#. Label of the document_type (Link) field in DocType 'Global Search DocType'
+#. Label of the document_type (Link) field in DocType 'Notification Log'
+#. Label of the document_type (Link) field in DocType 'Number Card'
#. Option for the 'Type' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#. Label of the document_type (Link) field in DocType 'Tag Link'
+#. Label of the document_type (Link) field in DocType 'Notification'
+#. Label of the document_type (Link) field in DocType 'Print Format Field
+#. Template'
+#. Label of the document_type (Data) field in DocType 'Personal Data Deletion
+#. Step'
+#. Label of the document_type (Link) field in DocType 'Workflow'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/session_default/session_default.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:26
+#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
+#: frappe/core/page/permission_manager/permission_manager.js:49
+#: frappe/core/page/permission_manager/permission_manager.js:218
+#: frappe/core/page/permission_manager/permission_manager.js:449
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
-msgstr "loại tài liệu"
+msgstr ""
-#. Label of a Data field in DocType 'Personal Data Deletion Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
-msgid "Document Type"
-msgstr "loại tài liệu"
-
-#. Label of a Link field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
-msgid "Document Type"
-msgstr "loại tài liệu"
-
-#. Label of a Link field in DocType 'Reminder'
-#: automation/doctype/reminder/reminder.json
-msgctxt "Reminder"
-msgid "Document Type"
-msgstr "loại tài liệu"
-
-#. Label of a Link field in DocType 'Session Default'
-#: core/doctype/session_default/session_default.json
-msgctxt "Session Default"
-msgid "Document Type"
-msgstr "loại tài liệu"
-
-#. Label of a Link field in DocType 'Tag Link'
-#: desk/doctype/tag_link/tag_link.json
-msgctxt "Tag Link"
-msgid "Document Type"
-msgstr "loại tài liệu"
-
-#. Label of a Link field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Document Type"
-msgstr "loại tài liệu"
-
-#. Label of a Link field in DocType 'User Select Document Type'
-#: core/doctype/user_select_document_type/user_select_document_type.json
-msgctxt "User Select Document Type"
-msgid "Document Type"
-msgstr "loại tài liệu"
-
-#. Label of a Link field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
-msgid "Document Type"
-msgstr "loại tài liệu"
-
-#: desk/doctype/number_card/number_card.py:55
+#: frappe/desk/doctype/number_card/number_card.py:59
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: permissions.py:149
+#: frappe/permissions.py:148
msgid "Document Type is not importable"
-msgstr "Loại tài liệu không thể nhập được"
+msgstr ""
-#: permissions.py:145
+#: frappe/permissions.py:144
msgid "Document Type is not submittable"
-msgstr "Loại tài liệu không thể gửi"
+msgstr ""
-#. Label of a Link field in DocType 'Milestone Tracker'
-#: automation/doctype/milestone_tracker/milestone_tracker.json
-msgctxt "Milestone Tracker"
+#. Label of the document_type (Link) field in DocType 'Milestone Tracker'
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Document Type to Track"
-msgstr "Loại tài liệu cần theo dõi"
+msgstr ""
-#: desk/doctype/global_search_settings/global_search_settings.py:39
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:40
msgid "Document Type {0} has been repeated."
-msgstr "Loại tài liệu {0} đã được lặp lại."
+msgstr ""
-#. Label of a Table field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the user_doctypes (Table) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "Document Types"
-msgstr "Các loại tài liệu"
+msgstr ""
-#. Label of a Table field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the select_doctypes (Table) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "Document Types (Select Permissions Only)"
msgstr ""
-#. Label of a Section Break field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the section_break_2 (Section Break) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "Document Types and Permissions"
msgstr ""
-#: core/doctype/submission_queue/submission_queue.py:162
+#: frappe/core/doctype/submission_queue/submission_queue.py:163
+#: frappe/model/document.py:1943
msgid "Document Unlocked"
msgstr ""
-#: public/js/frappe/list/list_view.js:1054
+#: frappe/desk/form/document_follow.py:56
+msgid "Document follow is not enabled for this user."
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1157
msgid "Document has been cancelled"
msgstr ""
-#: public/js/frappe/list/list_view.js:1053
+#: frappe/public/js/frappe/list/list_view.js:1156
msgid "Document has been submitted"
msgstr ""
-#: public/js/frappe/list/list_view.js:1052
+#: frappe/public/js/frappe/list/list_view.js:1155
msgid "Document is in draft state"
msgstr ""
-#: core/doctype/communication/communication.js:182
+#: frappe/public/js/frappe/form/workflow.js:45
+msgid "Document is only editable by users with role"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:182
msgid "Document not Relinked"
msgstr ""
-#: model/rename_doc.py:230 public/js/frappe/form/toolbar.js:145
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:155
msgid "Document renamed from {0} to {1}"
-msgstr "Tài liệu được đổi tên từ {0} thành {1}"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:154
+#: frappe/public/js/frappe/form/toolbar.js:164
msgid "Document renaming from {0} to {1} has been queued"
msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.py:397
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:397
msgid "Document type is required to create a dashboard chart"
-msgstr "Loại tài liệu là cần thiết để tạo một biểu đồ bảng điều khiển"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document.py:44
+#: frappe/core/doctype/deleted_document/deleted_document.py:45
msgid "Document {0} Already Restored"
-msgstr "Tài liệu {0} đã được khôi phục"
+msgstr ""
-#: workflow/doctype/workflow_action/workflow_action.py:203
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:203
msgid "Document {0} has been set to state {1} by {2}"
-msgstr "Tài liệu {0} đã được đặt thành trạng thái {1} theo {2}"
+msgstr ""
-#: client.py:443
+#: frappe/client.py:430
msgid "Document {0} {1} does not exist"
msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the documentation (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
-msgstr "Liên kết tài liệu"
+msgstr ""
-#. Label of a Data field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the documentation_url (Data) field in DocType 'DocField'
+#. Label of the documentation_url (Data) field in DocType 'Module Onboarding'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Documentation URL"
-msgstr "URL tài liệu"
+msgstr ""
-#. Label of a Data field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Documentation URL"
-msgstr "URL tài liệu"
+#: frappe/public/js/frappe/form/templates/form_dashboard.html:17
+msgid "Documents"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document_list.js:25
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:25
msgid "Documents restored successfully"
-msgstr "Đã khôi phục tài liệu thành công"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document_list.js:33
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:33
msgid "Documents that failed to restore"
-msgstr "Tài liệu không khôi phục được"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document_list.js:29
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:29
msgid "Documents that were already restored"
-msgstr "Tài liệu đã được khôi phục"
+msgstr ""
#. Name of a DocType
-#: core/doctype/domain/domain.json
+#. Label of the domain (Data) field in DocType 'Domain'
+#. Label of the domain (Link) field in DocType 'Has Domain'
+#. Label of the domain (Link) field in DocType 'Email Account'
+#: frappe/core/doctype/domain/domain.json
+#: frappe/core/doctype/has_domain/has_domain.json
+#: frappe/email/doctype/email_account/email_account.json
msgid "Domain"
-msgstr "Tên miền"
+msgstr ""
-#. Label of a Data field in DocType 'Domain'
-#: core/doctype/domain/domain.json
-msgctxt "Domain"
-msgid "Domain"
-msgstr "Tên miền"
-
-#. Label of a Link field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Domain"
-msgstr "Tên miền"
-
-#. Label of a Link field in DocType 'Has Domain'
-#: core/doctype/has_domain/has_domain.json
-msgctxt "Has Domain"
-msgid "Domain"
-msgstr "Tên miền"
-
-#. Label of a Data field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#. Label of the domain_name (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Domain Name"
msgstr ""
#. Name of a DocType
-#: core/doctype/domain_settings/domain_settings.json
+#: frappe/core/doctype/domain_settings/domain_settings.json
msgid "Domain Settings"
-msgstr "Cài đặt miền tùy chỉnh"
+msgstr ""
-#. Label of a HTML field in DocType 'Domain Settings'
-#: core/doctype/domain_settings/domain_settings.json
-msgctxt "Domain Settings"
+#. Label of the domains_html (HTML) field in DocType 'Domain Settings'
+#: frappe/core/doctype/domain_settings/domain_settings.json
msgid "Domains HTML"
-msgstr "Tên miền HTML"
+msgstr ""
#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom
#. Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
-msgstr "Không thẻ HTML Mã hóa HTML như <script> hay chỉ là nhân vật như <hoặc>, vì chúng có thể được cố ý sử dụng trong lĩnh vực này"
+msgstr ""
-#: public/js/frappe/data_import/import_preview.js:268
+#: frappe/public/js/frappe/data_import/import_preview.js:272
msgid "Don't Import"
-msgstr "Không nhập"
+msgstr ""
-#. Label of a Check field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the override_status (Check) field in DocType 'Workflow'
+#. Label of the avoid_status_override (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow/workflow.json
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Don't Override Status"
-msgstr "Đừng Override Status"
+msgstr ""
-#. Label of a Check field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
-msgid "Don't Override Status"
-msgstr "Đừng Override Status"
-
-#. Label of a Check field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the mute_emails (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Don't Send Emails"
-msgstr "Không gửi email"
-
-#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize
-#. Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
msgstr ""
#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize
+#. Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
msgstr ""
-#: www/login.html:119 www/login.html:135 www/update-password.html:34
+#: frappe/www/login.html:139 frappe/www/login.html:155
+#: frappe/www/update-password.html:57
msgid "Don't have an account?"
msgstr ""
-#: public/js/frappe/ui/messages.js:233
-#: public/js/onboarding_tours/onboarding_tours.js:17
+#: frappe/public/js/frappe/form/form_tour.js:16
+#: frappe/public/js/frappe/ui/messages.js:238
+#: frappe/public/js/onboarding_tours/onboarding_tours.js:17
+#: frappe/public/js/print_format_builder/HTMLEditor.vue:5
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52
msgid "Done"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Donut"
-msgstr "Bánh vòng"
+msgstr ""
-#: core/doctype/file/file.js:5
-#: email/doctype/auto_email_report/auto_email_report.js:8
+#: frappe/public/js/form_builder/components/EditableInput.vue:43
+msgid "Double click to edit label"
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:15
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
+#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
-msgstr "Tải xuống"
+msgstr ""
-#: public/js/frappe/views/reports/report_utils.js:229
+#: frappe/public/js/frappe/views/reports/report_utils.js:237
msgctxt "Export report"
msgid "Download"
-msgstr "Tải xuống"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json desk/page/backups/backups.js:4
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/page/backups/backups.js:4
msgid "Download Backups"
-msgstr "Tải Backups"
+msgstr ""
-#: templates/emails/download_data.html:6
+#: frappe/templates/emails/download_data.html:6
msgid "Download Data"
-msgstr "Tải xuống dữ liệu"
+msgstr ""
-#: desk/page/backups/backups.js:12
+#: frappe/desk/page/backups/backups.js:14
msgid "Download Files Backup"
-msgstr "Tải xuống Tệp sao lưu"
+msgstr ""
-#: templates/emails/download_data.html:9
+#: frappe/templates/emails/download_data.html:9
msgid "Download Link"
-msgstr "Đường dẫn tải xuống"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:764
+#: frappe/public/js/frappe/list/bulk_operations.js:134
+msgid "Download PDF"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:835
msgid "Download Report"
-msgstr "Tải xuống báo cáo"
+msgstr ""
-#. Label of a Button field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the download_template (Button) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Download Template"
-msgstr "Tải mẫu"
+msgstr ""
-#: website/doctype/personal_data_download_request/personal_data_download_request.py:60
-#: website/doctype/personal_data_download_request/personal_data_download_request.py:68
-#: website/doctype/personal_data_download_request/test_personal_data_download_request.py:50
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:61
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:69
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:57
msgid "Download Your Data"
-msgstr "Tải xuống dữ liệu của bạn"
+msgstr ""
-#: public/js/frappe/model/indicator.js:73
-#: public/js/frappe/ui/filters/filter.js:493
+#: frappe/core/doctype/prepared_report/prepared_report.js:49
+msgid "Download as CSV"
+msgstr ""
+
+#: frappe/contacts/doctype/contact/contact.js:98
+msgid "Download vCard"
+msgstr ""
+
+#: frappe/contacts/doctype/contact/contact_list.js:4
+msgid "Download vCards"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:46
+msgid "Dr"
+msgstr ""
+
+#: frappe/public/js/frappe/model/indicator.js:73
+#: frappe/public/js/frappe/ui/filters/filter.js:538
msgid "Draft"
-msgstr "Bản nháp"
+msgstr ""
-#: public/js/frappe/views/workspace/blocks/header.js:46
-#: public/js/frappe/views/workspace/blocks/paragraph.js:136
-#: public/js/frappe/views/workspace/blocks/spacer.js:44
-#: public/js/frappe/views/workspace/workspace.js:565
-#: public/js/frappe/widgets/base_widget.js:33
+#: frappe/public/js/frappe/views/workspace/blocks/header.js:46
+#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:136
+#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:44
+#: frappe/public/js/frappe/widgets/base_widget.js:33
msgid "Drag"
msgstr ""
-#. Label of a Password field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Dropbox Access Token"
-msgstr "phiếu truy cập Dropbox"
+#: frappe/public/js/form_builder/components/Tabs.vue:189
+msgid "Drag & Drop a section here from another tab"
+msgstr ""
-#. Label of a Password field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
+#: 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:172
+msgid "Drop files here"
+msgstr ""
+
+#. Label of the dropbox_access_token (Password) field in DocType 'Dropbox
+#. Settings'
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
+msgid "Dropbox Access Token"
+msgstr ""
+
+#. Label of the dropbox_refresh_token (Password) field in DocType 'Dropbox
+#. Settings'
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
msgid "Dropbox Refresh Token"
msgstr ""
#. Name of a DocType
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Settings"
-msgstr "Cài đặt Dropbox"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Dropbox Settings"
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Dropbox Settings"
-msgstr "Cài đặt Dropbox"
+msgstr ""
-#: integrations/doctype/dropbox_settings/dropbox_settings.py:348
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:347
msgid "Dropbox Setup"
-msgstr "Dropbox cài đặt"
+msgstr ""
-#. Label of a Section Break field in DocType 'Navbar Settings'
-#: core/doctype/navbar_settings/navbar_settings.json
-msgctxt "Navbar Settings"
+#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
+#. Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Dropdowns"
-msgstr "Trình đơn thả xuống"
+msgstr ""
-#. Label of a Date field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#. Label of the date (Date) field in DocType 'ToDo'
+#: frappe/desk/doctype/todo/todo.json
msgid "Due Date"
-msgstr "Ngày đáo hạn"
+msgstr ""
-#. Label of a Select field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the due_date_based_on (Select) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Due Date Based On"
-msgstr "Ngày Dư Dựa Dựa Trên"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:377
-#: public/js/frappe/views/workspace/workspace.js:808
-#: public/js/frappe/views/workspace/workspace.js:975
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+#: frappe/public/js/frappe/form/toolbar.js:419
msgid "Duplicate"
-msgstr "Bản sao"
+msgstr ""
-#: printing/doctype/print_format_field_template/print_format_field_template.py:52
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:53
msgid "Duplicate Entry"
msgstr ""
-#: public/js/frappe/list/list_filter.js:137
+#: frappe/public/js/frappe/list/list_filter.js:144
msgid "Duplicate Filter Name"
-msgstr "Tên bộ lọc trùng lặp"
-
-#: model/base_document.py:563 model/rename_doc.py:113
-msgid "Duplicate Name"
-msgstr "Tên trùng lặp"
-
-#: public/js/frappe/views/workspace/workspace.js:547
-#: public/js/frappe/views/workspace/workspace.js:809
-msgid "Duplicate Workspace"
msgstr ""
-#: public/js/frappe/form/form.js:208
+#: frappe/model/base_document.py:666 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 ""
-#: public/js/frappe/views/workspace/workspace.js:990
-msgid "Duplicate of {0} named as {1} is created successfully"
+#: frappe/public/js/form_builder/components/Field.vue:245
+msgid "Duplicate field"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Duration"
-msgstr "Thời lượng"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Duration"
-msgstr "Thời lượng"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Duration"
-msgstr "Thời lượng"
-
-#. Label of a Float field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "Duration"
-msgstr "Thời lượng"
-
-#. Label of a Float field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
-msgid "Duration"
-msgstr "Thời lượng"
-
+#. Label of the duration (Float) field in DocType 'Recorder'
+#. Label of the duration (Float) field in DocType 'Recorder Query'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Duration"
-msgstr "Thời lượng"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/core/doctype/recorder_query/recorder_query.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Duration"
-msgstr "Thời lượng"
-
-#. Label of a Section Break field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Dynamic Filters"
-msgstr "Bộ lọc động"
-
-#. Label of a Code field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Dynamic Filters JSON"
-msgstr "Bộ lọc động JSON"
-
-#. Label of a Code field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Dynamic Filters JSON"
-msgstr "Bộ lọc động JSON"
-
-#. Label of a Section Break field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Dynamic Filters Section"
-msgstr "Phần bộ lọc động"
-
-#. Name of a DocType
-#: core/doctype/dynamic_link/dynamic_link.json
-msgid "Dynamic Link"
-msgstr "Liên kết động"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Dynamic Link"
-msgstr "Liên kết động"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Dynamic Link"
-msgstr "Liên kết động"
-
-#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Dynamic Link"
-msgstr "Liên kết động"
-
-#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Dynamic Link"
-msgstr "Liên kết động"
-
-#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Dynamic Link"
-msgstr "Liên kết động"
-
-#. Label of a Section Break field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Dynamic Report Filters"
-msgstr "Bộ lọc báo cáo động"
-
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Dynamic Route"
-msgstr "Tuyến động"
-
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Dynamic Template"
-msgstr "Mẫu động"
-
-#. Description of the Onboarding Step 'Setup Naming Series'
-#: custom/onboarding_step/naming_series/naming_series.json
-msgid "Each document created in ERPNext can have a unique ID generated for it, using a prefix defined for it. Though each document has some prefix pre-configured, you can further customize it using tools like Naming Series Tool and Document Naming Rule.\n"
msgstr ""
-#: core/page/dashboard_view/dashboard_view.js:169
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:46
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:85
-#: public/js/frappe/form/controls/markdown_editor.js:31
-#: public/js/frappe/form/footer/form_timeline.js:638
-#: public/js/frappe/form/toolbar.js:672
-#: public/js/frappe/views/reports/query_report.js:809
-#: public/js/frappe/views/reports/query_report.js:1617
-#: public/js/frappe/views/workspace/workspace.js:448
-#: public/js/frappe/views/workspace/workspace.js:802
-#: public/js/frappe/widgets/base_widget.js:64
-#: public/js/frappe/widgets/chart_widget.js:298
-#: public/js/frappe/widgets/number_card_widget.js:314
-#: templates/discussions/reply_card.html:29
-#: workflow/page/workflow_builder/workflow_builder.js:46
-#: workflow/page/workflow_builder/workflow_builder.js:84
-msgid "Edit"
-msgstr "Chỉnh sửa"
+#. Option for the 'Row Format' (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Dynamic"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1943
-msgctxt "Button in list view actions menu"
-msgid "Edit"
-msgstr "Chỉnh sửa"
+#. 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'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/page/dashboard_view/dashboard_view.js:169
+#: frappe/printing/page/print_format_builder/print_format_builder_start.html:8
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85
+#: frappe/public/js/frappe/form/controls/markdown_editor.js:31
+#: frappe/public/js/frappe/form/footer/form_timeline.js:668
+#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/templates/address_list.html:13
+#: frappe/public/js/frappe/form/templates/contact_list.html:13
+#: frappe/public/js/frappe/form/toolbar.js:745
+#: frappe/public/js/frappe/views/reports/query_report.js:883
+#: frappe/public/js/frappe/views/reports/query_report.js:1722
+#: frappe/public/js/frappe/views/workspace/workspace.js:64
+#: frappe/public/js/frappe/widgets/base_widget.js:64
+#: frappe/public/js/frappe/widgets/chart_widget.js:299
+#: frappe/public/js/frappe/widgets/number_card_widget.js:347
+#: frappe/templates/discussions/reply_card.html:29
+#: frappe/templates/discussions/reply_section.html:29
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:84
msgid "Edit"
-msgstr "Chỉnh sửa"
+msgstr ""
-#: templates/emails/auto_email_report.html:63
+#: frappe/public/js/frappe/list/list_view.js:2113
+msgctxt "Button in list view actions menu"
+msgid "Edit"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:23
+msgctxt "Button in web form"
+msgid "Edit"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:345
+msgctxt "Edit grid row"
+msgid "Edit"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:66
+msgid "Edit Address in Form"
+msgstr ""
+
+#: frappe/templates/emails/auto_email_report.html:63
msgid "Edit Auto Email Report Settings"
-msgstr "Chỉnh sửa Cài đặt Báo cáo Email tự động"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:719
+#: frappe/public/js/frappe/widgets/widget_dialog.js:38
+msgid "Edit Chart"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:50
+msgid "Edit Custom Block"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:727
msgid "Edit Custom HTML"
-msgstr "Sửa Tuỳ chỉnh HTML"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:546
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "Edit DocType"
-msgstr "Sửa Loại tài liệu"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1691
+#: frappe/public/js/frappe/list/list_view.js:1829
msgctxt "Button in list view menu"
msgid "Edit DocType"
-msgstr "Sửa Loại tài liệu"
+msgstr ""
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:42
-#: workflow/page/workflow_builder/workflow_builder.js:42
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:42
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:42
msgid "Edit Existing"
msgstr ""
-#: printing/doctype/print_format/print_format.js:28
-msgid "Edit Format"
-msgstr "Sửa Format"
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:55
+msgid "Edit Filters"
+msgstr ""
-#: public/js/frappe/form/quick_entry.js:275
+#: frappe/public/js/print_format_builder/PrintFormat.vue:29
+msgid "Edit Footer"
+msgstr ""
+
+#: frappe/printing/doctype/print_format/print_format.js:28
+msgid "Edit Format"
+msgstr ""
+
+#: frappe/public/js/frappe/form/quick_entry.js:326
msgid "Edit Full Form"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:602
-msgid "Edit Heading"
-msgstr "Sửa Tiêu đề"
+#: 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 ""
-#: public/js/print_format_builder/print_format_builder.bundle.js:24
+#: 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 ""
-#: desk/page/user_profile/user_profile_controller.js:273 www/me.html:27
+#: frappe/www/me.html:38
msgid "Edit Profile"
-msgstr "Sửa hồ sơ"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:173
+#: frappe/printing/page/print_format_builder/print_format_builder.js:173
msgid "Edit Properties"
-msgstr "Chỉnh sửa tài sản"
-
-#: website/doctype/web_form/templates/web_form.html:20
-msgid "Edit Response"
msgstr ""
-#: public/js/frappe/utils/web_template.js:5
-msgid "Edit Values"
-msgstr "Chỉnh sửa giá trị"
-
-#. Label of a Button field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
-msgid "Edit Values"
-msgstr "Chỉnh sửa giá trị"
-
-#. Label of a Button field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Edit Values"
-msgstr "Chỉnh sửa giá trị"
-
-#: public/js/frappe/views/workspace/workspace.js:803
-msgid "Edit Workspace"
+#: frappe/public/js/frappe/widgets/widget_dialog.js:48
+msgid "Edit Quick List"
msgstr ""
-#: desk/doctype/note/note.js:11
+#: frappe/public/js/frappe/widgets/widget_dialog.js:40
+msgid "Edit Shortcut"
+msgstr ""
+
+#. Label of the edit_values (Button) field in DocType 'Web Page Block'
+#. Label of the edit_navbar_template_values (Button) field in DocType 'Website
+#. Settings'
+#. Label of the edit_footer_template_values (Button) field in DocType 'Website
+#. Settings'
+#: frappe/public/js/frappe/utils/web_template.js:5
+#: frappe/website/doctype/web_page_block/web_page_block.json
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Edit Values"
+msgstr ""
+
+#: frappe/desk/doctype/note/note.js:11
msgid "Edit mode"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:713
-msgid "Edit to add content"
-msgstr "Chỉnh sửa để thêm nội dung"
+#: frappe/public/js/form_builder/components/Field.vue:254
+msgid "Edit the {0} Doctype"
+msgstr ""
-#: workflow/doctype/workflow/workflow.js:18
+#: 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:446
+msgctxt "Button in web form"
+msgid "Edit your response"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.js:18
msgid "Edit your workflow visually using the Workflow Builder."
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:652
+#: frappe/public/js/frappe/views/reports/report_view.js:672
+#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
-msgstr "Chỉnh sửa {0}"
+msgstr ""
-#: core/doctype/doctype/doctype_list.js:41
+#. Label of the editable_grid (Check) field in DocType 'DocType'
+#. Label of the editable_grid (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
-msgstr "mạng lưới có thể chỉnh sửa"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Editable Grid"
-msgstr "mạng lưới có thể chỉnh sửa"
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Editing Row"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Editable Grid"
-msgstr "mạng lưới có thể chỉnh sửa"
-
-#: public/js/print_format_builder/print_format_builder.bundle.js:14
-#: public/js/workflow_builder/workflow_builder.bundle.js:20
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:14
+#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:20
msgid "Editing {0}"
msgstr ""
#. Description of the 'SMS Gateway URL' (Small Text) field in DocType 'SMS
#. Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Eg. smsgateway.com/api/send_sms.cgi"
-msgstr "Ví dụ. smsgateway.com/api/send_sms.cgi"
+msgstr ""
-#: rate_limiter.py:139
+#: frappe/rate_limiter.py:152
msgid "Either key or IP flag is required."
msgstr ""
-#. Label of a Data field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the element_selector (Data) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Element Selector"
msgstr ""
#. Label of a Card Break in the Tools Workspace
-#: automation/workspace/tools/tools.json
-#: core/doctype/success_action/success_action.js:57
-#: email/doctype/newsletter/newsletter.js:156
-#: public/js/frappe/form/success_action.js:85
-#: public/js/frappe/form/toolbar.js:341
-#: templates/includes/comments/comments.html:25 templates/signup.html:9
-#: www/login.html:7 www/login.py:93
-msgid "Email"
-msgstr "E-mail"
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Email"
-msgstr "E-mail"
-
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Email"
-msgstr "E-mail"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Email"
-msgstr "E-mail"
-
-#. Label of a Data field in DocType 'Email Group Member'
-#: email/doctype/email_group_member/email_group_member.json
-msgctxt "Email Group Member"
-msgid "Email"
-msgstr "E-mail"
-
-#. Label of a Data field in DocType 'Email Unsubscribe'
-#: email/doctype/email_unsubscribe/email_unsubscribe.json
-msgctxt "Email Unsubscribe"
-msgid "Email"
-msgstr "E-mail"
-
-#. Label of a Data field in DocType 'Event Participants'
-#: desk/doctype/event_participants/event_participants.json
-msgctxt "Event Participants"
-msgid "Email"
-msgstr "E-mail"
-
-#. Option for the 'Channel' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Email"
-msgstr "E-mail"
-
-#. Label of a Data field in DocType 'Personal Data Deletion Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
-msgid "Email"
-msgstr "E-mail"
-
+#. Label of the email (Check) field in DocType 'Custom DocPerm'
+#. Label of the email (Check) field in DocType 'DocPerm'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the email_tab (Tab Break) field in DocType 'System Settings'
+#. Label of the email (Data) field in DocType 'User'
+#. Label of the email_settings (Section Break) field in DocType 'User'
+#. Label of the email (Check) field in DocType 'User Document Type'
+#. Label of the email (Data) field in DocType 'Event Participants'
+#. Label of the email (Data) field in DocType 'Email Group Member'
+#. Label of the email (Data) field in DocType 'Email Unsubscribe'
+#. Option for the 'Channel' (Select) field in DocType 'Notification'
+#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/success_action/success_action.js:59
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/email/doctype/newsletter/newsletter.js:156
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/success_action.js:85
+#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/templates/includes/comments/comments.html:25
+#: frappe/templates/signup.html:9
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
-msgstr "E-mail"
-
-#. Label of a Data field in DocType 'User'
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Email"
-msgstr "E-mail"
-
-#. Name of a DocType
-#: core/doctype/communication/communication.js:199
-#: email/doctype/email_account/email_account.json
-msgid "Email Account"
-msgstr "Tài khoản email"
-
-#. Label of a Link field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Email Account"
-msgstr "Tài khoản email"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Email Account"
+#. Label of the email_account (Link) field in DocType 'Communication'
+#. Label of the email_account (Link) field in DocType 'User Email'
+#. Name of a DocType
+#. Label of the email_account (Data) field in DocType 'Email Flag Queue'
+#. Label of the email_account (Link) field in DocType 'Email Queue'
+#. Label of the email_account (Link) field in DocType 'Unhandled Email'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/communication/communication.js:199
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/user_email/user_email.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Email Account"
-msgstr "Tài khoản email"
+msgstr ""
-#. Linked DocType in Email Domain's connections
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Email Account"
-msgstr "Tài khoản email"
-
-#. Label of a Data field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
-msgid "Email Account"
-msgstr "Tài khoản email"
-
-#. Label of a Link field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Email Account"
-msgstr "Tài khoản email"
-
-#. Label of a Link field in DocType 'Unhandled Email'
-#: email/doctype/unhandled_email/unhandled_email.json
-msgctxt "Unhandled Email"
-msgid "Email Account"
-msgstr "Tài khoản email"
-
-#. Label of a Link field in DocType 'User Email'
-#: core/doctype/user_email/user_email.json
-msgctxt "User Email"
-msgid "Email Account"
-msgstr "Tài khoản email"
-
-#: email/doctype/email_account/email_account.py:298
+#: frappe/email/doctype/email_account/email_account.py:343
msgid "Email Account Disabled."
msgstr ""
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the email_account_name (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Email Account Name"
-msgstr "Tên tài khoản email"
+msgstr ""
-#: core/doctype/user/user.py:697
+#: frappe/core/doctype/user/user.py:736
msgid "Email Account added multiple times"
-msgstr "Tài khoản Email thêm nhiều lần"
+msgstr ""
-#: email/smtp.py:42
+#: frappe/email/smtp.py:43
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:470 www/complete_signup.html:11
-#: www/login.html:164 www/login.html:196
-msgid "Email Address"
-msgstr "Địa chỉ email"
+#: frappe/email/doctype/email_account/email_account.py:578
+msgid "Email Account {0} Disabled"
+msgstr ""
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. 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 "Địa chỉ email"
-
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Email Address"
-msgstr "Địa chỉ email"
-
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Email Address"
-msgstr "Địa chỉ email"
-
-#. Label of a Data field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
-msgid "Email Address"
-msgstr "Địa chỉ email"
+msgstr ""
#. Description of the 'Email Address' (Data) field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Email Address whose Google Contacts are to be synced."
-msgstr "Địa chỉ Email có Danh bạ Google sẽ được đồng bộ hóa."
+msgstr ""
-#: email/doctype/email_group/email_group.js:43
+#: frappe/email/doctype/email_group/email_group.js:43
msgid "Email Addresses"
-msgstr "Địa chỉ email"
-
-#. Description of the 'Send Notification to' (Small Text) field in DocType
-#. 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Email Addresses"
-msgstr "Địa chỉ email"
-
-#. Name of a DocType
-#: email/doctype/email_domain/email_domain.json
-msgid "Email Domain"
-msgstr "Tên miền email"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Email Domain"
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Email Domain"
-msgstr "Tên miền email"
+msgstr ""
#. Name of a DocType
-#: email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
msgid "Email Flag Queue"
-msgstr "Email Cờ Queue"
+msgstr ""
-#. Label of a Small Text field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the email_footer_address (Small Text) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Email Footer Address"
-msgstr "Email Footer Địa chỉ"
-
-#. Name of a DocType
-#: email/doctype/email_group/email_group.json
-msgid "Email Group"
-msgstr "Email Nhóm"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Email Group"
+#. Name of a DocType
+#. Label of the email_group (Link) field in DocType 'Email Group Member'
+#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/email/doctype/email_group/email_group.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
+#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
-msgstr "Email Nhóm"
-
-#. Label of a Link field in DocType 'Email Group Member'
-#: email/doctype/email_group_member/email_group_member.json
-msgctxt "Email Group Member"
-msgid "Email Group"
-msgstr "Email Nhóm"
-
-#. Label of a Link field in DocType 'Newsletter Email Group'
-#: email/doctype/newsletter_email_group/newsletter_email_group.json
-msgctxt "Newsletter Email Group"
-msgid "Email Group"
-msgstr "Email Nhóm"
+msgstr ""
#. Name of a DocType
-#: email/doctype/email_group_member/email_group_member.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
msgid "Email Group Member"
-msgstr "Email Nhóm thành viên"
+msgstr ""
-#. Linked DocType in Email Group's connections
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
-msgid "Email Group Member"
-msgstr "Email Nhóm thành viên"
+#. Label of the email_header (Data) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
+msgid "Email Header"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Email'
-#: contacts/doctype/contact_email/contact_email.json
-msgctxt "Contact Email"
+#. Label of the email_id (Data) field in DocType 'Contact Email'
+#. Label of the email_id (Data) field in DocType 'User Email'
+#. Label of the email_id (Data) field in DocType 'Email Rule'
+#: frappe/contacts/doctype/contact/contact.py:131
+#: frappe/contacts/doctype/contact_email/contact_email.json
+#: frappe/core/doctype/user_email/user_email.json
+#: frappe/email/doctype/email_rule/email_rule.json
msgid "Email ID"
-msgstr "ID email"
+msgstr ""
-#. Label of a Data field in DocType 'Email Rule'
-#: email/doctype/email_rule/email_rule.json
-msgctxt "Email Rule"
-msgid "Email ID"
-msgstr "ID email"
-
-#. Label of a Data field in DocType 'User Email'
-#: core/doctype/user_email/user_email.json
-msgctxt "User Email"
-msgid "Email ID"
-msgstr "ID email"
-
-#. Label of a Table field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the email_ids (Table) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Email IDs"
-msgstr "Email Id"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
-msgstr "ID email"
+msgstr ""
-#. Label of a Section Break field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the email_inbox (Section Break) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Email Inbox"
-msgstr "Hộp thư email"
+msgstr ""
#. Name of a DocType
-#: email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Email Queue"
-msgstr "Hàng chờ email"
+msgstr ""
#. Name of a DocType
-#: email/doctype/email_queue_recipient/email_queue_recipient.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
msgid "Email Queue Recipient"
-msgstr "Hàng chờ người nhận email"
+msgstr ""
-#: email/queue.py:163
+#: frappe/email/queue.py:160
msgid "Email Queue flushing aborted due to too many failures."
msgstr ""
-#. Label of a HTML field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
-msgid "Email Reply Help"
-msgstr "Trợ giúp trả lời qua email"
+#. Description of a DocType
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Email Queue records."
+msgstr ""
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the email_reply_help (HTML) field in DocType 'Email Template'
+#: frappe/email/doctype/email_template/email_template.json
+msgid "Email Reply Help"
+msgstr ""
+
+#. Label of the email_retry_limit (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Email Retry Limit"
msgstr ""
#. Name of a DocType
-#: email/doctype/email_rule/email_rule.json
+#: frappe/email/doctype/email_rule/email_rule.json
msgid "Email Rule"
-msgstr "Điều lệ Email"
+msgstr ""
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the email_sent (Check) field in DocType 'Newsletter'
+#. Label of the email_sent (Check) field in DocType 'Blog Post'
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
-msgstr "Email đã gửi"
+msgstr ""
-#. Label of a Check field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Email Sent"
-msgstr "Email đã gửi"
-
-#. Label of a Datetime field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Email Sent At"
msgstr ""
-#. Label of a Section Break field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
+#. Label of the email_settings_section (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the column_break_3 (Section Break) field in DocType 'Notification
+#. Settings'
+#. Label of the email_settings (Section Break) field in DocType 'Auto Email
+#. Report'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Email Settings"
-msgstr "Thiết lập email"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Email Settings"
-msgstr "Thiết lập email"
-
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Email Settings"
-msgstr "Thiết lập email"
-
-#. Label of a Section Break field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "Email Settings"
-msgstr "Thiết lập email"
-
-#. Label of a Small Text field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the email_signature (Text Editor) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Email Signature"
-msgstr "Chữ ký email"
+msgstr ""
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the email_status (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Email Status"
-msgstr "Tình trạng email"
+msgstr ""
-#. Label of a Select field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the email_sync_option (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Email Sync Option"
-msgstr "Đồng bộ hóa email Tùy chọn"
-
-#. Name of a DocType
-#: email/doctype/email_template/email_template.json
-#: public/js/frappe/views/communication.js:91
-msgid "Email Template"
-msgstr "Mẫu email"
-
-#. Label of a Link field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Email Template"
-msgstr "Mẫu email"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Email Template"
+#. Label of the email_template (Link) field in DocType 'Communication'
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:104
msgid "Email Template"
-msgstr "Mẫu email"
+msgstr ""
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#. Label of the enable_email_threads_on_assigned_document (Check) field in
+#. DocType 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Email Threads on Assigned Document"
msgstr ""
-#. Label of a Small Text field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the email_to (Small Text) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Email To"
-msgstr "Để Email"
+msgstr ""
#. Name of a DocType
-#: email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
msgid "Email Unsubscribe"
-msgstr "Email Hủy đăng ký"
+msgstr ""
-#: core/doctype/communication/communication.js:342
+#: frappe/core/doctype/communication/communication.js:342
msgid "Email has been marked as spam"
-msgstr "Email đã được đánh dấu là spam"
+msgstr ""
-#: core/doctype/communication/communication.js:355
+#: frappe/core/doctype/communication/communication.js:355
msgid "Email has been moved to trash"
-msgstr "Email đã được di chuyển vào thùng rác"
+msgstr ""
-#: public/js/frappe/views/communication.js:707
+#: frappe/core/doctype/user/user.js:272
+msgid "Email is mandatory to create User Email"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:816
msgid "Email not sent to {0} (unsubscribed / disabled)"
-msgstr "Gửi mail không được gửi đến {0} (bỏ đăng ký / vô hiệu hóa)"
+msgstr ""
-#: utils/oauth.py:163
+#: frappe/utils/oauth.py:163
msgid "Email not verified with {0}"
-msgstr "Email chưa được xác minh với {0}"
+msgstr ""
-#: email/queue.py:141
+#: frappe/email/doctype/email_queue/email_queue.js:19
+msgid "Email queue is currently suspended. Resume to automatically send other emails."
+msgstr ""
+
+#. Label of the section_break_udjs (Section Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Emails"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.js:216
+msgid "Emails Pulled"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:936
+msgid "Emails are already being pulled from this account."
+msgstr ""
+
+#: frappe/email/queue.py:137
msgid "Emails are muted"
-msgstr "Email là tắt tiếng"
+msgstr ""
#. Description of the 'Send Email Alert' (Check) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Emails will be sent with next possible workflow actions"
-msgstr "Email sẽ được gửi với các hành động dòng công việc có thể tiếp theo"
+msgstr ""
-#. Label of a Check field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#: frappe/website/doctype/web_form/web_form.js:34
+msgid "Embed code copied"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:285
+msgid "Empty column"
+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 Drive'
+#. 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_drive/google_drive.json
+#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
-msgstr "K.hoạt"
+msgstr ""
-#. Label of a Check field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
-msgid "Enable"
-msgstr "K.hoạt"
+#. Label of the enable_address_autocompletion (Check) field in DocType
+#. 'Geolocation Settings'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "Enable Address Autocompletion"
+msgstr ""
-#. Label of a Check field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Enable"
-msgstr "K.hoạt"
-
-#. Label of a Check field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
-msgid "Enable"
-msgstr "K.hoạt"
-
-#: automation/doctype/auto_repeat/auto_repeat.py:116
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119
msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form"
-msgstr "Bật Cho phép Tự động lặp lại cho loại tài liệu {0} trong Tùy chỉnh biểu mẫu"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the enable_auto_reply (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Enable Auto Reply"
-msgstr "Enable Auto Reply"
+msgstr ""
-#. Label of a Check field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#. Label of the enabled (Check) field in DocType 'S3 Backup Settings'
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Enable Automatic Backup"
-msgstr "Bật Tự động sao lưu"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the enable_automatic_linking (Check) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Enable Automatic Linking in Documents"
-msgstr "Kích hoạt liên kết tự động trong tài liệu"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the enable_comments (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Enable Comments"
-msgstr "Cho phép nhận xét"
+msgstr ""
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
msgstr ""
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#. Label of the enable_email_notifications (Check) field in DocType
+#. 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Enable Email Notifications"
-msgstr "Bật thông báo email"
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:89
-#: integrations/doctype/google_contacts/google_contacts.py:35
-#: website/doctype/website_settings/website_settings.py:129
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:106
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:36
+#: frappe/website/doctype/website_settings/website_settings.py:129
msgid "Enable Google API in Google Settings."
-msgstr "Kích hoạt Google API trong Cài đặt Google."
+msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the enable_google_indexing (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Enable Google indexing"
msgstr ""
-#: email/doctype/email_account/email_account.py:194
+#. Label of the enable_incoming (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:225
msgid "Enable Incoming"
-msgstr "Kích hoạt tính năng Incoming"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Enable Incoming"
-msgstr "Kích hoạt tính năng Incoming"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the enable_onboarding (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Enable Onboarding"
-msgstr "Bật giới thiệu"
+msgstr ""
-#: email/doctype/email_account/email_account.py:201
+#. Label of the enable_outgoing (Check) field in DocType 'User Email'
+#. Label of the enable_outgoing (Check) field in DocType 'Email Account'
+#: frappe/core/doctype/user_email/user_email.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:233
msgid "Enable Outgoing"
-msgstr "Kích hoạt Outgoing"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Enable Outgoing"
-msgstr "Kích hoạt Outgoing"
-
-#. Label of a Check field in DocType 'User Email'
-#: core/doctype/user_email/user_email.json
-msgctxt "User Email"
-msgid "Enable Outgoing"
-msgstr "Kích hoạt Outgoing"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the enable_password_policy (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Enable Password Policy"
-msgstr "Bật Chính sách Mật khẩu"
+msgstr ""
-#. Label of a Check field in DocType 'Role Permission for Page and Report'
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgctxt "Role Permission for Page and Report"
+#. Label of the enable_prepared_report (Check) field in DocType 'Role
+#. Permission for Page and Report'
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
msgid "Enable Prepared Report"
msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the enable_print_server (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Enable Print Server"
-msgstr "Bật máy chủ in"
+msgstr ""
-#. Label of a Check field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the enable_push_notification_relay (Check) field in DocType 'Push
+#. Notification Settings'
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "Enable Push Notification Relay"
+msgstr ""
+
+#. Label of the enable_rate_limit (Check) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Enable Rate Limit"
msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the enable_raw_printing (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Enable Raw Printing"
-msgstr "Cho phép in thô"
+msgstr ""
-#: core/doctype/report/report.js:36
+#: frappe/core/doctype/report/report.js:39
msgid "Enable Report"
-msgstr "Kích hoạt tính năng Report"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the enable_scheduler (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Enable Scheduled Jobs"
-msgstr "Việc cho phép theo lịch trình"
+msgstr ""
-#: core/doctype/rq_job/rq_job_list.js:23
+#: frappe/core/doctype/rq_job/rq_job_list.js:23
msgid "Enable Scheduler"
msgstr ""
-#. Label of a Check field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the enable_security (Check) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Enable Security"
-msgstr "Kích hoạt bảo mật"
-
-#. Label of a Check field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Enable Social Login"
-msgstr "Bật đăng nhập xã hội"
-
-#. Label of a Check field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
-msgid "Enable Social Sharing"
-msgstr "Bật chia sẻ xã hội"
-
-#: website/doctype/website_settings/website_settings.js:139
-msgid "Enable Tracking Page Views"
-msgstr "Bật theo dõi lượt xem trang"
-
-#: twofactor.py:456
-msgid "Enable Two Factor Auth"
-msgstr "Kích hoạt tính năng xác thực hai yếu tố"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Enable Two Factor Auth"
-msgstr "Kích hoạt tính năng xác thực hai yếu tố"
-
-#. Title of an Onboarding Step
-#: website/onboarding_step/enable_website_tracking/enable_website_tracking.json
-msgid "Enable Website Tracking"
msgstr ""
-#: printing/doctype/print_format_field_template/print_format_field_template.py:27
+#. 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 ""
+
+#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Enable Social Sharing"
+msgstr ""
+
+#: 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:433
+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 ""
-#: website/doctype/web_template/web_template.py:33
+#: frappe/website/doctype/web_template/web_template.py:33
msgid "Enable developer mode to create a standard Web Template"
-msgstr "Bật chế độ nhà phát triển để tạo Mẫu web chuẩn"
+msgstr ""
#. Description of the 'Enable Email Notification' (Check) field in DocType
#. 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable email notification for any comment or likes received on your Blog Post."
msgstr ""
#. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid ""
-"Enable if on click\n"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Enable if on click\n"
"opens modal."
msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the enable_view_tracking (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Enable in-app website tracking"
msgstr ""
-#: public/js/frappe/model/indicator.js:106
-#: public/js/frappe/model/indicator.js:117
+#. Label of the enabled (Check) field in DocType 'Language'
+#. Label of the enabled (Check) field in DocType 'User'
+#. Label of the enabled (Check) field in DocType 'Client Script'
+#. Label of the enabled (Check) field in DocType 'Notification Settings'
+#. Label of the enabled (Check) field in DocType 'Auto Email Report'
+#. Label of the enabled (Check) field in DocType 'Notification'
+#. Label of the enabled (Check) field in DocType 'Currency'
+#. Label of the enabled (Check) field in DocType 'Dropbox Settings'
+#. Label of the enabled (Check) field in DocType 'LDAP Settings'
+#. Label of the enabled (Check) field in DocType 'Webhook'
+#. Label of the enabled (Check) field in DocType 'Portal Menu Item'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/user/user.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/geo/doctype/currency/currency.json
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/public/js/frappe/model/indicator.js:106
+#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
-msgstr "Đã bật"
+msgstr ""
-#. Label of a Check field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Enabled"
-msgstr "Đã bật"
-
-#. Label of a Check field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
-msgid "Enabled"
-msgstr "Đã bật"
-
-#. Label of a Check field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "Enabled"
-msgstr "Đã bật"
-
-#. Label of a Check field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Enabled"
-msgstr "Đã bật"
-
-#. Label of a Check field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Enabled"
-msgstr "Đã bật"
-
-#. Label of a Check field in DocType 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Enabled"
-msgstr "Đã bật"
-
-#. Label of a Check field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
-msgid "Enabled"
-msgstr "Đã bật"
-
-#. Label of a Check field in DocType 'Language'
-#: core/doctype/language/language.json
-msgctxt "Language"
-msgid "Enabled"
-msgstr "Đã bật"
-
-#. Label of a Check field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Enabled"
-msgstr "Đã bật"
-
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "Enabled"
-msgstr "Đã bật"
-
-#. Label of a Check field in DocType 'Portal Menu Item'
-#: website/doctype/portal_menu_item/portal_menu_item.json
-msgctxt "Portal Menu Item"
-msgid "Enabled"
-msgstr "Đã bật"
-
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Enabled"
-msgstr "Đã bật"
-
-#. Label of a Check field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Enabled"
-msgstr "Đã bật"
-
-#: core/doctype/rq_job/rq_job_list.js:29
+#: frappe/core/doctype/rq_job/rq_job_list.js:29
msgid "Enabled Scheduler"
msgstr ""
-#: email/doctype/email_account/email_account.py:896
+#: frappe/email/doctype/email_account/email_account.py:1012
msgid "Enabled email inbox for user {0}"
-msgstr "Hộp thư email đã bật cho người dùng {0}"
-
-#: core/doctype/server_script/server_script.py:262
-msgid "Enabled scheduled execution for script {0}"
-msgstr "Đã bật thực thi theo lịch trình cho tập lệnh {0}"
-
-#. Description of the 'Is Calendar and Gantt' (Check) field in DocType
-#. 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Enables Calendar and Gantt views."
msgstr ""
#. Description of the 'Is Calendar and Gantt' (Check) field in DocType
#. 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Description of the 'Is Calendar and Gantt' (Check) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Enables Calendar and Gantt views."
msgstr ""
-#: email/doctype/email_account/email_account.js:232
+#: frappe/email/doctype/email_account/email_account.js:295
msgid "Enabling auto reply on an incoming email account will send automated replies to all the synchronized emails. Do you wish to continue?"
msgstr ""
-#. Description of the 'Queue in Background (BETA)' (Check) field in DocType
-#. 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Enabling this will submit documents in background"
+#. Description of a DocType
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved."
+msgstr ""
+
+#. Description of the 'Relay Settings' (Section Break) field in DocType 'Push
+#. Notification Settings'
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. "
msgstr ""
#. Description of the 'Queue in Background (BETA)' (Check) field in DocType
#. 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Description of the 'Queue in Background (BETA)' (Check) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Enabling this will submit documents in background"
msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the encrypt_backup (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Encrypt Backups"
msgstr ""
-#: utils/password.py:184
+#: frappe/utils/password.py:197
msgid "Encryption key is in invalid format!"
msgstr ""
-#: utils/password.py:198
+#: frappe/utils/password.py:212
msgid "Encryption key is invalid! Please check site_config.json"
msgstr ""
-#: public/js/frappe/utils/common.js:416
-msgid "End Date"
-msgstr "Ngày kết thúc"
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:51
+msgid "End"
+msgstr ""
-#. Label of a Date field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
+#. Label of the end_date (Date) field in DocType 'Auto Repeat'
+#. Label of the end_date (Date) field in DocType 'Audit Trail'
+#. Label of the end_date (Datetime) field in DocType 'Web Page'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/public/js/frappe/utils/common.js:416
+#: frappe/website/doctype/web_page/web_page.json
msgid "End Date"
-msgstr "Ngày kết thúc"
+msgstr ""
-#. Label of a Date field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "End Date"
-msgstr "Ngày kết thúc"
-
-#. Label of a Datetime field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "End Date"
-msgstr "Ngày kết thúc"
-
-#. Label of a Select field in DocType 'Calendar View'
-#: desk/doctype/calendar_view/calendar_view.json
-msgctxt "Calendar View"
+#. Label of the end_date_field (Select) field in DocType 'Calendar View'
+#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "End Date Field"
-msgstr "Trường ngày kết thúc"
+msgstr ""
-#: website/doctype/web_page/web_page.py:207
+#: frappe/website/doctype/web_page/web_page.py:208
msgid "End Date cannot be before Start Date!"
-msgstr "Ngày kết thúc không được trước ngày bắt đầu!"
+msgstr ""
-#. Label of a Datetime field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the ended_at (Datetime) field in DocType 'RQ Job'
+#. Label of the ended_at (Datetime) field in DocType 'Submission Queue'
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Ended At"
msgstr ""
-#. Label of a Datetime field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
-msgid "Ended At"
-msgstr ""
-
-#. Label of a Data field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#. Label of the endpoint_url (Data) field in DocType 'S3 Backup Settings'
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Endpoint URL"
-msgstr "URL điểm cuối"
+msgstr ""
-#. Label of a Section Break field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the sb_endpoints_section (Section Break) field in DocType
+#. 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Endpoints"
msgstr ""
-#. Label of a Datetime field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the ends_on (Datetime) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Ends on"
-msgstr "Kết thúc vào ngày"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Energy Point"
-msgstr "Điểm năng lượng"
+msgstr ""
-#. Name of a DocType
-#: social/doctype/energy_point_log/energy_point_log.json
-msgid "Energy Point Log"
-msgstr "Nhật ký năng lượng"
-
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Energy Point Log"
-msgstr "Nhật ký năng lượng"
-
-#. Name of a DocType
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgid "Energy Point Rule"
-msgstr "Quy tắc điểm năng lượng"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Energy Point Rule"
-msgstr "Quy tắc điểm năng lượng"
-
-#. Name of a DocType
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgid "Energy Point Settings"
-msgstr "Cài đặt điểm năng lượng"
-
-#: desk/doctype/notification_log/notification_log.py:159
-msgid "Energy Point Update on {0}"
-msgstr "Cập nhật điểm năng lượng trên {0}"
-
-#: templates/emails/energy_points_summary.html:39
-msgid "Energy Points"
-msgstr "Điểm năng lượng"
-
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "Energy Points"
-msgstr "Điểm năng lượng"
-
-#. Label of a Data field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
+#. Label of the enqueued_by (Data) field in DocType 'Submission Queue'
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Enqueued By"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:105
+#: frappe/core/doctype/recorder/recorder.py:125
+msgid "Enqueued creation of indexes"
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108
msgid "Ensure the user and group search paths are correct."
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:92
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:109
msgid "Enter Client Id and Client Secret in Google Settings."
-msgstr "Nhập Id khách hàng và Bí mật khách hàng trong Cài đặt Google."
+msgstr ""
-#: public/js/frappe/views/communication.js:663
+#: frappe/templates/includes/login/login.js:351
+msgid "Enter Code displayed in OTP App."
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:771
msgid "Enter Email Recipient(s)"
-msgstr "Nhập Email người nhận (s)"
+msgstr ""
-#. Label of a Link field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the doc_type (Link) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Enter Form Type"
-msgstr "Nhập Loại Mẫu"
+msgstr ""
-#: public/js/frappe/ui/messages.js:94
+#: frappe/public/js/frappe/ui/messages.js:94
msgctxt "Title of prompt dialog"
msgid "Enter Value"
-msgstr "Giá trị nhập"
+msgstr ""
-#: public/js/frappe/form/form_tour.js:56
+#: frappe/public/js/frappe/form/form_tour.js:60
msgid "Enter a name for this {0}"
msgstr ""
#. Description of the 'User Defaults' (Table) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Enter default value fields (keys) and values. If you add multiple values for a field, the first one will be picked. These defaults are also used to set \"match\" permission rules. To see list of fields, go to \"Customize Form\"."
-msgstr "Nhập trường giá trị mặc định (khóa) và giá trị. Nếu bạn thêm nhiều giá trị cho một trường, một trong những đầu tiên sẽ được chọn. Mặc định này cũng được sử dụng để thiết lập "trận đấu" quy tắc cho phép. Để xem danh sách các lĩnh vực, vào "Customize Form"."
+msgstr ""
-#: public/js/frappe/views/file/file_view.js:111
+#: frappe/public/js/frappe/views/file/file_view.js:111
msgid "Enter folder name"
-msgstr "Nhập tên thư mục"
+msgstr ""
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)"
-msgstr "Nhập các thông số url tĩnh ở đây (Ví dụ người gửi = ERPNext, tên người dùng = ERPNext, mật khẩu = 1234, vv)"
+msgstr ""
#. Description of the 'Message Parameter' (Data) field in DocType 'SMS
#. Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Enter url parameter for message"
-msgstr "Nhập tham số url cho tin nhắn"
+msgstr ""
#. Description of the 'Receiver Parameter' (Data) field in DocType 'SMS
#. Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Enter url parameter for receiver nos"
-msgstr "Nhập tham số url cho người nhận nos"
+msgstr ""
-#: public/js/frappe/ui/messages.js:334
+#: frappe/public/js/frappe/ui/messages.js:341
msgid "Enter your password"
-msgstr "Nhập mật khẩu của bạn"
+msgstr ""
-#: contacts/report/addresses_and_contacts/addresses_and_contacts.js:22
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:22
msgid "Entity Name"
-msgstr "Tên pháp nhân"
+msgstr ""
-#: contacts/report/addresses_and_contacts/addresses_and_contacts.js:9
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:9
msgid "Entity Type"
-msgstr "Loại thực thể"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:16
+#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
-msgstr "Bằng"
-
-#: desk/page/backups/backups.js:35 model/base_document.py:703
-#: model/base_document.py:708 public/js/frappe/ui/messages.js:22
-msgid "Error"
-msgstr "Lỗi"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Error"
-msgstr "Lỗi"
-
#. Option for the 'Status' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Error"
-msgstr "Lỗi"
-
-#. Option for the 'Status' (Select) field in DocType 'Email Queue'
-#. Label of a Code field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Error"
-msgstr "Lỗi"
-
-#. Label of a Code field in DocType 'Email Queue Recipient'
-#: email/doctype/email_queue_recipient/email_queue_recipient.json
-msgctxt "Email Queue Recipient"
-msgid "Error"
-msgstr "Lỗi"
-
-#. Label of a Code field in DocType 'Error Log'
-#: core/doctype/error_log/error_log.json
-msgctxt "Error Log"
-msgid "Error"
-msgstr "Lỗi"
-
-#. Label of a Code field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Error"
-msgstr "Lỗi"
-
+#. Label of the error (Code) field in DocType 'Error Log'
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Option for the 'Status' (Select) field in DocType 'Email Queue'
+#. Label of the error (Code) field in DocType 'Email Queue'
+#. Label of the error (Code) field in DocType 'Email Queue Recipient'
+#. Label of the error (Code) field in DocType 'Integration Request'
+#. Label of the error (Text) field in DocType 'Webhook Request Log'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/desk/page/backups/backups.js:37
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/public/js/frappe/ui/messages.js:22
msgid "Error"
-msgstr "Lỗi"
+msgstr ""
-#: public/js/frappe/web_form/web_form.js:240
+#: frappe/public/js/frappe/web_form/web_form.js:240
msgctxt "Title of error message in web form"
msgid "Error"
-msgstr "Lỗi"
-
-#. Label of a Text field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "Error"
-msgstr "Lỗi"
-
-#: www/error.html:34
-msgid "Error Code: {0}"
-msgstr "Mã lỗi: {0}"
+msgstr ""
#. Name of a DocType
-#: core/doctype/error_log/error_log.json
+#: frappe/core/doctype/error_log/error_log.json
msgid "Error Log"
-msgstr "Lỗi hệ thống"
+msgstr ""
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Error Log"
+#: frappe/core/workspace/build/build.json
msgid "Error Logs"
msgstr ""
-#. Label of a Text field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
-msgstr "Thông báo lỗi"
+msgstr ""
-#: public/js/frappe/form/print_utils.js:126
+#: frappe/public/js/frappe/form/print_utils.js:128
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
-msgstr "Lỗi kết nối với Ứng dụng Khay QZ ...
Bạn cần cài đặt và chạy ứng dụng QZ Khay để sử dụng tính năng In thô.
Nhấn vào đây để tải xuống và cài đặt QZ Khay .
Nhấn vào đây để tìm hiểu thêm về In thô ."
+msgstr ""
-#: email/doctype/email_domain/email_domain.py:32
+#: frappe/email/doctype/email_domain/email_domain.py:32
msgid "Error connecting via IMAP/POP3: {e}"
msgstr ""
-#: email/doctype/email_domain/email_domain.py:33
+#: frappe/email/doctype/email_domain/email_domain.py:33
msgid "Error connecting via SMTP: {e}"
msgstr ""
-#: email/doctype/email_domain/email_domain.py:98
+#: frappe/email/doctype/email_domain/email_domain.py:101
msgid "Error has occurred in {0}"
-msgstr "Đã xảy ra lỗi trong {0}"
+msgstr ""
-#: public/js/frappe/form/script_manager.js:187
+#: frappe/public/js/frappe/form/script_manager.js:199
msgid "Error in Client Script"
msgstr ""
-#: public/js/frappe/form/script_manager.js:241
+#: frappe/public/js/frappe/form/script_manager.js:256
msgid "Error in Client Script."
msgstr ""
-#: email/doctype/notification/notification.py:391
-#: email/doctype/notification/notification.py:507
-#: email/doctype/notification/notification.py:513
-msgid "Error in Notification"
-msgstr "Lỗi trong thông báo"
+#: frappe/printing/doctype/letter_head/letter_head.js:21
+msgid "Error in Header/Footer Script"
+msgstr ""
-#: utils/pdf.py:48
+#: frappe/email/doctype/notification/notification.py:598
+#: frappe/email/doctype/notification/notification.py:735
+#: frappe/email/doctype/notification/notification.py:741
+msgid "Error in Notification"
+msgstr ""
+
+#: frappe/utils/pdf.py:59
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: email/doctype/email_account/email_account.py:586
+#: frappe/email/doctype/email_account/email_account.py:672
msgid "Error while connecting to email account {0}"
-msgstr "Lỗi khi kết nối với tài khoản email {0}"
+msgstr ""
-#: email/doctype/notification/notification.py:504
+#: frappe/email/doctype/notification/notification.py:732
msgid "Error while evaluating Notification {0}. Please fix your template."
-msgstr "Lỗi khi đánh giá Thông báo {0}. Vui lòng sửa mẫu của bạn."
+msgstr ""
-#: model/document.py:808
-msgid "Error: Document has been modified after you have opened it"
-msgstr "Lỗi: tài liệu đã được sửa đổi sau khi bạn đã mở nó"
+#: frappe/model/base_document.py:806
+msgid "Error: Data missing in table {0}"
+msgstr ""
-#: model/base_document.py:716
+#: frappe/model/base_document.py:816
msgid "Error: Value missing for {0}: {1}"
-msgstr "Lỗi: Giá trị thiếu trong {0}: {1}"
+msgstr ""
-#. Name of a DocType
-#: desk/doctype/event/event.json
-msgid "Event"
-msgstr "Sự Kiện"
+#: frappe/model/base_document.py:810
+msgid "Error: {0} Row #{1}: Value missing for: {2}"
+msgstr ""
+
+#. Label of the errors_generated_in_last_1_day_section (Section Break) field in
+#. DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Errors"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Event"
-msgstr "Sự Kiện"
-
+#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/core/doctype/communication/communication.json
+#: frappe/desk/doctype/event/event.json
msgid "Event"
-msgstr "Sự Kiện"
+msgstr ""
-#. Label of a Select field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the event_category (Select) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Event Category"
-msgstr "Danh mục sự kiện"
+msgstr ""
-#. Label of a Select field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the event_frequency (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Event Frequency"
msgstr ""
+#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
-#: desk/doctype/event_participants/event_participants.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
msgid "Event Participants"
-msgstr "Người tham gia sự kiện"
+msgstr ""
-#. Label of a Table field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Event Participants"
-msgstr "Người tham gia sự kiện"
-
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#. Label of the enable_email_event_reminders (Check) field in DocType
+#. 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Event Reminders"
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:455
-#: integrations/doctype/google_calendar/google_calendar.py:539
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:493
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:577
msgid "Event Synced with Google Calendar."
-msgstr "Sự kiện được đồng bộ hóa với Lịch Google."
-
-#. Label of a Select field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Event Type"
-msgstr "Loại sự kiện"
-
-#. Label of a Data field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "Event Type"
-msgstr "Loại sự kiện"
-
-#: desk/doctype/event/event.py:263
-msgid "Events in Today's Calendar"
-msgstr "Sự kiện Trong Hôm nay của Lịch"
-
-#. Description of the Onboarding Step 'Create Custom Fields'
-#: custom/onboarding_step/custom_field/custom_field.json
-msgid ""
-"Every form in ERPNext has a standard set of fields. If you need to capture some information, but there is no standard Field available for it, you can insert Custom Field for it.\n"
-"\n"
-"Once custom fields are added, you can use them for reports and analytics charts as well.\n"
msgstr ""
-#. Label of a Check field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
+#. Label of the 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:274
+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 "Tất cả mọi người"
+msgstr ""
#. Description of the 'Custom Options' (Code) field in DocType 'Dashboard
#. Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"]"
-msgstr "Ví dụ: "color": ["# d1d8dd", "# ff5858"]"
+msgstr ""
-#. Label of a Int field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
+#. Label of the exact_copies (Int) field in DocType 'Recorder Query'
+#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Exact Copies"
msgstr ""
-#. Label of a HTML field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
+#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
-msgstr "Thí dụ"
+msgstr ""
#. Description of the 'Default Portal Home' (Data) field in DocType 'Portal
#. Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Example: \"/desk\""
-msgstr "Ví dụ: "/ bàn""
+msgstr ""
#. Description of the 'Path' (Data) field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Example: #Tree/Account"
-msgstr "Ví dụ: # Cây / Tài khoản"
+msgstr ""
#. Description of the 'Digits' (Int) field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Example: 00001"
-msgstr "Ví dụ: 00001"
+msgstr ""
#. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours."
msgstr ""
#. Description of the 'Description' (Small Text) field in DocType 'Assignment
#. Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Example: {{ subject }}"
-msgstr "Ví dụ: {{chủ đề}}"
+msgstr ""
#. Option for the 'File Type' (Select) field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#: frappe/core/doctype/data_export/data_export.json
msgid "Excel"
-msgstr "Excel"
+msgstr ""
-#: public/js/frappe/form/controls/password.js:91
+#: frappe/public/js/frappe/form/controls/password.js:90
msgid "Excellent"
msgstr ""
-#. Label of a Text field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
+#. Label of the exception (Text) field in DocType 'Data Import Log'
+#. Label of the exc_info (Code) field in DocType 'RQ Job'
+#. Label of the exception (Long Text) field in DocType 'Submission Queue'
+#: frappe/core/doctype/data_import_log/data_import_log.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Exception"
-msgstr "Exception"
+msgstr ""
-#. Label of a Code field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
-msgid "Exception"
-msgstr "Exception"
-
-#. Label of a Long Text field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
-msgid "Exception"
-msgstr "Exception"
-
-#: desk/doctype/system_console/system_console.js:17
-#: desk/doctype/system_console/system_console.js:22
+#. Label of the execute_section (Section Break) field in DocType 'System
+#. Console'
+#: frappe/desk/doctype/system_console/system_console.js:17
+#: frappe/desk/doctype/system_console/system_console.js:22
+#: frappe/desk/doctype/system_console/system_console.json
msgid "Execute"
-msgstr "Hành hình"
+msgstr ""
-#. Label of a Section Break field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
-msgid "Execute"
-msgstr "Hành hình"
-
-#: desk/doctype/system_console/system_console.js:10
+#: frappe/desk/doctype/system_console/system_console.js:10
msgid "Execute Console script"
-msgstr "Thực thi tập lệnh Console"
+msgstr ""
-#: desk/doctype/system_console/system_console.js:18
+#: frappe/public/js/frappe/ui/dropdown_console.js:125
+msgid "Executing Code"
+msgstr ""
+
+#: frappe/desk/doctype/system_console/system_console.js:18
msgid "Executing..."
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1961
+#: frappe/public/js/frappe/views/reports/query_report.js:2069
msgid "Execution Time: {0} sec"
-msgstr "Thời gian thực hiện: {0} giây"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Executive"
msgstr ""
-#: public/js/frappe/widgets/base_widget.js:157
-msgid "Expand"
-msgstr "Mở rộng"
+#. Label of the existing_role (Link) field in DocType 'Role Replication'
+#: frappe/core/doctype/role_replication/role_replication.json
+msgid "Existing Role"
+msgstr ""
-#: public/js/frappe/form/controls/code.js:147
+#: 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 "Mở rộng"
+msgstr ""
-#: public/js/frappe/views/treeview.js:125
+#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
-msgstr "Mở rộng tất cả"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
+msgid "Experimental"
+msgstr ""
#. Option for the 'Level' (Select) field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
+#: frappe/website/doctype/help_article/help_article.json
msgid "Expert"
-msgstr "Chuyên gia"
+msgstr ""
-#. Label of a Datetime field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. 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 "thời gian hết hạn"
+msgstr ""
-#. Label of a Datetime field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
-msgid "Expiration time"
-msgstr "thời gian hết hạn"
-
-#. Label of a Date field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
+#. Label of the expire_notification_on (Datetime) field in DocType 'Note'
+#: frappe/desk/doctype/note/note.json
msgid "Expire Notification On"
-msgstr "Hết Hạn Thông báo Mở"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Expired"
-msgstr "Hết hạn"
+msgstr ""
-#. Label of a Int field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
+#. 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 "hết hạn trong"
+msgstr ""
-#. Label of a Int field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "Expires In"
-msgstr "hết hạn trong"
-
-#. Label of a Date field in DocType 'Document Share Key'
-#: core/doctype/document_share_key/document_share_key.json
-msgctxt "Document Share Key"
+#. 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 a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. 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 "Thời gian hết hạn của Trang Hình Mã QR"
+msgstr ""
-#: core/doctype/recorder/recorder_list.js:42
-#: public/js/frappe/data_import/data_exporter.js:88
-#: public/js/frappe/data_import/data_exporter.js:239
-#: public/js/frappe/views/reports/query_report.js:1652
-#: public/js/frappe/views/reports/report_view.js:1552
+#. 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:1757
+#: frappe/public/js/frappe/views/reports/report_view.js:1621
+#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
-msgstr "Xuất"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:2135
msgctxt "Button in list view actions menu"
msgid "Export"
-msgstr "Xuất"
+msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Export"
-msgstr "Xuất"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Export"
-msgstr "Xuất"
-
-#: public/js/frappe/data_import/data_exporter.js:241
+#: frappe/public/js/frappe/data_import/data_exporter.js:245
msgid "Export 1 record"
-msgstr "Xuất 1 bản ghi"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1563
-msgid "Export All {0} rows?"
-msgstr "Xuất tất cả {0} hàng?"
-
-#: custom/doctype/customize_form/customize_form.js:220
+#: frappe/custom/doctype/customize_form/customize_form.js:262
msgid "Export Custom Permissions"
-msgstr "Xuất Quyền Tuỳ chỉnh"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:200
+#: frappe/custom/doctype/customize_form/customize_form.js:242
msgid "Export Customizations"
-msgstr "Tuỳ chỉnh xuất khẩu"
-
-#: public/js/frappe/data_import/data_exporter.js:14
-msgid "Export Data"
-msgstr "Xuất dữ liệu"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Data Export"
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/public/js/frappe/data_import/data_exporter.js:14
msgid "Export Data"
-msgstr "Xuất dữ liệu"
+msgstr ""
-#: core/doctype/data_import/data_import.js:86
-#: public/js/frappe/data_import/import_preview.js:195
+#: frappe/core/doctype/data_import/data_import.js:86
+#: frappe/public/js/frappe/data_import/import_preview.js:199
msgid "Export Errored Rows"
-msgstr "Xuất khẩu hàng bị xóa"
+msgstr ""
-#. Label of a Data field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the export_from (Data) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "Export From"
-msgstr "Xuất khẩu từ"
+msgstr ""
-#: core/doctype/data_import/data_import.js:535
+#: frappe/core/doctype/data_import/data_import.js:518
msgid "Export Import Log"
msgstr ""
-#: public/js/frappe/views/reports/report_utils.js:227
+#: frappe/public/js/frappe/views/reports/report_utils.js:235
msgctxt "Export report"
msgid "Export Report: {0}"
-msgstr "Xuất báo cáo: {0}"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:26
+#: frappe/public/js/frappe/data_import/data_exporter.js:26
msgid "Export Type"
-msgstr "Loại xuất khẩu"
+msgstr ""
-#: public/js/frappe/views/file/file_view.js:154
+#: frappe/public/js/frappe/views/reports/report_view.js:1632
+msgid "Export all matching rows?"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1642
+msgid "Export all {0} rows?"
+msgstr ""
+
+#: frappe/public/js/frappe/views/file/file_view.js:154
msgid "Export as zip"
msgstr ""
-#: public/js/frappe/utils/tools.js:11
+#: frappe/public/js/frappe/utils/tools.js:11
msgid "Export not allowed. You need {0} role to export."
-msgstr "Xuất khẩu không được phép. Bạn cần {0} vai trò xuất khẩu."
+msgstr ""
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#: frappe/core/doctype/data_export/data_export.json
msgid "Export the data without any header notes and column descriptions"
msgstr ""
-#. Label of a Check field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#. Label of the export_without_main_header (Check) field in DocType 'Data
+#. Export'
+#: frappe/core/doctype/data_export/data_export.json
msgid "Export without main header"
msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:243
+#: frappe/public/js/frappe/data_import/data_exporter.js:247
msgid "Export {0} records"
-msgstr "Xuất bản ghi {0}"
+msgstr ""
-#. Label of a Data field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#: frappe/custom/doctype/customize_form/customize_form.js:263
+msgid "Exported permissions will be force-synced on every migrate overriding any other customization."
+msgstr ""
+
+#. Label of the expose_recipients (Data) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Expose Recipients"
-msgstr "Đưa ra nhận"
+msgstr ""
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Expression"
msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Expression"
-msgstr ""
-
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Expression (old style)"
-msgstr ""
-
-#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Expression (old style)"
msgstr ""
#. Description of the 'Condition' (Data) field in DocType 'Notification
#. Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Expression, Optional"
-msgstr "Biểu hiện, Tùy chọn"
+msgstr ""
-#. Label of a Section Break field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the external_link (Data) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/views/workspace/workspace.js:426
+msgid "External Link"
+msgstr ""
+
+#. Label of the section_break_18 (Section Break) field in DocType 'Connected
+#. App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Extra Parameters"
msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Facebook"
-msgstr "Facebook"
+msgstr ""
+
+#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Fail"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Failed"
-msgstr "Thất bại"
-
-#. Option for the 'Status' (Select) field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Failed"
-msgstr "Thất bại"
-
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
-msgid "Failed"
-msgstr "Thất bại"
-
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Failed"
-msgstr "Thất bại"
+msgstr ""
-#. Label of a Int field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the failed_emails (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Failed Emails"
+msgstr ""
+
+#. Label of the failed_job_count (Int) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Failed Job Count"
msgstr ""
-#: model/workflow.py:305
-msgid "Failed Transactions"
-msgstr "Giao dịch không thành công"
+#. 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 ""
-#: utils/synchronization.py:46
+#. Label of the failed_logins (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Failed Logins (Last 30 days)"
+msgstr ""
+
+#: frappe/model/workflow.py:306
+msgid "Failed Transactions"
+msgstr ""
+
+#: frappe/utils/synchronization.py:46
msgid "Failed to aquire lock: {}. Lock may be held by another process."
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:360
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:359
msgid "Failed to change password."
-msgstr "Không thể thay đổi mật khẩu."
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:220
+#: frappe/desk/page/setup_wizard/setup_wizard.js:232
+#: frappe/desk/page/setup_wizard/setup_wizard.py:42
msgid "Failed to complete setup"
-msgstr "Không thể hoàn tất thiết lập"
+msgstr ""
-#: integrations/doctype/webhook/webhook.py:148
+#: frappe/integrations/doctype/webhook/webhook.py:137
msgid "Failed to compute request body: {}"
msgstr ""
-#: printing/doctype/network_printer_settings/network_printer_settings.py:45
-#: printing/doctype/network_printer_settings/network_printer_settings.py:47
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:46
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:48
msgid "Failed to connect to server"
-msgstr "kết nối thất bại"
+msgstr ""
-#: auth.py:649
+#: frappe/auth.py:698
msgid "Failed to decode token, please provide a valid base64-encoded token."
-msgstr "Không giải mã được mã thông báo, vui lòng cung cấp mã thông báo được mã hóa base64 hợp lệ."
+msgstr ""
-#: core/doctype/rq_job/rq_job_list.js:33
+#: frappe/utils/password.py:211
+msgid "Failed to decrypt key {0}"
+msgstr ""
+
+#: frappe/desk/reportview.py:600
+msgid "Failed to delete {0} documents: {1}"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job_list.js:33
msgid "Failed to enable scheduler: {0}"
msgstr ""
-#: integrations/doctype/webhook/webhook.py:136
+#: frappe/email/doctype/notification/notification.py:99
+#: frappe/integrations/doctype/webhook/webhook.py:127
msgid "Failed to evaluate conditions: {}"
msgstr ""
-#: types/exporter.py:197
+#: frappe/types/exporter.py:205
msgid "Failed to export python type hints"
msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.py:252
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:249
msgid "Failed to generate names from the series"
msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.js:75
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:75
msgid "Failed to generate preview of series"
msgstr ""
-#: handler.py:76
+#: frappe/handler.py:75
msgid "Failed to get method for command {0} with {1}"
msgstr ""
-#: api/v2.py:48
+#: frappe/api/v2.py:46
msgid "Failed to get method {0} with {1}"
msgstr ""
-#: model/virtual_doctype.py:64
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:59
+msgid "Failed to get site info"
+msgstr ""
+
+#: frappe/model/virtual_doctype.py:63
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr ""
-#: utils/image.py:75
+#: frappe/utils/image.py:75
msgid "Failed to optimize image: {0}"
msgstr ""
-#: email/doctype/email_queue/email_queue.py:278
+#: frappe/email/doctype/notification/notification.py:116
+msgid "Failed to render message: {}"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:134
+msgid "Failed to render subject: {}"
+msgstr ""
+
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:94
+msgid "Failed to request login to Frappe Cloud"
+msgstr ""
+
+#: frappe/email/doctype/email_queue/email_queue.py:297
msgid "Failed to send email with subject:"
msgstr ""
-#: desk/doctype/notification_log/notification_log.py:41
+#: frappe/desk/doctype/notification_log/notification_log.py:43
msgid "Failed to send notification email"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.py:24
+#: frappe/desk/page/setup_wizard/setup_wizard.py:24
msgid "Failed to update global settings"
msgstr ""
-#: core/doctype/data_import/data_import.js:470
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:74
+msgid "Failed while calling API {0}"
+msgstr ""
+
+#. Label of the failing_scheduled_jobs (Table) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Failing Scheduled Jobs (last 7 days)"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:459
msgid "Failure"
-msgstr "Sự thất bại"
+msgstr ""
-#. Label of a Attach field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the failure_rate (Percent) field in DocType 'System Health Report
+#. Failing Jobs'
+#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
+msgid "Failure Rate"
+msgstr ""
+
+#. Label of the favicon (Attach) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "FavIcon"
-msgstr "Favicon"
+msgstr ""
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the fax (Data) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "Fax"
-msgstr "Fax"
+msgstr ""
-#: website/doctype/blog_post/templates/blog_post_row.html:19
+#. Label of the featured (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19
msgid "Featured"
-msgstr "Đặc sắc"
+msgstr ""
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Featured"
-msgstr "Đặc sắc"
-
-#. Option for the 'Communication Type' (Select) field in DocType
-#. 'Communication'
-#. Label of a Section Break field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:33
msgid "Feedback"
-msgstr "Thông tin phản hồi"
+msgstr ""
-#. Label of a Data field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Feedback Request"
-msgstr "Phản hồi Yêu cầu"
+#: frappe/desk/page/setup_wizard/install_fixtures.py:29
+msgid "Female"
+msgstr ""
-#. Label of a Small Text field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the fetch_from (Small Text) field in DocType 'DocField'
+#. Label of the fetch_from (Small Text) field in DocType 'Custom Field'
+#. Label of the fetch_from (Small Text) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:29
+#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:34
msgid "Fetch From"
-msgstr "Tìm nạp từ"
+msgstr ""
-#. Label of a Small Text field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Fetch From"
-msgstr "Tìm nạp từ"
-
-#. Label of a Small Text field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Fetch From"
-msgstr "Tìm nạp từ"
-
-#: website/doctype/website_slideshow/website_slideshow.js:15
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:15
msgid "Fetch Images"
-msgstr "Tìm nạp hình ảnh"
+msgstr ""
-#: website/doctype/website_slideshow/website_slideshow.js:13
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:13
msgid "Fetch attached images from document"
-msgstr "Tìm nạp hình ảnh đính kèm từ tài liệu"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the fetch_if_empty (Check) field in DocType 'DocField'
+#. Label of the fetch_if_empty (Check) field in DocType 'Custom Field'
+#. Label of the fetch_if_empty (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Fetch on Save if Empty"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Fetch on Save if Empty"
-msgstr ""
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Fetch on Save if Empty"
-msgstr ""
-
-#: desk/doctype/global_search_settings/global_search_settings.py:60
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:61
msgid "Fetching default Global Search documents."
-msgstr "Tìm nạp tài liệu Tìm kiếm Toàn cầu mặc định."
+msgstr ""
-#: desk/page/leaderboard/leaderboard.js:131
-#: public/js/frappe/list/bulk_operations.js:262
-#: public/js/frappe/views/reports/query_report.js:235
-#: public/js/frappe/views/reports/query_report.js:1706
+#. Label of the field (Select) field in DocType 'Assignment Rule'
+#. Label of the field (Select) field in DocType 'Document Naming Rule
+#. Condition'
+#. Label of the field (Select) field in DocType 'Bulk Update'
+#. Label of the report_field (Select) field in DocType 'Number Card'
+#. Label of the field (Select) field in DocType 'Onboarding Step'
+#. Label of the fieldname (Select) field in DocType 'Web Form Field'
+#. Label of the fieldname (Select) field in DocType 'Web Form List Column'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+#: frappe/core/doctype/permission_log/permission_log.js:12
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/public/js/frappe/list/bulk_operations.js:327
+#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
+#: frappe/public/js/frappe/views/reports/query_report.js:237
+#: frappe/public/js/frappe/views/reports/query_report.js:1816
+#: 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 "Cánh đồng"
+msgstr ""
-#. Label of a Select field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Field"
-msgstr "Cánh đồng"
-
-#. Label of a Select field in DocType 'Bulk Update'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
-msgid "Field"
-msgstr "Cánh đồng"
-
-#. Label of a Select field in DocType 'Document Naming Rule Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
-msgid "Field"
-msgstr "Cánh đồng"
-
-#. Label of a Select field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Field"
-msgstr "Cánh đồng"
-
-#. Label of a Select field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Field"
-msgstr "Cánh đồng"
-
-#. Label of a Select field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Field"
-msgstr "Cánh đồng"
-
-#. Label of a Select field in DocType 'Web Form List Column'
-#: website/doctype/web_form_list_column/web_form_list_column.json
-msgctxt "Web Form List Column"
-msgid "Field"
-msgstr "Cánh đồng"
-
-#: core/doctype/doctype/doctype.py:419
+#: frappe/core/doctype/doctype/doctype.py:417
msgid "Field \"route\" is mandatory for Web Views"
-msgstr "Trường "tuyến đường" là bắt buộc đối với Lượt xem web"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1477
+#: frappe/core/doctype/doctype/doctype.py:1526
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.js:17
+#: frappe/desk/doctype/bulk_update/bulk_update.js:17
msgid "Field \"value\" is mandatory. Please specify value to be updated"
-msgstr "Dòng "giá trị" là bắt buộc. Hãy xác định giá trị được cập nhật"
+msgstr ""
-#. Label of a Text field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the description (Text) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Field Description"
-msgstr "Dòng Mô tả"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1040
+#: frappe/core/doctype/doctype/doctype.py:1077
msgid "Field Missing"
msgstr ""
-#. Label of a Select field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
+#. Label of the field_name (Data) field in DocType 'Property Setter'
+#. Label of the field_name (Select) field in DocType 'Kanban Board'
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
msgid "Field Name"
-msgstr "Tên trường"
+msgstr ""
-#. Label of a Data field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
-msgid "Field Name"
-msgstr "Tên trường"
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:141
+msgid "Field Orientation (Left-Right)"
+msgstr ""
-#. Label of a Select field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Field To Check"
-msgstr "Trường để kiểm tra"
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:148
+msgid "Field Orientation (Top-Down)"
+msgstr ""
-#. Label of a Select field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:233
+#: frappe/public/js/print_format_builder/utils.js:69
+msgid "Field Template"
+msgstr ""
+
+#. Label of the fieldtype (Select) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/templates/form_grid/fields.html:40
msgid "Field Type"
-msgstr "Loại lĩnh vực"
+msgstr ""
-#: desk/reportview.py:165
+#: frappe/desk/reportview.py:201
msgid "Field not permitted in query"
msgstr ""
#. Description of the 'Workflow State Field' (Data) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)"
-msgstr "Lĩnh vực đại diện cho Nhà nước Quy trình làm việc của giao dịch (nếu trường không có mặt, một ẩn mới Trường Tuỳ chỉnh sẽ được tạo ra)"
+msgstr ""
-#. Label of a Select field in DocType 'Milestone Tracker'
-#: automation/doctype/milestone_tracker/milestone_tracker.json
-msgctxt "Milestone Tracker"
+#. Label of the track_field (Select) field in DocType 'Milestone Tracker'
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Field to Track"
-msgstr "Trường để theo dõi"
+msgstr ""
-#: custom/doctype/property_setter/property_setter.py:50
+#: frappe/custom/doctype/property_setter/property_setter.py:51
msgid "Field type cannot be changed for {0}"
-msgstr "Không thể thay đổi loại trường cho {0}"
+msgstr ""
-#: database/database.py:783
+#: frappe/database/database.py:892
msgid "Field {0} does not exist on {1}"
msgstr ""
-#: desk/form/meta.py:203
+#: frappe/desk/form/meta.py:208
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
-#: public/js/frappe/form/form.js:1727
+#: frappe/public/js/frappe/form/form.js:1754
msgid "Field {0} not found."
-msgstr "Trường {0} không được tìm thấy"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:119
+#: frappe/email/doctype/notification/notification.py:503
+msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
+msgstr ""
+
+#. Label of the fieldname (Data) field in DocType 'Report Column'
+#. Label of the fieldname (Data) field in DocType 'Report Filter'
+#. Label of the fieldname (Data) field in DocType 'Custom Field'
+#. Label of the fieldname (Select) field in DocType 'DocType Layout Field'
+#. Label of the fieldname (Select) field in DocType 'Form Tour Step'
+#. Label of the fieldname (Select) field in DocType 'Webhook Data'
+#. Label of the fieldname (Data) field in DocType 'Web Template Field'
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.js:120
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/integrations/doctype/webhook_data/webhook_data.json
+#: frappe/public/js/frappe/form/grid_row.js:438
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
-msgstr "Fieldname"
+msgstr ""
-#. Label of a Data field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Fieldname"
-msgstr "Fieldname"
-
-#. Label of a Select field in DocType 'DocType Layout Field'
-#: custom/doctype/doctype_layout_field/doctype_layout_field.json
-msgctxt "DocType Layout Field"
-msgid "Fieldname"
-msgstr "Fieldname"
-
-#. Label of a Select field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Fieldname"
-msgstr "Fieldname"
-
-#. Label of a Data field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Fieldname"
-msgstr "Fieldname"
-
-#. Label of a Data field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Fieldname"
-msgstr "Fieldname"
-
-#. Label of a Data field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Fieldname"
-msgstr "Fieldname"
-
-#. Label of a Select field in DocType 'Webhook Data'
-#: integrations/doctype/webhook_data/webhook_data.json
-msgctxt "Webhook Data"
-msgid "Fieldname"
-msgstr "Fieldname"
-
-#: core/doctype/doctype/doctype.py:270
+#: frappe/core/doctype/doctype/doctype.py:270
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr ""
-#: core/doctype/doctype/doctype.py:1039
+#: frappe/core/doctype/doctype/doctype.py:1076
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: database/schema.py:125 database/schema.py:359
+#: frappe/database/schema.py:127 frappe/database/schema.py:363
msgid "Fieldname is limited to 64 characters ({0})"
-msgstr "Fieldname được giới hạn đến 64 ký tự ({0})"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.py:193
+#: frappe/custom/doctype/custom_field/custom_field.py:197
msgid "Fieldname not set for Custom Field"
-msgstr "Fieldname không được thiết lập cho Trường Tuỳ chỉnh"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:107
+#: frappe/custom/doctype/custom_field/custom_field.js:107
msgid "Fieldname which will be the DocType for this link field."
-msgstr "Fieldname đó sẽ là DOCTYPE cho trường liên kết này."
+msgstr ""
-#: public/js/form_builder/store.js:170
+#: frappe/public/js/form_builder/store.js:175
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: database/schema.py:349
+#: frappe/database/schema.py:353
msgid "Fieldname {0} cannot have special characters like {1}"
-msgstr "Fieldname {0} không có các ký tự đặc biệt như {1}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1850
+#: frappe/core/doctype/doctype/doctype.py:1907
msgid "Fieldname {0} conflicting with meta object"
-msgstr "Fieldname {0} mâu thuẫn với đối tượng meta"
+msgstr ""
-#: core/doctype/doctype/doctype.py:495 public/js/form_builder/utils.js:302
+#: frappe/core/doctype/doctype/doctype.py:496
+#: frappe/public/js/form_builder/utils.js:302
msgid "Fieldname {0} is restricted"
-msgstr "Tên trường {0} bị hạn chế"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#. Label of a Table field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the fields (Table) field in DocType 'DocType'
+#. Label of the fields_section (Section Break) field in DocType 'DocType'
+#. Label of the fields_tab (Tab Break) field in DocType 'DocType'
+#. Label of the fields_section_break (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the fields (Table) field in DocType 'Customize Form'
+#. Label of the fields (Table) field in DocType 'DocType Layout'
+#. Label of the fields (Code) field in DocType 'Kanban Board'
+#. Label of the fields_html (HTML) field in DocType 'List View Settings'
+#. Label of the fields (Code) field in DocType 'List View Settings'
+#. Label of the fields (Small Text) field in DocType 'Personal Data Deletion
+#. Step'
+#. Label of the fields (Table) field in DocType 'Web Template'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+#: frappe/public/js/frappe/list/list_settings.js:135
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:83
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+#: frappe/website/doctype/web_template/web_template.json
msgid "Fields"
-msgstr "Các trường"
+msgstr ""
-#. Label of a Table field in DocType 'DocType'
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Fields"
-msgstr "Các trường"
-
-#. Label of a Table field in DocType 'DocType Layout'
-#: custom/doctype/doctype_layout/doctype_layout.json
-msgctxt "DocType Layout"
-msgid "Fields"
-msgstr "Các trường"
-
-#. Label of a Code field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Fields"
-msgstr "Các trường"
-
-#. Label of a HTML field in DocType 'List View Settings'
-#. Label of a Code field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
-msgid "Fields"
-msgstr "Các trường"
-
-#. Label of a Small Text field in DocType 'Personal Data Deletion Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
-msgid "Fields"
-msgstr "Các trường"
-
-#. Label of a Table field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
-msgid "Fields"
-msgstr "Các trường"
-
-#. Label of a HTML field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#. Label of the fields_multicheck (HTML) field in DocType 'Data Export'
+#: frappe/core/doctype/data_export/data_export.json
msgid "Fields Multicheck"
-msgstr "Trường Multicheck"
+msgstr ""
-#: core/doctype/file/file.py:406
+#: frappe/core/doctype/file/file.py:410
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
+#: frappe/model/db_query.py:144
+msgid "Fields must be a list or tuple when as_list is enabled"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
-msgstr "Fields cách nhau bởi dấu phẩy (,) sẽ được bao gồm trong "Tìm Kiếm Theo" danh sách các hộp thoại Search"
+msgstr ""
-#. Label of a Data field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the fieldtype (Select) field in DocType 'Report Column'
+#. Label of the fieldtype (Select) field in DocType 'Report Filter'
+#. Label of the fieldtype (Data) field in DocType 'Form Tour Step'
+#. Label of the fieldtype (Select) field in DocType 'Web Form Field'
+#. Label of the fieldtype (Data) field in DocType 'Web Form List Column'
+#. Label of the fieldtype (Select) field in DocType 'Web Template Field'
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldtype"
-msgstr "Fieldtype"
+msgstr ""
-#. Label of a Select field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Fieldtype"
-msgstr "Fieldtype"
-
-#. Label of a Select field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Fieldtype"
-msgstr "Fieldtype"
-
-#. Label of a Select field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Fieldtype"
-msgstr "Fieldtype"
-
-#. Label of a Data field in DocType 'Web Form List Column'
-#: website/doctype/web_form_list_column/web_form_list_column.json
-msgctxt "Web Form List Column"
-msgid "Fieldtype"
-msgstr "Fieldtype"
-
-#. Label of a Select field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Fieldtype"
-msgstr "Fieldtype"
-
-#: custom/doctype/custom_field/custom_field.py:189
+#: frappe/custom/doctype/custom_field/custom_field.py:193
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
-#: custom/doctype/customize_form/customize_form.py:586
+#: frappe/custom/doctype/customize_form/customize_form.py:588
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
-msgstr "Fieldtype không thể thay đổi từ {0} đến {1} trong hàng {2}"
-
-#. Name of a DocType
-#: core/doctype/file/file.json
-msgid "File"
-msgstr "Tập tin"
+msgstr ""
#. Label of a shortcut in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "File"
-msgid "File"
-msgstr "Tập tin"
-
+#. Name of a DocType
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/file/file.json
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "File"
-msgstr "Tập tin"
+msgstr ""
-#: core/doctype/file/utils.py:126
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478
+msgid "File \"{0}\" was skipped because of invalid file type"
+msgstr ""
+
+#: frappe/core/doctype/file/utils.py:128
msgid "File '{0}' not found"
-msgstr "File '{0}' không tìm thấy"
+msgstr ""
-#. Label of a Check field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
+#. Label of the file_backup (Check) field in DocType 'Dropbox Settings'
+#. Label of the file_backup (Check) field in DocType 'Google Drive'
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
+#: frappe/integrations/doctype/google_drive/google_drive.json
msgid "File Backup"
-msgstr "Sao lưu tập tin"
+msgstr ""
-#. Label of a Check field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "File Backup"
-msgstr "Sao lưu tập tin"
-
-#. Label of a Section Break field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the private_file_section (Section Break) field in DocType 'Access
+#. Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "File Information"
-msgstr "Thông tin tập tin"
+msgstr ""
-#: public/js/frappe/views/file/file_view.js:74
+#: frappe/public/js/frappe/views/file/file_view.js:74
msgid "File Manager"
-msgstr "Quản lý tập tin"
+msgstr ""
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the file_name (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "File Name"
-msgstr "Tên tệp tin"
+msgstr ""
-#. Label of a Int field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the file_size (Int) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "File Size"
-msgstr "Dung lượng file"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:19
+#. Label of the section_break_ryki (Section Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "File Storage"
+msgstr ""
+
+#. Label of the file_type (Data) field in DocType 'Access Log'
+#. Label of the file_type (Select) field in DocType 'Data Export'
+#. Label of the file_type (Data) field in DocType 'File'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/data_export/data_export.json
+#: frappe/core/doctype/file/file.json
+#: frappe/public/js/frappe/data_import/data_exporter.js:19
msgid "File Type"
-msgstr "Loại tệp"
+msgstr ""
-#. Label of a Data field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
-msgid "File Type"
-msgstr "Loại tệp"
-
-#. Label of a Select field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
-msgid "File Type"
-msgstr "Loại tệp"
-
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
-msgid "File Type"
-msgstr "Loại tệp"
-
-#. Label of a Code field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the file_url (Code) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "File URL"
-msgstr "Đường dẫn tập tin"
+msgstr ""
-#: desk/page/backups/backups.py:109
+#: frappe/desk/page/backups/backups.py:107
msgid "File backup is ready"
-msgstr "Sao lưu tệp đã sẵn sàng"
+msgstr ""
-#: core/doctype/file/file.py:577
+#: frappe/core/doctype/file/file.py:624
msgid "File name cannot have {0}"
-msgstr "Tên tệp không được có {0}"
+msgstr ""
-#: utils/csvutils.py:26
+#: frappe/utils/csvutils.py:28
msgid "File not attached"
-msgstr "File chưa được đính kèm"
+msgstr ""
-#: core/doctype/file/file.py:682 public/js/frappe/request.js:197
-#: utils/file_manager.py:221
+#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200
+#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
-msgstr "Kích thước tập tin vượt quá kích thước tối đa cho phép {0} MB"
+msgstr ""
-#: public/js/frappe/request.js:195
+#: frappe/public/js/frappe/request.js:198
msgid "File too big"
-msgstr "Tệp quá lớn"
+msgstr ""
-#: core/doctype/file/file.py:373
+#: frappe/core/doctype/file/file.py:375
msgid "File type of {0} is not allowed"
msgstr ""
-#: core/doctype/file/file.py:360 core/doctype/file/file.py:422
+#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426
msgid "File {0} does not exist"
-msgstr "File {0} không tồn tại"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "File"
+#. Label of the files_tab (Tab Break) field in DocType 'System Settings'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Files"
-msgstr "Các tập tin"
+msgstr ""
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Files"
-msgstr "Các tập tin"
-
-#: email/doctype/auto_email_report/auto_email_report.js:90
-#: public/js/frappe/ui/filters/filter_list.js:132
+#: frappe/core/doctype/prepared_report/prepared_report.js:8
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
+#: frappe/desk/doctype/number_card/number_card.js:205
+#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
+#: frappe/public/js/frappe/list/base_list.js:953
+#: frappe/public/js/frappe/ui/filters/filter_list.js:134
+#: frappe/website/doctype/web_form/web_form.js:197
msgid "Filter"
-msgstr "Bộ lọc"
+msgstr ""
-#. Label of a Section Break field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#: frappe/public/js/frappe/list/list_sidebar.html:36
+msgid "Filter By"
+msgstr ""
+
+#. Label of the filter_data (Section Break) field in DocType 'Auto Email
+#. Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Filter Data"
-msgstr "Lọc dữ liệu"
+msgstr ""
-#. Label of a HTML field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#. Label of the filter_list (HTML) field in DocType 'Data Export'
+#: frappe/core/doctype/data_export/data_export.json
msgid "Filter List"
-msgstr "Danh sách bộ lọc"
+msgstr ""
-#. Label of a Text field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the filter_meta (Text) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Filter Meta"
-msgstr "lọc bản thử"
+msgstr ""
-#: public/js/frappe/list/list_filter.js:33
+#. Label of the filter_name (Data) field in DocType 'List Filter'
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/public/js/frappe/list/list_filter.js:33
msgid "Filter Name"
-msgstr "Tên bộ lọc"
+msgstr ""
-#. Label of a Data field in DocType 'List Filter'
-#: desk/doctype/list_filter/list_filter.json
-msgctxt "List Filter"
-msgid "Filter Name"
-msgstr "Tên bộ lọc"
-
-#. Label of a HTML field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Label of the filter_values (HTML) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Filter Values"
-msgstr "Giá trị bộ lọc"
+msgstr ""
-#: utils/data.py:2021
-msgid "Filter must be a tuple or list (in a list)"
-msgstr "Bộ lọc phải là một dãy hữu hạn hoặc một danh sách (trong 1 danh sách)"
+#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
+msgid "Filter..."
+msgstr ""
-#: utils/data.py:2029
-msgid "Filter must have 4 values (doctype, fieldname, operator, value): {0}"
-msgstr "Bộ lọc phải có 4 định giá (kiểu văn bản, tên trường , người điều khiển, định giá): {0}"
-
-#. Label of a Data field in DocType 'Personal Data Deletion Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
+#. Label of the filtered_by (Data) field in DocType 'Personal Data Deletion
+#. Step'
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Filtered By"
msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:33
+#: frappe/public/js/frappe/data_import/data_exporter.js:33
msgid "Filtered Records"
-msgstr "Hồ sơ đã lọc"
-
-#: website/doctype/blog_post/blog_post.py:262
-#: website/doctype/help_article/help_article.py:91 www/list.py:45
-msgid "Filtered by \"{0}\""
-msgstr "Lọc bởi "{0}""
-
-#. Label of a Code field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
-msgid "Filters"
-msgstr "Bộ lọc"
-
-#. Label of a Text field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Filters"
-msgstr "Bộ lọc"
-
-#. Label of a Section Break field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Filters"
-msgstr "Bộ lọc"
-
-#. Label of a Code field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Filters"
-msgstr "Bộ lọc"
-
-#. Label of a Long Text field in DocType 'List Filter'
-#: desk/doctype/list_filter/list_filter.json
-msgctxt "List Filter"
-msgid "Filters"
-msgstr "Bộ lọc"
-
-#. Label of a Section Break field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Filters"
-msgstr "Bộ lọc"
-
-#. Label of a Section Break field in DocType 'Prepared Report'
-#. Label of a Small Text field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
-msgid "Filters"
-msgstr "Bộ lọc"
-
-#. Label of a Section Break field in DocType 'Report'
-#. Label of a Table field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Filters"
-msgstr "Bộ lọc"
-
-#: public/js/frappe/ui/filters/filter_list.js:131
-msgid "Filters {0}"
msgstr ""
-#. Label of a Code field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/website/doctype/blog_post/blog_post.py:268
+#: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45
+msgid "Filtered by \"{0}\""
+msgstr ""
+
+#. Label of the filters (Code) field in DocType 'Access Log'
+#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
+#. Label of the filters (Small Text) field in DocType 'Prepared Report'
+#. Label of the filters_section (Section Break) field in DocType 'Report'
+#. Label of the filters (Table) field in DocType 'Report'
+#. Label of the filters_section (Section Break) field in DocType 'Dashboard
+#. Chart'
+#. Label of the filters (Code) field in DocType 'Kanban Board'
+#. Label of the filters (Long Text) field in DocType 'List Filter'
+#. Label of the filters (Text) field in DocType 'Auto Email Report'
+#. Label of the filters (Section Break) field in DocType 'Notification'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/report/report.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/notification/notification.json
+msgid "Filters"
+msgstr ""
+
+#. Label of the filters_config (Code) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters Configuration"
-msgstr "Cấu hình bộ lọc"
+msgstr ""
-#. Label of a HTML field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the filters_display (HTML) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Filters Display"
-msgstr "Bộ lọc hiển thị"
+msgstr ""
-#. Label of a Code field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the filters_json (Code) field in DocType 'Dashboard Chart'
+#. Label of the filters_json (Code) field in DocType 'Number Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters JSON"
-msgstr "Bộ lọc JSON"
+msgstr ""
-#. Label of a Code field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Filters JSON"
-msgstr "Bộ lọc JSON"
-
-#. Label of a Section Break field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#. Label of the filters_section (Section Break) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters Section"
-msgstr "Phần bộ lọc"
+msgstr ""
-#: public/js/frappe/form/controls/link.js:486
+#: frappe/public/js/frappe/form/controls/link.js:510
msgid "Filters applied for {0}"
-msgstr "Các bộ lọc được áp dụng cho {0}"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:186
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
msgid "Filters saved"
-msgstr "Bộ lọc lưu"
+msgstr ""
#. Description of the 'Script' (Code) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#: frappe/core/doctype/report/report.json
msgid "Filters will be accessible via filters.
Send output as result = [result], or for old style data = [columns], [result]"
-msgstr "Bộ lọc sẽ có thể truy cập được thông qua filters .
Gửi đầu ra là result = [result] hoặc cho data = [columns], [result] kiểu cũ data = [columns], [result]"
+msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:556
+#: frappe/public/js/frappe/ui/filters/filter_list.js:133
+msgid "Filters {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1421
+msgid "Filters:"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572
msgid "Find '{0}' in ..."
msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:325
-#: public/js/frappe/ui/toolbar/awesome_bar.js:326
-#: public/js/frappe/ui/toolbar/search_utils.js:125
-#: public/js/frappe/ui/toolbar/search_utils.js:128
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144
msgid "Find {0} in {1}"
-msgstr "Tìm {0} trong {1}"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Finished"
-msgstr "Đã kết thúc"
+msgstr ""
-#. Label of a Datetime field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Label of the report_end_time (Datetime) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Finished At"
msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the first_day_of_the_week (Select) field in DocType 'Language'
+#. Label of the first_day_of_the_week (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "First Day of the Week"
msgstr ""
-#: www/complete_signup.html:15
+#. Label of the first_name (Data) field in DocType 'Contact'
+#. Label of the first_name (Data) field in DocType 'User'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
msgid "First Name"
-msgstr "Họ"
+msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "First Name"
-msgstr "Họ"
-
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "First Name"
-msgstr "Họ"
-
-#. Label of a Data field in DocType 'Success Action'
-#: core/doctype/success_action/success_action.json
-msgctxt "Success Action"
+#. Label of the first_success_message (Data) field in DocType 'Success Action'
+#: frappe/core/doctype/success_action/success_action.json
msgid "First Success Message"
-msgstr "Thông điệp thành công đầu tiên"
+msgstr ""
-#: core/report/transaction_log_report/transaction_log_report.py:49
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:49
msgid "First Transaction"
-msgstr "Giao dịch đầu tiên"
+msgstr ""
-#: core/doctype/data_export/exporter.py:185
+#: frappe/core/doctype/data_export/exporter.py:185
msgid "First data column must be blank."
-msgstr "Cột dữ liệu đầu tiên phải được để trống."
+msgstr ""
-#: website/doctype/website_slideshow/website_slideshow.js:7
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:7
msgid "First set the name and save the record."
-msgstr "Trước tiên hãy đặt tên và lưu bản ghi."
+msgstr ""
-#. Label of a Data field in DocType 'Language'
-#: core/doctype/language/language.json
-msgctxt "Language"
+#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:304
+msgid "Fit"
+msgstr ""
+
+#. Label of the flag (Data) field in DocType 'Language'
+#: frappe/core/doctype/language/language.json
msgid "Flag"
-msgstr "Cờ"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Float"
-msgstr "Phao"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Float"
-msgstr "Phao"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Float"
-msgstr "Phao"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Float"
-msgstr "Phao"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Float"
-msgstr "Phao"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Float"
-msgstr "Phao"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the float_precision (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Float Precision"
-msgstr "Độ nổi chính xác"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Fold"
-msgstr "Gập lại"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Fold"
-msgstr "Gập lại"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Fold"
-msgstr "Gập lại"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Fold"
-msgstr "Gập lại"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Fold"
-msgstr "Gập lại"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1401
+#: frappe/core/doctype/doctype/doctype.py:1450
msgid "Fold can not be at the end of the form"
-msgstr "Sự sắp xếp không thể ở cuối mẫu"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1399
+#: frappe/core/doctype/doctype/doctype.py:1448
msgid "Fold must come before a Section Break"
-msgstr "Sự sắp xếp phải đến trước việc ngắt phân đoạn"
+msgstr ""
-#. Label of a Link field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the folder (Link) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Folder"
-msgstr "Thư mục"
+msgstr ""
-#. Label of a Data field in DocType 'IMAP Folder'
-#: email/doctype/imap_folder/imap_folder.json
-msgctxt "IMAP Folder"
+#. Label of the folder_name (Data) field in DocType 'IMAP Folder'
+#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "Folder Name"
msgstr ""
-#: public/js/frappe/views/file/file_view.js:100
+#: frappe/public/js/frappe/views/file/file_view.js:100
msgid "Folder name should not include '/' (slash)"
-msgstr "Tên thư mục không nên bao gồm '/' (đoạn cắt)"
+msgstr ""
-#: core/doctype/file/file.py:466
+#: frappe/core/doctype/file/file.py:472
msgid "Folder {0} is not empty"
-msgstr "Thư mục {0} không trống"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Folio"
msgstr ""
-#: public/js/frappe/form/sidebar/form_sidebar.js:232
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
+#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Follow"
-msgstr "Theo"
+msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.py:124
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:101
+msgid "Followed by"
+msgstr ""
+
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
msgid "Following Report Filters have missing values:"
msgstr ""
-#: website/doctype/web_form/web_form.py:107
-msgid "Following fields are missing:"
-msgstr "các lĩnh vực sau bị thiếu:"
+#: frappe/desk/form/document_follow.py:63
+msgid "Following document {0}"
+msgstr ""
-#: public/js/frappe/ui/field_group.js:133
+#: frappe/website/doctype/web_form/web_form.py:111
+msgid "Following fields are missing:"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/field_group.js:139
msgid "Following fields have invalid values:"
msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:314
+#: frappe/public/js/frappe/widgets/widget_dialog.js:345
msgid "Following fields have missing values"
msgstr ""
-#: public/js/frappe/ui/field_group.js:120
+#: frappe/public/js/frappe/ui/field_group.js:126
msgid "Following fields have missing values:"
-msgstr "các lĩnh vực sau đây có giá trị còn thiếu:"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:30
+#: frappe/email/doctype/newsletter/newsletter.js:30
msgid "Following links are broken in the email content: {0}"
msgstr ""
-#. Label of a Select field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the font (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
-msgstr "Phông chữ"
+msgstr ""
-#. Label of a Data field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the font_properties (Data) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Font Properties"
-msgstr "Thuộc tính phông chữ"
+msgstr ""
-#. Label of a Int field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the font_size (Int) field in DocType 'Print Format'
+#. Label of the font_size (Float) field in DocType 'Print Settings'
+#. Label of the font_size (Data) field in DocType 'Website Theme'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:45
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Font Size"
-msgstr "Kích thước văn bản"
+msgstr ""
-#. Label of a Float field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Font Size"
-msgstr "Kích thước văn bản"
-
-#. Label of a Data field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Font Size"
-msgstr "Kích thước văn bản"
-
-#. Label of a Section Break field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the section_break_8 (Section Break) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Fonts"
-msgstr "Phông chữ"
-
-#. Label of a Text Editor field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
-msgid "Footer"
-msgstr "Phần chân"
-
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Footer"
-msgstr "Phần chân"
-
-#. Label of a Section Break field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
-msgid "Footer"
-msgstr "Phần chân"
+msgstr ""
+#. Label of the set_footer (Section Break) field in DocType 'Email Account'
+#. Label of the footer_section (Section Break) field in DocType 'Letter Head'
+#. Label of the footer (Text Editor) field in DocType 'About Us Settings'
#. Option for the 'Type' (Select) field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
+#. Label of the footer_tab (Tab Break) field in DocType 'Website Settings'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer"
-msgstr "Phần chân"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Footer"
-msgstr "Phần chân"
-
-#. Label of a Small Text field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer_powered (Small Text) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer \"Powered By\""
msgstr ""
-#. Label of a Select field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the footer_source (Select) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer Based On"
msgstr ""
-#. Label of a Text Editor field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the footer (Text Editor) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Footer Content"
msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer_details_section (Section Break) field in DocType
+#. 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Details"
msgstr ""
-#. Label of a HTML Editor field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the footer (HTML Editor) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer HTML"
-msgstr "Chân trang HTML"
+msgstr ""
-#: printing/doctype/letter_head/letter_head.py:72
+#: frappe/printing/doctype/letter_head/letter_head.py:75
msgid "Footer HTML set from attachment {0}"
msgstr ""
-#. Label of a Section Break field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the footer_image_section (Section Break) field in DocType 'Letter
+#. Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer Image"
msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#. Label of a Table field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer (Section Break) field in DocType 'Website Settings'
+#. Label of the footer_items (Table) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Items"
-msgstr "Phần chân của các mẫu hàng"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer_logo (Attach Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Logo"
-msgstr "Biểu trưng chân trang"
+msgstr ""
-#. Label of a Link field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer_script (Code) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Footer Script"
+msgstr ""
+
+#. Label of the footer_template (Link) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Template"
-msgstr "Mẫu chân trang"
+msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer_template_values (Code) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Template Values"
-msgstr "Giá trị mẫu chân trang"
+msgstr ""
-#: printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:116
msgid "Footer might not be visible as {0} option is disabled
"
msgstr ""
#. Description of the 'Footer HTML' (HTML Editor) field in DocType 'Letter
#. Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer will display correctly only in PDF"
-msgstr "Footer sẽ chỉ hiển thị chính xác trong PDF"
+msgstr ""
+
+#. Label of the for_doctype (Link) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "For DocType"
+msgstr ""
#. Description of the 'Row Name' (Data) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "For DocType Link / DocType Action"
-msgstr "Đối với DocType Link / DocType Action"
+msgstr ""
-#. Label of a Select field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "For Document Event"
-msgstr "Đối với sự kiện tài liệu"
+#. Label of the for_document (Dynamic Link) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "For Document"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:155
+#: frappe/core/doctype/user_permission/user_permission_list.js:155
msgid "For Document Type"
-msgstr "Đối với loại tài liệu"
+msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:529
+#: frappe/public/js/frappe/widgets/widget_dialog.js:553
msgid "For Example: {} Open"
-msgstr "Ví dụ: {} Mở"
-
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid ""
-"For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
msgstr ""
#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid ""
-"For Links, enter the DocType as range.\n"
+#. 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 ""
-#: core/doctype/user_permission/user_permission_list.js:10
-#: core/doctype/user_permission/user_permission_list.js:148
+#. Label of the for_user (Link) field in DocType 'List Filter'
+#. Label of the for_user (Link) field in DocType 'Notification Log'
+#. Label of the for_user (Data) field in DocType 'Workspace'
+#: frappe/core/doctype/user_permission/user_permission_list.js:10
+#: frappe/core/doctype/user_permission/user_permission_list.js:148
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/workspace/workspace.json
msgid "For User"
-msgstr "Đối với tài"
+msgstr ""
-#. Label of a Link field in DocType 'List Filter'
-#: desk/doctype/list_filter/list_filter.json
-msgctxt "List Filter"
-msgid "For User"
-msgstr "Đối với tài"
-
-#. Label of a Link field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "For User"
-msgstr "Đối với tài"
-
-#. Label of a Data field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "For User"
-msgstr "Đối với tài"
-
-#. Label of a Dynamic Link field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
+#. Label of the for_value (Dynamic Link) field in DocType 'User Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
msgid "For Value"
-msgstr "Đối với Giá trị"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1958
-#: public/js/frappe/views/reports/report_view.js:96
+#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
-msgstr "Để so sánh, sử dụng> 5, <10 hoặc = 324. Đối với phạm vi, sử dụng 5:10 (cho các giá trị trong khoảng từ 5 đến 10)."
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:744
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment."
+msgstr ""
+
+#: frappe/public/js/frappe/utils/dashboard_utils.js:162
+msgid "For example:"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:752
msgid "For example: If you want to include the document ID, use {0}"
-msgstr "Ví dụ: Nếu bạn muốn bao gồm các ID tài liệu, sử dụng {0}"
+msgstr ""
#. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "For example: {} Open"
-msgstr "Ví dụ: {} Mở"
+msgstr ""
-#. Description of the 'Client Script' (Code) field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Description of the 'Client script' (Code) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "For help see Client Script API and Examples"
-msgstr "Để được trợ giúp, hãy xem API tập lệnh ứng dụng khách và các ví dụ"
+msgstr ""
#. Description of the 'Enable Automatic Linking in Documents' (Check) field in
#. DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "For more information, click here."
-msgstr "Để biết thêm thông tin, bấm vào đây ."
+msgstr ""
-#: integrations/doctype/google_settings/google_settings.js:7
+#: frappe/integrations/doctype/google_settings/google_settings.js:7
msgid "For more information, {0}."
-msgstr "Để biết thêm thông tin, {0}."
+msgstr ""
#. Description of the 'Email To' (Small Text) field in DocType 'Auto Email
#. Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "For multiple addresses, enter the address on different line. e.g. test@test.com ⏎ test1@test.com"
msgstr ""
-#: core/doctype/data_export/exporter.py:199
+#: frappe/core/doctype/data_export/exporter.py:197
msgid "For updating, you can update only selective columns."
-msgstr "Để cập nhật, bạn chỉ có thể cập nhật các cột được lựa chọn sẵn."
+msgstr ""
-#: core/doctype/doctype/doctype.py:1692
+#: frappe/core/doctype/doctype/doctype.py:1751
msgid "For {0} at level {1} in {2} in row {3}"
-msgstr "Cho {0} ở mức {1} trong {2} trong hàng {3}"
+msgstr ""
+#. Label of the force (Check) field in DocType 'Package Import'
#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth
#. Provider Settings'
-#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
-msgctxt "OAuth Provider Settings"
+#: frappe/core/doctype/package_import/package_import.json
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
msgid "Force"
-msgstr "Sức ảnh hưởng"
+msgstr ""
-#. Label of a Check field in DocType 'Package Import'
-#: core/doctype/package_import/package_import.json
-msgctxt "Package Import"
-msgid "Force"
-msgstr "Sức ảnh hưởng"
-
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the force_re_route_to_default_view (Check) field in DocType
+#. 'DocType'
+#. Label of the force_re_route_to_default_view (Check) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Force Re-route to Default View"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Force Re-route to Default View"
-msgstr ""
-
-#. Label of a Check field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#. Label of the force_show (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Force Show"
-msgstr "Hiển thị sức ảnh hưởng"
+msgstr ""
-#: core/doctype/rq_job/rq_job.js:13
+#: frappe/core/doctype/rq_job/rq_job.js:13
msgid "Force Stop job"
msgstr ""
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the force_user_to_reset_password (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Force User to Reset Password"
-msgstr "Buộc người dùng đặt lại mật khẩu"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the force_web_capture_mode_for_uploads (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Force Web Capture Mode for Uploads"
msgstr ""
-#: www/login.html:35
+#: frappe/www/login.html:37
msgid "Forgot Password?"
-msgstr "Quên mật khẩu?"
-
-#: printing/page/print/print.js:83
-msgid "Form"
msgstr ""
+#. Label of the form_builder_tab (Tab Break) field in DocType 'DocType'
#. Option for the 'Apply To' (Select) field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
-msgid "Form"
-msgstr ""
-
-#. Label of a Tab Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Form"
-msgstr ""
-
-#. Label of a Tab Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Form"
-msgstr ""
-
+#. Label of the form_tab (Tab Break) field in DocType 'Customize Form'
#. Option for the 'View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the form_tab (Tab Break) field in DocType 'Web Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/printing/page/print/print.js:83
+#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr ""
-#. Label of a Tab Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Form"
-msgstr ""
-
-#. Label of a HTML field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the form_builder (HTML) field in DocType 'DocType'
+#. Label of the form_builder (HTML) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Form Builder"
msgstr ""
-#. Label of a HTML field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Form Builder"
-msgstr ""
-
-#. Label of a Code field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#. Label of the form_dict (Code) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
msgid "Form Dict"
msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the form_settings_section (Section Break) field in DocType
+#. 'DocType'
+#. Label of the form_settings_section (Section Break) field in DocType 'User'
+#. Label of the form_settings_section (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the form_settings_section (Section Break) field in DocType 'Web
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json frappe/core/doctype/user/user.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/website/doctype/web_form/web_form.json
msgid "Form Settings"
-msgstr "Cài đặt biểu mẫu"
-
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Form Settings"
-msgstr "Cài đặt biểu mẫu"
-
-#. Label of a Section Break field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
-msgid "Form Settings"
-msgstr "Cài đặt biểu mẫu"
-
-#. Name of a DocType
-#: desk/doctype/form_tour/form_tour.json
-msgid "Form Tour"
msgstr ""
-#. Label of a Link field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Name of a DocType
+#. Label of the form_tour (Link) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Form Tour"
msgstr ""
#. Name of a DocType
-#: desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Form Tour Step"
msgstr ""
#. Option for the 'Request Structure' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Form URL-Encoded"
-msgstr "Mẫu mã hóa URL"
+msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:528
+#. Label of the format (Data) field in DocType 'Workspace Shortcut'
+#. Label of the format (Select) field in DocType 'Auto Email Report'
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:552
msgid "Format"
-msgstr "định dạng"
+msgstr ""
-#. Label of a Select field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Format"
-msgstr "định dạng"
-
-#. Label of a Data field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Format"
-msgstr "định dạng"
-
-#. Label of a Code field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the format_data (Code) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Format Data"
-msgstr "Định dạng dữ liệu"
+msgstr ""
-#: core/doctype/communication/communication.js:70
+#: frappe/core/doctype/communication/communication.js:70
msgid "Forward"
-msgstr "Ở đằng trước"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the 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 "Chuyển tiếp tới địa chỉ email"
+msgstr ""
-#. Label of a Data field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the fraction (Data) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
msgid "Fraction"
-msgstr "Phần"
+msgstr ""
-#. Label of a Int field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the fraction_units (Int) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
msgid "Fraction Units"
-msgstr "Các đơn vị của phần"
-
-#: www/login.html:61 www/login.html:142 www/login.py:44 www/login.py:134
-msgid "Frappe"
-msgstr "sinh tố"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/www/login.html:64 frappe/www/login.html:162 frappe/www/login.py:53
+#: frappe/www/login.py:149
msgid "Frappe"
-msgstr "sinh tố"
+msgstr ""
-#: public/js/frappe/ui/toolbar/about.js:4
+#: frappe/public/js/frappe/ui/toolbar/about.js:4
msgid "Frappe Framework"
-msgstr "Khung Frappe"
+msgstr ""
-#: public/js/frappe/ui/theme_switcher.js:59
+#: frappe/public/js/frappe/ui/theme_switcher.js:59
msgid "Frappe Light"
msgstr ""
+#. Option for the 'Service' (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Frappe Mail"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:549
+msgid "Frappe Mail OAuth Error"
+msgstr ""
+
+#. Label of the frappe_mail_site (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Frappe Mail Site"
+msgstr ""
+
#. Label of a standard help item
-#. Type: Action
-#: hooks.py
+#. Type: Route
+#: frappe/hooks.py
msgid "Frappe Support"
msgstr ""
-#: public/js/frappe/utils/common.js:395
-msgid "Frequency"
-msgstr "Tần số"
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "Frappe page builder using components"
+msgstr ""
-#. Label of a Select field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Frequency"
-msgstr "Tần số"
+#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:112
+msgctxt "Image Cropper"
+msgid "Free"
+msgstr ""
-#. Label of a Select field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. 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'
+#. Label of the frequency (Select) field in DocType 'Google Drive'
+#: 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/integrations/doctype/google_drive/google_drive.json
+#: frappe/public/js/frappe/utils/common.js:395
msgid "Frequency"
-msgstr "Tần số"
-
-#. Label of a Select field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Frequency"
-msgstr "Tần số"
-
-#. Label of a Select field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Frequency"
-msgstr "Tần số"
-
-#. Label of a Select field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Frequency"
-msgstr "Tần số"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Friday"
-msgstr "Thứ sáu"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Friday"
-msgstr "Thứ sáu"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Friday"
-msgstr "Thứ sáu"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Friday"
-msgstr "Thứ sáu"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the friday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Friday"
-msgstr "Thứ sáu"
+msgstr ""
-#: public/js/frappe/views/communication.js:170
-#: public/js/frappe/views/inbox/inbox_view.js:70
+#. Label of the sender (Data) field in DocType 'Communication'
+#. Label of the from_section (Section Break) field in DocType 'Newsletter'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/permission_log/permission_log.js:12
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
-msgstr "Từ"
+msgstr ""
-#. Label of a Data field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/public/js/frappe/views/communication.js:194
+msgctxt "Email Sender"
msgid "From"
-msgstr "Từ"
+msgstr ""
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "From"
-msgstr "Từ"
-
-#: website/report/website_analytics/website_analytics.js:8
+#. Label of the from_date (Date) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/website/report/website_analytics/website_analytics.js:8
msgid "From Date"
-msgstr "Từ ngày"
+msgstr ""
-#. Label of a Date field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "From Date"
-msgstr "Từ ngày"
-
-#. Label of a Select field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the from_date_field (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "From Date Field"
-msgstr "Từ trường ngày"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1672
+#: frappe/public/js/frappe/views/reports/query_report.js:1777
msgid "From Document Type"
-msgstr "Từ loại tài liệu"
+msgstr ""
-#. Label of a Data field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the sender_full_name (Data) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "From Full Name"
-msgstr "Từ Tên đầy đủ"
+msgstr ""
-#. Label of a Link field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#. Label of the from_user (Link) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "From User"
-msgstr "Từ người dùng"
+msgstr ""
-#: public/js/frappe/utils/diffview.js:30
+#: frappe/public/js/frappe/utils/diffview.js:31
msgid "From version"
msgstr ""
#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link'
-#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json
-msgctxt "Dashboard Chart Link"
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
msgid "Full"
-msgstr "Đầy"
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:464 templates/signup.html:4
+#. Label of the full_name (Data) field in DocType 'Contact'
+#. Label of the full_name (Data) field in DocType 'Activity Log'
+#. Label of the full_name (Data) field in DocType 'User'
+#. Label of the full_name (Data) field in DocType 'About Us Team Member'
+#. Label of the full_name (Data) field in DocType 'Blogger'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/user/user.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:479
+#: frappe/templates/signup.html:4
+#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
+#: frappe/website/doctype/blogger/blogger.json
msgid "Full Name"
-msgstr "Tên đầy đủ"
+msgstr ""
-#. Label of a Data field in DocType 'About Us Team Member'
-#: website/doctype/about_us_team_member/about_us_team_member.json
-msgctxt "About Us Team Member"
-msgid "Full Name"
-msgstr "Tên đầy đủ"
-
-#. Label of a Data field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Full Name"
-msgstr "Tên đầy đủ"
-
-#. Label of a Data field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
-msgid "Full Name"
-msgstr "Tên đầy đủ"
-
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Full Name"
-msgstr "Tên đầy đủ"
-
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Full Name"
-msgstr "Tên đầy đủ"
-
-#: printing/page/print/print.js:67
+#: frappe/printing/page/print/print.js:67
+#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
-msgstr "Trang đầy đủ"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the full_width (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Full Width"
-msgstr "Chiều rộng đầy đủ"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:245
-#: public/js/frappe/widgets/widget_dialog.js:666
+#. Label of the function (Select) field in DocType 'Number Card'
+#. Label of the report_function (Select) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/views/reports/query_report.js:247
+#: frappe/public/js/frappe/widgets/widget_dialog.js:686
msgid "Function"
-msgstr "Chức năng"
+msgstr ""
-#. Label of a Select field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Function"
-msgstr "Chức năng"
-
-#: public/js/frappe/widgets/widget_dialog.js:673
+#: frappe/public/js/frappe/widgets/widget_dialog.js:693
msgid "Function Based On"
-msgstr "Chức năng dựa trên"
+msgstr ""
-#: __init__.py:835
+#: frappe/__init__.py:670
msgid "Function {0} is not whitelisted."
msgstr ""
-#: public/js/frappe/views/treeview.js:402
+#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
-msgstr "Các nút khác có thể chỉ có thể tạo ra dưới các nút kiểu 'Nhóm'"
+msgstr ""
-#: core/doctype/communication/communication.js:291
+#: frappe/core/doctype/communication/communication.js:291
msgid "Fw: {0}"
-msgstr "Fw: {0}"
+msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#: frappe/core/doctype/recorder/recorder.json
msgid "GET"
msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "GMail"
-msgstr "GMail"
+msgstr ""
#. Option for the 'License Type' (Select) field in DocType 'Package'
-#: core/doctype/package/package.json
-msgctxt "Package"
+#: frappe/core/doctype/package/package.json
msgid "GNU Affero General Public License"
msgstr ""
#. Option for the 'License Type' (Select) field in DocType 'Package'
-#: core/doctype/package/package.json
-msgctxt "Package"
+#: frappe/core/doctype/package/package.json
msgid "GNU General Public License"
msgstr ""
-#: public/js/frappe/views/gantt/gantt_view.js:10
-msgid "Gantt"
-msgstr "Biểu đồ Gantt"
-
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/public/js/frappe/views/gantt/gantt_view.js:10
msgid "Gantt"
-msgstr "Biểu đồ Gantt"
-
-#. Name of a DocType
-#: contacts/doctype/gender/gender.json
-msgid "Gender"
-msgstr "Giới Tính"
-
-#. Label of a Link field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Gender"
-msgstr "Giới Tính"
-
-#. Label of a Data field in DocType 'Gender'
-#: contacts/doctype/gender/gender.json
-msgctxt "Gender"
-msgid "Gender"
-msgstr "Giới Tính"
-
-#. Label of a Link field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Gender"
-msgstr "Giới Tính"
-
-#. Title of an Onboarding Step
-#: custom/onboarding_step/report_builder/report_builder.json
-msgid "Generate Custom Reports"
msgstr ""
-#. Label of a Button field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: 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 "Tạo khóa"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:803
+#: frappe/public/js/frappe/views/reports/query_report.js:877
msgid "Generate New Report"
-msgstr "Tạo báo cáo mới"
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:366
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:394
msgid "Generate Random Password"
msgstr ""
-#: public/js/frappe/ui/toolbar/toolbar.js:137
-#: public/js/frappe/utils/utils.js:1750
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/utils/utils.js:1787
msgid "Generate Tracking URL"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Geolocation"
-msgstr "Vị trí địa lý"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Geolocation"
-msgstr "Vị trí địa lý"
+#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "Geoapify"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Geolocation"
-msgstr "Vị trí địa lý"
+msgstr ""
-#: email/doctype/notification/notification.js:170
+#. Name of a DocType
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "Geolocation Settings"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.js:219
msgid "Get Alerts for Today"
-msgstr "Đại diện thực cho hôm nay"
+msgstr ""
-#: desk/page/backups/backups.js:19
+#: frappe/desk/page/backups/backups.js:21
msgid "Get Backup Encryption Key"
msgstr ""
-#. Label of a Button field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the get_contacts (Button) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Get Contacts"
-msgstr "Tải danh sách liên hệ"
+msgstr ""
-#: website/doctype/web_form/web_form.js:84
+#: frappe/website/doctype/web_form/web_form.js:93
msgid "Get Fields"
-msgstr "Nhận trường"
+msgstr ""
-#: public/js/frappe/form/multi_select_dialog.js:85
+#: frappe/printing/doctype/letter_head/letter_head.js:32
+msgid "Get Header and Footer wkhtmltopdf variables"
+msgstr ""
+
+#: frappe/public/js/frappe/form/multi_select_dialog.js:86
msgid "Get Items"
-msgstr "Được mục"
+msgstr ""
-#: integrations/doctype/connected_app/connected_app.js:6
+#: frappe/integrations/doctype/connected_app/connected_app.js:6
msgid "Get OpenID Configuration"
msgstr ""
-#: www/printview.html:22
+#: frappe/www/printview.html:22
msgid "Get PDF"
msgstr ""
#. Description of the 'Try a Naming Series' (Data) field in DocType 'Document
#. Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Get a preview of generated names with a series."
msgstr ""
+#: frappe/public/js/frappe/list/list_sidebar.js:305
+msgid "Get more insights with"
+msgstr ""
+
#. Description of the 'Email Threads on Assigned Document' (Check) field in
#. DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Get notified when an email is received on any of the documents assigned to you."
msgstr ""
#. Description of the 'User Image' (Attach Image) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Get your globally recognized avatar from Gravatar.com"
-msgstr "Nhận avatar nhận diện trên toàn cầu của bạn từ Gravatar.com"
+msgstr ""
-#. Label of a Data field in DocType 'Installed Application'
-#: core/doctype/installed_application/installed_application.json
-msgctxt "Installed Application"
+#. Label of the git_branch (Data) field in DocType 'Installed Application'
+#: frappe/core/doctype/installed_application/installed_application.json
msgid "Git Branch"
-msgstr "Chi nhánh Git"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "GitHub"
-msgstr "GitHub"
+msgstr ""
-#: social/doctype/energy_point_settings/energy_point_settings.js:7
-#: social/doctype/energy_point_settings/energy_point_settings.js:14
-msgid "Give Review Points"
-msgstr "Cho điểm đánh giá"
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "Github flavoured markdown syntax"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/global_search_doctype/global_search_doctype.json
+#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json
msgid "Global Search DocType"
-msgstr "Tài liệu tìm kiếm toàn cầu"
+msgstr ""
-#: desk/doctype/global_search_settings/global_search_settings.js:24
+#: frappe/desk/doctype/global_search_settings/global_search_settings.js:24
msgid "Global Search Document Types Reset."
-msgstr "Đặt lại loại tài liệu tìm kiếm toàn cầu."
+msgstr ""
#. Name of a DocType
-#: desk/doctype/global_search_settings/global_search_settings.json
+#: frappe/desk/doctype/global_search_settings/global_search_settings.json
msgid "Global Search Settings"
-msgstr "Cài đặt tìm kiếm toàn cầu"
+msgstr ""
-#: public/js/frappe/ui/keyboard.js:118
+#: frappe/public/js/frappe/ui/keyboard.js:122
msgid "Global Shortcuts"
-msgstr "Phím tắt toàn cầu"
+msgstr ""
-#. Label of a Check field in DocType 'Email Unsubscribe'
-#: email/doctype/email_unsubscribe/email_unsubscribe.json
-msgctxt "Email Unsubscribe"
+#. Label of the global_unsubscribe (Check) field in DocType 'Email Unsubscribe'
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
msgid "Global Unsubscribe"
-msgstr "Hủy đăng ký toàn cầu"
+msgstr ""
-#: desk/page/user_profile/user_profile_controller.js:68
-#: public/js/frappe/form/toolbar.js:767
+#: frappe/public/js/frappe/form/toolbar.js:840
msgid "Go"
-msgstr "Đi"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:246
-#: public/js/frappe/widgets/onboarding_widget.js:326
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:241
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:321
msgid "Go Back"
-msgstr "Quay lại"
+msgstr ""
-#: desk/doctype/notification_settings/notification_settings.js:17
+#: frappe/desk/doctype/notification_settings/notification_settings.js:17
msgid "Go to Notification Settings List"
msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Go to Page"
-msgstr "Đi đến trang"
+msgstr ""
-#: public/js/workflow_builder/workflow_builder.bundle.js:41
+#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:41
msgid "Go to Workflow"
msgstr ""
-#: desk/doctype/workspace/workspace.js:18
+#: frappe/desk/doctype/workspace/workspace.js:18
msgid "Go to Workspace"
msgstr ""
-#: public/js/frappe/form/form.js:144
+#: frappe/public/js/frappe/form/form.js:144
msgid "Go to next record"
-msgstr "Tới bản ghi tiếp theo"
+msgstr ""
-#: public/js/frappe/form/form.js:154
+#: frappe/public/js/frappe/form/form.js:154
msgid "Go to previous record"
-msgstr "Tới bản ghi trước"
+msgstr ""
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:52
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:53
msgid "Go to the document"
-msgstr "Chuyển đến tài liệu"
+msgstr ""
#. Description of the 'Success URL' (Data) field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#: frappe/website/doctype/web_form/web_form.json
msgid "Go to this URL after completing the form"
msgstr ""
-#: core/doctype/doctype/doctype.js:54
-#: custom/doctype/client_script/client_script.js:10
+#: frappe/core/doctype/doctype/doctype.js:54
+#: frappe/custom/doctype/client_script/client_script.js:10
msgid "Go to {0}"
-msgstr "Chuyển đến {0}"
+msgstr ""
-#: core/doctype/data_import/data_import.js:92
-#: core/doctype/doctype/doctype.js:58
-#: custom/doctype/customize_form/customize_form.js:104
-#: custom/doctype/doctype_layout/doctype_layout.js:42
-#: workflow/doctype/workflow/workflow.js:44
+#: frappe/core/doctype/data_import/data_import.js:92
+#: frappe/core/doctype/doctype/doctype.js:55
+#: frappe/custom/doctype/customize_form/customize_form.js:104
+#: frappe/custom/doctype/doctype_layout/doctype_layout.js:42
+#: frappe/workflow/doctype/workflow/workflow.js:44
msgid "Go to {0} List"
-msgstr "Chuyển đến Danh sách {0}"
+msgstr ""
-#: core/doctype/page/page.js:11
+#: frappe/core/doctype/page/page.js:11
msgid "Go to {0} Page"
-msgstr "Chuyển đến trang {0}"
+msgstr ""
-#: utils/goal.py:115 utils/goal.py:122
+#: frappe/utils/goal.py:115 frappe/utils/goal.py:122
msgid "Goal"
-msgstr "Mục tiêu"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Google"
-msgstr "Google"
+msgstr ""
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the google_analytics_id (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Google Analytics ID"
-msgstr "ID Phân tích Google"
+msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the google_analytics_anonymize_ip (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Google Analytics anonymise IP"
msgstr ""
+#. Label of the sb_00 (Section Break) field in DocType 'Event'
+#. Label of the google_calendar (Link) field in DocType 'Event'
#. Name of a DocType
-#: integrations/doctype/google_calendar/google_calendar.json
-msgid "Google Calendar"
-msgstr "lịch Google"
-
-#. Label of a Section Break field in DocType 'Event'
-#. Label of a Link field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Google Calendar"
-msgstr "lịch Google"
-
-#. Label of a Section Break field in DocType 'Google Calendar'
+#. Label of the sb_00 (Section Break) field in DocType 'Google Calendar'
#. Label of a Link in the Integrations Workspace
-#: integrations/doctype/google_calendar/google_calendar.json
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Google Calendar"
+#: frappe/desk/doctype/event/event.json
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Calendar"
-msgstr "lịch Google"
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:781
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:251
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
-msgstr "Lịch Google - Không thể tạo Lịch cho {0}, mã lỗi {1}."
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:575
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:610
msgid "Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}."
-msgstr "Lịch Google - Không thể xóa Sự kiện {0} khỏi Lịch Google, mã lỗi {1}."
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:288
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:305
msgid "Google Calendar - Could not fetch event from Google Calendar, error code {0}."
-msgstr "Lịch Google - Không thể tìm nạp sự kiện từ Lịch Google, mã lỗi {0}."
+msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.py:229
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:252
+msgid "Google Calendar - Could not find Calendar for {0}, error code {1}."
+msgstr ""
+
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:232
msgid "Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}."
-msgstr "Lịch Google - Không thể chèn liên hệ trong Danh bạ Google {0}, mã lỗi {1}."
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:458
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:496
msgid "Google Calendar - Could not insert event in Google Calendar {0}, error code {1}."
-msgstr "Lịch Google - Không thể chèn sự kiện vào Lịch Google {0}, mã lỗi {1}."
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:542
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:580
msgid "Google Calendar - Could not update Event {0} in Google Calendar, error code {1}."
-msgstr "Lịch Google - Không thể cập nhật Sự kiện {0} trong Lịch Google, mã lỗi {1}."
+msgstr ""
-#. Label of a Data field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the google_calendar_event_id (Data) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Google Calendar Event ID"
-msgstr "ID sự kiện lịch Google"
+msgstr ""
-#. Label of a Data field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the google_calendar_id (Data) field in DocType 'Event'
+#. Label of the google_calendar_id (Data) field in DocType 'Google Calendar'
+#: frappe/desk/doctype/event/event.json
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Google Calendar ID"
-msgstr "ID Lịch Google"
+msgstr ""
-#. Label of a Data field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
-msgid "Google Calendar ID"
-msgstr "ID Lịch Google"
-
-#: integrations/doctype/google_calendar/google_calendar.py:166
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:181
msgid "Google Calendar has been configured."
-msgstr "Lịch Google đã được định cấu hình."
+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
-#: integrations/doctype/google_contacts/google_contacts.json
-msgid "Google Contacts"
-msgstr "Danh bạ Google"
-
-#. Label of a Section Break field in DocType 'Contact'
-#. Label of a Link field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Google Contacts"
-msgstr "Danh bạ Google"
-
-#. Label of a Section Break field in DocType 'Google Contacts'
+#. Label of the sb_00 (Section Break) field in DocType 'Google Contacts'
#. Label of a Link in the Integrations Workspace
-#: integrations/doctype/google_contacts/google_contacts.json
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Google Contacts"
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Contacts"
-msgstr "Danh bạ Google"
+msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.py:136
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:137
msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}."
-msgstr "Danh bạ Google - Không thể đồng bộ danh bạ từ Danh bạ Google {0}, mã lỗi {1}."
+msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.py:291
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:294
msgid "Google Contacts - Could not update contact in Google Contacts {0}, error code {1}."
-msgstr "Danh bạ Google - Không thể cập nhật liên hệ trong Danh bạ Google {0}, mã lỗi {1}."
+msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the google_contacts_id (Data) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Google Contacts Id"
-msgstr "Id liên hệ của Google"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/google_drive/google_drive.json
-msgid "Google Drive"
-msgstr "Google Drive"
-
-#. Label of a Section Break field in DocType 'Google Drive'
+#. Label of the google_drive_section (Section Break) field in DocType 'Google
+#. Drive'
#. Label of a Link in the Integrations Workspace
-#: integrations/doctype/google_drive/google_drive.json
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Google Drive"
+#: frappe/integrations/doctype/google_drive/google_drive.json
+#: frappe/integrations/workspace/integrations/integrations.json
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
-msgstr "Google Drive"
+msgstr ""
-#: integrations/doctype/google_drive/google_drive.py:118
+#: frappe/integrations/doctype/google_drive/google_drive.py:117
msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}"
-msgstr "Google Drive - Không thể tạo thư mục trong Google Drive - Mã lỗi {0}"
+msgstr ""
-#: integrations/doctype/google_drive/google_drive.py:134
+#: frappe/integrations/doctype/google_drive/google_drive.py:132
msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}"
-msgstr "Google Drive - Không thể tìm thấy thư mục trong Google Drive - Mã lỗi {0}"
+msgstr ""
-#: integrations/doctype/google_drive/google_drive.py:196
+#: frappe/integrations/doctype/google_drive/google_drive.py:193
msgid "Google Drive - Could not locate - {0}"
-msgstr "Google Drive - Không thể định vị - {0}"
+msgstr ""
-#: integrations/doctype/google_drive/google_drive.py:207
+#: frappe/integrations/doctype/google_drive/google_drive.py:204
msgid "Google Drive Backup Successful."
-msgstr "Sao lưu Google Drive thành công."
+msgstr ""
-#. Label of a Section Break field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
+#. Label of the section_break_7 (Section Break) field in DocType 'Google
+#. Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Google Drive Picker"
msgstr ""
-#. Label of a Check field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
+#. Label of the google_drive_picker_enabled (Check) field in DocType 'Google
+#. Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Google Drive Picker Enabled"
msgstr ""
-#. Label of a Data field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the font (Data) field in DocType 'Print Format'
+#. Label of the google_font (Data) field in DocType 'Website Theme'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:28
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Google Font"
-msgstr "Phông chữ Google"
+msgstr ""
-#. Label of a Data field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Google Font"
-msgstr "Phông chữ Google"
-
-#. Label of a Data field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the google_meet_link (Small Text) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Google Meet Link"
msgstr ""
#. Label of a Card Break in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Services"
-msgstr "Dịch vụ của Google"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/google_settings/google_settings.json
-msgid "Google Settings"
-msgstr "Cài đặt Google"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Google Settings"
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
-msgstr "Cài đặt Google"
+msgstr ""
-#: utils/csvutils.py:199
+#: frappe/utils/csvutils.py:226
msgid "Google Sheets URL is invalid or not publicly accessible."
-msgstr "URL Google Trang tính không hợp lệ hoặc không thể truy cập công khai."
+msgstr ""
-#: utils/csvutils.py:204
+#: frappe/utils/csvutils.py:231
msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again."
-msgstr "URL Google Trang tính phải kết thúc bằng "gid = {number}". Sao chép và dán URL từ thanh địa chỉ của trình duyệt và thử lại."
+msgstr ""
-#. Label of a HTML field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the google_preview (HTML) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Google Snippet Preview"
-msgstr "Xem trước đoạn mã Google"
+msgstr ""
-#. Label of a Select field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the grant_type (Select) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Grant Type"
-msgstr "Loại trợ cấp"
+msgstr ""
-#: public/js/frappe/form/dashboard.js:34
+#: frappe/public/js/frappe/form/dashboard.js:34
+#: frappe/public/js/frappe/form/templates/form_dashboard.html:10
msgid "Graph"
msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
+#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Gray"
msgstr ""
-#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
-msgid "Gray"
+#: frappe/public/js/frappe/ui/filters/filter.js:23
+msgid "Greater Than"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:25
+msgid "Greater Than Or Equal To"
msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Green"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Green"
msgstr ""
-#: public/js/frappe/ui/keyboard.js:123
+#: 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 a Data field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
+#. Label of the group (Data) field in DocType 'DocType Action'
+#. Label of the group (Data) field in DocType 'DocType Link'
+#. Label of the group (Data) field in DocType 'Website Sidebar Item'
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/core/doctype/doctype_link/doctype_link.json
+#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Group"
-msgstr "Nhóm"
-
-#. Label of a Data field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
-msgid "Group"
-msgstr "Nhóm"
-
-#. Label of a Data field in DocType 'Website Sidebar Item'
-#: website/doctype/website_sidebar_item/website_sidebar_item.json
-msgctxt "Website Sidebar Item"
-msgid "Group"
-msgstr "Nhóm"
-
-#: website/report/website_analytics/website_analytics.js:32
-msgid "Group By"
-msgstr "Nhóm theo"
+msgstr ""
#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/website/report/website_analytics/website_analytics.js:32
msgid "Group By"
-msgstr "Nhóm theo"
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the group_by_based_on (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Group By Based On"
-msgstr "Nhóm dựa trên"
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the group_by_type (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Group By Type"
-msgstr "Nhóm theo loại"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.py:408
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408
msgid "Group By field is required to create a dashboard chart"
-msgstr "Nhóm theo trường là bắt buộc để tạo biểu đồ bảng điều khiển"
+msgstr ""
-#: public/js/frappe/views/treeview.js:401
+#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
-msgstr "Nhóm Node"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
msgstr ""
-#: public/js/frappe/ui/group_by/group_by.js:415
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Group your custom doctypes under modules"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/group_by/group_by.js:425
msgid "Grouped by {0}"
msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#: frappe/core/doctype/recorder/recorder.json
msgid "HEAD"
msgstr ""
+#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "HERE"
+msgstr ""
+
+#. Option for the 'Time Format' (Select) field in DocType 'Language'
#. Option for the 'Time Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "HH:mm"
-msgstr "HH: mm"
+msgstr ""
+#. Option for the 'Time Format' (Select) field in DocType 'Language'
#. Option for the 'Time Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "HH:mm:ss"
-msgstr "HH: mm: ss"
-
-#: printing/doctype/print_format/print_format.py:93
-msgid "HTML"
-msgstr "HTML"
-
-#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "HTML"
-msgstr "HTML"
-
-#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "HTML"
-msgstr "HTML"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "HTML"
-msgstr "HTML"
-
-#. Label of a Section Break field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
-msgid "HTML"
-msgstr "HTML"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "HTML"
-msgstr "HTML"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "HTML"
-msgstr "HTML"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the html_section (Section Break) field in DocType 'Custom HTML
+#. Block'
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
+#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
#. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
-msgid "HTML"
-msgstr "HTML"
-
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "HTML"
-msgstr "HTML"
-
-#. Option for the 'Message Type' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "HTML"
-msgstr "HTML"
-
-#. Label of a Code field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "HTML"
-msgstr "HTML"
-
+#. Label of the html (Code) field in DocType 'Print Format'
+#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "HTML"
-msgstr "HTML"
-
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/public/js/print_format_builder/Field.vue:86
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_page/web_page.js:92
+#: frappe/website/doctype/web_page/web_page.json
msgid "HTML"
-msgstr "HTML"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "HTML Editor"
-msgstr "Trình chỉnh sửa HTML"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "HTML Editor"
-msgstr "Trình chỉnh sửa HTML"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "HTML Editor"
-msgstr "Trình chỉnh sửa HTML"
+msgstr ""
-#. Label of a HTML Editor field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the page (HTML Editor) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
-msgstr "Trang HTML"
+msgstr ""
#. Description of the 'Header' (HTML Editor) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/website/doctype/web_page/web_page.json
msgid "HTML for header section. Optional"
-msgstr "HTML cho phần tiêu đề. Không bắt buộc"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "HTML with jinja support"
+msgstr ""
#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link'
-#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json
-msgctxt "Dashboard Chart Link"
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
msgid "Half"
-msgstr "Một nửa"
+msgstr ""
+#. Option for the 'Repeat On' (Select) field in DocType 'Event'
#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Half Yearly"
-msgstr "Nửa năm"
-
-#: public/js/frappe/utils/common.js:402
-msgid "Half-yearly"
-msgstr "Nửa năm"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/public/js/frappe/utils/common.js:402
msgid "Half-yearly"
-msgstr "Nửa năm"
+msgstr ""
-#. Label of a Check field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the handled_emails (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Handled Emails"
+msgstr ""
+
+#. Label of the has_attachment (Check) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Has Attachment"
-msgstr "có tập tin đính kèm"
+msgstr ""
#. Name of a DocType
-#: core/doctype/has_domain/has_domain.json
+#: frappe/core/doctype/has_domain/has_domain.json
msgid "Has Domain"
-msgstr "Có miền"
+msgstr ""
-#. Label of a Check field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the has_next_condition (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Has Next Condition"
msgstr ""
#. Name of a DocType
-#: core/doctype/has_role/has_role.json
+#: frappe/core/doctype/has_role/has_role.json
msgid "Has Role"
-msgstr "có vai trò"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. 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 "Có thể xem trên web"
+msgstr ""
-#: templates/signup.html:19
+#: frappe/templates/signup.html:19
msgid "Have an account? Login"
-msgstr "Có một tài khoản? Đăng nhập"
+msgstr ""
-#. Label of a Section Break field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the header (Check) field in DocType 'SMS Parameter'
+#. Label of the header_section (Section Break) field in DocType 'Letter Head'
+#. Label of the header (HTML Editor) field in DocType 'Web Page'
+#. Label of the header (HTML Editor) field in DocType 'Website Slideshow'
+#: frappe/core/doctype/sms_parameter/sms_parameter.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Header"
-msgstr "Phần đầu"
+msgstr ""
-#. Label of a Check field in DocType 'SMS Parameter'
-#: core/doctype/sms_parameter/sms_parameter.json
-msgctxt "SMS Parameter"
-msgid "Header"
-msgstr "Phần đầu"
-
-#. Label of a HTML Editor field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Header"
-msgstr "Phần đầu"
-
-#. Label of a HTML Editor field in DocType 'Website Slideshow'
-#: website/doctype/website_slideshow/website_slideshow.json
-msgctxt "Website Slideshow"
-msgid "Header"
-msgstr "Phần đầu"
-
-#. Label of a HTML Editor field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the content (HTML Editor) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Header HTML"
-msgstr "Tiêu đề HTML"
+msgstr ""
-#: printing/doctype/letter_head/letter_head.py:60
+#: frappe/printing/doctype/letter_head/letter_head.py:63
msgid "Header HTML set from attachment {0}"
-msgstr "HTML tiêu đề được đặt từ tệp đính kèm {0}"
+msgstr ""
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. 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 "Header và Breadcrumbs"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the section_break_38 (Tab Break) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Header, Robots"
msgstr ""
-#. Label of a Table field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/printing/doctype/letter_head/letter_head.js:30
+msgid "Header/Footer scripts can be used to add dynamic behaviours."
+msgstr ""
+
+#. Label of the webhook_headers (Table) field in DocType 'Webhook'
+#. Label of the headers (Code) field in DocType 'Webhook Request Log'
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Headers"
-msgstr "Tiêu đề"
-
-#. Label of a Code field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "Headers"
-msgstr "Tiêu đề"
-
-#: printing/page/print_format_builder/print_format_builder.js:602
-msgid "Heading"
-msgstr "Đề mục"
-
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Heading"
-msgstr "Đề mục"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Heading"
-msgstr "Đề mục"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Heading"
-msgstr "Đề mục"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. 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 "Đề mục"
-
-#. Label of a Data field in DocType 'Website Slideshow Item'
-#: website/doctype/website_slideshow_item/website_slideshow_item.json
-msgctxt "Website Slideshow Item"
-msgid "Heading"
-msgstr "Đề mục"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Heatmap"
-msgstr "Bản đồ nhiệt"
+msgstr ""
-#: templates/emails/new_user.html:2
+#: frappe/templates/emails/new_user.html:2
msgid "Hello"
msgstr ""
-#: public/js/frappe/form/workflow.js:23 public/js/frappe/utils/help.js:27
+#. 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 "Trợ giúp"
-
-#. Label of a HTML field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
-msgid "Help"
-msgstr "Trợ giúp"
-
-#. Label of a Section Break field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Help"
-msgstr "Trợ giúp"
+msgstr ""
#. Name of a DocType
-#: website/doctype/help_article/help_article.json
-msgid "Help Article"
-msgstr "Điều khoản trợ giúp"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Help Article"
+#: frappe/website/doctype/help_article/help_article.json
+#: frappe/website/workspace/website/website.json
msgid "Help Article"
-msgstr "Điều khoản trợ giúp"
+msgstr ""
-#. Label of a Int field in DocType 'Help Category'
-#: website/doctype/help_category/help_category.json
-msgctxt "Help Category"
+#. Label of the help_articles (Int) field in DocType 'Help Category'
+#: frappe/website/doctype/help_category/help_category.json
msgid "Help Articles"
-msgstr "Các điều khoản trợ giúp"
+msgstr ""
#. Name of a DocType
-#: website/doctype/help_category/help_category.json
-msgid "Help Category"
-msgstr "Phân loại trợ giúp"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Help Category"
+#: frappe/website/doctype/help_category/help_category.json
+#: frappe/website/workspace/website/website.json
msgid "Help Category"
-msgstr "Phân loại trợ giúp"
+msgstr ""
-#. Label of a Table field in DocType 'Navbar Settings'
-#: core/doctype/navbar_settings/navbar_settings.json
-msgctxt "Navbar Settings"
+#. Label of the help_dropdown (Table) field in DocType 'Navbar Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:84
msgid "Help Dropdown"
-msgstr "Trợ giúp thả xuống"
+msgstr ""
-#. Label of a HTML field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the help_html (HTML) field in DocType 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Help HTML"
-msgstr "Giúp đỡ HTML"
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:149
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:149
msgid "Help on Search"
-msgstr "Giúp đỡ về Tìm kiếm"
+msgstr ""
#. Description of the 'Content' (Text Editor) field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
+#: frappe/desk/doctype/note/note.json
msgid "Help: To link to another record in the system, use \"/app/note/[Note Name]\" as the Link URL. (don't use \"http://\")"
msgstr ""
-#. Label of a Int field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
+#. Label of the helpful (Int) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
msgid "Helpful"
msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Helvetica"
-msgstr "Helvetica"
+msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Helvetica Neue"
msgstr ""
-#: public/js/frappe/utils/utils.js:1747
+#: frappe/public/js/frappe/utils/utils.js:1784
msgid "Here's your tracking URL"
msgstr ""
-#: www/qrcode.html:9
+#: frappe/www/qrcode.html:9
msgid "Hi {0}"
-msgstr "Xin chào {0}"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the hidden (Check) field in DocType 'DocField'
+#. Label of the hidden (Check) field in DocType 'DocType Action'
+#. Label of the hidden (Check) field in DocType 'DocType Link'
+#. Label of the hidden (Check) field in DocType 'Navbar Item'
+#. Label of the hidden (Check) field in DocType 'Custom Field'
+#. Label of the hidden (Check) field in DocType 'Customize Form Field'
+#. Label of the hidden (Check) field in DocType 'Desktop Icon'
+#. Label of the hidden (Check) field in DocType 'Workspace Link'
+#. Label of the hidden (Check) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/core/doctype/doctype_link/doctype_link.json
+#: frappe/core/doctype/navbar_item/navbar_item.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/printing/page/print_format_builder/print_format_builder_field.html:3
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Hidden"
-msgstr "Ẩn"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Hidden"
-msgstr "Ẩn"
-
-#. Label of a Check field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Hidden"
-msgstr "Ẩn"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Hidden"
-msgstr "Ẩn"
-
-#. Label of a Check field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
-msgid "Hidden"
-msgstr "Ẩn"
-
-#. Label of a Check field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
-msgid "Hidden"
-msgstr "Ẩn"
-
-#. Label of a Check field in DocType 'Navbar Item'
-#: core/doctype/navbar_item/navbar_item.json
-msgctxt "Navbar Item"
-msgid "Hidden"
-msgstr "Ẩn"
-
-#. Label of a Check field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Hidden"
-msgstr "Ẩn"
-
-#. Label of a Check field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
-msgid "Hidden"
-msgstr "Ẩn"
-
-#. Label of a Section Break field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the section_break_13 (Section Break) field in DocType 'Form Tour
+#. Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Hidden Fields"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:814
-#: public/js/frappe/widgets/base_widget.js:46
-#: public/js/frappe/widgets/base_widget.js:176
-msgid "Hide"
-msgstr "Ẩn giấu"
-
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/frappe/widgets/base_widget.js:46
+#: frappe/public/js/frappe/widgets/base_widget.js:178
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
+#: frappe/templates/includes/login/login.js:82
msgid "Hide"
-msgstr "Ẩn giấu"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the hide_block (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Hide Block"
-msgstr "Ẩn khối"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the hide_border (Check) field in DocType 'DocField'
+#. Label of the hide_border (Check) field in DocType 'Custom Field'
+#. Label of the hide_border (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Border"
-msgstr "Ẩn đường viền"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Hide Border"
-msgstr "Ẩn đường viền"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Hide Border"
-msgstr "Ẩn đường viền"
-
-#. Label of a Check field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the hide_buttons (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Hide Buttons"
msgstr ""
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the hide_cta (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Hide CTA"
-msgstr "Ẩn CTA"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the allow_copy (Check) field in DocType 'DocType'
+#. Label of the allow_copy (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Hide Copy"
-msgstr "Ẩn sao chép"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Hide Copy"
-msgstr "Ẩn sao chép"
-
-#. Label of a Check field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the hide_custom (Check) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Hide Custom DocTypes and Reports"
-msgstr "Ẩn các loại tài liệu và báo cáo tùy chỉnh"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the hide_days (Check) field in DocType 'DocField'
+#. Label of the hide_days (Check) field in DocType 'Custom Field'
+#. Label of the hide_days (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Days"
-msgstr "Ẩn ngày"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Hide Days"
-msgstr "Ẩn ngày"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Hide Days"
-msgstr "Ẩn ngày"
-
-#: core/doctype/user_permission/user_permission_list.js:96
+#. Label of the hide_descendants (Check) field in DocType 'User Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:96
msgid "Hide Descendants"
msgstr ""
-#. Label of a Check field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
-msgid "Hide Descendants"
+#. Label of the hide_empty_read_only_fields (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Hide Empty Read-Only Fields"
msgstr ""
-#: www/error.html:41 www/error.html:56
+#: frappe/www/error.html:62
msgid "Hide Error"
msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Hide Login"
-msgstr "Ẩn thông tin đăng nhập"
+#: frappe/printing/page/print_format_builder/print_format_builder.js:488
+msgid "Hide Label"
+msgstr ""
-#: public/js/form_builder/form_builder.bundle.js:43
-#: public/js/print_format_builder/print_format_builder.bundle.js:54
+#. Label of the hide_login (Check) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Hide Login"
+msgstr ""
+
+#: frappe/public/js/form_builder/form_builder.bundle.js:43
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54
msgid "Hide Preview"
msgstr ""
#. Description of the 'Hide Buttons' (Check) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Hide Previous, Next and Close button on highlight dialog."
msgstr ""
-#: public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:94
msgid "Hide Saved"
msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the hide_seconds (Check) field in DocType 'DocField'
+#. Label of the hide_seconds (Check) field in DocType 'Custom Field'
+#. Label of the hide_seconds (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Seconds"
-msgstr "Ẩn Giây"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Hide Seconds"
-msgstr "Ẩn Giây"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Hide Seconds"
-msgstr "Ẩn Giây"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the hide_toolbar (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Hide Sidebar, Menu, and Comments"
msgstr ""
-#. Label of a Check field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the hide_standard_menu (Check) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Hide Standard Menu"
-msgstr "Hide chuẩn đơn"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1566
+#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Hide Tags"
msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:184
+#: frappe/public/js/frappe/views/calendar/calendar.js:179
msgid "Hide Weekends"
-msgstr "Ẩn các ngày cuối tuần"
-
-#: public/js/frappe/views/workspace/workspace.js:815
-msgid "Hide Workspace"
msgstr ""
#. Description of the 'Hide Descendants' (Check) field in DocType 'User
#. Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
+#: frappe/core/doctype/user_permission/user_permission.json
msgid "Hide descendant records of For Value."
msgstr ""
-#: public/js/frappe/form/layout.js:260
+#: frappe/public/js/frappe/form/layout.js:286
msgid "Hide details"
-msgstr "Ẩn chi tiết"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. 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 "Ẩn chân trang trong báo cáo email tự động"
+msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the hide_footer_signup (Check) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Hide footer signup"
msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:198
-msgid "High"
-msgstr "Cao"
+#. Label of the hide_navbar (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Hide navbar"
+msgstr ""
#. Option for the 'Priority' (Select) field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:225
msgid "High"
-msgstr "Cao"
+msgstr ""
#. Description of the 'Priority' (Int) field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Higher priority rule will be applied first"
-msgstr "Quy tắc ưu tiên cao hơn sẽ được áp dụng đầu tiên"
+msgstr ""
-#. Label of a Text field in DocType 'Company History'
-#: website/doctype/company_history/company_history.json
-msgctxt "Company History"
+#. Label of the highlight (Text) field in DocType 'Company History'
+#: frappe/website/doctype/company_history/company_history.json
msgid "Highlight"
-msgstr "Điểm nổi bật"
+msgstr ""
-#: www/update-password.html:271
+#: frappe/www/update-password.html:276
msgid "Hint: Include symbols, numbers and capital letters in the password"
-msgstr "Gợi ý: Bao gồm các ký hiệu, số và chữ hoa trong mật khẩu"
+msgstr ""
-#: core/doctype/file/utils.py:31 public/js/frappe/views/file/file_view.js:67
-#: public/js/frappe/views/file/file_view.js:88
-#: public/js/frappe/views/pageview.js:149 templates/doc.html:19
-#: templates/includes/navbar/navbar.html:9
-#: website/doctype/blog_post/blog_post.py:153
-#: website/doctype/blog_post/blog_post.py:265
-#: website/doctype/blog_post/blog_post.py:267
-#: website/web_template/primary_navbar/primary_navbar.html:9 www/contact.py:22
-#: www/error.html:30 www/login.html:150 www/message.html:34
+#. Label of the home_tab (Tab Break) field in DocType 'Website Settings'
+#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:38
+#: frappe/public/js/frappe/views/file/file_view.js:67
+#: frappe/public/js/frappe/views/file/file_view.js:88
+#: frappe/public/js/frappe/views/pageview.js:153 frappe/templates/doc.html:19
+#: frappe/templates/includes/navbar/navbar.html:9
+#: frappe/website/doctype/blog_post/blog_post.py:159
+#: frappe/website/doctype/blog_post/blog_post.py:271
+#: frappe/website/doctype/blog_post/blog_post.py:273
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
+#: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76
+#: frappe/www/message.html:29
msgid "Home"
-msgstr "Trang Chủ"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Home"
-msgstr "Trang Chủ"
-
-#. Label of a Data field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the home_page (Data) field in DocType 'Role'
+#. Label of the home_page (Data) field in DocType 'Website Settings'
+#: frappe/core/doctype/role/role.json
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Home Page"
-msgstr "Trang chủ"
+msgstr ""
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Home Page"
-msgstr "Trang chủ"
-
-#. Label of a Code field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the home_settings (Code) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Home Settings"
-msgstr "Cài đặt nhà"
+msgstr ""
-#: core/doctype/file/test_file.py:299 core/doctype/file/test_file.py:301
-#: core/doctype/file/test_file.py:365
+#: frappe/core/doctype/file/test_file.py:330
+#: frappe/core/doctype/file/test_file.py:332
+#: frappe/core/doctype/file/test_file.py:396
msgid "Home/Test Folder 1"
-msgstr "Trang chủ / kiểm tra thư mục 1"
+msgstr ""
-#: core/doctype/file/test_file.py:354
+#: frappe/core/doctype/file/test_file.py:385
msgid "Home/Test Folder 1/Test Folder 3"
-msgstr "Trang chủ / Kiểm tra Thư mục 1 / Kiểm tra thư mục 3"
+msgstr ""
-#: core/doctype/file/test_file.py:310
+#: frappe/core/doctype/file/test_file.py:341
msgid "Home/Test Folder 2"
-msgstr "Trang chủ / kiểm tra Thư mục 2"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Hourly"
-msgstr "Hàng giờ"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Hourly"
-msgstr "Hàng giờ"
-
#. Option for the 'Frequency' (Select) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/doctype/user/user.json
msgid "Hourly"
-msgstr "Hàng giờ"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Hourly Long"
-msgstr "Hàng giờ dài"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Hourly Long"
-msgstr "Hàng giờ dài"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+msgid "Hourly Maintenance"
+msgstr ""
#. Description of the 'Password Reset Link Generation Limit' (Int) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Hourly rate limit for generating password reset links"
-msgstr "Giới hạn tốc độ hàng giờ để tạo liên kết đặt lại mật khẩu"
+msgstr ""
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
-msgstr "Loại tiền tệ này được định dạng ra sao ? Nếu không thiết lập, hệ thống sẽ quay về mặc định"
+msgstr ""
-#: core/doctype/data_import/importer.py:1120
-#: core/doctype/data_import/importer.py:1126
-#: core/doctype/data_import/importer.py:1192
-#: core/doctype/data_import/importer.py:1195 desk/report/todo/todo.py:36
-#: model/__init__.py:137 model/meta.py:45
-#: public/js/frappe/data_import/data_exporter.js:326
-#: public/js/frappe/data_import/data_exporter.js:341
-#: public/js/frappe/list/list_view.js:355
-#: public/js/frappe/list/list_view.js:419 public/js/frappe/model/meta.js:197
-#: public/js/frappe/model/model.js:112
+#. Paragraph text in the Welcome Workspace Workspace
+#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
+msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:1171
+#: frappe/core/doctype/data_import/importer.py:1177
+#: frappe/core/doctype/data_import/importer.py:1242
+#: frappe/core/doctype/data_import/importer.py:1245
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:50
+#: frappe/public/js/frappe/data_import/data_exporter.js:330
+#: frappe/public/js/frappe/data_import/data_exporter.js:345
+#: frappe/public/js/frappe/list/list_settings.js:337
+#: frappe/public/js/frappe/list/list_view.js:383
+#: frappe/public/js/frappe/list/list_view.js:447
+#: frappe/public/js/frappe/model/meta.js:200
+#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
-msgstr "ID"
+msgstr ""
-#: desk/reportview.py:418 public/js/frappe/views/reports/report_view.js:920
+#: frappe/desk/reportview.py:491
+#: frappe/public/js/frappe/views/reports/report_view.js:978
msgctxt "Label of name column in report"
msgid "ID"
-msgstr "ID"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:169
+msgid "ID (name)"
+msgstr ""
#. Description of the 'Field Name' (Data) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "ID (name) of the entity whose property is to be set"
-msgstr "ID (tên) của đơn vị có tài sản được thiết lập"
+msgstr ""
#. Description of the 'Section ID' (Data) field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "IDs must contain only alphanumeric characters, not contain spaces, and should be unique."
msgstr ""
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the section_break_25 (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "IMAP Details"
msgstr ""
+#. Label of the imap_folder (Data) field in DocType 'Communication'
+#. Label of the imap_folder (Table) field in DocType 'Email Account'
#. Name of a DocType
-#: email/doctype/imap_folder/imap_folder.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "IMAP Folder"
msgstr ""
-#. Label of a Data field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "IMAP Folder"
-msgstr ""
-
-#. Label of a Table field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "IMAP Folder"
-msgstr ""
-
-#. Label of a Data field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. Label of the ip_address (Data) field in DocType 'Activity Log'
+#. Label of the ip_address (Data) field in DocType 'Comment'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/comment/comment.json
msgid "IP Address"
-msgstr "Địa chỉ IP"
-
-#. Label of a Data field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "IP Address"
-msgstr "Địa chỉ IP"
-
-#: public/js/frappe/views/workspace/workspace.js:632
-#: public/js/frappe/views/workspace/workspace.js:960
-#: public/js/frappe/views/workspace/workspace.js:1205
-msgid "Icon"
-msgstr "Biểu tượng"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Icon"
-msgstr "Biểu tượng"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Icon"
-msgstr "Biểu tượng"
-
-#. Label of a Data field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Icon"
-msgstr "Biểu tượng"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "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 "Biểu tượng"
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Icon"
-msgstr "Biểu tượng"
-
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Icon"
-msgstr "Biểu tượng"
-
-#. Label of a Select field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "Icon"
-msgstr "Biểu tượng"
-
-#. Label of a Icon field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Icon"
-msgstr "Biểu tượng"
-
-#. Label of a Data field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
-msgid "Icon"
-msgstr "Biểu tượng"
-
-#. Label of a Data field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Icon"
-msgstr "Biểu tượng"
+msgstr ""
#. Description of the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon will appear on the button"
-msgstr "Biểu tượng sẽ xuất hiện trên nút"
+msgstr ""
-#. Label of a Section Break field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the sb_identity_details (Section Break) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Identity Details"
-msgstr "Thông tin Nhận dạng"
+msgstr ""
-#. Label of a Int field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#. Label of the idx (Int) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Idx"
-msgstr "Idx"
+msgstr ""
#. Description of the 'Apply Strict User Permissions' (Check) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User"
-msgstr "Nếu Áp dụng Quyền Người Sử Dụng Nghiêm Trọng được kiểm tra và Quyền của Người Dùng được định nghĩa cho một DocType cho Người dùng, thì tất cả các tài liệu có giá trị của liên kết trống, sẽ không được hiển thị cho Người dùng đó"
+msgstr ""
#. Description of the 'Don't Override Status' (Check) field in DocType
#. 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
-msgid "If Checked workflow status will not override status in list view"
-msgstr "Nếu tình trạng công việc đã được kiểm tra sẽ không ghi đè lên trạng thái trong danh sách"
-
#. Description of the 'Don't Override Status' (Check) field in DocType
#. 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#: frappe/workflow/doctype/workflow/workflow.json
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "If Checked workflow status will not override status in list view"
-msgstr "Nếu tình trạng công việc đã được kiểm tra sẽ không ghi đè lên trạng thái trong danh sách"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1706
+#: frappe/core/doctype/doctype/doctype.py:1763
+#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
+#: frappe/public/js/frappe/roles_editor.js:66
msgid "If Owner"
-msgstr "Nếu chủ"
+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'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "If checked, all other workflows become inactive."
-msgstr "Nếu được kiểm tra, tất cả các công việc khác trở nên không hoạt động."
+msgstr ""
#. Description of the 'Show Absolute Values' (Check) field in DocType 'Print
#. Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/printing/doctype/print_format/print_format.json
msgid "If checked, negative numeric values of Currency, Quantity or Count would be shown as positive"
msgstr ""
#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
#. Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "If checked, users will not see the Confirm Access dialog."
-msgstr "Nếu được kiểm tra, người dùng sẽ không thấy hộp thoại xác nhận truy cập."
+msgstr ""
#. Description of the 'Disabled' (Check) field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#: frappe/core/doctype/role/role.json
msgid "If disabled, this role will be removed from all users."
-msgstr "Nếu vô hiệu hóa, vai trò này sẽ được gỡ bỏ khỏi tất cả người dùng."
+msgstr ""
#. Description of the 'Bypass Restricted IP Address Check If Two Factor Auth
#. Enabled' (Check) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings"
-msgstr "Nếu được bật, người dùng có thể đăng nhập từ bất kỳ Địa chỉ IP nào bằng Xác thực hai yếu tố, điều này cũng có thể được đặt cho tất cả người dùng trong Cài đặt hệ thống"
+msgstr ""
+
+#. Description of the 'Anonymous responses' (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "If enabled, all responses on the web form will be submitted anonymously"
+msgstr ""
#. Description of the 'Bypass restricted IP Address check If Two Factor Auth
#. Enabled' (Check) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page"
-msgstr "Nếu được bật, tất cả người dùng có thể đăng nhập từ bất kỳ Địa chỉ IP nào bằng cách sử dụng Xác thực hai yếu tố. Điều này cũng có thể được thiết lập chỉ dành cho người dùng cụ thể trong trang người dùng"
+msgstr ""
#. Description of the 'Track Changes' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "If enabled, changes to the document are tracked and shown in timeline"
-msgstr "Nếu được bật, các thay đổi đối với tài liệu sẽ được theo dõi và hiển thị trong dòng thời gian"
+msgstr ""
#. Description of the 'Track Views' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "If enabled, document views are tracked, this can happen multiple times"
-msgstr "Nếu được bật, chế độ xem tài liệu được theo dõi, điều này có thể xảy ra nhiều lần"
+msgstr ""
#. Description of the 'Track Seen' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "If enabled, the document is marked as seen, the first time a user opens it"
-msgstr "Nếu được bật, tài liệu được đánh dấu là đã thấy, lần đầu tiên người dùng mở nó"
+msgstr ""
#. Description of the 'Send System Notification' (Check) field in DocType
#. 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "If enabled, the notification will show up in the notifications dropdown on the top right corner of the navigation bar."
-msgstr "Nếu được bật, thông báo sẽ hiển thị trong menu thả xuống thông báo ở góc trên cùng bên phải của thanh điều hướng."
+msgstr ""
#. Description of the 'Enable Password Policy' (Check) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong."
-msgstr "Nếu được bật, độ mạnh của mật khẩu sẽ được thi hành dựa trên giá trị điểm mật khẩu tối thiểu. một giá trị bằng 2 trở nên mạnh ở mức trung bình và bằng 4 là rất mạnh"
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 1 being very weak and 4 being very strong."
+msgstr ""
#. Description of the 'Bypass Two Factor Auth for users who login from
#. restricted IP Address' (Check) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth"
-msgstr "Nếu được bật, người dùng đăng nhập từ Địa chỉ IP bị hạn chế sẽ không được nhắc về Xác thực hai yếu tố"
+msgstr ""
#. Description of the 'Notify Users On Every Login' (Check) field in DocType
#. 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
+#: frappe/desk/doctype/note/note.json
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
-msgstr "Nếu được bật, người dùng sẽ được thông báo mỗi khi họ đăng nhập. Nếu không được kích hoạt, người dùng sẽ chỉ được thông báo một lần."
+msgstr ""
+
+#. Description of the 'Backup Path' (Data) field in DocType 'S3 Backup
+#. Settings'
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
+msgid "If it's empty, it will backup to the root of the bucket."
+msgstr ""
+
+#. Description of the 'Default Workspace' (Link) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "If left empty, the default workspace will be the last visited workspace"
+msgstr ""
#. Description of the 'Port' (Data) field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "If non standard port (e.g. 587)"
-msgstr "Nếu cổng phi tiêu chuẩn (ví dụ 587)"
+msgstr ""
#. Description of the 'Port' (Data) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "If non standard port (e.g. 587). If on Google Cloud, try port 2525."
-msgstr "Nếu cổng không chuẩn (ví dụ 587). Nếu trên Google Cloud, hãy thử cổng 2525."
+msgstr ""
#. Description of the 'Port' (Data) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)"
-msgstr "Nếu cổng không chuẩn (ví dụ: POP3: 995/110, IMAP: 993/143)"
-
#. Description of the 'Port' (Data) field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)"
-msgstr "Nếu cổng không chuẩn (ví dụ: POP3: 995/110, IMAP: 993/143)"
+msgstr ""
#. Description of the 'Currency Precision' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "If not set, the currency precision will depend on number format"
-msgstr "Nếu không được đặt, độ chính xác tiền tệ sẽ phụ thuộc vào định dạng số"
+msgstr ""
#. Description of the 'Roles' (Table) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used."
msgstr ""
-#. Description of the 'Condition' (Code) field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed'\n"
-msgstr ""
-
#. Description of the 'User Type' (Link) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop"
-msgstr "Nếu người dùng có bất kỳ vai trò nào được kiểm tra, sau đó người dùng sẽ trở thành một \"người dùng hệ thống\". \"Người dùng hệ thống\" có quyền truy cập vào các máy tính để bàn"
-
-#. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom
-#. Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "If unchecked, the value will always be re-fetched on save."
msgstr ""
-#. Description of the 'Fetch on Save if Empty' (Check) field in DocType
-#. 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "If unchecked, the value will always be re-fetched on save."
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
msgstr ""
#. Description of the 'Fetch on Save if Empty' (Check) field in DocType
#. 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom
+#. Field'
+#. Description of the 'Fetch on Save if Empty' (Check) field in DocType
+#. 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "If unchecked, the value will always be re-fetched on save."
msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
+#. Label of the if_owner (Check) field in DocType 'Custom DocPerm'
+#. Label of the if_owner (Check) field in DocType 'DocPerm'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
msgid "If user is the owner"
-msgstr "Nếu người dùng là chủ sở hữu"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "If user is the owner"
-msgstr "Nếu người dùng là chủ sở hữu"
-
-#: core/doctype/data_export/exporter.py:206
-msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted."
-msgstr "Nếu bạn đang chờ cập nhật, vui lòng chọn \"Overwrite\" hàng khác hiện tại sẽ không bị xóa."
-
-#: core/doctype/data_export/exporter.py:190
-msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present."
-msgstr "Nếu bạn đang tải lên bản ghi mới, \"Đặt tên Series\" trở thành bắt buộc, nếu có."
-
-#: core/doctype/data_export/exporter.py:187
-msgid "If you are uploading new records, leave the \"name\" (ID) column blank."
-msgstr "Nếu bạn đang tải lên bản ghi mới, để trống \"tên\" (ID) cột trống"
-
-#: utils/password.py:200
-msgid "If you have recently restored the site you may need to copy the site config contaning original Encryption Key."
msgstr ""
-#: core/doctype/doctype/doctype.js:80
-msgid "If you just want to customize for your site, use {0} instead."
+#: frappe/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/utils/password.py:214
+msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key."
msgstr ""
#. Description of the 'Parent Label' (Select) field in DocType 'Top Bar Item'
-#: website/doctype/top_bar_item/top_bar_item.json
-msgctxt "Top Bar Item"
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "If you set this, this Item will come in a drop-down under the selected parent."
-msgstr "Nếu bạn thiết lập này, khoản này sẽ đến trong một thả xuống dưới mẫu gốc được lựa chọn."
+msgstr ""
-#: templates/emails/administrator_logged_in.html:3
+#: frappe/templates/emails/administrator_logged_in.html:3
msgid "If you think this is unauthorized, please change the Administrator password."
-msgstr "Nếu bạn nghĩ rằng điều này là không được phép, hãy thay đổi mật khẩu quản trị."
+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'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
+#: frappe/core/doctype/translation/translation.json
msgid "If your data is in HTML, please copy paste the exact HTML code with the tags."
-msgstr "Nếu dữ liệu của bạn trong HTML, hãy sao chép và dán mã HTML chính xác với các thẻ."
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the ignore_user_permissions (Check) field in DocType 'DocField'
+#. Label of the ignore_user_permissions (Check) field in DocType 'Custom Field'
+#. Label of the ignore_user_permissions (Check) field in DocType 'Customize
+#. Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Ignore User Permissions"
-msgstr "Bỏ qua tài Quyền"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Ignore User Permissions"
-msgstr "Bỏ qua tài Quyền"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Ignore User Permissions"
-msgstr "Bỏ qua tài Quyền"
-
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the ignore_xss_filter (Check) field in DocType 'DocField'
+#. Label of the ignore_xss_filter (Check) field in DocType 'Custom Field'
+#. Label of the ignore_xss_filter (Check) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Ignore XSS Filter"
-msgstr "Bỏ qua bộ lọc"
-
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Ignore XSS Filter"
-msgstr "Bỏ qua bộ lọc"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Ignore XSS Filter"
-msgstr "Bỏ qua bộ lọc"
+msgstr ""
#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email
#. Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Ignore attachments over this size"
-msgstr "Bỏ qua file đính kèm vượt quá kích thước này"
-
#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email
#. Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Ignore attachments over this size"
-msgstr "Bỏ qua file đính kèm vượt quá kích thước này"
+msgstr ""
-#. Label of a Table field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the ignored_apps (Table) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Ignored Apps"
-msgstr "Ứng dụng bị Bỏ qua"
+msgstr ""
-#: integrations/doctype/dropbox_settings/dropbox_settings.py:349
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:348
msgid "Illegal Access Token. Please try again"
-msgstr "Truy cập thông báo bất hợp pháp. Vui lòng thử lại"
+msgstr ""
-#: model/workflow.py:143
+#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
-msgstr "Trạng thái tài liệu bất hợp pháp cho {0}"
+msgstr ""
-#: model/db_query.py:451 model/db_query.py:454 model/db_query.py:1128
+#: frappe/model/db_query.py:451 frappe/model/db_query.py:454
+#: frappe/model/db_query.py:1128
msgid "Illegal SQL Query"
-msgstr "Truy vấn SQL bất hợp pháp"
+msgstr ""
-#: utils/jinja.py:95
+#: frappe/utils/jinja.py:127
msgid "Illegal template"
msgstr ""
-#. Label of a Attach Image field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Image"
-msgstr "Hình"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Image"
-msgstr "Hình"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Image"
-msgstr "Hình"
-
+#. Label of the image (Attach Image) field in DocType 'Contact'
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Image"
-msgstr "Hình"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Image"
-msgstr "Hình"
-
+#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
-#. Label of a Attach Image field in DocType 'Letter Head'
+#. Label of the image (Attach Image) field in DocType 'Letter Head'
+#. Label of the footer_image (Attach Image) field in DocType 'Letter Head'
#. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the meta_image (Attach Image) field in DocType 'Web Page'
+#. Label of the image (Attach) field in DocType 'Website Slideshow Item'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "Image"
-msgstr "Hình"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Image"
-msgstr "Hình"
-
-#. Label of a Attach field in DocType 'Website Slideshow Item'
-#: website/doctype/website_slideshow_item/website_slideshow_item.json
-msgctxt "Website Slideshow Item"
-msgid "Image"
-msgstr "Hình"
-
-#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Image"
-msgstr "Hình"
-
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the image_field (Data) field in DocType 'DocType'
+#. Label of the image_field (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Image Field"
-msgstr "hình ảnh Dòng"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Image Field"
-msgstr "hình ảnh Dòng"
-
-#. Label of a Float field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the image_height (Float) field in DocType 'Letter Head'
+#. Label of the footer_image_height (Float) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Image Height"
msgstr ""
-#. Label of a Attach field in DocType 'About Us Team Member'
-#: website/doctype/about_us_team_member/about_us_team_member.json
-msgctxt "About Us Team Member"
+#. Label of the image_link (Attach) field in DocType 'About Us Team Member'
+#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
msgid "Image Link"
-msgstr "Liên kết hình ảnh"
+msgstr ""
-#. Label of a Float field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#: frappe/public/js/frappe/list/base_list.js:208
+msgid "Image View"
+msgstr ""
+
+#. Label of the image_width (Float) field in DocType 'Letter Head'
+#. Label of the footer_image_width (Float) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Image Width"
msgstr ""
-#: core/doctype/doctype/doctype.py:1457
+#: frappe/core/doctype/doctype/doctype.py:1506
msgid "Image field must be a valid fieldname"
-msgstr "trường hình ảnh phải là một trường tên hợp lệ"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1459
+#: frappe/core/doctype/doctype/doctype.py:1508
msgid "Image field must be of type Attach Image"
-msgstr "trường hình ảnh phải được loại Đính kèm hình ảnh"
+msgstr ""
-#: core/doctype/file/utils.py:134
+#: frappe/core/doctype/file/utils.py:136
msgid "Image link '{0}' is not valid"
msgstr ""
-#: core/doctype/file/file.js:91
+#: frappe/core/doctype/file/file.js:107
msgid "Image optimized"
msgstr ""
-#: public/js/frappe/views/image/image_view.js:13
-msgid "Images"
-msgstr "Hình ảnh"
+#: frappe/core/doctype/file/utils.py:289
+msgid "Image: Corrupted Data Stream"
+msgstr ""
-#: core/doctype/log_settings/log_settings.py:56
+#: 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:378
+msgid "Impersonate"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:405
+msgid "Impersonate as {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259
+msgid "Impersonated by {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:21
+msgid "Impersonating {0}"
+msgstr ""
+
+#: frappe/core/doctype/log_settings/log_settings.py:56
msgid "Implement `clear_old_logs` method to enable auto error clearing."
msgstr ""
#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Implicit"
-msgstr "ngầm"
+msgstr ""
-#: core/doctype/recorder/recorder_list.js:21
-#: email/doctype/email_group/email_group.js:31
+#. Label of the import (Check) field in DocType 'Custom DocPerm'
+#. Label of the import (Check) field in DocType 'DocPerm'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
-msgstr "Nhập khẩu"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1628
+#: frappe/public/js/frappe/list/list_view.js:1766
msgctxt "Button in list view menu"
msgid "Import"
-msgstr "Nhập khẩu"
-
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Import"
-msgstr "Nhập khẩu"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Import"
-msgstr "Nhập khẩu"
+msgstr ""
#. Label of a Link in the Tools Workspace
#. Label of a shortcut in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Data Import"
+#: frappe/automation/workspace/tools/tools.json
msgid "Import Data"
-msgstr "Nhập dữ liệu"
+msgstr ""
-#: email/doctype/email_group/email_group.js:14
+#: frappe/email/doctype/email_group/email_group.js:14
msgid "Import Email From"
-msgstr "Nhập Email Từ"
+msgstr ""
-#. Label of a Attach field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the import_file (Attach) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import File"
-msgstr "Nhập tệp"
+msgstr ""
-#. Label of a Section Break field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the import_warnings_section (Section Break) field in DocType 'Data
+#. Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import File Errors and Warnings"
-msgstr "Nhập lỗi và cảnh báo tệp"
+msgstr ""
-#. Label of a Section Break field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the import_log_section (Section Break) field in DocType 'Data
+#. Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import Log"
-msgstr "Nhập khẩu Đăng nhập"
+msgstr ""
-#. Label of a HTML field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the import_log_preview (HTML) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import Log Preview"
-msgstr "Nhập nhật ký xem trước"
+msgstr ""
-#. Label of a HTML field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the import_preview (HTML) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import Preview"
-msgstr "Xem trước nhập"
+msgstr ""
-#: core/doctype/data_import/data_import.js:41
+#: frappe/core/doctype/data_import/data_import.js:41
msgid "Import Progress"
-msgstr "Tiến độ nhập khẩu"
+msgstr ""
-#: email/doctype/email_group/email_group.js:8
-#: email/doctype/email_group/email_group.js:30
+#: frappe/email/doctype/email_group/email_group.js:8
+#: frappe/email/doctype/email_group/email_group.js:30
msgid "Import Subscribers"
-msgstr "Nhập vào những người đăng ký"
+msgstr ""
-#. Label of a Select field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the import_type (Select) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import Type"
-msgstr "Loại nhập khẩu"
+msgstr ""
-#. Label of a HTML field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the import_warnings (HTML) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import Warnings"
-msgstr "Cảnh báo nhập khẩu"
+msgstr ""
-#: public/js/frappe/views/file/file_view.js:117
+#: frappe/public/js/frappe/views/file/file_view.js:117
msgid "Import Zip"
-msgstr "Nhập Zip"
+msgstr ""
-#. Label of a Data field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the google_sheets_url (Data) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import from Google Sheets"
-msgstr "Nhập từ Google Trang tính"
+msgstr ""
-#: core/doctype/data_import/importer.py:598
+#: frappe/core/doctype/data_import/importer.py:612
msgid "Import template should be of type .csv, .xlsx or .xls"
-msgstr "Mẫu nhập phải là loại .csv, .xlsx hoặc .xls"
+msgstr ""
-#: core/doctype/data_import/importer.py:467
+#: frappe/core/doctype/data_import/importer.py:482
msgid "Import template should contain a Header and atleast one row."
-msgstr "Mẫu nhập phải chứa một Tiêu đề và ít nhất một hàng."
+msgstr ""
-#: core/doctype/data_import/data_import.js:170
+#: frappe/core/doctype/data_import/data_import.js:165
msgid "Import timed out, please re-try."
msgstr ""
-#: core/doctype/data_import/data_import.py:61
+#: frappe/core/doctype/data_import/data_import.py:68
msgid "Importing {0} is not allowed."
msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.js:19
+#: frappe/integrations/doctype/google_contacts/google_contacts.js:19
msgid "Importing {0} of {1}"
-msgstr "Nhập {0} trong số {1}"
+msgstr ""
-#: core/doctype/data_import/data_import.js:35
+#: frappe/core/doctype/data_import/data_import.js:35
msgid "Importing {0} of {1}, {2}"
-msgstr "Nhập {0} trong số {1}, {2}"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:20
+#: frappe/public/js/frappe/ui/filters/filter.js:20
msgid "In"
-msgstr "Trong"
+msgstr ""
#. Description of the 'Force User to Reset Password' (Int) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "In Days"
-msgstr "Trong ngày"
-
-#. Description of the Onboarding Step 'Setup Limited Access for a User'
-#: custom/onboarding_step/role_permissions/role_permissions.json
-msgid "In ERPNext, you can add your Employees as Users, and give them restricted access. Tools like Role Permission and User Permission allow you to define rules which give restricted access to the user to masters and transactions."
msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the in_filter (Check) field in DocType 'DocField'
+#. Label of the in_filter (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Filter"
-msgstr "Bộ lọc trong"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "In Filter"
-msgstr "Bộ lọc trong"
-
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the in_global_search (Check) field in DocType 'DocField'
+#. Label of the in_global_search (Check) field in DocType 'Custom Field'
+#. Label of the in_global_search (Check) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Global Search"
-msgstr "Trong Tìm kiếm Toàn cầu"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "In Global Search"
-msgstr "Trong Tìm kiếm Toàn cầu"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "In Global Search"
-msgstr "Trong Tìm kiếm Toàn cầu"
-
-#: core/doctype/doctype/doctype.js:95
+#: frappe/core/doctype/doctype/doctype.js:88
msgid "In Grid View"
-msgstr "Trong tầm nhìn mạng lưới"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the in_standard_filter (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "In List Filter"
msgstr ""
-#: core/doctype/doctype/doctype.js:96
+#. Label of the in_list_view (Check) field in DocType 'DocField'
+#. Label of the in_list_view (Check) field in DocType 'Custom Field'
+#. Label of the in_list_view (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype.js:89
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In List View"
-msgstr "Trong xem danh sách"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "In List View"
-msgstr "Trong xem danh sách"
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:19
+msgid "In Minutes"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "In List View"
-msgstr "Trong xem danh sách"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "In List View"
-msgstr "Trong xem danh sách"
-
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the in_preview (Check) field in DocType 'DocField'
+#. Label of the in_preview (Check) field in DocType 'Custom Field'
+#. Label of the in_preview (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Preview"
-msgstr "Trong bản xem trước"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "In Preview"
-msgstr "Trong bản xem trước"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "In Preview"
-msgstr "Trong bản xem trước"
-
-#: core/doctype/data_import/data_import.js:42
+#: frappe/core/doctype/data_import/data_import.js:42
msgid "In Progress"
-msgstr "Trong tiến trình"
+msgstr ""
-#: database/database.py:233
+#: frappe/database/database.py:287
msgid "In Read Only Mode"
msgstr ""
-#. Label of a Link field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the in_reply_to (Link) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "In Reply To"
-msgstr "Trong Phản hồi tới"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the in_standard_filter (Check) field in DocType 'Custom Field'
+#. Label of the in_standard_filter (Check) field in DocType 'Customize Form
+#. Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Standard Filter"
-msgstr "Trong tiêu chuẩn bộ lọc"
-
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "In Standard Filter"
-msgstr "Trong tiêu chuẩn bộ lọc"
-
-#. Description of the Onboarding Step 'Generate Custom Reports'
-#: custom/onboarding_step/report_builder/report_builder.json
-msgid "In each module, you will find a host of single-click reports, ranging from financial statements to sales and purchase analytics and stock tracking reports. If a required new report is not available out-of-the-box, you can create custom reports in ERPNext by pulling values from the same multiple ERPNext tables.\n"
msgstr ""
#. Description of the 'Font Size' (Float) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "In points. Default is 9."
-msgstr "Trong điểm. Mặc định là 9."
+msgstr ""
#. Description of the 'Allow Login After Fail' (Int) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "In seconds"
-msgstr "Trong vài giây"
-
-#: core/doctype/recorder/recorder_list.js:107
-msgid "Inactive"
-msgstr "Không hoạt động"
-
-#: public/js/frappe/ui/field_group.js:131
-msgid "Inavlid Values"
msgstr ""
-#: email/doctype/email_account/email_account_list.js:19
-msgid "Inbox"
-msgstr "Hộp thư đến"
+#: frappe/core/doctype/recorder/recorder_list.js:209
+msgid "Inactive"
+msgstr ""
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/email/doctype/email_account/email_account_list.js:19
msgid "Inbox"
-msgstr "Hộp thư đến"
+msgstr ""
#. Name of a role
-#: core/doctype/communication/communication.json
-#: email/doctype/email_account/email_account.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_account/email_account.json
msgid "Inbox User"
-msgstr "Người dùng hộp thư đến"
+msgstr ""
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/public/js/frappe/list/base_list.js:209
+msgid "Inbox View"
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:110
+msgid "Include Disabled"
+msgstr ""
+
+#. Label of the include_name_field (Check) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Include Name Field"
msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the navbar_search (Check) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Include Search in Top Bar"
-msgstr "Bao gồm tìm kiếm trong thanh trên cùng"
+msgstr ""
-#: website/doctype/website_theme/website_theme.js:61
+#: frappe/website/doctype/website_theme/website_theme.js:61
msgid "Include Theme from Apps"
-msgstr "Bao gồm Chủ đề từ Ứng dụng"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the attach_view_link (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Include Web View Link in Email"
-msgstr "Gửi tài liệu liên kết Web View trong email"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1488
+#: frappe/public/js/frappe/views/reports/query_report.js:1592
msgid "Include filters"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1480
+#: frappe/public/js/frappe/views/reports/query_report.js:1584
msgid "Include indentation"
-msgstr "Bao gồm thụt"
+msgstr ""
-#: public/js/frappe/form/controls/password.js:107
+#: frappe/public/js/frappe/form/controls/password.js:106
msgid "Include symbols, numbers and capital letters in the password"
-msgstr "Bao gồm các ký hiệu, số và chữ hoa trong mật khẩu"
+msgstr ""
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the incoming_popimap_tab (Tab Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Incoming"
+msgstr ""
+
+#. Label of the mailbox_settings (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Incoming (POP/IMAP) Settings"
msgstr ""
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the incoming_emails_last_7_days_column (Column Break) field in
+#. DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Incoming Emails (Last 7 days)"
+msgstr ""
+
+#. Label of the email_server (Data) field in DocType 'Email Account'
+#. Label of the email_server (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Incoming Server"
msgstr ""
-#. Label of a Data field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Incoming Server"
-msgstr ""
-
-#. Label of a Section Break field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#. Label of the mailbox_settings (Section Break) field in DocType 'Email
+#. Domain'
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Incoming Settings"
msgstr ""
-#: email/doctype/email_domain/email_domain.py:32
+#: frappe/email/doctype/email_domain/email_domain.py:32
msgid "Incoming email account not correct"
-msgstr "địa chỉ email gửi đến không chính xác"
+msgstr ""
-#: model/virtual_doctype.py:81 model/virtual_doctype.py:94
+#: frappe/model/virtual_doctype.py:79 frappe/model/virtual_doctype.py:92
msgid "Incomplete Virtual Doctype Implementation"
msgstr ""
-#: auth.py:236
+#: frappe/auth.py:255
msgid "Incomplete login details"
-msgstr "Chi tiết đăng nhập không đầy đủ"
+msgstr ""
-#: email/smtp.py:103
+#: frappe/email/smtp.py:104
msgid "Incorrect Configuration"
-msgstr "Cấu hình không chính xác"
+msgstr ""
-#: utils/csvutils.py:207
+#: frappe/utils/csvutils.py:234
msgid "Incorrect URL"
-msgstr "URL không chính xác"
+msgstr ""
-#: utils/password.py:90
+#: frappe/utils/password.py:101
msgid "Incorrect User or Password"
-msgstr "Người dùng hoặc mật khẩu không chính xác"
+msgstr ""
-#: twofactor.py:177 twofactor.py:189
+#: frappe/twofactor.py:176 frappe/twofactor.py:188
msgid "Incorrect Verification code"
-msgstr "Mã xác minh không chính xác"
+msgstr ""
-#: model/document.py:1352
-msgid "Incorrect value in row {0}: {1} must be {2} {3}"
-msgstr "Giá trị không chính xác trong hàng {0}: {1} phải {2} {3}"
+#: frappe/model/document.py:1542
+msgid "Incorrect value in row {0}:"
+msgstr ""
-#: model/document.py:1356
-msgid "Incorrect value: {0} must be {1} {2}"
-msgstr "Giá trị không đúng: {0} phải {1} {2}"
+#: frappe/model/document.py:1544
+msgid "Incorrect value:"
+msgstr ""
-#: model/__init__.py:139 model/meta.py:48 public/js/frappe/model/meta.js:200
-#: public/js/frappe/model/model.js:114
-#: public/js/frappe/views/reports/report_view.js:941
+#. Label of the search_index (Check) field in DocType 'DocField'
+#. Label of the index (Int) field in DocType 'Recorder Query'
+#. Label of the search_index (Check) field in DocType 'Custom Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/recorder_query/recorder_query.json
+#: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:53
+#: 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:999
msgid "Index"
-msgstr "Mục lục"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Index"
-msgstr "Mục lục"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Index"
-msgstr "Mục lục"
-
-#. Label of a Int field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
-msgid "Index"
-msgstr "Mục lục"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the index_web_pages_for_search (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Index Web Pages for Search"
-msgstr "Lập chỉ mục các trang web cho tìm kiếm"
+msgstr ""
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/core/doctype/recorder/recorder.py:132
+msgid "Index created successfully on column {0} of doctype {1}"
+msgstr ""
+
+#. Label of the indexing_authorization_code (Data) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Indexing authorization code"
msgstr ""
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the indexing_refresh_token (Data) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Indexing refresh token"
msgstr ""
-#. Label of a Select field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#. Label of the indicator (Select) field in DocType 'Kanban Board Column'
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Indicator"
-msgstr "chỉ số"
+msgstr ""
-#. Label of a Select field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the indicator_color (Select) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Indicator Color"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:639
-#: public/js/frappe/views/workspace/workspace.js:967
-#: public/js/frappe/views/workspace/workspace.js:1211
+#: frappe/public/js/frappe/views/workspace/workspace.js:463
msgid "Indicator color"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Info"
-msgstr "Thông tin"
-
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Info"
-msgstr "Thông tin"
-
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Info"
-msgstr "Thông tin"
+msgstr ""
-#: core/doctype/data_export/exporter.py:144
+#: frappe/core/doctype/data_export/exporter.py:144
msgid "Info:"
-msgstr "Thông tin:"
+msgstr ""
-#. Label of a Select field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the initial_sync_count (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Initial Sync Count"
-msgstr "Tính toán đồng bộ ban đầu"
+msgstr ""
#. Option for the 'Database Engine' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "InnoDB"
-msgstr "InnoDB"
+msgstr ""
-#: core/doctype/data_import/data_import_list.js:39
+#. Description of the 'New Role' (Data) field in DocType 'Role Replication'
+#: frappe/core/doctype/role_replication/role_replication.json
+msgid "Input existing role name if you would like to extend it with access of another role."
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import_list.js:35
msgid "Insert"
-msgstr "Chèn"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1712
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Insert Above"
+msgstr ""
+
+#. Label of the insert_after (Select) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/public/js/frappe/views/reports/query_report.js:1822
msgid "Insert After"
-msgstr "Chèn sau"
+msgstr ""
-#. Label of a Select field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Insert After"
-msgstr "Chèn sau"
-
-#: custom/doctype/custom_field/custom_field.py:249
+#: frappe/custom/doctype/custom_field/custom_field.py:251
msgid "Insert After cannot be set as {0}"
-msgstr "Chèn Sau khi không thể được thiết lập như là {0}"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.py:242
+#: frappe/custom/doctype/custom_field/custom_field.py:244
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
-msgstr "Chèn Sau trường '{0}' đề cập trong trường tùy chỉnh '{1}', với nhãn '{2}', không tồn tại"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:364
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Insert Below"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:384
msgid "Insert Column Before {0}"
-msgstr "Chèn Cột Trước {0}"
+msgstr ""
-#: public/js/frappe/form/controls/markdown_editor.js:81
+#: frappe/public/js/frappe/form/controls/markdown_editor.js:82
msgid "Insert Image in Markdown"
msgstr ""
#. Option for the 'Import Type' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/core/doctype/data_import/data_import.json
msgid "Insert New Records"
-msgstr "Chèn hồ sơ mới"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the insert_style (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Insert Style"
-msgstr "Chèn phong cách"
+msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:646
-#: public/js/frappe/ui/toolbar/search_utils.js:647
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666
msgid "Install {0} from Marketplace"
msgstr ""
#. Name of a DocType
-#: core/doctype/installed_application/installed_application.json
+#: frappe/core/doctype/installed_application/installed_application.json
msgid "Installed Application"
-msgstr "Ứng dụng đã cài đặt"
+msgstr ""
#. Name of a DocType
-#: core/doctype/installed_applications/installed_applications.json
+#. Label of the installed_applications (Table) field in DocType 'Installed
+#. Applications'
+#: frappe/core/doctype/installed_applications/installed_applications.json
msgid "Installed Applications"
-msgstr "Các ứng dụng đã cài đặt"
+msgstr ""
-#. Label of a Table field in DocType 'Installed Applications'
-#: core/doctype/installed_applications/installed_applications.json
-msgctxt "Installed Applications"
-msgid "Installed Applications"
-msgstr "Các ứng dụng đã cài đặt"
-
-#: core/doctype/installed_applications/installed_applications.js:18
+#: frappe/core/doctype/installed_applications/installed_applications.js:18
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
msgid "Installed Apps"
msgstr ""
-#: permissions.py:826
+#. Label of the instructions (HTML) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Instructions"
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:261
+msgid "Instructions Emailed"
+msgstr ""
+
+#: frappe/permissions.py:818
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: database/query.py:371 desk/form/load.py:40 model/document.py:234
+#: frappe/database/query.py:376
msgid "Insufficient Permission for {0}"
-msgstr "Không đủ quyền cho {0}"
+msgstr ""
-#: desk/reportview.py:322
+#: frappe/desk/reportview.py:360
msgid "Insufficient Permissions for deleting Report"
msgstr ""
-#: desk/reportview.py:293
+#: frappe/desk/reportview.py:331
msgid "Insufficient Permissions for editing Report"
msgstr ""
-#: core/doctype/doctype/doctype.py:447
+#: frappe/core/doctype/doctype/doctype.py:445
msgid "Insufficient attachment limit"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Int"
-msgstr "Int"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Int"
-msgstr "Int"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Int"
-msgstr "Int"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Int"
-msgstr "Int"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Int"
-msgstr "Int"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Int"
-msgstr "Int"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Int"
-msgstr "Int"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Integration Request"
-msgstr "tích hợp Yêu cầu"
-
-#. Name of a Workspace
-#: integrations/workspace/integrations/integrations.json
-msgid "Integrations"
-msgstr "Tích hợp"
+msgstr ""
#. Group in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
+#. 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 "Tích hợp"
-
-#. Label of a Tab Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Integrations"
-msgstr "Tích hợp"
+msgstr ""
#. Description of the 'Delivery Status' (Select) field in DocType
#. 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Integrations can use this field to set email delivery status"
-msgstr "Tích hợp có thể sử dụng trường này để thiết lập tình trạng giao hàng email"
+msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Inter"
msgstr ""
-#. Label of a Small Text field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the interest (Small Text) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Interests"
-msgstr "Sở thích"
+msgstr ""
#. Option for the 'Level' (Select) field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
+#: frappe/website/doctype/help_article/help_article.json
msgid "Intermediate"
-msgstr "Trung gian"
+msgstr ""
-#: public/js/frappe/request.js:232
+#: frappe/public/js/frappe/request.js:235
msgid "Internal Server Error"
-msgstr "Lỗi máy chủ nội bộ"
+msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Description of a DocType
+#: frappe/core/doctype/docshare/docshare.json
+msgid "Internal record of document shares"
+msgstr ""
+
+#. Label of the intro_video_url (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Intro Video URL"
msgstr ""
#. Description of the 'Company Introduction' (Text Editor) field in DocType
#. 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Introduce your company to the website visitor."
-msgstr "Giới thiệu công ty của bạn tới người truy cập website."
+msgstr ""
-#. Label of a Section Break field in DocType 'Contact Us Settings'
-#. Label of a Text Editor field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the introduction_section (Section Break) field in DocType 'Contact
+#. Us Settings'
+#. Label of the introduction (Text Editor) field in DocType 'Contact Us
+#. Settings'
+#. Label of the introduction_text (Text Editor) field in DocType 'Web Form'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/doctype/web_form/web_form.json
msgid "Introduction"
-msgstr "Giới thiệu chung"
-
-#. Label of a Text Editor field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Introduction"
-msgstr "Giới thiệu chung"
-
-#. Title of an Onboarding Step
-#: website/onboarding_step/introduction_to_website/introduction_to_website.json
-msgid "Introduction to Website"
msgstr ""
#. Description of the 'Introduction' (Text Editor) field in DocType 'Contact Us
#. Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Introductory information for the Contact Us Page"
-msgstr "Thông tin giới thiệu cho Trang Liên hệ"
+msgstr ""
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the introspection_uri (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Introspection URI"
msgstr ""
#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization
#. Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Invalid"
-msgstr "không hợp lệ"
+msgstr ""
-#: public/js/form_builder/utils.js:221 public/js/frappe/form/grid_row.js:748
-#: public/js/frappe/form/layout.js:774
+#: frappe/public/js/form_builder/utils.js:221
+#: frappe/public/js/frappe/form/grid_row.js:833
+#: frappe/public/js/frappe/form/layout.js:811
+#: frappe/public/js/frappe/views/reports/report_view.js:710
msgid "Invalid \"depends_on\" expression"
-msgstr "Biểu thức "depends_on" không hợp lệ"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:510
+#: frappe/public/js/frappe/views/reports/query_report.js:513
msgid "Invalid \"depends_on\" expression set in filter {0}"
-msgstr "Biểu thức "depend_on" không hợp lệ được đặt trong bộ lọc {0}"
+msgstr ""
-#: public/js/frappe/form/save.js:206
+#: frappe/public/js/frappe/form/save.js:159
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr ""
-#: utils/nestedset.py:181
+#: frappe/utils/nestedset.py:178
msgid "Invalid Action"
msgstr ""
-#: utils/csvutils.py:35
+#: frappe/utils/csvutils.py:37
msgid "Invalid CSV Format"
-msgstr "Định dạng CSV không hợp lệ"
+msgstr ""
-#: integrations/doctype/webhook/webhook.py:87
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:111
+msgid "Invalid Code. Please try again."
+msgstr ""
+
+#: frappe/integrations/doctype/webhook/webhook.py:87
msgid "Invalid Condition: {}"
msgstr ""
-#: email/smtp.py:132
+#: frappe/email/smtp.py:135
msgid "Invalid Credentials"
-msgstr "Thông tin không hợp lệ"
+msgstr ""
-#: utils/data.py:124 utils/data.py:285
+#: frappe/utils/data.py:136 frappe/utils/data.py:299
msgid "Invalid Date"
-msgstr "Ngày không hợp lệ"
+msgstr ""
-#: www/list.py:85
+#: frappe/www/list.py:85
msgid "Invalid DocType"
msgstr ""
-#: database/query.py:95
+#: frappe/database/query.py:102
msgid "Invalid DocType: {0}"
msgstr ""
-#: core/doctype/doctype/doctype.py:1223
+#: frappe/core/doctype/doctype/doctype.py:1272
msgid "Invalid Fieldname"
msgstr ""
-#: core/doctype/file/file.py:206
+#: frappe/core/doctype/file/file.py:209
msgid "Invalid File URL"
msgstr ""
-#: public/js/form_builder/store.js:216
+#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
-#: utils/dashboard.py:61
+#: frappe/utils/dashboard.py:61
msgid "Invalid Filter Value"
-msgstr "Giá trị bộ lọc không hợp lệ"
+msgstr ""
-#: website/doctype/website_settings/website_settings.py:83
+#: frappe/website/doctype/website_settings/website_settings.py:83
msgid "Invalid Home Page"
-msgstr "Trang chủ không hợp lệ"
+msgstr ""
-#: utils/verified_command.py:48 www/update-password.html:151
+#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153
msgid "Invalid Link"
-msgstr "Liên kết không hợp lệ"
+msgstr ""
-#: www/login.py:112
+#: frappe/www/login.py:128
msgid "Invalid Login Token"
-msgstr "Đăng nhập vào thông báo không hợp lệ"
+msgstr ""
-#: email/receive.py:105 email/receive.py:142
+#: frappe/templates/includes/login/login.js:290
+msgid "Invalid Login. Try again."
+msgstr ""
+
+#: frappe/email/receive.py:112 frappe/email/receive.py:149
msgid "Invalid Mail Server. Please rectify and try again."
-msgstr "Server Mail không hợp lệ. Xin khắc phục và thử lại."
+msgstr ""
-#: model/naming.py:91
+#: frappe/model/naming.py:101
msgid "Invalid Naming Series: {}"
msgstr ""
-#: core/doctype/rq_job/rq_job.py:122
+#: frappe/core/doctype/rq_job/rq_job.py:113
msgid "Invalid Operation"
msgstr ""
-#: core/doctype/doctype/doctype.py:1582 core/doctype/doctype/doctype.py:1591
+#: frappe/core/doctype/doctype/doctype.py:1641
+#: frappe/core/doctype/doctype/doctype.py:1650
msgid "Invalid Option"
-msgstr "Tùy chọn không hợp lệ"
+msgstr ""
-#: email/smtp.py:102
+#: frappe/email/smtp.py:103
msgid "Invalid Outgoing Mail Server or Port: {0}"
msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.py:182
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:188
msgid "Invalid Output Format"
-msgstr "Định dạng đầu ra không hợp lệ"
+msgstr ""
-#: integrations/doctype/connected_app/connected_app.py:166
+#: frappe/model/base_document.py:116
+msgid "Invalid Override"
+msgstr ""
+
+#: frappe/integrations/doctype/connected_app/connected_app.py:195
msgid "Invalid Parameters."
msgstr ""
-#: core/doctype/user/user.py:1195 www/update-password.html:121
-#: www/update-password.html:142 www/update-password.html:144
-#: www/update-password.html:246
+#: frappe/core/doctype/user/user.py:1226 frappe/www/update-password.html:123
+#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
+#: frappe/www/update-password.html:247
msgid "Invalid Password"
-msgstr "Mật khẩu không hợp lệ"
+msgstr ""
-#: utils/__init__.py:109
+#: frappe/utils/__init__.py:122
msgid "Invalid Phone Number"
msgstr ""
-#: auth.py:93 utils/oauth.py:184 utils/oauth.py:191 www/login.py:112
+#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/www/login.py:128
msgid "Invalid Request"
-msgstr "yêu cầu không hợp lệ"
+msgstr ""
-#: desk/search.py:26
+#: frappe/desk/search.py:26
msgid "Invalid Search Field {0}"
-msgstr "Trường tìm kiếm không hợp lệ {0}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1165
+#: frappe/core/doctype/doctype/doctype.py:1214
msgid "Invalid Table Fieldname"
msgstr ""
-#: public/js/workflow_builder/store.js:182
+#: frappe/public/js/workflow_builder/store.js:192
msgid "Invalid Transition"
msgstr ""
-#: core/doctype/file/file.py:217 public/js/frappe/widgets/widget_dialog.js:565
-#: utils/csvutils.py:199 utils/csvutils.py:220
+#: frappe/core/doctype/file/file.py:220
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
+#: frappe/public/js/frappe/widgets/widget_dialog.js:589
+#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
-msgstr "URL không hợp lệ"
+msgstr ""
-#: email/receive.py:150
+#: frappe/email/receive.py:157
msgid "Invalid User Name or Support Password. Please rectify and try again."
-msgstr "Tên tài khoản không hợp lệ hoặc Hỗ trợ mật khẩu. Xin khắc phục và thử lại."
+msgstr ""
-#: integrations/doctype/webhook/webhook.py:116
+#: frappe/public/js/frappe/ui/field_group.js:137
+msgid "Invalid Values"
+msgstr ""
+
+#: frappe/integrations/doctype/webhook/webhook.py:116
msgid "Invalid Webhook Secret"
msgstr ""
-#: desk/reportview.py:150
+#: frappe/desk/reportview.py:186
msgid "Invalid aggregate function"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:373
+#: frappe/public/js/frappe/views/reports/report_view.js:393
msgid "Invalid column"
-msgstr "Cột không hợp lệ"
+msgstr ""
-#: model/document.py:841 model/document.py:855
+#: frappe/model/document.py:1015 frappe/model/document.py:1029
msgid "Invalid docstatus"
msgstr ""
-#: public/js/frappe/utils/dashboard_utils.js:229
+#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
-msgstr "Tập hợp biểu thức không hợp lệ trong bộ lọc {0}"
+msgstr ""
-#: public/js/frappe/utils/dashboard_utils.js:219
+#: frappe/public/js/frappe/utils/dashboard_utils.js:219
msgid "Invalid expression set in filter {0} ({1})"
-msgstr "Biểu thức không hợp lệ được đặt trong bộ lọc {0} ({1})"
+msgstr ""
-#: utils/data.py:2128
+#: frappe/utils/data.py:2186
msgid "Invalid field name {0}"
-msgstr "Tên trường không hợp lệ {0}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1048
+#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
-msgstr "tên trường không hợp lệ '{0}' trong tên tự động"
+msgstr ""
-#: client.py:344
+#: frappe/deprecation_dumpster.py:283
msgid "Invalid file path: {0}"
-msgstr "Đường dẫn tập tin không hợp lệ: {0}"
+msgstr ""
-#: database/query.py:173 public/js/frappe/ui/filters/filter_list.js:199
+#: frappe/database/query.py:182
+#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
-msgstr "Bộ lọc không hợp lệ: {0}"
+msgstr ""
-#: model/utils/__init__.py:69
-msgid "Invalid include path"
-msgstr "Đường dẫn bao gồm không hợp lệ"
-
-#: desk/doctype/dashboard/dashboard.py:68
-#: desk/doctype/dashboard_chart/dashboard_chart.py:424
+#: 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 "Đã thêm json không hợp lệ vào các tùy chọn tùy chỉnh: {0}"
+msgstr ""
-#: model/naming.py:445
+#: frappe/model/naming.py:490
msgid "Invalid name type (integer) for varchar name column"
msgstr ""
-#: model/naming.py:52
+#: frappe/model/naming.py:62
msgid "Invalid naming series {}: dot (.) missing"
msgstr ""
-#: core/doctype/data_import/importer.py:438
+#: frappe/core/doctype/data_import/importer.py:453
msgid "Invalid or corrupted content for import"
-msgstr "Nội dung không hợp lệ hoặc bị hỏng để nhập"
+msgstr ""
-#: website/doctype/website_settings/website_settings.py:139
+#: frappe/website/doctype/website_settings/website_settings.py:139
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: app.py:301
+#: frappe/app.py:324
msgid "Invalid request arguments"
msgstr ""
-#: integrations/doctype/connected_app/connected_app.py:172
-msgid "Invalid state."
+#: frappe/core/doctype/data_import/importer.py:430
+msgid "Invalid template file for import"
msgstr ""
-#: core/doctype/data_import/importer.py:415
-msgid "Invalid template file for import"
-msgstr "Tệp mẫu không hợp lệ để nhập"
+#: frappe/integrations/doctype/connected_app/connected_app.py:201
+msgid "Invalid token state! Check if the token has been created by the OAuth user."
+msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:162
-#: integrations/doctype/ldap_settings/ldap_settings.py:335
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:165
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:336
msgid "Invalid username or password"
-msgstr "Sai username hoặc password"
+msgstr ""
-#: public/js/frappe/web_form/web_form.js:229
+#: frappe/model/naming.py:168
+msgid "Invalid value specified for UUID: {}"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:229
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
msgstr ""
-#: core/doctype/doctype/doctype.py:1515
+#: frappe/printing/page/print/print.js:614
+msgid "Invalid wkhtmltopdf version"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1564
msgid "Invalid {0} condition"
-msgstr "Điều kiện không hợp lệ {0}"
+msgstr ""
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Inverse"
-msgstr "Đảo ngược"
+msgstr ""
-#: contacts/doctype/contact/contact.js:25
+#: frappe/contacts/doctype/contact/contact.js:30
msgid "Invite as User"
-msgstr "Mời như tài"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:22
+#: frappe/public/js/frappe/ui/filters/filter.js:22
msgid "Is"
-msgstr "Là"
+msgstr ""
-#. Label of a Check field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the is_active (Check) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Is Active"
-msgstr "Là hoạt động"
+msgstr ""
-#. Label of a Check field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the is_attachments_folder (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Is Attachments Folder"
-msgstr "Là thư mục đính kèm"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the is_calendar_and_gantt (Check) field in DocType 'DocType'
+#. Label of the is_calendar_and_gantt (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Is Calendar and Gantt"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Is Calendar and Gantt"
+#. Label of the istable (Check) field in DocType 'DocType'
+#. Label of the is_child_table (Check) field in DocType 'DocType Link'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype_link/doctype_link.json
+msgid "Is Child Table"
msgstr ""
-#: core/doctype/doctype/doctype_list.js:34
-msgid "Is Child Table"
-msgstr "Là bảng con"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Is Child Table"
-msgstr "Là bảng con"
-
-#. Label of a Check field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
-msgid "Is Child Table"
-msgstr "Là bảng con"
-
-#. Label of a Check field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
+#. 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 "Hoàn tất"
+msgstr ""
-#. Label of a Check field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Is Complete"
-msgstr "Hoàn tất"
-
-#. Label of a Check field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
+#. Label of the is_completed (Check) field in DocType 'Email Flag Queue'
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
msgid "Is Completed"
-msgstr "Đã được hoàn thành"
+msgstr ""
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the is_custom (Check) field in DocType 'Role'
+#. Label of the is_custom (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/role/role.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Is Custom"
msgstr ""
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Is Custom"
-msgstr ""
-
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the is_custom_field (Check) field in DocType 'Customize Form Field'
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Is Custom Field"
-msgstr "Là Trường Tuỳ chỉnh"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:69
+#. Label of the is_default (Check) field in DocType 'Address Template'
+#. Label of the is_default (Check) field in DocType 'User Permission'
+#. Label of the is_default (Check) field in DocType 'Dashboard'
+#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/core/doctype/user_permission/user_permission.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:69
+#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Is Default"
-msgstr "Mặc định là"
+msgstr ""
-#. Label of a Check field in DocType 'Address Template'
-#: contacts/doctype/address_template/address_template.json
-msgctxt "Address Template"
-msgid "Is Default"
-msgstr "Mặc định là"
-
-#. Label of a Check field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
-msgid "Is Default"
-msgstr "Mặc định là"
-
-#. Label of a Check field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
-msgid "Is Default"
-msgstr "Mặc định là"
-
-#. Label of a Check field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the is_dynamic_url (Check) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Is Dynamic URL?"
msgstr ""
-#. Label of a Check field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the is_folder (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Is Folder"
-msgstr "Là thư mục"
+msgstr ""
-#: public/js/frappe/list/list_filter.js:43
+#: frappe/public/js/frappe/list/list_filter.js:43
msgid "Is Global"
-msgstr "Là toàn cầu"
+msgstr ""
-#. Label of a Check field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the is_hidden (Check) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
msgstr ""
-#. Label of a Check field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the is_home_folder (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Is Home Folder"
-msgstr "Là thư mục gốc"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the reqd (Check) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Is Mandatory Field"
-msgstr "là Trường bắt buộc"
+msgstr ""
-#. Label of a Check field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#. Label of the is_optional_state (Check) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Is Optional State"
-msgstr "Là nhà nước tùy chọn"
+msgstr ""
-#. Label of a Check field in DocType 'Contact Email'
-#: contacts/doctype/contact_email/contact_email.json
-msgctxt "Contact Email"
+#. Label of the is_primary (Check) field in DocType 'Contact Email'
+#: frappe/contacts/doctype/contact_email/contact_email.json
msgid "Is Primary"
-msgstr "Là chính"
+msgstr ""
-#. Label of a Check field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the is_primary_contact (Check) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Is Primary Contact"
-msgstr "Là Liên hệ Chính"
+msgstr ""
-#. Label of a Check field in DocType 'Contact Phone'
-#: contacts/doctype/contact_phone/contact_phone.json
-msgctxt "Contact Phone"
+#. Label of the is_primary_mobile_no (Check) field in DocType 'Contact Phone'
+#: frappe/contacts/doctype/contact_phone/contact_phone.json
msgid "Is Primary Mobile"
-msgstr "Là thiết bị di động chính"
+msgstr ""
-#. Label of a Check field in DocType 'Contact Phone'
-#: contacts/doctype/contact_phone/contact_phone.json
-msgctxt "Contact Phone"
+#. Label of the is_primary_phone (Check) field in DocType 'Contact Phone'
+#: frappe/contacts/doctype/contact_phone/contact_phone.json
msgid "Is Primary Phone"
-msgstr "Là điện thoại chính"
+msgstr ""
-#. Label of a Check field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the is_private (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Is Private"
-msgstr "Là bí mật"
+msgstr ""
-#. Label of a Check field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the is_public (Check) field in DocType 'Dashboard Chart'
+#. Label of the is_public (Check) field in DocType 'Number Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Is Public"
-msgstr "Công khai"
+msgstr ""
-#. Label of a Check field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Is Public"
-msgstr "Công khai"
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the is_published_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Is Published Field"
-msgstr "Được đăng Dòng"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1466
+#: frappe/core/doctype/doctype/doctype.py:1515
msgid "Is Published Field must be a valid fieldname"
-msgstr "Trường được công khai phải là một tên trường hợp lệ"
+msgstr ""
-#. Label of a Check field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Label of the is_query_report (Check) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Is Query Report"
msgstr ""
-#. Label of a Check field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
+#. Label of the is_remote_request (Check) field in DocType 'Integration
+#. Request'
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Is Remote Request?"
msgstr ""
-#: core/doctype/doctype/doctype_list.js:48
-msgid "Is Single"
-msgstr "Là Đơn"
+#. 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 a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the issingle (Check) field in DocType 'DocType'
+#. Label of the is_single (Check) field in DocType 'Onboarding Step'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
-msgstr "Là Đơn"
+msgstr ""
-#. Label of a Check field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Is Single"
-msgstr "Là Đơn"
-
-#. Label of a Check field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the is_skipped (Check) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Skipped"
-msgstr "Bị bỏ qua"
+msgstr ""
-#. Label of a Check field in DocType 'Email Rule'
-#: email/doctype/email_rule/email_rule.json
-msgctxt "Email Rule"
+#. Label of the is_spam (Check) field in DocType 'Email Rule'
+#: frappe/email/doctype/email_rule/email_rule.json
msgid "Is Spam"
-msgstr "là Spam"
+msgstr ""
-#. Label of a Check field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
+#. Label of the is_standard (Check) field in DocType 'Navbar Item'
+#. Label of the is_standard (Select) field in DocType 'Report'
+#. Label of the is_standard (Check) field in DocType 'User Type'
+#. Label of the is_standard (Check) field in DocType 'Dashboard'
+#. Label of the is_standard (Check) field in DocType 'Dashboard Chart'
+#. Label of the is_standard (Check) field in DocType 'Form Tour'
+#. Label of the is_standard (Check) field in DocType 'Number Card'
+#. Label of the is_standard (Check) field in DocType 'Notification'
+#: frappe/core/doctype/navbar_item/navbar_item.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/notification/notification.json
msgid "Is Standard"
-msgstr "Là tiêu chuẩn"
+msgstr ""
-#. Label of a Check field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Is Standard"
-msgstr "Là tiêu chuẩn"
-
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Is Standard"
-msgstr "Là tiêu chuẩn"
-
-#. Label of a Check field in DocType 'Navbar Item'
-#: core/doctype/navbar_item/navbar_item.json
-msgctxt "Navbar Item"
-msgid "Is Standard"
-msgstr "Là tiêu chuẩn"
-
-#. Label of a Check field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Is Standard"
-msgstr "Là tiêu chuẩn"
-
-#. Label of a Check field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Is Standard"
-msgstr "Là tiêu chuẩn"
-
-#. Label of a Select field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Is Standard"
-msgstr "Là tiêu chuẩn"
-
-#. Label of a Check field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
-msgid "Is Standard"
-msgstr "Là tiêu chuẩn"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Is Standard"
-msgstr "Là tiêu chuẩn"
-
-#: core/doctype/doctype/doctype_list.js:25
+#. Label of the is_submittable (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:39
msgid "Is Submittable"
-msgstr "CÓ thể đệ trình"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Is Submittable"
-msgstr "CÓ thể đệ trình"
-
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the is_system_generated (Check) field in DocType 'Custom Field'
+#. Label of the is_system_generated (Check) field in DocType 'Customize Form
+#. Field'
+#. Label of the is_system_generated (Check) field in DocType 'Property Setter'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Is System Generated"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Is System Generated"
-msgstr ""
-
-#. Label of a Check field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
-msgid "Is System Generated"
-msgstr ""
-
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the istable (Check) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Is Table"
-msgstr "là Bảng"
+msgstr ""
-#. Label of a Check field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the is_table_field (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Is Table Field"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the is_tree (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Is Tree"
-msgstr "Là cây"
+msgstr ""
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
+#. Label of the is_unique (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Is Unique"
-msgstr "Là duy nhất"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the is_virtual (Check) field in DocType 'DocType'
+#. Label of the is_virtual (Check) field in DocType 'Custom Field'
+#. Label of the is_virtual (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Is Virtual"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Is Virtual"
+#. Label of the is_standard (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Is standard"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Is Virtual"
-msgstr ""
-
-#: core/doctype/file/utils.py:155 utils/file_manager.py:315
+#: frappe/core/doctype/file/utils.py:157 frappe/utils/file_manager.py:311
msgid "It is risky to delete this file: {0}. Please contact your System Manager."
-msgstr "Có rủi ro khi xóa tập tin này: {0}. Vui lòng liên hệ Quản lý Hệ thống của bạn."
+msgstr ""
-#. Label of a Data field in DocType 'Navbar Item'
-#: core/doctype/navbar_item/navbar_item.json
-msgctxt "Navbar Item"
+#. Label of the item_label (Data) field in DocType 'Navbar Item'
+#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Item Label"
-msgstr "Nhãn hàng"
+msgstr ""
-#. Label of a Select field in DocType 'Navbar Item'
-#: core/doctype/navbar_item/navbar_item.json
-msgctxt "Navbar Item"
+#. Label of the item_type (Select) field in DocType 'Navbar Item'
+#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Item Type"
-msgstr "Loại sản phẩm"
+msgstr ""
-#: utils/nestedset.py:234
+#: frappe/utils/nestedset.py:229
msgid "Item cannot be added to its own descendants"
-msgstr "Mẫu hàng không thể được thêm vào các phần sau của mình"
+msgstr ""
#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/printing/doctype/print_format/print_format.json
msgid "JS"
-msgstr "JS"
+msgstr ""
-#. Label of a HTML field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
+#. Label of the js_message (HTML) field in DocType 'Custom HTML Block'
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
msgid "JS Message"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "JSON"
-msgstr "JSON"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "JSON"
-msgstr "JSON"
-
-#. Label of a Code field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "JSON"
-msgstr "JSON"
-
+#. Label of the json (Code) field in DocType 'Report'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Request Structure' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report/report.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "JSON"
-msgstr "JSON"
+msgstr ""
-#. Label of a Code field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the webhook_json (Code) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "JSON Request Body"
-msgstr "Phần thân yêu cầu JSON"
+msgstr ""
-#: templates/signup.html:5
+#: frappe/templates/signup.html:5
msgid "Jane Doe"
msgstr ""
-#. Label of a Code field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the js (Code) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "JavaScript"
-msgstr "JavaScript"
+msgstr ""
#. Description of the 'Javascript' (Code) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#: frappe/core/doctype/report/report.json
msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}"
-msgstr "Định dạng JavaScript: frappe.query_reports ['REPORTNAME'] = {}"
+msgstr ""
-#. Label of a Section Break field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
+#. Label of the javascript (Code) field in DocType 'Report'
+#. Label of the javascript_section (Section Break) field in DocType 'Custom
+#. HTML Block'
+#. Label of the javascript (Code) field in DocType 'Web Page'
+#. Label of the javascript (Code) field in DocType 'Website Script'
+#: frappe/core/doctype/report/report.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_script/website_script.json
msgid "Javascript"
-msgstr "Javascript"
+msgstr ""
-#. Label of a Code field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Javascript"
-msgstr "Javascript"
-
-#. Label of a Code field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Javascript"
-msgstr "Javascript"
-
-#. Label of a Code field in DocType 'Website Script'
-#: website/doctype/website_script/website_script.json
-msgctxt "Website Script"
-msgid "Javascript"
-msgstr "Javascript"
-
-#: www/login.html:71
+#: frappe/www/login.html:74
msgid "Javascript is disabled on your browser"
-msgstr "Javascript bị vô hiệu hóa trên trình duyệt của bạn"
+msgstr ""
#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Jinja"
-msgstr "Jinja"
+msgstr ""
-#. Label of a Link field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Label of the job_id (Data) field in DocType 'Prepared Report'
+#. Label of the job_id (Data) field in DocType 'RQ Job'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Job ID"
msgstr ""
-#. Label of a Data field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
-msgid "Job ID"
-msgstr ""
-
-#. Label of a Link field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
+#. Label of the job_id (Link) field in DocType 'Submission Queue'
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Job Id"
msgstr ""
-#. Label of a Section Break field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the job_info_section (Section Break) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Job Info"
msgstr ""
-#. Label of a Data field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the job_name (Data) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Job Name"
msgstr ""
-#. Label of a Section Break field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the job_status_section (Section Break) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Job Status"
msgstr ""
-#: core/doctype/rq_job/rq_job.js:24
+#: frappe/core/doctype/rq_job/rq_job.js:24
msgid "Job Stopped Successfully"
msgstr ""
-#: core/doctype/rq_job/rq_job.py:122
+#: frappe/core/doctype/rq_job/rq_job.py:113
msgid "Job is not running."
msgstr ""
-#: desk/doctype/event/event.js:51
+#: frappe/desk/doctype/event/event.js:55
msgid "Join video conference with {0}"
msgstr ""
-#: public/js/frappe/form/toolbar.js:355 public/js/frappe/form/toolbar.js:757
+#: frappe/public/js/frappe/form/toolbar.js:395
+#: frappe/public/js/frappe/form/toolbar.js:830
msgid "Jump to field"
-msgstr "Nhảy đến trường"
+msgstr ""
-#: public/js/frappe/utils/number_systems.js:17
-#: public/js/frappe/utils/number_systems.js:31
-#: public/js/frappe/utils/number_systems.js:53
+#: frappe/public/js/frappe/utils/number_systems.js:17
+#: frappe/public/js/frappe/utils/number_systems.js:31
+#: frappe/public/js/frappe/utils/number_systems.js:53
msgctxt "Number system"
msgid "K"
msgstr ""
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Kanban"
-msgstr "Kanban"
-
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Kanban"
-msgstr "Kanban"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/kanban_board/kanban_board.json
+#. 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:498
msgid "Kanban Board"
-msgstr "Kanban Board"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Kanban Board"
-msgstr "Kanban Board"
-
-#. Label of a Link field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Kanban Board"
-msgstr "Kanban Board"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/kanban_board_column/kanban_board_column.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Kanban Board Column"
-msgstr "Cột Kanban"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:385
+#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
msgid "Kanban Board Name"
-msgstr "Tên bảng Kanban"
+msgstr ""
-#. Label of a Data field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Kanban Board Name"
-msgstr "Tên bảng Kanban"
-
-#: public/js/frappe/views/kanban/kanban_view.js:262
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
-#. Label of a Data field in DocType 'DefaultValue'
-#: core/doctype/defaultvalue/defaultvalue.json
-msgctxt "DefaultValue"
-msgid "Key"
-msgstr "Chính"
+#: frappe/public/js/frappe/list/base_list.js:206
+msgid "Kanban View"
+msgstr ""
-#. Label of a Data field in DocType 'Document Share Key'
-#: core/doctype/document_share_key/document_share_key.json
-msgctxt "Document Share Key"
-msgid "Key"
-msgstr "Chính"
+#. Description of a DocType
+#: frappe/core/doctype/activity_log/activity_log.json
+msgid "Keep track of all update feeds"
+msgstr ""
-#. Label of a Data field in DocType 'Query Parameters'
-#: integrations/doctype/query_parameters/query_parameters.json
-msgctxt "Query Parameters"
-msgid "Key"
-msgstr "Chính"
+#. Description of a DocType
+#: frappe/core/doctype/communication/communication.json
+msgid "Keeps track of all communications"
+msgstr ""
-#. Label of a Data field in DocType 'Webhook Data'
-#: integrations/doctype/webhook_data/webhook_data.json
-msgctxt "Webhook Data"
+#. Label of the defkey (Data) field in DocType 'DefaultValue'
+#. Label of the key (Data) field in DocType 'Document Share Key'
+#. Label of the key (Data) field in DocType 'Query Parameters'
+#. Label of the key (Data) field in DocType 'Webhook Data'
+#. Label of the key (Small Text) field in DocType 'Webhook Header'
+#. Label of the key (Data) field in DocType 'Website Meta Tag'
+#: frappe/core/doctype/defaultvalue/defaultvalue.json
+#: frappe/core/doctype/document_share_key/document_share_key.json
+#: frappe/integrations/doctype/query_parameters/query_parameters.json
+#: frappe/integrations/doctype/webhook_data/webhook_data.json
+#: frappe/integrations/doctype/webhook_header/webhook_header.json
+#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Key"
-msgstr "Chính"
-
-#. Label of a Small Text field in DocType 'Webhook Header'
-#: integrations/doctype/webhook_header/webhook_header.json
-msgctxt "Webhook Header"
-msgid "Key"
-msgstr "Chính"
-
-#. Label of a Data field in DocType 'Website Meta Tag'
-#: website/doctype/website_meta_tag/website_meta_tag.json
-msgctxt "Website Meta Tag"
-msgid "Key"
-msgstr "Chính"
+msgstr ""
#. Label of a standard help item
#. Type: Action
-#: hooks.py public/js/frappe/ui/keyboard.js:126
+#: frappe/hooks.py frappe/public/js/frappe/ui/keyboard.js:130
msgid "Keyboard Shortcuts"
-msgstr "Các phím tắt bàn phím"
+msgstr ""
-#: public/js/frappe/utils/number_systems.js:37
+#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Keycloak"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/number_systems.js:37
msgctxt "Number system"
msgid "Kh"
msgstr ""
#. Label of a Card Break in the Website Workspace
-#: website/doctype/help_article/help_article.py:80
-#: website/workspace/website/website.json
+#: frappe/website/doctype/help_article/help_article.py:80
+#: frappe/website/doctype/help_article/templates/help_article_list.html:2
+#: frappe/website/doctype/help_article/templates/help_article_list.html:11
+#: frappe/website/workspace/website/website.json
msgid "Knowledge Base"
-msgstr "Kiến thức cơ bản"
+msgstr ""
#. Name of a role
-#: website/doctype/help_article/help_article.json
+#: frappe/website/doctype/help_article/help_article.json
msgid "Knowledge Base Contributor"
-msgstr "Người đóng góp kiến thức cơ bản"
+msgstr ""
#. Name of a role
-#: website/doctype/help_article/help_article.json
+#: frappe/website/doctype/help_article/help_article.json
msgid "Knowledge Base Editor"
-msgstr "Người biên tập kiến thức nền"
+msgstr ""
-#: public/js/frappe/utils/number_systems.js:27
-#: public/js/frappe/utils/number_systems.js:49
+#: frappe/public/js/frappe/utils/number_systems.js:27
+#: frappe/public/js/frappe/utils/number_systems.js:49
msgctxt "Number system"
msgid "L"
msgstr ""
-#. Label of a Section Break field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_auth_section (Section Break) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Auth"
msgstr ""
-#. Label of a Section Break field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_custom_settings_section (Section Break) field in DocType
+#. 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Custom Settings"
msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_email_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Email Field"
-msgstr "Trường Email LDAP"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_first_name_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP First Name Field"
-msgstr "Tên trường LDAP đầu tiên"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Group Mapping'
-#: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
-msgctxt "LDAP Group Mapping"
+#. Label of the ldap_group (Data) field in DocType 'LDAP Group Mapping'
+#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
msgid "LDAP Group"
-msgstr "Nhóm LDAP"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_group_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Field"
-msgstr "Lĩnh vực nhóm LDAP"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
+#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
msgid "LDAP Group Mapping"
-msgstr "Ánh xạ nhóm LDAP"
+msgstr ""
-#. Label of a Section Break field in DocType 'LDAP Settings'
-#. Label of a Table field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_group_mappings_section (Section Break) field in DocType
+#. 'LDAP Settings'
+#. Label of the ldap_groups (Table) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Mappings"
-msgstr "Ánh xạ nhóm LDAP"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_group_member_attribute (Data) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Member attribute"
msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_last_name_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Last Name Field"
-msgstr "Trường Tên cuối cùng của LDAP"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_middle_name_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Middle Name Field"
-msgstr "Trường tên đệm LDAP"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_mobile_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Mobile Field"
-msgstr "Lĩnh vực di động LDAP"
+msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:160
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163
msgid "LDAP Not Installed"
-msgstr "LDAP không được cài đặt"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_phone_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Phone Field"
-msgstr "Trường điện thoại LDAP"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_search_string (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Search String"
-msgstr "Dãy tìm kiếm LDAP"
+msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:127
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:130
msgid "LDAP Search String must be enclosed in '()' and needs to contian the user placeholder {0}, eg sAMAccountName={0}"
msgstr ""
-#. Label of a Section Break field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_search_and_paths_section (Section Break) field in DocType
+#. 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Search and Paths"
msgstr ""
-#. Label of a Section Break field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_security (Section Break) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Security"
-msgstr "Bảo mật LDAP"
+msgstr ""
-#. Label of a Section Break field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_server_settings_section (Section Break) field in DocType
+#. 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Server Settings"
msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_server_url (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Server Url"
-msgstr "LDAP Server Url"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgid "LDAP Settings"
-msgstr "Cài đặt LDAP"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "LDAP Settings"
-msgstr "Cài đặt LDAP"
+msgstr ""
-#. Label of a Section Break field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_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 "Lập bản đồ và tạo người dùng LDAP"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_username_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Username Field"
-msgstr "Trường tên người dùng LDAP"
+msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:308
-#: integrations/doctype/ldap_settings/ldap_settings.py:427
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:309
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:426
msgid "LDAP is not enabled."
-msgstr "LDAP không được kích hoạt."
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_search_path_group (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP search path for Groups"
msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_search_path_user (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP search path for Users"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:99
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:102
msgid "LDAP settings incorrect. validation response was: {0}"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:474
-#: public/js/frappe/widgets/widget_dialog.js:606
-#: public/js/frappe/widgets/widget_dialog.js:639
-msgid "Label"
-msgstr "Nhãn"
-
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#. Label of the label (Data) field in DocType 'DocField'
+#. Label of the label (Data) field in DocType 'DocType Action'
+#. Label of the label (Data) field in DocType 'Report Column'
+#. Label of the label (Data) field in DocType 'Report Filter'
+#. Label of the label (Data) field in DocType 'Custom Field'
+#. Label of the label (Data) field in DocType 'Customize Form Field'
+#. Label of the label (Data) field in DocType 'DocType Layout Field'
+#. Label of the label (Data) field in DocType 'Desktop Icon'
+#. Label of the label (Data) field in DocType 'Form Tour Step'
+#. Label of the label (Data) field in DocType 'Number Card'
+#. Label of the label (Data) field in DocType 'Workspace Chart'
+#. Label of the label (Data) field in DocType 'Workspace Custom Block'
+#. Label of the label (Data) field in DocType 'Workspace Link'
+#. Label of the label (Data) field in DocType 'Workspace Number Card'
+#. Label of the label (Data) field in DocType 'Workspace Quick List'
+#. Label of the label (Data) field in DocType 'Workspace Shortcut'
+#. Label of the label (Data) field in DocType 'Top Bar Item'
+#. Label of the label (Data) field in DocType 'Web Template Field'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/workspace_chart/workspace_chart.json
+#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json
+#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/printing/page/print_format_builder/print_format_builder.js:474
+#: frappe/public/js/form_builder/components/Field.vue:208
+#: frappe/public/js/frappe/widgets/widget_dialog.js:183
+#: frappe/public/js/frappe/widgets/widget_dialog.js:251
+#: frappe/public/js/frappe/widgets/widget_dialog.js:300
+#: frappe/public/js/frappe/widgets/widget_dialog.js:453
+#: frappe/public/js/frappe/widgets/widget_dialog.js:630
+#: frappe/public/js/frappe/widgets/widget_dialog.js:663
+#: 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 "Nhãn"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Label"
-msgstr "Nhãn"
-
-#. Label of a Data field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Label"
-msgstr "Nhãn"
-
-#. Label of a Data field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Label"
-msgstr "Nhãn"
-
-#. Label of a Data field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Label"
-msgstr "Nhãn"
-
-#. Label of a Data field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Label"
-msgstr "Nhãn"
-
-#. Label of a Data field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
-msgid "Label"
-msgstr "Nhãn"
-
-#. Label of a Data field in DocType 'DocType Layout Field'
-#: custom/doctype/doctype_layout_field/doctype_layout_field.json
-msgctxt "DocType Layout Field"
-msgid "Label"
-msgstr "Nhãn"
-
-#. Label of a Data field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Label"
-msgstr "Nhãn"
-
-#. Label of a Data field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Label"
-msgstr "Nhãn"
-
-#. Label of a Data field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Label"
-msgstr "Nhãn"
-
-#. Label of a Data field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Label"
-msgstr "Nhãn"
-
-#. Label of a Data field in DocType 'Top Bar Item'
-#: website/doctype/top_bar_item/top_bar_item.json
-msgctxt "Top Bar Item"
-msgid "Label"
-msgstr "Nhãn"
-
-#. Label of a Data field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Label"
-msgstr "Nhãn"
-
-#. Label of a Data field in DocType 'Workspace Chart'
-#: desk/doctype/workspace_chart/workspace_chart.json
-msgctxt "Workspace Chart"
-msgid "Label"
-msgstr "Nhãn"
-
-#. Label of a Data field in DocType 'Workspace Custom Block'
-#: desk/doctype/workspace_custom_block/workspace_custom_block.json
-msgctxt "Workspace Custom Block"
-msgid "Label"
-msgstr "Nhãn"
-
-#. Label of a Data field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
-msgid "Label"
-msgstr "Nhãn"
-
-#. Label of a Data field in DocType 'Workspace Number Card'
-#: desk/doctype/workspace_number_card/workspace_number_card.json
-msgctxt "Workspace Number Card"
-msgid "Label"
-msgstr "Nhãn"
-
-#. Label of a Data field in DocType 'Workspace Quick List'
-#: desk/doctype/workspace_quick_list/workspace_quick_list.json
-msgctxt "Workspace Quick List"
-msgid "Label"
-msgstr "Nhãn"
-
-#. Label of a Data field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Label"
-msgstr "Nhãn"
-
-#. Label of a HTML field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the label_help (HTML) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Label Help"
-msgstr "Nhãn Trợ giúp"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the label_and_type (Section Break) field in DocType 'Customize Form
+#. Field'
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Label and Type"
-msgstr "Nhãn và Loại"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.py:141
+#: frappe/custom/doctype/custom_field/custom_field.py:145
msgid "Label is mandatory"
-msgstr "Nhãn là bắt buộc"
+msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the sb0 (Section Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Landing Page"
-msgstr "Trang hạ cánh"
+msgstr ""
-#: public/js/frappe/form/print_utils.js:28
+#: frappe/public/js/frappe/form/print_utils.js:30
msgid "Landscape"
-msgstr "Phong cảnh"
+msgstr ""
#. Name of a DocType
-#: core/doctype/language/language.json printing/page/print/print.js:104
+#. Label of the language (Link) field in DocType 'System Settings'
+#. Label of the language (Link) field in DocType 'Translation'
+#. Label of the language (Link) field in DocType 'User'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/translation/translation.json
+#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104
+#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
-msgstr "Ngôn ngữ"
+msgstr ""
-#. Label of a Link field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Language"
-msgstr "Ngôn ngữ"
-
-#. Label of a Link field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
-msgid "Language"
-msgstr "Ngôn ngữ"
-
-#. Label of a Link field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Language"
-msgstr "Ngôn ngữ"
-
-#. Label of a Data field in DocType 'Language'
-#: core/doctype/language/language.json
-msgctxt "Language"
+#. Label of the language_code (Data) field in DocType 'Language'
+#: frappe/core/doctype/language/language.json
msgid "Language Code"
-msgstr "Mã ngôn ngữ"
+msgstr ""
-#. Label of a Data field in DocType 'Language'
-#: core/doctype/language/language.json
-msgctxt "Language"
+#. Label of the language_name (Data) field in DocType 'Language'
+#: frappe/core/doctype/language/language.json
msgid "Language Name"
-msgstr "Tên ngôn ngữ"
+msgstr ""
-#. Label of a Datetime field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the last_10_active_users (Code) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Last 10 active users"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:628
+msgid "Last 14 Days"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:632
+msgid "Last 30 Days"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:652
+msgid "Last 6 Months"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:624
+msgid "Last 7 Days"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:636
+msgid "Last 90 Days"
+msgstr ""
+
+#. Label of the last_active (Datetime) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Last Active"
-msgstr "Hoạt động cuối"
+msgstr ""
-#. Label of a Datetime field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
+#. Label of the last_backup_on (Datetime) field in DocType 'Google Drive'
+#: frappe/integrations/doctype/google_drive/google_drive.json
msgid "Last Backup On"
-msgstr "Lần sao lưu cuối cùng"
+msgstr ""
-#. Label of a Datetime field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#. Label of the last_execution (Datetime) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Last Execution"
-msgstr "Thi hành lần cuối"
+msgstr ""
-#. Label of a Datetime field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the last_heartbeat (Datetime) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Last Heartbeat"
msgstr ""
-#. Label of a Read Only field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the last_ip (Read Only) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Last IP"
-msgstr "IP cuối cùng"
+msgstr ""
-#. Label of a Text field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the last_known_versions (Text) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Last Known Versions"
-msgstr "Các phiên bản được biết tới cuối cùng"
+msgstr ""
-#. Label of a Read Only field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the last_login (Read Only) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Last Login"
-msgstr "Lần Đăng nhập Cuối"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.js:242
-#: public/js/frappe/views/dashboard/dashboard_view.js:479
+#: frappe/email/doctype/notification/notification.js:32
+msgid "Last Modified Date"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:242
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:480
msgid "Last Modified On"
-msgstr "Sửa đổi lần cuối vào"
+msgstr ""
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/ui/filters/filter.js:644
msgid "Last Month"
-msgstr "Tháng trước"
+msgstr ""
-#: www/complete_signup.html:19
+#. Label of the last_name (Data) field in DocType 'Contact'
+#. Label of the last_name (Data) field in DocType 'User'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
msgid "Last Name"
-msgstr "Tên"
+msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Last Name"
-msgstr "Tên"
-
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Last Name"
-msgstr "Tên"
-
-#. Label of a Date field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the last_password_reset_date (Date) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Last Password Reset Date"
-msgstr "Ngày đặt lại mật khẩu lần cuối"
-
-#. Label of a Date field in DocType 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Last Point Allocation Date"
-msgstr "Ngày phân bổ điểm cuối"
+msgstr ""
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/ui/filters/filter.js:648
msgid "Last Quarter"
-msgstr "Quý cuối cùng"
+msgstr ""
-#. Label of a Datetime field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the last_reset_password_key_generated_on (Datetime) field in
+#. DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Last Reset Password Key Generated On"
msgstr ""
-#. Label of a Datetime field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
+#. Label of the datetime_last_run (Datetime) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Last Run"
+msgstr ""
+
+#. Label of the last_sync_on (Datetime) field in DocType 'Google Contacts'
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Last Sync On"
-msgstr "Đồng bộ lần cuối cùng"
+msgstr ""
-#. Label of a Datetime field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the last_synced_at (Datetime) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Last Synced At"
+msgstr ""
+
+#. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Last Synced On"
-msgstr "Đã đồng bộ hóa lần cuối"
+msgstr ""
-#: model/__init__.py:145 model/meta.py:50 public/js/frappe/model/meta.js:202
-#: public/js/frappe/model/model.js:120
+#: frappe/model/meta.py:55 frappe/public/js/frappe/model/meta.js:205
+#: frappe/public/js/frappe/model/model.js:130
msgid "Last Updated By"
-msgstr "Cập nhật lần cuối bởi"
+msgstr ""
-#: model/__init__.py:141 model/meta.py:49 public/js/frappe/model/meta.js:201
-#: public/js/frappe/model/model.js:116
+#: frappe/model/meta.py:54 frappe/public/js/frappe/model/meta.js:204
+#: frappe/public/js/frappe/model/model.js:126
msgid "Last Updated On"
-msgstr "Lần cập nhật cuối vào"
+msgstr ""
-#. Label of a Link field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the last_user (Link) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Last User"
-msgstr "Người dùng cuối"
+msgstr ""
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/ui/filters/filter.js:640
msgid "Last Week"
-msgstr "Tuần trước"
+msgstr ""
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/ui/filters/filter.js:656
msgid "Last Year"
-msgstr "Năm ngoái"
+msgstr ""
-#: public/js/frappe/widgets/chart_widget.js:698
+#: frappe/public/js/frappe/widgets/chart_widget.js:753
msgid "Last synced {0}"
-msgstr "Đã đồng bộ hóa lần cuối {0}"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:186
+#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
msgstr ""
-#: custom/doctype/customize_form/customize_form.js:178
+#: frappe/custom/doctype/customize_form/customize_form.js:186
msgid "Layout will be reset to standard layout, are you sure you want to do this?"
msgstr ""
-#: desk/page/leaderboard/leaderboard.js:15
-msgid "Leaderboard"
-msgstr "Bảng thành tích"
-
-#. Label of an action in the Onboarding Step 'Customize Print Formats'
-#: custom/onboarding_step/print_format/print_format.json
-msgid "Learn about Standard and Custom Print Formats"
-msgstr ""
-
-#. Title of an Onboarding Step
-#: website/onboarding_step/web_page_tour/web_page_tour.json
-msgid "Learn about Web Pages"
-msgstr ""
-
-#. Label of an action in the Onboarding Step 'Create Custom Fields'
-#: custom/onboarding_step/custom_field/custom_field.json
-msgid "Learn how to add Custom Fields"
-msgstr ""
-
-#: website/web_template/section_with_features/section_with_features.html:26
+#: frappe/website/web_template/section_with_features/section_with_features.html:26
msgid "Learn more"
msgstr ""
-#. Label of an action in the Onboarding Step 'Generate Custom Reports'
-#: custom/onboarding_step/report_builder/report_builder.json
-msgid "Learn more about Report Builders"
-msgstr ""
-
-#. Label of an action in the Onboarding Step 'Custom Document Types'
-#: custom/onboarding_step/custom_doctype/custom_doctype.json
-msgid "Learn more about creating new DocTypes"
-msgstr ""
-
#. Description of the 'Repeat Till' (Date) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/desk/doctype/event/event.json
msgid "Leave blank to repeat always"
-msgstr "Để trống để lặp lại luôn luôn"
+msgstr ""
-#: core/doctype/communication/mixins.py:206
-#: email/doctype/email_account/email_account.py:624
+#: frappe/core/doctype/communication/mixins.py:207
+#: frappe/email/doctype/email_account/email_account.py:722
msgid "Leave this conversation"
-msgstr "Để lại cuộc trò chuyện này"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Ledger"
msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Left"
-msgstr "Trái"
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
-msgid "Left"
-msgstr "Trái"
-
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Left"
-msgstr "Trái"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:483
+#: frappe/printing/page/print_format_builder/print_format_builder.js:483
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:155
msgctxt "alignment"
msgid "Left"
-msgstr "Trái"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Left Bottom"
msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Left Center"
msgstr ""
-#: email/doctype/email_unsubscribe/email_unsubscribe.py:59
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:58
msgid "Left this conversation"
-msgstr "Còn lại cuộc trò chuyện này"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Legal"
msgstr ""
-#. Label of a Int field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. 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 "Chiều dài"
+msgstr ""
-#. Label of a Int field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Length"
-msgstr "Chiều dài"
-
-#. Label of a Int field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Length"
-msgstr "Chiều dài"
-
-#: public/js/frappe/ui/chart.js:11
+#: frappe/public/js/frappe/ui/chart.js:11
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr ""
-#: database/schema.py:133
+#: frappe/database/schema.py:134
msgid "Length of {0} should be between 1 and 1000"
-msgstr "Chiều dài của {0} nên nằm trong khoảng từ 1 đến 1000"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:439
+#: frappe/public/js/frappe/widgets/chart_widget.js:729
+msgid "Less"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:24
+msgid "Less Than"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:26
+msgid "Less Than Or Equal To"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:434
msgid "Let us continue with the onboarding"
msgstr ""
-#: public/js/frappe/views/workspace/blocks/onboarding.js:94
-#: public/js/frappe/widgets/onboarding_widget.js:602
+#: frappe/public/js/frappe/views/workspace/blocks/onboarding.js:94
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:597
msgid "Let's Get Started"
-msgstr "Bắt đầu nào"
-
-#. Title of the Module Onboarding 'Website'
-#: website/module_onboarding/website/website.json
-msgid "Let's Set Up Your Website."
msgstr ""
-#: utils/password_strength.py:113
+#: frappe/utils/password_strength.py:111
msgid "Let's avoid repeated words and characters"
-msgstr "Hãy tránh những từ và ký tự lặp đi lặp lại"
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:459
+#: frappe/desk/page/setup_wizard/setup_wizard.js:474
msgid "Let's set up your account"
msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:268
-#: public/js/frappe/widgets/onboarding_widget.js:309
-#: public/js/frappe/widgets/onboarding_widget.js:380
-#: public/js/frappe/widgets/onboarding_widget.js:419
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:263
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:304
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:375
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:414
msgid "Let's take you back to onboarding"
-msgstr "Hãy đưa bạn trở lại giới thiệu"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Letter"
-msgstr "Chữ"
+msgstr ""
+#. Label of the letter_head (Link) field in DocType 'Report'
#. Name of a DocType
-#: printing/doctype/letter_head/letter_head.json
-#: printing/page/print/print.js:127 public/js/frappe/form/print_utils.js:18
-#: public/js/frappe/list/bulk_operations.js:43
+#: frappe/core/doctype/report/report.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/page/print/print.js:127
+#: frappe/public/js/frappe/form/print_utils.js:20
+#: 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 "Tiêu đề trang"
+msgstr ""
-#. Label of a Link field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Letter Head"
-msgstr "Tiêu đề trang"
-
-#. Label of a Select field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the source (Select) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Letter Head Based On"
-msgstr "Đầu thư dựa trên"
+msgstr ""
-#. Label of a Section Break field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the letter_head_image_section (Section Break) field in DocType
+#. 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Letter Head Image"
-msgstr "Hình ảnh đầu thư"
+msgstr ""
-#. Label of a Data field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the letter_head_name (Data) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:198
msgid "Letter Head Name"
-msgstr "Tên tiêu đề trang"
+msgstr ""
-#: printing/doctype/letter_head/letter_head.py:45
+#: frappe/printing/doctype/letter_head/letter_head.js:30
+msgid "Letter Head Scripts"
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.py:48
msgid "Letter Head cannot be both disabled and default"
msgstr ""
#. Description of the 'Header HTML' (HTML Editor) field in DocType 'Letter
#. Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Letter Head in HTML"
-msgstr "Tiêu đề trang HTML"
+msgstr ""
-#: core/page/permission_manager/permission_manager.js:213
+#. Label of the permlevel (Int) field in DocType 'Custom DocPerm'
+#. Label of the permlevel (Int) field in DocType 'DocPerm'
+#. Label of the level (Select) field in DocType 'Help Article'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/page/permission_manager/permission_manager.js:144
+#: frappe/core/page/permission_manager/permission_manager.js:220
+#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
-msgstr "Mức độ"
+msgstr ""
-#. Label of a Int field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Level"
-msgstr "Mức độ"
-
-#. Label of a Int field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Level"
-msgstr "Mức độ"
-
-#. Label of a Select field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
-msgid "Level"
-msgstr "Mức độ"
-
-#: core/page/permission_manager/permission_manager.js:450
+#: frappe/core/page/permission_manager/permission_manager.js:467
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
-msgstr "Cấp 0 dành cho quyền cấp tài liệu, cấp cao hơn cho quyền cấp trường."
+msgstr ""
-#. Label of a Data field in DocType 'Review Level'
-#: social/doctype/review_level/review_level.json
-msgctxt "Review Level"
-msgid "Level Name"
-msgstr "Tên cấp"
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:94
+msgid "Library"
+msgstr ""
-#. Label of a Markdown Editor field in DocType 'Package'
-#: core/doctype/package/package.json
-msgctxt "Package"
+#. Label of the license (Markdown Editor) field in DocType 'Package'
+#: frappe/core/doctype/package/package.json frappe/www/attribution.html:36
msgid "License"
-msgstr "bằng"
+msgstr ""
-#. Label of a Select field in DocType 'Package'
-#: core/doctype/package/package.json
-msgctxt "Package"
+#. Label of the license_type (Select) field in DocType 'Package'
+#: frappe/core/doctype/package/package.json
msgid "License Type"
msgstr ""
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Light"
msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Light Blue"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Light Blue"
msgstr ""
-#. Label of a Link field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the light_color (Link) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Light Color"
-msgstr "Màu sáng"
+msgstr ""
-#: public/js/frappe/ui/theme_switcher.js:60
+#: frappe/public/js/frappe/ui/theme_switcher.js:60
msgid "Light Theme"
msgstr ""
-#: public/js/frappe/ui/filters/filter.js:18
-msgid "Like"
-msgstr "Giống"
-
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
-msgstr "Giống"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Like"
-msgstr "Giống"
-
-#. Label of a Int field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the like_limit (Int) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Like limit"
msgstr ""
#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Like limit per hour"
msgstr ""
-#: templates/includes/likes/likes.py:30
+#: frappe/templates/includes/likes/likes.py:30
msgid "Like on {0}: {1}"
msgstr ""
-#: desk/like.py:91
+#: frappe/desk/like.py:92
msgid "Liked"
-msgstr "đã thích"
+msgstr ""
-#: model/__init__.py:149 model/meta.py:53 public/js/frappe/model/meta.js:205
-#: public/js/frappe/model/model.js:124
+#: frappe/model/meta.py:58 frappe/public/js/frappe/model/meta.js:208
+#: frappe/public/js/frappe/model/model.js:134
msgid "Liked By"
-msgstr "đã thích bởi"
+msgstr ""
-#. Label of a Int field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
+#. Label of the likes (Int) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
msgid "Likes"
-msgstr "các lượt thích"
+msgstr ""
-#. Label of a Int field in DocType 'Bulk Update'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
+#. Label of the limit (Int) field in DocType 'Bulk Update'
+#: frappe/desk/doctype/bulk_update/bulk_update.json
msgid "Limit"
-msgstr "Giới hạn"
+msgstr ""
-#. Label of a Check field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
+#. Label of the limit_no_of_backups (Check) field in DocType 'Dropbox Settings'
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
msgid "Limit Number of DB Backups"
-msgstr "Giới hạn số lượng bản sao lưu DB"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
-msgstr "Hàng"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Link"
-msgstr "Liên kết"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Link"
-msgstr "Liên kết"
-
-#. Label of a Small Text field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Link"
-msgstr "Liên kết"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Link"
-msgstr "Liên kết"
-
-#. Label of a Data field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "Link"
-msgstr "Liên kết"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Link"
-msgstr "Liên kết"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Link"
-msgstr "Liên kết"
-
-#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Link"
-msgstr "Liên kết"
-
-#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Link"
-msgstr "Liên kết"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the link (Long Text) field in DocType 'Changelog Feed'
+#. Label of the link (Small Text) field in DocType 'Desktop Icon'
+#. Label of the link (Small Text) field in DocType 'Notification Log'
+#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Type' (Select) field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:128
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Link"
-msgstr "Liên kết"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Link Cards"
-msgstr "Thẻ liên kết"
+msgstr ""
-#. Label of a Int field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Label of the link_count (Int) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Link Count"
msgstr ""
-#. Label of a Section Break field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Label of the link_details_section (Section Break) field in DocType
+#. 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Link Details"
msgstr ""
-#. Label of a Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. Label of the link_doctype (Link) field in DocType 'Activity Log'
+#. Label of the link_doctype (Link) field in DocType 'Communication Link'
+#. Label of the link_doctype (Link) field in DocType 'DocType Link'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication_link/communication_link.json
+#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Link DocType"
-msgstr "liên kết kiểu văn bản"
+msgstr ""
-#. Label of a Link field in DocType 'Communication Link'
-#: core/doctype/communication_link/communication_link.json
-msgctxt "Communication Link"
-msgid "Link DocType"
-msgstr "liên kết kiểu văn bản"
-
-#. Label of a Link field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
-msgid "Link DocType"
-msgstr "liên kết kiểu văn bản"
-
-#. Label of a Link field in DocType 'Dynamic Link'
-#: core/doctype/dynamic_link/dynamic_link.json
-msgctxt "Dynamic Link"
+#. Label of the link_doctype (Link) field in DocType 'Dynamic Link'
+#: frappe/core/doctype/dynamic_link/dynamic_link.json
msgid "Link Document Type"
-msgstr "Loại tài liệu liên kết"
+msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:403
-#: workflow/doctype/workflow_action/workflow_action.py:202
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:406
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:202
msgid "Link Expired"
-msgstr "Liên kết đã hết hạn"
+msgstr ""
-#. Label of a Data field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
+#. Label of the link_field_results_limit (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Link Field Results Limit"
+msgstr ""
+
+#. Label of the link_fieldname (Data) field in DocType 'DocType Link'
+#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Link Fieldname"
-msgstr "Tên trường liên kết"
+msgstr ""
-#. Label of a JSON field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the link_filters (JSON) field in DocType 'DocField'
+#. Label of the link_filters (JSON) field in DocType 'Custom Field'
+#. Label of the link_filters (JSON) field in DocType 'Customize Form'
+#. Label of the link_filters (JSON) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Link Filters"
msgstr ""
-#. Label of a JSON field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Link Filters"
-msgstr ""
-
-#. Label of a JSON field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Link Filters"
-msgstr ""
-
-#. Label of a JSON field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Link Filters"
-msgstr ""
-
-#. Label of a Dynamic Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. Label of the link_name (Dynamic Link) field in DocType 'Activity Log'
+#. Label of the link_name (Dynamic Link) field in DocType 'Communication Link'
+#. Label of the link_name (Dynamic Link) field in DocType 'Dynamic Link'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication_link/communication_link.json
+#: frappe/core/doctype/dynamic_link/dynamic_link.json
msgid "Link Name"
-msgstr "tên liên kết"
+msgstr ""
-#. Label of a Dynamic Link field in DocType 'Communication Link'
-#: core/doctype/communication_link/communication_link.json
-msgctxt "Communication Link"
-msgid "Link Name"
-msgstr "tên liên kết"
-
-#. Label of a Dynamic Link field in DocType 'Dynamic Link'
-#: core/doctype/dynamic_link/dynamic_link.json
-msgctxt "Dynamic Link"
-msgid "Link Name"
-msgstr "tên liên kết"
-
-#. Label of a Read Only field in DocType 'Communication Link'
-#: core/doctype/communication_link/communication_link.json
-msgctxt "Communication Link"
+#. Label of the link_title (Read Only) field in DocType 'Communication Link'
+#. Label of the link_title (Read Only) field in DocType 'Dynamic Link'
+#: frappe/core/doctype/communication_link/communication_link.json
+#: frappe/core/doctype/dynamic_link/dynamic_link.json
msgid "Link Title"
-msgstr "Tiêu đề đường dẫn"
+msgstr ""
-#. Label of a Read Only field in DocType 'Dynamic Link'
-#: core/doctype/dynamic_link/dynamic_link.json
-msgctxt "Dynamic Link"
-msgid "Link Title"
-msgstr "Tiêu đề đường dẫn"
-
-#. Label of a Dynamic Link field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Label of the link_to (Dynamic Link) field in DocType 'Workspace'
+#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Link'
+#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/views/workspace/workspace.js:418
+#: frappe/public/js/frappe/widgets/widget_dialog.js:281
+#: frappe/public/js/frappe/widgets/widget_dialog.js:414
msgid "Link To"
-msgstr "Liên kết đến"
+msgstr ""
-#. Label of a Dynamic Link field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Link To"
-msgstr "Liên kết đến"
+#: frappe/public/js/frappe/widgets/widget_dialog.js:350
+msgid "Link To in Row"
+msgstr ""
-#. Label of a Select field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Label of the link_type (Select) field in DocType 'Workspace'
+#. Label of the link_type (Select) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
+#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
msgstr ""
-#: website/doctype/about_us_settings/about_us_settings.js:6
+#: frappe/public/js/frappe/widgets/widget_dialog.js:346
+msgid "Link Type in Row"
+msgstr ""
+
+#: frappe/website/doctype/about_us_settings/about_us_settings.js:6
msgid "Link for About Us Page is \"/about\"."
msgstr ""
#. Description of the 'Home Page' (Data) field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Link that is the website home page. Standard Links (home, login, products, blog, about, contact)"
msgstr ""
#. Description of the 'URL' (Data) field in DocType 'Top Bar Item'
-#: website/doctype/top_bar_item/top_bar_item.json
-msgctxt "Top Bar Item"
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Link to the page you want to open. Leave blank if you want to make it a group parent."
-msgstr "Liên kết với các trang web mà bạn muốn mở. Để trống nếu bạn muốn làm cho nó một nhóm gốc."
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Linked"
-msgstr "Liên kết"
-
#. Option for the 'Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
msgid "Linked"
-msgstr "Liên kết"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Linked Documents"
-msgstr "Tài liệu liên kết"
-
-#: public/js/frappe/form/linked_with.js:23
+#: frappe/public/js/frappe/form/linked_with.js:23
msgid "Linked With"
-msgstr "Liên kết với"
+msgstr ""
-#: contacts/doctype/address/address.js:39
-#: contacts/doctype/contact/contact.js:82 public/js/frappe/form/toolbar.js:366
+#. Label of the links (Table) field in DocType 'Address'
+#. Label of the links (Table) field in DocType 'Contact'
+#. Label of the links_section (Tab Break) field in DocType 'DocType'
+#. Label of the links (Table) field in DocType 'Customize Form'
+#. Label of the links (Table) field in DocType 'Workspace'
+#: frappe/contacts/doctype/address/address.js:39
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.js:92
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Links"
-msgstr "Liên kết"
-
-#. Label of a Table field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Links"
-msgstr "Liên kết"
-
-#. Label of a Table field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Links"
-msgstr "Liên kết"
-
-#. Label of a Table field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Links"
-msgstr "Liên kết"
-
-#. Label of a Table field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Links"
-msgstr "Liên kết"
-
-#. Label of a Table field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Links"
-msgstr "Liên kết"
+msgstr ""
#. Option for the 'Apply To' (Select) field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
-msgid "List"
-msgstr "Danh sách"
-
#. Option for the 'View' (Select) field in DocType 'Form Tour'
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "List"
-msgstr "Danh sách"
-
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/utils/utils.js:923
msgid "List"
-msgstr "Danh sách"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the list__search_settings_section (Section Break) field in DocType
+#. 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "List / Search Settings"
msgstr ""
-#. Label of a Table field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the list_columns (Table) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "List Columns"
msgstr ""
#. Name of a DocType
-#: desk/doctype/list_filter/list_filter.json
+#: frappe/desk/doctype/list_filter/list_filter.json
msgid "List Filter"
-msgstr "Lọc danh sách"
-
-#. Label of a HTML field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "List Setting Message"
msgstr ""
-#: public/js/frappe/list/list_view.js:1708
+#. 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:1846
msgctxt "Button in list view menu"
msgid "List Settings"
-msgstr "Cài đặt danh sách"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "List Settings"
-msgstr "Cài đặt danh sách"
-
-#. Label of a Section Break field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
-msgid "List Settings"
-msgstr "Cài đặt danh sách"
-
-#. Label of a Section Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "List Settings"
-msgstr "Cài đặt danh sách"
+#: frappe/public/js/frappe/list/base_list.js:202
+msgid "List View"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/list_view_settings/list_view_settings.json
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "List View Settings"
-msgstr "Cài đặt Chế độ xem Danh sách"
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:161
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:161
msgid "List a document type"
-msgstr "Liệt kê một loại tài liệu"
+msgstr ""
#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]"
-msgstr "Danh sách như [{ \"label\": _ ( \"Công việc\"), \"tuyến đường\": \"công việc\"}]"
-
#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]"
-msgstr "Danh sách như [{ \"label\": _ ( \"Công việc\"), \"tuyến đường\": \"công việc\"}]"
+msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:526
+#. Description of the 'Send Notification to' (Small Text) field in DocType
+#. 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "List of email addresses, separated by comma or new line."
+msgstr ""
+
+#. Description of a DocType
+#: frappe/core/doctype/patch_log/patch_log.json
+msgid "List of patches executed"
+msgstr ""
+
+#. Label of the list_setting_message (HTML) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "List setting message"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542
msgid "Lists"
msgstr ""
#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Load Balancing"
-msgstr "Cân bằng tải"
+msgstr ""
-#: website/doctype/blog_post/templates/blog_post_list.html:50
+#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
+#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
-msgstr "Tải thêm"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:214
+#: frappe/public/js/frappe/form/footer/form_timeline.js:215
msgctxt "Form timeline"
msgid "Load More Communications"
msgstr ""
-#: core/page/permission_manager/permission_manager.js:165
-#: public/js/frappe/list/base_list.js:465
-msgid "Loading"
-msgstr "Đang tải"
-
-#: core/doctype/data_import/data_import.js:262
-msgid "Loading import file..."
-msgstr "Đang tải tệp nhập ..."
-
-#: desk/page/user_profile/user_profile_controller.js:20
-msgid "Loading user profile"
+#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
+msgid "Load more"
msgstr ""
-#: public/js/frappe/form/sidebar/share.js:51
+#: frappe/core/page/permission_manager/permission_manager.js:172
+#: frappe/public/js/frappe/form/controls/multicheck.js:13
+#: frappe/public/js/frappe/form/linked_with.js:13
+#: frappe/public/js/frappe/list/base_list.js:511
+#: frappe/public/js/frappe/list/list_view.js:360
+#: frappe/public/js/frappe/ui/listing.html:16
+#: frappe/public/js/frappe/views/reports/query_report.js:1085
+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:8
+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:176
+#: frappe/public/js/frappe/widgets/quick_list_widget.js:129
msgid "Loading..."
-msgstr "Đang tải..."
+msgstr ""
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the location (Data) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Location"
-msgstr "Vị trí"
+msgstr ""
-#. Label of a Code field in DocType 'Package Import'
-#: core/doctype/package_import/package_import.json
-msgctxt "Package Import"
+#. Label of the log (Code) field in DocType 'Package Import'
+#: frappe/core/doctype/package_import/package_import.json
msgid "Log"
-msgstr "Đăng nhập"
+msgstr ""
-#. Label of a Section Break field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the log_api_requests (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Log API Requests"
+msgstr ""
+
+#. Label of the log_data_section (Section Break) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "Log Data"
-msgstr "Đăng nhập dữ liệu"
+msgstr ""
-#. Label of a Link field in DocType 'Logs To Clear'
-#: core/doctype/logs_to_clear/logs_to_clear.json
-msgctxt "Logs To Clear"
+#. Label of the ref_doctype (Link) field in DocType 'Logs To Clear'
+#: frappe/core/doctype/logs_to_clear/logs_to_clear.json
msgid "Log DocType"
msgstr ""
-#: templates/emails/login_with_email_link.html:28
+#: frappe/templates/emails/login_with_email_link.html:27
msgid "Log In To {0}"
msgstr ""
-#. Label of a Int field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
+#. Label of the log_index (Int) field in DocType 'Data Import Log'
+#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Log Index"
msgstr ""
#. Name of a DocType
-#: core/doctype/log_setting_user/log_setting_user.json
+#: frappe/core/doctype/log_setting_user/log_setting_user.json
msgid "Log Setting User"
-msgstr "Người dùng cài đặt nhật ký"
+msgstr ""
#. Name of a DocType
-#: core/doctype/log_settings/log_settings.json
+#: frappe/core/doctype/log_settings/log_settings.json
+#: frappe/public/js/frappe/logtypes.js:20
msgid "Log Settings"
-msgstr "Cài đặt nhật ký"
+msgstr ""
-#: www/app.py:21
+#: frappe/www/app.py:23
msgid "Log in to access this page."
-msgstr "Đăng nhập để truy cập trang này."
+msgstr ""
#. Label of a standard navbar item
#. Type: Action
-#: hooks.py website/doctype/website_settings/website_settings.py:182
+#: frappe/hooks.py
+#: frappe/website/doctype/website_settings/website_settings.py:182
msgid "Log out"
msgstr ""
-#: handler.py:123
+#: frappe/handler.py:118
msgid "Logged Out"
-msgstr "Đăng suất"
-
-#: public/js/frappe/web_form/webform_script.js:16
-#: templates/discussions/discussions_section.html:60
-#: templates/discussions/reply_section.html:43
-#: templates/includes/navbar/dropdown_login.html:15
-#: templates/includes/navbar/navbar_login.html:24
-#: website/page_renderers/not_permitted_page.py:22 www/login.html:42
-msgid "Login"
-msgstr "Đăng nhập"
+msgstr ""
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. Label of the security_tab (Tab Break) field in DocType 'System Settings'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/public/js/frappe/web_form/webform_script.js:16
+#: frappe/templates/discussions/discussions_section.html:60
+#: frappe/templates/discussions/reply_section.html:44
+#: frappe/templates/includes/navbar/dropdown_login.html:15
+#: frappe/templates/includes/navbar/navbar_login.html:25
+#: frappe/website/page_renderers/not_permitted_page.py:24
+#: frappe/www/login.html:45
msgid "Login"
-msgstr "Đăng nhập"
+msgstr ""
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Login"
-msgstr "Đăng nhập"
-
-#. Label of a Int field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the login_after (Int) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Login After"
-msgstr "Sau khi đăng nhập"
+msgstr ""
-#. Label of a Int field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the login_before (Int) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Login Before"
-msgstr "Trước khi đăng nhập"
+msgstr ""
-#: public/js/frappe/desk.js:235
+#: frappe/public/js/frappe/desk.js:256
msgid "Login Failed please try again"
msgstr ""
-#: email/doctype/email_account/email_account.py:134
+#: frappe/email/doctype/email_account/email_account.py:144
msgid "Login Id is required"
-msgstr "Id đăng nhập là cần thiết"
+msgstr ""
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the login_methods_section (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Login Methods"
msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the misc_section (Section Break) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Login Page"
msgstr ""
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Login Required"
-msgstr "Đăng nhập được yêu cầu"
-
-#: www/login.py:137
+#: frappe/www/login.py:152
msgid "Login To {0}"
msgstr ""
-#: twofactor.py:265
+#: frappe/twofactor.py:260
msgid "Login Verification Code from {}"
-msgstr "Mã xác minh đăng nhập từ {}"
-
-#: www/login.html:97
-msgid "Login With {0}"
msgstr ""
-#: templates/emails/new_message.html:4
+#: frappe/templates/emails/new_message.html:4
msgid "Login and view in Browser"
-msgstr "Đăng nhập và xem trong Trình duyệt"
+msgstr ""
-#: website/doctype/web_form/web_form.js:358
+#: frappe/website/doctype/web_form/web_form.js:367
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr ""
-#: auth.py:322 auth.py:325
+#: frappe/templates/includes/login/login.js:69
+msgid "Login link sent to your email"
+msgstr ""
+
+#: frappe/auth.py:339 frappe/auth.py:342
msgid "Login not allowed at this time"
-msgstr "Đăng nhập không được phép tại thời điểm này"
+msgstr ""
-#: twofactor.py:165
+#. Label of the login_required (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Login required"
+msgstr ""
+
+#: frappe/twofactor.py:164
msgid "Login session expired, refresh page to retry"
-msgstr "Thời gian đăng nhập hết hạn, trang làm mới để thử lại"
+msgstr ""
-#: templates/includes/comments/comments.html:110
+#: frappe/templates/includes/comments/comments.html:110
msgid "Login to comment"
-msgstr "Đăng nhập để bình luận"
+msgstr ""
-#: templates/includes/comments/comments.html:6
+#: frappe/templates/includes/comments/comments.html:6
msgid "Login to start a new discussion"
msgstr ""
-#: www/login.html:61
+#: frappe/www/login.html:64
msgid "Login to {0}"
msgstr ""
-#: www/login.html:106
+#: frappe/templates/includes/login/login.js:319
+msgid "Login token required"
+msgstr ""
+
+#: frappe/www/login.html:126 frappe/www/login.html:210
msgid "Login with Email Link"
msgstr ""
-#: www/login.html:46
-msgid "Login with LDAP"
-msgstr "Đăng nhập với LDAP"
+#: frappe/www/login.html:116
+msgid "Login with Frappe Cloud"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: 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 a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the login_with_email_link_expiry (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Login with email link expiry (in minutes)"
msgstr ""
-#: auth.py:131
+#: frappe/auth.py:144
msgid "Login with username and password is not allowed."
msgstr ""
-#. Label of a Int field in DocType 'Navbar Settings'
-#: core/doctype/navbar_settings/navbar_settings.json
-msgctxt "Navbar Settings"
-msgid "Logo Width"
-msgstr "Chiều rộng logo"
+#: frappe/www/login.html:100
+msgid "Login with {0}"
+msgstr ""
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
+#: frappe/www/me.html:84
msgid "Logout"
-msgstr "Đăng xuất"
+msgstr ""
-#: core/doctype/user/user.js:179
+#: frappe/core/doctype/user/user.js:197
msgid "Logout All Sessions"
-msgstr "Đăng xuất tất cả các phiên"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the logout_on_password_reset (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Logout All Sessions on Password Reset"
-msgstr "Đăng xuất Tất cả các phiên khi Đặt lại mật khẩu"
+msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the logout_all_sessions (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Logout From All Devices After Changing Password"
-msgstr "Đăng xuất khỏi tất cả các thiết bị sau khi thay đổi mật khẩu"
-
-#. Label of a Card Break in the Users Workspace
-#: core/workspace/users/users.json
-msgid "Logs"
-msgstr "Các đăng nhập"
+msgstr ""
#. Group in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of a Card Break in the Users Workspace
+#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
msgid "Logs"
-msgstr "Các đăng nhập"
+msgstr ""
#. Name of a DocType
-#: core/doctype/logs_to_clear/logs_to_clear.json
+#: frappe/core/doctype/logs_to_clear/logs_to_clear.json
msgid "Logs To Clear"
msgstr ""
-#. Label of a Table field in DocType 'Log Settings'
-#: core/doctype/log_settings/log_settings.json
-msgctxt "Log Settings"
+#. Label of the logs_to_clear (Table) field in DocType 'Log Settings'
+#: frappe/core/doctype/log_settings/log_settings.json
msgid "Logs to Clear"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Long Text"
-msgstr "Tiêu đề dài"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Long Text"
-msgstr "Tiêu đề dài"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Long Text"
-msgstr "Tiêu đề dài"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:322
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:317
msgid "Looks like you didn't change the value"
-msgstr "Có vẻ như bạn đã không thay đổi giá trị"
+msgstr ""
-#: www/third_party_apps.html:57
+#: frappe/www/third_party_apps.html:59
msgid "Looks like you haven’t added any third party apps."
msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:190
-msgid "Low"
-msgstr "Thấp"
+#: frappe/public/js/frappe/ui/notifications/notifications.js:315
+msgid "Looks like you haven’t received any notifications."
+msgstr ""
#. Option for the 'Priority' (Select) field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:217
msgid "Low"
-msgstr "Thấp"
+msgstr ""
-#: public/js/frappe/utils/number_systems.js:13
+#: frappe/public/js/frappe/utils/number_systems.js:13
msgctxt "Number system"
msgid "M"
msgstr ""
#. Option for the 'License Type' (Select) field in DocType 'Package'
-#: core/doctype/package/package.json
-msgctxt "Package"
+#: frappe/core/doctype/package/package.json
msgid "MIT License"
msgstr ""
-#. Label of a Text Editor field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/desk/page/setup_wizard/install_fixtures.py:48
+msgid "Madam"
+msgstr ""
+
+#. Label of the main_section (Text Editor) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Main Section"
-msgstr "Mục chính"
+msgstr ""
-#. Label of a HTML Editor field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the main_section_html (HTML Editor) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Main Section (HTML)"
-msgstr "Phần chính (HTML)"
+msgstr ""
-#. Label of a Markdown Editor field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the main_section_md (Markdown Editor) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Main Section (Markdown)"
-msgstr "Phần chính (Markdown)"
+msgstr ""
#. Name of a role
-#: contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/contact/contact.json
msgid "Maintenance Manager"
-msgstr "Quản lý bảo trì"
+msgstr ""
#. Name of a role
-#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
msgid "Maintenance User"
-msgstr "Bảo trì tài khoản"
+msgstr ""
-#. Label of a Int field in DocType 'Package Release'
-#: core/doctype/package_release/package_release.json
-msgctxt "Package Release"
+#. Label of the major (Int) field in DocType 'Package Release'
+#: frappe/core/doctype/package_release/package_release.json
msgid "Major"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Make \"name\" searchable in Global Search"
-msgstr "Tạo \"tên\" tìm kiếm trong toàn cầu Tìm kiếm"
-
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Make Attachments Public by Default"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the make_attachment_public (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Make Attachment Public (by default)"
+msgstr ""
+
+#. Label of the make_attachments_public (Check) field in DocType 'DocType'
+#. Label of the make_attachments_public (Check) field in DocType 'Customize
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make Attachments Public by Default"
msgstr ""
#. Description of the 'Disable Username/Password Login' (Check) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Make sure to configure a Social Login Key before disabling to prevent lockout"
msgstr ""
-#: utils/password_strength.py:94
+#: frappe/utils/password_strength.py:92
msgid "Make use of longer keyboard patterns"
-msgstr "Sử dụng các mẫu bàn phím lâu dài hơn"
+msgstr ""
-#: public/js/frappe/form/multi_select_dialog.js:86
+#: frappe/public/js/frappe/form/multi_select_dialog.js:87
msgid "Make {0}"
-msgstr "Tạo {0}"
+msgstr ""
-#: website/doctype/web_page/web_page.js:77
+#: frappe/website/doctype/web_page/web_page.js:77
msgid "Makes the page public"
-msgstr "Đặt trang ở chế độ công khai"
-
-#: www/me.html:50
-msgid "Manage third party apps"
msgstr ""
-#: www/me.html:59
-msgid "Manage your apps"
+#: frappe/desk/page/setup_wizard/install_fixtures.py:28
+msgid "Male"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Mandatory"
-msgstr "Bắt buộc"
+#: frappe/www/me.html:56
+msgid "Manage 3rd party apps"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Mandatory"
-msgstr "Bắt buộc"
+#. Description of a Card Break in the Tools Workspace
+#: frappe/automation/workspace/tools/tools.json
+msgid "Manage your data"
+msgstr ""
-#. Label of a Check field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
+#. 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 "Bắt buộc"
+msgstr ""
-#. Label of a Check field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Mandatory"
-msgstr "Bắt buộc"
-
-#. Label of a Check field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Mandatory"
-msgstr "Bắt buộc"
-
-#. Label of a Code field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the mandatory_depends_on (Code) field in DocType 'Custom Field'
+#. Label of the mandatory_depends_on (Code) field in DocType 'Customize Form
+#. Field'
+#. Label of the mandatory_depends_on (Code) field in DocType 'Web Form Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Mandatory Depends On"
-msgstr "Bắt buộc phụ thuộc vào"
+msgstr ""
-#. Label of a Code field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Mandatory Depends On"
-msgstr "Bắt buộc phụ thuộc vào"
-
-#. Label of a Code field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Mandatory Depends On"
-msgstr "Bắt buộc phụ thuộc vào"
-
-#. Label of a Code field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the mandatory_depends_on (Code) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: website/doctype/web_form/web_form.py:412
+#: frappe/website/doctype/web_form/web_form.py:473
msgid "Mandatory Information missing:"
-msgstr "Thông tin bắt buộc đang bị mất"
+msgstr ""
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120
msgid "Mandatory field: set role for"
-msgstr "lĩnh vực bắt buộc: thiết lập vai trò cho"
+msgstr ""
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124
msgid "Mandatory field: {0}"
-msgstr "lĩnh vực bắt buộc: {0}"
+msgstr ""
-#: public/js/frappe/form/save.js:167
+#: frappe/public/js/frappe/form/save.js:120
msgid "Mandatory fields required in table {0}, Row {1}"
-msgstr "các trường bắt buộc cần thiết trong bảng {0}, dãy {1}"
+msgstr ""
-#: public/js/frappe/form/save.js:172
+#: frappe/public/js/frappe/form/save.js:125
msgid "Mandatory fields required in {0}"
-msgstr "Trường bắt buộc là cần thiết trong {0}"
+msgstr ""
-#: public/js/frappe/web_form/web_form.js:234
+#: frappe/public/js/frappe/web_form/web_form.js:234
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
msgstr ""
-#: core/doctype/data_export/exporter.py:142
+#: frappe/core/doctype/data_export/exporter.py:142
msgid "Mandatory:"
-msgstr "Bắt buộc:"
+msgstr ""
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Map"
msgstr ""
-#: public/js/frappe/data_import/import_preview.js:190
-#: public/js/frappe/data_import/import_preview.js:302
+#: frappe/public/js/frappe/data_import/import_preview.js:194
+#: frappe/public/js/frappe/data_import/import_preview.js:306
msgid "Map Columns"
-msgstr "Cột bản đồ"
+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'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/website/doctype/web_page/web_page.json
msgid "Map route parameters into form variables. Example /project/<name>"
-msgstr "Ánh xạ các tham số tuyến thành các biến dạng. Ví dụ /project/<name>"
+msgstr ""
-#: core/doctype/data_import/importer.py:877
+#: frappe/core/doctype/data_import/importer.py:924
msgid "Mapping column {0} to field {1}"
-msgstr "Cột ánh xạ {0} đến trường {1}"
+msgstr ""
-#. Label of a Float field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the margin_bottom (Float) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Margin Bottom"
msgstr ""
-#. Label of a Float field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the margin_left (Float) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Margin Left"
msgstr ""
-#. Label of a Float field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the margin_right (Float) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Margin Right"
msgstr ""
-#. Label of a Float field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the margin_top (Float) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Margin Top"
msgstr ""
-#: public/js/frappe/ui/notifications/notifications.js:44
+#. Label of the mariadb_variables_section (Section Break) field in DocType
+#. 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "MariaDB Variables"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:45
msgid "Mark all as read"
msgstr ""
-#: core/doctype/communication/communication.js:78
-#: core/doctype/communication/communication_list.js:21
+#: frappe/core/doctype/communication/communication.js:78
+#: frappe/core/doctype/communication/communication_list.js:19
msgid "Mark as Read"
-msgstr "Đánh dấu là đã đọc"
+msgstr ""
-#: core/doctype/communication/communication.js:95
+#: frappe/core/doctype/communication/communication.js:95
msgid "Mark as Spam"
-msgstr "Đánh dấu spam"
+msgstr ""
-#: core/doctype/communication/communication.js:78
-#: core/doctype/communication/communication_list.js:24
+#: frappe/core/doctype/communication/communication.js:78
+#: frappe/core/doctype/communication/communication_list.js:22
msgid "Mark as Unread"
-msgstr "Đánh dấu là chưa đọc"
-
-#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Markdown"
-msgstr "Markdown"
+msgstr ""
#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Markdown"
-msgstr "Markdown"
-
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Markdown"
-msgstr "Markdown"
-
+#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:92
+#: frappe/website/doctype/web_page/web_page.json
msgid "Markdown"
-msgstr "Markdown"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Markdown Editor"
-msgstr "Biên tập Markdown"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Markdown Editor"
-msgstr "Biên tập Markdown"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Markdown Editor"
-msgstr "Biên tập Markdown"
-
+#. 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'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Markdown Editor"
-msgstr "Biên tập Markdown"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Marked As Spam"
-msgstr "Đánh dấu là spam"
+msgstr ""
-#. Name of a DocType
-#: website/doctype/marketing_campaign/marketing_campaign.json
-msgid "Marketing Campaign"
+#. 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'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
+#: frappe/desk/doctype/bulk_update/bulk_update.json
msgid "Max 500 records at a time"
-msgstr "Max 500 hồ sơ tại một thời điểm"
+msgstr ""
-#. Label of a Int field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Max Attachment Size (in MB)"
-msgstr "Max Size Attachment (tính bằng MB)"
-
-#. Label of a Int field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the max_attachments (Int) field in DocType 'DocType'
+#. Label of the max_attachments (Int) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Max Attachments"
-msgstr "Max File đính kèm"
+msgstr ""
-#. Label of a Int field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Max Attachments"
-msgstr "Max File đính kèm"
-
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the max_file_size (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Max File Size (MB)"
msgstr ""
-#. Label of a Data field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the max_height (Data) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Max Height"
msgstr ""
-#. Label of a Int field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the max_length (Int) field in DocType 'Web Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Max Length"
-msgstr "Độ dài tối đa"
+msgstr ""
-#. Label of a Int field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the max_report_rows (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Max Report Rows"
+msgstr ""
+
+#. Label of the max_value (Int) field in DocType 'Web Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Max Value"
-msgstr "Giá trị tối đa"
+msgstr ""
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the max_attachment_size (Int) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Max attachment size"
+msgstr ""
+
+#. Label of the max_auto_email_report_per_user (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Max auto email report per user"
msgstr ""
-#: core/doctype/doctype/doctype.py:1293
+#: frappe/core/doctype/doctype/doctype.py:1342
msgid "Max width for type Currency is 100px in row {0}"
-msgstr "Tối đa chiều rộng cho các loại tiền tệ là 100px trong hàng {0}"
+msgstr ""
#. Option for the 'Function' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Maximum"
-msgstr "Tối đa"
+msgstr ""
-#: core/doctype/file/file.py:317
+#: frappe/core/doctype/file/file.py:320
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr ""
-#. Label of a Select field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
+#. Label of the total_fields (Select) field in DocType 'List View Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Maximum Number of Fields"
-msgstr "Số lượng trường tối đa"
+msgstr ""
-#. Label of a Int field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Maximum Points"
-msgstr "Điểm tối đa"
-
-#: public/js/frappe/form/sidebar/attachments.js:38
+#: frappe/public/js/frappe/form/sidebar/attachments.js:38
msgid "Maximum attachment limit of {0} has been reached."
msgstr ""
-#. Description of the 'Maximum Points' (Int) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid ""
-"Maximum points allowed after multiplying points with the multiplier value\n"
-"(Note: For no limit leave this field empty or set 0)"
+#: frappe/model/rename_doc.py:690
+msgid "Maximum {0} rows allowed"
msgstr ""
-#: model/rename_doc.py:675
-msgid "Maximum {0} rows allowed"
-msgstr "Tối đa {0} hàng cho phép"
-
-#: public/js/frappe/list/list_sidebar_group_by.js:221
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:221
msgid "Me"
-msgstr "Tôi"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:194
-#: public/js/frappe/utils/utils.js:1719
-#: website/report/website_analytics/website_analytics.js:40
-msgid "Medium"
-msgstr "Trung bình"
+#: frappe/core/page/permission_manager/permission_manager_help.html:14
+msgid "Meaning of Submit, Cancel, Amend"
+msgstr ""
#. Option for the 'Priority' (Select) field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#. Label of the medium (Data) field in DocType 'Web Page View'
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
+#: frappe/public/js/frappe/utils/utils.js:1734
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
-msgstr "Trung bình"
-
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Medium"
-msgstr "Trung bình"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Meeting"
-msgstr "Gặp gỡ"
-
#. Option for the 'Event Category' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/core/doctype/communication/communication.json
+#: frappe/desk/doctype/event/event.json
msgid "Meeting"
-msgstr "Gặp gỡ"
+msgstr ""
-#. Label of a Data field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/email/doctype/notification/notification.js:196
+#: frappe/integrations/doctype/webhook/webhook.js:96
msgid "Meets Condition?"
msgstr ""
#. Group in Email Group's connections
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#: frappe/email/doctype/email_group/email_group.json
msgid "Members"
msgstr ""
+#. Label of the cache_memory_usage (Data) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Memory Usage"
+msgstr ""
+
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63
+msgid "Memory Usage in MB"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Mention"
-msgstr "Đề cập"
+msgstr ""
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#. Label of the enable_email_mention (Check) field in DocType 'Notification
+#. Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Mentions"
-msgstr "Đề cập"
+msgstr ""
-#: public/js/frappe/ui/page.js:155
+#: frappe/public/js/frappe/ui/page.html:41
+#: frappe/public/js/frappe/ui/page.js:162
msgid "Menu"
-msgstr "Menu"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:222 public/js/frappe/model/model.js:719
+#: frappe/public/js/frappe/form/toolbar.js:242
+#: frappe/public/js/frappe/model/model.js:754
msgid "Merge with existing"
-msgstr "Kết hợp với hiện tại"
+msgstr ""
-#: utils/nestedset.py:310
+#: frappe/utils/nestedset.py:307
msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node"
-msgstr "Sáp nhập chỉ có thể giữa nhóm - tới - nhóm hoặc nút lá - tới - nút lá"
+msgstr ""
-#: public/js/frappe/ui/messages.js:175
-#: public/js/frappe/views/communication.js:110 www/message.html:3
-#: www/message.html:25
+#. Label of the message (Text) field in DocType 'Auto Repeat'
+#. Label of the content (Text Editor) field in DocType 'Activity Log'
+#. Label of the content (Text Editor) field in DocType 'Communication'
+#. Label of the message (Small Text) field in DocType 'SMS Log'
+#. Label of the message (Data) field in DocType 'Success Action'
+#. Label of the email_content (Text Editor) field in DocType 'Notification Log'
+#. Label of the section_break_15 (Section Break) field in DocType 'Auto Email
+#. Report'
+#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
+#. Label of the message (Code) field in DocType 'Email Queue'
+#. Label of the message (Text Editor) field in DocType 'Newsletter'
+#. Label of the message_sb (Section Break) field in DocType 'Notification'
+#. Label of the message (Code) field in DocType 'Notification'
+#. Label of the message (Text) field in DocType 'Workflow Document State'
+#: 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/newsletter/newsletter.json
+#: frappe/email/doctype/notification/notification.js:201
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/ui/messages.js:182
+#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+#: frappe/www/message.html:3
msgid "Message"
-msgstr "Thông điệp"
+msgstr ""
-#. Label of a Text Editor field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Message"
-msgstr "Thông điệp"
-
-#. Label of a Section Break field in DocType 'Auto Email Report'
-#. Label of a Text Editor field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Message"
-msgstr "Thông điệp"
-
-#. Label of a Text field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Message"
-msgstr "Thông điệp"
-
-#. Label of a Text Editor field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Message"
-msgstr "Thông điệp"
-
-#: __init__.py:527 public/js/frappe/ui/messages.js:267
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
msgctxt "Default title of the message dialog"
msgid "Message"
-msgstr "Thông điệp"
+msgstr ""
-#. Label of a Code field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Message"
-msgstr "Thông điệp"
-
-#. Label of a Text Editor field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Message"
-msgstr "Thông điệp"
-
-#. Label of a Section Break field in DocType 'Notification'
-#. Label of a Code field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Message"
-msgstr "Thông điệp"
-
-#. Label of a Text Editor field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "Message"
-msgstr "Thông điệp"
-
-#. Label of a Small Text field in DocType 'SMS Log'
-#: core/doctype/sms_log/sms_log.json
-msgctxt "SMS Log"
-msgid "Message"
-msgstr "Thông điệp"
-
-#. Label of a Data field in DocType 'Success Action'
-#: core/doctype/success_action/success_action.json
-msgctxt "Success Action"
-msgid "Message"
-msgstr "Thông điệp"
-
-#. Label of a Text field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
-msgid "Message"
-msgstr "Thông điệp"
-
-#. Label of a HTML Editor field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Message (HTML)"
-msgstr "Tin nhắn (HTML)"
+msgstr ""
-#. Label of a Markdown Editor field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Message (Markdown)"
-msgstr "Tin nhắn (Markdown)"
+msgstr ""
-#. Label of a HTML field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the message_examples (HTML) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
-msgstr "Ví dụ tin nhắn"
+msgstr ""
-#. Label of a Small Text field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the message_id (Small Text) field in DocType 'Communication'
+#. Label of the message_id (Small Text) field in DocType 'Email Queue'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Message ID"
-msgstr "tin ID"
+msgstr ""
-#. Label of a Small Text field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Message ID"
-msgstr "tin ID"
-
-#. Label of a Data field in DocType 'SMS Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#. Label of the message_parameter (Data) field in DocType 'SMS Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Message Parameter"
-msgstr "Thông số tin nhắn"
+msgstr ""
-#. Label of a Select field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/templates/includes/contact.js:36
+msgid "Message Sent"
+msgstr ""
+
+#. Label of the message_type (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Message Type"
msgstr ""
-#: public/js/frappe/views/communication.js:841
+#: frappe/public/js/frappe/views/communication.js:950
msgid "Message clipped"
-msgstr "Tin nhắn bị cắt"
+msgstr ""
-#: email/doctype/email_account/email_account.py:299
+#: frappe/email/doctype/email_account/email_account.py:344
msgid "Message from server: {0}"
-msgstr "Thông báo từ máy chủ: {0}"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.js:102
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104
msgid "Message not setup"
-msgstr "Tin nhắn không được thiết lập"
+msgstr ""
-#. Description of the 'Success Message' (Text) field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Description of the 'Success message' (Text) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Message to be displayed on successful completion"
msgstr ""
-#. Label of a Code field in DocType 'Unhandled Email'
-#: email/doctype/unhandled_email/unhandled_email.json
-msgctxt "Unhandled Email"
+#. Label of the message_id (Code) field in DocType 'Unhandled Email'
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Message-id"
-msgstr "Tin nhắn - tài khoản"
+msgstr ""
-#. Label of a Code field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
+#. Label of the messages (Code) field in DocType 'Data Import Log'
+#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Messages"
msgstr ""
-#. Label of a Section Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the meta_section (Section Break) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Meta"
msgstr ""
-#: website/doctype/web_page/web_page.js:124
+#. Label of the meta_description (Small Text) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:124
msgid "Meta Description"
-msgstr "Mô tả meta"
+msgstr ""
-#. Label of a Small Text field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Meta Description"
-msgstr "Mô tả meta"
-
-#. Label of a Small Text field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Meta Description"
-msgstr "Mô tả meta"
-
-#: website/doctype/web_page/web_page.js:131
+#. Label of the meta_image (Attach Image) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:131
msgid "Meta Image"
-msgstr "Hình ảnh meta"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Meta Image"
-msgstr "Hình ảnh meta"
-
-#. Label of a Attach Image field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Meta Image"
-msgstr "Hình ảnh meta"
-
-#. Label of a Section Break field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the meta_tags (Section Break) field in DocType 'Blog Post'
+#. Label of the metatags_section (Section Break) field in DocType 'Web Page'
+#. Label of the meta_tags (Table) field in DocType 'Website Route Meta'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_route_meta/website_route_meta.json
msgid "Meta Tags"
-msgstr "Thẻ meta"
+msgstr ""
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Meta Tags"
-msgstr "Thẻ meta"
-
-#. Label of a Table field in DocType 'Website Route Meta'
-#: website/doctype/website_route_meta/website_route_meta.json
-msgctxt "Website Route Meta"
-msgid "Meta Tags"
-msgstr "Thẻ meta"
-
-#: website/doctype/web_page/web_page.js:117
+#. Label of the meta_title (Data) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:117
msgid "Meta Title"
-msgstr "Tiêu đề meta"
+msgstr ""
-#. Label of a Data field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Meta Title"
-msgstr "Tiêu đề meta"
+#. Label of the meta_description (Small Text) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Meta description"
+msgstr ""
-#. Label of a Data field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Meta Title"
-msgstr "Tiêu đề meta"
+#. Label of the meta_image (Attach Image) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Meta image"
+msgstr ""
-#: website/doctype/web_page/web_page.js:110
+#. Label of the meta_title (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Meta title"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:110
msgid "Meta title for SEO"
-msgstr "Tiêu đề meta cho SEO"
-
-#. Label of a Data field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
-msgid "Method"
-msgstr "Phương pháp"
-
-#. Label of a Select field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Method"
-msgstr "Phương pháp"
+msgstr ""
+#. Label of the method (Data) field in DocType 'Access Log'
+#. Label of the method (Data) field in DocType 'API Request Log'
+#. Label of the method (Select) field in DocType 'Recorder'
+#. Label of the method (Data) field in DocType 'Scheduled Job Type'
+#. Label of the method (Data) field in DocType 'Scheduler Event'
+#. Label of the method (Data) field in DocType 'Number Card'
+#. Label of the auth_method (Select) field in DocType 'Email Account'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/api_request_log/api_request_log.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/scheduler_event/scheduler_event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/notification/notification.json
msgid "Method"
-msgstr "Phương pháp"
+msgstr ""
-#. Label of a Data field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Method"
-msgstr "Phương pháp"
+#: frappe/__init__.py:672
+msgid "Method Not Allowed"
+msgstr ""
-#. Label of a Select field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "Method"
-msgstr "Phương pháp"
-
-#. Label of a Data field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Method"
-msgstr "Phương pháp"
-
-#: desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:73
msgid "Method is required to create a number card"
msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Mid Center"
msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the middle_name (Data) field in DocType 'Contact'
+#. Label of the middle_name (Data) field in DocType 'User'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.json
msgid "Middle Name"
-msgstr "Tên đệm"
-
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Middle Name"
-msgstr "Tên đệm"
+msgstr ""
#. Name of a DocType
-#: automation/doctype/milestone/milestone.json
-msgid "Milestone"
-msgstr "Sự kiện quan trọng"
-
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Milestone"
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/automation/workspace/tools/tools.json
msgid "Milestone"
-msgstr "Sự kiện quan trọng"
+msgstr ""
+#. Label of the milestone_tracker (Link) field in DocType 'Milestone'
#. Name of a DocType
-#: automation/doctype/milestone_tracker/milestone_tracker.json
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Milestone Tracker"
-msgstr "Theo dõi cột mốc"
-
-#. Label of a Link field in DocType 'Milestone'
-#: automation/doctype/milestone/milestone.json
-msgctxt "Milestone"
-msgid "Milestone Tracker"
-msgstr "Theo dõi cột mốc"
+msgstr ""
#. Option for the 'Function' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Minimum"
-msgstr "Tối thiểu"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the minimum_password_score (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Minimum Password Score"
-msgstr "Điểm số Mật khẩu Tối thiểu"
+msgstr ""
-#. Label of a Int field in DocType 'Package Release'
-#: core/doctype/package_release/package_release.json
-msgctxt "Package Release"
+#. Label of the minor (Int) field in DocType 'Package Release'
+#: frappe/core/doctype/package_release/package_release.json
msgid "Minor"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:100
-#: integrations/doctype/ldap_settings/ldap_settings.py:105
-#: integrations/doctype/ldap_settings/ldap_settings.py:114
-#: integrations/doctype/ldap_settings/ldap_settings.py:122
-#: integrations/doctype/ldap_settings/ldap_settings.py:332
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Minutes After"
+msgstr ""
+
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Minutes Before"
+msgstr ""
+
+#. Label of the minutes_offset (Int) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Minutes Offset"
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:103
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:117
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:125
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333
msgid "Misconfigured"
msgstr ""
-#: desk/form/meta.py:213
+#: frappe/desk/page/setup_wizard/install_fixtures.py:49
+msgid "Miss"
+msgstr ""
+
+#: frappe/desk/form/meta.py:218
msgid "Missing DocType"
msgstr ""
-#: core/doctype/doctype/doctype.py:1477
+#: frappe/core/doctype/doctype/doctype.py:1526
msgid "Missing Field"
msgstr ""
-#: public/js/frappe/form/save.js:178
+#: frappe/public/js/frappe/form/save.js:131
msgid "Missing Fields"
-msgstr "Thiếu trường"
+msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.py:123
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
msgid "Missing Filters Required"
msgstr ""
-#: desk/form/assign_to.py:105
+#: frappe/desk/form/assign_to.py:110
msgid "Missing Permission"
msgstr ""
-#: www/update-password.html:107 www/update-password.html:114
+#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
msgid "Missing Value"
msgstr ""
-#: public/js/frappe/ui/field_group.js:118
-#: public/js/frappe/widgets/widget_dialog.js:330
-#: public/js/workflow_builder/store.js:97
-#: workflow/doctype/workflow/workflow.js:71
+#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/widgets/widget_dialog.js:361
+#: frappe/public/js/workflow_builder/store.js:97
+#: frappe/workflow/doctype/workflow/workflow.js:71
msgid "Missing Values Required"
-msgstr "Giá trị khuyết bắt buộc"
+msgstr ""
-#: www/login.py:96
+#: frappe/www/login.py:107
msgid "Mobile"
msgstr ""
-#: tests/test_translate.py:86 tests/test_translate.py:89
-#: tests/test_translate.py:91 tests/test_translate.py:94
+#. Label of the mobile_no (Data) field in DocType 'Contact'
+#. Label of the mobile_no (Data) field in DocType 'User'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.json frappe/tests/test_translate.py:86
+#: frappe/tests/test_translate.py:89 frappe/tests/test_translate.py:91
+#: frappe/tests/test_translate.py:94
msgid "Mobile No"
-msgstr "Số Điện thoại di động"
+msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Mobile No"
-msgstr "Số Điện thoại di động"
-
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Mobile No"
-msgstr "Số Điện thoại di động"
-
-#. Label of a Check field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
msgstr ""
-#. Label of a Card Break in the Build Workspace
-#: core/workspace/build/build.json
-msgid "Models"
-msgstr ""
-
-#: core/report/transaction_log_report/transaction_log_report.py:106
-#: social/doctype/energy_point_rule/energy_point_rule.js:43
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:106
msgid "Modified By"
-msgstr "Được thay đổi bởi"
-
-#: core/doctype/doctype/doctype_list.js:17
-msgid "Module"
-msgstr "Mô-đun"
-
-#. Label of a Data field in DocType 'Block Module'
-#: core/doctype/block_module/block_module.json
-msgctxt "Block Module"
-msgid "Module"
-msgstr "Mô-đun"
-
-#. Label of a Link field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
-msgid "Module"
-msgstr "Mô-đun"
-
-#. Label of a Link field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Module"
-msgstr "Mô-đun"
-
-#. Label of a Link field in DocType 'Dashboard Chart Source'
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
-msgctxt "Dashboard Chart Source"
-msgid "Module"
-msgstr "Mô-đun"
-
-#. Label of a Link field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Module"
-msgstr "Mô-đun"
-
-#. Label of a Link field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Module"
-msgstr "Mô-đun"
-
-#. Label of a Link field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Module"
-msgstr "Mô-đun"
-
-#. Label of a Link field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Module"
-msgstr "Mô-đun"
-
-#. Label of a Link field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Module"
-msgstr "Mô-đun"
-
-#. Label of a Link field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Module"
-msgstr "Mô-đun"
-
-#. Label of a Link field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Module"
-msgstr "Mô-đun"
-
-#. Label of a Link field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
-msgid "Module"
-msgstr "Mô-đun"
-
-#. Label of a Link field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Module"
-msgstr "Mô-đun"
-
-#. Label of a Link field in DocType 'User Type Module'
-#: core/doctype/user_type_module/user_type_module.json
-msgctxt "User Type Module"
-msgid "Module"
-msgstr "Mô-đun"
-
-#. Label of a Link field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Module"
-msgstr "Mô-đun"
-
-#. Label of a Link field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
-msgid "Module"
-msgstr "Mô-đun"
-
-#. Label of a Link field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Module"
-msgstr "Mô-đun"
-
-#. Label of a Link field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Module"
-msgstr "Mô-đun"
-
-#. Label of a Link field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
-msgid "Module (for export)"
msgstr ""
-#. Label of a Link field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Module (for export)"
+#. Label of the module (Data) field in DocType 'Block Module'
+#. Label of the module (Link) field in DocType 'DocType'
+#. Label of the module (Link) field in DocType 'Page'
+#. Label of the module (Link) field in DocType 'Report'
+#. Label of the module (Link) field in DocType 'User Type Module'
+#. Label of the module (Link) field in DocType 'Dashboard'
+#. Label of the module (Link) field in DocType 'Dashboard Chart'
+#. Label of the module (Link) field in DocType 'Dashboard Chart Source'
+#. Label of the module (Link) field in DocType 'Form Tour'
+#. Label of the module (Link) field in DocType 'Module Onboarding'
+#. Label of the module (Link) field in DocType 'Number Card'
+#. Label of the module (Link) field in DocType 'Workspace'
+#. Label of the module (Link) field in DocType 'Notification'
+#. Label of the module (Link) field in DocType 'Print Format'
+#. Label of the module (Link) field in DocType 'Print Format Field Template'
+#. Label of the module (Link) field in DocType 'Web Form'
+#. Label of the module (Link) field in DocType 'Web Template'
+#. Label of the module (Link) field in DocType 'Website Theme'
+#: frappe/core/doctype/block_module/block_module.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
+#: frappe/core/doctype/user_type_module/user_type_module.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/public/js/frappe/utils/utils.js:926
+#: 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 a Link field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
-msgid "Module (for export)"
-msgstr ""
-
-#. Label of a Link field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Module (for export)"
-msgstr ""
-
-#. Label of a Link field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the module (Link) field in DocType 'Server Script'
+#. Label of the module (Link) field in DocType 'Client Script'
+#. Label of the module (Link) field in DocType 'Custom Field'
+#. Label of the module (Link) field in DocType 'Property Setter'
+#. Label of the module (Link) field in DocType 'Web Page'
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Module (for export)"
msgstr ""
#. Name of a DocType
-#: core/doctype/module_def/module_def.json
-msgid "Module Def"
-msgstr "Mô-đun Def"
-
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Module Def"
+#. Label of a shortcut in the Build Workspace
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/workspace/build/build.json
msgid "Module Def"
-msgstr "Mô-đun Def"
+msgstr ""
-#. Linked DocType in Package's connections
-#: core/doctype/package/package.json
-msgctxt "Package"
-msgid "Module Def"
-msgstr "Mô-đun Def"
-
-#. Label of a HTML field in DocType 'Module Profile'
-#: core/doctype/module_profile/module_profile.json
-msgctxt "Module Profile"
+#. Label of the module_html (HTML) field in DocType 'Module Profile'
+#: frappe/core/doctype/module_profile/module_profile.json
msgid "Module HTML"
msgstr ""
-#. Label of a Data field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#. Label of the module_name (Data) field in DocType 'Module Def'
+#. Label of the module_name (Data) field in DocType 'Desktop Icon'
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Module Name"
-msgstr "Tên mô-đun"
-
-#. Label of a Data field in DocType 'Module Def'
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Module Name"
-msgstr "Tên mô-đun"
-
-#. Name of a DocType
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgid "Module Onboarding"
-msgstr "Giới thiệu mô-đun"
+msgstr ""
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Module Onboarding"
+#. Name of a DocType
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Module Onboarding"
-msgstr "Giới thiệu mô-đun"
+msgstr ""
#. Name of a DocType
-#: core/doctype/module_profile/module_profile.json
-msgid "Module Profile"
-msgstr ""
-
+#. Label of the module_profile (Link) field in DocType 'User'
#. Label of a Link in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "Module Profile"
+#: frappe/core/doctype/module_profile/module_profile.json
+#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
msgid "Module Profile"
msgstr ""
-#. Label of a Link field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Module Profile"
-msgstr ""
-
-#. Label of a Data field in DocType 'Module Profile'
-#: core/doctype/module_profile/module_profile.json
-msgctxt "Module Profile"
+#. Label of the module_profile_name (Data) field in DocType 'Module Profile'
+#: frappe/core/doctype/module_profile/module_profile.json
msgid "Module Profile Name"
msgstr ""
-#: desk/doctype/module_onboarding/module_onboarding.py:68
+#: frappe/desk/doctype/module_onboarding/module_onboarding.py:69
msgid "Module onboarding progress reset"
msgstr ""
-#: custom/doctype/customize_form/customize_form.js:208
+#: frappe/custom/doctype/customize_form/customize_form.js:250
msgid "Module to Export"
-msgstr "Mô- đun để xuất khẩu"
+msgstr ""
-#: modules/utils.py:261
+#: frappe/modules/utils.py:273
msgid "Module {} not found"
msgstr ""
-#. Label of a Card Break in the Build Workspace
-#: core/workspace/build/build.json
-msgid "Modules"
-msgstr "các mô đun"
-
#. Group in Package's connections
-#: core/doctype/package/package.json
-msgctxt "Package"
+#. Label of a Card Break in the Build Workspace
+#: frappe/core/doctype/package/package.json
+#: frappe/core/workspace/build/build.json
msgid "Modules"
-msgstr "các mô đun"
+msgstr ""
-#. Label of a HTML field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the modules_html (HTML) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Modules HTML"
-msgstr "HTML các mô đun"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Monday"
-msgstr "Thứ Hai"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Monday"
-msgstr "Thứ Hai"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Monday"
-msgstr "Thứ Hai"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Monday"
-msgstr "Thứ Hai"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the monday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Monday"
-msgstr "Thứ Hai"
+msgstr ""
+
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Monitor logs for errors, background jobs, communications, and user activity"
+msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Monospace"
-msgstr "đơn cách"
+msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:268
+#: frappe/public/js/frappe/views/calendar/calendar.js:275
msgid "Month"
-msgstr "Tháng"
-
-#: public/js/frappe/utils/common.js:400
-#: website/report/website_analytics/website_analytics.js:25
-msgid "Monthly"
-msgstr "Hàng tháng"
-
-#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Monthly"
-msgstr "Hàng tháng"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Monthly"
-msgstr "Hàng tháng"
-
+#. 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'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Monthly"
-msgstr "Hàng tháng"
-
-#. Option for the 'Point Allocation Periodicity' (Select) field in DocType
-#. 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Monthly"
-msgstr "Hàng tháng"
-
#. Option for the 'Repeat On' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Monthly"
-msgstr "Hàng tháng"
-
#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Monthly"
-msgstr "Hàng tháng"
-
+#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
+#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
#. Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
+#: frappe/public/js/frappe/utils/common.js:400
+#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
-msgstr "Hàng tháng"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Monthly"
-msgstr "Hàng tháng"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Monthly"
-msgstr "Hàng tháng"
-
-#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Monthly Long"
-msgstr "Hàng tháng dài"
+msgstr ""
-#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Monthly Long"
-msgstr "Hàng tháng dài"
-
-#: public/js/frappe/form/link_selector.js:39
-#: public/js/frappe/form/multi_select_dialog.js:43
-#: public/js/frappe/form/multi_select_dialog.js:70
-#: templates/includes/list/list.html:23
-#: templates/includes/search_template.html:13
+#: frappe/public/js/frappe/form/link_selector.js:39
+#: frappe/public/js/frappe/form/multi_select_dialog.js:45
+#: frappe/public/js/frappe/form/multi_select_dialog.js:72
+#: frappe/public/js/frappe/ui/toolbar/search.js:285
+#: frappe/public/js/frappe/ui/toolbar/search.js:300
+#: frappe/public/js/frappe/widgets/chart_widget.js:729
+#: frappe/templates/includes/list/list.html:25
+#: frappe/templates/includes/search_template.html:13
msgid "More"
-msgstr "Nhiều Hơn"
+msgstr ""
-#. Label of a Section Break field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. 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'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/user/user.json
msgid "More Information"
-msgstr "Thêm thông tin"
+msgstr ""
-#. Label of a Section Break field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "More Information"
-msgstr "Thêm thông tin"
-
-#. Label of a Section Break field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "More Information"
-msgstr "Thêm thông tin"
-
-#. Label of a Tab Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "More Information"
-msgstr "Thêm thông tin"
-
-#: website/doctype/help_article/templates/help_article.html:19
-#: website/doctype/help_article/templates/help_article.html:33
+#: frappe/website/doctype/help_article/templates/help_article.html:19
+#: frappe/website/doctype/help_article/templates/help_article.html:33
msgid "More articles on {0}"
-msgstr "Xem thêm bài viết về {0}"
+msgstr ""
#. Description of the 'Footer' (Text Editor) field in DocType 'About Us
#. Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "More content for the bottom of the page."
-msgstr "Nhiều nội dung cho dưới cùng của trang."
+msgstr ""
-#: public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:193
msgid "Most Used"
-msgstr "Được dùng nhiều nhất"
+msgstr ""
-#: utils/password.py:65
+#: frappe/utils/password.py:76
msgid "Most probably your password is too long."
msgstr ""
-#: core/doctype/communication/communication.js:86
-#: core/doctype/communication/communication.js:194
-#: core/doctype/communication/communication.js:212
+#: frappe/core/doctype/communication/communication.js:86
+#: frappe/core/doctype/communication/communication.js:194
+#: frappe/core/doctype/communication/communication.js:212
+#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "Move"
-msgstr "Di chuyển"
+msgstr ""
-#: public/js/frappe/form/grid_row.js:189
+#: frappe/public/js/frappe/form/grid_row.js:193
msgid "Move To"
-msgstr "Chuyển tới"
+msgstr ""
-#: core/doctype/communication/communication.js:104
+#: frappe/core/doctype/communication/communication.js:104
msgid "Move To Trash"
-msgstr "Di chuyển vào thùng rác"
+msgstr ""
-#: public/js/frappe/form/form.js:176
+#: frappe/public/js/form_builder/components/Section.vue:295
+msgid "Move current and all subsequent sections to a new tab"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:177
msgid "Move cursor to above row"
msgstr ""
-#: public/js/frappe/form/form.js:180
+#: frappe/public/js/frappe/form/form.js:181
msgid "Move cursor to below row"
msgstr ""
-#: public/js/frappe/form/form.js:184
+#: frappe/public/js/frappe/form/form.js:185
msgid "Move cursor to next column"
msgstr ""
-#: public/js/frappe/form/form.js:188
+#: frappe/public/js/frappe/form/form.js:189
msgid "Move cursor to previous column"
msgstr ""
-#: public/js/frappe/form/grid_row.js:165
+#: frappe/public/js/form_builder/components/Section.vue:294
+msgid "Move sections to new tab"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Field.vue:237
+msgid "Move the current field and the following fields to a new column"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:168
msgid "Move to Row Number"
-msgstr "Di chuyển đến số hàng"
+msgstr ""
#. Description of the 'Next on Click' (Check) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Move to next step when clicked inside highlighted area."
msgstr ""
#. Description of the 'Parent Element Selector' (Data) field in DocType 'Form
#. Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Mozilla doesn't support :has() so you can pass parent selector here as workaround"
msgstr ""
-#: utils/nestedset.py:334
-msgid "Multiple root nodes not allowed."
-msgstr "Nhiều nút gốc không được phép."
+#: frappe/desk/page/setup_wizard/install_fixtures.py:43
+msgid "Mr"
+msgstr ""
-#. Label of a Select field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Multiplier Field"
-msgstr "Lĩnh vực đa nhân"
+#: frappe/desk/page/setup_wizard/install_fixtures.py:47
+msgid "Mrs"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:44
+msgid "Ms"
+msgstr ""
+
+#: frappe/utils/nestedset.py:331
+msgid "Multiple root nodes not allowed."
+msgstr ""
#. Description of the 'Import from Google Sheets' (Data) field in DocType 'Data
#. Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/core/doctype/data_import/data_import.json
msgid "Must be a publicly accessible Google Sheets URL"
-msgstr "Phải là URL Google Trang tính có thể truy cập công khai"
+msgstr ""
#. Description of the 'LDAP Search String' (Data) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Must be enclosed in '()' and include '{0}', which is a placeholder for the user/login name. i.e. (&(objectclass=user)(uid={0}))"
msgstr ""
-#. Description of the 'Image Field' (Data) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Must be of type \"Attach Image\""
-msgstr "Phải là loại "Đính kèm hình ảnh""
-
#. Description of the 'Image Field' (Data) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Description of the 'Image Field' (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Must be of type \"Attach Image\""
-msgstr "Phải là loại "Đính kèm hình ảnh""
-
-#: desk/query_report.py:202
-msgid "Must have report permission to access this report."
-msgstr "Phải có sự cho phép báo cáo để truy cập báo cáo này."
-
-#: core/doctype/report/report.py:148
-msgid "Must specify a Query to run"
-msgstr "Phải xác định một truy vấn để chạy"
-
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Mute Sounds"
-msgstr "tắt tiếng"
-
-#: templates/includes/web_sidebar.html:41
-#: website/doctype/web_form/web_form.py:401
-#: website/doctype/website_settings/website_settings.py:181 www/list.py:21
-#: www/me.html:4 www/me.html:8 www/update_password.py:10
-msgid "My Account"
-msgstr "Tài Khoản Của Tôi"
-
-#. Label of a standard navbar item
-#. Type: Route
-#: hooks.py
-msgid "My Profile"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: hooks.py
-msgid "My Settings"
+#: frappe/desk/query_report.py:208
+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:462
+#: 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'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "MyISAM"
-msgstr "MyISAM"
+msgstr ""
-#: workflow/doctype/workflow/workflow.js:19
+#: frappe/workflow/doctype/workflow/workflow.js:19
msgid "NOTE: If you add states or transitions in the table, it will be reflected in the Workflow Builder but you will have to position them manually. Also Workflow Builder is currently in BETA."
msgstr ""
#. Description of the 'LDAP Group Field' (Data) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "NOTE: This box is due for depreciation. Please re-setup LDAP to work with the newer settings"
msgstr ""
-#: public/js/frappe/form/layout.js:75
-#: public/js/frappe/form/multi_select_dialog.js:239
-#: public/js/frappe/form/save.js:154
-#: public/js/frappe/views/file/file_view.js:97
-#: website/doctype/website_slideshow/website_slideshow.js:25
+#. Label of the fieldname (Data) field in DocType 'DocField'
+#. Label of the fieldname (Data) field in DocType 'Customize Form Field'
+#. Label of the label (Data) field in DocType 'Workspace'
+#. Label of the webhook_name (Data) field in DocType 'Slack Webhook URL'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype_list.js:22
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
+#: frappe/public/js/frappe/form/layout.js:77
+#: frappe/public/js/frappe/form/multi_select_dialog.js:240
+#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/views/file/file_view.js:97
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
-msgstr "Tên"
+msgstr ""
-#. Label of a Data field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Name"
-msgstr "Tên"
+#: frappe/integrations/doctype/webhook/webhook.js:29
+msgid "Name (Doc Name)"
+msgstr ""
-#. Label of a Data field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Name"
-msgstr "Tên"
-
-#. Label of a Data field in DocType 'Slack Webhook URL'
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.json
-msgctxt "Slack Webhook URL"
-msgid "Name"
-msgstr "Tên"
-
-#. Label of a Data field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Name"
-msgstr "Tên"
-
-#: desk/utils.py:22
+#: frappe/desk/utils.py:22
msgid "Name already taken, please set a new name"
msgstr ""
-#: model/naming.py:460
+#: frappe/model/naming.py:504
msgid "Name cannot contain special characters like {0}"
-msgstr "Tên không thể chứa các ký tự đặc biệt như {0}"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:91
+#: frappe/custom/doctype/custom_field/custom_field.js:91
msgid "Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer"
-msgstr "Tên của các loại tài liệu (DocType) mà bạn muốn trường này được liên kết đến. ví dụ như khách hàng"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:117
+#: frappe/printing/page/print_format_builder/print_format_builder.js:117
msgid "Name of the new Print Format"
-msgstr "Tên của Format In mới"
+msgstr ""
-#: model/naming.py:454
+#: frappe/model/naming.py:499
msgid "Name of {0} cannot be {1}"
-msgstr "Tên của {0} không thể là {1}"
+msgstr ""
-#: utils/password_strength.py:178
+#: frappe/utils/password_strength.py:174
msgid "Names and surnames by themselves are easy to guess."
-msgstr "Họ và tên dễ đoán"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the sb1 (Tab Break) field in DocType 'DocType'
+#. Label of the naming_section (Section Break) field in DocType 'Document
+#. Naming Rule'
+#. Label of the naming_section (Section Break) field in DocType 'Customize
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Naming"
-msgstr "Đặt tên"
-
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Naming"
-msgstr "Đặt tên"
-
-#. Label of a Section Break field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
-msgid "Naming"
-msgstr "Đặt tên"
-
-#. Description of the 'Auto Name' (Data) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid ""
-"Naming Options:\n"
-"- field:[fieldname] - By Field
- autoincrement - Uses Databases' Auto Increment feature
- naming_series: - By Naming Series (field called naming_series must be present)
- Prompt - Prompt user for a name
- [series] - Series by prefix (separated by a dot); for example PRE.#####
\n"
-"- format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
"
msgstr ""
#. Description of the 'Auto Name' (Data) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid ""
-"Naming Options:\n"
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Naming Options:\n"
"- field:[fieldname] - By Field
- naming_series: - By Naming Series (field called naming_series must be present)
- Prompt - Prompt user for a name
- [series] - Series by prefix (separated by a dot); for example PRE.#####
\n"
"- format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
"
msgstr ""
-#. Label of a Select field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the naming_rule (Select) field in DocType 'DocType'
+#. Label of the naming_rule (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Naming Rule"
msgstr ""
-#. Label of a Select field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Naming Rule"
-msgstr ""
-
-#. Label of a Tab Break field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the naming_series_tab (Tab Break) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Naming Series"
-msgstr "Đặt tên series"
+msgstr ""
-#: model/naming.py:243
+#: frappe/model/naming.py:260
msgid "Naming Series mandatory"
-msgstr "Đặt tên series bắt buộc"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
+#. Label of the top_bar (Section Break) field in DocType 'Website Settings'
+#. Label of the navbar_tab (Tab Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Navbar"
-msgstr "Thanh điều hướng"
-
-#. Label of a Section Break field in DocType 'Website Settings'
-#. Label of a Tab Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Navbar"
-msgstr "Thanh điều hướng"
+msgstr ""
#. Name of a DocType
-#: core/doctype/navbar_item/navbar_item.json
+#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Navbar Item"
-msgstr "Mục trên thanh điều hướng"
+msgstr ""
#. Name of a DocType
-#: core/doctype/navbar_settings/navbar_settings.json
-msgid "Navbar Settings"
-msgstr "Cài đặt thanh điều hướng"
-
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Navbar Settings"
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+#: frappe/core/workspace/build/build.json
msgid "Navbar Settings"
-msgstr "Cài đặt thanh điều hướng"
+msgstr ""
-#. Label of a Link field in DocType 'Website Settings'
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the navbar_template (Link) field in DocType 'Website Settings'
+#. Label of the navbar_template_section (Section Break) field in DocType
+#. 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Navbar Template"
-msgstr "Mẫu Navbar"
+msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the navbar_template_values (Code) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Navbar Template Values"
-msgstr "Giá trị mẫu của thanh điều hướng"
+msgstr ""
-#: public/js/frappe/ui/keyboard.js:211
-msgid "Navigate Home"
-msgstr "Điều hướng về nhà"
-
-#: public/js/frappe/list/list_view.js:1134
+#: frappe/public/js/frappe/list/list_view.js:1237
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
-msgstr "Điều hướng danh sách xuống"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1141
+#: frappe/public/js/frappe/list/list_view.js:1244
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
-msgstr "Điều hướng danh sách lên"
+msgstr ""
-#: public/js/frappe/ui/page.js:168
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Navigate to main content"
msgstr ""
-#. Label of a Section Break field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the navigation_settings_section (Section Break) field in DocType
+#. 'User'
+#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
msgstr ""
-#: desk/doctype/workspace/workspace.py:297
+#: frappe/desk/doctype/workspace/workspace.py:319
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: desk/doctype/workspace/workspace.py:343
-msgid "Need Workspace Manager role to hide/unhide public workspaces"
+#: frappe/model/document.py:793
+msgid "Negative Value"
msgstr ""
-#: model/document.py:607
-msgid "Negative Value"
-msgstr "Giá trị âm"
-
-#: utils/nestedset.py:95
+#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
-msgstr "Lỗi bộ lồng nhau. Xin vui lòng liên hệ với Quản trị viên."
+msgstr ""
#. Name of a DocType
-#: printing/doctype/network_printer_settings/network_printer_settings.json
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Network Printer Settings"
msgstr ""
-#: core/doctype/success_action/success_action.js:55
-#: core/page/dashboard_view/dashboard_view.js:173 desk/doctype/todo/todo.js:46
-#: public/js/frappe/form/success_action.js:77
-#: public/js/frappe/views/treeview.js:454
-#: website/doctype/web_form/templates/web_list.html:15 www/list.html:19
-msgid "New"
-msgstr "Mới"
-
-#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "New"
-msgstr "Mới"
-
-#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "New"
-msgstr "Mới"
-
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/page/dashboard_view/dashboard_view.js:173
+#: frappe/desk/doctype/todo/todo.js:46
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/success_action.js:77
+#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/workspace/workspace.js:64
+#: frappe/website/doctype/web_form/templates/web_list.html:15
+#: frappe/www/list.html:19
msgid "New"
-msgstr "Mới"
+msgstr ""
-#: public/js/frappe/views/interaction.js:15
+#: frappe/public/js/frappe/views/interaction.js:15
msgid "New Activity"
-msgstr "Hoạt động mới"
+msgstr ""
-#: templates/includes/comments/comments.py:64
+#: frappe/public/js/frappe/form/templates/address_list.html:3
+#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:5
+#: frappe/public/js/frappe/utils/address_and_contact.js:71
+msgid "New Address"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:58
+msgid "New Chart"
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.py:62
msgid "New Comment on {0}: {1}"
-msgstr "Nhận xét mới về {0}: {1}"
+msgstr ""
-#: printing/page/print/print.js:288 printing/page/print/print.js:335
+#: 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:295
+#: frappe/printing/page/print/print.js:342
msgid "New Custom Print Format"
-msgstr "Định dạng in mặc định mới"
+msgstr ""
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the new_document_form (Check) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "New Document Form"
msgstr ""
-#: desk/doctype/notification_log/notification_log.py:158
+#: frappe/desk/doctype/notification_log/notification_log.py:154
msgid "New Document Shared {0}"
-msgstr "Tài liệu Mới được Chia sẻ {0}"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:26
-#: public/js/frappe/views/communication.js:23
+#: frappe/public/js/frappe/form/footer/form_timeline.js:27
+#: frappe/public/js/frappe/views/communication.js:23
msgid "New Email"
-msgstr "Email mới"
+msgstr ""
-#: public/js/frappe/list/list_view_select.js:98
-#: public/js/frappe/views/inbox/inbox_view.js:177
+#: frappe/public/js/frappe/list/list_view_select.js:98
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:177
msgid "New Email Account"
-msgstr "Tài khoản Email mới"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:45
+#: frappe/public/js/frappe/form/footer/form_timeline.js:47
msgid "New Event"
-msgstr "Sự kiện mới"
+msgstr ""
-#: public/js/frappe/views/file/file_view.js:94
+#: frappe/public/js/frappe/views/file/file_view.js:94
msgid "New Folder"
-msgstr "Thư mục mới"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:341
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "New Kanban Board"
-msgstr "Bảng Kanban Mới"
+msgstr ""
-#: desk/doctype/notification_log/notification_log.py:156
+#: frappe/public/js/frappe/widgets/widget_dialog.js:62
+msgid "New Links"
+msgstr ""
+
+#: frappe/desk/doctype/notification_log/notification_log.py:152
msgid "New Mention on {0}"
-msgstr "Đề cập mới về {0}"
+msgstr ""
-#: www/contact.py:51
+#: frappe/www/contact.py:61
msgid "New Message from Website Contact Page"
-msgstr "Tin nhắn mới từ Website liên hệ trang"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:206 public/js/frappe/model/model.js:727
+#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
+#: frappe/core/doctype/deleted_document/deleted_document.json
+#: frappe/public/js/frappe/form/toolbar.js:218
+#: frappe/public/js/frappe/model/model.js:762
msgid "New Name"
-msgstr "Tên mới"
+msgstr ""
-#. Label of a Read Only field in DocType 'Deleted Document'
-#: core/doctype/deleted_document/deleted_document.json
-msgctxt "Deleted Document"
-msgid "New Name"
-msgstr "Tên mới"
-
-#: email/doctype/email_group/email_group.js:67
+#: frappe/email/doctype/email_group/email_group.js:67
msgid "New Newsletter"
-msgstr "Bản tin"
+msgstr ""
-#: desk/doctype/notification_log/notification_log.py:155
+#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
-msgstr "Thông báo mới"
+msgstr ""
-#: core/doctype/user/user.js:167 www/update-password.html:19
+#: frappe/public/js/frappe/widgets/widget_dialog.js:64
+msgid "New Number Card"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:66
+msgid "New Onboarding"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42
msgid "New Password"
-msgstr "Mật khẩu mới"
+msgstr ""
-#: printing/page/print/print.js:260 printing/page/print/print.js:314
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:61
+#: frappe/printing/page/print/print.js:267
+#: frappe/printing/page/print/print.js:321
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
-msgstr "Tên định dạng in mới"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1310
+#: frappe/public/js/frappe/widgets/widget_dialog.js:68
+msgid "New Quick List"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1378
msgid "New Report name"
-msgstr "Tên báo cáo mới"
+msgstr ""
-#: workflow/page/workflow_builder/workflow_builder.js:61
+#. Label of the new_role (Data) field in DocType 'Role Replication'
+#: frappe/core/doctype/role_replication/role_replication.json
+msgid "New Role"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:60
+msgid "New Shortcut"
+msgstr ""
+
+#. Label of the new_users (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "New Users (Last 30 days)"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:14
+#: frappe/core/doctype/version/version_view.html:76
+msgid "New Value"
+msgstr ""
+
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:61
msgid "New Workflow Name"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:1172
+#: frappe/public/js/frappe/views/workspace/workspace.js:390
msgid "New Workspace"
msgstr ""
-#: www/update-password.html:77
+#: frappe/www/update-password.html:79
msgid "New password cannot be same as old password"
msgstr ""
-#: utils/change_log.py:306
+#: frappe/utils/change_log.py:389
msgid "New updates are available"
-msgstr "Những cập nhật mới đã có hiệu lực"
+msgstr ""
#. Description of the 'Disable signups' (Check) field in DocType 'Website
#. Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "New users will have to be manually registered by system managers."
msgstr ""
#. Description of the 'Set Value' (Small Text) field in DocType 'Property
#. Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "New value to be set"
-msgstr "Giá trị mới được thiết lập"
+msgstr ""
-#: public/js/frappe/form/quick_entry.js:124 public/js/frappe/form/toolbar.js:36
-#: public/js/frappe/form/toolbar.js:196 public/js/frappe/form/toolbar.js:209
-#: public/js/frappe/form/toolbar.js:490
-#: public/js/frappe/ui/toolbar/search_utils.js:151
-#: public/js/frappe/ui/toolbar/search_utils.js:152
-#: public/js/frappe/ui/toolbar/search_utils.js:201
-#: public/js/frappe/ui/toolbar/search_utils.js:202
-#: public/js/frappe/views/treeview.js:350
-#: website/doctype/web_form/web_form.py:310
+#: frappe/public/js/frappe/form/quick_entry.js:179
+#: frappe/public/js/frappe/form/toolbar.js:37
+#: frappe/public/js/frappe/form/toolbar.js:206
+#: frappe/public/js/frappe/form/toolbar.js:221
+#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/model/model.js:661
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
+#: frappe/public/js/frappe/views/treeview.js:366
+#: frappe/public/js/frappe/widgets/widget_dialog.js:72
+#: frappe/website/doctype/web_form/web_form.py:379
msgid "New {0}"
-msgstr "Mới {0}"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:394
msgid "New {0} Created"
-msgstr "Mới {0} được tạo"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:386
msgid "New {0} {1} added to Dashboard {2}"
-msgstr "{0} {1} mới được thêm vào Trang tổng quan {2}"
+msgstr ""
-#: public/js/frappe/form/quick_entry.js:167
-#: public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:391
msgid "New {0} {1} created"
-msgstr "{0} {1} mới được tạo"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:373
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385
msgid "New {0}: {1}"
-msgstr "Mới {0}: {1}"
+msgstr ""
-#: utils/change_log.py:298
+#: frappe/utils/change_log.py:375
msgid "New {} releases for the following apps are available"
-msgstr "Đã có bản phát hành {} mới cho các ứng dụng sau"
+msgstr ""
-#: core/doctype/user/user.py:764
+#: frappe/core/doctype/user/user.py:802
msgid "Newly created user {0} has no roles enabled."
msgstr ""
#. Label of a Card Break in the Tools Workspace
-#. Name of a DocType
-#: automation/workspace/tools/tools.json
-#: email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "Đăng ký nhận bản tin"
-
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Newsletter"
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Newsletter"
-msgstr "Đăng ký nhận bản tin"
+msgstr ""
#. Name of a DocType
-#: email/doctype/newsletter_attachment/newsletter_attachment.json
+#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Newsletter Attachment"
msgstr ""
#. Name of a DocType
-#: email/doctype/newsletter_email_group/newsletter_email_group.json
+#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Newsletter Email Group"
-msgstr "Bản tin Email Nhóm"
+msgstr ""
#. Name of a role
-#: email/doctype/email_group/email_group.json
-#: email/doctype/email_group_member/email_group_member.json
-#: email/doctype/newsletter/newsletter.json
-#: website/doctype/marketing_campaign/marketing_campaign.json
+#: frappe/email/doctype/email_group/email_group.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
-msgstr "Quản lý bản tin"
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:130
+#: frappe/email/doctype/newsletter/newsletter.py:128
msgid "Newsletter has already been sent"
-msgstr "Bản tin đã được gửi đi"
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:149
+#: frappe/email/doctype/newsletter/newsletter.py:147
msgid "Newsletter must be published to send webview link in email"
msgstr ""
-#: email/doctype/newsletter/newsletter.py:137
+#: frappe/email/doctype/newsletter/newsletter.py:135
msgid "Newsletter should have atleast one recipient"
-msgstr "Bản tin nên có ít nhất một người nhận"
-
-#: email/doctype/newsletter/newsletter.py:392
-msgid "Newsletters"
-msgstr "Bản tin"
-
-#: public/js/frappe/form/form_tour.js:316
-#: public/js/onboarding_tours/onboarding_tours.js:15
-#: public/js/onboarding_tours/onboarding_tours.js:240
-#: templates/includes/slideshow.html:38 website/utils.py:247
-#: website/web_template/slideshow/slideshow.html:44
-msgid "Next"
-msgstr "Tiếp theo"
-
-#. Label of a Link field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
-msgid "Next Action Email Template"
-msgstr "Mẫu email hành động tiếp theo"
-
-#. Label of a HTML field in DocType 'Success Action'
-#: core/doctype/success_action/success_action.json
-msgctxt "Success Action"
-msgid "Next Actions HTML"
-msgstr "HTML hành động tiếp theo"
-
-#: public/js/frappe/form/toolbar.js:297
-msgid "Next Document"
msgstr ""
-#. Label of a Datetime field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#: frappe/email/doctype/newsletter/newsletter.py:390
+msgid "Newsletters"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_tour.js:14
+#: frappe/public/js/frappe/form/form_tour.js:324
+#: frappe/public/js/frappe/web_form/web_form.js:91
+#: 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 a Link field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the next_form_tour (Link) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Next Form Tour"
msgstr ""
-#. Label of a Date field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#: frappe/public/js/frappe/ui/filters/filter.js:696
+msgid "Next Month"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:700
+msgid "Next Quarter"
+msgstr ""
+
+#. Label of the next_schedule_date (Date) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Next Schedule Date"
-msgstr "Ngày Lịch kế tiếp"
+msgstr ""
-#. Label of a Link field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
+#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:6
+msgid "Next Scheduled Date"
+msgstr ""
+
+#. Label of the next_state (Link) field in DocType 'Workflow Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Next State"
-msgstr "TÌnh trạng kế tiếp"
+msgstr ""
-#. Label of a Code field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the next_step_condition (Code) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Next Step Condition"
msgstr ""
-#. Label of a Password field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Label of the next_sync_token (Password) field in DocType 'Google Calendar'
+#. Label of the next_sync_token (Password) field in DocType 'Google Contacts'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Next Sync Token"
-msgstr "Mã thông báo đồng bộ hóa tiếp theo"
+msgstr ""
-#. Label of a Password field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
-msgid "Next Sync Token"
-msgstr "Mã thông báo đồng bộ hóa tiếp theo"
+#: frappe/public/js/frappe/ui/filters/filter.js:692
+msgid "Next Week"
+msgstr ""
-#. Label of a Check field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/public/js/frappe/ui/filters/filter.js:708
+msgid "Next Year"
+msgstr ""
+
+#: frappe/public/js/frappe/form/workflow.js:45
+msgid "Next actions"
+msgstr ""
+
+#. Label of the next_on_click (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Next on Click"
msgstr ""
-#: integrations/doctype/webhook/webhook.py:137
-#: public/js/form_builder/utils.js:341
-#: public/js/frappe/form/controls/link.js:471
-#: public/js/frappe/list/list_sidebar_group_by.js:223
-#: public/js/frappe/views/reports/query_report.js:1513
-#: website/doctype/help_article/templates/help_article.html:26
-msgid "No"
-msgstr "Không"
-
-#: public/js/frappe/ui/filters/filter.js:501
-msgctxt "Checkbox is not checked"
-msgid "No"
-msgstr "Không"
-
-#: public/js/frappe/ui/messages.js:37
-msgctxt "Dismiss confirmation dialog"
-msgid "No"
-msgstr "Không"
-
+#. Option for the 'Standard' (Select) field in DocType 'Page'
+#. Option for the 'Is Standard' (Select) field in DocType 'Report'
#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
-msgid "No"
-msgstr "Không"
-
-#. Option for the 'Standard' (Select) field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "No"
-msgstr "Không"
-
#. Option for the 'Standard' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
+#: frappe/email/doctype/notification/notification.py:96
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/webhook/webhook.py:128
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/form_builder/utils.js:341
+#: frappe/public/js/frappe/form/controls/link.js:494
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
+#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
-msgstr "Không"
+msgstr ""
-#. Option for the 'Is Standard' (Select) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#: frappe/public/js/frappe/ui/filters/filter.js:546
+msgctxt "Checkbox is not checked"
msgid "No"
-msgstr "Không"
+msgstr ""
-#: www/third_party_apps.html:54
+#: frappe/public/js/frappe/ui/messages.js:37
+msgctxt "Dismiss confirmation dialog"
+msgid "No"
+msgstr ""
+
+#: frappe/www/third_party_apps.html:56
msgid "No Active Sessions"
-msgstr "Không có Phiên tích cực"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the no_copy (Check) field in DocType 'DocField'
+#. Label of the no_copy (Check) field in DocType 'Custom Field'
+#. Label of the no_copy (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "No Copy"
-msgstr "Không có bản sao chép"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "No Copy"
-msgstr "Không có bản sao chép"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "No Copy"
-msgstr "Không có bản sao chép"
-
-#: core/doctype/data_export/exporter.py:162
-#: email/doctype/auto_email_report/auto_email_report.py:263
-#: public/js/frappe/data_import/import_preview.js:142
-#: public/js/frappe/form/multi_select_dialog.js:223
-#: public/js/frappe/utils/datatable.js:10
+#: frappe/core/doctype/data_export/exporter.py:162
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:289
+#: 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 "Không có dữ liệu"
+msgstr ""
-#: public/js/frappe/views/inbox/inbox_view.js:176
+#: frappe/public/js/frappe/widgets/quick_list_widget.js:134
+msgid "No Data..."
+msgstr ""
+
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:176
msgid "No Email Account"
-msgstr "Không có tài khoản email"
+msgstr ""
-#: public/js/frappe/views/inbox/inbox_view.js:183
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:196
+msgid "No Email Accounts Assigned"
+msgstr ""
+
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:183
msgid "No Emails"
-msgstr "không có email"
+msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:362
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:361
msgid "No Entry for the User {0} found within LDAP!"
-msgstr "Không tìm thấy mục nhập nào cho người dùng {0} trong LDAP!"
+msgstr ""
-#: public/js/frappe/widgets/chart_widget.js:366
+#: frappe/public/js/frappe/widgets/chart_widget.js:407
msgid "No Filters Set"
-msgstr "Không có bộ lọc"
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:356
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:372
msgid "No Google Calendar Event to sync."
-msgstr "Không có sự kiện Lịch Google để đồng bộ hóa."
+msgstr ""
-#: public/js/frappe/ui/capture.js:254
+#: frappe/public/js/frappe/ui/capture.js:262
msgid "No Images"
msgstr ""
-#: desk/page/leaderboard/leaderboard.js:282
-msgid "No Items Found"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:363
+msgid "No LDAP User found for email: {0}"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:364
-msgid "No LDAP User found for email: {0}"
-msgstr "Không tìm thấy Người dùng LDAP cho email: {0}"
+#: 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 ""
-#: printing/page/print/print.js:675 printing/page/print/print.js:757
-#: public/js/frappe/list/bulk_operations.js:82
-#: public/js/frappe/list/bulk_operations.js:126 utils/weasyprint.py:54
+#: frappe/printing/page/print/print.js:703
+#: frappe/printing/page/print/print.js:784
+#: frappe/public/js/frappe/list/bulk_operations.js:98
+#: frappe/public/js/frappe/list/bulk_operations.js:170
+#: frappe/utils/weasyprint.py:52
msgid "No Letterhead"
msgstr ""
-#: model/naming.py:436
+#: frappe/model/naming.py:481
msgid "No Name Specified for {0}"
-msgstr "Không có tên được chỉ định cho {0}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1684
+#: frappe/public/js/frappe/ui/notifications/notifications.js:315
+msgid "No New notifications"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1743
msgid "No Permissions Specified"
-msgstr "Không quyền hạn nào được xác định"
+msgstr ""
-#: core/page/permission_manager/permission_manager.js:192
+#: frappe/core/page/permission_manager/permission_manager.js:199
msgid "No Permissions set for this criteria."
-msgstr "Quyền không thiết lập cho các tiêu chí này."
+msgstr ""
-#: core/page/dashboard_view/dashboard_view.js:93
+#: frappe/core/page/dashboard_view/dashboard_view.js:93
msgid "No Permitted Charts"
-msgstr "Không có biểu đồ được phép"
+msgstr ""
-#: core/page/dashboard_view/dashboard_view.js:92
+#: frappe/core/page/dashboard_view/dashboard_view.js:92
msgid "No Permitted Charts on this Dashboard"
-msgstr "Không có Biểu đồ được phép trên Trang tổng quan này"
+msgstr ""
-#: printing/page/print/print.js:835
+#: frappe/printing/doctype/print_settings/print_settings.js:13
+msgid "No Preview"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:707
+msgid "No Preview Available"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:862
msgid "No Printer is Available."
-msgstr "Không có máy in có sẵn."
+msgstr ""
-#: public/js/frappe/form/link_selector.js:135
+#: 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 "Không có kết quả"
+msgstr ""
-#: public/js/frappe/ui/toolbar/search.js:51
+#: frappe/public/js/frappe/ui/toolbar/search.js:51
msgid "No Results found"
msgstr ""
-#: core/doctype/user/user.py:765
+#: frappe/core/doctype/user/user.py:803
msgid "No Roles Specified"
msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:341
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "No Select Field Found"
msgstr ""
-#: desk/reportview.py:565
+#: frappe/core/doctype/recorder/recorder.py:179
+msgid "No Suggestions"
+msgstr ""
+
+#: frappe/desk/reportview.py:672
msgid "No Tags"
-msgstr "không Thẻ"
+msgstr ""
-#: email/doctype/notification/notification.js:180
+#: frappe/public/js/frappe/ui/notifications/notifications.js:442
+msgid "No Upcoming Events"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/address_list.html:43
+msgid "No address added yet."
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.js:229
msgid "No alerts for today"
-msgstr "Không có cảnh báo cho ngày hôm nay"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:34
+#: frappe/core/doctype/recorder/recorder.py:178
+msgid "No automatic optimization suggestions available."
+msgstr ""
+
+#: frappe/email/doctype/newsletter/newsletter.js:34
msgid "No broken links found in the email content"
msgstr ""
-#: public/js/frappe/form/save.js:38
+#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
-msgstr "Không có thay đổi trong tài liệu"
+msgstr ""
-#: model/rename_doc.py:370
+#: frappe/public/js/frappe/views/workspace/workspace.js:662
+msgid "No changes made"
+msgstr ""
+
+#: frappe/model/rename_doc.py:369
msgid "No changes made because old and new name are the same."
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:1477
-msgid "No changes made on the page"
-msgstr ""
-
-#: custom/doctype/doctype_layout/doctype_layout.js:59
+#: frappe/custom/doctype/doctype_layout/doctype_layout.js:59
msgid "No changes to sync"
msgstr ""
-#: core/doctype/data_import/importer.py:286
+#: frappe/core/doctype/data_import/importer.py:298
msgid "No changes to update"
msgstr ""
-#: website/doctype/blog_post/blog_post.py:376
+#: frappe/website/doctype/blog_post/blog_post.py:378
msgid "No comments yet"
-msgstr "Chưa có bình luận nào"
+msgstr ""
-#: templates/includes/comments/comments.html:4
+#: frappe/templates/includes/comments/comments.html:4
msgid "No comments yet. "
msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:426
+#: frappe/public/js/frappe/form/templates/contact_list.html:91
+msgid "No contacts added yet."
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438
msgid "No contacts linked to document"
-msgstr "Không có liên hệ liên kết đến tài liệu"
+msgstr ""
-#: desk/query_report.py:335
+#: frappe/desk/query_report.py:342
msgid "No data to export"
-msgstr "Không có dữ liệu để xuất"
+msgstr ""
-#: contacts/doctype/address/address.py:251
+#: frappe/contacts/doctype/address/address.py:246
msgid "No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template."
-msgstr "Không tìm thấy mẫu địa chỉ mặc định. Vui lòng tạo một cái mới từ Cài đặt> In và Nhãn hiệu> Mẫu địa chỉ."
+msgstr ""
-#: public/js/frappe/ui/toolbar/search.js:71
+#: frappe/public/js/frappe/ui/toolbar/search.js:71
msgid "No documents found tagged with {0}"
-msgstr "Không tìm thấy tài liệu nào được gắn thẻ {0}"
+msgstr ""
-#: public/js/frappe/views/inbox/inbox_view.js:21
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:21
msgid "No email account associated with the User. Please add an account under User > Email Inbox."
-msgstr "Không có tài khoản email liên quan đến Người dùng. Vui lòng thêm một tài khoản trong Người dùng> Hộp thư đến Email."
+msgstr ""
-#: utils/file_manager.py:143
+#: frappe/core/doctype/data_import/data_import.js:478
+msgid "No failed logs"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+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 "Không có tập tin đính kèm"
+msgstr ""
-#: desk/form/utils.py:102
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:134
+msgid "No filters found"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter_list.js:299
+msgid "No filters selected"
+msgstr ""
+
+#: frappe/desk/form/utils.py:111
msgid "No further records"
-msgstr "Không có bản ghi nào khác"
+msgstr ""
-#: templates/includes/search_template.html:49
+#: frappe/templates/includes/search_template.html:49
msgid "No matching records. Search something new"
-msgstr "Không có bản ghi phù hợp. Hãy kiếm bản khác."
+msgstr ""
-#: public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:161
msgid "No more items to display"
-msgstr "Không còn mục nào để hiển thị"
+msgstr ""
-#: utils/password_strength.py:45
+#: frappe/utils/password_strength.py:45
msgid "No need for symbols, digits, or uppercase letters."
-msgstr "Không cần ký hiệu, chữ số, hoặc con chữ in hoa"
+msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.py:192
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:195
msgid "No new Google Contacts synced."
-msgstr "Không có Danh bạ Google mới được đồng bộ hóa."
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:415
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:46
+msgid "No new notifications"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:415
msgid "No of Columns"
-msgstr "Số các cột"
+msgstr ""
-#. Label of a Int field in DocType 'SMS Log'
-#: core/doctype/sms_log/sms_log.json
-msgctxt "SMS Log"
+#. Label of the no_of_requested_sms (Int) field in DocType 'SMS Log'
+#: frappe/core/doctype/sms_log/sms_log.json
msgid "No of Requested SMS"
msgstr ""
-#. Label of a Int field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the no_of_rows (Int) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "No of Rows (Max 500)"
-msgstr "Số của các Hàng (Tối đa 500)"
+msgstr ""
-#. Label of a Int field in DocType 'SMS Log'
-#: core/doctype/sms_log/sms_log.json
-msgctxt "SMS Log"
+#. Label of the no_of_sent_sms (Int) field in DocType 'SMS Log'
+#: frappe/core/doctype/sms_log/sms_log.json
msgid "No of Sent SMS"
msgstr ""
-#: __init__.py:1027 client.py:109 client.py:151
+#: frappe/__init__.py:827 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
-msgstr "Không quyền hạn cho {0}"
+msgstr ""
-#: public/js/frappe/form/form.js:1115
+#: frappe/public/js/frappe/form/form.js:1142
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
-msgstr "Không có quyền tới '{0}' {1}"
+msgstr ""
-#: model/db_query.py:943
+#: frappe/model/db_query.py:949
msgid "No permission to read {0}"
-msgstr "Không cho phép đọc {0}"
+msgstr ""
-#: share.py:224
+#: frappe/share.py:220
msgid "No permission to {0} {1} {2}"
-msgstr "Không có quyền tới {0} {1} {2}"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:175
+#: frappe/core/doctype/user_permission/user_permission_list.js:175
msgid "No records deleted"
-msgstr "Không có hồ sơ bị xóa"
+msgstr ""
-#: contacts/report/addresses_and_contacts/addresses_and_contacts.py:121
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
msgid "No records present in {0}"
-msgstr "Không có hồ sơ nào trong {0}"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:221
+#: frappe/public/js/frappe/list/list_sidebar_stat.html:3
+msgid "No records tagged."
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:225
msgid "No records will be exported"
-msgstr "Không có hồ sơ sẽ được xuất khẩu"
+msgstr ""
-#: www/printview.py:426
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "No rows"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:129
+msgid "No subject"
+msgstr ""
+
+#: frappe/www/printview.py:472
msgid "No template found at path: {0}"
-msgstr "Không có mẫu tìm thấy tại đường : {0}"
+msgstr ""
-#: website/web_template/discussions/discussions.html:2
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:262
+msgid "No values to show"
+msgstr ""
+
+#: frappe/website/web_template/discussions/discussions.html:2
msgid "No {0}"
msgstr ""
-#: public/js/frappe/list/list_view.js:466
+#: frappe/public/js/frappe/list/list_view_select.js:157
+msgid "No {0} Found"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form_list.js:233
+msgid "No {0} found"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:494
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
-#: public/js/frappe/views/inbox/inbox_view.js:171
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:171
msgid "No {0} mail"
-msgstr "Không {0} mail"
+msgstr ""
-#: public/js/form_builder/utils.js:117 public/js/frappe/form/grid_row.js:251
+#: frappe/public/js/form_builder/utils.js:117
+#: frappe/public/js/frappe/form/grid_row.js:256
+msgctxt "Title of the 'row number' column"
msgid "No."
msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Non Negative"
-msgstr "Không phủ định"
+#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "Nomatim"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the non_negative (Check) field in DocType 'DocField'
+#. Label of the non_negative (Check) field in DocType 'Custom Field'
+#. Label of the non_negative (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Non Negative"
-msgstr "Không phủ định"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Non Negative"
-msgstr "Không phủ định"
+#: frappe/desk/page/setup_wizard/install_fixtures.py:33
+msgid "Non-Conforming"
+msgstr ""
#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
#. Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "None"
-msgstr "không ai"
+msgstr ""
-#: public/js/frappe/form/workflow.js:36
+#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
-msgstr "Không: Kết thúc quy trình làm việc"
+msgstr ""
-#. Label of a Int field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
+#. Label of the normalized_copies (Int) field in DocType 'Recorder Query'
+#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Normalized Copies"
msgstr ""
-#. Label of a Data field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
+#. Label of the normalized_query (Data) field in DocType 'Recorder Query'
+#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Normalized Query"
msgstr ""
-#: core/doctype/user/user.py:972 utils/oauth.py:272
+#: frappe/core/doctype/user/user.py:1016
+#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
-msgstr "Không được phép"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:36
+#: frappe/templates/includes/login/login.js:259
+msgid "Not Allowed: Disabled User"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:36
msgid "Not Ancestors Of"
-msgstr "Không phải là tổ tiên của"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:34
+#: frappe/public/js/frappe/ui/filters/filter.js:34
msgid "Not Descendants Of"
-msgstr "Không phải hậu duệ của"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:17
+#: frappe/public/js/frappe/ui/filters/filter.js:17
msgid "Not Equals"
-msgstr "Không bằng"
+msgstr ""
-#: app.py:363 www/404.html:3
+#: frappe/app.py:374 frappe/www/404.html:3
msgid "Not Found"
-msgstr "Không tìm thấy"
+msgstr ""
-#. Label of a Int field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
+#. Label of the not_helpful (Int) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
msgid "Not Helpful"
msgstr ""
-#: public/js/frappe/ui/filters/filter.js:21
+#: frappe/public/js/frappe/ui/filters/filter.js:21
msgid "Not In"
-msgstr "Không chứa"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:19
+#: frappe/public/js/frappe/ui/filters/filter.js:19
msgid "Not Like"
-msgstr "Không giống"
+msgstr ""
-#: public/js/frappe/form/linked_with.js:45
+#: frappe/public/js/frappe/form/linked_with.js:45
msgid "Not Linked to any record"
-msgstr "Không Liên kết với bất kỳ bản ghi nào"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the not_nullable (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Not Nullable"
msgstr ""
-#: __init__.py:921 app.py:354 desk/calendar.py:26 geo/utils.py:97
-#: public/js/frappe/web_form/webform_script.js:15
-#: website/doctype/web_form/web_form.py:603
-#: website/page_renderers/not_permitted_page.py:20 www/login.py:177
-#: www/qrcode.py:22 www/qrcode.py:25 www/qrcode.py:37
+#: frappe/__init__.py:754 frappe/app.py:367 frappe/desk/calendar.py:26
+#: frappe/public/js/frappe/web_form/webform_script.js:15
+#: frappe/website/doctype/web_form/web_form.py:711
+#: 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 "Không được phép"
+msgstr ""
-#: desk/query_report.py:513
+#: frappe/desk/query_report.py:542
msgid "Not Permitted to read {0}"
msgstr ""
-#: website/doctype/blog_post/blog_post_list.js:7
-#: website/doctype/web_form/web_form_list.js:7
-#: website/doctype/web_page/web_page_list.js:7
+#: frappe/website/doctype/blog_post/blog_post_list.js:7
+#: frappe/website/doctype/web_form/web_form_list.js:7
+#: frappe/website/doctype/web_page/web_page_list.js:7
msgid "Not Published"
-msgstr "Không đăng"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:260 public/js/frappe/form/toolbar.js:740
-#: public/js/frappe/model/indicator.js:28
-#: public/js/frappe/views/kanban/kanban_view.js:167
-#: public/js/frappe/views/reports/report_view.js:173
-#: public/js/print_format_builder/print_format_builder.bundle.js:39
-#: website/doctype/web_form/templates/web_form.html:75
+#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/model/indicator.js:28
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/reports/report_view.js:197
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
+#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
-msgstr "Chưa lưu"
+msgstr ""
-#: core/doctype/error_log/error_log_list.js:7
+#: frappe/core/doctype/error_log/error_log_list.js:7
msgid "Not Seen"
-msgstr "Không Nhìn Thấy"
-
-#: email/doctype/newsletter/newsletter_list.js:9
-msgid "Not Sent"
-msgstr "Không gửi"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Not Sent"
-msgstr "Không gửi"
-
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
-#: email/doctype/email_queue_recipient/email_queue_recipient.json
-msgctxt "Email Queue Recipient"
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
+#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
-msgstr "Không gửi"
+msgstr ""
-#: public/js/frappe/list/list_sidebar_group_by.js:219
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:219
msgid "Not Set"
-msgstr "Không đặt"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:563
+#: frappe/public/js/frappe/ui/filters/filter.js:608
msgctxt "Field value is not set"
msgid "Not Set"
-msgstr "Không đặt"
+msgstr ""
-#: utils/csvutils.py:77
+#: frappe/utils/csvutils.py:102
msgid "Not a valid Comma Separated Value (CSV File)"
-msgstr "Không phải là một giá trị định giới bằng dấu phẩy (CSV file)"
+msgstr ""
-#: core/doctype/user/user.py:197
+#: frappe/core/doctype/user/user.py:264
msgid "Not a valid User Image."
-msgstr "Không phải hình ảnh người dùng hợp lệ."
+msgstr ""
-#: model/workflow.py:118
+#: frappe/model/workflow.py:114
msgid "Not a valid Workflow Action"
-msgstr "Không phải là hành động quy trình làm việc hợp lệ"
+msgstr ""
-#: workflow/doctype/workflow/workflow_list.js:7
+#: frappe/templates/includes/login/login.js:255
+msgid "Not a valid user"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow_list.js:7
msgid "Not active"
-msgstr "Không hoạt động"
+msgstr ""
-#: permissions.py:367
+#: frappe/permissions.py:360
msgid "Not allowed for {0}: {1}"
-msgstr "Không được phép cho {0}: {1}"
+msgstr ""
-#: email/doctype/notification/notification.py:388
+#: frappe/email/doctype/notification/notification.py:595
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
-msgstr "Không được phép đính kèm tài liệu {0}, vui lòng bật Cho phép In Đối với {0} trong Cài đặt In"
+msgstr ""
-#: core/doctype/doctype/doctype.py:338
+#: frappe/core/doctype/doctype/doctype.py:335
msgid "Not allowed to create custom Virtual DocType."
msgstr ""
-#: www/printview.py:141
+#: frappe/www/printview.py:165
msgid "Not allowed to print cancelled documents"
-msgstr "Không được phép để in tài liệu hủy"
+msgstr ""
-#: www/printview.py:138
+#: frappe/www/printview.py:162
msgid "Not allowed to print draft documents"
-msgstr "Không được phép in dự thảo văn bản"
+msgstr ""
-#: permissions.py:213
+#: frappe/permissions.py:212
msgid "Not allowed via controller permission check"
msgstr ""
-#: public/js/frappe/request.js:145 website/js/website.js:94
+#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
msgid "Not found"
-msgstr "Không tìm thấy"
+msgstr ""
-#: core/doctype/page/page.py:62
+#: frappe/core/doctype/page/page.py:62
msgid "Not in Developer Mode"
-msgstr "Không có trong chế độ nhà phát triển"
+msgstr ""
-#: core/doctype/doctype/doctype.py:332
+#: frappe/core/doctype/doctype/doctype.py:330
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
-msgstr "Không có trong chế độ nhà phát triển!Thiết lập trong site_config.json hoặc làm DocType 'Custom'."
+msgstr ""
-#: api/v1.py:88 api/v1.py:93
-#: core/doctype/system_settings/system_settings.py:199 handler.py:109
-#: public/js/frappe/request.js:157 public/js/frappe/request.js:167
-#: public/js/frappe/request.js:172
-#: public/js/frappe/views/kanban/kanban_board.bundle.js:68
-#: website/doctype/web_form/web_form.py:616 website/js/website.js:97
+#: frappe/core/doctype/system_settings/system_settings.py:214
+#: 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:724
+#: frappe/website/js/website.js:97
msgid "Not permitted"
-msgstr "Không được phép"
+msgstr ""
-#: public/js/frappe/list/list_view.js:45
+#: frappe/public/js/frappe/list/list_view.js:50
msgid "Not permitted to view {0}"
-msgstr "Không được phép xem {0}"
-
-#. Name of a DocType
-#: automation/doctype/auto_repeat/auto_repeat.py:395
-#: desk/doctype/note/note.json
-msgid "Note"
-msgstr "Ghi chú"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Note"
+#. Name of a DocType
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/note/note.json
msgid "Note"
-msgstr "Ghi chú"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/note_seen_by/note_seen_by.json
+#: frappe/desk/doctype/note_seen_by/note_seen_by.json
msgid "Note Seen By"
-msgstr "Ghi chú đã xem bởi"
+msgstr ""
-#: www/confirm_workflow_action.html:8
+#: frappe/www/confirm_workflow_action.html:8
msgid "Note:"
-msgstr "Chú thích:"
+msgstr ""
#. Description of the 'Send Email for Successful Backup' (Check) field in
#. DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Note: By default emails for failed backups are sent."
-msgstr "Lưu ý: Theo email mặc định cho các bản sao lưu không thành công được gửi."
-
#. Description of the 'Send Email for Successful backup' (Check) field in
#. DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
+#: frappe/integrations/doctype/google_drive/google_drive.json
msgid "Note: By default emails for failed backups are sent."
-msgstr "Lưu ý: Theo email mặc định cho các bản sao lưu không thành công được gửi."
+msgstr ""
-#: public/js/frappe/utils/utils.js:775
+#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
-msgstr "Lưu ý: Việc thay đổi tên trang sẽ xóa URL trước đó của trang"
+msgstr ""
-#: core/doctype/user/user.js:25
+#: frappe/core/doctype/user/user.js:35
msgid "Note: Etc timezones have their signs reversed."
msgstr ""
#. Description of the 'sb0' (Section Break) field in DocType 'Website
#. Slideshow'
-#: website/doctype/website_slideshow/website_slideshow.json
-msgctxt "Website Slideshow"
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Note: For best results, images must be of the same size and width must be greater than height."
-msgstr "Lưu ý: Để có kết quả tốt nhất, hình ảnh phải có cùng kích thước và chiều rộng phải lớn hơn chiều cao."
+msgstr ""
#. Description of the 'Allow only one session per user' (Check) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Note: Multiple sessions will be allowed in case of mobile device"
-msgstr "Lưu ý: Nhiều phần sẽ được cho phép trong trường hợp của thiết bị di động"
+msgstr ""
-#: website/web_form/request_to_delete_data/request_to_delete_data.js:8
+#: frappe/core/doctype/user/user.js:393
+msgid "Note: This will be shared with user."
+msgstr ""
+
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.js:8
msgid "Note: Your request for account deletion will be fulfilled within {0} hours."
msgstr ""
-#: core/doctype/data_export/exporter.py:183
+#: frappe/core/doctype/data_export/exporter.py:183
msgid "Notes:"
-msgstr "Ghi chú:"
+msgstr ""
-#: public/js/frappe/form/undo_manager.js:43
+#: frappe/public/js/frappe/ui/notifications/notifications.js:492
+msgid "Nothing New"
+msgstr ""
+
+#: frappe/public/js/frappe/form/undo_manager.js:43
msgid "Nothing left to redo"
msgstr ""
-#: public/js/frappe/form/undo_manager.js:33
+#: frappe/public/js/frappe/form/undo_manager.js:33
msgid "Nothing left to undo"
msgstr ""
-#: public/js/frappe/list/base_list.js:359 templates/includes/list/list.html:7
-#: website/doctype/blog_post/templates/blog_post_list.html:41
+#: frappe/public/js/frappe/list/base_list.js:372
+#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/templates/includes/list/list.html:9
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41
+#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
-msgstr "Không có gì để hiển thị"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:129
+#: frappe/core/doctype/user_permission/user_permission_list.js:129
msgid "Nothing to update"
-msgstr "Không có gì để cập nhật"
-
-#. Name of a DocType
-#: core/doctype/communication/mixins.py:142
-#: email/doctype/notification/notification.json
-msgid "Notification"
-msgstr "Thông báo"
-
-#. Label of a Section Break field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Notification"
-msgstr "Thông báo"
-
-#. Option for the 'Communication Type' (Select) field in DocType
-#. 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Notification"
-msgstr "Thông báo"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Notification"
-msgstr "Thông báo"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Notification"
-msgstr "Thông báo"
+msgstr ""
+#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Notification"
+#. Name of a DocType
+#. Label of the notification_section (Section Break) field in DocType 'S3
+#. Backup Settings'
+#: 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
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Notification"
-msgstr "Thông báo"
-
-#. Label of a Section Break field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Notification"
-msgstr "Thông báo"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Notification Log"
-msgstr "Nhật ký thông báo"
+msgstr ""
#. Name of a DocType
-#: email/doctype/notification_recipient/notification_recipient.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Notification Recipient"
-msgstr "Người nhận thông báo"
-
-#. Name of a DocType
-#: desk/doctype/notification_settings/notification_settings.json
-#: public/js/frappe/ui/notifications/notifications.js:36
-msgid "Notification Settings"
-msgstr "Thiết lập thông báo"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Notification Settings"
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:37
msgid "Notification Settings"
-msgstr "Thiết lập thông báo"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/notification_subscribed_document/notification_subscribed_document.json
+#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json
msgid "Notification Subscribed Document"
-msgstr "Tài liệu đăng ký thông báo"
+msgstr ""
-#: public/js/frappe/ui/notifications/notifications.js:49
-#: public/js/frappe/ui/notifications/notifications.js:180
-msgid "Notifications"
-msgstr "Thông báo"
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
+msgid "Notification sent to"
+msgstr ""
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#: frappe/email/doctype/notification/notification.py:500
+msgid "Notification: customer {0} has no Mobile number set"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:486
+msgid "Notification: document {0} has no {1} number set (field: {2})"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:495
+msgid "Notification: user {0} has no Mobile number set"
+msgstr ""
+
+#. Label of the notifications (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:50
+#: frappe/public/js/frappe/ui/notifications/notifications.js:187
msgid "Notifications"
-msgstr "Thông báo"
+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'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Notifications and bulk mails will be sent from this outgoing server."
-msgstr "Thông báo và mail số lượng lớn sẽ được gửi từ máy chủ đi"
+msgstr ""
-#. Label of a Check field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
+#. Label of the notify_on_every_login (Check) field in DocType 'Note'
+#: frappe/desk/doctype/note/note.json
msgid "Notify Users On Every Login"
-msgstr "Thông báo cho người dùng mỗi lần đăng nhập"
+msgstr ""
-#. Label of a Check field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the notify_by_email (Check) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Notify by Email"
-msgstr "Thông báo qua email"
+msgstr ""
-#. Label of a Check field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
+#. Label of the notify_by_email (Check) field in DocType 'DocShare'
+#: frappe/core/doctype/docshare/docshare.json
msgid "Notify by email"
-msgstr "Thông báo qua email"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the notify_if_unreplied (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Notify if unreplied"
-msgstr "Thông báo nếu không trả lời"
+msgstr ""
-#. Label of a Int field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the unreplied_for_mins (Int) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Notify if unreplied for (in mins)"
-msgstr "Thông báo nếu không trả lời cho (ở phút)"
+msgstr ""
-#. Label of a Check field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
+#. Label of the notify_on_login (Check) field in DocType 'Note'
+#: frappe/desk/doctype/note/note.json
msgid "Notify users with a popup when they log in"
-msgstr "Thông báo cho người sử dụng với một popup khi họ đăng nhập"
+msgstr ""
-#: public/js/frappe/form/controls/datetime.js:25
-#: public/js/frappe/form/controls/time.js:37
+#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
-msgstr "Hiện nay"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Phone'
-#: contacts/doctype/contact_phone/contact_phone.json
-msgctxt "Contact Phone"
+#. Label of the phone (Data) field in DocType 'Contact Phone'
+#: frappe/contacts/doctype/contact_phone/contact_phone.json
msgid "Number"
-msgstr "Con số"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/number_card/number_card.json
-#: public/js/frappe/widgets/widget_dialog.js:591
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:615
msgid "Number Card"
-msgstr "Thẻ số"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/number_card_link/number_card_link.json
+#: frappe/desk/doctype/number_card_link/number_card_link.json
msgid "Number Card Link"
-msgstr "Liên kết thẻ số"
+msgstr ""
-#. Label of a Link field in DocType 'Workspace Number Card'
-#: desk/doctype/workspace_number_card/workspace_number_card.json
-msgctxt "Workspace Number Card"
+#. Label of the number_card_name (Link) field in DocType 'Workspace Number
+#. Card'
+#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json
msgid "Number Card Name"
msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:621
+#. Label of the number_cards_tab (Tab Break) field in DocType 'Workspace'
+#. Label of the number_cards (Table) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:645
msgid "Number Cards"
-msgstr "Thẻ số"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Workspace'
-#. Label of a Table field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Number Cards"
-msgstr "Thẻ số"
-
-#. Label of a Select field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the number_format (Select) field in DocType 'Language'
+#. Label of the number_format (Select) field in DocType 'System Settings'
+#. Label of the number_format (Select) field in DocType 'Currency'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/geo/doctype/currency/currency.json
msgid "Number Format"
-msgstr "Định dạng số"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Number Format"
-msgstr "Định dạng số"
-
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the backup_limit (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Number of Backups"
-msgstr "Số sao lưu"
+msgstr ""
-#. Label of a Int field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
+#. Label of the no_of_backups (Int) field in DocType 'Dropbox Settings'
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
msgid "Number of DB Backups"
-msgstr "Số lượng bản sao lưu DB"
+msgstr ""
-#: integrations/doctype/dropbox_settings/dropbox_settings.py:53
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:54
msgid "Number of DB backups cannot be less than 1"
-msgstr "Số lượng bản sao lưu DB không thể nhỏ hơn 1"
+msgstr ""
-#. Label of a Int field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Number of Groups"
-msgstr "Số lượng nhóm"
+msgstr ""
-#. Label of a Int field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#. Label of the number_of_queries (Int) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
msgid "Number of Queries"
msgstr ""
-#: core/doctype/doctype/doctype.py:444 public/js/frappe/doctype/index.js:59
+#: frappe/core/doctype/doctype/doctype.py:442
+#: frappe/public/js/frappe/doctype/index.js:59
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:169
msgid "Number of backups must be greater than zero."
msgstr ""
#. Description of the 'Columns' (Int) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Number of columns for a field in a Grid (Total Columns in a grid should be less than 11)"
-msgstr "Số cột cho một trường trong một lưới (Tổng số cột trong một mạng lưới nên được ít hơn 11)"
-
-#. Description of the 'Columns' (Int) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)"
-msgstr "Số cột cho một trường trong một xem danh sách hoặc một lưới (Tổng cột nên được ít hơn 11)"
+msgstr ""
#. Description of the 'Columns' (Int) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Description of the 'Columns' (Int) field in DocType 'Custom Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)"
-msgstr "Số cột cho một trường trong một xem danh sách hoặc một lưới (Tổng cột nên được ít hơn 11)"
+msgstr ""
#. Description of the 'Document Share Key Expiry (in Days)' (Int) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Number of days after which the document Web View link shared on email will be expired"
msgstr ""
+#. Label of the cache_keys (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Number of keys"
+msgstr ""
+
+#. Label of the onsite_backups (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Number of onsite backups"
+msgstr ""
+
#. Option for the 'Method' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "OAuth"
msgstr ""
#. Name of a DocType
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "OAuth Authorization Code"
-msgstr "OAuth Mã ủy quyền"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
msgid "OAuth Bearer Token"
-msgstr "OAuth Bearer Thông báo"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/oauth_client/oauth_client.json
-msgid "OAuth Client"
-msgstr "OAuth khách hàng"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "OAuth Client"
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "OAuth Client"
-msgstr "OAuth khách hàng"
+msgstr ""
-#. Label of a Section Break field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
+#. Label of the sb_00 (Section Break) field in DocType 'Google Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "OAuth Client ID"
-msgstr "ID khách hàng OAuth"
+msgstr ""
-#: email/oauth.py:31
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
+msgid "OAuth Client Role"
+msgstr ""
+
+#: frappe/email/oauth.py:30
msgid "OAuth Error"
msgstr ""
#. Name of a DocType
-#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
-msgid "OAuth Provider Settings"
-msgstr "Cài đặt nhà cung cấp OAuth"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "OAuth Provider Settings"
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "OAuth Provider Settings"
-msgstr "Cài đặt nhà cung cấp OAuth"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/oauth_scope/oauth_scope.json
+#: frappe/integrations/doctype/oauth_scope/oauth_scope.json
msgid "OAuth Scope"
msgstr ""
-#: email/doctype/email_account/email_account.js:187
+#: frappe/email/doctype/email_account/email_account.js:250
msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
msgstr ""
-#: templates/includes/oauth_confirmation.html:39
-msgid "OK"
+#. Option for the 'Method' (Select) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "OPTIONS"
msgstr ""
-#. Option for the 'Method' (Select) field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "OPTIONS"
+#: frappe/public/js/form_builder/components/Tabs.vue:190
+msgid "OR"
msgstr ""
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "OTP App"
-msgstr "Ứng dụng OTP"
+msgstr ""
-#. Label of a Data field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the otp_issuer_name (Data) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "OTP Issuer Name"
-msgstr "Tên tổ chức OTP"
+msgstr ""
-#: twofactor.py:468
+#: frappe/twofactor.py:445
msgid "OTP Secret Reset - {0}"
msgstr ""
-#: twofactor.py:487
+#: frappe/twofactor.py:464
msgid "OTP Secret has been reset. Re-registration will be required on next login."
-msgstr "OTP Secret đã được đặt lại. Đăng ký lại sẽ được yêu cầu vào lần đăng nhập tiếp theo."
+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'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Off"
-msgstr "Tắt"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Office"
-msgstr "Văn phòng"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Office 365"
-msgstr "Văn phòng 365"
+msgstr ""
-#. Label of a Int field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/core/doctype/server_script/server_script.js:36
+msgid "Official Documentation"
+msgstr ""
+
+#. Label of the offset_x (Int) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Offset X"
msgstr ""
-#. Label of a Int field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the offset_y (Int) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Offset Y"
msgstr ""
-#: www/update-password.html:15
+#: frappe/www/update-password.html:38
msgid "Old Password"
-msgstr "Mật khẩu cũ"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.py:362
+#: frappe/custom/doctype/custom_field/custom_field.py:412
msgid "Old and new fieldnames are same."
msgstr ""
#. Description of the 'Number of Backups' (Int) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Older backups will be automatically deleted"
-msgstr "sao lưu cũ sẽ được tự động xóa"
+msgstr ""
+
+#. Label of the oldest_unscheduled_job (Link) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Oldest Unscheduled Job"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "On Hold"
msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "On Payment Authorization"
msgstr ""
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "On Payment Charge Processed"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "On Payment Failed"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "On Payment Mandate Acquisition Processed"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "On Payment Mandate Charge Processed"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "On Payment Paid"
+msgstr ""
+
#. Description of the 'Is Dynamic URL?' (Check) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "On checking this option, URL will be treated like a jinja template string"
msgstr ""
-#. Label of a Check field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#: frappe/public/js/frappe/ui/filters/filter.js:66
+#: frappe/public/js/frappe/ui/filters/filter.js:72
+msgid "On or After"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:65
+#: frappe/public/js/frappe/ui/filters/filter.js:71
+msgid "On or Before"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:960
+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:322
msgid "Onboard"
msgstr ""
-#. Name of a DocType
-#: desk/doctype/onboarding_permission/onboarding_permission.json
-msgid "Onboarding Permission"
-msgstr "Quyền tham gia"
+#: frappe/public/js/frappe/widgets/widget_dialog.js:232
+msgid "Onboarding Name"
+msgstr ""
-#. Label of a Small Text field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. 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
-#: desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Onboarding Step"
-msgstr "Bước giới thiệu"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Onboarding Step"
-msgstr "Bước giới thiệu"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/onboarding_step_map/onboarding_step_map.json
+#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json
msgid "Onboarding Step Map"
-msgstr "Sơ đồ bước giới thiệu"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:269
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:264
msgid "Onboarding complete"
msgstr ""
-#: core/doctype/doctype/doctype_list.js:28
-msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
-msgstr "Sau khi gửi, tài liệu có thể gửi có thể được thay đổi. Họ chỉ có thể được hủy bỏ và sửa đổi."
-
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:42
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
-msgstr "Sau khi gửi, tài liệu có thể gửi có thể được thay đổi. Họ chỉ có thể được hủy bỏ và sửa đổi."
-
-#: www/complete_signup.html:7
-msgid "One Last Step"
-msgstr "Một Bước cuối"
-
-#: twofactor.py:283
-msgid "One Time Password (OTP) Registration Code from {}"
-msgstr "Mã đăng ký Mật khẩu Một Lần (OTP) từ {}"
-
-#: core/doctype/data_export/exporter.py:331
-msgid "One of"
-msgstr "Một trong"
-
-#: public/js/frappe/views/workspace/workspace.js:1312
-msgid "One of the child page with name {0} already exist in {1} Section. Please update the name of the child page first before moving"
msgstr ""
-#: client.py:213
+#: frappe/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 "Chỉ có 200 lần chèn được cho phép trong một yêu cầu"
+msgstr ""
-#: email/doctype/email_queue/email_queue.py:80
+#: frappe/email/doctype/email_queue/email_queue.py:87
msgid "Only Administrator can delete Email Queue"
-msgstr "Chỉ có quản trị có thể xóa hàng chờ email"
+msgstr ""
-#: core/doctype/page/page.py:66
+#: frappe/core/doctype/page/page.py:66
msgid "Only Administrator can edit"
-msgstr "Chỉ có quản trị có thể chỉnh sửa"
+msgstr ""
-#: core/doctype/report/report.py:71
+#: frappe/core/doctype/report/report.py:75
msgid "Only Administrator can save a standard report. Please rename and save."
-msgstr "Chỉ Quản trị viên có thể lưu một báo cáo tiêu chuẩn. Xin đổi tên và lưu lại."
+msgstr ""
-#: recorder.py:234
+#: frappe/recorder.py:316
msgid "Only Administrator is allowed to use Recorder"
-msgstr "Chỉ quản trị viên mới được phép sử dụng Trình ghi"
+msgstr ""
-#. Label of a Link field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#. Label of the allow_edit (Link) field in DocType 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Only Allow Edit For"
-msgstr "Cho phép chỉ sửa Đối với"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1561
+#: frappe/core/doctype/doctype/doctype.py:1620
msgid "Only Options allowed for Data field are:"
-msgstr "Chỉ các Tùy chọn được phép cho trường Dữ liệu là:"
+msgstr ""
-#. Label of a Int field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the 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 "Chỉ gửi bản ghi được cập nhật trong X giờ trước"
+msgstr ""
-#: desk/doctype/workspace/workspace.js:36
+#: frappe/desk/doctype/workspace/workspace.js:32
msgid "Only Workspace Manager can edit public workspaces"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:536
-msgid "Only Workspace Manager can sort or edit this page"
-msgstr ""
-
-#: modules/utils.py:66
+#: frappe/modules/utils.py:65
msgid "Only allowed to export customizations in developer mode"
msgstr ""
#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup
#. Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Only change this if you want to use other S3 compatible object storage backends."
msgstr ""
-#. Label of a Link field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#: frappe/model/document.py:1232
+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:315
msgid "Only for"
msgstr ""
-#: core/doctype/data_export/exporter.py:194
+#: frappe/core/doctype/data_export/exporter.py:192
msgid "Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish."
-msgstr "Chỉ các trường bắt buộc là cần thiết để làm hồ sơ mới. Bạn có thể xóa các cột không bắt buộc nếu bạn muốn."
+msgstr ""
-#: contacts/doctype/contact/contact.py:129
-#: contacts/doctype/contact/contact.py:153
+#: frappe/contacts/doctype/contact/contact.py:131
+#: frappe/contacts/doctype/contact/contact.py:158
msgid "Only one {0} can be set as primary."
-msgstr "Chỉ một {0} có thể được đặt làm chính."
+msgstr ""
-#: desk/reportview.py:319
+#: frappe/desk/reportview.py:357
msgid "Only reports of type Report Builder can be deleted"
msgstr ""
-#: desk/reportview.py:290
+#: frappe/desk/reportview.py:328
msgid "Only reports of type Report Builder can be edited"
msgstr ""
-#: custom/doctype/customize_form/customize_form.py:124
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
-msgstr "Chỉ các DocTypes tiêu chuẩn mới được phép tùy chỉnh từ Biểu mẫu tùy chỉnh."
+msgstr ""
-#: desk/form/assign_to.py:181
+#: frappe/model/delete_doc.py:240
+msgid "Only the Administrator can delete a standard DocType."
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:198
msgid "Only the assignee can complete this to-do."
msgstr ""
-#: public/js/frappe/form/sidebar/review.js:54
-msgid "Only users involved in the document are listed"
-msgstr "Chỉ người dùng liên quan đến tài liệu được liệt kê"
-
-#: email/doctype/auto_email_report/auto_email_report.py:100
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:106
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
-#: core/doctype/deleted_document/deleted_document.js:7
-msgid "Open"
-msgstr "Mở"
-
-#: desk/doctype/todo/todo_list.js:20
-msgctxt "Access"
-msgid "Open"
-msgstr "Mở"
-
-#. Option for the 'Status' (Select) field in DocType 'Communication'
-#. Option for the 'Email Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Open"
-msgstr "Mở"
+#: frappe/templates/includes/login/login.js:291
+msgid "Oops! Something went wrong."
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Open"
-msgstr "Mở"
-
+#. 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'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Open"
-msgstr "Mở"
-
#. Option for the 'Status' (Select) field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Open"
-msgstr "Mở"
-
#. Option for the 'Status' (Select) field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "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 "Mở"
+msgstr ""
-#: public/js/frappe/ui/keyboard.js:202
+#: 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 "Mở Awesomebar"
+msgstr ""
-#: templates/emails/new_notification.html:10
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:75
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:96
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:97
+msgid "Open Communication"
+msgstr ""
+
+#: frappe/templates/emails/new_notification.html:10
msgid "Open Document"
-msgstr "Mở tài liệu"
+msgstr ""
-#. Label of a Table MultiSelect field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#. Label of the subscribed_documents (Table MultiSelect) field in DocType
+#. 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Open Documents"
-msgstr "Tài liệu mở"
+msgstr ""
-#: public/js/frappe/ui/keyboard.js:237
+#: frappe/public/js/frappe/ui/keyboard.js:243
msgid "Open Help"
-msgstr "Mở Trợ giúp"
+msgstr ""
-#. Label of a Button field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#. Label of the open_reference_document (Button) field in DocType 'Notification
+#. Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Open Reference Document"
-msgstr "Mở tài liệu tham khảo"
+msgstr ""
-#: public/js/frappe/ui/keyboard.js:220
+#: frappe/public/js/frappe/ui/keyboard.js:226
msgid "Open Settings"
-msgstr "Mở cài đặt"
+msgstr ""
-#. Label of a Check field in DocType 'Top Bar Item'
-#: website/doctype/top_bar_item/top_bar_item.json
-msgctxt "Top Bar Item"
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
+msgid "Open Source Applications for the Web"
+msgstr ""
+
+#. Label of the open_in_new_tab (Check) field in DocType 'Top Bar Item'
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Open URL in a New Tab"
-msgstr "Mở URL trong một tab mới"
+msgstr ""
#. Description of the 'Quick Entry' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Open a dialog with mandatory fields to create a new record quickly"
-msgstr "Mở hộp thoại với các trường bắt buộc để tạo bản ghi mới một cách nhanh chóng"
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:176
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:176
msgid "Open a module or tool"
-msgstr "Mở một mô-đun hoặc công cụ"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1187
+#: frappe/public/js/frappe/ui/keyboard.js:366
+msgid "Open console"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/Preview.vue:17
+msgid "Open in a new tab"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1290
msgctxt "Description of a list view shortcut"
msgid "Open list item"
-msgstr "Mở danh sách"
+msgstr ""
-#: www/qrcode.html:13
+#: frappe/core/doctype/error_log/error_log.js:15
+msgid "Open reference document"
+msgstr ""
+
+#: frappe/www/qrcode.html:13
msgid "Open your authentication app on your mobile phone."
-msgstr "Mở ứng dụng xác thực của bạn trên điện thoại di động."
+msgstr ""
-#: desk/doctype/todo/todo_list.js:23
-#: public/js/frappe/ui/toolbar/search_utils.js:261
-#: public/js/frappe/ui/toolbar/search_utils.js:262
-#: public/js/frappe/ui/toolbar/search_utils.js:273
-#: public/js/frappe/ui/toolbar/search_utils.js:283
-#: public/js/frappe/ui/toolbar/search_utils.js:292
-#: public/js/frappe/ui/toolbar/search_utils.js:310
-#: public/js/frappe/ui/toolbar/search_utils.js:311
-#: social/doctype/energy_point_log/energy_point_log_list.js:23
+#: frappe/desk/doctype/todo/todo_list.js:17
+#: frappe/public/js/frappe/form/templates/form_links.html:18
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
msgid "Open {0}"
-msgstr "Mở {0}"
+msgstr ""
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the openid_configuration (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "OpenID Configuration"
msgstr ""
#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "OpenLDAP"
msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Opened"
-msgstr "Khai trương"
+msgstr ""
-#. Label of a Select field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. Label of the operation (Select) field in DocType 'Activity Log'
+#: frappe/core/doctype/activity_log/activity_log.json
msgid "Operation"
-msgstr "Hoạt động"
+msgstr ""
-#: utils/data.py:2063
+#: frappe/utils/data.py:2117
msgid "Operator must be one of {0}"
-msgstr "Người điều hành phải là một trong {0}"
+msgstr ""
-#: core/doctype/file/file.js:24
+#: frappe/core/doctype/file/file.js:34
+#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:8
+#: frappe/public/js/frappe/file_uploader/FilePreview.vue:28
msgid "Optimize"
msgstr ""
-#: core/doctype/file/file.js:89
+#: frappe/core/doctype/file/file.js:105
msgid "Optimizing image..."
msgstr ""
-#: custom/doctype/custom_field/custom_field.js:100
+#: frappe/custom/doctype/custom_field/custom_field.js:100
msgid "Option 1"
-msgstr "Lựa Chọn 1"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:102
+#: frappe/custom/doctype/custom_field/custom_field.js:102
msgid "Option 2"
-msgstr "Lựa chọn 2"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:104
+#: frappe/custom/doctype/custom_field/custom_field.js:104
msgid "Option 3"
-msgstr "Lựa chọn 3"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1579
+#: frappe/core/doctype/doctype/doctype.py:1638
msgid "Option {0} for field {1} is not a child table"
-msgstr "Tùy chọn {0} cho trường {1} không phải là bảng con"
+msgstr ""
#. Description of the 'CC' (Code) field in DocType 'Notification Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Optional: Always send to these ids. Each Email Address on a new row"
-msgstr "Tùy chọn: Luôn gửi đến các id. Mỗi địa chỉ email trên một hàng mới"
+msgstr ""
#. Description of the 'Condition' (Code) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Optional: The alert will be sent if this expression is true"
-msgstr "Tùy chọn: Các cảnh báo sẽ được gửi nếu biểu thức này là đúng sự thật"
+msgstr ""
-#. Label of a Small Text field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the options (Small Text) field in DocType 'DocField'
+#. Label of the options (Data) field in DocType 'Report Column'
+#. Label of the options (Small Text) field in DocType 'Report Filter'
+#. Label of the options (Small Text) field in DocType 'Custom Field'
+#. Label of the options (Small Text) field in DocType 'Customize Form Field'
+#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Small Text) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/templates/form_grid/fields.html:43
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
-msgstr "Tùy chọn"
+msgstr ""
-#. Label of a Small Text field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Options"
-msgstr "Tùy chọn"
-
-#. Label of a Small Text field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Options"
-msgstr "Tùy chọn"
-
-#. Label of a Data field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Options"
-msgstr "Tùy chọn"
-
-#. Label of a Small Text field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Options"
-msgstr "Tùy chọn"
-
-#. Label of a Text field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Options"
-msgstr "Tùy chọn"
-
-#. Label of a Small Text field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Options"
-msgstr "Tùy chọn"
-
-#: core/doctype/doctype/doctype.py:1317
+#: frappe/core/doctype/doctype/doctype.py:1366
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
-msgstr "Các tùy chọn \"Liên kết động\" của kiểu trường phải nhắm tới một đường dẫn của trường khác với các tùy chọn như là 'Kiểu văn bản'"
+msgstr ""
-#. Label of a HTML field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the options_help (HTML) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Options Help"
-msgstr "Tùy chọn Trợ giúp"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1601
+#: frappe/core/doctype/doctype/doctype.py:1660
msgid "Options for Rating field can range from 3 to 10"
msgstr ""
-#: custom/doctype/custom_field/custom_field.js:96
+#: frappe/custom/doctype/custom_field/custom_field.js:96
msgid "Options for select. Each option on a new line."
-msgstr "Các tùy chọn để chọn. Mỗi lựa chọn trên một dòng mới."
+msgstr ""
-#: core/doctype/doctype/doctype.py:1334
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "Options for {0} must be set before setting the default value."
-msgstr "Các tùy chọn cho {0} phải được đặt trước khi đặt giá trị mặc định."
+msgstr ""
-#: public/js/form_builder/store.js:177
+#: frappe/public/js/form_builder/store.js:182
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: model/base_document.py:767
+#: frappe/model/base_document.py:870
msgid "Options not set for link field {0}"
-msgstr "Tùy chọn không được đặt cho trường liên kết {0}"
+msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Orange"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Orange"
msgstr ""
-#. Label of a Code field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#. Label of the order (Code) field in DocType 'Kanban Board Column'
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Order"
-msgstr "Yêu cầu"
+msgstr ""
-#. Label of a Section Break field in DocType 'About Us Settings'
-#. Label of a Table field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
+#. Label of the company_history (Table) field in DocType 'About Us Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Org History"
-msgstr "Org Lịch sử"
+msgstr ""
-#. Label of a Data field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#. Label of the company_history_heading (Data) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Org History Heading"
-msgstr "Org Lịch sử nhóm"
+msgstr ""
-#: public/js/frappe/form/print_utils.js:26
+#: frappe/public/js/frappe/form/print_utils.js:28
msgid "Orientation"
-msgstr "Sự định hướng"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:13
+#: frappe/core/doctype/version/version_view.html:75
+msgid "Original Value"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Other"
-msgstr "Khác"
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Other"
-msgstr "Khác"
-
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Other"
-msgstr "Khác"
-
#. Option for the 'Event Category' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/contacts/doctype/address/address.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/page/setup_wizard/install_fixtures.py:30
msgid "Other"
-msgstr "Khác"
+msgstr ""
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Outgoing"
+msgstr ""
+
+#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Outgoing (SMTP) Settings"
msgstr ""
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the outgoing_emails_column (Column Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Outgoing Emails (Last 7 days)"
+msgstr ""
+
+#. Label of the smtp_server (Data) field in DocType 'Email Account'
+#. Label of the smtp_server (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Outgoing Server"
msgstr ""
-#. Label of a Data field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Outgoing Server"
-msgstr ""
-
-#. Label of a Section Break field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email
+#. Domain'
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Outgoing Settings"
msgstr ""
-#: email/doctype/email_domain/email_domain.py:33
+#: frappe/email/doctype/email_domain/email_domain.py:33
msgid "Outgoing email account not correct"
-msgstr "tài khoản email ngoài không chính xác"
+msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Outlook.com"
-msgstr "Outlook.com"
+msgstr ""
-#. Label of a Code field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
+#. Label of the output (Code) field in DocType 'Permission Inspector'
+#. Label of the output (Code) field in DocType 'System Console'
+#. Label of the output (Code) field in DocType 'Integration Request'
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/desk/doctype/system_console/system_console.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Output"
-msgstr "Đầu ra"
+msgstr ""
-#. Label of a Code field in DocType 'Permission Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
-msgid "Output"
-msgstr "Đầu ra"
+#: frappe/public/js/frappe/form/templates/form_dashboard.html:5
+msgid "Overview"
+msgstr ""
-#. Label of a Code field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
-msgid "Output"
-msgstr "Đầu ra"
-
-#: core/report/transaction_log_report/transaction_log_report.py:100
-#: social/doctype/energy_point_rule/energy_point_rule.js:42
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:100
msgid "Owner"
-msgstr "Chủ sở hữu"
+msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#: frappe/core/doctype/recorder/recorder.json
msgid "PATCH"
msgstr ""
-#: printing/page/print/print.js:71
-#: public/js/frappe/views/reports/query_report.js:1637
+#: frappe/printing/page/print/print.js:71
+#: frappe/public/js/frappe/form/templates/print_layout.html:44
+#: frappe/public/js/frappe/views/reports/query_report.js:1742
msgid "PDF"
-msgstr "PDF"
+msgstr ""
-#. Label of a Float field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+msgid "PDF Generation in Progress"
+msgstr ""
+
+#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "PDF Generator"
+msgstr ""
+
+#. Label of the pdf_page_height (Float) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Height (in mm)"
msgstr ""
-#. Label of a Select field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the pdf_page_size (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Size"
-msgstr "PDF kích thước trang"
+msgstr ""
-#. Label of a Float field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the pdf_page_width (Float) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Width (in mm)"
msgstr ""
-#. Label of a Section Break field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the pdf_settings (Section Break) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Settings"
-msgstr "Thiết lập định dạng file PDF"
+msgstr ""
-#: utils/print_format.py:177
+#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
-msgstr "Tạo PDF không thành công"
+msgstr ""
-#: utils/pdf.py:95
+#: frappe/utils/pdf.py:106
msgid "PDF generation failed because of broken image links"
-msgstr "Kiến tạo PDF thất bại bởi các đường dẫn hình ảnh bị vỡ"
+msgstr ""
-#: printing/page/print/print.js:524
+#: frappe/printing/page/print/print.js:616
+msgid "PDF generation may not work as expected."
+msgstr ""
+
+#: frappe/printing/page/print/print.js:534
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr ""
-#. Label of a Data field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the pid (Data) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "PID"
msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "POST"
-msgstr ""
-
#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "POST"
msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "PUT"
-msgstr ""
-
#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "PUT"
msgstr ""
+#. Label of the package (Link) field in DocType 'Module Def'
#. Name of a DocType
-#: core/doctype/package/package.json
-msgid "Package"
-msgstr ""
-
-#. Label of a Link field in DocType 'Module Def'
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Package"
-msgstr ""
-
+#. Label of the package (Link) field in DocType 'Package Release'
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Package"
-msgid "Package"
-msgstr ""
-
-#. Label of a Link field in DocType 'Package Release'
-#: core/doctype/package_release/package_release.json
-msgctxt "Package Release"
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/package/package.json
+#: frappe/core/doctype/package_release/package_release.json
+#: frappe/core/workspace/build/build.json frappe/www/attribution.html:34
msgid "Package"
msgstr ""
#. Name of a DocType
-#: core/doctype/package_import/package_import.json
-msgid "Package Import"
-msgstr ""
-
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Package Import"
+#: frappe/core/doctype/package_import/package_import.json
+#: frappe/core/workspace/build/build.json
msgid "Package Import"
msgstr ""
-#. Label of a Data field in DocType 'Package'
-#: core/doctype/package/package.json
-msgctxt "Package"
+#. Label of the package_name (Data) field in DocType 'Package'
+#: frappe/core/doctype/package/package.json
msgid "Package Name"
msgstr ""
#. Name of a DocType
-#: core/doctype/package_release/package_release.json
-msgid "Package Release"
-msgstr ""
-
-#. Linked DocType in Package's connections
-#: core/doctype/package/package.json
-msgctxt "Package"
+#: frappe/core/doctype/package_release/package_release.json
msgid "Package Release"
msgstr ""
#. Label of a Card Break in the Build Workspace
-#: core/workspace/build/build.json
+#: frappe/core/workspace/build/build.json
msgid "Packages"
msgstr ""
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Packages are lightweight apps (collection of Module Defs) that can be created, imported, or released right from the UI"
+msgstr ""
+
+#. Label of the page (Link) field in DocType 'Custom Role'
#. Name of a DocType
-#: core/doctype/page/page.json
-msgid "Page"
-msgstr "Trang"
-
-#. Label of a Link field in DocType 'Custom Role'
-#: core/doctype/custom_role/custom_role.json
-msgctxt "Custom Role"
-msgid "Page"
-msgstr "Trang"
-
-#. Option for the 'View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Page"
-msgstr "Trang"
-
#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for
#. Page and Report'
-#. Label of a Link field in DocType 'Role Permission for Page and Report'
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgctxt "Role Permission for Page and Report"
-msgid "Page"
-msgstr "Trang"
-
+#. Label of the page (Link) field in DocType 'Role Permission for Page and
+#. Report'
+#. Label of a Link in the Build Workspace
+#. Option for the 'View' (Select) field in DocType 'Form Tour'
+#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
-msgid "Page"
-msgstr "Trang"
-
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/core/doctype/custom_role/custom_role.json
+#: frappe/core/doctype/page/page.json
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Page"
-msgstr "Trang"
+msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:63
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Page Break"
msgstr ""
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/website/doctype/web_page/web_page.js:92
+#: frappe/website/doctype/web_page/web_page.json
msgid "Page Builder"
-msgstr "Trình tạo trang"
+msgstr ""
-#. Label of a Table field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the page_blocks (Table) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Page Building Blocks"
-msgstr "Khối tạo trang"
+msgstr ""
-#. Label of a Section Break field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
+#. Label of the page_html (Section Break) field in DocType 'Page'
+#: frappe/core/doctype/page/page.json
msgid "Page HTML"
-msgstr "Trang HTML"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:64
+#: frappe/public/js/frappe/list/bulk_operations.js:73
msgid "Page Height (in mm)"
msgstr ""
-#. Label of a Data field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Page Name"
-msgstr "Tên trang"
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:5
+msgid "Page Margins"
+msgstr ""
-#. Label of a Select field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the page_name (Data) field in DocType 'Page'
+#: frappe/core/doctype/page/page.json
+msgid "Page Name"
+msgstr ""
+
+#. Label of the page_number (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:63
msgid "Page Number"
msgstr ""
-#. Label of a Small Text field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the page_route (Small Text) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Page Route"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:1499
-msgid "Page Saved Successfully"
+#. Label of the view_link_in_email (Section Break) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Page Settings"
msgstr ""
-#. Label of a Section Break field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Page Settings"
-msgstr "Cài đặt trang"
-
-#: public/js/frappe/ui/keyboard.js:121
+#: frappe/public/js/frappe/ui/keyboard.js:125
msgid "Page Shortcuts"
-msgstr "Phím tắt trang"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:57
+#: frappe/public/js/frappe/list/bulk_operations.js:66
msgid "Page Size"
msgstr ""
-#. Label of a Data field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#. Label of the page_title (Data) field in DocType 'About Us Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Page Title"
msgstr ""
-#: public/js/frappe/list/bulk_operations.js:71
+#: frappe/public/js/frappe/list/bulk_operations.js:80
msgid "Page Width (in mm)"
msgstr ""
-#: www/qrcode.py:35
+#: frappe/www/qrcode.py:35
msgid "Page has expired!"
-msgstr "Trang đã hết hạn!"
+msgstr ""
-#: printing/doctype/print_settings/print_settings.py:71
-#: public/js/frappe/list/bulk_operations.js:90
+#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr ""
-#: public/js/frappe/views/container.js:52
+#: frappe/public/js/frappe/views/container.js:52 frappe/www/404.html:23
msgid "Page not found"
-msgstr "Trang không tìm thấy"
-
-#: public/js/frappe/views/workspace/workspace.js:1299
-msgid "Page with title {0} already exist."
msgstr ""
-#: public/js/frappe/web_form/web_form.js:264
-#: templates/print_formats/standard.html:34
+#. 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:264
+#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
-msgstr "Trang {0} của {1}"
+msgstr ""
-#. Label of a Data field in DocType 'SMS Parameter'
-#: core/doctype/sms_parameter/sms_parameter.json
-msgctxt "SMS Parameter"
+#. Label of the parameter (Data) field in DocType 'SMS Parameter'
+#: frappe/core/doctype/sms_parameter/sms_parameter.json
msgid "Parameter"
-msgstr "Tham số"
+msgstr ""
-#: public/js/frappe/model/model.js:132
-#: public/js/frappe/views/workspace/workspace.js:606
-#: public/js/frappe/views/workspace/workspace.js:934
-#: public/js/frappe/views/workspace/workspace.js:1181
+#: frappe/public/js/frappe/model/model.js:142
+#: frappe/public/js/frappe/views/workspace/workspace.js:434
msgid "Parent"
-msgstr "Nguồn gốc"
+msgstr ""
-#. Label of a Link field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
+#. Label of the parent_doctype (Link) field in DocType 'DocType Link'
+#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Parent DocType"
msgstr ""
-#. Label of a Link field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the parent_document_type (Link) field in DocType 'Dashboard Chart'
+#. Label of the parent_document_type (Link) field in DocType 'Number Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Parent Document Type"
msgstr ""
-#. Label of a Link field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Parent Document Type"
-msgstr ""
-
-#: desk/doctype/number_card/number_card.py:61
+#: frappe/desk/doctype/number_card/number_card.py:65
msgid "Parent Document Type is required to create a number card"
msgstr ""
-#. Label of a Data field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the parent_element_selector (Data) field in DocType 'Form Tour
+#. Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Parent Element Selector"
msgstr ""
-#. Label of a Select field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the parent_fieldname (Select) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Parent Field"
msgstr ""
-#: core/doctype/doctype/doctype.py:915
+#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype.py:933
msgid "Parent Field (Tree)"
-msgstr "Lĩnh vực phụ huynh (Cây)"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Parent Field (Tree)"
-msgstr "Lĩnh vực phụ huynh (Cây)"
-
-#: core/doctype/doctype/doctype.py:921
+#: frappe/core/doctype/doctype/doctype.py:939
msgid "Parent Field must be a valid fieldname"
-msgstr "Trường mẹ phải là tên trường hợp lệ"
+msgstr ""
-#. Label of a Select field in DocType 'Top Bar Item'
-#: website/doctype/top_bar_item/top_bar_item.json
-msgctxt "Top Bar Item"
+#. Label of the parent_label (Select) field in DocType 'Top Bar Item'
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Parent Label"
-msgstr "Nhãn gốc"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1148
+#: frappe/core/doctype/doctype/doctype.py:1197
msgid "Parent Missing"
msgstr ""
-#. Label of a Data field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the parent_page (Link) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Parent Page"
msgstr ""
-#: core/doctype/data_export/exporter.py:24
+#: frappe/core/doctype/data_export/exporter.py:24
msgid "Parent Table"
-msgstr "Bảng tổng"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.py:404
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:404
msgid "Parent document type is required to create a dashboard chart"
msgstr ""
-#: core/doctype/data_export/exporter.py:255
+#: frappe/core/doctype/data_export/exporter.py:253
msgid "Parent is the name of the document to which the data will get added to."
-msgstr "Cha mẹ là tên của tài liệu mà dữ liệu sẽ được thêm vào."
+msgstr ""
-#: permissions.py:806
+#: frappe/public/js/frappe/ui/group_by/group_by.js:251
+msgid "Parent-to-child or child-to-parent grouping is not allowed."
+msgstr ""
+
+#: frappe/permissions.py:798
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
-#: client.py:476
+#: frappe/client.py:467
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr ""
-#. Label of a Check field in DocType 'Personal Data Deletion Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
+#. Label of the partial (Check) field in DocType 'Personal Data Deletion Step'
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Partial"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/core/doctype/data_import/data_import.json
msgid "Partial Success"
-msgstr "Một phần thành công"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Partially Sent"
msgstr ""
-#: desk/doctype/event/event.js:30
+#. Label of the participants (Section Break) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
-msgstr "Các thành phần đối tượng"
+msgstr ""
-#. Label of a Section Break field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Participants"
-msgstr "Các thành phần đối tượng"
+#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Pass"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#: frappe/contacts/doctype/contact/contact.json
msgid "Passive"
-msgstr "Thụ động"
-
-#: core/doctype/user/user.js:154 core/doctype/user/user.js:201
-#: core/doctype/user/user.js:221 desk/page/setup_wizard/setup_wizard.js:474
-#: www/login.html:21
-msgid "Password"
-msgstr "Mật khẩu"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Password"
-msgstr "Mật khẩu"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Password"
-msgstr "Mật khẩu"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Password"
-msgstr "Mật khẩu"
-
-#. Label of a Password field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Password"
-msgstr "Mật khẩu"
-
-#. Label of a Section Break field in DocType 'System Settings'
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Password"
-msgstr "Mật khẩu"
-
+#. Label of the password_settings (Section Break) field in DocType 'System
+#. Settings'
+#. Label of the password_tab (Tab Break) field in DocType 'System Settings'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the password (Password) field in DocType 'Email Account'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219
+#: frappe/core/doctype/user/user.js:239
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:493
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/www/login.html:22
msgid "Password"
-msgstr "Mật khẩu"
+msgstr ""
-#: core/doctype/user/user.py:1036
+#: frappe/core/doctype/user/user.py:1079
msgid "Password Email Sent"
msgstr ""
-#: core/doctype/user/user.py:418
+#: frappe/core/doctype/user/user.py:457
msgid "Password Reset"
-msgstr "Đặt lại mật khẩu"
+msgstr ""
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the password_reset_limit (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Password Reset Link Generation Limit"
-msgstr "Đặt lại mật khẩu Giới hạn tạo liên kết"
+msgstr ""
-#: public/js/frappe/form/grid_row.js:790
+#: frappe/public/js/frappe/form/grid_row.js:880
msgid "Password cannot be filtered"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:358
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:357
msgid "Password changed successfully."
-msgstr "Đã thay đổi mật khẩu thành công."
+msgstr ""
-#. Label of a Password field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the password (Password) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Password for Base DN"
-msgstr "Mật khẩu cho cơ sở DN"
+msgstr ""
-#: email/doctype/email_account/email_account.py:165
+#: frappe/email/doctype/email_account/email_account.py:189
msgid "Password is required or select Awaiting Password"
-msgstr "Mật khẩu là cần thiết hoặc chọn Đang chờ mật khẩu"
+msgstr ""
-#: public/js/frappe/desk.js:191
+#: frappe/public/js/frappe/desk.js:212
msgid "Password missing in Email Account"
msgstr ""
-#: utils/password.py:42
+#: frappe/utils/password.py:47
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: core/doctype/user/user.py:1035
-msgid "Password reset instructions have been sent to your email"
-msgstr "Hướng dẫn đặt lại mật khẩu đã được gửi đến email của bạn"
+#: frappe/core/doctype/user/user.py:1078
+msgid "Password reset instructions have been sent to {}'s email"
+msgstr ""
-#: www/update-password.html:164
+#: frappe/www/update-password.html:166
msgid "Password set"
msgstr ""
-#: auth.py:239
+#: frappe/auth.py:258
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: core/doctype/user/user.py:828
+#: frappe/core/doctype/user/user.py:869
msgid "Password size exceeded the maximum allowed size."
msgstr ""
-#: www/update-password.html:78
+#: frappe/www/update-password.html:80
msgid "Passwords do not match"
msgstr ""
-#: core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:205
msgid "Passwords do not match!"
-msgstr "Mật khẩu không phù hợp!"
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:156
+#: frappe/email/doctype/newsletter/newsletter.py:157
msgid "Past dates are not allowed for Scheduling."
msgstr ""
-#: public/js/frappe/views/file/file_view.js:151
+#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
-msgstr "Dán"
+msgstr ""
-#. Label of a Int field in DocType 'Package Release'
-#: core/doctype/package_release/package_release.json
-msgctxt "Package Release"
+#. Label of the patch (Int) field in DocType 'Package Release'
+#. Label of the patch (Code) field in DocType 'Patch Log'
+#: frappe/core/doctype/package_release/package_release.json
+#: frappe/core/doctype/patch_log/patch_log.json
msgid "Patch"
-msgstr "Vá"
-
-#. Label of a Code field in DocType 'Patch Log'
-#: core/doctype/patch_log/patch_log.json
-msgctxt "Patch Log"
-msgid "Patch"
-msgstr "Vá"
+msgstr ""
#. Name of a DocType
-#: core/doctype/patch_log/patch_log.json
+#: frappe/core/doctype/patch_log/patch_log.json
msgid "Patch Log"
-msgstr "Vá Đăng nhập"
+msgstr ""
-#: modules/patch_handler.py:137
+#: frappe/modules/patch_handler.py:136
msgid "Patch type {} not found in patches.txt"
msgstr ""
-#: website/report/website_analytics/website_analytics.js:35
+#. Label of the path (Data) field in DocType 'API Request Log'
+#. Label of the path (Small Text) field in DocType 'Package Release'
+#. Label of the path (Data) field in DocType 'Recorder'
+#. Label of the path (Data) field in DocType 'Onboarding Step'
+#. Label of the path (Data) field in DocType 'Web Page View'
+#: frappe/core/doctype/api_request_log/api_request_log.json
+#: frappe/core/doctype/package_release/package_release.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:35
msgid "Path"
-msgstr "Con đường"
+msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Path"
-msgstr "Con đường"
-
-#. Label of a Small Text field in DocType 'Package Release'
-#: core/doctype/package_release/package_release.json
-msgctxt "Package Release"
-msgid "Path"
-msgstr "Con đường"
-
-#. Label of a Data field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "Path"
-msgstr "Con đường"
-
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Path"
-msgstr "Con đường"
-
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the local_ca_certs_file (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Path to CA Certs File"
-msgstr "Đường dẫn đến tệp CA Certs"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the local_server_certificate_file (Data) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Path to Server Certificate"
-msgstr "Đường dẫn đến chứng chỉ máy chủ"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the local_private_key_file (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Path to private Key File"
-msgstr "Đường dẫn đến tệp khóa riêng"
+msgstr ""
-#. Label of a Int field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/website/path_resolver.py:208
+msgid "Path {0} it not a valid path"
+msgstr ""
+
+#. Label of the payload_count (Int) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Payload Count"
msgstr ""
-#. Option for the 'Status' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Pending"
-msgstr "Chờ"
+#. Label of the peak_memory_usage (Int) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+msgid "Peak Memory Usage"
+msgstr ""
+#. Option for the 'Status' (Select) field in DocType 'Data Import'
+#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/translation/translation.json
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Pending"
-msgstr "Chờ"
-
-#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
-msgid "Pending"
-msgstr "Chờ"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Pending Approval"
-msgstr "Chờ phê duyệt"
+msgstr ""
+
+#. Label of the pending_emails (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Pending Emails"
+msgstr ""
+
+#. Label of the pending_jobs (Int) field in DocType 'System Health Report
+#. Queue'
+#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
+msgid "Pending Jobs"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Pending Verification"
-msgstr "Đang chờ xác minh"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Percent"
-msgstr "Phần trăm"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Percent"
-msgstr "Phần trăm"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Percent"
-msgstr "Phần trăm"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Percentage"
-msgstr "Tỷ lệ phần trăm"
+msgstr ""
-#. Label of a Select field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the dynamic_date_period (Select) field in DocType 'Auto Email
+#. Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Period"
-msgstr "Thời gian"
+msgstr ""
-#. Label of a Int field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the 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 "Cấp độ cho phép"
-
-#. Label of a Int field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Perm Level"
-msgstr "Cấp độ cho phép"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Permanent"
-msgstr "Dài hạn"
+msgstr ""
-#: public/js/frappe/form/form.js:1047
+#: frappe/public/js/frappe/form/form.js:1028
msgid "Permanently Cancel {0}?"
-msgstr "Hủy bỏ vĩnh viễn {0}?"
+msgstr ""
-#: public/js/frappe/form/form.js:877
+#: frappe/public/js/frappe/form/form.js:1074
+msgid "Permanently Discard {0}?"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:861
msgid "Permanently Submit {0}?"
-msgstr "Gửi vĩnh viễn {0}?"
+msgstr ""
-#: public/js/frappe/model/model.js:698
+#: frappe/public/js/frappe/model/model.js:733
msgid "Permanently delete {0}?"
-msgstr "Xóa bỏ Vĩnh Viễn {0}?"
+msgstr ""
-#: core/doctype/user_type/user_type.py:83
+#: frappe/core/doctype/user_type/user_type.py:84
msgid "Permission Error"
-msgstr "Lỗi quyền"
+msgstr ""
#. Name of a DocType
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "Permission Inspector"
-msgstr "Lỗi quyền"
+msgstr ""
-#: core/page/permission_manager/permission_manager.js:446
+#. Label of the permlevel (Int) field in DocType 'Custom Field'
+#: frappe/core/page/permission_manager/permission_manager.js:463
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
-msgstr "Cấp phép"
+msgstr ""
-#. Label of a Int field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Permission Level"
-msgstr "Cấp phép"
+#: frappe/core/page/permission_manager/permission_manager_help.html:22
+msgid "Permission Levels"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Permission Log"
+msgstr ""
#. Label of a shortcut in the Users Workspace
-#: core/workspace/users/users.json
+#: frappe/core/workspace/users/users.json
msgid "Permission Manager"
msgstr ""
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
msgstr ""
-#. Label of a Section Break field in DocType 'Custom Role'
-#: core/doctype/custom_role/custom_role.json
-msgctxt "Custom Role"
+#. Label of the permission_rules (Section Break) field in DocType 'Custom Role'
+#: frappe/core/doctype/custom_role/custom_role.json
msgid "Permission Rules"
-msgstr "Quy định cho phép"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Permission Rules"
-msgstr "Quy định cho phép"
-
-#. Label of a Select field in DocType 'Permission Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#. Label of the permission_type (Select) field in DocType 'Permission
+#. Inspector'
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "Permission Type"
-msgstr "Quy định cho phép"
+msgstr ""
+#. Label of the section_break_4 (Section Break) field in DocType 'Custom
+#. DocPerm'
+#. Label of the permissions (Section Break) field in DocType 'DocField'
+#. Label of the section_break_4 (Section Break) field in DocType 'DocPerm'
+#. Label of the permissions (Table) field in DocType 'DocType'
+#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
+#. Label of the permissions (Section Break) field in DocType 'System Settings'
#. Label of a Card Break in the Users Workspace
-#: core/doctype/user/user.js:129 core/doctype/user/user.js:138
-#: core/page/permission_manager/permission_manager.js:214
-#: core/workspace/users/users.json
+#. Label of the permissions (Section Break) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:156
+#: frappe/core/page/permission_manager/permission_manager.js:221
+#: frappe/core/workspace/users/users.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
-msgstr "Quyền"
+msgstr ""
-#. Label of a Section Break field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Permissions"
-msgstr "Quyền"
-
-#. Label of a Section Break field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Permissions"
-msgstr "Quyền"
-
-#. Label of a Section Break field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Permissions"
-msgstr "Quyền"
-
-#. Label of a Section Break field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Permissions"
-msgstr "Quyền"
-
-#. Label of a Table field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Permissions"
-msgstr "Quyền"
-
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Permissions"
-msgstr "Quyền"
-
-#: core/doctype/doctype/doctype.py:1775 core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1834
+#: frappe/core/doctype/doctype/doctype.py:1844
msgid "Permissions Error"
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:10
+msgid "Permissions are automatically applied to Standard Reports and searches."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:5
+msgid "Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
+msgid "Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:24
+msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:6
+msgid "Permissions get applied on Users based on what Roles they are assigned."
+msgstr ""
+
#. Name of a report
#. Label of a Link in the Users Workspace
-#: core/report/permitted_documents_for_user/permitted_documents_for_user.json
-#: core/workspace/users/users.json
+#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.json
+#: frappe/core/workspace/users/users.json
msgid "Permitted Documents For User"
-msgstr "Tài liệu được phép Đối với tài"
+msgstr ""
-#. Label of a Table MultiSelect field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
+#. Label of the permitted_roles (Table MultiSelect) field in DocType 'Workflow
+#. Action'
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Permitted Roles"
msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Personal"
-msgstr "Cá nhân"
+msgstr ""
#. Name of a DocType
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Personal Data Deletion Request"
-msgstr "Yêu cầu xóa dữ liệu cá nhân"
+msgstr ""
#. Name of a DocType
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Personal Data Deletion Step"
msgstr ""
#. Name of a DocType
-#: website/doctype/personal_data_download_request/personal_data_download_request.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
msgid "Personal Data Download Request"
-msgstr "Yêu cầu tải xuống dữ liệu cá nhân"
-
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Phone"
-msgstr "Chuyển tệp"
+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'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Phone"
-msgstr "Chuyển tệp"
-
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Phone"
-msgstr "Chuyển tệp"
-
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Phone"
-msgstr "Chuyển tệp"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Phone"
-msgstr "Chuyển tệp"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Phone"
-msgstr "Chuyển tệp"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Phone"
-msgstr "Chuyển tệp"
-
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Phone"
-msgstr "Chuyển tệp"
-
+#. Label of the phone (Data) field in DocType 'User'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/user/user.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Phone"
-msgstr "Chuyển tệp"
+msgstr ""
-#. Label of a Data field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the phone_no (Data) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Phone No."
-msgstr "Số điện thoại"
+msgstr ""
-#: utils/__init__.py:108
+#: frappe/utils/__init__.py:121
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: public/js/frappe/form/print_utils.js:38
-#: public/js/frappe/views/reports/report_view.js:1504
-#: public/js/frappe/views/reports/report_view.js:1507
+#: frappe/public/js/frappe/form/print_utils.js:40
+#: frappe/public/js/frappe/views/reports/report_view.js:1573
+#: frappe/public/js/frappe/views/reports/report_view.js:1576
msgid "Pick Columns"
-msgstr "Chọn cột"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Pie"
-msgstr "Bánh"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the pincode (Data) field in DocType 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Pincode"
-msgstr "Pincode"
+msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
+#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Pink"
msgstr ""
-#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
-msgid "Pink"
+#. Label of the placeholder (Data) field in DocType 'DocField'
+#. Label of the placeholder (Data) field in DocType 'Custom Field'
+#. Label of the placeholder (Data) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Placeholder"
msgstr ""
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Plain Text"
msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Plant"
-msgstr "Cây"
+msgstr ""
-#: email/oauth.py:30
+#: frappe/email/doctype/email_account/email_account.py:546
+msgid "Please Authorize OAuth for Email Account {0}"
+msgstr ""
+
+#: frappe/email/oauth.py:29
msgid "Please Authorize OAuth for Email Account {}"
msgstr ""
-#: website/doctype/website_theme/website_theme.py:79
+#: frappe/website/doctype/website_theme/website_theme.py:77
msgid "Please Duplicate this Website Theme to customize."
-msgstr "Hãy nhân đôi nền website này để tùy chỉnh."
+msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:159
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:162
msgid "Please Install the ldap3 library via pip to use ldap functionality."
-msgstr "Vui lòng Cài đặt thư viện ldap3 qua pip để sử dụng chức năng ldap."
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:309
msgid "Please Set Chart"
-msgstr "Vui lòng đặt biểu đồ"
+msgstr ""
-#: core/doctype/sms_settings/sms_settings.py:84
+#: frappe/core/doctype/sms_settings/sms_settings.py:84
msgid "Please Update SMS Settings"
-msgstr "Xin vui lòng cập nhật cài đặt tin nhắn SMS"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:569
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582
msgid "Please add a subject to your email"
-msgstr "Vui lòng thêm chủ đề vào email của bạn"
+msgstr ""
-#: templates/includes/comments/comments.html:168
+#: frappe/templates/includes/comments/comments.html:168
msgid "Please add a valid comment."
-msgstr "Vui lòng thêm một bình luận hợp lệ."
+msgstr ""
-#: core/doctype/user/user.py:1017
+#: frappe/core/doctype/user/user.py:1061
msgid "Please ask your administrator to verify your sign-up"
-msgstr "Hãy yêu cầu quản trị của bạn để xác minh của bạn đăng ký"
+msgstr ""
-#: public/js/frappe/form/controls/select.js:96
+#: frappe/public/js/frappe/form/controls/select.js:101
msgid "Please attach a file first."
-msgstr "Xin đính kèm một tập tin đầu tiên."
+msgstr ""
-#: printing/doctype/letter_head/letter_head.py:73
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: printing/doctype/letter_head/letter_head.py:61
+#: frappe/printing/doctype/letter_head/letter_head.py:64
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
-#: core/doctype/package_import/package_import.py:38
+#: frappe/core/doctype/package_import/package_import.py:39
msgid "Please attach the package"
msgstr ""
-#: integrations/doctype/connected_app/connected_app.js:19
+#: frappe/integrations/doctype/connected_app/connected_app.js:19
msgid "Please check OpenID Configuration URL"
msgstr ""
-#: utils/dashboard.py:58
+#: frappe/utils/dashboard.py:58
msgid "Please check the filter values set for Dashboard Chart: {}"
-msgstr "Vui lòng kiểm tra các giá trị bộ lọc được đặt cho Biểu đồ bảng điều khiển: {}"
+msgstr ""
-#: model/base_document.py:839
+#: frappe/model/base_document.py:946
msgid "Please check the value of \"Fetch From\" set for field {0}"
-msgstr "Vui lòng kiểm tra giá trị của "Tìm nạp từ" được đặt cho trường {0}"
+msgstr ""
-#: core/doctype/user/user.py:1015
+#: frappe/core/doctype/user/user.py:1059
msgid "Please check your email for verification"
-msgstr "Hãy kiểm tra email của bạn để xác minh"
+msgstr ""
-#: email/smtp.py:131
+#: frappe/email/smtp.py:134
msgid "Please check your email login credentials."
msgstr ""
-#: twofactor.py:246
+#: frappe/twofactor.py:243
msgid "Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it."
-msgstr "Vui lòng kiểm tra địa chỉ email đã đăng ký để được hướng dẫn về cách tiến hành. Đừng đóng cửa sổ này vì bạn sẽ phải quay lại."
+msgstr ""
-#: twofactor.py:291
+#: frappe/desk/doctype/workspace/workspace.js:23
+msgid "Please click Edit on the Workspace for best results"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:158
+msgid "Please click on 'Export Errored Rows', fix the errors and import again."
+msgstr ""
+
+#: frappe/twofactor.py:286
msgid "Please click on the following link and follow the instructions on the page. {0}"
msgstr ""
-#: templates/emails/password_reset.html:2
+#: frappe/templates/emails/password_reset.html:2
msgid "Please click on the following link to set your new password"
-msgstr "Vui lòng click vào các link sau đây để thiết lập mật khẩu mới"
-
-#: integrations/doctype/dropbox_settings/dropbox_settings.py:344
-msgid "Please close this window"
-msgstr "Hãy đóng cửa sổ này"
-
-#: www/confirm_workflow_action.html:4
-msgid "Please confirm your action to {0} this document."
-msgstr "Vui lòng xác nhận hành động của bạn với {0} tài liệu này."
-
-#: core/doctype/server_script/server_script.js:33
-msgid "Please contact your system administrator to enable this feature."
msgstr ""
-#: desk/doctype/number_card/number_card.js:44
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:343
+msgid "Please close this window"
+msgstr ""
+
+#: frappe/www/confirm_workflow_action.html:4
+msgid "Please confirm your action to {0} this document."
+msgstr ""
+
+#: frappe/printing/page/print/print.js:618
+msgid "Please contact your system manager to install correct version."
+msgstr ""
+
+#: frappe/desk/doctype/number_card/number_card.js:44
msgid "Please create Card first"
-msgstr "Vui lòng tạo thẻ trước"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.js:42
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:42
msgid "Please create chart first"
-msgstr "Vui lòng tạo biểu đồ trước"
+msgstr ""
-#: desk/form/meta.py:209
+#: frappe/desk/form/meta.py:214
msgid "Please delete the field from {0} or add the required doctype."
msgstr ""
-#: core/doctype/data_export/exporter.py:184
+#: frappe/core/doctype/data_export/exporter.py:184
msgid "Please do not change the template headings."
-msgstr "Xin vui lòng không thay đổi các tiêu đề mẫu."
+msgstr ""
-#: printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:18
msgid "Please duplicate this to make changes"
-msgstr "Hãy lặp lại này để thay đổi"
+msgstr ""
-#: core/doctype/system_settings/system_settings.py:145
+#: frappe/core/doctype/system_settings/system_settings.py:162
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
-#: desk/doctype/notification_log/notification_log.js:45
-#: email/doctype/auto_email_report/auto_email_report.js:17
-#: printing/page/print/print.js:611 printing/page/print/print.js:640
-#: public/js/frappe/list/bulk_operations.js:117
-#: public/js/frappe/utils/utils.js:1416
+#: frappe/desk/doctype/notification_log/notification_log.js:45
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
+#: frappe/printing/page/print/print.js:638
+#: frappe/printing/page/print/print.js:668
+#: frappe/public/js/frappe/list/bulk_operations.js:161
+#: frappe/public/js/frappe/utils/utils.js:1431
msgid "Please enable pop-ups"
-msgstr "Vui lòng kích hoạt cửa sổ pop-ups"
+msgstr ""
-#: public/js/frappe/microtemplate.js:162 public/js/frappe/microtemplate.js:177
+#: frappe/public/js/frappe/microtemplate.js:162
+#: frappe/public/js/frappe/microtemplate.js:177
msgid "Please enable pop-ups in your browser"
-msgstr "Vui lòng bật cửa sổ bật lên trong trình duyệt của bạn"
+msgstr ""
-#: integrations/google_oauth.py:53
+#: frappe/integrations/google_oauth.py:53
msgid "Please enable {} before continuing."
msgstr ""
-#: utils/oauth.py:191
+#: frappe/utils/oauth.py:191
msgid "Please ensure that your profile has an email address"
-msgstr "Hãy đảm bảo rằng hồ sơ của bạn có một địa chỉ email"
+msgstr ""
-#: integrations/doctype/social_login_key/social_login_key.py:73
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:82
msgid "Please enter Access Token URL"
-msgstr "Vui lòng nhập URL Truy cập Truy cập"
+msgstr ""
-#: integrations/doctype/social_login_key/social_login_key.py:71
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:80
msgid "Please enter Authorize URL"
-msgstr "Vui lòng nhập URL ủy quyền"
+msgstr ""
-#: integrations/doctype/social_login_key/social_login_key.py:69
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:78
msgid "Please enter Base URL"
-msgstr "Hãy nhập URL cơ sở"
+msgstr ""
-#: integrations/doctype/social_login_key/social_login_key.py:78
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:86
msgid "Please enter Client ID before social login is enabled"
-msgstr "Vui lòng nhập Client ID trước khi đăng nhập mạng xã hội được bật"
+msgstr ""
-#: integrations/doctype/social_login_key/social_login_key.py:82
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:89
msgid "Please enter Client Secret before social login is enabled"
-msgstr "Vui lòng nhập Client Secret trước khi đăng nhập mạng xã hội được kích hoạt"
+msgstr ""
-#: integrations/doctype/connected_app/connected_app.js:8
+#: frappe/integrations/doctype/connected_app/connected_app.js:8
msgid "Please enter OpenID Configuration URL"
msgstr ""
-#: integrations/doctype/social_login_key/social_login_key.py:75
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:84
msgid "Please enter Redirect URL"
-msgstr "Vui lòng nhập URL chuyển hướng"
+msgstr ""
-#: templates/includes/comments/comments.html:163
+#: frappe/templates/includes/comments/comments.html:163
msgid "Please enter a valid email address."
msgstr ""
-#: www/update-password.html:233
-msgid "Please enter the password"
-msgstr "Vui lòng nhập mật khẩu"
+#: frappe/templates/includes/contact.js:15
+msgid "Please enter both your email and message so that we can get back to you. Thanks!"
+msgstr ""
-#: public/js/frappe/desk.js:196
+#: frappe/www/update-password.html:234
+msgid "Please enter the password"
+msgstr ""
+
+#: frappe/public/js/frappe/desk.js:217
msgctxt "Email Account"
msgid "Please enter the password for: {0}"
msgstr ""
-#: core/doctype/sms_settings/sms_settings.py:42
+#: frappe/core/doctype/sms_settings/sms_settings.py:43
msgid "Please enter valid mobile nos"
-msgstr "Vui lòng nhập nos điện thoại di động hợp lệ"
+msgstr ""
-#: www/update-password.html:115
+#: frappe/www/update-password.html:117
msgid "Please enter your new password."
msgstr ""
-#: www/update-password.html:108
+#: frappe/www/update-password.html:110
msgid "Please enter your old password."
msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:401
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413
msgid "Please find attached {0}: {1}"
-msgstr "Vui lòng tìm đính kèm {0}: {1}"
+msgstr ""
-#: core/doctype/navbar_settings/navbar_settings.py:44
-msgid "Please hide the standard navbar items instead of deleting them"
-msgstr "Vui lòng ẩn các mục tiêu chuẩn trên thanh điều hướng thay vì xóa chúng"
-
-#: templates/includes/comments/comments.py:31
+#: frappe/templates/includes/comments/comments.py:31
msgid "Please login to post a comment."
msgstr ""
-#: core/doctype/communication/communication.py:210
+#: frappe/core/doctype/communication/communication.py:186
msgid "Please make sure the Reference Communication Docs are not circularly linked."
-msgstr "Vui lòng đảm bảo Tài liệu liên lạc tham chiếu không được liên kết theo vòng tròn."
+msgstr ""
-#: model/document.py:810
+#: frappe/model/document.py:987
msgid "Please refresh to get the latest document."
-msgstr "Xin vui lòng làm mới để có được những tài liệu mới nhất."
+msgstr ""
-#: printing/page/print/print.js:525
+#: frappe/printing/page/print/print.js:535
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr ""
-#: public/js/frappe/form/form.js:384
+#: frappe/public/js/frappe/form/form.js:358
msgid "Please save before attaching."
-msgstr "Hãy lưu trước khi đính kèm."
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:133
+#: frappe/email/doctype/newsletter/newsletter.py:131
msgid "Please save the Newsletter before sending"
-msgstr "Xin vui lòng lưu bản tin trước khi gửi đi"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:51
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
-msgstr "Vui lòng lưu tài liệu trước khi chuyển nhượng"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:71
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:72
msgid "Please save the document before removing assignment"
-msgstr "Vui lòng lưu tài liệu trước khi tháo nhượng"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1614
+#: frappe/public/js/frappe/views/reports/report_view.js:1703
msgid "Please save the report first"
-msgstr "Hãy lưu lại báo cáo đầu tiên"
+msgstr ""
-#: website/doctype/web_template/web_template.js:22
+#: frappe/website/doctype/web_template/web_template.js:22
msgid "Please save to edit the template."
-msgstr "Vui lòng lưu để chỉnh sửa mẫu."
+msgstr ""
-#: desk/page/leaderboard/leaderboard.js:244
-msgid "Please select Company"
-msgstr "Vui lòng chọn Công ty"
-
-#: printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:30
msgid "Please select DocType first"
-msgstr "Vui lòng chọn DocType đầu tiên"
+msgstr ""
-#: contacts/report/addresses_and_contacts/addresses_and_contacts.js:27
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:27
msgid "Please select Entity Type first"
-msgstr "Vui lòng chọn Loại thực thể trước"
+msgstr ""
-#: core/doctype/system_settings/system_settings.py:103
+#: frappe/core/doctype/system_settings/system_settings.py:112
msgid "Please select Minimum Password Score"
-msgstr "Vui lòng chọn Điểm mật khẩu Tối thiểu"
+msgstr ""
-#: utils/__init__.py:115
+#: frappe/public/js/frappe/views/reports/query_report.js:1181
+msgid "Please select X and Y fields"
+msgstr ""
+
+#: frappe/utils/__init__.py:128
msgid "Please select a country code for field {1}."
msgstr ""
-#: utils/file_manager.py:50
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506
+msgid "Please select a file first."
+msgstr ""
+
+#: frappe/utils/file_manager.py:50
msgid "Please select a file or url"
-msgstr "Vui lòng chọn một tập tin hoặc url"
+msgstr ""
-#: model/rename_doc.py:670
+#: frappe/model/rename_doc.py:685
msgid "Please select a valid csv file with data"
-msgstr "Vui lòng chọn một tập tin csv hợp lệ với các dữ liệu"
+msgstr ""
-#: utils/data.py:285
+#: frappe/utils/data.py:299
msgid "Please select a valid date filter"
-msgstr "Vui lòng chọn một bộ lọc ngày hợp lệ"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:203
+#: frappe/core/doctype/user_permission/user_permission_list.js:203
msgid "Please select applicable Doctypes"
-msgstr "Vui lòng chọn Tài liệu áp dụng"
+msgstr ""
-#: model/db_query.py:1140
+#: frappe/model/db_query.py:1140
msgid "Please select atleast 1 column from {0} to sort/group"
-msgstr "Vui lòng chọn ít nhất 1 cột từ {0} để sắp xếp/ nhóm"
+msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.py:215
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:214
msgid "Please select prefix first"
-msgstr "Vui lòng chọn tiền tố đầu tiên"
+msgstr ""
-#: core/doctype/data_export/data_export.js:42
+#: frappe/core/doctype/data_export/data_export.js:42
msgid "Please select the Document Type."
-msgstr "Vui lòng chọn Loại tài liệu."
+msgstr ""
#. Description of the 'Directory Server' (Select) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Please select the LDAP Directory being used"
msgstr ""
-#: website/doctype/website_settings/website_settings.js:100
+#: frappe/website/doctype/website_settings/website_settings.js:100
msgid "Please select {0}"
-msgstr "Vui lòng chọn {0}"
+msgstr ""
-#: integrations/doctype/dropbox_settings/dropbox_settings.py:306
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:305
msgid "Please set Dropbox access keys in site config or doctype"
msgstr ""
-#: contacts/doctype/contact/contact.py:200
+#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
-msgstr "Hãy thiết lập Địa chỉ Email"
+msgstr ""
-#: printing/page/print/print.js:539
+#: frappe/printing/page/print/print.js:549
msgid "Please set a printer mapping for this print format in the Printer Settings"
-msgstr "Vui lòng đặt ánh xạ máy in cho định dạng in này trong Cài đặt máy in"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1308
+#: frappe/public/js/frappe/views/reports/query_report.js:1404
msgid "Please set filters"
-msgstr "Xin hãy thiết lập bộ lọc"
+msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.py:226
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:251
msgid "Please set filters value in Report Filter table."
-msgstr "Hãy thiết lập giá trị bộ lọc trong bảng Báo cáo Filter."
+msgstr ""
-#: model/naming.py:533
+#: frappe/model/naming.py:572
msgid "Please set the document name"
msgstr ""
-#: desk/doctype/dashboard/dashboard.py:125
+#: frappe/desk/doctype/dashboard/dashboard.py:120
msgid "Please set the following documents in this Dashboard as standard first."
-msgstr "Trước tiên, hãy đặt các tài liệu sau trong Trang tổng quan này làm tiêu chuẩn."
-
-#: core/doctype/document_naming_settings/document_naming_settings.py:121
-msgid "Please set the series to be used."
-msgstr "Vui lòng đặt hàng loạt sẽ được sử dụng."
-
-#: core/doctype/system_settings/system_settings.py:116
-msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
-msgstr "Vui lòng thiết lập SMS trước khi cài đặt nó làm phương pháp xác thực, thông qua Cài đặt SMS"
-
-#: automation/doctype/auto_repeat/auto_repeat.js:102
-msgid "Please setup a message first"
-msgstr "Vui lòng thiết lập thông báo trước"
-
-#: email/doctype/email_account/email_account.py:389
-msgid "Please setup default Email Account from Settings > Email Account"
msgstr ""
-#: core/doctype/user/user.py:369
+#: frappe/core/doctype/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:125
+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:422
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
-#: public/js/frappe/model/model.js:785
-msgid "Please specify"
-msgstr "Vui lòng chỉ"
+#: frappe/email/doctype/email_account/email_account.py:434
+msgid "Please setup default outgoing Email Account from Tools > Email Account"
+msgstr ""
-#: permissions.py:782
+#: frappe/public/js/frappe/model/model.js:823
+msgid "Please specify"
+msgstr ""
+
+#: frappe/permissions.py:774
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
-#: email/doctype/notification/notification.py:86
+#: frappe/email/doctype/notification/notification.py:154
+msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:151
+msgid "Please specify the minutes offset"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:145
msgid "Please specify which date field must be checked"
-msgstr "Xin vui lòng xác định các lĩnh vực ngày phải được kiểm tra"
+msgstr ""
-#: email/doctype/notification/notification.py:89
+#: frappe/email/doctype/notification/notification.py:149
+msgid "Please specify which datetime field must be checked"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:158
msgid "Please specify which value field must be checked"
-msgstr "Hãy xác định những lĩnh vực giá trị phải được kiểm tra"
+msgstr ""
-#: public/js/frappe/request.js:184
-#: public/js/frappe/views/translation_manager.js:102
+#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
-msgstr "Vui lòng thử lại"
+msgstr ""
-#: integrations/google_oauth.py:56
+#: frappe/integrations/google_oauth.py:56
msgid "Please update {} before continuing."
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:332
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: email/doctype/newsletter/newsletter.py:333
+#: frappe/email/doctype/newsletter/newsletter.py:333
msgid "Please verify your Email Address"
-msgstr "Vui lòng xác nhận địa chỉ email"
+msgstr ""
-#. Label of a Select field in DocType 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Point Allocation Periodicity"
-msgstr "Định kỳ phân bổ điểm"
+#: frappe/utils/password.py:218
+msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
+msgstr ""
-#: public/js/frappe/form/sidebar/review.js:75
-msgid "Points"
-msgstr "Điểm"
+#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Polling"
+msgstr ""
-#. Label of a Int field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Points"
-msgstr "Điểm"
-
-#. Label of a Int field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Points"
-msgstr "Điểm"
-
-#: templates/emails/energy_points_summary.html:40
-msgid "Points Given"
-msgstr "Điểm cho"
-
-#. Label of a Check field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the popover_element (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Popover Element"
msgstr ""
-#. Label of a HTML Editor field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the ondemand_description (HTML Editor) field in DocType 'Form Tour
+#. Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Popover or Modal Description"
msgstr ""
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the smtp_port (Data) field in DocType 'Email Account'
+#. Label of the incoming_port (Data) field in DocType 'Email Account'
+#. Label of the smtp_port (Data) field in DocType 'Email Domain'
+#. Label of the incoming_port (Data) field in DocType 'Email Domain'
+#. Label of the port (Int) field in DocType 'Network Printer Settings'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Port"
-msgstr "Cảng"
-
-#. Label of a Data field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Port"
-msgstr "Cảng"
-
-#. Label of a Int field in DocType 'Network Printer Settings'
-#: printing/doctype/network_printer_settings/network_printer_settings.json
-msgctxt "Network Printer Settings"
-msgid "Port"
-msgstr "Cảng"
-
-#. Label of a Card Break in the Website Workspace
-#: website/workspace/website/website.json
-msgid "Portal"
msgstr ""
-#. Label of a Table field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the menu (Table) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Portal Menu"
-msgstr "Portal Menu"
+msgstr ""
#. Name of a DocType
-#: website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Portal Menu Item"
-msgstr "Portal Menu Item"
+msgstr ""
#. Name of a DocType
-#: website/doctype/portal_settings/portal_settings.json
-msgid "Portal Settings"
-msgstr "Thiết lập cổng"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Portal Settings"
+#: frappe/website/doctype/portal_settings/portal_settings.json
+#: frappe/website/workspace/website/website.json
msgid "Portal Settings"
-msgstr "Thiết lập cổng"
+msgstr ""
-#: public/js/frappe/form/print_utils.js:29
+#: frappe/public/js/frappe/form/print_utils.js:31
msgid "Portrait"
-msgstr "Chân dung"
+msgstr ""
-#. Label of a Select field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the position (Select) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Position"
-msgstr "Chức vụ"
+msgstr ""
-#: templates/discussions/comment_box.html:29
-#: templates/discussions/reply_card.html:15
+#: frappe/templates/discussions/comment_box.html:29
+#: frappe/templates/discussions/reply_card.html:15
+#: frappe/templates/discussions/reply_section.html:29
+#: frappe/templates/discussions/reply_section.html:53
+#: frappe/templates/discussions/topic_modal.html:11
msgid "Post"
-msgstr "Bài"
+msgstr ""
-#: templates/discussions/reply_section.html:39
+#: frappe/templates/discussions/reply_section.html:40
msgid "Post it here, our mentors will help you out."
msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Postal"
-msgstr "Bưu chính"
+msgstr ""
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the pincode (Data) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "Postal Code"
-msgstr "Mã bưu chính"
+msgstr ""
-#. Group in Blog Category's connections
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
-msgid "Posts"
-msgstr "Bài viết"
+#. Label of the posting_timestamp (Datetime) field in DocType 'Changelog Feed'
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+msgid "Posting Timestamp"
+msgstr ""
-#: website/doctype/blog_post/blog_post.py:258
+#: frappe/website/doctype/blog_post/blog_post.py:264
msgid "Posts by {0}"
-msgstr "Bài viết bởi {0}"
+msgstr ""
-#: website/doctype/blog_post/blog_post.py:250
+#: frappe/website/doctype/blog_post/blog_post.py:256
msgid "Posts filed under {0}"
-msgstr "Bài viết đệ dưới {0}"
+msgstr ""
-#. Label of a Select field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the precision (Select) field in DocType 'DocField'
+#. Label of the precision (Select) field in DocType 'Custom Field'
+#. Label of the precision (Select) field in DocType 'Customize Form Field'
+#. Label of the precision (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Precision"
-msgstr "Độ chính xác"
+msgstr ""
-#. Label of a Select field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Precision"
-msgstr "Độ chính xác"
-
-#. Label of a Select field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Precision"
-msgstr "Độ chính xác"
-
-#. Label of a Select field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Precision"
-msgstr "Độ chính xác"
-
-#: core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1400
msgid "Precision should be between 1 and 6"
-msgstr "Chính xác nên được giữa 1 và 6"
+msgstr ""
-#: utils/password_strength.py:191
+#: frappe/utils/password_strength.py:187
msgid "Predictable substitutions like '@' instead of 'a' don't help very much."
-msgstr "Các thay thế có thể dự đoán như @ thay vì \"a\" không giúp gì nhiều"
+msgstr ""
-#. Label of a Check field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/desk/page/setup_wizard/install_fixtures.py:34
+msgid "Prefer not to say"
+msgstr ""
+
+#. Label of the is_primary_address (Check) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "Preferred Billing Address"
-msgstr "Địa chỉ thanh toán ưu tiên"
+msgstr ""
-#. Label of a Check field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the is_shipping_address (Check) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "Preferred Shipping Address"
-msgstr "Địa chỉ giao hàng ưu tiên"
+msgstr ""
-#. Label of a Data field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#. Label of the prefix (Data) field in DocType 'Document Naming Rule'
+#. Label of the prefix (Autocomplete) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Prefix"
-msgstr "Tiền tố"
-
-#. Label of a Autocomplete field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
-msgid "Prefix"
-msgstr "Tiền tố"
+msgstr ""
#. Name of a DocType
-#: core/doctype/prepared_report/prepared_report.json
+#. Label of the prepared_report (Check) field in DocType 'Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:32
msgid "Prepared Report"
-msgstr "Báo cáo đã chuẩn bị"
+msgstr ""
-#. Label of a Check field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Prepared Report"
-msgstr "Báo cáo đã chuẩn bị"
+#. Name of a report
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json
+msgid "Prepared Report Analytics"
+msgstr ""
#. Name of a role
-#: core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Prepared Report User"
-msgstr "Người dùng báo cáo đã chuẩn bị"
+msgstr ""
-#: desk/query_report.py:296
+#: frappe/desk/query_report.py:306
msgid "Prepared report render failed"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:469
+#: frappe/public/js/frappe/views/reports/query_report.js:472
msgid "Preparing Report"
-msgstr "Chuẩn bị báo cáo"
+msgstr ""
-#: public/js/frappe/views/communication.js:321
+#: frappe/public/js/frappe/views/communication.js:428
msgid "Prepend the template to the email message"
msgstr ""
-#: public/js/frappe/list/list_filter.js:134
+#: frappe/public/js/frappe/ui/keyboard.js:139
+msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_filter.js:141
msgid "Press Enter to save"
-msgstr "Nhấn Enter để lưu"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:14
-#: email/doctype/newsletter/newsletter.js:42
-#: public/js/frappe/form/controls/markdown_editor.js:31
-#: public/js/frappe/ui/capture.js:228
+#. Label of the section_import_preview (Section Break) field in DocType 'Data
+#. Import'
+#. Label of the preview (Section Break) field in DocType 'File'
+#. Label of the preview_section (Section Break) field in DocType 'Custom HTML
+#. Block'
+#. Label of the preview (Attach Image) field in DocType 'Print Style'
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/file/file.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/email/doctype/newsletter/newsletter.js:14
+#: frappe/email/doctype/newsletter/newsletter.js:42
+#: frappe/email/doctype/notification/notification.js:190
+#: frappe/integrations/doctype/webhook/webhook.js:90
+#: frappe/printing/doctype/print_style/print_style.json
+#: 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 "Xem trước"
+msgstr ""
-#. Label of a Section Break field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
-msgid "Preview"
-msgstr "Xem trước"
-
-#. Label of a Section Break field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Preview"
-msgstr "Xem trước"
-
-#. Label of a Section Break field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
-msgid "Preview"
-msgstr "Xem trước"
-
-#. Label of a Attach Image field in DocType 'Print Style'
-#: printing/doctype/print_style/print_style.json
-msgctxt "Print Style"
-msgid "Preview"
-msgstr "Xem trước"
-
-#. Label of a Tab Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Preview"
-msgstr "Xem trước"
-
-#. Label of a HTML field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the preview_html (HTML) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Preview HTML"
-msgstr "Preview HTML"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Blog Category'
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
+#. Label of the preview_image (Attach Image) field in DocType 'Blog Category'
+#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Preview Image"
msgstr ""
-#. Label of a Attach Image field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
-msgid "Preview Image"
-msgstr ""
-
-#. Label of a Button field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the preview_message (Button) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Preview Message"
-msgstr "Xem trước tin nhắn"
+msgstr ""
-#: public/js/form_builder/form_builder.bundle.js:83
+#: frappe/public/js/form_builder/form_builder.bundle.js:83
msgid "Preview Mode"
msgstr ""
-#. Label of a Text field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the series_preview (Text) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Preview of generated names"
msgstr ""
-#: public/js/onboarding_tours/onboarding_tours.js:16
-#: templates/includes/slideshow.html:34
-#: website/web_template/slideshow/slideshow.html:40
-msgid "Previous"
-msgstr "Trước"
-
-#: public/js/frappe/form/toolbar.js:289
-msgid "Previous Document"
+#: frappe/public/js/frappe/views/render_preview.js:19
+msgid "Preview on {0}"
msgstr ""
-#. Label of a Small Text field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Previous Hash"
-msgstr "Hash Trước đây"
+#: frappe/public/js/print_format_builder/Preview.vue:103
+msgid "Preview type"
+msgstr ""
-#: public/js/frappe/form/form.js:2162
+#: frappe/email/doctype/email_group/email_group.js:90
+msgid "Preview:"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_tour.js:15
+#: frappe/public/js/frappe/web_form/web_form.js:95
+#: frappe/public/js/onboarding_tours/onboarding_tours.js:16
+#: frappe/templates/includes/slideshow.html:34
+#: frappe/website/web_template/slideshow/slideshow.html:40
+msgid "Previous"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/slides.js:351
+msgctxt "Go to previous slide"
+msgid "Previous"
+msgstr ""
+
+#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log'
+#: frappe/core/doctype/transaction_log/transaction_log.json
+msgid "Previous Hash"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:2214
msgid "Previous Submission"
msgstr ""
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Primary"
-msgstr "Vũ khí chinh"
+msgstr ""
-#. Label of a Link field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#: frappe/public/js/frappe/form/templates/address_list.html:27
+msgid "Primary Address"
+msgstr ""
+
+#. Label of the primary_color (Link) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Primary Color"
-msgstr "Màu chính"
+msgstr ""
-#: core/doctype/success_action/success_action.js:56
-#: printing/page/print/print.js:65 public/js/frappe/form/success_action.js:81
-#: public/js/frappe/form/toolbar.js:321 public/js/frappe/form/toolbar.js:333
-#: public/js/frappe/list/bulk_operations.js:79
-#: public/js/frappe/views/reports/query_report.js:1623
-#: public/js/frappe/views/reports/report_view.js:1463
-#: public/js/frappe/views/treeview.js:473 www/printview.html:18
+#: frappe/public/js/frappe/form/templates/contact_list.html:23
+msgid "Primary Contact"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/contact_list.html:69
+msgid "Primary Email"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/contact_list.html:49
+msgid "Primary Mobile"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/contact_list.html:41
+msgid "Primary Phone"
+msgstr ""
+
+#: frappe/database/mariadb/schema.py:156 frappe/database/postgres/schema.py:199
+#: frappe/database/sqlite/schema.py:141
+msgid "Primary key of doctype {0} can not be changed as there are existing values."
+msgstr ""
+
+#. Label of the print (Check) field in DocType 'Custom DocPerm'
+#. Label of the print (Check) field in DocType 'DocPerm'
+#. Label of the print (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/success_action/success_action.js:58
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/printing/page/print/print.js:65
+#: frappe/public/js/frappe/form/success_action.js:81
+#: frappe/public/js/frappe/form/templates/print_layout.html:46
+#: frappe/public/js/frappe/form/toolbar.js:357
+#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/list/bulk_operations.js:95
+#: frappe/public/js/frappe/views/reports/query_report.js:1728
+#: frappe/public/js/frappe/views/reports/report_view.js:1531
+#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
-msgstr "In"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1849
+#: frappe/public/js/frappe/list/list_view.js:2019
msgctxt "Button in list view actions menu"
msgid "Print"
-msgstr "In"
+msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Print"
-msgstr "In"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Print"
-msgstr "In"
-
-#: public/js/frappe/list/bulk_operations.js:39
+#: frappe/public/js/frappe/list/bulk_operations.js:48
msgid "Print Documents"
-msgstr "In tài liệu"
-
-#. Name of a DocType
-#: printing/doctype/print_format/print_format.json
-#: printing/page/print/print.js:94 printing/page/print/print.js:794
-#: public/js/frappe/list/bulk_operations.js:50
-msgid "Print Format"
-msgstr "Định dạng in"
-
-#. Label of a Link field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Print Format"
-msgstr "Định dạng in"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Print Format"
-msgstr "Định dạng in"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Print Format"
-msgstr "Định dạng in"
-
-#. Label of a Link field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Print Format"
-msgstr "Định dạng in"
+msgstr ""
+#. Label of the print_format (Link) field in DocType 'Auto Repeat'
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Print Format"
+#. Label of the print_format (Link) field in DocType 'Notification'
+#. Name of a DocType
+#. Label of the print_format (Link) field in DocType 'Web Form'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/workspace/build/build.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/page/print/print.js:94
+#: frappe/printing/page/print/print.js:821
+#: frappe/public/js/frappe/list/bulk_operations.js:59
+#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
-msgstr "Định dạng in"
-
-#. Label of a Link field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Print Format"
-msgstr "Định dạng in"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#. Label of a shortcut in the Build Workspace
-#: automation/workspace/tools/tools.json core/workspace/build/build.json
-#: printing/page/print_format_builder/print_format_builder.js:44
-#: printing/page/print_format_builder/print_format_builder.js:67
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:4
+#. 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 "Định dạng in Builder"
-
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Print Format Builder"
-msgstr "Định dạng in Builder"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
+#: frappe/automation/workspace/tools/tools.json
msgid "Print Format Builder (New)"
msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the print_format_builder_beta (Check) field in DocType 'Print
+#. Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Builder Beta"
msgstr ""
-#: utils/pdf.py:52
+#: frappe/utils/pdf.py:63
msgid "Print Format Error"
msgstr ""
#. Name of a DocType
-#: printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
msgid "Print Format Field Template"
msgstr ""
-#. Label of a HTML field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the print_format_help (HTML) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
-msgstr "Định dạng in Trợ giúp"
+msgstr ""
-#. Label of a Select field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the print_format_type (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Type"
-msgstr "Định dạng in Loại"
+msgstr ""
-#: www/printview.py:407
+#: frappe/www/printview.py:451
msgid "Print Format {0} is disabled"
-msgstr "Định dạng in {0} bị vô hiệu hóa"
-
-#. Description of the Onboarding Step 'Customize Print Formats'
-#: custom/onboarding_step/print_format/print_format.json
-msgid "Print Formats allow you can define looks for documents when printed or converted to PDF. You can also create a custom Print Format using drag-and-drop tools."
-msgstr ""
-
-#. Name of a DocType
-#: printing/doctype/print_heading/print_heading.json
-msgid "Print Heading"
msgstr ""
#. Label of a Link in the Tools Workspace
-#. Label of a Data field in DocType 'Print Heading'
-#: automation/workspace/tools/tools.json
-#: printing/doctype/print_heading/print_heading.json
-msgctxt "Print Heading"
+#. Name of a DocType
+#. Label of the print_heading (Data) field in DocType 'Print Heading'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/printing/doctype/print_heading/print_heading.json
msgid "Print Heading"
msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. 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 "In Ẩn"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Print Hide"
-msgstr "In Ẩn"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Print Hide"
-msgstr "In Ẩn"
-
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the print_hide_if_no_value (Check) field in DocType 'DocField'
+#. Label of the print_hide_if_no_value (Check) field in DocType 'Custom Field'
+#. Label of the print_hide_if_no_value (Check) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Hide If No Value"
-msgstr "In Hide Nếu Không Value"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Print Hide If No Value"
-msgstr "In Hide Nếu Không Value"
+#: frappe/public/js/frappe/views/communication.js:165
+msgid "Print Language"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Print Hide If No Value"
-msgstr "In Hide Nếu Không Value"
-
-#: public/js/frappe/form/print_utils.js:195
+#: frappe/public/js/frappe/form/print_utils.js:197
msgid "Print Sent to the printer!"
-msgstr "In Gửi đến máy in!"
+msgstr ""
-#. Label of a Section Break field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the server_printer (Section Break) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print Server"
-msgstr "Máy chủ in"
-
-#. Name of a DocType
-#: printing/doctype/print_settings/print_settings.json
-#: printing/doctype/print_style/print_style.js:6
-#: printing/page/print/print.js:160 public/js/frappe/form/print_utils.js:69
-msgid "Print Settings"
-msgstr "Thông số in ấn"
-
-#. Label of a Section Break field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Print Settings"
-msgstr "Thông số in ấn"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Print Settings"
-msgid "Print Settings"
-msgstr "Thông số in ấn"
-
+#. Label of the column_break_25 (Section Break) field in DocType 'Notification'
#. Name of a DocType
-#: printing/doctype/print_style/print_style.json
-msgid "Print Style"
-msgstr "Kiểu in"
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/printing/doctype/print_style/print_style.js:6
+#: frappe/printing/page/print/print.js:160
+#: frappe/public/js/frappe/form/print_utils.js:71
+#: frappe/public/js/frappe/form/templates/print_layout.html:35
+msgid "Print Settings"
+msgstr ""
-#. Label of a Section Break field in DocType 'Print Settings'
-#. Label of a Link field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. 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 "Kiểu in"
+msgstr ""
-#. Label of a Data field in DocType 'Print Style'
-#: printing/doctype/print_style/print_style.json
-msgctxt "Print Style"
+#. Label of the print_style_name (Data) field in DocType 'Print Style'
+#: frappe/printing/doctype/print_style/print_style.json
msgid "Print Style Name"
-msgstr "Tên Kiểu In"
+msgstr ""
-#. Label of a HTML field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the print_style_preview (HTML) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print Style Preview"
-msgstr "xem trước kiểu in"
+msgstr ""
-#. Label of a Data field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the print_width (Data) field in DocType 'DocField'
+#. Label of the print_width (Data) field in DocType 'Custom Field'
+#. Label of the print_width (Data) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Width"
-msgstr "Chiều rộng in"
-
-#. Label of a Data field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Print Width"
-msgstr "Chiều rộng in"
-
-#. Label of a Data field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Print Width"
-msgstr "Chiều rộng in"
+msgstr ""
#. Description of the 'Print Width' (Data) field in DocType 'Customize Form
#. Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Width of the field, if the field is a column in a table"
-msgstr "In chiều rộng của trường, nếu trường là 1 cột trong bảng"
+msgstr ""
-#: public/js/frappe/form/form.js:170
+#: frappe/public/js/frappe/form/form.js:170
msgid "Print document"
msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the with_letterhead (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print with letterhead"
-msgstr "In cùng với tiêu đề trang"
+msgstr ""
-#: printing/page/print/print.js:803
+#: frappe/printing/page/print/print.js:830
msgid "Printer"
-msgstr "Máy in"
+msgstr ""
-#: printing/page/print/print.js:780
+#: frappe/printing/page/print/print.js:807
msgid "Printer Mapping"
-msgstr "Bản đồ máy in"
+msgstr ""
-#. Label of a Select field in DocType 'Network Printer Settings'
-#: printing/doctype/network_printer_settings/network_printer_settings.json
-msgctxt "Network Printer Settings"
+#. Label of the printer_name (Select) field in DocType 'Network Printer
+#. Settings'
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Printer Name"
-msgstr "Tên máy in"
+msgstr ""
-#: printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:799
msgid "Printer Settings"
-msgstr "Cài đặt máy in"
+msgstr ""
-#: printing/page/print/print.js:538
+#: frappe/printing/page/print/print.js:548
msgid "Printer mapping not set."
msgstr ""
#. Label of a Card Break in the Tools Workspace
-#: automation/workspace/tools/tools.json
+#: frappe/automation/workspace/tools/tools.json
msgid "Printing"
-msgstr "In ấn"
+msgstr ""
-#: utils/print_format.py:179
+#: frappe/utils/print_format.py:291
msgid "Printing failed"
-msgstr "Không in được"
+msgstr ""
-#: desk/report/todo/todo.py:37 public/js/frappe/form/sidebar/assign_to.js:184
+#. Label of the priority (Int) field in DocType 'Assignment Rule'
+#. Label of the priority (Int) field in DocType 'Document Naming Rule'
+#. Label of the priority (Select) field in DocType 'ToDo'
+#. Label of the priority (Int) field in DocType 'Email Queue'
+#. Label of the idx (Int) field in DocType 'Web Page'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:37
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:211
+#: frappe/website/doctype/web_page/web_page.json
msgid "Priority"
-msgstr "Ưu tiên"
-
-#. Label of a Int field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Priority"
-msgstr "Ưu tiên"
-
-#. Label of a Int field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
-msgid "Priority"
-msgstr "Ưu tiên"
-
-#. Label of a Int field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Priority"
-msgstr "Ưu tiên"
-
-#. Label of a Select field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Priority"
-msgstr "Ưu tiên"
-
-#. Label of a Int field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Priority"
-msgstr "Ưu tiên"
-
-#: desk/doctype/note/note_list.js:8
-msgid "Private"
-msgstr "Riêng"
-
-#. Label of a Check field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
-msgid "Private"
-msgstr "Riêng"
+msgstr ""
+#. Label of the private (Check) field in DocType 'Custom HTML Block'
#. Option for the 'Event Type' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the private (Check) field in DocType 'Kanban Board'
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/note/note_list.js:8
+#: frappe/public/js/frappe/file_uploader/FilePreview.vue:35
msgid "Private"
-msgstr "Riêng"
+msgstr ""
-#. Label of a Check field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Private"
-msgstr "Riêng"
+#. 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 ""
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference"
-msgstr "ProTip: Thêm Reference: {{ reference_doctype }} {{ reference_name }} để gửi tài liệu tham khảo"
+msgstr ""
-#: core/doctype/document_naming_rule/document_naming_rule.js:22
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22
msgid "Proceed"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:928
msgid "Proceed Anyway"
-msgstr "Vẫn tiếp tục"
+msgstr ""
-#: public/js/frappe/form/controls/table.js:88
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
-msgstr "Chế biến"
+msgstr ""
-#: email/doctype/email_queue/email_queue.py:407
+#: frappe/email/doctype/email_queue/email_queue_list.js:52
msgid "Processing..."
-msgstr "Chế biến..."
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:51
+msgid "Prof"
+msgstr ""
#. Group in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Profile"
msgstr ""
-#: public/js/frappe/socketio_client.js:78
+#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
-msgstr "Tiến bộ, tiến trình"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:405
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
msgid "Project"
-msgstr "Dự Án"
+msgstr ""
-#. Label of a Data field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#. Label of the property (Data) field in DocType 'Property Setter'
+#: frappe/core/doctype/version/version_view.html:12
+#: frappe/core/doctype/version/version_view.html:37
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
-msgstr "Tài sản"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the property_depends_on_section (Section Break) field in DocType
+#. 'Customize Form Field'
+#. Label of the property_depends_on_section (Section Break) field in DocType
+#. 'Web Form Field'
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Property Depends On"
-msgstr "Tài sản phụ thuộc vào"
-
-#. Label of a Section Break field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Property Depends On"
-msgstr "Tài sản phụ thuộc vào"
+msgstr ""
#. Name of a DocType
-#: custom/doctype/property_setter/property_setter.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property Setter"
-msgstr "Người định cư tài sản"
+msgstr ""
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Property Setter"
-msgstr "Người định cư tài sản"
+#. Description of a DocType
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "Property Setter overrides a standard DocType or Field property"
+msgstr ""
-#. Label of a Data field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#. Label of the property_type (Data) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property Type"
-msgstr "Loại bất động sản"
+msgstr ""
+
+#. Label of the protect_attached_files (Check) field in DocType 'DocType'
+#. Label of the protect_attached_files (Check) field in DocType 'Customize
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Protect Attached Files"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:501
+msgid "Protected File"
+msgstr ""
#. Description of the 'Allowed File Extensions' (Small Text) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Provide a list of allowed file extensions for file uploads. Each line should contain one allowed file type. If unset, all file extensions are allowed. Example:
CSV
JPG
PNG"
msgstr ""
-#. Label of a Data field in DocType 'User Social Login'
-#: core/doctype/user_social_login/user_social_login.json
-msgctxt "User Social Login"
+#. Label of the provider (Data) field in DocType 'User Social Login'
+#. Label of the provider (Select) field in DocType 'Geolocation Settings'
+#: frappe/core/doctype/user_social_login/user_social_login.json
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
msgid "Provider"
-msgstr "Các nhà cung cấp"
+msgstr ""
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. 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 "Tên nhà cung cấp"
-
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Provider Name"
-msgstr "Tên nhà cung cấp"
-
-#. Label of a Data field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "Provider Name"
-msgstr "Tên nhà cung cấp"
-
-#: desk/doctype/note/note_list.js:6 public/js/frappe/views/interaction.js:78
-#: public/js/frappe/views/workspace/workspace.js:613
-#: public/js/frappe/views/workspace/workspace.js:941
-#: public/js/frappe/views/workspace/workspace.js:1187
-msgid "Public"
-msgstr "Công bố"
+msgstr ""
#. Option for the 'Event Type' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "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 "Công bố"
+msgstr ""
-#. Label of a Check field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
-msgid "Public"
-msgstr "Công bố"
+#. 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 ""
-#. Label of a Check field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Public"
-msgstr "Công bố"
-
-#: website/doctype/blog_post/blog_post.js:36
-#: website/doctype/web_form/web_form.js:77
+#. Label of the publish (Check) field in DocType 'Package Release'
+#: frappe/core/doctype/package_release/package_release.json
+#: frappe/public/js/frappe/form/footer/form_timeline.js:632
+#: frappe/website/doctype/blog_post/blog_post.js:36
+#: frappe/website/doctype/web_form/web_form.js:86
msgid "Publish"
-msgstr "Công bố"
+msgstr ""
-#. Label of a Check field in DocType 'Package Release'
-#: core/doctype/package_release/package_release.json
-msgctxt "Package Release"
-msgid "Publish"
-msgstr "Công bố"
-
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
+#. 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Publish as a web page"
msgstr ""
-#: website/doctype/blog_post/blog_post_list.js:5
-#: website/doctype/web_form/web_form_list.js:5
-#: website/doctype/web_page/web_page_list.js:5
+#. Label of the published (Check) field in DocType 'Comment'
+#. Label of the published (Check) field in DocType 'Newsletter'
+#. Label of the published (Check) field in DocType 'Blog Category'
+#. Label of the published (Check) field in DocType 'Blog Post'
+#. Label of the published (Check) field in DocType 'Help Article'
+#. 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/email/doctype/newsletter/newsletter.json
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/blog_post/blog_post_list.js:5
+#: frappe/website/doctype/help_article/help_article.json
+#: frappe/website/doctype/help_category/help_category.json
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_form/web_form_list.js:5
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/web_page/web_page_list.js:5
msgid "Published"
-msgstr "Công bố"
+msgstr ""
-#. Label of a Check field in DocType 'Blog Category'
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
-msgid "Published"
-msgstr "Công bố"
-
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Published"
-msgstr "Công bố"
-
-#. Label of a Check field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Published"
-msgstr "Công bố"
-
-#. Label of a Check field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
-msgid "Published"
-msgstr "Công bố"
-
-#. Label of a Check field in DocType 'Help Category'
-#: website/doctype/help_category/help_category.json
-msgctxt "Help Category"
-msgid "Published"
-msgstr "Công bố"
-
-#. Label of a Check field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Published"
-msgstr "Công bố"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Published"
-msgstr "Công bố"
-
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Published"
-msgstr "Công bố"
-
-#. Label of a Date field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the published_on (Date) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Published On"
-msgstr "Được công bố trên"
+msgstr ""
-#: website/doctype/blog_post/templates/blog_post.html:59
+#: frappe/website/doctype/blog_post/templates/blog_post.html:59
msgid "Published on"
-msgstr "Được xuất bản trên"
+msgstr ""
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the publishing_dates_section (Section Break) field in DocType 'Web
+#. Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Publishing Dates"
msgstr ""
-#: email/doctype/email_account/email_account.js:164
+#: frappe/email/doctype/email_account/email_account.js:208
msgid "Pull Emails"
msgstr ""
-#. Label of a Check field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Label of the pull_from_google_calendar (Check) field in DocType 'Google
+#. Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Pull from Google Calendar"
-msgstr "Kéo từ Lịch Google"
+msgstr ""
-#. Label of a Check field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
+#. Label of the pull_from_google_contacts (Check) field in DocType 'Google
+#. Contacts'
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Pull from Google Contacts"
-msgstr "Kéo từ Danh bạ Google"
+msgstr ""
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the pulled_from_google_calendar (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Pulled from Google Calendar"
-msgstr "Kéo từ Lịch Google"
+msgstr ""
-#. Label of a Check field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Pulled from Google Contacts"
-msgstr "Kéo từ Danh bạ Google"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.js:209
+msgid "Pulling emails..."
+msgstr ""
#. Name of a role
-#: contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/contact/contact.json
msgid "Purchase Manager"
-msgstr "Mua quản lý"
+msgstr ""
#. Name of a role
-#: contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/contact/contact.json
msgid "Purchase Master Manager"
-msgstr "Mua chủ quản lý"
+msgstr ""
#. Name of a role
-#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json
-#: geo/doctype/currency/currency.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/geo/doctype/currency/currency.json
msgid "Purchase User"
-msgstr "Mua người dùng"
+msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Purple"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Purple"
msgstr ""
-#. Label of a Check field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Name of a DocType
+#. Label of a Link in the Integrations Workspace
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Push Notification Settings"
+msgstr ""
+
+#. Label of a Card Break in the Integrations Workspace
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Push Notifications"
+msgstr ""
+
+#. Label of the push_to_google_calendar (Check) field in DocType 'Google
+#. Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Push to Google Calendar"
-msgstr "Đẩy lên Lịch Google"
+msgstr ""
-#. Label of a Check field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
+#. Label of the push_to_google_contacts (Check) field in DocType 'Google
+#. Contacts'
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Push to Google Contacts"
-msgstr "Nhấn vào Danh bạ Google"
+msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23
msgid "Put on Hold"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#: frappe/desk/doctype/system_console/system_console.json
msgid "Python"
msgstr ""
-#: www/qrcode.html:3
+#: frappe/www/qrcode.html:3
msgid "QR Code"
-msgstr "Mã QR"
+msgstr ""
-#: www/qrcode.html:6
+#: frappe/www/qrcode.html:6
msgid "QR Code for Login Verification"
-msgstr "Mã QR để Xác minh đăng nhập"
+msgstr ""
-#: public/js/frappe/form/print_utils.js:204
+#: frappe/public/js/frappe/form/print_utils.js:206
msgid "QZ Tray Failed: "
-msgstr "Khay QZ không thành công:"
-
-#: public/js/frappe/utils/common.js:401
-msgid "Quarterly"
-msgstr "Quý"
-
-#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Quarterly"
-msgstr "Quý"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Quarterly"
-msgstr "Quý"
-
#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Option for the 'Repeat On' (Select) field in DocType 'Event'
+#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/utils/common.js:401
msgid "Quarterly"
-msgstr "Quý"
+msgstr ""
-#. Label of a Data field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
+#. Label of the query (Data) field in DocType 'Recorder Query'
+#. Label of the query (Code) field in DocType 'Report'
+#: frappe/core/doctype/recorder_query/recorder_query.json
+#: frappe/core/doctype/report/report.json
msgid "Query"
-msgstr "Truy vấn"
+msgstr ""
-#. Label of a Code field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Query"
-msgstr "Truy vấn"
-
-#. Label of a Section Break field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#. Label of the section_break_6 (Section Break) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
msgid "Query / Script"
-msgstr "Truy vấn / Tập lệnh"
+msgstr ""
-#. Label of a Small Text field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the query_options (Small Text) field in DocType 'Contact Us
+#. Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Query Options"
-msgstr "Tùy chọn truy vấn"
+msgstr ""
+#. Label of the query_parameters (Table) field in DocType 'Connected App'
#. Name of a DocType
-#: integrations/doctype/query_parameters/query_parameters.json
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/query_parameters/query_parameters.json
msgid "Query Parameters"
msgstr ""
-#. Label of a Table field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
-msgid "Query Parameters"
-msgstr ""
-
-#: public/js/frappe/views/reports/query_report.js:17
-msgid "Query Report"
-msgstr "Báo cáo truy vấn"
-
#. Option for the 'Report Type' (Select) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#: frappe/core/doctype/report/report.json
+#: frappe/public/js/frappe/views/reports/query_report.js:17
msgid "Query Report"
-msgstr "Báo cáo truy vấn"
+msgstr ""
-#: utils/safe_exec.py:437
+#: frappe/core/doctype/recorder/recorder.py:188
+msgid "Query analysis complete. Check suggested indexes."
+msgstr ""
+
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
-#. Label of a Select field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the queue (Select) field in DocType 'RQ Job'
+#. Label of the queue (Data) field in DocType 'System Health Report Queue'
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
msgid "Queue"
msgstr ""
-#. Label of a Select field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#: frappe/utils/background_jobs.py:729
+msgid "Queue Overloaded"
+msgstr ""
+
+#. Label of the queue_status (Table) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Queue Status"
+msgstr ""
+
+#. Label of the queue_type (Select) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Queue Type(s)"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the queue_in_background (Check) field in DocType 'DocType'
+#. Label of the queue_in_background (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Queue in Background (BETA)"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Queue in Background (BETA)"
-msgstr ""
-
-#: utils/background_jobs.py:473
+#: frappe/utils/background_jobs.py:554
msgid "Queue should be one of {0}"
-msgstr "Hàng chờ nên là một trong {0}"
+msgstr ""
-#. Label of a Data field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the queue (Data) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Queue(s)"
msgstr ""
-#: email/doctype/newsletter/newsletter.js:208
-msgid "Queued"
-msgstr "Xếp hàng"
-
-#. Option for the 'Status' (Select) field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Queued"
-msgstr "Xếp hàng"
-
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
-msgid "Queued"
-msgstr "Xếp hàng"
-
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/email/doctype/newsletter/newsletter.js:208
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
-msgstr "Xếp hàng"
+msgstr ""
-#. Label of a Datetime field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Label of the queued_at (Datetime) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Queued At"
msgstr ""
-#. Label of a Data field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Label of the queued_by (Data) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Queued By"
msgstr ""
-#: core/doctype/submission_queue/submission_queue.py:173
+#: frappe/core/doctype/submission_queue/submission_queue.py:174
msgid "Queued for Submission. You can track the progress over {0}."
msgstr ""
-#: integrations/doctype/dropbox_settings/dropbox_settings.py:64
-#: integrations/doctype/google_drive/google_drive.py:156
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:81
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:65
+#: frappe/integrations/doctype/google_drive/google_drive.py:153
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:86
msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr "Xếp hàng đợi để sao lưu. Nó có thể mất một vài phút đến một giờ."
+msgstr ""
-#: desk/page/backups/backups.py:96
+#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
-msgstr "Đã xếp hàng để sao lưu. Bạn sẽ nhận được một email với liên kết tải xuống"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:95
+#: frappe/email/doctype/newsletter/newsletter.js:95
msgid "Queued {0} emails"
msgstr ""
-#: email/doctype/newsletter/newsletter.js:90
+#. Label of the queues (Data) field in DocType 'System Health Report Workers'
+#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
+msgid "Queues"
+msgstr ""
+
+#: frappe/email/doctype/newsletter/newsletter.js:90
msgid "Queuing emails..."
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the quick_entry (Check) field in DocType 'DocType'
+#. Label of the quick_entry (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Quick Entry"
-msgstr "Bút toán nhanh"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Quick Entry"
-msgstr "Bút toán nhanh"
+#: frappe/core/page/permission_manager/permission_manager_help.html:3
+msgid "Quick Help for Setting Permissions"
+msgstr ""
-#. Label of a Code field in DocType 'Workspace Quick List'
-#: desk/doctype/workspace_quick_list/workspace_quick_list.json
-msgctxt "Workspace Quick List"
+#. Label of the quick_list_filter (Code) field in DocType 'Workspace Quick
+#. List'
+#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
msgid "Quick List Filter"
msgstr ""
-#. Label of a Tab Break field in DocType 'Workspace'
-#. Label of a Table field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the quick_lists_tab (Tab Break) field in DocType 'Workspace'
+#. Label of the quick_lists (Table) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Quick Lists"
msgstr ""
-#: public/js/frappe/views/reports/report_utils.js:280
+#: frappe/public/js/frappe/views/reports/report_utils.js:304
msgid "Quoting must be between 0 and 3"
msgstr ""
-#. Label of a Section Break field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the raw_information_log_section (Section Break) field in DocType
+#. 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "RAW Information Log"
-msgstr "Nhật ký thông tin RAW"
+msgstr ""
#. Name of a DocType
-#: core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "RQ Job"
msgstr ""
#. Name of a DocType
-#: core/doctype/rq_worker/rq_worker.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "RQ Worker"
msgstr ""
-#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Random"
-msgstr ""
-
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Random"
msgstr ""
-#: website/report/website_analytics/website_analytics.js:20
+#: frappe/website/report/website_analytics/website_analytics.js:20
msgid "Range"
-msgstr "Tầm"
+msgstr ""
-#. Label of a Section Break field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the rate_limiting_section (Section Break) field in DocType 'Server
+#. Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Rate Limiting"
msgstr ""
-#. Label of a Section Break field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the section_break_12 (Section Break) field in DocType 'Blog
+#. Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Rate Limits"
msgstr ""
-#. Label of a Int field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Rating"
-msgstr "Đánh giá"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Rating"
-msgstr "Đánh giá"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Rating"
-msgstr "Đánh giá"
+#. Label of the rate_limit_email_link_login (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Rate limit for email link login"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Rating"
-msgstr "Đánh giá"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Rating"
-msgstr "Đánh giá"
+msgstr ""
-#: printing/doctype/print_format/print_format.py:89
+#. Label of the raw_commands (Code) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:89
msgid "Raw Commands"
-msgstr "Lệnh thô"
+msgstr ""
-#. Label of a Code field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Raw Commands"
-msgstr "Lệnh thô"
-
-#. Label of a Code field in DocType 'Unhandled Email'
-#: email/doctype/unhandled_email/unhandled_email.json
-msgctxt "Unhandled Email"
+#. Label of the raw (Code) field in DocType 'Unhandled Email'
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Raw Email"
-msgstr "Email thô"
+msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the raw_printing (Check) field in DocType 'Print Format'
+#. Label of the raw_printing_section (Section Break) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Raw Printing"
-msgstr "In thô"
+msgstr ""
-#. Label of a Section Break field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Raw Printing"
-msgstr "In thô"
-
-#: printing/page/print/print.js:165
+#: frappe/printing/page/print/print.js:165
msgid "Raw Printing Setting"
msgstr ""
-#: desk/doctype/console_log/console_log.js:6
+#: frappe/public/js/frappe/form/templates/print_layout.html:37
+msgid "Raw Printing Settings"
+msgstr ""
+
+#: frappe/desk/doctype/console_log/console_log.js:6
msgid "Re-Run in Console"
msgstr ""
-#: email/doctype/email_account/email_account.py:630
+#: frappe/email/doctype/email_account/email_account.py:728
msgid "Re:"
msgstr ""
-#: core/doctype/communication/communication.js:268
-#: public/js/frappe/form/footer/form_timeline.js:564
-#: public/js/frappe/views/communication.js:257
+#: frappe/core/doctype/communication/communication.js:268
+#: frappe/public/js/frappe/form/footer/form_timeline.js:600
+#: frappe/public/js/frappe/views/communication.js:364
msgid "Re: {0}"
-msgstr "Lại: {0}"
-
-#: client.py:459
-msgid "Read"
-msgstr "Đọc"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Read"
-msgstr "Đọc"
-
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Read"
-msgstr "Đọc"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Read"
-msgstr "Đọc"
-
-#. Label of a Check field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "Read"
-msgstr "Đọc"
-
+#. Label of the read (Check) field in DocType 'Custom DocPerm'
+#. Label of the read (Check) field in DocType 'DocPerm'
+#. Label of the read (Check) field in DocType 'DocShare'
+#. Label of the read (Check) field in DocType 'User Document Type'
+#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
+#: frappe/client.py:450 frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
msgid "Read"
-msgstr "Đọc"
-
-#. Label of a Check field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "Read"
-msgstr "Đọc"
-
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Read"
-msgstr "Đọc"
-
-#: public/js/form_builder/form_builder.bundle.js:83
-msgid "Read Only"
-msgstr "Chỉ đọc"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Read Only"
-msgstr "Chỉ đọc"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Read Only"
-msgstr "Chỉ đọc"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the read_only (Check) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Label of the read_only (Check) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the read_only (Check) field in DocType 'Customize Form Field'
+#. Label of the read_only (Check) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/public/js/form_builder/form_builder.bundle.js:83
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Read Only"
-msgstr "Chỉ đọc"
+msgstr ""
-#. Label of a Check field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Read Only"
-msgstr "Chỉ đọc"
-
-#. Label of a Code field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the read_only_depends_on (Code) field in DocType 'Custom Field'
+#. Label of the read_only_depends_on (Code) field in DocType 'Customize Form
+#. Field'
+#. Label of the read_only_depends_on (Code) field in DocType 'Web Form Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Read Only Depends On"
-msgstr "Chỉ đọc phụ thuộc vào"
+msgstr ""
-#. Label of a Code field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Read Only Depends On"
-msgstr "Chỉ đọc phụ thuộc vào"
-
-#. Label of a Code field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Read Only Depends On"
-msgstr "Chỉ đọc phụ thuộc vào"
-
-#. Label of a Code field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the read_only_depends_on (Code) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Read Only Depends On (JS)"
msgstr ""
-#: templates/includes/navbar/navbar_items.html:97
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:16
+#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr ""
-#. Label of a Int field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the read_time (Int) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Read Time"
-msgstr "Thơi gian đọc"
+msgstr ""
-#. Label of a Check field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the read_by_recipient (Check) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Read by Recipient"
-msgstr "Đọc bởi người nhận"
+msgstr ""
-#. Label of a Datetime field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the read_by_recipient_on (Datetime) field in DocType
+#. 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Read by Recipient On"
-msgstr "Đọc bởi người nhận trên"
+msgstr ""
-#: desk/doctype/note/note.js:10
+#: frappe/desk/doctype/note/note.js:10
msgid "Read mode"
msgstr ""
-#: utils/safe_exec.py:91
+#: frappe/utils/safe_exec.py:95
msgid "Read the documentation to know more"
msgstr ""
-#. Label of a Markdown Editor field in DocType 'Package'
-#: core/doctype/package/package.json
-msgctxt "Package"
+#. Label of the readme (Markdown Editor) field in DocType 'Package'
+#: frappe/core/doctype/package/package.json
msgid "Readme"
msgstr ""
-#: public/js/frappe/form/sidebar/review.js:85
-#: social/doctype/energy_point_log/energy_point_log.js:20
-msgid "Reason"
-msgstr "Nguyên nhân"
+#. 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 a Text field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
+#. Label of the reason (Long Text) field in DocType 'Unhandled Email'
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Reason"
-msgstr "Nguyên nhân"
+msgstr ""
-#. Label of a Long Text field in DocType 'Unhandled Email'
-#: email/doctype/unhandled_email/unhandled_email.json
-msgctxt "Unhandled Email"
-msgid "Reason"
-msgstr "Nguyên nhân"
-
-#: public/js/frappe/views/reports/query_report.js:815
+#: frappe/public/js/frappe/views/reports/query_report.js:889
msgid "Rebuild"
-msgstr "Tái tạo"
+msgstr ""
-#: public/js/frappe/views/treeview.js:492
+#: frappe/public/js/frappe/views/treeview.js:509
msgid "Rebuild Tree"
msgstr ""
-#: utils/nestedset.py:180
+#: frappe/utils/nestedset.py:177
msgid "Rebuilding of tree is not supported for {}"
msgstr ""
-#. Description of the 'Anonymous' (Check) field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Receive anonymous response"
+#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Received"
msgstr ""
-#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Received"
-msgstr "Nhận được"
-
-#: integrations/doctype/token_cache/token_cache.py:49
+#: frappe/integrations/doctype/token_cache/token_cache.py:49
msgid "Received an invalid token type."
msgstr ""
-#. Label of a Select field in DocType 'Notification Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
+#. Label of the receiver_by_document_field (Select) field in DocType
+#. 'Notification Recipient'
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Receiver By Document Field"
-msgstr "Người nhận theo trường tài liệu"
+msgstr ""
-#. Label of a Link field in DocType 'Notification Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
+#. Label of the receiver_by_role (Link) field in DocType 'Notification
+#. Recipient'
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Receiver By Role"
-msgstr "Người nhận theo vai trò"
+msgstr ""
-#. Label of a Data field in DocType 'SMS Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#. Label of the receiver_parameter (Data) field in DocType 'SMS Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Receiver Parameter"
-msgstr "thông số người nhận"
+msgstr ""
-#: utils/password_strength.py:125
+#: frappe/utils/password_strength.py:123
msgid "Recent years are easy to guess."
-msgstr "Những năm gần đây rất dễ đoán."
+msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:516
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532
msgid "Recents"
msgstr ""
-#. Label of a Table field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#. Label of the recipients (Table) field in DocType 'Email Queue'
+#. Label of the recipient (Data) field in DocType 'Email Queue Recipient'
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
msgid "Recipient"
-msgstr "Người nhận"
-
-#. Label of a Data field in DocType 'Email Queue Recipient'
-#: email/doctype/email_queue_recipient/email_queue_recipient.json
-msgctxt "Email Queue Recipient"
-msgid "Recipient"
-msgstr "Người nhận"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Recipient Unsubscribed"
-msgstr "người nhận hủy đăng ký"
+msgstr ""
-#. Label of a Small Text field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the recipients (Small Text) field in DocType 'Auto Repeat'
+#. Label of the column_break_5 (Section Break) field in DocType 'Notification'
+#. Label of the recipients (Table) field in DocType 'Notification'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/email/doctype/notification/notification.json
msgid "Recipients"
-msgstr "Những Người nhận"
-
-#. Label of a Section Break field in DocType 'Notification'
-#. Label of a Table field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Recipients"
-msgstr "Những Người nhận"
+msgstr ""
#. Name of a DocType
-#: core/doctype/recorder/recorder.json
+#: frappe/core/doctype/recorder/recorder.json
msgid "Recorder"
-msgstr "Máy ghi âm"
+msgstr ""
#. Name of a DocType
-#: core/doctype/recorder_query/recorder_query.json
+#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Recorder Query"
msgstr ""
+#. Name of a DocType
+#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
+msgid "Recorder Suggested Index"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_help.html:2
+msgid "Records for following doctypes will be filtered"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1608
+msgid "Recursive Fetch From"
+msgstr ""
+
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Red"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Red"
msgstr ""
-#. Label of a Select field in DocType 'Website Route Redirect'
-#: website/doctype/website_route_redirect/website_route_redirect.json
-msgctxt "Website Route Redirect"
+#. Label of the redirect_http_status (Select) field in DocType 'Website Route
+#. Redirect'
+#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
msgid "Redirect HTTP Status"
msgstr ""
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the redirect_uri (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Redirect URI"
msgstr ""
-#. Label of a Data field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. Label of the redirect_uri_bound_to_authorization_code (Data) field in
+#. DocType 'OAuth Authorization Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Redirect URI Bound To Auth Code"
-msgstr "Chuyển hướng URI hạn chế tới mã AUth"
+msgstr ""
-#. Label of a Text field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the redirect_uris (Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Redirect URIs"
-msgstr "Chuyển các URI"
+msgstr ""
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the redirect_url (Small Text) field in DocType 'User'
+#. Label of the redirect_url (Data) field in DocType 'Social Login Key'
+#: frappe/core/doctype/user/user.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Redirect URL"
-msgstr "CHuyển hướng URL"
+msgstr ""
-#. Label of a Small Text field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Redirect URL"
-msgstr "CHuyển hướng URL"
+#. Description of the 'Default App' (Select) field in DocType 'System Settings'
+#. Description of the 'Default App' (Select) field in DocType 'User'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+msgid "Redirect to the selected app after login"
+msgstr ""
#. Description of the 'Welcome URL' (Data) field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#: frappe/email/doctype/email_group/email_group.json
msgid "Redirect to this URL after successful confirmation."
msgstr ""
-#. Label of a Tab Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Redirects"
msgstr ""
-#: sessions.py:148
+#: frappe/sessions.py:149
msgid "Redis cache server not running. Please contact Administrator / Tech support"
-msgstr "Máy chủ cache Redis không chạy. Vui lòng liên hệ Quản trị viên / Hỗ trợ kỹ thuật"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:462
+#: frappe/public/js/frappe/form/toolbar.js:527
msgid "Redo"
msgstr ""
-#: public/js/frappe/form/form.js:164 public/js/frappe/form/toolbar.js:470
+#: frappe/public/js/frappe/form/form.js:164
+#: frappe/public/js/frappe/form/toolbar.js:535
msgid "Redo last action"
msgstr ""
-#. Label of a Link field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#. Label of the ref_doctype (Link) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
msgid "Ref DocType"
-msgstr "Loại văn bản tham khảo"
+msgstr ""
-#: desk/doctype/form_tour/form_tour.js:38
+#: frappe/desk/doctype/form_tour/form_tour.js:38
msgid "Referance Doctype and Dashboard Name both can't be used at the same time."
msgstr ""
-#: core/doctype/user_type/user_type_dashboard.py:5 desk/report/todo/todo.py:42
-#: public/js/frappe/views/interaction.js:54
+#. Label of the linked_with (Section Break) field in DocType 'Address'
+#. Label of the contact_details (Section Break) field in DocType 'Contact'
+#. Label of the reference_section (Section Break) field in DocType 'Activity
+#. Log'
+#. Label of the reference_section (Section Break) field in DocType
+#. 'Communication'
+#. Label of the reference (Dynamic Link) field in DocType 'Permission Log'
+#. Label of the section_break_6 (Section Break) field in DocType 'ToDo'
+#. Label of the reference_section (Section Break) field in DocType 'Integration
+#. Request'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/core/doctype/user_type/user_type_dashboard.py:5
+#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:42
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/public/js/frappe/views/interaction.js:54
msgid "Reference"
-msgstr "Tham chiếu"
+msgstr ""
-#. Label of a Section Break field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Reference"
-msgstr "Tham chiếu"
-
-#. Label of a Section Break field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Reference"
-msgstr "Tham chiếu"
-
-#. Label of a Section Break field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Reference"
-msgstr "Tham chiếu"
-
-#. Label of a Section Break field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Reference"
-msgstr "Tham chiếu"
-
-#. Label of a Section Break field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Reference"
-msgstr "Tham chiếu"
-
-#. Label of a Section Break field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Reference"
-msgstr "Tham chiếu"
-
-#. Label of a Select field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the date_changed (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Reference Date"
-msgstr "Kỳ hạn tham chiếu"
+msgstr ""
-#. Label of a Data field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#. Label of the datetime_changed (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Reference Datetime"
+msgstr ""
+
+#. Label of the reference_name (Data) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Reference DocName"
-msgstr "Tài liệu tham khảo"
+msgstr ""
-#. Label of a Link field in DocType 'Error Log'
-#: core/doctype/error_log/error_log.json
-msgctxt "Error Log"
+#. Label of the reference_doctype (Link) field in DocType 'Error Log'
+#. Label of the ref_doctype (Link) field in DocType 'Submission Queue'
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Reference DocType"
-msgstr "Tham khảo DocType"
+msgstr ""
-#. Label of a Link field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
-msgid "Reference DocType"
-msgstr "Tham khảo DocType"
-
-#: email/doctype/email_unsubscribe/email_unsubscribe.py:25
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26
msgid "Reference DocType and Reference Name are required"
-msgstr "Tài liệu tham khảo và DocType Tên tài liệu tham khảo được yêu cầu"
+msgstr ""
-#. Label of a Dynamic Link field in DocType 'Discussion Topic'
-#: website/doctype/discussion_topic/discussion_topic.json
-msgctxt "Discussion Topic"
+#. Label of the ref_docname (Dynamic Link) field in DocType 'Submission Queue'
+#. Label of the reference_docname (Dynamic Link) field in DocType 'Discussion
+#. Topic'
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
msgid "Reference Docname"
-msgstr "Tài liệu tham khảo"
+msgstr ""
-#. Label of a Dynamic Link field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
-msgid "Reference Docname"
-msgstr "Tài liệu tham khảo"
-
-#: core/doctype/communication/communication.js:143
-#: core/report/transaction_log_report/transaction_log_report.py:88
+#. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log'
+#. Label of the reference_doctype (Link) field in DocType 'Discussion Topic'
+#: frappe/core/doctype/communication/communication.js:143
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:88
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/public/js/frappe/views/render_preview.js:34
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
msgid "Reference Doctype"
-msgstr "Tài liệu tham khảo DocType"
+msgstr ""
-#. Label of a Link field in DocType 'Discussion Topic'
-#: website/doctype/discussion_topic/discussion_topic.json
-msgctxt "Discussion Topic"
-msgid "Reference Doctype"
-msgstr "Tài liệu tham khảo DocType"
-
-#. Label of a Data field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the reference_document (Dynamic Link) field in DocType 'Auto
+#. Repeat'
+#. Label of the reference_document (Data) field in DocType 'Access Log'
+#. Label of the reference_doctype (Link) field in DocType 'Form Tour'
+#. Label of the reference_document (Link) field in DocType 'Onboarding Step'
+#. Label of the reference_document (Data) field in DocType 'Webhook Request
+#. Log'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:4
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Reference Document"
-msgstr "Tài liệu tham khảo"
+msgstr ""
-#. Label of a Dynamic Link field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Reference Document"
-msgstr "Tài liệu tham khảo"
-
-#. Label of a Link field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Reference Document"
-msgstr "Tài liệu tham khảo"
-
-#. Label of a Link field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Reference Document"
-msgstr "Tài liệu tham khảo"
-
-#. Label of a Data field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "Reference Document"
-msgstr "Tài liệu tham khảo"
-
-#. Label of a Dynamic Link field in DocType 'Document Share Key'
-#: core/doctype/document_share_key/document_share_key.json
-msgctxt "Document Share Key"
+#. Label of the reference_docname (Dynamic Link) field in DocType 'Document
+#. Share Key'
+#. Label of the reference_docname (Dynamic Link) field in DocType 'Integration
+#. Request'
+#: frappe/core/doctype/document_share_key/document_share_key.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Reference Document Name"
msgstr ""
-#. Label of a Dynamic Link field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Reference Document Name"
+#. Label of the reference_doctype (Link) field in DocType 'Auto Repeat'
+#. Label of the reference_doctype (Link) field in DocType 'Activity Log'
+#. Label of the reference_doctype (Link) field in DocType 'Comment'
+#. Label of the reference_doctype (Link) field in DocType 'Communication'
+#. Label of the parent (Data) field in DocType 'Custom DocPerm'
+#. Label of the ref_doctype (Data) field in DocType 'Custom Role'
+#. Label of the reference_doctype (Link) field in DocType 'Document Share Key'
+#. Label of the reference_doctype (Link) field in DocType 'Server Script'
+#. Label of the ref_doctype (Link) field in DocType 'Success Action'
+#. Label of the reference_doctype (Data) field in DocType 'Transaction Log'
+#. Label of the reference_doctype (Link) field in DocType 'View Log'
+#. Label of the reference_doctype (Link) field in DocType 'Calendar View'
+#. Label of the reference_doctype (Link) field in DocType 'Event Participants'
+#. Label of the reference_doctype (Link) field in DocType 'Kanban Board'
+#. Label of the reference_doctype (Link) field in DocType 'List Filter'
+#. Label of the reference_doctype (Link) field in DocType 'Email Queue'
+#. Label of the reference_doctype (Link) field in DocType 'Email Unsubscribe'
+#. Label of the reference_doctype (Link) field in DocType 'Integration Request'
+#. Label of the reference_doctype (Link) field in DocType 'Portal Menu Item'
+#. Label of the reference_doctype (Link) field in DocType 'Workflow Action'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/custom_role/custom_role.json
+#: frappe/core/doctype/document_share_key/document_share_key.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/doctype/success_action/success_action.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/core/doctype/view_log/view_log.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+msgid "Reference Document Type"
msgstr ""
-#. Label of a Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Reference Document Type"
-msgstr "Tài liệu tham chiếu Type"
-
-#. Label of a Link field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Reference Document Type"
-msgstr "Tài liệu tham chiếu Type"
-
-#. Label of a Link field in DocType 'Calendar View'
-#: desk/doctype/calendar_view/calendar_view.json
-msgctxt "Calendar View"
-msgid "Reference Document Type"
-msgstr "Tài liệu tham chiếu Type"
-
-#. Label of a Link field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Reference Document Type"
-msgstr "Tài liệu tham chiếu Type"
-
-#. Label of a Link field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Reference Document Type"
-msgstr "Tài liệu tham chiếu Type"
-
-#. Label of a Data field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Reference Document Type"
-msgstr "Tài liệu tham chiếu Type"
-
-#. Label of a Data field in DocType 'Custom Role'
-#: core/doctype/custom_role/custom_role.json
-msgctxt "Custom Role"
-msgid "Reference Document Type"
-msgstr "Tài liệu tham chiếu Type"
-
-#. Label of a Link field in DocType 'Document Share Key'
-#: core/doctype/document_share_key/document_share_key.json
-msgctxt "Document Share Key"
-msgid "Reference Document Type"
-msgstr "Tài liệu tham chiếu Type"
-
-#. Label of a Link field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Reference Document Type"
-msgstr "Tài liệu tham chiếu Type"
-
-#. Label of a Link field in DocType 'Email Unsubscribe'
-#: email/doctype/email_unsubscribe/email_unsubscribe.json
-msgctxt "Email Unsubscribe"
-msgid "Reference Document Type"
-msgstr "Tài liệu tham chiếu Type"
-
-#. Label of a Link field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Reference Document Type"
-msgstr "Tài liệu tham chiếu Type"
-
-#. Label of a Link field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Reference Document Type"
-msgstr "Tài liệu tham chiếu Type"
-
-#. Label of a Link field in DocType 'Event Participants'
-#: desk/doctype/event_participants/event_participants.json
-msgctxt "Event Participants"
-msgid "Reference Document Type"
-msgstr "Tài liệu tham chiếu Type"
-
-#. Label of a Link field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Reference Document Type"
-msgstr "Tài liệu tham chiếu Type"
-
-#. Label of a Link field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Reference Document Type"
-msgstr "Tài liệu tham chiếu Type"
-
-#. Label of a Link field in DocType 'List Filter'
-#: desk/doctype/list_filter/list_filter.json
-msgctxt "List Filter"
-msgid "Reference Document Type"
-msgstr "Tài liệu tham chiếu Type"
-
-#. Label of a Link field in DocType 'Portal Menu Item'
-#: website/doctype/portal_menu_item/portal_menu_item.json
-msgctxt "Portal Menu Item"
-msgid "Reference Document Type"
-msgstr "Tài liệu tham chiếu Type"
-
-#. Label of a Link field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Reference Document Type"
-msgstr "Tài liệu tham chiếu Type"
-
-#. Label of a Link field in DocType 'Success Action'
-#: core/doctype/success_action/success_action.json
-msgctxt "Success Action"
-msgid "Reference Document Type"
-msgstr "Tài liệu tham chiếu Type"
-
-#. Label of a Data field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Reference Document Type"
-msgstr "Tài liệu tham chiếu Type"
-
-#. Label of a Link field in DocType 'View Log'
-#: core/doctype/view_log/view_log.json
-msgctxt "View Log"
-msgid "Reference Document Type"
-msgstr "Tài liệu tham chiếu Type"
-
-#. Label of a Link field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
-msgid "Reference Document Type"
-msgstr "Tài liệu tham chiếu Type"
-
-#: core/doctype/communication/communication.js:152
-#: core/report/transaction_log_report/transaction_log_report.py:94
+#. Label of the reference_name (Dynamic Link) field in DocType 'Activity Log'
+#. Label of the reference_name (Dynamic Link) field in DocType 'Comment'
+#. Label of the reference_name (Dynamic Link) field in DocType 'Communication'
+#. Label of the docname (Data) field in DocType 'Data Import Log'
+#. Label of the reference_name (Data) field in DocType 'Error Log'
+#. Label of the reference_docname (Dynamic Link) field in DocType 'Event
+#. Participants'
+#. Label of the reference_name (Dynamic Link) field in DocType 'ToDo'
+#. Label of the reference_name (Dynamic Link) field in DocType 'Email
+#. Unsubscribe'
+#. Label of the reference_name (Dynamic Link) field in DocType 'Workflow
+#. Action'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/communication/communication.js:152
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/data_import_log/data_import_log.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:94
+#: frappe/desk/doctype/event_participants/event_participants.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Reference Name"
-msgstr "Tên tham chiếu"
+msgstr ""
-#. Label of a Dynamic Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Reference Name"
-msgstr "Tên tham chiếu"
-
-#. Label of a Dynamic Link field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Reference Name"
-msgstr "Tên tham chiếu"
-
-#. Label of a Dynamic Link field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Reference Name"
-msgstr "Tên tham chiếu"
-
-#. Label of a Data field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
-msgid "Reference Name"
-msgstr "Tên tham chiếu"
-
-#. Label of a Dynamic Link field in DocType 'Email Unsubscribe'
-#: email/doctype/email_unsubscribe/email_unsubscribe.json
-msgctxt "Email Unsubscribe"
-msgid "Reference Name"
-msgstr "Tên tham chiếu"
-
-#. Label of a Data field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Reference Name"
-msgstr "Tên tham chiếu"
-
-#. Label of a Data field in DocType 'Error Log'
-#: core/doctype/error_log/error_log.json
-msgctxt "Error Log"
-msgid "Reference Name"
-msgstr "Tên tham chiếu"
-
-#. Label of a Dynamic Link field in DocType 'Event Participants'
-#: desk/doctype/event_participants/event_participants.json
-msgctxt "Event Participants"
-msgid "Reference Name"
-msgstr "Tên tham chiếu"
-
-#. Label of a Dynamic Link field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Reference Name"
-msgstr "Tên tham chiếu"
-
-#. Label of a Dynamic Link field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
-msgid "Reference Name"
-msgstr "Tên tham chiếu"
-
-#. Label of a Read Only field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. 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 "Chủ đầu tư tham khảo"
+msgstr ""
-#. Label of a Data field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Reference Owner"
-msgstr "Chủ đầu tư tham khảo"
-
-#. Label of a Read Only field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Reference Owner"
-msgstr "Chủ đầu tư tham khảo"
-
-#. Label of a Data field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the reference_report (Data) field in DocType 'Report'
+#. Label of the reference_report (Link) field in DocType 'Onboarding Step'
+#. Label of the reference_report (Data) field in DocType 'Auto Email Report'
+#: frappe/core/doctype/report/report.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Reference Report"
-msgstr "Báo cáo tham khảo"
+msgstr ""
-#. Label of a Link field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Reference Report"
-msgstr "Báo cáo tham khảo"
-
-#. Label of a Data field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Reference Report"
-msgstr "Báo cáo tham khảo"
-
-#. Label of a Link field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#. Label of the reference_type (Link) field in DocType 'Permission Log'
+#. Label of the reference_type (Link) field in DocType 'ToDo'
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/desk/doctype/todo/todo.json
msgid "Reference Type"
-msgstr "Loại tài liệu tham khảo"
+msgstr ""
-#: social/doctype/energy_point_rule/energy_point_rule.py:144
-msgid "Reference document has been cancelled"
-msgstr "Tài liệu tham khảo đã bị hủy"
-
-#. Label of a Dynamic Link field in DocType 'View Log'
-#: core/doctype/view_log/view_log.json
-msgctxt "View Log"
+#. Label of the reference_name (Dynamic Link) field in DocType 'View Log'
+#: frappe/core/doctype/view_log/view_log.json
msgid "Reference name"
-msgstr "Tên tài liệu tham khảo"
+msgstr ""
-#: templates/emails/auto_reply.html:3
+#: frappe/templates/emails/auto_reply.html:3
msgid "Reference: {0} {1}"
-msgstr "Tham khảo: {0} {1}"
+msgstr ""
-#: website/report/website_analytics/website_analytics.js:37
+#. Label of the referrer (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:37
msgid "Referrer"
-msgstr "Người giới thiệu"
+msgstr ""
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Referrer"
-msgstr "Người giới thiệu"
-
-#: printing/page/print/print.js:73 public/js/frappe/desk.js:133
-#: public/js/frappe/form/form.js:1174 public/js/frappe/list/base_list.js:65
-#: public/js/frappe/views/reports/query_report.js:1612
-#: public/js/frappe/views/treeview.js:479
-#: public/js/frappe/widgets/chart_widget.js:290
-#: public/js/frappe/widgets/number_card_widget.js:307
+#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
+#: frappe/public/js/frappe/desk.js:548
+#: 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:1717
+#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/widgets/chart_widget.js:291
+#: frappe/public/js/frappe/widgets/number_card_widget.js:340
+#: frappe/public/js/print_format_builder/Preview.vue:24
msgid "Refresh"
-msgstr "Làm mới"
+msgstr ""
-#: core/page/dashboard_view/dashboard_view.js:177
+#: frappe/core/page/dashboard_view/dashboard_view.js:177
msgid "Refresh All"
-msgstr "Làm mới tất cả"
+msgstr ""
-#. Label of a Button field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the refresh_google_sheet (Button) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Refresh Google Sheet"
-msgstr "Làm mới Google Trang tính"
+msgstr ""
-#. Label of a Password field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Label of the refresh_token (Password) field in DocType 'Google Calendar'
+#. Label of the refresh_token (Password) field in DocType 'Google Contacts'
+#. Label of the refresh_token (Data) field in DocType 'Google Drive'
+#. 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/google_drive/google_drive.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
-msgstr "Thông báo làm mới"
+msgstr ""
-#. Label of a Password field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
-msgid "Refresh Token"
-msgstr "Thông báo làm mới"
+#: frappe/public/js/frappe/list/list_view.js:531
+msgctxt "Document count in list view"
+msgid "Refreshing"
+msgstr ""
-#. Label of a Data field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Refresh Token"
-msgstr "Thông báo làm mới"
-
-#. Label of a Data field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
-msgid "Refresh Token"
-msgstr "Thông báo làm mới"
-
-#. Label of a Password field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "Refresh Token"
-msgstr "Thông báo làm mới"
-
-#: core/doctype/system_settings/system_settings.js:52
-#: core/doctype/user/user.js:345 desk/page/setup_wizard/setup_wizard.js:204
+#: frappe/core/doctype/system_settings/system_settings.js:57
+#: frappe/core/doctype/user/user.js:368
+#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
-msgstr "Làm mới ..."
+msgstr ""
-#: core/doctype/user/user.py:979
+#: frappe/core/doctype/user/user.py:1023
msgid "Registered but disabled"
-msgstr "Đăng ký nhưng bị loại"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Rejected"
-msgstr "Bị từ chối"
-
#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/translation/translation.json
msgid "Rejected"
-msgstr "Bị từ chối"
+msgstr ""
+
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:30
+msgid "Relay Server URL missing"
+msgstr ""
+
+#. Label of the section_break_qgjr (Section Break) field in DocType 'Push
+#. Notification Settings'
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "Relay Settings"
+msgstr ""
#. Group in Package's connections
-#: core/doctype/package/package.json
-msgctxt "Package"
+#: frappe/core/doctype/package/package.json
msgid "Release"
msgstr ""
-#. Label of a Markdown Editor field in DocType 'Package Release'
-#: core/doctype/package_release/package_release.json
-msgctxt "Package Release"
+#. Label of the release_notes (Markdown Editor) field in DocType 'Package
+#. Release'
+#: frappe/core/doctype/package_release/package_release.json
msgid "Release Notes"
msgstr ""
-#: core/doctype/communication/communication.js:48
-#: core/doctype/communication/communication.js:159
+#: frappe/core/doctype/communication/communication.js:48
+#: frappe/core/doctype/communication/communication.js:159
msgid "Relink"
-msgstr "relink"
+msgstr ""
-#: core/doctype/communication/communication.js:138
+#: frappe/core/doctype/communication/communication.js:138
msgid "Relink Communication"
-msgstr "Truyền thông relink"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Relinked"
-msgstr "liên kết lại"
-
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Relinked"
-msgstr "liên kết lại"
+msgstr ""
#. Label of a standard navbar item
#. Type: Action
-#: custom/doctype/customize_form/customize_form.js:120 hooks.py
-#: public/js/frappe/form/toolbar.js:408
+#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
+#: frappe/public/js/frappe/form/toolbar.js:444
msgid "Reload"
-msgstr "Nạp lại"
+msgstr ""
-#: public/js/frappe/list/base_list.js:239
+#: frappe/public/js/frappe/form/controls/attach.js:16
+msgid "Reload File"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:249
msgid "Reload List"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:99
+#: frappe/public/js/frappe/views/reports/query_report.js:100
msgid "Reload Report"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the remember_last_selected_value (Check) field in DocType
+#. 'DocField'
+#. Label of the remember_last_selected_value (Check) field in DocType
+#. 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Remember Last Selected Value"
-msgstr "Ghi giá trị được lựa chọn cuối"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Remember Last Selected Value"
-msgstr "Ghi giá trị được lựa chọn cuối"
-
-#: public/js/frappe/form/reminders.js:33
+#. Label of the remind_at (Datetime) field in DocType 'Reminder'
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/public/js/frappe/form/reminders.js:33
msgid "Remind At"
msgstr ""
-#. Label of a Datetime field in DocType 'Reminder'
-#: automation/doctype/reminder/reminder.json
-msgctxt "Reminder"
-msgid "Remind At"
-msgstr ""
-
-#: public/js/frappe/form/toolbar.js:436
+#: frappe/public/js/frappe/form/toolbar.js:476
msgid "Remind Me"
msgstr ""
-#: public/js/frappe/form/reminders.js:13
+#: frappe/public/js/frappe/form/reminders.js:13
msgid "Remind Me In"
msgstr ""
#. Name of a DocType
-#: automation/doctype/reminder/reminder.json
+#: frappe/automation/doctype/reminder/reminder.json
msgid "Reminder"
msgstr ""
-#: automation/doctype/reminder/reminder.py:38
+#: frappe/automation/doctype/reminder/reminder.py:39
msgid "Reminder cannot be created in past."
msgstr ""
-#: public/js/frappe/form/reminders.js:96
+#: frappe/public/js/frappe/form/reminders.js:96
msgid "Reminder set at {0}"
msgstr ""
-#: core/doctype/rq_job/rq_job_list.js:8
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:14
+#: frappe/public/js/frappe/ui/filters/edit_filter.html:4
+#: frappe/public/js/frappe/ui/group_by/group_by.html:4
+msgid "Remove"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job_list.js:8
msgid "Remove Failed Jobs"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:488
+#: frappe/printing/page/print_format_builder/print_format_builder.js:493
msgid "Remove Field"
-msgstr "Di Dòng"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:427
msgid "Remove Section"
-msgstr "Xóa đoạn"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:138
+#: frappe/custom/doctype/customize_form/customize_form.js:138
msgid "Remove all customizations?"
-msgstr "Loại bỏ tất cả các tùy chỉnh?"
+msgstr ""
-#: public/js/frappe/utils/datatable.js:9
+#: frappe/public/js/form_builder/components/Section.vue:286
+msgid "Remove all fields in the column"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:278
+#: frappe/public/js/frappe/utils/datatable.js:9
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:120
msgid "Remove column"
msgstr ""
-#: core/doctype/file/file.py:155
-msgid "Removed {0}"
-msgstr "Đã Loại bỏ {0}"
+#: frappe/public/js/form_builder/components/Field.vue:260
+msgid "Remove field"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:133
-#: public/js/frappe/form/toolbar.js:234 public/js/frappe/form/toolbar.js:238
-#: public/js/frappe/form/toolbar.js:398 public/js/frappe/model/model.js:737
-#: public/js/frappe/views/treeview.js:295
+#: frappe/public/js/form_builder/components/Section.vue:279
+msgid "Remove last column"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:130
+msgid "Remove page break"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:266
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:135
+msgid "Remove section"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:140
+msgid "Remove tab"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Removed"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.js:137
+#: frappe/public/js/frappe/form/toolbar.js:254
+#: frappe/public/js/frappe/form/toolbar.js:258
+#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/model/model.js:772
+#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
-msgstr "Đổi tên"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:115
-#: custom/doctype/custom_field/custom_field.js:132
+#: frappe/custom/doctype/custom_field/custom_field.js:116
+#: frappe/custom/doctype/custom_field/custom_field.js:136
msgid "Rename Fieldname"
msgstr ""
-#: public/js/frappe/model/model.js:724
+#: frappe/public/js/frappe/model/model.js:759
msgid "Rename {0}"
-msgstr "Đổi tên {0}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:688
+#: frappe/core/doctype/doctype/doctype.py:698
msgid "Renamed files and replaced code in controllers, please check!"
-msgstr "Đổi tên tập tin và mã thay thế trong bộ điều khiển, vui lòng kiểm tra!"
+msgstr ""
-#: core/doctype/communication/communication.js:43 desk/doctype/todo/todo.js:36
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:17
+msgid "Render labels to the left and values to the right in this section"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:43
+#: frappe/desk/doctype/todo/todo.js:36
msgid "Reopen"
-msgstr "Mở cửa trở lại"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:479
+#: frappe/public/js/frappe/form/toolbar.js:544
msgid "Repeat"
-msgstr "lặp lại"
+msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the repeat_header_footer (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Repeat Header and Footer"
msgstr ""
-#. Label of a Select field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the repeat_on (Select) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Repeat On"
-msgstr "Lặp lại Mở"
+msgstr ""
-#. Label of a Date field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the repeat_till (Date) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Repeat Till"
-msgstr "Đến lặp lại"
+msgstr ""
-#. Label of a Int field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the repeat_on_day (Int) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Repeat on Day"
-msgstr "Lặp lại vào ngày"
+msgstr ""
-#. Label of a Table field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the repeat_on_days (Table) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Repeat on Days"
msgstr ""
-#. Label of a Check field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the repeat_on_last_day (Check) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Repeat on Last Day of the Month"
-msgstr "Lặp lại vào ngày cuối cùng của tháng"
+msgstr ""
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the repeat_this_event (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Repeat this Event"
-msgstr "Lặp lại sự kiện này"
+msgstr ""
-#: utils/password_strength.py:112
+#: frappe/utils/password_strength.py:110
msgid "Repeats like \"aaa\" are easy to guess"
-msgstr "Lặp đi lặp lại như "aaa" rất dễ đoán"
+msgstr ""
-#: utils/password_strength.py:107
+#: frappe/utils/password_strength.py:105
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
-msgstr "Lặp đi lặp lại như "abcabcabc" chỉ hơi khó đoán hơn "abc""
+msgstr ""
-#: public/js/frappe/form/sidebar/form_sidebar.js:135
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:146
msgid "Repeats {0}"
-msgstr "Lặp lại {0}"
+msgstr ""
-#. Option for the 'Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Replied"
-msgstr "Trả lời"
+#: frappe/core/doctype/role_replication/role_replication.js:7
+#: frappe/core/doctype/role_replication/role_replication.js:14
+msgid "Replicate"
+msgstr ""
+
+#: frappe/core/doctype/role_replication/role_replication.js:8
+msgid "Replicating..."
+msgstr ""
+
+#: frappe/core/doctype/role_replication/role_replication.js:13
+msgid "Replication completed."
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Option for the 'Status' (Select) field in DocType 'Communication'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/communication/communication.json
msgid "Replied"
-msgstr "Trả lời"
+msgstr ""
-#: core/doctype/communication/communication.js:57
-#: public/js/frappe/form/footer/form_timeline.js:550
+#. Label of the reply (Text Editor) field in DocType 'Discussion Reply'
+#: frappe/core/doctype/communication/communication.js:57
+#: frappe/public/js/frappe/form/footer/form_timeline.js:563
+#: frappe/website/doctype/discussion_reply/discussion_reply.json
msgid "Reply"
-msgstr "Đáp lại"
+msgstr ""
-#. Label of a Text Editor field in DocType 'Discussion Reply'
-#: website/doctype/discussion_reply/discussion_reply.json
-msgctxt "Discussion Reply"
-msgid "Reply"
-msgstr "Đáp lại"
-
-#: core/doctype/communication/communication.js:62
+#: frappe/core/doctype/communication/communication.js:62
msgid "Reply All"
-msgstr "Trả lời tất cả"
+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
-#: core/doctype/report/report.json public/js/frappe/request.js:610
-msgid "Report"
-msgstr "Báo cáo"
-
-#. Label of a Link field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Report"
-msgstr "Báo cáo"
-
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Report"
-msgstr "Báo cáo"
-
-#. Label of a Link field in DocType 'Custom Role'
-#: core/doctype/custom_role/custom_role.json
-msgctxt "Custom Role"
-msgid "Report"
-msgstr "Báo cáo"
-
-#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Report"
-msgstr "Báo cáo"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Report"
-msgstr "Báo cáo"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Report"
-msgstr "Báo cáo"
-
-#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Report"
-msgstr "Báo cáo"
-
-#. Option for the 'Type' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Report"
-msgstr "Báo cáo"
-
-#. Label of a Link in the Build Workspace
-#. Label of a shortcut in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Report"
-msgid "Report"
-msgstr "Báo cáo"
-
#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for
#. Page and Report'
-#. Label of a Link field in DocType 'Role Permission for Page and Report'
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgctxt "Role Permission for Page and Report"
-msgid "Report"
-msgstr "Báo cáo"
-
+#. Label of the report (Link) field in DocType 'Role Permission for Page and
+#. Report'
+#. Label of a Link in the Build Workspace
+#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
+#. Option for the 'Type' (Select) field in DocType 'Number Card'
+#. Label of the background_jobs_tab (Tab Break) field in DocType 'System Health
+#. Report'
+#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
-msgid "Report"
-msgstr "Báo cáo"
-
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#. Label of the report (Link) field in DocType 'Auto Email Report'
+#: 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/public/js/frappe/request.js:615
+#: frappe/public/js/frappe/utils/utils.js:920
msgid "Report"
-msgstr "Báo cáo"
-
-#: public/js/frappe/list/list_view_select.js:66
-msgid "Report Builder"
-msgstr "Báo cáo Builder"
+msgstr ""
#. Option for the 'Report Type' (Select) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Report Builder"
-msgstr "Báo cáo Builder"
-
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/core/doctype/report/report.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/list/list_view_select.js:66
msgid "Report Builder"
-msgstr "Báo cáo Builder"
+msgstr ""
#. Name of a DocType
-#: core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_column/report_column.json
msgid "Report Column"
-msgstr "Cột Báo cáo"
+msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the report_description (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Report Description"
-msgstr "Mô tả Báo cáo"
+msgstr ""
-#: core/doctype/report/report.py:148
+#: frappe/core/doctype/report/report.py:151
msgid "Report Document Error"
-msgstr "Báo cáo lỗi tài liệu"
+msgstr ""
#. Name of a DocType
-#: core/doctype/report_filter/report_filter.json
+#: frappe/core/doctype/report_filter/report_filter.json
msgid "Report Filter"
-msgstr "Bộ lọc Báo cáo"
+msgstr ""
-#. Label of a Section Break field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the report_filters (Section Break) field in DocType 'Auto Email
+#. Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Filters"
-msgstr "Bộ lọc báo cáo"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the report_hide (Check) field in DocType 'DocField'
+#. Label of the report_hide (Check) field in DocType 'Custom Field'
+#. Label of the report_hide (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Report Hide"
-msgstr "Báo cáo Ẩn"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Report Hide"
-msgstr "Báo cáo Ẩn"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Report Hide"
-msgstr "Báo cáo Ẩn"
-
-#. Label of a Section Break field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the report_information_section (Section Break) field in DocType
+#. 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "Report Information"
-msgstr "Thông tin báo cáo"
+msgstr ""
#. Name of a role
-#: core/doctype/report/report.json
-#: email/doctype/auto_email_report/auto_email_report.json
+#: frappe/core/doctype/report/report.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Manager"
-msgstr "Quản lý Báo cáo"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1793
+#. Label of the report_name (Data) field in DocType 'Access Log'
+#. Label of the report_name (Data) field in DocType 'Prepared Report'
+#. Label of the report_name (Data) field in DocType 'Report'
+#. Label of the report_name (Link) field in DocType 'Dashboard Chart'
+#. Label of the report_name (Link) field in DocType 'Number Card'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/views/reports/query_report.js:1902
msgid "Report Name"
-msgstr "Tên báo cáo"
+msgstr ""
-#. Label of a Data field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
-msgid "Report Name"
-msgstr "Tên báo cáo"
-
-#. Label of a Link field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Report Name"
-msgstr "Tên báo cáo"
-
-#. Label of a Link field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Report Name"
-msgstr "Tên báo cáo"
-
-#. Label of a Data field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
-msgid "Report Name"
-msgstr "Tên báo cáo"
-
-#. Label of a Data field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Report Name"
-msgstr "Tên báo cáo"
-
-#: desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:69
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Link'
+#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+msgid "Report Ref DocType"
+msgstr ""
+
+#. Label of the report_reference_doctype (Data) field in DocType 'Onboarding
+#. Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Report Reference Doctype"
-msgstr "Báo cáo Tham chiếu Doctype"
+msgstr ""
-#. Label of a Read Only field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the report_type (Select) field in DocType 'Report'
+#. Label of the report_type (Data) field in DocType 'Onboarding Step'
+#. Label of the report_type (Read Only) field in DocType 'Auto Email Report'
+#: frappe/core/doctype/report/report.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Type"
-msgstr "Loại báo cáo"
+msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Report Type"
-msgstr "Loại báo cáo"
+#: frappe/public/js/frappe/list/base_list.js:203
+msgid "Report View"
+msgstr ""
-#. Label of a Select field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Report Type"
-msgstr "Loại báo cáo"
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:26
+msgid "Report bug"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1750
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "Report cannot be set for Single types"
-msgstr "Báo cáo không thể được thiết lập cho các loại đơn"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
+#: frappe/desk/doctype/number_card/number_card.js:191
msgid "Report has no data, please modify the filters or change the Report Name"
-msgstr "Báo cáo không có dữ liệu, vui lòng sửa đổi các bộ lọc hoặc thay đổi Tên báo cáo"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
+#: frappe/desk/doctype/number_card/number_card.js:186
msgid "Report has no numeric fields, please change the Report Name"
-msgstr "Báo cáo không có trường số, vui lòng thay đổi Tên Báo cáo"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:1009
msgid "Report initiated, click to view status"
msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.py:102
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Report limit reached"
msgstr ""
-#: core/doctype/prepared_report/prepared_report.py:202
+#: frappe/core/doctype/prepared_report/prepared_report.py:223
msgid "Report timed out."
msgstr ""
-#: desk/query_report.py:568
+#: frappe/desk/query_report.py:597
msgid "Report updated successfully"
-msgstr "Báo cáo cập nhật thành công"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1283
+#: frappe/public/js/frappe/views/reports/report_view.js:1351
msgid "Report was not saved (there were errors)"
-msgstr "Báo cáo không được lưu (có lỗi)"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1831
+#: frappe/public/js/frappe/views/reports/query_report.js:1940
msgid "Report with more than 10 columns looks better in Landscape mode."
-msgstr "Báo cáo với hơn 10 cột trông tốt hơn trong chế độ Phong cảnh."
+msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:235
-#: public/js/frappe/ui/toolbar/search_utils.js:236
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252
msgid "Report {0}"
-msgstr "Báo cáo {0}"
+msgstr ""
-#: desk/reportview.py:326
+#: frappe/desk/reportview.py:364
msgid "Report {0} deleted"
msgstr ""
-#: desk/query_report.py:50
+#: frappe/desk/query_report.py:53
msgid "Report {0} is disabled"
-msgstr "Báo cáo {0} bị vô hiệu hóa"
+msgstr ""
-#: desk/reportview.py:303
+#: frappe/desk/reportview.py:341
msgid "Report {0} saved"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:20
+#: frappe/public/js/frappe/views/reports/report_view.js:20
msgid "Report:"
-msgstr "Bài báo cáo:"
-
-#: public/js/frappe/ui/toolbar/search_utils.js:531
-msgid "Reports"
-msgstr "Báo cáo"
-
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Reports"
-msgstr "Báo cáo"
-
-#: patches/v14_0/update_workspace2.py:50
-msgid "Reports & Masters"
-msgstr "Báo cáo & Thạc sĩ"
-
-#: public/js/frappe/views/reports/query_report.js:851
-msgid "Reports already in Queue"
-msgstr "Các báo cáo đã có trong Hàng đợi"
-
-#: www/me.html:66
-msgid "Request Account Deletion"
msgstr ""
-#. Label of a Code field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the prepared_report_section (Section Break) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:547
+msgid "Reports"
+msgstr ""
+
+#: frappe/patches/v14_0/update_workspace2.py:50
+msgid "Reports & Masters"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:925
+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 a Code field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
+#. Label of the data (Code) field in DocType 'Integration Request'
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request Data"
-msgstr "Yêu cầu dữ liệu"
+msgstr ""
-#. Label of a Data field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
+#. Label of the request_description (Data) field in DocType 'Integration
+#. Request'
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request Description"
msgstr ""
-#. Label of a Code field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
+#. Label of the request_headers (Code) field in DocType 'Recorder'
+#. Label of the request_headers (Code) field in DocType 'Integration Request'
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request Headers"
msgstr ""
-#. Label of a Code field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "Request Headers"
-msgstr ""
-
-#. Label of a Data field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
+#. Label of the request_id (Data) field in DocType 'Integration Request'
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request ID"
msgstr ""
-#. Label of a Int field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the rate_limit_count (Int) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Request Limit"
msgstr ""
-#. Label of a Select field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the request_method (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request Method"
msgstr ""
-#. Label of a Select field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the request_structure (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request Structure"
-msgstr "Cấu trúc yêu cầu"
+msgstr ""
-#: public/js/frappe/request.js:228
+#: frappe/public/js/frappe/request.js:231
msgid "Request Timed Out"
-msgstr "Yêu cầu Timed Out"
+msgstr ""
-#: public/js/frappe/request.js:241
+#. Label of the timeout (Int) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/public/js/frappe/request.js:244
msgid "Request Timeout"
msgstr ""
-#. Label of a Int field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Request Timeout"
-msgstr ""
-
-#. Label of a Data field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the request_url (Small Text) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request URL"
-msgstr "Yêu cầu URL"
+msgstr ""
-#. Label of a Code field in DocType 'SMS Log'
-#: core/doctype/sms_log/sms_log.json
-msgctxt "SMS Log"
+#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
+#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
msgstr ""
-#. Label of a Select field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the require_trusted_certificate (Select) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Require Trusted Certificate"
-msgstr "Yêu cầu chứng chỉ tin cậy"
+msgstr ""
#. Description of the 'LDAP search path for Groups' (Data) field in DocType
#. 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Requires any valid fdn path. i.e. ou=groups,dc=example,dc=com"
msgstr ""
#. Description of the 'LDAP search path for Users' (Data) field in DocType
#. 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Requires any valid fdn path. i.e. ou=users,dc=example,dc=com"
msgstr ""
-#: core/doctype/communication/communication.js:279
+#: frappe/core/doctype/communication/communication.js:279
msgid "Res: {0}"
-msgstr "Độ phân giải: {0}"
+msgstr ""
-#: desk/doctype/form_tour/form_tour.js:101
-#: desk/doctype/global_search_settings/global_search_settings.js:19
-#: desk/doctype/module_onboarding/module_onboarding.js:17
-#: website/doctype/portal_settings/portal_settings.js:19
+#: frappe/desk/doctype/form_tour/form_tour.js:101
+#: frappe/desk/doctype/global_search_settings/global_search_settings.js:19
+#: frappe/desk/doctype/module_onboarding/module_onboarding.js:17
+#: frappe/website/doctype/portal_settings/portal_settings.js:19
msgid "Reset"
-msgstr "Thiết lập lại"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:136
+#: frappe/custom/doctype/customize_form/customize_form.js:136
msgid "Reset All Customizations"
msgstr ""
-#: public/js/print_format_builder/print_format_builder.bundle.js:21
-#: public/js/workflow_builder/workflow_builder.bundle.js:37
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:21
+#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:37
msgid "Reset Changes"
msgstr ""
-#: public/js/frappe/widgets/chart_widget.js:305
+#: frappe/public/js/frappe/widgets/chart_widget.js:306
msgid "Reset Chart"
-msgstr "Đặt lại biểu đồ"
+msgstr ""
-#: public/js/frappe/views/dashboard/dashboard_view.js:38
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:39
msgid "Reset Dashboard Customizations"
msgstr ""
-#: public/js/frappe/list/list_settings.js:227
+#: frappe/public/js/frappe/list/list_settings.js:230
msgid "Reset Fields"
-msgstr "Đặt lại trường"
+msgstr ""
-#: core/doctype/user/user.js:161 core/doctype/user/user.js:164
+#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182
msgid "Reset LDAP Password"
-msgstr "Đặt lại mật khẩu LDAP"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:128
+#: frappe/custom/doctype/customize_form/customize_form.js:128
msgid "Reset Layout"
msgstr ""
-#: core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:230
msgid "Reset OTP Secret"
-msgstr "Đặt lại OTP Secret"
+msgstr ""
-#: core/doctype/user/user.js:145 www/login.html:179 www/me.html:35
-#: www/me.html:44 www/update-password.html:3 www/update-password.html:9
+#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199
+#: frappe/www/me.html:48 frappe/www/update-password.html:3
+#: frappe/www/update-password.html:32
msgid "Reset Password"
-msgstr "Đặt lại Mật khẩu"
+msgstr ""
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the reset_password_key (Data) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Reset Password Key"
-msgstr "Reset Password chính"
+msgstr ""
-#. Label of a Duration field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the reset_password_link_expiry_duration (Duration) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Reset Password Link Expiry Duration"
msgstr ""
-#. Label of a Link field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the reset_password_template (Link) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Reset Password Template"
msgstr ""
-#: core/page/permission_manager/permission_manager.js:109
+#: frappe/core/page/permission_manager/permission_manager.js:116
msgid "Reset Permissions for {0}?"
-msgstr "Thiết lập lại Quyền cho {0}?"
+msgstr ""
-#: public/js/frappe/utils/datatable.js:8
+#: frappe/public/js/form_builder/components/Field.vue:114
+msgid "Reset To Default"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/datatable.js:8
msgid "Reset sorting"
msgstr ""
-#: www/me.html:36
-msgid "Reset the password for your account"
-msgstr ""
-
-#: public/js/frappe/form/grid_row.js:409
+#: frappe/public/js/frappe/form/grid_row.js:417
msgid "Reset to default"
msgstr ""
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19
msgid "Reset to defaults"
-msgstr "Đặt lại mặc định"
+msgstr ""
-#: templates/emails/password_reset.html:3
+#: frappe/templates/emails/password_reset.html:3
msgid "Reset your password"
-msgstr "Đặt lại mật khẩu của bạn"
+msgstr ""
-#. Label of a Text Editor field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
+#. Label of the response (Text Editor) field in DocType 'Email Template'
+#. Label of the response_section (Section Break) field in DocType 'Integration
+#. Request'
+#. Label of the response (Code) field in DocType 'Webhook Request Log'
+#: frappe/email/doctype/email_template/email_template.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Response"
-msgstr "Phản hồi"
+msgstr ""
-#. Label of a Section Break field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Response"
-msgstr "Phản hồi"
-
-#. Label of a Code field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "Response"
-msgstr "Phản hồi"
-
-#. Label of a Code field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
+#. Label of the response_html (Code) field in DocType 'Email Template'
+#: frappe/email/doctype/email_template/email_template.json
msgid "Response "
msgstr ""
-#. Label of a Select field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the response_type (Select) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Response Type"
-msgstr "Loại phản hồi"
+msgstr ""
-#: public/js/frappe/ui/notifications/notifications.js:400
+#: frappe/public/js/frappe/ui/notifications/notifications.js:414
msgid "Rest of the day"
msgstr ""
-#: core/doctype/deleted_document/deleted_document.js:11
-#: core/doctype/deleted_document/deleted_document_list.js:48
+#: frappe/core/doctype/deleted_document/deleted_document.js:11
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:48
msgid "Restore"
-msgstr "khôi phục"
+msgstr ""
-#: core/page/permission_manager/permission_manager.js:492
+#: frappe/core/page/permission_manager/permission_manager.js:509
msgid "Restore Original Permissions"
-msgstr "Khôi phục các quyền cơ bản"
+msgstr ""
-#: website/doctype/portal_settings/portal_settings.js:20
+#: frappe/website/doctype/portal_settings/portal_settings.js:20
msgid "Restore to default settings?"
-msgstr "Khôi phục thông số mặc định"
+msgstr ""
-#. Label of a Check field in DocType 'Deleted Document'
-#: core/doctype/deleted_document/deleted_document.json
-msgctxt "Deleted Document"
+#. Label of the restored (Check) field in DocType 'Deleted Document'
+#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Restored"
-msgstr "phục hồi"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document.py:73
+#: frappe/core/doctype/deleted_document/deleted_document.py:74
msgid "Restoring Deleted Document"
-msgstr "Khôi phục tài liệu đã xóa"
+msgstr ""
-#. Label of a Small Text field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the restrict_ip (Small Text) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Restrict IP"
-msgstr "Hạn chế IP"
+msgstr ""
-#. Label of a Link field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
+#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
+#. Label of the restrict_to_domain (Link) field in DocType 'Page'
+#. Label of the restrict_to_domain (Link) field in DocType 'Role'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/page/page.json frappe/core/doctype/role/role.json
msgid "Restrict To Domain"
-msgstr "Giới hạn tên miền"
+msgstr ""
-#. Label of a Link field in DocType 'Module Def'
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Restrict To Domain"
-msgstr "Giới hạn tên miền"
-
-#. Label of a Link field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Restrict To Domain"
-msgstr "Giới hạn tên miền"
-
-#. Label of a Link field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
-msgid "Restrict To Domain"
-msgstr "Giới hạn tên miền"
-
-#. Label of a Link field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the restrict_to_domain (Link) field in DocType 'Workspace'
+#. Label of the restrict_to_domain (Link) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Restrict to Domain"
-msgstr "Hạn chế miền"
-
-#. Label of a Link field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Restrict to Domain"
-msgstr "Hạn chế miền"
+msgstr ""
#. Description of the 'Restrict IP' (Small Text) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)"
-msgstr "Hạn chế người dùng từ địa chỉ IP này mà thôi. Nhiều địa chỉ IP có thể được thêm bằng cách tách biệt bằng dấu phẩy. Cũng chấp nhận địa chỉ IP một phần như (111.111.111)"
+msgstr ""
-#: public/js/frappe/list/list_view.js:172
+#: frappe/public/js/frappe/list/list_view.js:196
msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
-msgstr "Những hạn chế"
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:354
-#: public/js/frappe/ui/toolbar/awesome_bar.js:369
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:382
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:397
msgid "Result"
msgstr ""
-#: email/doctype/email_queue/email_queue_list.js:27
+#: frappe/email/doctype/email_queue/email_queue_list.js:27
msgid "Resume Sending"
-msgstr "Tiếp tục gửi"
+msgstr ""
-#: core/doctype/data_import/data_import.js:110
+#. Label of the retry (Int) field in DocType 'Email Queue'
+#: frappe/core/doctype/data_import/data_import.js:110
+#: frappe/desk/page/setup_wizard/setup_wizard.js:297
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Retry"
-msgstr "Thử lại"
+msgstr ""
-#. Label of a Int field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Retry"
-msgstr "Thử lại"
-
-#: email/doctype/email_queue/email_queue_list.js:47
+#: frappe/email/doctype/email_queue/email_queue_list.js:47
msgid "Retry Sending"
msgstr ""
-#: www/qrcode.html:15
+#: frappe/www/qrcode.html:15
msgid "Return to the Verification screen and enter the code displayed by your authentication app"
-msgstr "Quay lại màn hình Xác minh và nhập mã được hiển thị bởi ứng dụng xác thực của bạn"
+msgstr ""
-#. Label of a Check field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#. Label of the reverse (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Reverse Icon Color"
-msgstr "Màu biển tượng đảo ngược"
+msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.js:10
-#: social/doctype/energy_point_log/energy_point_log.js:15
-msgid "Revert"
-msgstr "Hoàn nguyên"
-
-#. Option for the 'Type' (Select) field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Revert"
-msgstr "Hoàn nguyên"
-
-#. Label of a Link field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Revert Of"
-msgstr "Hoàn nguyên"
-
-#. Label of a Check field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Reverted"
-msgstr "Hoàn nguyên"
-
-#: database/schema.py:162
+#: frappe/database/schema.py:161
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
-msgstr "Hoàn nguyên độ dài thành {0} cho '{1}' trong '{2}'. Đặt độ dài là {3} sẽ khiến dữ liệu bị cắt bớt."
+msgstr ""
-#. Option for the 'Type' (Select) field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Review"
-msgstr "Ôn tập"
-
-#. Name of a DocType
-#: social/doctype/review_level/review_level.json
-msgid "Review Level"
-msgstr "Đánh giá cấp"
-
-#. Label of a Table field in DocType 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Review Levels"
-msgstr "Xem lại cấp độ"
-
-#. Label of a Int field in DocType 'Review Level'
-#: social/doctype/review_level/review_level.json
-msgctxt "Review Level"
-msgid "Review Points"
-msgstr "Điểm đánh giá"
-
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the revocation_uri (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Revocation URI"
msgstr ""
-#: www/third_party_apps.html:45
+#: frappe/www/third_party_apps.html:47
msgid "Revoke"
-msgstr "Thu hồi"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
msgid "Revoked"
-msgstr "bị thu hồi"
-
-#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Rich Text"
-msgstr "Rich Text"
+msgstr ""
#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Rich Text"
-msgstr "Rich Text"
-
+#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:92
+#: frappe/website/doctype/web_page/web_page.json
msgid "Rich Text"
-msgstr "Rich Text"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Right"
-msgstr "Được rồi."
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
-msgid "Right"
-msgstr "Được rồi."
-
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Right"
-msgstr "Được rồi."
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:484
+#: frappe/printing/page/print_format_builder/print_format_builder.js:484
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:156
msgctxt "alignment"
msgid "Right"
-msgstr "Được rồi."
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Right Bottom"
msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Right Center"
msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the robots_txt (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Robots.txt"
-msgstr "robots.txt"
+msgstr ""
+#. Label of the role (Link) field in DocType 'Custom DocPerm'
+#. Label of the roles (Table) field in DocType 'Custom Role'
+#. Label of the role (Link) field in DocType 'DocPerm'
+#. Label of the role (Link) field in DocType 'Has Role'
#. Name of a DocType
-#: core/doctype/role/role.json core/doctype/user_type/user_type.py:109
-#: core/page/permission_manager/permission_manager.js:212
-#: core/page/permission_manager/permission_manager.js:439
-msgid "Role"
-msgstr "Vai trò"
-
-#. Label of a Link field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Role"
-msgstr "Vai trò"
-
-#. Label of a Table field in DocType 'Custom Role'
-#: core/doctype/custom_role/custom_role.json
-msgctxt "Custom Role"
-msgid "Role"
-msgstr "Vai trò"
-
-#. Label of a Link field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Role"
-msgstr "Vai trò"
-
-#. Label of a Link field in DocType 'Has Role'
-#: core/doctype/has_role/has_role.json
-msgctxt "Has Role"
-msgid "Role"
-msgstr "Vai trò"
-
-#. Label of a Link field in DocType 'Onboarding Permission'
-#: desk/doctype/onboarding_permission/onboarding_permission.json
-msgctxt "Onboarding Permission"
-msgid "Role"
-msgstr "Vai trò"
-
-#. Label of a Link field in DocType 'Portal Menu Item'
-#: website/doctype/portal_menu_item/portal_menu_item.json
-msgctxt "Portal Menu Item"
-msgid "Role"
-msgstr "Vai trò"
-
-#. Label of a Link field in DocType 'Review Level'
-#: social/doctype/review_level/review_level.json
-msgctxt "Review Level"
-msgid "Role"
-msgstr "Vai trò"
-
+#. Label of the role (Link) field in DocType 'User Type'
#. Label of a Link in the Users Workspace
#. Label of a shortcut in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "Role"
+#. Label of the role (Link) field in DocType 'Onboarding Permission'
+#. Label of the role (Link) field in DocType 'ToDo'
+#. Label of the role (Link) field in DocType 'OAuth Client Role'
+#. Label of the role (Link) field in DocType 'Portal Menu Item'
+#. Label of the role (Link) field in DocType 'Workflow Action Permitted Role'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/custom_role/custom_role.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/has_role/has_role.json
+#: frappe/core/doctype/role/role.json
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/core/doctype/user_type/user_type.py:110
+#: frappe/core/page/permission_manager/permission_manager.js:219
+#: frappe/core/page/permission_manager/permission_manager.js:456
+#: frappe/core/workspace/users/users.json
+#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
msgid "Role"
-msgstr "Vai trò"
+msgstr ""
-#. Label of a Link field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Role"
-msgstr "Vai trò"
-
-#. Label of a Link field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
-msgid "Role"
-msgstr "Vai trò"
-
-#. Label of a Link field in DocType 'Workflow Action Permitted Role'
-#: workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
-msgctxt "Workflow Action Permitted Role"
-msgid "Role"
-msgstr "Vai trò"
-
-#: core/doctype/role/role.js:8
+#: frappe/core/doctype/role/role.js:8
msgid "Role 'All' will be given to all system + website users."
msgstr ""
-#: core/doctype/role/role.js:13
+#: frappe/core/doctype/role/role.js:13
msgid "Role 'Desk User' will be given to all system users."
msgstr ""
-#. Label of a Data field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the role_name (Data) field in DocType 'Role'
+#. Label of the role_profile (Data) field in DocType 'Role Profile'
+#: frappe/core/doctype/role/role.json
+#: frappe/core/doctype/role_profile/role_profile.json
msgid "Role Name"
-msgstr "Tên vai trò"
-
-#. Label of a Data field in DocType 'Role Profile'
-#: core/doctype/role_profile/role_profile.json
-msgctxt "Role Profile"
-msgid "Role Name"
-msgstr "Tên vai trò"
+msgstr ""
#. Name of a DocType
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#. 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 "Quyền hạn vai trò cho trang và báo cáo"
+msgstr ""
+
+#. Label of the permissions_section (Section Break) field in DocType 'User
+#. Document Type'
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/public/js/frappe/roles_editor.js:103
+msgid "Role Permissions"
+msgstr ""
#. Label of a Link in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "Role Permission for Page and Report"
-msgid "Role Permission for Page and Report"
-msgstr "Quyền hạn vai trò cho trang và báo cáo"
-
-#: public/js/frappe/roles_editor.js:100
-msgid "Role Permissions"
-msgstr "Quyền hạn vai trò"
-
-#. Label of a Section Break field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Role Permissions"
-msgstr "Quyền hạn vai trò"
-
-#. Label of a Link in the Users Workspace
-#: core/page/permission_manager/permission_manager.js:4
-#: core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:4
+#: frappe/core/workspace/users/users.json
msgid "Role Permissions Manager"
-msgstr "Quản lý vai trò"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1650
+#: frappe/public/js/frappe/list/list_view.js:1788
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
-msgstr "Quản lý vai trò"
+msgstr ""
#. Name of a DocType
-#: core/doctype/role_profile/role_profile.json
-msgid "Role Profile"
-msgstr "Hồ sơ Vai trò"
-
+#. Label of the role_profile_name (Link) field in DocType 'User'
+#. Label of the role_profile (Link) field in DocType 'User Role Profile'
#. Label of a Link in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "Role Profile"
+#: frappe/core/doctype/role_profile/role_profile.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_role_profile/user_role_profile.json
+#: frappe/core/workspace/users/users.json
msgid "Role Profile"
-msgstr "Hồ sơ Vai trò"
+msgstr ""
-#. Label of a Link field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Role Profile"
-msgstr "Hồ sơ Vai trò"
+#. Label of the role_profiles (Table MultiSelect) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Role Profiles"
+msgstr ""
-#. Label of a Section Break field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
+#. Name of a DocType
+#: frappe/core/doctype/role_replication/role_replication.json
+msgid "Role Replication"
+msgstr ""
+
+#. Label of the role_and_level (Section Break) field in DocType 'Custom
+#. DocPerm'
+#. Label of the role_and_level (Section Break) field in DocType 'DocPerm'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
msgid "Role and Level"
-msgstr "Vai trò và Cấp độ"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Role and Level"
-msgstr "Vai trò và Cấp độ"
-
-#: core/doctype/user/user.py:314
+#: frappe/core/doctype/user/user.py:363
msgid "Role has been set as per the user type {0}"
msgstr ""
-#: core/page/permission_manager/permission_manager.js:59
+#. Label of the roles (Table) field in DocType 'Page'
+#. Label of the roles (Table) field in DocType 'Report'
+#. Label of the roles (Table) field in DocType 'Role Permission for Page and
+#. Report'
+#. Label of the sb1 (Section Break) field in DocType 'User'
+#. Label of the roles_section (Section Break) field in DocType 'Custom HTML
+#. Block'
+#. Label of the roles (Table) field in DocType 'Custom HTML Block'
+#. Label of the roles (Table) field in DocType 'Dashboard Chart'
+#. Label of the roles (Table) field in DocType 'Workspace'
+#. Label of the roles_tab (Tab Break) field in DocType 'Workspace'
+#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/page/permission_manager/permission_manager.js:66
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Roles"
-msgstr "Vai trò"
+msgstr ""
-#. Label of a Section Break field in DocType 'Custom HTML Block'
-#. Label of a Table field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
-msgid "Roles"
-msgstr "Vai trò"
-
-#. Label of a Table field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Roles"
-msgstr "Vai trò"
-
-#. Label of a Table field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Roles"
-msgstr "Vai trò"
-
-#. Label of a Table field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Roles"
-msgstr "Vai trò"
-
-#. Label of a Table field in DocType 'Role Permission for Page and Report'
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgctxt "Role Permission for Page and Report"
-msgid "Roles"
-msgstr "Vai trò"
-
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Roles"
-msgstr "Vai trò"
-
-#. Label of a Table field in DocType 'Workspace'
-#. Label of a Tab Break field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Roles"
-msgstr "Vai trò"
-
-#. Label of a Tab Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the roles_permissions_tab (Tab Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Roles & Permissions"
msgstr ""
-#. Label of a Table field in DocType 'Role Profile'
-#: core/doctype/role_profile/role_profile.json
-msgctxt "Role Profile"
+#. Label of the roles (Table) field in DocType 'Role Profile'
+#. Label of the roles (Table) field in DocType 'User'
+#: frappe/core/doctype/role_profile/role_profile.json
+#: frappe/core/doctype/user/user.json
msgid "Roles Assigned"
-msgstr "Vai trò được chỉ định"
+msgstr ""
-#. Label of a Table field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Roles Assigned"
-msgstr "Vai trò được chỉ định"
-
-#. Label of a HTML field in DocType 'Role Profile'
-#: core/doctype/role_profile/role_profile.json
-msgctxt "Role Profile"
+#. Label of the roles_html (HTML) field in DocType 'Role Profile'
+#. Label of the roles_html (HTML) field in DocType 'User'
+#: frappe/core/doctype/role_profile/role_profile.json
+#: frappe/core/doctype/user/user.json
msgid "Roles HTML"
-msgstr "HTML của các vai trò"
+msgstr ""
-#. Label of a HTML field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Roles HTML"
-msgstr "HTML của các vai trò"
-
-#. Label of a HTML field in DocType 'Role Permission for Page and Report'
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgctxt "Role Permission for Page and Report"
+#. Label of the roles_html (HTML) field in DocType 'Role Permission for Page
+#. and Report'
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
msgid "Roles Html"
-msgstr "Vai trò Html"
+msgstr ""
-#: utils/nestedset.py:283
+#: frappe/core/page/permission_manager/permission_manager_help.html:7
+msgid "Roles can be set for users from their User page."
+msgstr ""
+
+#: frappe/utils/nestedset.py:280
msgid "Root {0} cannot be deleted"
-msgstr "Gốc {0} không thể bị xóa"
+msgstr ""
#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Round Robin"
-msgstr "Vòng Robin"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the rounding_method (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Rounding Method"
msgstr ""
-#. Label of a Data field in DocType 'Blog Category'
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
-msgid "Route"
-msgstr "Tuyến đường"
-
-#. Label of a Data field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Route"
-msgstr "Tuyến đường"
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Route"
-msgstr "Tuyến đường"
-
+#. Label of the route (Data) field in DocType 'DocType'
#. Option for the 'Action Type' (Select) field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
-msgid "Route"
-msgstr "Tuyến đường"
-
-#. Label of a Data field in DocType 'DocType Layout'
-#: custom/doctype/doctype_layout/doctype_layout.json
-msgctxt "DocType Layout"
-msgid "Route"
-msgstr "Tuyến đường"
-
-#. Label of a Data field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
-msgid "Route"
-msgstr "Tuyến đường"
-
-#. Label of a Data field in DocType 'Help Category'
-#: website/doctype/help_category/help_category.json
-msgctxt "Help Category"
-msgid "Route"
-msgstr "Tuyến đường"
-
#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
-#. Label of a Data field in DocType 'Navbar Item'
-#: core/doctype/navbar_item/navbar_item.json
-msgctxt "Navbar Item"
+#. Label of the route (Data) field in DocType 'Navbar Item'
+#. Label of the route (Data) field in DocType 'DocType Layout'
+#. Label of the route (Data) field in DocType 'Route History'
+#. Label of the route (Data) field in DocType 'Newsletter'
+#. Label of the route (Data) field in DocType 'Blog Category'
+#. Label of the route (Data) field in DocType 'Blog Post'
+#. Label of the route (Data) field in DocType 'Help Article'
+#. 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/email/doctype/newsletter/newsletter.json
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/help_article/help_article.json
+#: 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 "Tuyến đường"
-
-#. Label of a Data field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Route"
-msgstr "Tuyến đường"
-
-#. Label of a Data field in DocType 'Portal Menu Item'
-#: website/doctype/portal_menu_item/portal_menu_item.json
-msgctxt "Portal Menu Item"
-msgid "Route"
-msgstr "Tuyến đường"
-
-#. Label of a Data field in DocType 'Route History'
-#: desk/doctype/route_history/route_history.json
-msgctxt "Route History"
-msgid "Route"
-msgstr "Tuyến đường"
-
-#. Label of a Data field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Route"
-msgstr "Tuyến đường"
-
-#. Label of a Data field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Route"
-msgstr "Tuyến đường"
-
-#. Label of a Data field in DocType 'Website Sidebar Item'
-#: website/doctype/website_sidebar_item/website_sidebar_item.json
-msgctxt "Website Sidebar Item"
-msgid "Route"
-msgstr "Tuyến đường"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/route_history/route_history.json
+#: frappe/desk/doctype/route_history/route_history.json
msgid "Route History"
-msgstr "Lịch sử tuyến đường"
+msgstr ""
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Route History"
-msgstr "Lịch sử tuyến đường"
-
-#. Label of a Table field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the route_redirects (Table) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Route Redirects"
-msgstr "Chuyển hướng tuyến"
+msgstr ""
#. Description of the 'Home Page' (Data) field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
-msgid "Route: Example \"/desk\""
-msgstr "Tuyến đường: Ví dụ "/ bàn""
+#: frappe/core/doctype/role/role.json
+msgid "Route: Example \"/app\""
+msgstr ""
-#: model/base_document.py:710 model/base_document.py:751 model/document.py:591
+#: frappe/model/base_document.py:855 frappe/model/document.py:778
msgid "Row"
-msgstr "Hàng"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1772 core/doctype/doctype/doctype.py:1782
+#: frappe/core/doctype/version/version_view.html:73
+msgid "Row #"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1831
+#: frappe/core/doctype/doctype/doctype.py:1841
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: model/base_document.py:868
+#: frappe/model/base_document.py:977
msgid "Row #{0}:"
-msgstr "Hàng # {0}:"
+msgstr ""
-#: core/doctype/doctype/doctype.py:492
+#: frappe/core/doctype/doctype/doctype.py:491
msgid "Row #{}: Fieldname is required"
msgstr ""
-#. Label of a Data field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Row Index"
-msgstr "Chỉ mục Hàng"
+#. Label of the row_format (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Row Format"
+msgstr ""
-#. Label of a Code field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
+#. Label of the row_index (Data) field in DocType 'Transaction Log'
+#: frappe/core/doctype/transaction_log/transaction_log.json
+msgid "Row Index"
+msgstr ""
+
+#. Label of the row_indexes (Code) field in DocType 'Data Import Log'
+#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Row Indexes"
msgstr ""
-#. Label of a Data field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#. Label of the row_name (Data) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Row Name"
-msgstr "Tên hàng"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:349
+#: frappe/core/doctype/data_import/data_import.js:483
+msgid "Row Number"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:68
+msgid "Row Values Changed"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:367
+msgid "Row {0}"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.py:352
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
-msgstr "Hàng {0}: Không được phép bắt buộc Bắt buộc đối với trường tiêu chuẩn"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:337
+#: frappe/custom/doctype/customize_form/customize_form.py:341
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
-msgstr "Hàng{0}: Không có quyền hạn để cho phép đệ trình các trường tiêu chuẩn"
+msgstr ""
-#. Label of a Section Break field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
+#. Label of the rows_added_section (Section Break) field in DocType 'Audit
+#. Trail'
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/version/version_view.html:32
msgid "Rows Added"
-msgstr "hàng thêm"
+msgstr ""
-#. Label of a Section Break field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
+#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
+#. Trail'
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/version/version_view.html:32
msgid "Rows Removed"
-msgstr "hàng bị hủy"
+msgstr ""
-#. Label of a Select field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Rows Threshold for Grid Search"
+msgstr ""
+
+#. Label of the rule (Select) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Rule"
-msgstr "Quy tắc"
+msgstr ""
-#. Label of a Link field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Rule"
-msgstr "Quy tắc"
-
-#. Label of a Section Break field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#. Label of the section_break_3 (Section Break) field in DocType 'Document
+#. Naming Rule'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Rule Conditions"
-msgstr "Điều kiện quy tắc"
+msgstr ""
-#. Label of a Data field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Rule Name"
-msgstr "Tên quy tắc"
-
-#: permissions.py:662
+#: frappe/permissions.py:653
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
#. Group in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "Rules"
msgstr ""
#. Description of the 'Transitions' (Table) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Rules defining transition of state in the workflow."
-msgstr "Quy định việc xác định quá trình chuyển đổi của nhà nước trong các công việc."
+msgstr ""
#. Description of the 'Transition Rules' (Section Break) field in DocType
#. 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Rules for how states are transitions, like next state and which role is allowed to change state etc."
-msgstr "Qui tắc để các quốc gia là quá trình chuyển đổi, như trạng thái tiếp theo và đó vai trò được phép thay đổi trạng thái, vv"
+msgstr ""
#. Description of the 'Priority' (Int) field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Rules with higher priority number will be applied first."
-msgstr "Các quy tắc có số ưu tiên cao hơn sẽ được áp dụng trước."
+msgstr ""
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the dormant_days (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Run Jobs only Daily if Inactive For (Days)"
-msgstr "Chỉ chạy công việc hàng ngày nếu không hoạt động trong (ngày)"
+msgstr ""
#. Description of the 'Enable Scheduled Jobs' (Check) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Run scheduled jobs only if checked"
-msgstr "Chạy các công việc dự kiến chỉ khi kiểm tra"
+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 ""
#. Name of a DocType
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Backup Settings"
-msgstr "Cài đặt sao lưu S3"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "S3 Backup Settings"
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "S3 Backup Settings"
-msgstr "Cài đặt sao lưu S3"
+msgstr ""
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
msgid "S3 Backup complete!"
-msgstr "S3 Backup hoàn tất!"
+msgstr ""
-#. Label of a Section Break field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#. Label of the s3_bucket_details_section (Section Break) field in DocType 'S3
+#. Backup Settings'
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "S3 Bucket Details"
-msgstr "Chi tiết nhóm S3"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "SMS"
-msgstr "tin nhắn"
-
-#. Option for the 'Channel' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "SMS"
-msgstr "tin nhắn"
-
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Option for the 'Channel' (Select) field in DocType 'Notification'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/email/doctype/notification/notification.json
msgid "SMS"
-msgstr "tin nhắn"
+msgstr ""
-#. Label of a Small Text field in DocType 'SMS Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#. Label of the sms_gateway_url (Small Text) field in DocType 'SMS Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "SMS Gateway URL"
-msgstr "URL cổng tin nhắn"
+msgstr ""
#. Name of a DocType
-#: core/doctype/sms_log/sms_log.json
+#: frappe/core/doctype/sms_log/sms_log.json
msgid "SMS Log"
msgstr ""
#. Name of a DocType
-#: core/doctype/sms_parameter/sms_parameter.json
+#: frappe/core/doctype/sms_parameter/sms_parameter.json
msgid "SMS Parameter"
-msgstr "Thông số tin nhắn SMS"
+msgstr ""
#. Name of a DocType
-#: core/doctype/sms_settings/sms_settings.json
-msgid "SMS Settings"
-msgstr "Thiết lập tin nhắn SMS"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "SMS Settings"
+#: frappe/core/doctype/sms_settings/sms_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "SMS Settings"
-msgstr "Thiết lập tin nhắn SMS"
+msgstr ""
-#: core/doctype/sms_settings/sms_settings.py:110
-msgid "SMS sent to following numbers: {0}"
-msgstr "SMS gửi đến số điện thoại sau: {0}"
+#: frappe/core/doctype/sms_settings/sms_settings.py:110
+msgid "SMS sent successfully"
+msgstr ""
-#: email/doctype/email_account/email_account.py:182
+#: frappe/templates/includes/login/login.js:369
+msgid "SMS was not sent. Please contact Administrator."
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:212
msgid "SMTP Server is required"
msgstr ""
-#. Description of the 'Enable Outgoing' (Check) field in DocType 'Email
-#. Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "SMTP Settings for outgoing emails"
-msgstr "Cài đặt SMTP cho email gửi đi"
-
#. Option for the 'Type' (Select) field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#: frappe/desk/doctype/system_console/system_console.json
msgid "SQL"
msgstr ""
#. Description of the 'Condition' (Small Text) field in DocType 'Bulk Update'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
+#: frappe/desk/doctype/bulk_update/bulk_update.json
msgid "SQL Conditions. Example: status=\"Open\""
-msgstr "Điều kiện SQL. Ví dụ: trạng thái = \"Mở\""
+msgstr ""
-#: core/doctype/recorder/recorder.js:36
+#. Label of the sql_explain_html (HTML) field in DocType 'Recorder Query'
+#: frappe/core/doctype/recorder/recorder.js:85
+#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "SQL Explain"
msgstr ""
-#. Label of a HTML field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
-msgid "SQL Explain"
-msgstr ""
-
-#. Label of a HTML field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#. Label of the sql_output (HTML) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
msgid "SQL Output"
msgstr ""
-#. Label of a Table field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#. Label of the sql_queries (Table) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
msgid "SQL Queries"
msgstr ""
-#. Label of a Select field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "SSL/TLS Mode"
-msgstr "Chế độ SSL / TLS"
+msgstr ""
+
+#: frappe/public/js/frappe/color_picker/color_picker.js:20
+msgid "SWATCHES"
+msgstr ""
#. Name of a role
-#: contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/contact/contact.json
msgid "Sales Manager"
-msgstr "Quản lý bán hàng"
+msgstr ""
#. Name of a role
-#: contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/contact/contact.json
msgid "Sales Master Manager"
-msgstr "QUản lý bản hàng gốc"
+msgstr ""
#. Name of a role
-#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json
-#: geo/doctype/currency/currency.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/geo/doctype/currency/currency.json
msgid "Sales User"
-msgstr "Bán tài khoản"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Salesforce"
-msgstr "Lực lượng bán hàng"
+msgstr ""
+#. Label of the salutation (Link) field in DocType 'Contact'
#. Name of a DocType
-#: contacts/doctype/salutation/salutation.json
+#. Label of the salutation (Data) field in DocType 'Salutation'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/salutation/salutation.json
msgid "Salutation"
-msgstr "Sự chào"
+msgstr ""
-#. Label of a Link field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Salutation"
-msgstr "Sự chào"
-
-#. Label of a Data field in DocType 'Salutation'
-#: contacts/doctype/salutation/salutation.json
-msgctxt "Salutation"
-msgid "Salutation"
-msgstr "Sự chào"
-
-#: integrations/doctype/webhook/webhook.py:109
+#: frappe/integrations/doctype/webhook/webhook.py:109
msgid "Same Field is entered more than once"
-msgstr "Trường Tương tự được nhập hơn một lần"
+msgstr ""
-#. Label of a HTML field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
+#. Label of the sample (HTML) field in DocType 'Client Script'
+#: frappe/custom/doctype/client_script/client_script.json
msgid "Sample"
-msgstr "Mẫu"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Saturday"
-msgstr "Thứ bảy"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Saturday"
-msgstr "Thứ bảy"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Saturday"
-msgstr "Thứ bảy"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Saturday"
-msgstr "Thứ bảy"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the saturday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Saturday"
-msgstr "Thứ bảy"
-
-#: core/doctype/data_import/data_import.js:113
-#: desk/page/user_profile/user_profile_controller.js:319
-#: printing/page/print/print.js:831
-#: printing/page/print_format_builder/print_format_builder.js:160
-#: public/js/frappe/form/footer/form_timeline.js:638
-#: public/js/frappe/form/quick_entry.js:156
-#: public/js/frappe/list/list_settings.js:36
-#: public/js/frappe/list/list_settings.js:244
-#: public/js/frappe/list/list_sidebar_group_by.js:25
-#: public/js/frappe/ui/toolbar/toolbar.js:297
-#: public/js/frappe/utils/common.js:443
-#: public/js/frappe/views/kanban/kanban_settings.js:45
-#: public/js/frappe/views/kanban/kanban_settings.js:189
-#: public/js/frappe/views/kanban/kanban_view.js:340
-#: public/js/frappe/views/reports/query_report.js:1785
-#: public/js/frappe/views/reports/report_view.js:1631
-#: public/js/frappe/views/workspace/workspace.js:487
-#: public/js/frappe/widgets/base_widget.js:140
-#: public/js/frappe/widgets/quick_list_widget.js:117
-#: public/js/print_format_builder/print_format_builder.bundle.js:15
-#: public/js/workflow_builder/workflow_builder.bundle.js:33
-msgid "Save"
-msgstr "Lưu"
+msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/core/doctype/data_import/data_import.js:113
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/page/print/print.js:858
+#: frappe/printing/page/print_format_builder/print_format_builder.js:160
+#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/list/list_settings.js:36
+#: frappe/public/js/frappe/list/list_settings.js:247
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/utils/common.js:443
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/reports/query_report.js:1894
+#: frappe/public/js/frappe/views/reports/report_view.js:1720
+#: 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 "Lưu"
+msgstr ""
-#: core/doctype/user/user.js:316
+#: frappe/core/doctype/user/user.js:339
msgid "Save API Secret: {0}"
msgstr ""
-#: workflow/doctype/workflow/workflow.js:143
+#: frappe/workflow/doctype/workflow/workflow.js:143
msgid "Save Anyway"
-msgstr "Bảo vệ bằng mọi cách"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1314
-#: public/js/frappe/views/reports/report_view.js:1638
+#: frappe/public/js/frappe/views/reports/report_view.js:1382
+#: frappe/public/js/frappe/views/reports/report_view.js:1727
msgid "Save As"
-msgstr "Lưu"
+msgstr ""
-#: public/js/frappe/views/dashboard/dashboard_view.js:62
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:63
msgid "Save Customizations"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1897
msgid "Save Report"
-msgstr "Lưu lại báo cáo"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:94
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
msgid "Save filters"
-msgstr "Lưu bộ lọc"
+msgstr ""
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the save_on_complete (Check) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Save on Completion"
msgstr ""
-#: public/js/frappe/form/form_tour.js:287
+#: frappe/public/js/frappe/form/form_tour.js:295
msgid "Save the document."
msgstr ""
-#: desk/form/save.py:46 model/rename_doc.py:108
-#: printing/page/print_format_builder/print_format_builder.js:845
-#: public/js/frappe/form/toolbar.js:260
-#: public/js/frappe/views/kanban/kanban_board.bundle.js:910
+#: frappe/model/rename_doc.py:106
+#: frappe/printing/page/print_format_builder/print_format_builder.js:858
+#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
+#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
-msgstr "Lưu"
+msgstr ""
-#: public/js/frappe/list/list_settings.js:40
-#: public/js/frappe/views/kanban/kanban_settings.js:47
-#: public/js/frappe/views/workspace/workspace.js:499
+#: frappe/public/js/frappe/list/list_sidebar.html:88
+msgid "Saved Filters"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_settings.js:40
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
+#: frappe/public/js/frappe/views/workspace/workspace.js:348
msgid "Saving"
-msgstr "Tiết kiệm"
+msgstr ""
-#: public/js/frappe/form/save.js:9
+#: frappe/public/js/frappe/form/save.js:9
msgctxt "Freeze message while saving a document"
msgid "Saving"
-msgstr "Tiết kiệm"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:343
+#: frappe/custom/doctype/customize_form/customize_form.js:411
msgid "Saving Customization..."
msgstr ""
-#: desk/doctype/module_onboarding/module_onboarding.js:8
+#: frappe/desk/doctype/module_onboarding/module_onboarding.js:8
msgid "Saving this will export this document as well as the steps linked here as json."
msgstr ""
-#: public/js/form_builder/store.js:228
-#: public/js/print_format_builder/store.js:36
-#: public/js/workflow_builder/store.js:73
+#: frappe/public/js/form_builder/store.js:233
+#: frappe/public/js/print_format_builder/store.js:36
+#: frappe/public/js/workflow_builder/store.js:73
msgid "Saving..."
-msgstr "Tiết kiệm..."
+msgstr ""
-#: public/js/frappe/scanner/index.js:72
+#: frappe/public/js/frappe/scanner/index.js:72
msgid "Scan QRCode"
msgstr ""
-#: www/qrcode.html:14
+#: frappe/www/qrcode.html:14
msgid "Scan the QR Code and enter the resulting code displayed."
-msgstr "Quét mã QR và nhập mã kết quả được hiển thị."
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:125
+#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: email/doctype/newsletter/newsletter.js:106
+#: frappe/email/doctype/newsletter/newsletter.js:106
msgid "Schedule Newsletter"
msgstr ""
-#: public/js/frappe/views/communication.js:81
+#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: email/doctype/newsletter/newsletter.js:70
+#: frappe/email/doctype/newsletter/newsletter.js:70
msgid "Schedule sending"
msgstr ""
-#. Label of a Check field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Schedule sending at a later time"
msgstr ""
-#: email/doctype/newsletter/newsletter_list.js:7
-msgid "Scheduled"
-msgstr "Dự kiến"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Scheduled"
-msgstr "Dự kiến"
-
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
-msgstr "Dự kiến"
+msgstr ""
-#. Label of a Link field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
+#. Label of the scheduled_against (Link) field in DocType 'Scheduler Event'
+#: frappe/core/doctype/scheduler_event/scheduler_event.json
+msgid "Scheduled Against"
+msgstr ""
+
+#. Label of the scheduled_job_type (Link) field in DocType 'Scheduled Job Log'
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
msgid "Scheduled Job"
-msgstr "Công việc theo lịch trình"
+msgstr ""
#. Name of a DocType
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
msgid "Scheduled Job Log"
-msgstr "Nhật ký công việc theo lịch trình"
-
-#. Linked DocType in Scheduled Job Type's connections
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Scheduled Job Log"
-msgstr "Nhật ký công việc theo lịch trình"
+msgstr ""
#. Name of a DocType
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
+#. Label of a Link in the Build Workspace
+#. Label of the scheduled_job_type (Link) field in DocType 'System Health
+#. Report Failing Jobs'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
msgid "Scheduled Job Type"
-msgstr "Loại công việc theo lịch trình"
+msgstr ""
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Scheduled Job Type"
-msgid "Scheduled Job Type"
-msgstr "Loại công việc theo lịch trình"
-
-#. Linked DocType in Server Script's connections
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Scheduled Job Type"
-msgstr "Loại công việc theo lịch trình"
-
-#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Scheduled Job Log"
+#: frappe/core/workspace/build/build.json
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the schedule_settings_section (Section Break) field in DocType
+#. 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Scheduled Sending"
msgstr ""
-#. Label of a Int field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Scheduled To Send"
-msgstr "Lên lịch gửi"
+msgstr ""
-#: core/doctype/server_script/server_script.py:274
+#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
-msgstr "Thực thi theo lịch trình cho tập lệnh {0} đã được cập nhật"
+msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.js:26
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:26
msgid "Scheduled to send"
-msgstr "Lên lịch gửi"
+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'
-#: core/doctype/server_script/server_script.json
-msgctxt "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 "Sự kiện của người lập lịch"
+msgstr ""
-#: core/doctype/data_import/data_import.py:97
+#: frappe/core/doctype/data_import/data_import.py:106
msgid "Scheduler Inactive"
-msgstr "Bộ lập lịch không hoạt động"
+msgstr ""
-#: utils/scheduler.py:196
+#. Label of the scheduler_status (Data) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Scheduler Status"
+msgstr ""
+
+#: frappe/utils/scheduler.py:249
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr ""
-#: core/doctype/data_import/data_import.py:97
+#: frappe/core/doctype/data_import/data_import.py:106
msgid "Scheduler is inactive. Cannot import data."
-msgstr "Trình lập lịch biểu không hoạt động. Không thể nhập dữ liệu."
+msgstr ""
-#: core/doctype/rq_job/rq_job_list.js:19
+#: frappe/core/doctype/rq_job/rq_job_list.js:19
msgid "Scheduler: Active"
msgstr ""
-#: core/doctype/rq_job/rq_job_list.js:21
+#: frappe/core/doctype/rq_job/rq_job_list.js:21
msgid "Scheduler: Inactive"
msgstr ""
-#. Label of a Data field in DocType 'OAuth Scope'
-#: integrations/doctype/oauth_scope/oauth_scope.json
-msgctxt "OAuth Scope"
+#. Label of the scope (Data) field in DocType 'OAuth Scope'
+#: frappe/integrations/doctype/oauth_scope/oauth_scope.json
msgid "Scope"
msgstr ""
-#. Label of a Section Break field in DocType 'Connected App'
-#. Label of a Table field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the sb_scope_section (Section Break) field in DocType 'Connected
+#. App'
+#. Label of the scopes (Table) field in DocType 'Connected App'
+#. Label of the scopes (Text) field in DocType 'OAuth Authorization Code'
+#. Label of the scopes (Text) field in DocType 'OAuth Bearer Token'
+#. Label of the scopes (Text) field in DocType 'OAuth Client'
+#. Label of the scopes (Table) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Scopes"
-msgstr "scopes"
+msgstr ""
-#. Label of a Text field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
-msgid "Scopes"
-msgstr "scopes"
-
-#. Label of a Text field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
-msgid "Scopes"
-msgstr "scopes"
-
-#. Label of a Text field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
-msgid "Scopes"
-msgstr "scopes"
-
-#. Label of a Table field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "Scopes"
-msgstr "scopes"
-
-#. Label of a Code field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
+#. Label of the report_script (Code) field in DocType 'Report'
+#. Label of the script (Code) field in DocType 'Server Script'
+#. Label of the script (Code) field in DocType 'Client Script'
+#. Label of the script (Code) field in DocType 'Console Log'
+#. Label of the custom_javascript (Section Break) field in DocType 'Web Page'
+#. Label of the custom_js_section (Tab Break) field in DocType 'Website Theme'
+#: frappe/core/doctype/report/report.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/desk/doctype/console_log/console_log.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Script"
-msgstr "bản thảo"
-
-#. Label of a Code field in DocType 'Console Log'
-#: desk/doctype/console_log/console_log.json
-msgctxt "Console Log"
-msgid "Script"
-msgstr "bản thảo"
-
-#. Label of a Code field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Script"
-msgstr "bản thảo"
-
-#. Label of a Code field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Script"
-msgstr "bản thảo"
-
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Script"
-msgstr "bản thảo"
-
-#. Label of a Tab Break field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Script"
-msgstr "bản thảo"
+msgstr ""
#. Name of a role
-#: core/doctype/server_script/server_script.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Script Manager"
-msgstr "Quản lý tập lệnh"
+msgstr ""
#. Option for the 'Report Type' (Select) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#: frappe/core/doctype/report/report.json
msgid "Script Report"
-msgstr "Kịch bản Báo cáo"
+msgstr ""
-#. Label of a Select field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the script_type (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Script Type"
-msgstr "Loại kịch bản"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/website/doctype/website_script/website_script.json
+msgid "Script to attach to all web pages."
+msgstr ""
#. Label of a Card Break in the Build Workspace
-#: core/workspace/build/build.json
+#. Label of the scripting_tab (Tab Break) field in DocType 'Web Page'
+#: frappe/core/workspace/build/build.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Scripting"
msgstr ""
-#. Label of a Tab Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Scripting"
-msgstr ""
-
-#. Label of a Section Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the section_break_6 (Section Break) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Scripting / Style"
msgstr ""
-#: public/js/frappe/form/link_selector.js:46
-#: public/js/frappe/ui/toolbar/search.js:49
-#: public/js/frappe/ui/toolbar/search.js:68
-#: templates/includes/search_template.html:26 www/search.py:19
-msgid "Search"
-msgstr "Tìm kiếm"
+#. 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 a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. 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 a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the search_fields (Data) field in DocType 'DocType'
+#. Label of the search_fields (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Search Fields"
-msgstr "Tìm kiếm Fields"
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Search Fields"
-msgstr "Tìm kiếm Fields"
-
-#: public/js/frappe/ui/toolbar/awesome_bar.js:186
-msgid "Search Help"
-msgstr "tìm kiếm sự trợ giúp"
-
-#. Label of a Table field in DocType 'Global Search Settings'
-#: desk/doctype/global_search_settings/global_search_settings.json
-msgctxt "Global Search Settings"
-msgid "Search Priorities"
-msgstr "Ưu tiên tìm kiếm"
-
-#: www/search.py:14
-msgid "Search Results for"
msgstr ""
-#: core/doctype/doctype/doctype.py:1418
+#: 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:1467
msgid "Search field {0} is not valid"
-msgstr "lĩnh vực tìm kiếm {0} là không hợp lệ"
+msgstr ""
-#: public/js/frappe/ui/toolbar/search.js:50
-#: public/js/frappe/ui/toolbar/search.js:69
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:87
+msgid "Search fields"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/AddFieldButton.vue:19
+msgid "Search fieldtypes..."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search.js:50
+#: frappe/public/js/frappe/ui/toolbar/search.js:69
msgid "Search for anything"
-msgstr "Tìm kiếm bất cứ điều gì"
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:306
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:300
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:306
msgid "Search for {0}"
msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:166
msgid "Search in a document type"
-msgstr "Tìm kiếm trong một loại tài liệu"
+msgstr ""
-#: templates/includes/search_box.html:8
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:29
+msgid "Search or type a command ({0})"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/SearchBox.vue:8
+msgid "Search properties..."
+msgstr ""
+
+#: frappe/templates/includes/search_box.html:8
msgid "Search results for"
-msgstr "tìm kiếm kết quả cho"
+msgstr ""
-#: templates/includes/navbar/navbar_search.html:6
-#: templates/includes/search_box.html:2
-#: templates/includes/search_template.html:23
+#: frappe/templates/includes/navbar/navbar_search.html:6
+#: frappe/templates/includes/search_box.html:2
+#: frappe/templates/includes/search_template.html:23
msgid "Search..."
-msgstr "Tìm kiếm..."
+msgstr ""
-#: public/js/frappe/ui/toolbar/search.js:210
+#: frappe/public/js/frappe/ui/toolbar/search.js:210
msgid "Searching ..."
-msgstr "Đang tìm kiếm ..."
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
+#: frappe/public/js/form_builder/components/Section.vue:263
+#: frappe/website/doctype/web_template/web_template.json
msgid "Section"
-msgstr "Phần"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Section Break"
-msgstr "Phần phá vỡ"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Section Break"
-msgstr "Phần phá vỡ"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Section Break"
-msgstr "Phần phá vỡ"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Section Break"
-msgstr "Phần phá vỡ"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Section Break"
-msgstr "Phần phá vỡ"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:421
+#: frappe/printing/page/print_format_builder/print_format_builder.js:421
msgid "Section Heading"
-msgstr "Mục Heading"
+msgstr ""
-#. Label of a Data field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the section_id (Data) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Section ID"
msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: 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 "Security Settings"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:784
+#: frappe/public/js/frappe/ui/notifications/notifications.js:309
+msgid "See all Activity"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:858
msgid "See all past reports."
-msgstr "Xem tất cả các báo cáo trong quá khứ."
+msgstr ""
-#: public/js/frappe/form/form.js:1208
-#: website/doctype/contact_us_settings/contact_us_settings.js:4
+#: frappe/public/js/frappe/form/form.js:1235
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
-msgstr "Xem trên Website"
+msgstr ""
-#: website/doctype/web_form/templates/web_form.html:150
+#: frappe/website/doctype/web_form/templates/web_form.html:153
+msgctxt "Button in web form"
msgid "See previous responses"
msgstr ""
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:48
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:49
msgid "See the document at {0}"
-msgstr "Xem tài liệu tại {0}"
+msgstr ""
-#: core/doctype/error_log/error_log_list.js:5
+#. Label of the seen (Check) field in DocType 'Comment'
+#. Label of the seen (Check) field in DocType 'Communication'
+#. Label of the seen (Check) field in DocType 'Error Log'
+#. Label of the seen (Check) field in DocType 'Notification Settings'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/error_log/error_log_list.js:5
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Seen"
-msgstr "Đã xem"
+msgstr ""
-#. Label of a Check field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Seen"
-msgstr "Đã xem"
-
-#. Label of a Check field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Seen"
-msgstr "Đã xem"
-
-#. Label of a Check field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Seen"
-msgstr "Đã xem"
-
-#. Label of a Check field in DocType 'Error Log'
-#: core/doctype/error_log/error_log.json
-msgctxt "Error Log"
-msgid "Seen"
-msgstr "Đã xem"
-
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "Seen"
-msgstr "Đã xem"
-
-#. Label of a Section Break field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
+#. Label of the seen_by_section (Section Break) field in DocType 'Note'
+#: frappe/desk/doctype/note/note.json
msgid "Seen By"
-msgstr "Nhìn thấy bởi"
+msgstr ""
-#. Label of a Table field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
+#. Label of the seen_by (Table) field in DocType 'Note'
+#: frappe/desk/doctype/note/note.json
msgid "Seen By Table"
-msgstr "Nhìn thấy bằng Bảng"
-
-#: printing/page/print/print.js:592
-msgid "Select"
-msgstr "Chọn"
-
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Select"
-msgstr "Chọn"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Select"
-msgstr "Chọn"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Select"
-msgstr "Chọn"
+msgstr ""
+#. Label of the select (Check) field in DocType 'Custom DocPerm'
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Select"
-msgstr "Chọn"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Select"
-msgstr "Chọn"
-
+#. Label of the select (Check) field in DocType 'DocPerm'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Select"
-msgstr "Chọn"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Select"
-msgstr "Chọn"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Select"
-msgstr "Chọn"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/printing/page/print/print.js:602
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
-msgstr "Chọn"
+msgstr ""
-#: public/js/frappe/views/communication.js:150
-#: public/js/frappe/views/interaction.js:93
-#: public/js/frappe/views/interaction.js:155
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/public/js/frappe/form/controls/multicheck.js:166
+#: frappe/public/js/frappe/form/grid_row.js:481
+msgid "Select All"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:174
+#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/interaction.js:93
+#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
-msgstr "Chọn File đính kèm"
+msgstr ""
-#: custom/doctype/client_script/client_script.js:25
-#: custom/doctype/client_script/client_script.js:28
+#: frappe/custom/doctype/client_script/client_script.js:25
+#: frappe/custom/doctype/client_script/client_script.js:28
msgid "Select Child Table"
-msgstr "Chọn bảng con"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:357
+#: frappe/public/js/frappe/views/reports/report_view.js:377
msgid "Select Column"
-msgstr "Chọn Cột"
+msgstr ""
-#: public/js/frappe/form/print_utils.js:43
+#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "Select Columns"
-msgstr "Select Columns"
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:387
+#: frappe/desk/page/setup_wizard/setup_wizard.js:399
msgid "Select Country"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:404
+#: frappe/desk/page/setup_wizard/setup_wizard.js:415
msgid "Select Currency"
msgstr ""
-#: public/js/frappe/utils/dashboard_utils.js:240
+#. 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 "Chọn Bảng điều khiển"
-
-#. Label of a Link field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Select Dashboard"
-msgstr "Chọn Bảng điều khiển"
-
-#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Select Date Range"
-msgstr "Chọn phạm vi ngày"
-
-#: public/js/frappe/doctype/index.js:170
-msgid "Select DocType"
-msgstr "Chọn DocType"
-
-#. Label of a Link field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Select DocType"
-msgstr "Chọn DocType"
-
-#. Label of a Link field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
-msgid "Select Doctype"
-msgstr "Chọn loại tài liệu"
-
-#. Label of a Dynamic Link field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Select Document"
msgstr ""
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:50
-#: workflow/page/workflow_builder/workflow_builder.js:50
+#. 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 "Chọn kiểu tài liệu"
+msgstr ""
-#: core/page/permission_manager/permission_manager.js:172
+#: frappe/core/page/permission_manager/permission_manager.js:179
msgid "Select Document Type or Role to start."
-msgstr "Hãy chọn loại tài liệu hoặc Vai trò để bắt đầu."
+msgstr ""
-#: public/js/frappe/doctype/index.js:199 public/js/frappe/form/toolbar.js:762
+#: frappe/core/page/permission_manager/permission_manager_help.html:34
+msgid "Select Document Types to set which User Permissions are used to limit access."
+msgstr ""
+
+#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
+#: frappe/public/js/frappe/doctype/index.js:200
+#: frappe/public/js/frappe/form/toolbar.js:835
msgid "Select Field"
-msgstr "Chọn trường"
+msgstr ""
-#: public/js/frappe/form/grid_row.js:459
-#: public/js/frappe/list/list_settings.js:233
-#: public/js/frappe/views/kanban/kanban_settings.js:181
+#: frappe/public/js/frappe/ui/group_by/group_by.html:35
+#: frappe/public/js/frappe/ui/group_by/group_by.js:141
+msgid "Select Field..."
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:473
+#: frappe/public/js/frappe/list/list_settings.js:236
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
-msgstr "Chọn trường"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:143
+#: frappe/public/js/frappe/data_import/data_exporter.js:147
msgid "Select Fields To Insert"
-msgstr "Chọn trường để chèn"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:144
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Update"
-msgstr "Chọn các trường để cập nhật"
+msgstr ""
-#: public/js/frappe/list/list_sidebar_group_by.js:21
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:21
msgid "Select Filters"
-msgstr "Chọn bộ lọc"
+msgstr ""
-#: desk/doctype/event/event.py:96
+#: frappe/desk/doctype/event/event.py:103
msgid "Select Google Calendar to which event should be synced."
-msgstr "Chọn Lịch Google để đồng bộ hóa sự kiện."
+msgstr ""
-#: contacts/doctype/contact/contact.py:75
+#: frappe/contacts/doctype/contact/contact.py:77
msgid "Select Google Contacts to which contact should be synced."
-msgstr "Chọn Danh bạ Google mà liên hệ sẽ được đồng bộ hóa."
+msgstr ""
-#: public/js/frappe/list/list_view_select.js:185
+#: frappe/public/js/frappe/ui/group_by/group_by.html:10
+msgid "Select Group By..."
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view_select.js:185
msgid "Select Kanban"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:379
+#: frappe/desk/page/setup_wizard/setup_wizard.js:391
msgid "Select Language"
-msgstr "Chọn ngôn ngữ"
+msgstr ""
-#. Label of a Select field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the list_name (Select) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select List View"
msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:154
+#: frappe/public/js/frappe/data_import/data_exporter.js:158
msgid "Select Mandatory"
-msgstr "chọn Bắt buộc"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:235
+#: frappe/custom/doctype/customize_form/customize_form.js:280
msgid "Select Module"
-msgstr "Chọn module"
+msgstr ""
-#: printing/page/print/print.js:175 printing/page/print/print.js:575
+#: frappe/printing/page/print/print.js:175
+#: frappe/printing/page/print/print.js:585
msgid "Select Network Printer"
msgstr ""
-#. Label of a Link field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the page_name (Link) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Page"
msgstr ""
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: public/js/frappe/views/communication.js:144
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
+#: frappe/public/js/frappe/views/communication.js:157
msgid "Select Print Format"
-msgstr "Chọn In Định dạng"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:82
+#: frappe/printing/page/print_format_builder/print_format_builder.js:82
msgid "Select Print Format to Edit"
-msgstr "Chọn Format Print Edit"
+msgstr ""
-#. Label of a Link field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the report_name (Link) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Report"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:623
+#: frappe/printing/page/print_format_builder/print_format_builder.js:631
msgid "Select Table Columns for {0}"
-msgstr "Select Table Cột cho {0}"
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:396
+#: frappe/desk/page/setup_wizard/setup_wizard.js:408
msgid "Select Time Zone"
msgstr ""
-#. Label of a Autocomplete field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the transaction_type (Autocomplete) field in DocType 'Document
+#. Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Select Transaction"
-msgstr "Chọn giao dịch"
+msgstr ""
-#: workflow/page/workflow_builder/workflow_builder.js:68
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:68
msgid "Select Workflow"
msgstr ""
-#. Label of a Link field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the workspace_name (Link) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Workspace"
msgstr ""
-#: website/doctype/website_settings/website_settings.js:23
+#. Label of the select_workspaces_section (Section Break) field in DocType
+#. 'Workspace Settings'
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+msgid "Select Workspaces"
+msgstr ""
+
+#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
-msgstr "Chọn Nhãn hiệu Hình ảnh đầu tiên."
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:108
+#: frappe/printing/page/print_format_builder/print_format_builder.js:108
msgid "Select a DocType to make a new format"
-msgstr "Chọn một DOCTYPE để thực hiện một định dạng mới"
-
-#: integrations/doctype/webhook/webhook.py:130
-msgid "Select a document to check if it meets conditions."
msgstr ""
-#: integrations/doctype/webhook/webhook.py:142
-msgid "Select a document to preview request data"
+#: frappe/public/js/form_builder/components/Sidebar.vue:56
+msgid "Select a field to edit its properties."
msgstr ""
-#: public/js/frappe/views/treeview.js:342
+#: frappe/public/js/frappe/views/treeview.js:358
msgid "Select a group node first."
-msgstr "Chọn một nút nhóm đầu tiên."
+msgstr ""
-#: core/doctype/doctype/doctype.py:1885
+#: frappe/core/doctype/doctype/doctype.py:1942
msgid "Select a valid Sender Field for creating documents from Email"
-msgstr "Chọn Trường người gửi hợp lệ để tạo tài liệu từ Email"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1869
+#: frappe/core/doctype/doctype/doctype.py:1926
msgid "Select a valid Subject field for creating documents from Email"
-msgstr "Chọn trường Chủ đề hợp lệ để tạo tài liệu từ Email"
+msgstr ""
-#: public/js/frappe/form/form_tour.js:313
+#: frappe/public/js/frappe/form/form_tour.js:321
msgid "Select an Image"
msgstr ""
+#: frappe/www/apps.html:10
+msgid "Select an app to continue"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder_start.html:2
+msgid "Select an existing format to edit or start a new format."
+msgstr ""
+
#. Description of the 'Brand Image' (Attach Image) field in DocType 'Website
#. Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Select an image of approx width 150px with a transparent background for best results."
-msgstr "Chọn một hình ảnh của khoảng chiều rộng 150px với nền trong suốt cho kết quả tốt nhất."
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:34
+#: frappe/public/js/frappe/list/bulk_operations.js:36
msgid "Select atleast 1 record for printing"
-msgstr "Chọn ít nhất 1 kỷ lục cho in ấn"
+msgstr ""
-#: core/doctype/success_action/success_action.js:18
+#: frappe/core/doctype/success_action/success_action.js:18
msgid "Select atleast 2 actions"
-msgstr "Chọn ít nhất 2 hành động"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1201
+#: frappe/public/js/frappe/list/list_view.js:1304
msgctxt "Description of a list view shortcut"
msgid "Select list item"
-msgstr "Chọn mục danh sách"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1153
-#: public/js/frappe/list/list_view.js:1169
+#: frappe/public/js/frappe/list/list_view.js:1256
+#: frappe/public/js/frappe/list/list_view.js:1272
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
-msgstr "Chọn nhiều mục danh sách"
+msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:174
+#: frappe/public/js/frappe/views/calendar/calendar.js:167
msgid "Select or drag across time slots to create a new event."
-msgstr "Chọn hoặc kéo trên các khe thời gian để tạo ra một sự kiện mới."
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:195
+#: frappe/public/js/frappe/list/bulk_operations.js:239
msgid "Select records for assignment"
-msgstr "Chọn hồ sơ chuyển nhượng"
+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'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Select the label after which you want to insert new field."
-msgstr "Chọn nhãn sau đó bạn muốn chèn lĩnh vực mới."
+msgstr ""
-#: public/js/frappe/utils/diffview.js:101
+#: frappe/public/js/frappe/utils/diffview.js:102
msgid "Select two versions to view the diff."
msgstr ""
-#: public/js/frappe/form/link_selector.js:24
-#: public/js/frappe/form/multi_select_dialog.js:79
-#: public/js/frappe/form/multi_select_dialog.js:279
-#: public/js/frappe/list/list_view_select.js:153
+#: frappe/public/js/frappe/form/link_selector.js:24
+#: frappe/public/js/frappe/form/multi_select_dialog.js:80
+#: frappe/public/js/frappe/form/multi_select_dialog.js:282
+#: frappe/public/js/frappe/list/list_view_select.js:153
+#: frappe/public/js/print_format_builder/Preview.vue:90
msgid "Select {0}"
-msgstr "Chọn {0}"
+msgstr ""
-#: model/workflow.py:121
+#: frappe/model/workflow.py:117
msgid "Self approval is not allowed"
-msgstr "Tự phê duyệt không được phép"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:66
-#: email/doctype/newsletter/newsletter.js:74
-#: email/doctype/newsletter/newsletter.js:162
-#: public/js/frappe/views/communication.js:26 www/contact.html:41
+#: frappe/email/doctype/newsletter/newsletter.js:66
+#: frappe/email/doctype/newsletter/newsletter.js:74
+#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
msgid "Send"
-msgstr "Gửi"
+msgstr ""
-#. Label of a Datetime field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: 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 "Gởi Sau"
+msgstr ""
-#. Label of a Datetime field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Send After"
-msgstr "Gởi Sau"
-
-#. Label of a Select field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the event (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Send Alert On"
-msgstr "Gửi báo Mở"
+msgstr ""
-#. Label of a Check field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the send_email_alert (Check) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
-msgstr "Gửi thông báo qua email"
+msgstr ""
-#. Label of a Datetime field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Send Email At"
msgstr ""
+#. Label of the send_email (Check) field in DocType 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Send Email On State"
+msgstr ""
+
#. Description of the 'Send Print as PDF' (Check) field in DocType 'Print
#. Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Send Email Print Attachments as PDF (Recommended)"
-msgstr "Gửi Email In File đính kèm dưới dạng PDF (Recommended)"
+msgstr ""
-#. Label of a Check field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
+#. 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_email_for_successful_backup (Check) field in DocType
+#. 'Dropbox Settings'
+#. Label of the send_email_for_successful_backup (Check) field in DocType 'S3
+#. Backup Settings'
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Send Email for Successful Backup"
-msgstr "Gửi email để sao lưu thành công"
+msgstr ""
-#. Label of a Check field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Send Email for Successful Backup"
-msgstr "Gửi email để sao lưu thành công"
-
-#. Label of a Check field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
+#. Label of the send_email_for_successful_backup (Check) field in DocType
+#. 'Google Drive'
+#: frappe/integrations/doctype/google_drive/google_drive.json
msgid "Send Email for Successful backup"
-msgstr "Gửi email để sao lưu thành công"
+msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the send_me_a_copy (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Send Me A Copy of Outgoing Emails"
-msgstr "Gửi cho tôi một bản sao của email gửi đi"
+msgstr ""
-#. Label of a Data field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
+#. Label of the email (Data) field in DocType 'Google Drive'
+#: frappe/integrations/doctype/google_drive/google_drive.json
msgid "Send Notification To"
-msgstr "Gửi thông báo cho"
+msgstr ""
-#. Label of a Small Text field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the send_notification_to (Small Text) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Send Notification to"
-msgstr "Gửi thông báo tới"
+msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the document_follow_notify (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Send Notifications For Documents Followed By Me"
-msgstr "Gửi thông báo cho các tài liệu do tôi theo dõi"
+msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the thread_notify (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Send Notifications For Email Threads"
-msgstr "Gửi thông báo cho chuỗi email"
+msgstr ""
-#. Label of a Data field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
+#. Label of the send_notifications_to (Data) field in DocType 'Dropbox
+#. Settings'
+#. Label of the notify_email (Data) field in DocType 'S3 Backup Settings'
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Send Notifications To"
-msgstr "Gửi thông báo để"
+msgstr ""
-#. Label of a Data field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Send Notifications To"
-msgstr "Gửi thông báo để"
-
-#: email/doctype/auto_email_report/auto_email_report.js:21
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
-msgstr "Bây giờ gửi"
+msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the send_print_as_pdf (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Send Print as PDF"
-msgstr "Gửi In PDF"
+msgstr ""
-#: public/js/frappe/views/communication.js:134
+#: frappe/public/js/frappe/views/communication.js:147
msgid "Send Read Receipt"
-msgstr "Gửi tin xác nhận đọc"
+msgstr ""
-#. Label of a Check field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the send_system_notification (Check) field in DocType
+#. 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Send System Notification"
-msgstr "Gửi thông báo hệ thống"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:153
+#: frappe/email/doctype/newsletter/newsletter.js:153
msgid "Send Test Email"
msgstr ""
-#. Label of a Check field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
-msgstr "Gửi cho tất cả người được giao"
+msgstr ""
-#. Label of a Check field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Send Unsubscribe Link"
-msgstr "Gửi Hủy đăng ký liên kết"
+msgstr ""
-#. Label of a Check field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Send Web View Link"
msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the send_welcome_email (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
-msgstr "Gửi Welcome Email"
-
-#: www/me.html:67
-msgid "Send a request to delete your account"
msgstr ""
-#: email/doctype/newsletter/newsletter.js:10
+#: frappe/email/doctype/newsletter/newsletter.js:10
msgid "Send a test email"
msgstr ""
-#: email/doctype/newsletter/newsletter.js:166
+#: frappe/email/doctype/newsletter/newsletter.js:166
msgid "Send again"
msgstr ""
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
-msgstr "Gửi cảnh báo nếu ngày phù hợp với giá trị của lĩnh vực này"
+msgstr ""
+
+#. Description of the 'Reference Datetime' (Select) field in DocType
+#. 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Send alert if datetime matches this field's value"
+msgstr ""
#. Description of the 'Value Changed' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Send alert if this field's value changes"
-msgstr "Gửi cảnh báo nếu thay đổi giá trị của lĩnh vực này"
+msgstr ""
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the send_reminder (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Send an email reminder in the morning"
-msgstr "Gửi một email nhắc nhở trong buổi sáng"
+msgstr ""
#. Description of the 'Days Before or After' (Int) field in DocType
#. 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Send days before or after the reference date"
-msgstr "Gửi ngày trước hoặc sau ngày tham chiếu"
+msgstr ""
+
+#. Description of the 'Send Email On State' (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Send email when document transitions to the state."
+msgstr ""
#. Description of the 'Forward To Email Address' (Data) field in DocType
#. 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Send enquiries to this email address"
-msgstr "Gửi yêu cầu đến địa chỉ email này"
+msgstr ""
-#: www/login.html:210
+#: frappe/templates/includes/login/login.js:72 frappe/www/login.html:230
msgid "Send login link"
msgstr ""
-#: public/js/frappe/views/communication.js:128
+#: frappe/public/js/frappe/views/communication.js:141
msgid "Send me a copy"
-msgstr "Nhớ gửi Bản sao"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:46
+#: frappe/email/doctype/newsletter/newsletter.js:46
msgid "Send now"
msgstr ""
-#. Label of a Check field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
-msgstr "Chỉ gửi nếu có bất kỳ dữ liệu"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the send_unsubscribe_message (Check) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Send unsubscribe message in email"
-msgstr "Gửi tin nhắn hủy bỏ đăng ký trong email"
+msgstr ""
-#. Label of a Link field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the sender (Data) field in DocType 'Event'
+#. Label of the sender (Data) field in DocType 'ToDo'
+#. Label of the sender (Link) field in DocType 'Auto Email Report'
+#. Label of the sender (Data) field in DocType 'Email Queue'
+#. Label of the send_from (Data) field in DocType 'Newsletter'
+#. Label of the sender (Link) field in DocType 'Notification'
+#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/email/doctype/notification/notification.json
msgid "Sender"
-msgstr "Người gửi"
+msgstr ""
-#. Label of a Data field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Sender"
-msgstr "Người gửi"
-
-#. Label of a Data field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Sender"
-msgstr "Người gửi"
-
-#. Label of a Data field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Sender"
-msgstr "Người gửi"
-
-#. Label of a Link field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Sender"
-msgstr "Người gửi"
-
-#. Label of a Data field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Sender"
-msgstr "Người gửi"
-
-#. Label of a Data field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the sender_email (Data) field in DocType 'Newsletter'
+#. Label of the sender_email (Data) field in DocType 'Notification'
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
-msgstr "Email người gửi"
+msgstr ""
-#. Label of a Data field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Sender Email"
-msgstr "Email người gửi"
-
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the sender_field (Data) field in DocType 'DocType'
+#. Label of the sender_field (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sender Email Field"
msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Sender Email Field"
-msgstr ""
-
-#: core/doctype/doctype/doctype.py:1888
+#: frappe/core/doctype/doctype/doctype.py:1945
msgid "Sender Field should have Email in options"
-msgstr "Trường Người gửi phải có Email trong các tùy chọn"
+msgstr ""
-#. Label of a Data field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the sender_name (Data) field in DocType 'SMS Log'
+#. Label of the sender_name (Data) field in DocType 'Newsletter'
+#: frappe/core/doctype/sms_log/sms_log.json
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
-#. Label of a Data field in DocType 'SMS Log'
-#: core/doctype/sms_log/sms_log.json
-msgctxt "SMS Log"
-msgid "Sender Name"
-msgstr ""
-
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Sender Name Field"
-msgstr ""
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the sender_name_field (Data) field in DocType 'DocType'
+#. Label of the sender_name_field (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sender Name Field"
msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Sendgrid"
-msgstr "Sendgrid"
-
-#: email/doctype/newsletter/newsletter.js:201
-msgid "Sending"
-msgstr "Gửi"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Sending"
-msgstr "Gửi"
-
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
-msgstr "Gửi"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:203
+#: frappe/email/doctype/newsletter/newsletter.js:203
msgid "Sending emails"
msgstr ""
-#: email/doctype/newsletter/newsletter.js:164
+#: frappe/email/doctype/newsletter/newsletter.js:164
msgid "Sending..."
msgstr ""
-#: email/doctype/newsletter/newsletter.js:196
-#: email/doctype/newsletter/newsletter_list.js:5
-msgid "Sent"
-msgstr "Đã gửi"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Sent"
-msgstr "Đã gửi"
-
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Sent"
-msgstr "Đã gửi"
-
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
-#: email/doctype/email_queue_recipient/email_queue_recipient.json
-msgctxt "Email Queue Recipient"
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
+#: frappe/email/doctype/newsletter/newsletter.js:196
+#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
-msgstr "Đã gửi"
+msgstr ""
-#. Label of a Date field in DocType 'SMS Log'
-#: core/doctype/sms_log/sms_log.json
-msgctxt "SMS Log"
+#. Label of the sent_folder_name (Data) field in DocType 'Email Account'
+#. Label of the sent_folder_name (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Sent Folder Name"
+msgstr ""
+
+#. Label of the sent_on (Date) field in DocType 'SMS Log'
+#: frappe/core/doctype/sms_log/sms_log.json
msgid "Sent On"
msgstr ""
-#. Label of a Check field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the read_receipt (Check) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Sent Read Receipt"
-msgstr "Gửi xác nhận đọc"
+msgstr ""
-#. Label of a Code field in DocType 'SMS Log'
-#: core/doctype/sms_log/sms_log.json
-msgctxt "SMS Log"
+#. Label of the sent_to (Code) field in DocType 'SMS Log'
+#: frappe/core/doctype/sms_log/sms_log.json
msgid "Sent To"
msgstr ""
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the sent_or_received (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Sent or Received"
-msgstr "Gửi hoặc nhận"
+msgstr ""
#. Option for the 'Event Category' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/desk/doctype/event/event.json
msgid "Sent/Received Email"
-msgstr "Email đã gửi / nhận"
+msgstr ""
#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
-#: core/doctype/navbar_item/navbar_item.json
-msgctxt "Navbar Item"
+#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Separator"
-msgstr "Dấu phân cách"
+msgstr ""
-#. Label of a Float field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the sequence_id (Float) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Sequence Id"
msgstr ""
-#. Label of a Text field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. 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 "Danh sách loạt cho các giao dịch này"
+msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.py:116
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:115
msgid "Series Updated for {}"
msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.py:226
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:223
msgid "Series counter for {} updated to {} successfully"
msgstr ""
-#: core/doctype/doctype/doctype.py:1073
-#: core/doctype/document_naming_settings/document_naming_settings.py:171
+#: frappe/core/doctype/doctype/doctype.py:1109
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
-msgstr "Loạt {0} đã được sử dụng trong {1}"
+msgstr ""
#. Option for the 'Action Type' (Select) field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
+#: frappe/core/doctype/doctype_action/doctype_action.json
msgid "Server Action"
-msgstr "Hành động máy chủ"
+msgstr ""
-#: public/js/frappe/request.js:606
+#: frappe/app.py:383 frappe/public/js/frappe/request.js:611
+#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
-msgstr "Lỗi máy chủ"
+msgstr ""
-#. Label of a Data field in DocType 'Network Printer Settings'
-#: printing/doctype/network_printer_settings/network_printer_settings.json
-msgctxt "Network Printer Settings"
+#. Label of the server_ip (Data) field in DocType 'Network Printer Settings'
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Server IP"
-msgstr "IP máy chủ"
+msgstr ""
+#. Label of the server_script (Link) field in DocType 'Scheduled Job Type'
#. Name of a DocType
-#: core/doctype/server_script/server_script.json
-msgid "Server Script"
-msgstr "Tập lệnh máy chủ"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Server Script"
-msgstr "Tập lệnh máy chủ"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Server Script"
-msgstr "Tập lệnh máy chủ"
-
-#. Label of a Link field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Server Script"
-msgstr "Tập lệnh máy chủ"
-
#. Label of a Link in the Build Workspace
-#. Label of a shortcut in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Server Script"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/workspace/build/build.json
msgid "Server Script"
-msgstr "Tập lệnh máy chủ"
+msgstr ""
-#: utils/safe_exec.py:90
+#: frappe/utils/safe_exec.py:94
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
-#: core/doctype/server_script/server_script.js:32
+#: frappe/core/doctype/server_script/server_script.js:39
msgid "Server Scripts feature is not available on this site."
msgstr ""
-#: public/js/frappe/request.js:243 public/js/frappe/request.js:251
+#: frappe/public/js/frappe/request.js:254
+msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:246
msgid "Server was too busy to process this request. Please try again."
msgstr ""
-#. Label of a Select field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. 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 "Dịch vụ"
-
-#. Label of a Data field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Service"
-msgstr "Dịch vụ"
+msgstr ""
#. Name of a DocType
-#: core/doctype/session_default/session_default.json
+#: frappe/core/doctype/session_default/session_default.json
msgid "Session Default"
-msgstr "Phiên mặc định"
+msgstr ""
#. Name of a DocType
-#: core/doctype/session_default_settings/session_default_settings.json
+#: frappe/core/doctype/session_default_settings/session_default_settings.json
msgid "Session Default Settings"
-msgstr "Cài đặt mặc định phiên"
+msgstr ""
#. Label of a standard navbar item
#. Type: Action
-#: hooks.py public/js/frappe/ui/toolbar/toolbar.js:296
+#. Label of the session_defaults (Table) field in DocType 'Session Default
+#. Settings'
+#: frappe/core/doctype/session_default_settings/session_default_settings.json
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
msgid "Session Defaults"
-msgstr "Mặc định phiên"
+msgstr ""
-#. Label of a Table field in DocType 'Session Default Settings'
-#: core/doctype/session_default_settings/session_default_settings.json
-msgctxt "Session Default Settings"
-msgid "Session Defaults"
-msgstr "Mặc định phiên"
-
-#: public/js/frappe/ui/toolbar/toolbar.js:281
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
msgid "Session Defaults Saved"
-msgstr "Mặc định phiên đã lưu"
+msgstr ""
-#: app.py:345
+#: frappe/app.py:360
msgid "Session Expired"
-msgstr "Phiên hết hạn"
+msgstr ""
-#. Label of a Data field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the session_expiry (Data) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: core/doctype/system_settings/system_settings.py:110
+#: frappe/core/doctype/system_settings/system_settings.py:119
msgid "Session Expiry must be in format {0}"
-msgstr "Thời hạn Phiên làm việc phải có dạng {0}"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:562
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
+#: frappe/desk/doctype/number_card/number_card.js:295
+#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/public/js/frappe/widgets/chart_widget.js:447
+msgid "Set"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:607
msgctxt "Field value is set"
msgid "Set"
-msgstr "Cài đặt"
+msgstr ""
-#. Label of a Button field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the set_banner_from_image (Button) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Set Banner from Image"
-msgstr "Đặt Banner từ hình ảnh"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:201
msgid "Set Chart"
-msgstr "Đặt biểu đồ"
+msgstr ""
#. Description of the 'Chart Options' (Code) field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
+#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"])"
-msgstr "Đặt Tùy chọn Mặc định cho tất cả các biểu đồ trên Trang tổng quan này (Ví dụ: "color": ["# d1d8dd", "# ff5858"])"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: desk/doctype/number_card/number_card.js:361
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
+#: frappe/desk/doctype/number_card/number_card.js:367
msgid "Set Dynamic Filters"
-msgstr "Đặt bộ lọc động"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: desk/doctype/number_card/number_card.js:277
-#: website/doctype/web_form/web_form.js:260
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
+#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/public/js/form_builder/components/Field.vue:80
+#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
-msgstr "Đặt bộ lọc"
+msgstr ""
-#: public/js/frappe/widgets/chart_widget.js:395
-#: public/js/frappe/widgets/quick_list_widget.js:102
+#: frappe/public/js/frappe/widgets/chart_widget.js:436
+#: frappe/public/js/frappe/widgets/quick_list_widget.js:105
msgid "Set Filters for {0}"
-msgstr "Đặt Bộ lọc cho {0}"
+msgstr ""
-#: core/doctype/user_type/user_type.py:91
+#: frappe/public/js/frappe/views/reports/query_report.js:2050
+msgid "Set Level"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:92
msgid "Set Limit"
msgstr ""
#. Description of the 'Setup Series for transactions' (Section Break) field in
#. DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Set Naming Series options on your transactions."
msgstr ""
-#. Label of a Password field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the new_password (Password) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Set New Password"
-msgstr "Set Password mới"
+msgstr ""
-#: desk/page/backups/backups.js:8
+#: frappe/desk/page/backups/backups.js:8
msgid "Set Number of Backups"
-msgstr "Đặt Số Backups"
+msgstr ""
-#: www/update-password.html:9
+#: frappe/www/update-password.html:32
msgid "Set Password"
-msgstr "Đặt mật khẩu"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:112
+#: frappe/custom/doctype/customize_form/customize_form.js:112
msgid "Set Permissions"
-msgstr "đặt quyền"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:471
+#: frappe/printing/page/print_format_builder/print_format_builder.js:471
msgid "Set Properties"
msgstr ""
-#. Label of a Section Break field in DocType 'Notification'
-#. Label of a Select field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the property_section (Section Break) field in DocType
+#. 'Notification'
+#. Label of the set_property_after_alert (Select) field in DocType
+#. 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Set Property After Alert"
-msgstr "Đặt thuộc tính Sau khi Thông báo"
+msgstr ""
-#: public/js/frappe/form/link_selector.js:207
-#: public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:207
+#: frappe/public/js/frappe/form/link_selector.js:208
msgid "Set Quantity"
-msgstr "Đặt Số lượng"
+msgstr ""
-#. Label of a Select field in DocType 'Role Permission for Page and Report'
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgctxt "Role Permission for Page and Report"
+#. Label of the set_role_for (Select) field in DocType 'Role Permission for
+#. Page and Report'
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
msgid "Set Role For"
-msgstr "Đặt Vai trò Đối với"
+msgstr ""
-#: core/doctype/user/user.js:122
-#: core/page/permission_manager/permission_manager.js:65
+#: frappe/core/doctype/user/user.js:131
+#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
-msgstr "Thiết lập Quyền tài"
+msgstr ""
-#. Label of a Small Text field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#. Label of the value (Small Text) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Set Value"
-msgstr "Thiết lập giá trị"
+msgstr ""
-#: public/js/frappe/file_uploader/file_uploader.bundle.js:72
-#: public/js/frappe/file_uploader/file_uploader.bundle.js:124
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134
msgid "Set all private"
msgstr ""
-#: public/js/frappe/file_uploader/file_uploader.bundle.js:72
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82
msgid "Set all public"
msgstr ""
-#: printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:49
msgid "Set as Default"
-msgstr "Set as Default"
+msgstr ""
-#: website/doctype/website_theme/website_theme.js:33
+#: frappe/website/doctype/website_theme/website_theme.js:33
msgid "Set as Default Theme"
-msgstr "Đặt làm chủ đề mặc định"
-
-#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Set by user"
msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Set by user"
msgstr ""
-#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Set non-standard precision for a Float or Currency field"
-msgstr "Đặt độ chính xác phi tiêu chuẩn cho một lĩnh vực Float hoặc tệ"
-
-#. Description of the 'Precision' (Select) field in DocType 'Customize Form
-#. Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Set non-standard precision for a Float or Currency field"
-msgstr "Đặt độ chính xác phi tiêu chuẩn cho một lĩnh vực Float hoặc tệ"
+#: frappe/public/js/frappe/utils/dashboard_utils.js:162
+msgid "Set dynamic filter values in JavaScript for the required fields here."
+msgstr ""
#. Description of the 'Precision' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Set non-standard precision for a Float or Currency field"
-msgstr "Đặt độ chính xác phi tiêu chuẩn cho một lĩnh vực Float hoặc tệ"
-
+#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
+#. Description of the 'Precision' (Select) field in DocType 'Customize Form
+#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
-msgstr "Đặt độ chính xác phi tiêu chuẩn cho một lĩnh vực Float hoặc tệ"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the set_only_once (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
msgstr ""
+#. Description of the 'Max attachment size' (Int) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Set size in MB"
+msgstr ""
+
#. Description of the 'Filters Configuration' (Code) field in DocType 'Number
#. Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid ""
-"Set the filters here. For example:\n"
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Set the filters here. For example:\n"
"\n"
"[{\n"
"\tfieldname: \"company\",\n"
@@ -28069,11 +23638,8 @@ msgid ""
msgstr ""
#. Description of the 'Method' (Data) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid ""
-"Set the path to a whitelisted function that will return the data for the number card in the format:\n"
-"\n"
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Set the path to a whitelisted function that will return the data for the number card in the format:\n\n"
"\n"
"{\n"
"\t\"value\": value,\n"
@@ -28083,9824 +23649,8080 @@ msgid ""
"}
"
msgstr ""
-#: contacts/doctype/address_template/address_template.py:32
+#: frappe/contacts/doctype/address_template/address_template.py:33
msgid "Setting this Address Template as default as there is no other default"
-msgstr "Địa chỉ thiết lập mẫu này như mặc định là không có mặc định khác"
+msgstr ""
-#: desk/doctype/global_search_settings/global_search_settings.py:85
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:86
msgid "Setting up Global Search documents."
-msgstr "Thiết lập tài liệu Tìm kiếm toàn cầu."
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:273
+#: frappe/desk/page/setup_wizard/setup_wizard.js:285
msgid "Setting up your system"
-msgstr "Thiết lập hệ thống của bạn"
+msgstr ""
-#. Label of a Card Break in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-#: public/js/frappe/ui/toolbar/toolbar.js:254
-#: public/js/frappe/views/workspace/workspace.js:515
-msgid "Settings"
-msgstr "Cài đặt"
-
-#. Label of a Tab Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Settings"
-msgstr "Cài đặt"
-
-#. Label of a Tab Break field in DocType 'User'
+#. Label of the settings_tab (Tab Break) field in DocType 'DocType'
+#. Label of the settings_tab (Tab Break) field in DocType 'User'
#. Group in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Settings"
-msgstr "Cài đặt"
-
-#. Label of a Tab Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Settings"
-msgstr "Cài đặt"
-
-#. Label of a Tab Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Settings"
-msgstr "Cài đặt"
-
-#. Label of a Table field in DocType 'Navbar Settings'
-#: core/doctype/navbar_settings/navbar_settings.json
-msgctxt "Navbar Settings"
-msgid "Settings Dropdown"
-msgstr "Cài đặt thả xuống"
-
+#. Label of a Card Break in the Integrations Workspace
+#. Label of the settings_tab (Tab Break) field in DocType 'Web Form'
+#. Label of the settings (Tab Break) field in DocType 'Web Page'
#. Label of a Card Break in the Website Workspace
-#: public/js/frappe/ui/toolbar/search_utils.js:551
-#: website/workspace/website/website.json
-msgid "Setup"
-msgstr "Cài đặt"
+#: 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:313
+#: 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 ""
+
+#. Description of a DocType
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Settings to control blog categories and interactions like comments and likes"
+msgstr ""
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567
msgid "Setup"
-msgstr "Cài đặt"
-
-#. Title of an Onboarding Step
-#: custom/onboarding_step/workflows/workflows.json
-msgid "Setup Approval Workflows"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1658
-#: public/js/frappe/views/reports/report_view.js:1609
+#: 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:1763
+#: frappe/public/js/frappe/views/reports/report_view.js:1698
msgid "Setup Auto Email"
-msgstr "Cài đặt tự động Email"
-
-#: desk/page/setup_wizard/setup_wizard.js:204
-msgid "Setup Complete"
-msgstr "thiết lập hoàn thành"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Setup Complete"
-msgstr "thiết lập hoàn thành"
-
-#. Title of an Onboarding Step
-#: custom/onboarding_step/role_permissions/role_permissions.json
-msgid "Setup Limited Access for a User"
msgstr ""
-#. Title of an Onboarding Step
-#: custom/onboarding_step/naming_series/naming_series.json
-msgid "Setup Naming Series"
+#. 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 a Section Break field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the setup_series (Section Break) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Setup Series for transactions"
msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Share"
-msgstr "Chia sẻ"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Share"
-msgstr "Chia sẻ"
-
-#. Label of a Check field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "Share"
-msgstr "Chia sẻ"
+#: frappe/desk/page/setup_wizard/setup_wizard.js:236
+msgid "Setup failed"
+msgstr ""
+#. Label of the share (Check) field in DocType 'Custom DocPerm'
+#. Label of the share (Check) field in DocType 'DocPerm'
+#. Label of the share (Check) field in DocType 'DocShare'
+#. Label of the share (Check) field in DocType 'User Document Type'
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:90
msgid "Share"
-msgstr "Chia sẻ"
+msgstr ""
-#: public/js/frappe/form/sidebar/share.js:107
+#: frappe/public/js/frappe/form/sidebar/share.js:107
msgid "Share With"
-msgstr "Chia sẻ với"
+msgstr ""
-#: public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/templates/set_sharing.html:49
+msgid "Share this document with"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/share.js:45
msgid "Share {0} with"
-msgstr "Chia sẻ {0} với"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Shared"
-msgstr "Chia sẻ"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Shared"
-msgstr "Chia sẻ"
-
-#: desk/form/assign_to.py:127
+#: frappe/desk/form/assign_to.py:132
msgid "Shared with the following Users with Read access:{0}"
-msgstr "Được chia sẻ với những Người dùng sau có quyền truy cập Đọc: {0}"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Shipping"
-msgstr "Vận chuyển"
+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'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Shop"
-msgstr "Cửa hàng"
+msgstr ""
-#. Label of a Data field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
+#. Label of the short_name (Data) field in DocType 'Blogger'
+#: frappe/website/doctype/blogger/blogger.json
msgid "Short Name"
-msgstr "Tên viết tắt"
+msgstr ""
-#: utils/password_strength.py:93
+#: frappe/utils/password_strength.py:91
msgid "Short keyboard patterns are easy to guess"
-msgstr "các mẫu bàn phím ngắn rất dễ đoán"
+msgstr ""
-#. Label of a Table field in DocType 'Workspace'
-#. Label of a Tab Break field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the shortcuts (Table) field in DocType 'Workspace'
+#. Label of the tab_break_15 (Tab Break) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "Shortcuts"
-msgstr "Phím tắt"
+msgstr ""
-#: public/js/frappe/widgets/base_widget.js:46
-#: public/js/frappe/widgets/base_widget.js:176 www/login.html:30
+#: frappe/public/js/frappe/widgets/base_widget.js:46
+#: frappe/public/js/frappe/widgets/base_widget.js:178
+#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
msgid "Show"
-msgstr "Chỉ"
+msgstr ""
-#. Label of a Check field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Show \"Call to Action\" in Blog"
msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the absolute_value (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Absolute Values"
msgstr ""
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Show Attachments"
-msgstr "Hiển thị tệp đính kèm"
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:73
+msgid "Show All"
+msgstr ""
-#: desk/doctype/calendar_view/calendar_view.js:10
+#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
-msgstr "Hiển thị lịch"
+msgstr ""
-#. Label of a Check field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the symbol_on_right (Check) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
msgid "Show Currency Symbol on Right Side"
msgstr ""
-#: desk/doctype/dashboard/dashboard.js:6
+#. Label of the show_dashboard (Check) field in DocType 'DocField'
+#. Label of the show_dashboard (Check) field in DocType 'Custom Field'
+#. Label of the show_dashboard (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/dashboard/dashboard.js:6
msgid "Show Dashboard"
-msgstr "Hiển thị bảng điều khiển"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Show Dashboard"
-msgstr "Hiển thị bảng điều khiển"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Show Dashboard"
-msgstr "Hiển thị bảng điều khiển"
-
-#. Label of a Button field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the show_document (Button) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "Show Document"
-msgstr "Hiển thị tài liệu"
+msgstr ""
-#: www/error.html:41 www/error.html:59
+#: frappe/www/error.html:42 frappe/www/error.html:65
msgid "Show Error"
msgstr ""
-#. Label of a Check field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Show Failed Logs"
-msgstr "Hiển thị nhật ký thất bại"
-
-#: public/js/frappe/form/layout.js:545
+#: frappe/public/js/frappe/form/layout.js:579
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the first_document (Check) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Show First Document Tour"
msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
-#. Label of a Check field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the show_form_tour (Check) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show Form Tour"
-msgstr "Hiển thị Tham quan Biểu mẫu"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the allow_error_traceback (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Show Full Error and Allow Reporting of Issues to the Developer"
-msgstr "Xem lỗi đầy đủ và cho phép báo cáo vấn đề lên nhà phát triển"
+msgstr ""
-#. Label of a Check field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the show_full_form (Check) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show Full Form?"
-msgstr "Hiển thị Mẫu đầy đủ?"
+msgstr ""
-#: public/js/frappe/ui/keyboard.js:228
+#. Label of the show_full_number (Check) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Show Full Number"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/keyboard.js:234
msgid "Show Keyboard Shortcuts"
-msgstr "Hiển thị phím tắt"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_settings.js:30
+#. Label of the show_labels (Check) field in DocType 'Kanban Board'
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:30
msgid "Show Labels"
msgstr ""
-#. Label of a Check field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Show Labels"
-msgstr ""
-
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the show_language_picker (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show Language Picker"
msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the line_breaks (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Line Breaks after Sections"
-msgstr "Hiện dòng Breaks sau mục"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Show List"
msgstr ""
-#. Label of a Check field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/public/js/frappe/form/toolbar.js:407
+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 "Hiển thị Thống kê Phần trăm"
+msgstr ""
-#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:30
+#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30
msgid "Show Permissions"
-msgstr "Hiện Quyền"
+msgstr ""
-#: public/js/form_builder/form_builder.bundle.js:31
-#: public/js/form_builder/form_builder.bundle.js:43
-#: public/js/print_format_builder/print_format_builder.bundle.js:18
-#: public/js/print_format_builder/print_format_builder.bundle.js:54
+#: frappe/public/js/form_builder/form_builder.bundle.js:31
+#: frappe/public/js/form_builder/form_builder.bundle.js:43
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:18
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54
msgid "Show Preview"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the show_preview_popup (Check) field in DocType 'DocType'
+#. Label of the show_preview_popup (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Show Preview Popup"
-msgstr "Hiển thị xem trước Popup"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Show Preview Popup"
-msgstr "Hiển thị xem trước Popup"
-
-#. Label of a Check field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#. Label of the show_processlist (Check) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
msgid "Show Processlist"
msgstr ""
-#: core/doctype/error_log/error_log.js:9
+#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
msgstr ""
-#: core/doctype/prepared_report/prepared_report.js:43
-#: core/doctype/report/report.js:13
+#. Label of the show_report (Button) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.js:43
+#: frappe/core/doctype/report/report.js:16
msgid "Show Report"
-msgstr "Hiển thị báo cáo"
+msgstr ""
-#. Label of a Button field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
-msgid "Show Report"
-msgstr "Hiển thị báo cáo"
-
-#: public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:15
+#: frappe/public/js/frappe/list/list_filter.js:94
msgid "Show Saved"
msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the show_section_headings (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Section Headings"
-msgstr "Hiện tiêu đề mục"
+msgstr ""
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the show_sidebar (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Show Sidebar"
-msgstr "Hiện Sidebar"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Show Sidebar"
-msgstr "Hiện Sidebar"
-
-#: public/js/frappe/list/list_view.js:1566
+#: frappe/public/js/frappe/list/list_sidebar.html:77
+#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
-msgstr "Hiển thị thẻ"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the show_title (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Show Title"
-msgstr "HIện tiêu đề"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the show_title_field_in_link (Check) field in DocType 'DocType'
+#. Label of the show_title_field_in_link (Check) field in DocType 'Customize
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Show Title in Link Fields"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Show Title in Link Fields"
-msgstr ""
-
-#: public/js/frappe/views/reports/report_view.js:1453
+#: frappe/public/js/frappe/views/reports/report_view.js:1521
msgid "Show Totals"
-msgstr "Hiện Totals"
+msgstr ""
-#: desk/doctype/form_tour/form_tour.js:116
+#: frappe/desk/doctype/form_tour/form_tour.js:116
msgid "Show Tour"
msgstr ""
-#: public/js/frappe/data_import/import_preview.js:200
+#: frappe/core/doctype/data_import/data_import.js:448
+msgid "Show Traceback"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
-msgstr "Hiển thị cảnh báo"
+msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:184
+#: frappe/public/js/frappe/views/calendar/calendar.js:179
msgid "Show Weekends"
-msgstr "Hiển thị các ngày cuối tuần"
+msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the show_account_deletion_link (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show account deletion link in My Account page"
msgstr ""
-#: core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:6
msgid "Show all Versions"
-msgstr "Hiển thị tất cả các phiên bản"
+msgstr ""
-#: website/doctype/blog_post/templates/blog_post_list.html:24
+#: frappe/public/js/frappe/form/footer/form_timeline.js:69
+msgid "Show all activity"
+msgstr ""
+
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24
msgid "Show all blogs"
msgstr ""
-#. Label of a Small Text field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#. Label of the show_as_cc (Small Text) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Show as cc"
-msgstr "Hiển thị như cc"
+msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the show_attachments (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Show attachments"
+msgstr ""
+
+#. Label of the show_footer_on_login (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show footer on login"
msgstr ""
#. Description of the 'Show Full Form?' (Check) field in DocType 'Onboarding
#. Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show full form instead of a quick entry modal"
-msgstr "Hiển thị biểu mẫu đầy đủ thay vì một phương thức nhập nhanh"
+msgstr ""
-#. Label of a Select field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the document_type (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Show in Module Section"
-msgstr "Hiện trong Module Mục"
+msgstr ""
-#. Label of a Check field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
-msgstr "Hiển thị trong bộ lọc"
+msgstr ""
-#. Label of a Check field in DocType 'Slack Webhook URL'
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.json
-msgctxt "Slack Webhook URL"
+#. Label of the show_document_link (Check) field in DocType 'Slack Webhook URL'
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
msgid "Show link to document"
msgstr ""
-#: public/js/frappe/form/layout.js:265
+#. Label of the show_list (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Show list"
+msgstr ""
+
+#: frappe/public/js/frappe/form/layout.js:273
+#: frappe/public/js/frappe/form/layout.js:291
msgid "Show more details"
-msgstr "Hiển thị thêm thông tin chi tiết"
+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'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Show percentage difference according to this time interval"
-msgstr "Hiển thị phần trăm chênh lệch theo khoảng thời gian này"
+msgstr ""
+
+#. Label of the show_sidebar (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Show sidebar"
+msgstr ""
#. Description of the 'Title Prefix' (Data) field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show title in browser window as \"Prefix - title\""
-msgstr "Hiển thị tiêu đề trong cửa sổ trình duyệt như "Prefix - title""
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:475
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:148
+msgid "Show {0} List"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:495
msgid "Showing only Numeric fields from Report"
-msgstr "Chỉ hiển thị các trường Số liệu từ Báo cáo"
+msgstr ""
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#: frappe/public/js/frappe/data_import/import_preview.js:153
+msgid "Showing only first {0} rows out of {1}"
+msgstr ""
+
+#. Label of the list_sidebar (Check) field in DocType 'User'
+#. Label of the form_sidebar (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Sidebar"
msgstr ""
-#. Label of a Table field in DocType 'Website Sidebar'
-#: website/doctype/website_sidebar/website_sidebar.json
-msgctxt "Website Sidebar"
+#. Label of the sidebar_items (Table) field in DocType 'Website Sidebar'
+#: frappe/website/doctype/website_sidebar/website_sidebar.json
msgid "Sidebar Items"
-msgstr "Mục bên"
+msgstr ""
-#. Label of a Section Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the section_break_4 (Section Break) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Sidebar Settings"
-msgstr "Cài đặt sidebar"
+msgstr ""
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the section_break_17 (Section Break) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Sidebar and Comments"
-msgstr "sidebar và Bình luận"
+msgstr ""
-#. Label of a Section Break field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#. Label of the sign_up_and_confirmation_section (Section Break) field in
+#. DocType 'Email Group'
+#: frappe/email/doctype/email_group/email_group.json
msgid "Sign Up and Confirmation"
msgstr ""
-#: core/doctype/user/user.py:972
+#: frappe/core/doctype/user/user.py:1016
msgid "Sign Up is disabled"
-msgstr "Đăng ký bị vô hiệu hóa"
+msgstr ""
-#: templates/signup.html:16 www/login.html:120 www/login.html:136
-#: www/update-password.html:35
+#: frappe/templates/signup.html:16 frappe/www/login.html:140
+#: frappe/www/login.html:156 frappe/www/update-password.html:58
msgid "Sign up"
-msgstr "Đăng ký"
+msgstr ""
-#. Label of a Select field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the sign_ups (Select) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Sign ups"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Signature"
-msgstr "Chữ ký"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Signature"
-msgstr "Chữ ký"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Signature"
-msgstr "Chữ ký"
-
-#. Label of a Section Break field in DocType 'Email Account'
-#. Label of a Text Editor field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Signature"
-msgstr "Chữ ký"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the signature_section (Section Break) field in DocType 'Email
+#. Account'
+#. Label of the signature (Text Editor) field in DocType 'Email Account'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Signature"
-msgstr "Chữ ký"
+msgstr ""
-#: www/login.html:148
+#: frappe/www/login.html:168
msgid "Signup Disabled"
-msgstr "Đăng ký bị vô hiệu hóa"
+msgstr ""
-#: www/login.html:149
+#: frappe/www/login.html:169
msgid "Signups have been disabled for this website."
-msgstr "Đăng ký đã bị vô hiệu hóa cho trang web này."
+msgstr ""
#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
#. Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr "Biểu thức Python đơn giản, Ví dụ: Trạng thái trong ("Đã đóng", "Đã hủy")"
+msgstr ""
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
-msgstr "Biểu thức Python đơn giản, Ví dụ: Trạng thái trong ("Không hợp lệ")"
+msgstr ""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
-msgstr "Biểu thức Python đơn giản, Ví dụ: status == 'Open' và gõ == 'Bug'"
+msgstr ""
-#. Label of a Int field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the simultaneous_sessions (Int) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
-msgstr "phiên đồng thời"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:121
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Single DocTypes cannot be customized."
-msgstr "DocTypes đơn không thể được tùy chỉnh."
-
-#: core/doctype/doctype/doctype_list.js:51
-msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
-msgstr "Các loại duy nhất chỉ có 1 bản ghi không có bảng liên hệ. Các định mức được tích trữ tại tabSingles"
+msgstr ""
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:67
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
-msgstr "Các loại duy nhất chỉ có 1 bản ghi không có bảng liên hệ. Các định mức được tích trữ tại tabSingles"
+msgstr ""
-#: database/database.py:230
+#: frappe/database/database.py:284
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
msgstr ""
-#: public/js/onboarding_tours/onboarding_tours.js:18
+#: frappe/public/js/frappe/views/file/file_view.js:337
+msgid "Size"
+msgstr ""
+
+#. 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 "Nhảy"
+msgstr ""
-#. Label of a Check field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
+#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
+#. Settings'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
msgid "Skip Authorization"
-msgstr "Bỏ qua ủy quyền"
+msgstr ""
-#. Label of a Select field in DocType 'OAuth Provider Settings'
-#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
-msgctxt "OAuth Provider Settings"
-msgid "Skip Authorization"
-msgstr "Bỏ qua ủy quyền"
-
-#: public/js/frappe/widgets/onboarding_widget.js:337
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:332
msgid "Skip Step"
-msgstr "Bỏ qua bước"
+msgstr ""
-#. Label of a Check field in DocType 'Patch Log'
-#: core/doctype/patch_log/patch_log.json
-msgctxt "Patch Log"
+#. Label of the skipped (Check) field in DocType 'Patch Log'
+#: frappe/core/doctype/patch_log/patch_log.json
msgid "Skipped"
msgstr ""
-#: core/doctype/data_import/importer.py:905
+#: frappe/core/doctype/data_import/importer.py:952
msgid "Skipping Duplicate Column {0}"
-msgstr "Bỏ qua cột trùng lặp {0}"
+msgstr ""
-#: core/doctype/data_import/importer.py:930
+#: frappe/core/doctype/data_import/importer.py:977
msgid "Skipping Untitled Column"
-msgstr "Bỏ qua cột không tên"
+msgstr ""
-#: core/doctype/data_import/importer.py:916
+#: frappe/core/doctype/data_import/importer.py:963
msgid "Skipping column {0}"
-msgstr "Bỏ qua cột {0}"
+msgstr ""
-#: modules/utils.py:162
+#: frappe/modules/utils.py:176
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr ""
-#: core/doctype/data_import/data_import.js:39
+#: frappe/core/doctype/data_import/data_import.js:39
msgid "Skipping {0} of {1}, {2}"
msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the skype (Data) field in DocType 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Skype"
-msgstr "Skype"
+msgstr ""
#. Option for the 'Channel' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Slack"
-msgstr "Slack"
+msgstr ""
-#. Label of a Link field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the slack_webhook_url (Link) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Slack Channel"
-msgstr "Slack Channel"
+msgstr ""
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:64
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65
msgid "Slack Webhook Error"
-msgstr "Lỗi Webhook Slack"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.json
-msgid "Slack Webhook URL"
-msgstr "URL Webhook Slack"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Slack Webhook URL"
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Slack Webhook URL"
-msgstr "URL Webhook Slack"
+msgstr ""
-#. Label of a Link field in DocType 'Web Page'
+#. Label of the slideshow (Link) field in DocType 'Web Page'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/website/doctype/web_page/web_page.json
msgid "Slideshow"
-msgstr "Ảnh Slideshow"
+msgstr ""
-#. Label of a Table field in DocType 'Website Slideshow'
-#: website/doctype/website_slideshow/website_slideshow.json
-msgctxt "Website Slideshow"
+#. Label of the slideshow_items (Table) field in DocType 'Website Slideshow'
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Items"
-msgstr "Slideshow mục"
+msgstr ""
-#. Label of a Data field in DocType 'Website Slideshow'
-#: website/doctype/website_slideshow/website_slideshow.json
-msgctxt "Website Slideshow"
+#. Label of the slideshow_name (Data) field in DocType 'Website Slideshow'
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Name"
-msgstr "Tên slideshow"
+msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Small Text"
-msgstr "Tiêu đề nhỏ"
+#. Description of a DocType
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
+msgid "Slideshow like display for the website"
+msgstr ""
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Small Text"
-msgstr "Tiêu đề nhỏ"
+#. Label of the slug (Data) field in DocType 'UTM Campaign'
+#. Label of the slug (Data) field in DocType 'UTM Medium'
+#. Label of the slug (Data) field in DocType 'UTM Source'
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+msgid "Slug"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Small Text"
-msgstr "Tiêu đề nhỏ"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Small Text"
-msgstr "Tiêu đề nhỏ"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Small Text"
-msgstr "Tiêu đề nhỏ"
+msgstr ""
-#. Label of a Currency field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the smallest_currency_fraction_value (Currency) field in DocType
+#. 'Currency'
+#: frappe/geo/doctype/currency/currency.json
msgid "Smallest Currency Fraction Value"
-msgstr "Nhỏ nhất Fraction tệ Giá trị"
+msgstr ""
#. Description of the 'Smallest Currency Fraction Value' (Currency) field in
#. DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#: frappe/geo/doctype/currency/currency.json
msgid "Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01"
-msgstr "Nhỏ nhất đơn vị lưu thông phân số (tiền xu). Đối với ví dụ 1 cent cho USD và nó cần được nhập như 0.01"
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.js:32
+msgid "Snippet and more variables: {0}"
+msgstr ""
#. Name of a DocType
-#: website/doctype/social_link_settings/social_link_settings.json
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "Social Link Settings"
-msgstr "Cài đặt liên kết xã hội"
+msgstr ""
-#. Label of a Select field in DocType 'Social Link Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#. Label of the social_link_type (Select) field in DocType 'Social Link
+#. Settings'
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "Social Link Type"
-msgstr "Loại liên kết xã hội"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/social_login_key/social_login_key.json
-msgid "Social Login Key"
-msgstr "Khóa đăng nhập xã hội"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Social Login Key"
-msgstr "Khóa đăng nhập xã hội"
+msgstr ""
-#. Label of a Select field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the social_login_provider (Select) field in DocType 'Social Login
+#. Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Social Login Provider"
-msgstr "Nhà cung cấp đăng nhập xã hội"
+msgstr ""
-#. Label of a Table field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the social_logins (Table) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Social Logins"
-msgstr "Đăng nhập xã hội"
+msgstr ""
+
+#. Label of the socketio_ping_check (Select) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "SocketIO Ping Check"
+msgstr ""
+
+#. Label of the socketio_transport_mode (Select) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "SocketIO Transport Mode"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Soft-Bounced"
-msgstr "Hỏng mềm"
+msgstr ""
-#: public/js/frappe/desk.js:20
+#: 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 "Một số tính năng có thể không hoạt động trong trình duyệt của bạn. Vui lòng cập nhật trình duyệt của bạn lên phiên bản mới nhất."
+msgstr ""
-#: public/js/frappe/views/translation_manager.js:101
+#: frappe/public/js/frappe/views/translation_manager.js:101
msgid "Something went wrong"
-msgstr "Có gì đó sai sót"
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:116
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:133
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
-msgstr "Đã xảy ra lỗi trong quá trình tạo mã thông báo. Nhấp vào {0} để tạo một cái mới."
+msgstr ""
-#: public/js/frappe/views/pageview.js:110
+#: frappe/templates/includes/login/login.js:293
+msgid "Something went wrong."
+msgstr ""
+
+#: frappe/public/js/frappe/views/pageview.js:114
msgid "Sorry! I could not find what you were looking for."
-msgstr "Xin lỗi! Tôi không thể tìm thấy những gì bạn yêu cầu"
+msgstr ""
-#: public/js/frappe/views/pageview.js:118
+#: frappe/public/js/frappe/views/pageview.js:122
msgid "Sorry! You are not permitted to view this page."
-msgstr "Xin lỗi! Bạn không được phép xem trang này."
+msgstr ""
-#: public/js/frappe/utils/datatable.js:6
+#: frappe/public/js/frappe/utils/datatable.js:6
msgid "Sort Ascending"
msgstr ""
-#: public/js/frappe/utils/datatable.js:7
+#: frappe/public/js/frappe/utils/datatable.js:7
msgid "Sort Descending"
msgstr ""
-#. Label of a Select field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the sort_field (Select) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sort Field"
-msgstr "Trường sắp xếp"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the sort_options (Check) field in DocType 'DocField'
+#. Label of the sort_options (Check) field in DocType 'Custom Field'
+#. Label of the sort_options (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Sort Options"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Sort Options"
-msgstr ""
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Sort Options"
-msgstr ""
-
-#. Label of a Select field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the sort_order (Select) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sort Order"
-msgstr "Thứ tự sắp xếp"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1501
+#: frappe/core/doctype/doctype/doctype.py:1550
msgid "Sort field {0} must be a valid fieldname"
-msgstr "Sắp xếp trường {0} phải là một trường tên hợp lệ"
+msgstr ""
-#: public/js/frappe/utils/utils.js:1705
-#: website/report/website_analytics/website_analytics.js:38
+#. Label of the source (Data) field in DocType 'Web Page View'
+#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
+#: frappe/public/js/frappe/utils/utils.js:1717
+#: 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 "Nguồn"
+msgstr ""
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Source"
-msgstr "Nguồn"
-
-#. Label of a Small Text field in DocType 'Website Route Redirect'
-#: website/doctype/website_route_redirect/website_route_redirect.json
-msgctxt "Website Route Redirect"
-msgid "Source"
-msgstr "Nguồn"
-
-#. Label of a Data field in DocType 'Dashboard Chart Source'
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
-msgctxt "Dashboard Chart Source"
+#. Label of the source_name (Data) field in DocType 'Dashboard Chart Source'
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
msgid "Source Name"
-msgstr "Tên nguồn"
+msgstr ""
-#: public/js/frappe/views/translation_manager.js:38
+#. Label of the source_text (Code) field in DocType 'Translation'
+#: frappe/core/doctype/translation/translation.json
+#: frappe/public/js/frappe/views/translation_manager.js:38
msgid "Source Text"
-msgstr "Tiêu đề nguồn"
+msgstr ""
-#. Label of a Code field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
-msgid "Source Text"
-msgstr "Tiêu đề nguồn"
+#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:23
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:174
+msgid "Spacer"
+msgstr ""
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Spam"
-msgstr "RAC"
+msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "SparkPost"
-msgstr "Trang web SparkPost"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:83
+#: frappe/custom/doctype/custom_field/custom_field.js:83
msgid "Special Characters are not allowed"
-msgstr "Kí tự đặc biệt không được dùng"
+msgstr ""
-#: model/naming.py:58
+#: frappe/model/naming.py:68
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
-msgstr "Các ký tự đặc biệt ngoại trừ "-", "#", ".", "/", "{{" Và "}}" không được phép trong chuỗi đặt tên {0}"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Description of the 'Timeout (In Seconds)' (Int) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Specify a custom timeout, default timeout is 1500 seconds"
+msgstr ""
+
+#. Description of the 'Allowed embedding domains' (Small Text) field in DocType
+#. 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin."
+msgstr ""
+
+#. Label of the splash_image (Attach Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Splash Image"
msgstr ""
-#: desk/reportview.py:365 templates/print_formats/standard_macros.html:44
+#: frappe/desk/reportview.py:419
+#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
-msgstr "sr"
+msgstr ""
-#: core/doctype/recorder/recorder.js:33
+#: frappe/public/js/print_format_builder/Field.vue:143
+#: frappe/public/js/print_format_builder/Field.vue:164
+msgid "Sr No."
+msgstr ""
+
+#. Label of the stack_html (HTML) field in DocType 'Recorder Query'
+#: frappe/core/doctype/recorder/recorder.js:82
+#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Stack Trace"
msgstr ""
-#. Label of a HTML field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
-msgid "Stack Trace"
+#. 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 ""
-#: core/doctype/user_type/user_type_list.js:5
-msgid "Standard"
-msgstr "Tiêu chuẩn"
-
-#. Label of a Check field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Standard"
-msgstr "Tiêu chuẩn"
-
-#. Label of a Select field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Standard"
-msgstr "Tiêu chuẩn"
-
-#. Label of a Select field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Standard"
-msgstr "Tiêu chuẩn"
-
-#. Label of a Check field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
-msgid "Standard"
-msgstr "Tiêu chuẩn"
-
-#. Label of a Check field in DocType 'Print Style'
-#: printing/doctype/print_style/print_style.json
-msgctxt "Print Style"
-msgid "Standard"
-msgstr "Tiêu chuẩn"
-
-#. Label of a Check field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
-msgid "Standard"
-msgstr "Tiêu chuẩn"
-
-#: model/delete_doc.py:79
+#: frappe/model/delete_doc.py:78
msgid "Standard DocType can not be deleted."
msgstr ""
-#: core/doctype/doctype/doctype.py:228
+#: frappe/core/doctype/doctype/doctype.py:228
msgid "Standard DocType cannot have default print format, use Customize Form"
-msgstr "Loại văn bản tiêu chuẩn không thể có định dạng in mặc định, sử dụng dạng tùy chỉnh"
+msgstr ""
-#: desk/doctype/dashboard/dashboard.py:59
+#: frappe/desk/doctype/dashboard/dashboard.py:58
msgid "Standard Not Set"
-msgstr "Tiêu chuẩn không được đặt"
+msgstr ""
-#: printing/doctype/print_format/print_format.py:74
+#: frappe/core/page/permission_manager/permission_manager.js:132
+msgid "Standard Permissions"
+msgstr ""
+
+#: frappe/printing/doctype/print_format/print_format.py:75
msgid "Standard Print Format cannot be updated"
-msgstr "Tiêu chuẩn In Định dạng không thể được cập nhật"
+msgstr ""
-#: printing/doctype/print_style/print_style.py:31
+#: frappe/printing/doctype/print_style/print_style.py:31
msgid "Standard Print Style cannot be changed. Please duplicate to edit."
-msgstr "Không thể thay đổi kiểu chữ in tiêu chuẩn. Hãy sao chép để chỉnh sửa."
+msgstr ""
-#: desk/reportview.py:316
+#: frappe/desk/reportview.py:354
msgid "Standard Reports cannot be deleted"
msgstr ""
-#: desk/reportview.py:287
+#: frappe/desk/reportview.py:325
msgid "Standard Reports cannot be edited"
msgstr ""
-#. Label of a Section Break field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the standard_menu_items (Section Break) field in DocType 'Portal
+#. Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Standard Sidebar Menu"
-msgstr "Thanh menu tiêu chuẩn bên cạnh"
+msgstr ""
-#: core/doctype/role/role.py:61
+#: frappe/website/doctype/web_form/web_form.js:40
+msgid "Standard Web Forms can not be modified, duplicate the Web Form instead."
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "Standard rich text editor with controls"
+msgstr ""
+
+#: frappe/core/doctype/role/role.py:46
msgid "Standard roles cannot be disabled"
-msgstr "Các vai trò tiêu chuẩn không thể bị vô hiệu hóa"
+msgstr ""
-#: core/doctype/role/role.py:48
+#: frappe/core/doctype/role/role.py:32
msgid "Standard roles cannot be renamed"
-msgstr "Vai trò tiêu chuẩn không thể đổi tên"
+msgstr ""
-#: core/doctype/user_type/user_type.py:60
+#: frappe/core/doctype/user_type/user_type.py:61
msgid "Standard user type {0} can not be deleted."
msgstr ""
-#: templates/emails/energy_points_summary.html:33
-msgid "Standings"
-msgstr "Bảng xếp hạng"
-
-#: core/doctype/recorder/recorder_list.js:91 printing/page/print/print.js:289
-#: printing/page/print/print.js:336
+#: frappe/core/doctype/recorder/recorder_list.js:87
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
+#: frappe/printing/page/print/print.js:296
+#: frappe/printing/page/print/print.js:343
msgid "Start"
-msgstr "Bắt đầu"
+msgstr ""
-#: public/js/frappe/utils/common.js:409
+#. Label of the start_date (Date) field in DocType 'Auto Repeat'
+#. Label of the start_date (Date) field in DocType 'Audit Trail'
+#. Label of the start_date (Datetime) field in DocType 'Web Page'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/public/js/frappe/utils/common.js:409
+#: frappe/website/doctype/web_page/web_page.json
msgid "Start Date"
-msgstr "Ngày bắt đầu"
+msgstr ""
-#. Label of a Date field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
-msgid "Start Date"
-msgstr "Ngày bắt đầu"
-
-#. Label of a Date field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Start Date"
-msgstr "Ngày bắt đầu"
-
-#. Label of a Datetime field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Start Date"
-msgstr "Ngày bắt đầu"
-
-#. Label of a Select field in DocType 'Calendar View'
-#: desk/doctype/calendar_view/calendar_view.json
-msgctxt "Calendar View"
+#. Label of the start_date_field (Select) field in DocType 'Calendar View'
+#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "Start Date Field"
-msgstr "Trường ngày bắt đầu"
+msgstr ""
-#: core/doctype/data_import/data_import.js:110
+#: frappe/core/doctype/data_import/data_import.js:110
msgid "Start Import"
-msgstr "Bắt đầu Nhập"
+msgstr ""
-#. Label of a Datetime field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#: 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 "Thời gian bắt đầu"
+msgstr ""
-#: templates/includes/comments/comments.html:8
+#: frappe/templates/includes/comments/comments.html:8
msgid "Start a new discussion"
msgstr ""
-#: core/doctype/data_export/exporter.py:22
+#: frappe/core/doctype/data_export/exporter.py:22
msgid "Start entering data below this line"
-msgstr "Bắt đầu nhập dữ liệu dưới dòng này"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:165
+#: frappe/printing/page/print_format_builder/print_format_builder.js:165
msgid "Start new Format"
-msgstr "Bắt đầu định dạng mới"
+msgstr ""
#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "StartTLS"
-msgstr "StartTLS"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Started"
-msgstr "Bắt đầu"
+msgstr ""
-#. Label of a Datetime field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the started_at (Datetime) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Started At"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:274
+#: frappe/desk/page/setup_wizard/setup_wizard.js:286
msgid "Starting Frappe ..."
-msgstr "Bắt đầu Frappe ..."
+msgstr ""
-#. Label of a Datetime field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the starts_on (Datetime) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Starts on"
-msgstr "Bắt đầu vào"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the state (Data) field in DocType 'Token Cache'
+#. Label of the state (Link) field in DocType 'Workflow Document State'
+#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
+#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/integrations/doctype/token_cache/token_cache.json
+#: frappe/workflow/doctype/workflow/workflow.js:162
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "State"
-msgstr "Tiểu bang"
+msgstr ""
-#. Label of a Data field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "State"
-msgstr "Tiểu bang"
+#: frappe/public/js/workflow_builder/components/Properties.vue:24
+msgid "State Properties"
+msgstr ""
-#. Label of a Link field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
-msgid "State"
-msgstr "Tiểu bang"
-
-#. Label of a Data field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "State"
-msgstr "Tiểu bang"
-
-#. Label of a Link field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
-msgid "State"
-msgstr "Tiểu bang"
-
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the state (Data) field in DocType 'Address'
+#. Label of the state (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "State/Province"
-msgstr "Bang / Tỉnh"
+msgstr ""
-#. Label of a Table field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the document_states_section (Tab Break) field in DocType 'DocType'
+#. Label of the states (Table) field in DocType 'Customize Form'
+#. Label of the states_head (Section Break) field in DocType 'Workflow'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "States"
-msgstr "Các báo cáo"
+msgstr ""
-#. Label of a Table field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "States"
-msgstr "Các báo cáo"
-
-#. Label of a Section Break field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
-msgid "States"
-msgstr "Các báo cáo"
-
-#. Label of a Table field in DocType 'SMS Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#. Label of the parameters (Table) field in DocType 'SMS Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Static Parameters"
-msgstr "Các tham số tĩnh"
+msgstr ""
-#. Label of a Section Break field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the statistics_section (Section Break) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Statistics"
msgstr ""
-#: public/js/frappe/form/dashboard.js:43
+#. Label of the stats_section (Section Break) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/form/dashboard.js:43
+#: frappe/public/js/frappe/form/templates/form_dashboard.html:13
msgid "Stats"
-msgstr "Số liệu thống kê"
+msgstr ""
-#. Label of a Section Break field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Stats"
-msgstr "Số liệu thống kê"
-
-#. Label of a Select field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#. Label of the stats_time_interval (Select) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Stats Time Interval"
-msgstr "Khoảng thời gian thống kê"
+msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:391
-msgid "Stats based on last month's performance (from {0} to {1})"
-msgstr "Số liệu thống kê dựa trên hiệu suất của tháng trước (từ {0} đến {1})"
-
-#: social/doctype/energy_point_log/energy_point_log.py:393
-msgid "Stats based on last week's performance (from {0} to {1})"
-msgstr "Số liệu thống kê dựa trên hiệu suất của tuần trước (từ {0} đến {1})"
-
-#: public/js/frappe/views/reports/report_view.js:911
+#. Label of the status (Select) field in DocType 'Auto Repeat'
+#. Label of the status (Select) field in DocType 'Contact'
+#. Label of the status (Select) field in DocType 'Activity Log'
+#. Label of the status_section (Section Break) field in DocType 'Communication'
+#. Label of the status (Select) field in DocType 'Communication'
+#. Label of the status (Select) field in DocType 'Data Import'
+#. Label of the status (Select) field in DocType 'Permission Log'
+#. Label of the status (Select) field in DocType 'Prepared Report'
+#. Label of the status (Select) field in DocType 'RQ Job'
+#. Label of the status (Data) field in DocType 'RQ Worker'
+#. Label of the status (Select) field in DocType 'Scheduled Job Log'
+#. Label of the status_section (Section Break) field in DocType 'Scheduled Job
+#. Type'
+#. Label of the status (Select) field in DocType 'Submission Queue'
+#. Label of the status (Select) field in DocType 'Event'
+#. Label of the status (Select) field in DocType 'Kanban Board Column'
+#. Label of the status (Select) field in DocType 'ToDo'
+#. Label of the status (Select) field in DocType 'Email Queue'
+#. Label of the status (Select) field in DocType 'Email Queue Recipient'
+#. Label of the status_section (Section Break) field in DocType 'Newsletter'
+#. Label of the status (Select) field in DocType 'Integration Request'
+#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
+#. Label of the status (Select) field in DocType 'Personal Data Deletion
+#. Request'
+#. Label of the status (Select) field in DocType 'Personal Data Deletion Step'
+#. Label of the status (Select) field in DocType 'Workflow Action'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/data_import/data_import.js:483
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/public/js/frappe/list/list_settings.js:359
+#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: 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 "Trạng thái"
+msgstr ""
-#. Label of a Select field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Status"
-msgstr "Trạng thái"
-
-#. Label of a Select field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Status"
-msgstr "Trạng thái"
-
-#. Label of a Section Break field in DocType 'Communication'
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Status"
-msgstr "Trạng thái"
-
-#. Label of a Select field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Status"
-msgstr "Trạng thái"
-
-#. Label of a Select field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Status"
-msgstr "Trạng thái"
-
-#. Label of a Select field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Status"
-msgstr "Trạng thái"
-
-#. Label of a Select field in DocType 'Email Queue Recipient'
-#: email/doctype/email_queue_recipient/email_queue_recipient.json
-msgctxt "Email Queue Recipient"
-msgid "Status"
-msgstr "Trạng thái"
-
-#. Label of a Select field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Status"
-msgstr "Trạng thái"
-
-#. Label of a Select field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Status"
-msgstr "Trạng thái"
-
-#. Label of a Select field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
-msgid "Status"
-msgstr "Trạng thái"
-
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Status"
-msgstr "Trạng thái"
-
-#. Label of a Select field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
-msgid "Status"
-msgstr "Trạng thái"
-
-#. Label of a Select field in DocType 'Personal Data Deletion Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
-msgid "Status"
-msgstr "Trạng thái"
-
-#. Label of a Select field in DocType 'Personal Data Deletion Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
-msgid "Status"
-msgstr "Trạng thái"
-
-#. Label of a Select field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
-msgid "Status"
-msgstr "Trạng thái"
-
-#. Label of a Select field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
-msgid "Status"
-msgstr "Trạng thái"
-
-#. Label of a Data field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
-msgid "Status"
-msgstr "Trạng thái"
-
-#. Label of a Select field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
-msgid "Status"
-msgstr "Trạng thái"
-
-#. Label of a Section Break field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Status"
-msgstr "Trạng thái"
-
-#. Label of a Select field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
-msgid "Status"
-msgstr "Trạng thái"
-
-#. Label of a Select field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Status"
-msgstr "Trạng thái"
-
-#. Label of a Select field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
-msgid "Status"
-msgstr "Trạng thái"
-
-#: www/update-password.html:161
+#: frappe/www/update-password.html:163
msgid "Status Updated"
-msgstr "Đã cập nhật trạng thái"
+msgstr ""
-#: www/message.html:40
+#: frappe/email/doctype/email_queue/email_queue.js:37
+msgid "Status Updated. The email will be picked up in the next scheduled run."
+msgstr ""
+
+#: frappe/www/message.html:24
msgid "Status: {0}"
-msgstr "Tình trạng: {0}"
+msgstr ""
-#. Label of a Link field in DocType 'Onboarding Step Map'
-#: desk/doctype/onboarding_step_map/onboarding_step_map.json
-msgctxt "Onboarding Step Map"
+#. Label of the step (Link) field in DocType 'Onboarding Step Map'
+#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json
msgid "Step"
-msgstr "Bươc"
+msgstr ""
-#. Label of a Table field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the steps (Table) field in DocType 'Form Tour'
+#. Label of the steps (Table) field in DocType 'Module Onboarding'
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Steps"
-msgstr "Các bước"
+msgstr ""
-#. Label of a Table field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Steps"
-msgstr "Các bước"
-
-#: www/qrcode.html:11
+#: frappe/www/qrcode.html:11
msgid "Steps to verify your login"
-msgstr "Các bước để xác minh đăng nhập của bạn"
+msgstr ""
-#: core/doctype/recorder/recorder_list.js:91
+#. Label of the sticky (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/public/js/frappe/form/grid_row.js:438
+msgid "Sticky"
+msgstr ""
+
+#: frappe/core/doctype/recorder/recorder_list.js:87
msgid "Stop"
msgstr ""
-#. Label of a Check field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#. Label of the stopped (Check) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Stopped"
-msgstr "Đã ngưng"
+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 ""
#. Description of the 'Last Known Versions' (Text) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Stores the JSON of last known versions of various installed apps. It is used to show release notes."
-msgstr "Cửa hàng JSON của phiên bản cuối cùng được biết các ứng dụng được cài đặt khác nhau. Nó được sử dụng để hiển thị các ghi chú phát hành."
+msgstr ""
#. Description of the 'Last Reset Password Key Generated On' (Datetime) field
#. in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Stores the datetime when the last reset password key was generated."
msgstr ""
-#: utils/password_strength.py:99
+#: frappe/utils/password_strength.py:97
msgid "Straight rows of keys are easy to guess"
-msgstr "hàng thẳng của các phím rất dễ đoán"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the strip_exif_metadata_from_uploaded_images (Check) field in
+#. DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Strip EXIF tags from uploaded images"
msgstr ""
-#: public/js/frappe/form/controls/password.js:90
+#: frappe/public/js/frappe/form/controls/password.js:89
msgid "Strong"
msgstr ""
-#. Label of a Tab Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the custom_css (Tab Break) field in DocType 'Web Page'
+#. Label of the style (Select) field in DocType 'Workflow State'
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Style"
-msgstr "Thời trang"
+msgstr ""
-#. Label of a Select field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "Style"
-msgstr "Thời trang"
-
-#. Label of a Section Break field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the section_break_9 (Section Break) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Style Settings"
-msgstr "Thiết lập phong cách"
+msgstr ""
#. Description of the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange"
-msgstr "Phong cách đại diện cho các nút màu: Thành công - Green, nguy hiểm - Đỏ, Inverse - Black, Tiểu học - Dark Blue, Thông tin - Light Blue, Cảnh báo - Orange"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the stylesheet_section (Tab Break) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Stylesheet"
-msgstr "Biểu định kiểu"
+msgstr ""
#. Description of the 'Fraction' (Data) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#: frappe/geo/doctype/currency/currency.json
msgid "Sub-currency. For e.g. \"Cent\""
-msgstr "Phụ tiền tệ. Cho ví dụ \"Phần trăm \""
+msgstr ""
#. Description of the 'Subdomain' (Small Text) field in DocType 'Website
#. Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Sub-domain provided by erpnext.com"
-msgstr "Sub-domain cung cấp bởi erpnext.com"
+msgstr ""
-#. Label of a Small Text field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the subdomain (Small Text) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Subdomain"
-msgstr "Tên miền phụ"
+msgstr ""
-#: public/js/frappe/views/communication.js:103
-#: public/js/frappe/views/inbox/inbox_view.js:63
+#. Label of the subject (Data) field in DocType 'Auto Repeat'
+#. Label of the subject (Small Text) field in DocType 'Activity Log'
+#. Label of the subject (Text) field in DocType 'Comment'
+#. Label of the subject (Small Text) field in DocType 'Communication'
+#. Label of the subject (Small Text) field in DocType 'Event'
+#. Label of the subject (Text) field in DocType 'Notification Log'
+#. Label of the subject (Data) field in DocType 'Email Template'
+#. Label of the subject (Small Text) field in DocType 'Newsletter'
+#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
+#. Label of the subject (Data) field in DocType 'Notification'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: 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/newsletter/newsletter.json
+#: frappe/email/doctype/notification/notification.js:200
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
-msgstr "Chủ đề"
+msgstr ""
-#. Label of a Small Text field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Subject"
-msgstr "Chủ đề"
-
-#. Label of a Data field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Subject"
-msgstr "Chủ đề"
-
-#. Label of a Text field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Subject"
-msgstr "Chủ đề"
-
-#. Label of a Small Text field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Subject"
-msgstr "Chủ đề"
-
-#. Label of a Data field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
-msgid "Subject"
-msgstr "Chủ đề"
-
-#. Label of a Small Text field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Subject"
-msgstr "Chủ đề"
-
-#. Label of a Small Text field in DocType 'Newsletter'
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Subject"
-msgstr "Chủ đề"
-
-#. Label of a Data field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Subject"
-msgstr "Chủ đề"
-
-#. Label of a Text field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "Subject"
-msgstr "Chủ đề"
-
-#. Label of a Select field in DocType 'Calendar View'
-#: desk/doctype/calendar_view/calendar_view.json
-msgctxt "Calendar View"
+#. Label of the subject_field (Data) field in DocType 'DocType'
+#. Label of the subject_field (Data) field in DocType 'Customize Form'
+#. Label of the subject_field (Select) field in DocType 'Calendar View'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "Subject Field"
-msgstr "Trường Chủ đề"
+msgstr ""
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Subject Field"
-msgstr "Trường Chủ đề"
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Subject Field"
-msgstr "Trường Chủ đề"
-
-#: core/doctype/doctype/doctype.py:1878
+#: frappe/core/doctype/doctype/doctype.py:1935
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
-msgstr "Loại Trường chủ đề phải là Dữ liệu, Văn bản, Văn bản dài, Văn bản nhỏ, Trình soạn thảo văn bản"
+msgstr ""
#. Name of a DocType
-#: core/doctype/submission_queue/submission_queue.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Submission Queue"
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:138
-#: public/js/frappe/form/quick_entry.js:193
-#: public/js/frappe/form/sidebar/review.js:116
-#: public/js/frappe/ui/capture.js:299
-#: social/doctype/energy_point_log/energy_point_log.js:39
-#: social/doctype/energy_point_settings/energy_point_settings.js:47
-#: website/doctype/web_form/templates/web_form.html:44
-msgid "Submit"
-msgstr "Gửi"
-
-#: public/js/frappe/list/list_view.js:1916
-msgctxt "Button in list view actions menu"
-msgid "Submit"
-msgstr "Gửi"
-
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Submit"
-msgstr "Gửi"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Submit"
-msgstr "Gửi"
-
-#. Label of a Check field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "Submit"
-msgstr "Gửi"
-
-#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Submit"
-msgstr "Gửi"
-
+#. 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'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:138
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/quick_entry.js:225
+#: frappe/public/js/frappe/ui/capture.js:307
msgid "Submit"
-msgstr "Gửi"
-
-#: public/js/frappe/ui/dialog.js:60
-msgctxt "Primary action in dialog"
-msgid "Submit"
-msgstr "Gửi"
-
-#: public/js/frappe/ui/messages.js:97
-msgctxt "Primary action of prompt dialog"
-msgid "Submit"
-msgstr "Gửi"
-
-#: public/js/frappe/desk.js:206
-msgctxt "Submit password for Email Account"
-msgid "Submit"
-msgstr "Gửi"
-
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Submit"
-msgstr "Gửi"
-
-#. Label of a Check field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Submit After Import"
-msgstr "Gửi sau khi nhập"
-
-#. Label of a Data field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Submit Button Label"
msgstr ""
-#: website/doctype/web_form/templates/web_form.html:153
+#: frappe/public/js/frappe/list/list_view.js:2086
+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:62
+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:156
+msgctxt "Button in web form"
msgid "Submit another response"
msgstr ""
-#. Label of a Check field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the button_label (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Submit button label"
+msgstr ""
+
+#. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128
msgid "Submit on Creation"
msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:400
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:395
msgid "Submit this document to complete this step."
-msgstr "Gửi tài liệu này để hoàn thành bước này."
+msgstr ""
-#: public/js/frappe/form/form.js:1194
+#: frappe/public/js/frappe/form/form.js:1221
msgid "Submit this document to confirm"
-msgstr "Gửi tài liệu này để xác nhận"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1921
+#: frappe/public/js/frappe/list/list_view.js:2091
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
-msgstr "Gửi {0} tài liệu?"
-
-#: public/js/frappe/model/indicator.js:95
-#: public/js/frappe/ui/filters/filter.js:494
-#: website/doctype/web_form/templates/web_form.html:133
-msgid "Submitted"
-msgstr "Đã lần gửi"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/public/js/frappe/model/indicator.js:95
+#: frappe/public/js/frappe/ui/filters/filter.js:539
+#: frappe/website/doctype/web_form/templates/web_form.html:136
msgid "Submitted"
-msgstr "Đã lần gửi"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Submitted"
-msgstr "Đã lần gửi"
-
-#: workflow/doctype/workflow/workflow.py:106
+#: frappe/workflow/doctype/workflow/workflow.py:103
msgid "Submitted Document cannot be converted back to draft. Transition row {0}"
-msgstr "Tài liệu gửi không thể được chuyển đổi trở lại dự thảo. Hàng chuyển {0}"
+msgstr ""
-#: public/js/workflow_builder/utils.js:176
+#: frappe/public/js/workflow_builder/utils.js:176
msgid "Submitted document cannot be converted back to draft while transitioning from {0} State to {1} State"
msgstr ""
-#: public/js/frappe/form/save.js:10
+#: frappe/public/js/frappe/form/save.js:10
msgctxt "Freeze message while submitting a document"
msgid "Submitting"
-msgstr "Trình"
-
-#: desk/doctype/bulk_update/bulk_update.py:91
-msgid "Submitting {0}"
-msgstr "Gửi {0}"
-
-#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Subsidiary"
-msgstr "Công ty con"
-
-#. Label of a Data field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
-msgid "Subtitle"
-msgstr "Phụ đề"
-
-#. Label of a Data field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Subtitle"
-msgstr "Phụ đề"
-
-#: core/doctype/data_import/data_import.js:470
-#: desk/doctype/bulk_update/bulk_update.js:31
-#: desk/doctype/desktop_icon/desktop_icon.py:452
-#: public/js/frappe/form/grid.js:1133
-#: public/js/frappe/views/translation_manager.js:21
-#: templates/pages/integrations/gcalendar-success.html:9
-#: workflow/doctype/workflow_action/workflow_action.py:171
-msgid "Success"
-msgstr "Sự thành công"
-
-#. Option for the 'Status' (Select) field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Success"
-msgstr "Sự thành công"
-
-#. Option for the 'Status' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Success"
-msgstr "Sự thành công"
-
-#. Label of a Check field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
-msgid "Success"
-msgstr "Sự thành công"
-
-#. Option for the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "Success"
-msgstr "Sự thành công"
-
-#. Name of a DocType
-#: core/doctype/success_action/success_action.json
-msgid "Success Action"
-msgstr "Hành động thành công"
-
-#. Label of a Data field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Success Message"
-msgstr "Thành công tin nhắn"
-
-#. Label of a Text field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Success Message"
-msgstr "Thành công tin nhắn"
-
-#. Label of a Data field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Success Title"
msgstr ""
-#. Label of a Data field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
+#: 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'
+#. Label of the subtitle (Data) field in DocType 'Blog Settings'
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Subtitle"
+msgstr ""
+
+#. 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:1166
+#: 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 a Data field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the success_url (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Success URL"
-msgstr "URL thành công"
+msgstr ""
-#: www/update-password.html:79
+#. Label of the success_message (Text) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Success message"
+msgstr ""
+
+#. Label of the success_title (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Success title"
+msgstr ""
+
+#: frappe/www/update-password.html:81
msgid "Success! You are good to go 👍"
-msgstr "Sự thành công! Bạn tốt để đi"
+msgstr ""
-#. Label of a Int field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the successful_job_count (Int) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Successful Job Count"
msgstr ""
-#: model/workflow.py:306
+#: frappe/model/workflow.py:307
msgid "Successful Transactions"
-msgstr "Giao dịch thành công"
+msgstr ""
-#: model/rename_doc.py:684
+#: frappe/model/rename_doc.py:699
msgid "Successful: {0} to {1}"
-msgstr "Thành công: {0} đến {1}"
+msgstr ""
-#: social/doctype/energy_point_settings/energy_point_settings.js:41
-msgid "Successfully Done"
-msgstr "Thực hiện thành công"
-
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113
msgid "Successfully Updated"
-msgstr "Cập nhật thành công"
+msgstr ""
-#: core/doctype/data_import/data_import.js:434
+#: frappe/core/doctype/data_import/data_import.js:423
msgid "Successfully imported {0}"
msgstr ""
-#: desk/doctype/form_tour/form_tour.py:86
+#: frappe/core/doctype/data_import/data_import.js:144
+msgid "Successfully imported {0} out of {1} records."
+msgstr ""
+
+#: frappe/desk/doctype/form_tour/form_tour.py:87
msgid "Successfully reset onboarding status for all users."
msgstr ""
-#: public/js/frappe/views/translation_manager.js:22
+#: frappe/public/js/frappe/views/translation_manager.js:22
msgid "Successfully updated translations"
-msgstr "Đã cập nhật thành công bản dịch"
+msgstr ""
-#: core/doctype/data_import/data_import.js:442
+#: frappe/core/doctype/data_import/data_import.js:431
msgid "Successfully updated {0}"
msgstr ""
-#: core/doctype/data_import/data_import.js:149
-msgid "Successfully {0} 1 record."
+#: frappe/core/doctype/data_import/data_import.js:149
+msgid "Successfully updated {0} out of {1} records."
msgstr ""
-#: core/doctype/data_import/data_import.js:156
-msgid "Successfully {0} {1} record out of {2}. Click on Export Errored Rows, fix the errors and import again."
+#: frappe/core/doctype/recorder/recorder.js:15
+msgid "Suggest Optimizations"
msgstr ""
-#: core/doctype/data_import/data_import.js:161
-msgid "Successfully {0} {1} records out of {2}. Click on Export Errored Rows, fix the errors and import again."
+#. Label of the suggested_indexes (Table) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "Suggested Indexes"
msgstr ""
-#: core/doctype/data_import/data_import.js:151
-msgid "Successfully {0} {1} records."
-msgstr ""
-
-#: core/doctype/user/user.py:679
+#: frappe/core/doctype/user/user.py:720
msgid "Suggested Username: {0}"
-msgstr "Tên đăng nhập đề nghị: {0}"
-
-#: public/js/frappe/ui/group_by/group_by.js:20
-msgid "Sum"
-msgstr "Tổng"
+msgstr ""
#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Sum"
-msgstr "Tổng"
-
#. Option for the 'Function' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/ui/group_by/group_by.js:20
msgid "Sum"
-msgstr "Tổng"
+msgstr ""
-#: public/js/frappe/ui/group_by/group_by.js:330
+#: frappe/public/js/frappe/ui/group_by/group_by.js:337
msgid "Sum of {0}"
-msgstr "Tổng của {0}"
+msgstr ""
-#: public/js/frappe/views/interaction.js:88
+#: frappe/public/js/frappe/views/interaction.js:88
msgid "Summary"
-msgstr "Tóm lược"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Sunday"
-msgstr "Chủ Nhật"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Sunday"
-msgstr "Chủ Nhật"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Sunday"
-msgstr "Chủ Nhật"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Sunday"
-msgstr "Chủ Nhật"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the sunday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Sunday"
-msgstr "Chủ Nhật"
+msgstr ""
-#: email/doctype/email_queue/email_queue_list.js:27
+#: frappe/email/doctype/email_queue/email_queue_list.js:27
msgid "Suspend Sending"
-msgstr "đình chỉ Gửi"
+msgstr ""
-#: public/js/frappe/ui/capture.js:268
+#: frappe/public/js/frappe/ui/capture.js:276
msgid "Switch Camera"
msgstr ""
-#: public/js/frappe/desk.js:50 public/js/frappe/ui/theme_switcher.js:11
+#: frappe/public/js/frappe/desk.js:96
+#: frappe/public/js/frappe/ui/theme_switcher.js:11
msgid "Switch Theme"
msgstr ""
-#: templates/includes/navbar/navbar_login.html:17
+#: frappe/templates/includes/navbar/navbar_login.html:17
msgid "Switch To Desk"
-msgstr "Chuyển đến Desk"
+msgstr ""
-#: public/js/frappe/ui/capture.js:273
+#: frappe/public/js/frappe/list/list_sidebar.js:319
+msgid "Switch to Frappe CRM for smarter sales"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/capture.js:281
msgid "Switching Camera"
msgstr ""
-#. Label of a Data field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the symbol (Data) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
msgid "Symbol"
-msgstr "Biểu tượng"
+msgstr ""
-#. Label of a Section Break field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Label of the sb_01 (Section Break) field in DocType 'Google Calendar'
+#. Label of the sync (Section Break) field in DocType 'Google Contacts'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Sync"
-msgstr "Đồng bộ hóa"
+msgstr ""
-#. Label of a Section Break field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
-msgid "Sync"
-msgstr "Đồng bộ hóa"
-
-#: integrations/doctype/google_calendar/google_calendar.js:28
+#: frappe/integrations/doctype/google_calendar/google_calendar.js:28
msgid "Sync Calendar"
-msgstr "Lịch đồng bộ hóa"
+msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.js:28
+#: frappe/integrations/doctype/google_contacts/google_contacts.js:28
msgid "Sync Contacts"
-msgstr "Đồng bộ danh bạ"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:214
+#. Label of the sync_as_public (Check) field in DocType 'Google Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+msgid "Sync events from Google as public"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:256
msgid "Sync on Migrate"
-msgstr "Sync trên Migrate"
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:295
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:312
msgid "Sync token was invalid and has been reset, Retry syncing."
msgstr ""
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the sync_with_google_calendar (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Sync with Google Calendar"
-msgstr "Đồng bộ hóa với Lịch Google"
+msgstr ""
-#. Label of a Check field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Sync with Google Contacts"
-msgstr "Đồng bộ hóa với Danh bạ Google"
+msgstr ""
-#: custom/doctype/doctype_layout/doctype_layout.js:46
+#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46
msgid "Sync {0} Fields"
msgstr ""
-#: custom/doctype/doctype_layout/doctype_layout.js:100
+#: frappe/custom/doctype/doctype_layout/doctype_layout.js:100
msgid "Synced Fields"
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.js:31
-#: integrations/doctype/google_contacts/google_contacts.js:31
+#: frappe/integrations/doctype/google_calendar/google_calendar.js:31
+#: frappe/integrations/doctype/google_contacts/google_contacts.js:31
msgid "Syncing"
-msgstr "Đồng bộ hóa"
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.js:19
+#: frappe/integrations/doctype/google_calendar/google_calendar.js:19
msgid "Syncing {0} of {1}"
-msgstr "Đồng bộ hóa {0} trong {1}"
+msgstr ""
-#: utils/data.py:2424
+#: frappe/utils/data.py:2494
msgid "Syntax Error"
msgstr ""
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "System"
-msgstr "Hệ thống"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/system_console/system_console.json
+#: frappe/desk/doctype/system_console/system_console.json
+#: frappe/public/js/frappe/ui/dropdown_console.js:4
msgid "System Console"
-msgstr "Bảng điều khiển hệ thống"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.py:358
+#: frappe/custom/doctype/custom_field/custom_field.py:408
msgid "System Generated Fields can not be renamed"
msgstr ""
+#. Label of a standard help item
+#. Type: Route
+#: frappe/hooks.py
+msgid "System Health"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "System Health Report"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json
+msgid "System Health Report Errors"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
+msgid "System Health Report Failing Jobs"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
+msgid "System Health Report Queue"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json
+msgid "System Health Report Tables"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
+msgid "System Health Report Workers"
+msgstr ""
+
#. Label of a Card Break in the Build Workspace
-#: core/workspace/build/build.json
+#: frappe/core/workspace/build/build.json
msgid "System Logs"
msgstr ""
#. Name of a role
-#: automation/doctype/assignment_rule/assignment_rule.json
-#: automation/doctype/auto_repeat/auto_repeat.json
-#: automation/doctype/milestone/milestone.json
-#: automation/doctype/milestone_tracker/milestone_tracker.json
-#: contacts/doctype/address/address.json
-#: contacts/doctype/address_template/address_template.json
-#: contacts/doctype/contact/contact.json contacts/doctype/gender/gender.json
-#: contacts/doctype/salutation/salutation.json
-#: core/doctype/access_log/access_log.json
-#: core/doctype/activity_log/activity_log.json
-#: core/doctype/audit_trail/audit_trail.json core/doctype/comment/comment.json
-#: core/doctype/communication/communication.json
-#: core/doctype/custom_docperm/custom_docperm.json
-#: core/doctype/custom_role/custom_role.json
-#: core/doctype/data_export/data_export.json
-#: core/doctype/data_import/data_import.json
-#: core/doctype/data_import_log/data_import_log.json
-#: core/doctype/deleted_document/deleted_document.json
-#: core/doctype/docshare/docshare.json core/doctype/doctype/doctype.json
-#: core/doctype/document_naming_rule/document_naming_rule.json
-#: core/doctype/document_naming_settings/document_naming_settings.json
-#: core/doctype/document_share_key/document_share_key.json
-#: core/doctype/domain/domain.json
-#: core/doctype/domain_settings/domain_settings.json
-#: core/doctype/error_log/error_log.json core/doctype/file/file.json
-#: core/doctype/installed_applications/installed_applications.json
-#: core/doctype/language/language.json
-#: core/doctype/log_settings/log_settings.json
-#: core/doctype/module_def/module_def.json
-#: core/doctype/module_profile/module_profile.json
-#: core/doctype/navbar_settings/navbar_settings.json
-#: core/doctype/package/package.json
-#: core/doctype/package_import/package_import.json
-#: core/doctype/package_release/package_release.json
-#: core/doctype/page/page.json core/doctype/patch_log/patch_log.json
-#: core/doctype/permission_inspector/permission_inspector.json
-#: core/doctype/prepared_report/prepared_report.json
-#: core/doctype/report/report.json core/doctype/role/role.json
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-#: core/doctype/role_profile/role_profile.json core/doctype/rq_job/rq_job.json
-#: core/doctype/rq_worker/rq_worker.json
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-#: core/doctype/session_default_settings/session_default_settings.json
-#: core/doctype/sms_log/sms_log.json
-#: core/doctype/sms_settings/sms_settings.json
-#: core/doctype/submission_queue/submission_queue.json
-#: core/doctype/success_action/success_action.json
-#: core/doctype/system_settings/system_settings.json
-#: core/doctype/translation/translation.json core/doctype/user/user.json
-#: core/doctype/user_group/user_group.json
-#: core/doctype/user_permission/user_permission.json
-#: core/doctype/user_type/user_type.json core/doctype/version/version.json
-#: core/doctype/view_log/view_log.json
-#: custom/doctype/client_script/client_script.json
-#: custom/doctype/custom_field/custom_field.json
-#: custom/doctype/customize_form/customize_form.json
-#: custom/doctype/doctype_layout/doctype_layout.json
-#: custom/doctype/property_setter/property_setter.json
-#: desk/doctype/bulk_update/bulk_update.json
-#: desk/doctype/calendar_view/calendar_view.json
-#: desk/doctype/console_log/console_log.json
-#: desk/doctype/custom_html_block/custom_html_block.json
-#: desk/doctype/dashboard/dashboard.json
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
-#: desk/doctype/desktop_icon/desktop_icon.json desk/doctype/event/event.json
-#: desk/doctype/form_tour/form_tour.json
-#: desk/doctype/global_search_settings/global_search_settings.json
-#: desk/doctype/kanban_board/kanban_board.json
-#: desk/doctype/list_view_settings/list_view_settings.json
-#: desk/doctype/module_onboarding/module_onboarding.json
-#: desk/doctype/note/note.json desk/doctype/number_card/number_card.json
-#: desk/doctype/route_history/route_history.json
-#: desk/doctype/system_console/system_console.json desk/doctype/tag/tag.json
-#: desk/doctype/tag_link/tag_link.json desk/doctype/todo/todo.json
-#: email/doctype/auto_email_report/auto_email_report.json
-#: email/doctype/document_follow/document_follow.json
-#: email/doctype/email_account/email_account.json
-#: email/doctype/email_domain/email_domain.json
-#: email/doctype/email_flag_queue/email_flag_queue.json
-#: email/doctype/email_queue/email_queue.json
-#: email/doctype/email_rule/email_rule.json
-#: email/doctype/email_template/email_template.json
-#: email/doctype/email_unsubscribe/email_unsubscribe.json
-#: email/doctype/notification/notification.json
-#: email/doctype/unhandled_email/unhandled_email.json
-#: geo/doctype/country/country.json geo/doctype/currency/currency.json
-#: integrations/doctype/connected_app/connected_app.json
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-#: integrations/doctype/google_calendar/google_calendar.json
-#: integrations/doctype/google_contacts/google_contacts.json
-#: integrations/doctype/google_drive/google_drive.json
-#: integrations/doctype/google_settings/google_settings.json
-#: integrations/doctype/integration_request/integration_request.json
-#: integrations/doctype/ldap_settings/ldap_settings.json
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-#: integrations/doctype/oauth_client/oauth_client.json
-#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.json
-#: integrations/doctype/social_login_key/social_login_key.json
-#: integrations/doctype/token_cache/token_cache.json
-#: integrations/doctype/webhook/webhook.json
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-#: printing/doctype/letter_head/letter_head.json
-#: printing/doctype/network_printer_settings/network_printer_settings.json
-#: printing/doctype/print_format/print_format.json
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-#: printing/doctype/print_heading/print_heading.json
-#: printing/doctype/print_settings/print_settings.json
-#: printing/doctype/print_style/print_style.json
-#: social/doctype/energy_point_log/energy_point_log.json
-#: social/doctype/energy_point_rule/energy_point_rule.json
-#: social/doctype/energy_point_settings/energy_point_settings.json
-#: website/doctype/discussion_reply/discussion_reply.json
-#: website/doctype/discussion_topic/discussion_topic.json
-#: website/doctype/marketing_campaign/marketing_campaign.json
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-#: website/doctype/personal_data_download_request/personal_data_download_request.json
-#: website/doctype/web_page_view/web_page_view.json
-#: website/doctype/web_template/web_template.json
-#: website/doctype/website_route_meta/website_route_meta.json
-#: workflow/doctype/workflow/workflow.json
-#: workflow/doctype/workflow_action_master/workflow_action_master.json
-#: workflow/doctype/workflow_state/workflow_state.json
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/gender/gender.json
+#: frappe/contacts/doctype/salutation/salutation.json
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/api_request_log/api_request_log.json
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/custom_role/custom_role.json
+#: frappe/core/doctype/data_export/data_export.json
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/data_import_log/data_import_log.json
+#: frappe/core/doctype/deleted_document/deleted_document.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+#: frappe/core/doctype/document_share_key/document_share_key.json
+#: frappe/core/doctype/domain/domain.json
+#: frappe/core/doctype/domain_settings/domain_settings.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/file/file.json
+#: frappe/core/doctype/installed_applications/installed_applications.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/log_settings/log_settings.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/module_profile/module_profile.json
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+#: frappe/core/doctype/package/package.json
+#: frappe/core/doctype/package_import/package_import.json
+#: frappe/core/doctype/package_release/package_release.json
+#: frappe/core/doctype/page/page.json
+#: frappe/core/doctype/patch_log/patch_log.json
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#: frappe/core/doctype/role_profile/role_profile.json
+#: frappe/core/doctype/role_replication/role_replication.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/scheduler_event/scheduler_event.json
+#: frappe/core/doctype/session_default_settings/session_default_settings.json
+#: frappe/core/doctype/sms_log/sms_log.json
+#: frappe/core/doctype/sms_settings/sms_settings.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/core/doctype/success_action/success_action.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/translation/translation.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_group/user_group.json
+#: frappe/core/doctype/user_permission/user_permission.json
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/core/doctype/version/version.json
+#: frappe/core/doctype/view_log/view_log.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+#: frappe/desk/doctype/console_log/console_log.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/global_search_settings/global_search_settings.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/desk/doctype/note/note.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/route_history/route_history.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_rule/email_rule.json
+#: frappe/email/doctype/email_template/email_template.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
+#: frappe/geo/doctype/country/country.json
+#: frappe/geo/doctype/currency/currency.json
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.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_drive/google_drive.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/push_notification_settings/push_notification_settings.json
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/printing/doctype/print_heading/print_heading.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/website/doctype/discussion_reply/discussion_reply.json
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/website/doctype/website_route_meta/website_route_meta.json
+#: frappe/workflow/doctype/workflow/workflow.json
+#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "System Manager"
-msgstr "Hệ thống quản lý"
+msgstr ""
-#: desk/page/backups/backups.js:36
+#: frappe/desk/page/backups/backups.js:38
msgid "System Manager privileges required."
msgstr ""
#. Option for the 'Channel' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "System Notification"
-msgstr "Thông báo hệ thống"
-
-#. Label of a Section Break field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "System Notifications"
msgstr ""
-#. Label of a Check field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
+#. Label of the system_page (Check) field in DocType 'Page'
+#: frappe/core/doctype/page/page.json
msgid "System Page"
-msgstr "Trang Hệ thống"
+msgstr ""
#. Name of a DocType
-#: core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "System Settings"
-msgstr "Cài đặt hệ thống"
-
-#. Label of a shortcut in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "System Settings"
-msgid "System Settings"
-msgstr "Cài đặt hệ thống"
+msgstr ""
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "System managers are allowed by default"
-msgstr "Người quản lý hệ thống được phép theo mặc định"
+msgstr ""
-#: public/js/frappe/utils/number_systems.js:5
+#: frappe/public/js/frappe/utils/number_systems.js:5
msgctxt "Number system"
msgid "T"
msgstr ""
+#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "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 ""
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Tab Break"
+#: frappe/public/js/form_builder/components/Tabs.vue:135
+msgid "Tab Label"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Tab Break"
-msgstr ""
-
-#: core/doctype/data_export/exporter.py:23
-msgid "Table"
-msgstr "Bảng"
-
+#. Label of the table (Data) field in DocType 'Recorder Suggested Index'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Table"
-msgstr "Bảng"
-
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Table"
-msgstr "Bảng"
-
-#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Table"
-msgstr "Bảng"
-
+#. Label of the table (Data) field in DocType 'System Health Report Tables'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/data_export/exporter.py:23
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json
+#: frappe/printing/page/print_format_builder/print_format_builder_field.html:39
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Table"
-msgstr "Bảng"
+msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Table Break"
-msgstr "Ngắt bảng"
+msgstr ""
-#. Label of a Data field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
+#: frappe/core/doctype/version/version_view.html:72
+msgid "Table Field"
+msgstr ""
+
+#. Label of the table_fieldname (Data) field in DocType 'DocType Link'
+#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Table Fieldname"
msgstr ""
-#: core/doctype/doctype/doctype.py:1154
+#: frappe/core/doctype/doctype/doctype.py:1203
msgid "Table Fieldname Missing"
msgstr ""
-#. Label of a HTML field in DocType 'Version'
-#: core/doctype/version/version.json
-msgctxt "Version"
+#. Label of the table_html (HTML) field in DocType 'Version'
+#: frappe/core/doctype/version/version.json
msgid "Table HTML"
-msgstr "bảng HTML"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Table MultiSelect"
-msgstr "Bảng MultiSelect"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Table MultiSelect"
-msgstr "Bảng MultiSelect"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Table MultiSelect"
-msgstr "Bảng MultiSelect"
+msgstr ""
-#: public/js/frappe/form/grid.js:1132
+#: frappe/custom/doctype/customize_form/customize_form.js:229
+msgid "Table Trimmed"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:1165
msgid "Table updated"
-msgstr "bảng cập nhật"
+msgstr ""
-#: model/document.py:1366
+#: frappe/model/document.py:1565
msgid "Table {0} cannot be empty"
-msgstr "Bảng {0} không thể để trống"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Tabloid"
msgstr ""
#. Name of a DocType
-#: desk/doctype/tag/tag.json
+#: frappe/desk/doctype/tag/tag.json
msgid "Tag"
-msgstr "Nhãn"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/tag_link/tag_link.json
+#: frappe/desk/doctype/tag_link/tag_link.json
msgid "Tag Link"
-msgstr "Liên kết thẻ"
+msgstr ""
-#: model/__init__.py:148 model/meta.py:52
-#: public/js/frappe/list/bulk_operations.js:365
-#: public/js/frappe/list/list_sidebar.js:226 public/js/frappe/model/meta.js:204
-#: public/js/frappe/model/model.js:123
-#: public/js/frappe/ui/toolbar/awesome_bar.js:171
+#: frappe/model/meta.py:57
+#: 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 "các lần đánh dấu"
+msgstr ""
-#: integrations/doctype/google_drive/google_drive.js:28
+#: frappe/integrations/doctype/google_drive/google_drive.js:29
msgid "Take Backup"
-msgstr "Sao lưu"
+msgstr ""
-#: integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
+#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
msgid "Take Backup Now"
-msgstr "lấy sao lưu ngay bây giờ"
+msgstr ""
-#: public/js/frappe/ui/capture.js:212
+#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
-msgstr "Chụp hình"
+msgstr ""
-#. Label of a Data field in DocType 'Portal Menu Item'
-#: website/doctype/portal_menu_item/portal_menu_item.json
-msgctxt "Portal Menu Item"
+#. Label of the target (Data) field in DocType 'Portal Menu Item'
+#. Label of the target (Small Text) field in DocType 'Website Route Redirect'
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
msgid "Target"
-msgstr "Mục tiêu"
+msgstr ""
-#. Label of a Small Text field in DocType 'Website Route Redirect'
-#: website/doctype/website_route_redirect/website_route_redirect.json
-msgctxt "Website Route Redirect"
-msgid "Target"
-msgstr "Mục tiêu"
-
-#: desk/doctype/todo/todo_calendar.js:19 desk/doctype/todo/todo_calendar.js:25
+#: frappe/desk/doctype/todo/todo_calendar.js:19
+#: frappe/desk/doctype/todo/todo_calendar.js:25
msgid "Task"
-msgstr "Nhiệm vụ"
+msgstr ""
-#: www/about.html:45
+#. Label of the sb1 (Section Break) field in DocType 'About Us Settings'
+#. Label of the team_members (Table) field in DocType 'About Us Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+#: frappe/www/about.html:45
msgid "Team Members"
-msgstr "Thành viên nhóm"
+msgstr ""
-#. Label of a Section Break field in DocType 'About Us Settings'
-#. Label of a Table field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
-msgid "Team Members"
-msgstr "Thành viên nhóm"
-
-#. Label of a Data field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#. Label of the team_members_heading (Data) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Team Members Heading"
-msgstr "Các thành viên nhóm dẫn đầu"
+msgstr ""
-#. Label of a Small Text field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#. Label of the team_members_subtitle (Small Text) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Team Members Subtitle"
msgstr ""
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the telemetry_section (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Telemetry"
msgstr ""
-#. Label of a Code field in DocType 'Address Template'
-#: contacts/doctype/address_template/address_template.json
-msgctxt "Address Template"
+#. Label of the template (Link) field in DocType 'Auto Repeat'
+#. Label of the template (Code) field in DocType 'Address Template'
+#. Label of the template (Code) field in DocType 'Print Format Field Template'
+#. Label of the template (Code) field in DocType 'Web Template'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/website/doctype/web_template/web_template.json
msgid "Template"
-msgstr "Mẫu"
+msgstr ""
-#. Label of a Link field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Template"
-msgstr "Mẫu"
-
-#. Label of a Code field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
-msgid "Template"
-msgstr "Mẫu"
-
-#. Label of a Code field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
-msgid "Template"
-msgstr "Mẫu"
-
-#: core/doctype/data_import/importer.py:468
-#: core/doctype/data_import/importer.py:596
+#: frappe/core/doctype/data_import/importer.py:483
+#: frappe/core/doctype/data_import/importer.py:610
msgid "Template Error"
-msgstr "Lỗi mẫu"
+msgstr ""
-#. Label of a Data field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
+#. Label of the template_file (Data) field in DocType 'Print Format Field
+#. Template'
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
msgid "Template File"
msgstr ""
-#. Label of a Code field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the template_options (Code) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Template Options"
-msgstr "Tùy chọn mẫu"
+msgstr ""
-#. Label of a Code field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the template_warnings (Code) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Template Warnings"
-msgstr "Cảnh báo mẫu"
+msgstr ""
-#: public/js/frappe/views/workspace/blocks/paragraph.js:78
+#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:78
msgid "Templates"
msgstr ""
-#: core/doctype/user/user.py:983
+#: frappe/core/doctype/user/user.py:1027
msgid "Temporarily Disabled"
-msgstr "Tạm thời bị vô hiệu hóa"
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:94
+#: frappe/core/doctype/translation/test_translation.py:56
+#: frappe/core/doctype/translation/test_translation.py:63
+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:58
+#: frappe/core/doctype/translation/test_translation.py:66
+msgid "Test Spanish"
+msgstr ""
+
+#: frappe/email/doctype/newsletter/newsletter.py:92
msgid "Test email sent to {0}"
-msgstr "Kiểm tra email đã được gửi đến {0}"
+msgstr ""
-#: core/doctype/file/test_file.py:357
+#: frappe/core/doctype/file/test_file.py:388
msgid "Test_Folder"
-msgstr "Chạy_thư mục"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Text"
-msgstr "Vãn bản"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Text"
-msgstr "Vãn bản"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Text"
-msgstr "Vãn bản"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Text"
-msgstr "Vãn bản"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Text"
-msgstr "Vãn bản"
+msgstr ""
-#. Label of a Select field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the text_align (Select) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Text Align"
-msgstr "Căn lề văn bản"
+msgstr ""
-#. Label of a Link field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the text_color (Link) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Text Color"
-msgstr "Màu văn bản"
+msgstr ""
-#. Label of a Code field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the text_content (Code) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Text Content"
-msgstr "Nội dung văn bản"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Text Editor"
-msgstr "Trình soạn thảo văn bản"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Text Editor"
-msgstr "Trình soạn thảo văn bản"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Text Editor"
-msgstr "Trình soạn thảo văn bản"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Text Editor"
-msgstr "Trình soạn thảo văn bản"
+msgstr ""
-#: templates/emails/password_reset.html:5
+#: frappe/templates/emails/password_reset.html:5
msgid "Thank you"
-msgstr "Cảm ơn bạn"
+msgstr ""
-#: website/doctype/web_form/templates/web_form.html:137
+#: frappe/www/contact.py:39
+msgid "Thank you for reaching out to us. We will get back to you at the earliest.\n\n\n"
+"Your query:\n\n"
+"{0}"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:140
msgid "Thank you for spending your valuable time to fill this form"
msgstr ""
-#: templates/emails/auto_reply.html:1
+#: frappe/templates/emails/auto_reply.html:1
msgid "Thank you for your email"
-msgstr "Cảm ơn vì email này"
+msgstr ""
-#: website/doctype/help_article/templates/help_article.html:27
+#: frappe/website/doctype/help_article/templates/help_article.html:27
msgid "Thank you for your feedback!"
-msgstr "Cảm ơn phản hôi của bạn!"
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:332
+#: frappe/email/doctype/newsletter/newsletter.py:332
msgid "Thank you for your interest in subscribing to our updates"
-msgstr "cảm ơn vì đã quan tâm đến việc đăng ký theo dõi các cập nhật của chúng tôi"
+msgstr ""
-#: templates/emails/new_user.html:16
+#: frappe/templates/includes/contact.js:36
+msgid "Thank you for your message"
+msgstr ""
+
+#: frappe/templates/emails/new_user.html:16
msgid "Thanks"
msgstr ""
-#: templates/emails/auto_repeat_fail.html:3
+#: frappe/templates/emails/auto_repeat_fail.html:3
msgid "The Auto Repeat for this document has been disabled."
-msgstr "Lặp lại tự động cho tài liệu này đã bị vô hiệu hóa."
+msgstr ""
-#: public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1188
msgid "The CSV format is case sensitive"
-msgstr "Định dạng CSV phân biệt chữ hoa chữ thường"
+msgstr ""
#. Description of the 'Client ID' (Data) field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
-msgid ""
-"The Client ID obtained from the Google Cloud Console under \n"
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "The Client ID obtained from the Google Cloud Console under \n"
"\"APIs & Services\" > \"Credentials\"\n"
""
msgstr ""
-#: email/doctype/notification/notification.py:129
+#: frappe/email/doctype/notification/notification.py:201
msgid "The Condition '{0}' is invalid"
-msgstr "Điều kiện '{0}' không hợp lệ"
+msgstr ""
-#: core/doctype/file/file.py:205
+#: frappe/core/doctype/file/file.py:208
msgid "The File URL you've entered is incorrect"
msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:364
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108
+msgid "The Next Scheduled Date cannot be later than the End Date."
+msgstr ""
+
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:29
+msgid "The Push Relay Server URL key (`push_relay_server_url`) is missing in your site config"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:367
msgid "The User record for this request has been auto-deleted due to inactivity by system admins."
msgstr ""
-#: public/js/frappe/desk.js:127
+#: frappe/public/js/frappe/desk.js:162
msgid "The application has been updated to a new version, please refresh this page"
-msgstr "Ứng dụng này đã được cập nhật lên phiên bản mới, hãy làm mới trang này"
+msgstr ""
#. Description of the 'Application Name' (Data) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "The application name will be used in the Login page."
msgstr ""
-#: public/js/frappe/views/interaction.js:324
+#: frappe/public/js/frappe/views/interaction.js:323
msgid "The attachments could not be correctly linked to the new document"
-msgstr "Các tệp đính kèm không thể được liên kết chính xác với tài liệu mới"
+msgstr ""
#. Description of the 'API Key' (Data) field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
-msgid ""
-"The browser API key obtained from the Google Cloud Console under \n"
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "The browser API key obtained from the Google Cloud Console under \n"
"\"APIs & Services\" > \"Credentials\"\n"
""
msgstr ""
-#: database/database.py:388
+#: frappe/database/database.py:475
msgid "The changes have been reverted."
msgstr ""
-#: core/doctype/data_import/importer.py:962
+#: frappe/core/doctype/data_import/importer.py:1009
msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format."
-msgstr "Cột {0} có {1} các định dạng ngày khác nhau. Tự động đặt {2} làm định dạng mặc định vì nó là định dạng phổ biến nhất. Vui lòng thay đổi các giá trị khác trong cột này thành định dạng này."
+msgstr ""
-#: templates/includes/comments/comments.py:34
+#: frappe/templates/includes/comments/comments.py:34
msgid "The comment cannot be empty"
-msgstr "Nhận xét không được để trống"
+msgstr ""
-#: public/js/frappe/views/interaction.js:301
+#: frappe/templates/emails/workflow_action.html:9
+msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:658
+msgid "The count shown is an estimated count. Click here to see the accurate count."
+msgstr ""
+
+#. Description of the 'Code' (Data) field in DocType 'Country'
+#: frappe/geo/doctype/country/country.json
+msgid "The country's ISO 3166 ALPHA-2 code."
+msgstr ""
+
+#: frappe/public/js/frappe/views/interaction.js:301
msgid "The document could not be correctly assigned"
-msgstr "Không thể gán đúng tài liệu"
+msgstr ""
-#: public/js/frappe/views/interaction.js:295
+#: frappe/public/js/frappe/views/interaction.js:295
msgid "The document has been assigned to {0}"
-msgstr "Tài liệu đã được gán cho {0}"
+msgstr ""
#. Description of the 'Parent Document Type' (Link) field in DocType 'Dashboard
#. Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "The document type selected is a child table, so the parent document type is required."
-msgstr ""
-
#. Description of the 'Parent Document Type' (Link) field in DocType 'Number
#. Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
msgid "The document type selected is a child table, so the parent document type is required."
msgstr ""
-#: core/doctype/user_type/user_type.py:109
+#: frappe/core/doctype/user_type/user_type.py:110
msgid "The field {0} is mandatory"
msgstr ""
-#: core/doctype/file/file.py:143
+#: frappe/core/doctype/file/file.py:145
msgid "The fieldname you've specified in Attached To Field is invalid"
msgstr ""
-#: core/doctype/data_import/importer.py:1035
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:62
+msgid "The following Assignment Days have been repeated: {0}"
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.js:30
+msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:1086
msgid "The following values are invalid: {0}. Values must be one of {1}"
msgstr ""
-#: core/doctype/data_import/importer.py:998
+#: frappe/core/doctype/data_import/importer.py:1043
msgid "The following values do not exist for {0}: {1}"
msgstr ""
-#: core/doctype/user_type/user_type.py:88
+#: frappe/core/doctype/user_type/user_type.py:89
msgid "The limit has not set for the user type {0} in the site config file."
msgstr ""
-#: templates/emails/login_with_email_link.html:21
+#: frappe/templates/emails/login_with_email_link.html:21
msgid "The link will expire in {0} minutes"
msgstr ""
-#: www/login.py:178
+#: frappe/www/login.py:194
msgid "The link you trying to login is invalid or expired."
msgstr ""
-#: website/doctype/web_page/web_page.js:125
+#: frappe/website/doctype/web_page/web_page.js:125
msgid "The meta description is an HTML attribute that provides a brief summary of a web page. Search engines such as Google often display the meta description in search results, which can influence click-through rates."
-msgstr "Mô tả meta là một thuộc tính HTML cung cấp một bản tóm tắt ngắn gọn về một trang web. Các công cụ tìm kiếm như Google thường hiển thị mô tả meta trong kết quả tìm kiếm, điều này có thể ảnh hưởng đến tỷ lệ nhấp."
+msgstr ""
-#: website/doctype/web_page/web_page.js:132
+#: frappe/website/doctype/web_page/web_page.js:132
msgid "The meta image is unique image representing the content of the page. Images for this Card should be at least 280px in width, and at least 150px in height."
-msgstr "Hình ảnh meta là hình ảnh duy nhất đại diện cho nội dung của trang. Hình ảnh cho Thẻ này phải có chiều rộng ít nhất là 280px và chiều cao ít nhất là 150px."
+msgstr ""
#. Description of the 'Calendar Name' (Data) field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "The name that will appear in Google Calendar"
-msgstr "Tên sẽ xuất hiện trong Lịch Google"
+msgstr ""
#. Description of the 'Track Steps' (Check) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "The next tour will start from where the user left off."
msgstr ""
#. Description of the 'Request Timeout' (Int) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "The number of seconds until the request expires"
msgstr ""
-#: www/404.html:18
-msgid "The page you are looking for has gone missing."
+#: frappe/www/update-password.html:88
+msgid "The password of your account has expired."
msgstr ""
-#: www/update-password.html:86
-msgid "The password of your account has expired."
-msgstr "Mật khẩu của tài khoản của bạn đã hết hạn."
-
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:395
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:398
msgid "The process for deletion of {0} data associated with {1} has been initiated."
-msgstr "Quá trình xóa dữ liệu {0} được liên kết với {1} đã được bắt đầu."
+msgstr ""
#. Description of the 'App ID' (Data) field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
-msgid ""
-"The project number obtained from Google Cloud Console under \n"
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "The project number obtained from Google Cloud Console under \n"
"\"IAM & Admin\" > \"Settings\"\n"
""
msgstr ""
-#: core/doctype/user/user.py:943
+#: frappe/core/doctype/user/user.py:987
msgid "The reset password link has been expired"
msgstr ""
-#: core/doctype/user/user.py:945
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: app.py:364 public/js/frappe/request.js:147
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
-msgstr "Các tài nguyên mà bạn đang tìm kiếm là không có sẵn"
+msgstr ""
-#: core/doctype/user_type/user_type.py:113
+#: frappe/core/doctype/user_type/user_type.py:114
msgid "The role {0} should be a custom role."
msgstr ""
-#: core/doctype/audit_trail/audit_trail.py:45
+#: frappe/core/doctype/audit_trail/audit_trail.py:46
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: utils/response.py:321
+#: frappe/utils/response.py:334
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
-#: public/js/frappe/form/grid_row.js:615
-msgid "The total column width cannot be more than 10."
+#: frappe/core/page/permission_manager/permission_manager_help.html:9
+msgid "The system provides many pre-defined roles. You can add new roles to set finer permissions."
msgstr ""
-#: core/doctype/user_type/user_type.py:96
+#: frappe/core/doctype/user_type/user_type.py:97
msgid "The total number of user document types limit has been crossed."
msgstr ""
-#. Description of the 'User Field' (Select) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "The user from this field will be rewarded points"
-msgstr "Người dùng từ lĩnh vực này sẽ được thưởng điểm"
-
-#: public/js/frappe/form/controls/data.js:24
+#: frappe/public/js/frappe/form/controls/data.js:25
msgid "The value you pasted was {0} characters long. Max allowed characters is {1}."
msgstr ""
#. Description of the 'Condition' (Small Text) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "The webhook will be triggered if this expression is true"
-msgstr "Webhook sẽ được kích hoạt nếu biểu thức này là đúng"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:168
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175
msgid "The {0} is already on auto repeat {1}"
-msgstr "{0} đã tự động lặp lại {1}"
+msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the section_break_6 (Section Break) field in DocType 'Website
+#. Settings'
+#. Label of the theme (Data) field in DocType 'Website Theme'
+#. Label of the theme_scss (Code) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme"
-msgstr "Chủ đề"
+msgstr ""
-#. Label of a Data field in DocType 'Website Theme'
-#. Label of a Code field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Theme"
-msgstr "Chủ đề"
-
-#: public/js/frappe/ui/theme_switcher.js:130
+#: frappe/public/js/frappe/ui/theme_switcher.js:130
msgid "Theme Changed"
msgstr ""
-#. Label of a Tab Break field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the bootstrap_theme_section (Tab Break) field in DocType 'Website
+#. Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme Configuration"
-msgstr "Cấu hình chủ đề"
+msgstr ""
-#. Label of a Data field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the theme_url (Data) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme URL"
-msgstr "URL chủ đề"
+msgstr ""
-#: website/web_template/discussions/discussions.html:3
+#: frappe/workflow/doctype/workflow/workflow.js:125
+msgid "There are documents which have workflow states that do not exist in this Workflow. It is recommended that you add these states to the Workflow and change their states before removing these states."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:442
+msgid "There are no upcoming events for you."
+msgstr ""
+
+#: frappe/website/web_template/discussions/discussions.html:3
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: website/doctype/web_form/web_form.js:72
-#: website/doctype/web_form/web_form.js:308
+#: frappe/public/js/frappe/views/reports/query_report.js:961
+msgid "There are {0} with the same filters already in the queue:"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.js:81
+#: frappe/website/doctype/web_form/web_form.js:317
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
-#: core/doctype/doctype/doctype.py:1394
+#: frappe/core/doctype/doctype/doctype.py:1443
msgid "There can be only one Fold in a form"
-msgstr "Chỉ có thể có một lần trong một mẫu"
+msgstr ""
-#: contacts/doctype/address/address.py:185
+#: frappe/contacts/doctype/address/address.py:183
msgid "There is an error in your Address Template {0}"
-msgstr "Có một lỗi trong mẫu Địa chỉ của bạn {0}"
+msgstr ""
-#: core/doctype/data_export/exporter.py:162
+#: frappe/core/doctype/data_export/exporter.py:162
msgid "There is no data to be exported"
-msgstr "Không có dữ liệu nào được xuất khẩu"
+msgstr ""
-#: core/doctype/file/file.py:571 utils/file_manager.py:376
+#: frappe/public/js/frappe/ui/notifications/notifications.js:492
+msgid "There is nothing new to show you right now."
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
-msgstr "Có một số vấn đề với các url của tệp: {0}"
+msgstr ""
-#: core/page/permission_manager/permission_manager.py:150
+#: frappe/public/js/frappe/views/reports/query_report.js:958
+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 "Phải có ít nhất một quy tắc cho phép."
+msgstr ""
-#: core/doctype/user/user.py:499
-msgid "There should remain at least one System Manager"
-msgstr "Nên còn ít nhất một người quản lý hệ thống"
-
-#: www/error.py:16
+#: frappe/www/error.py:17
msgid "There was an error building this page"
-msgstr "Đã xảy ra lỗi khi xây dựng trang này"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:180
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
msgid "There was an error saving filters"
-msgstr "Có một bộ lọc lưu lỗi"
+msgstr ""
-#: public/js/frappe/form/sidebar/attachments.js:201
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
-msgstr "Có một số lỗi"
+msgstr ""
-#: public/js/frappe/views/interaction.js:276
+#: frappe/public/js/frappe/views/interaction.js:277
msgid "There were errors while creating the document. Please try again."
-msgstr "Đã xảy ra lỗi khi tạo tài liệu. Vui lòng thử lại."
+msgstr ""
-#: public/js/frappe/views/communication.js:728
+#: frappe/public/js/frappe/views/communication.js:837
msgid "There were errors while sending email. Please try again."
-msgstr "Có lỗi khi gửi email. Vui lòng thử lại sau."
+msgstr ""
-#: model/naming.py:449
+#: frappe/model/naming.py:494
msgid "There were some errors setting the name, please contact the administrator"
-msgstr "Đã có một số lỗi thiết lập tên, xin vui lòng liên hệ quản trị viên"
+msgstr ""
-#: www/404.html:15
-msgid "There's nothing here"
+#. Description of the 'Announcement Widget' (Text Editor) field in DocType
+#. 'Navbar Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+msgid "These announcements will appear inside a dismissible alert below the Navbar."
msgstr ""
#. Description of the 'LDAP Custom Settings' (Section Break) field in DocType
#. 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "These settings are required if 'Custom' LDAP Directory is used"
msgstr ""
#. Description of the 'Defaults' (Section Break) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values."
-msgstr "Những giá trị này sẽ được tự động cập nhật trong các giao dịch và cũng sẽ hữu ích để hạn chế quyền truy cập cho người dùng này về giao dịch có chứa các giá trị."
+msgstr ""
-#: www/third_party_apps.html:3 www/third_party_apps.html:13
+#: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14
msgid "Third Party Apps"
-msgstr "Ứng dụng của bên thứ ba"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the third_party_authentication (Section Break) field in DocType
+#. 'User'
+#: frappe/core/doctype/user/user.json
msgid "Third Party Authentication"
-msgstr "Bên thứ ba xác thực"
+msgstr ""
-#: geo/doctype/currency/currency.js:8
+#: frappe/geo/doctype/currency/currency.js:8
msgid "This Currency is disabled. Enable to use in transactions"
-msgstr "Giá trị tiền tệ này bị vô hiệu hóa. Cho phép sử dụng trong các giao dịch"
-
-#: geo/utils.py:84
-msgid "This Doctype does not contain latitude and longitude fields"
msgstr ""
-#: geo/utils.py:67
-msgid "This Doctype does not contain location fields"
-msgstr ""
-
-#: public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
msgid "This Kanban Board will be private"
-msgstr "Bảng Kanban này là riêng tư"
+msgstr ""
-#: __init__.py:917
+#: frappe/public/js/frappe/ui/filters/filter.js:666
+msgid "This Month"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:670
+msgid "This Quarter"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:662
+msgid "This Week"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:674
+msgid "This Year"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:220
+msgid "This action is irreversible. Do you wish to continue?"
+msgstr ""
+
+#: frappe/__init__.py:750
msgid "This action is only allowed for {}"
-msgstr "Hành động này chỉ được phép cho {}"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:107 public/js/frappe/model/model.js:720
+#: frappe/public/js/frappe/form/toolbar.js:117
+#: frappe/public/js/frappe/model/model.js:755
msgid "This cannot be undone"
-msgstr "Điều này không thể được hoàn tác"
+msgstr ""
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
-msgstr "Thẻ này sẽ có sẵn cho tất cả Người dùng nếu thẻ này được đặt"
-
-#. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "This chart will be available to all Users if this is set"
-msgstr "Biểu đồ này sẽ có sẵn cho tất cả Người dùng nếu điều này được đặt"
-
-#: desk/doctype/workspace/workspace.js:23
-msgid "This document allows you to edit limited fields. For all kinds of workspace customization, use the Edit button located on the workspace page"
msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:90
-msgid "This document cannot be reverted"
-msgstr "Tài liệu này không thể được hoàn nguyên"
+#. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "This chart will be available to all Users if this is set"
+msgstr ""
-#: www/confirm_workflow_action.html:8
+#: frappe/custom/doctype/customize_form/customize_form.js:212
+msgid "This doctype has no orphan fields to trim"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1054
+msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
+msgstr ""
+
+#: frappe/model/delete_doc.py:112
+msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
+msgstr ""
+
+#: frappe/www/confirm_workflow_action.html:8
msgid "This document has been modified after the email was sent."
-msgstr "Tài liệu này đã được sửa đổi sau khi email được gửi."
+msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.js:8
-msgid "This document has been reverted"
-msgstr "Tài liệu này đã được hoàn nguyên"
+#: frappe/public/js/frappe/form/form.js:1305
+msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
+msgstr ""
-#: public/js/frappe/form/form.js:1075
+#: frappe/public/js/frappe/form/form.js:1102
msgid "This document is already amended, you cannot ammend it again"
-msgstr "Tài liệu này đã được sửa đổi, bạn không thể sửa đổi lại"
+msgstr ""
-#: model/document.py:1518
-msgid "This document is currently queued for execution. Please try again"
-msgstr "Tài liệu này hiện đang chờ để thực hiện. Vui lòng thử lại"
+#: frappe/model/document.py:474
+msgid "This document is currently locked and queued for execution. Please try again after some time."
+msgstr ""
-#: templates/emails/auto_repeat_fail.html:7
+#: frappe/templates/emails/auto_repeat_fail.html:7
msgid "This email is autogenerated"
-msgstr "Email này được tạo tự động"
+msgstr ""
-#: printing/doctype/network_printer_settings/network_printer_settings.py:29
-msgid ""
-"This feature can not be used as dependencies are missing.\n"
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:30
+msgid "This feature can not be used as dependencies are missing.\n"
"\t\t\t\tPlease contact your system manager to enable this by installing pycups!"
msgstr ""
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
+msgid "This feature is brand new and still experimental"
+msgstr ""
+
#. Description of the 'Depends On' (Code) field in DocType 'Customize Form
#. Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid ""
-"This field will appear only if the fieldname defined here has value OR the rules are true (examples):\n"
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "This field will appear only if the fieldname defined here has value OR the rules are true (examples):\n"
"myfield\n"
"eval:doc.myfield=='My Value'\n"
"eval:doc.age>18"
msgstr ""
-#: core/doctype/file/file.js:10
+#: frappe/core/doctype/file/file.py:500
+msgid "This file is attached to a protected document and cannot be deleted."
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FilePreview.vue:76
+msgid "This file is public and can be accessed by anyone, even without logging in. Mark it private to limit access."
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:20
msgid "This file is public. It can be accessed without authentication."
msgstr ""
-#: public/js/frappe/form/form.js:1172
+#: frappe/public/js/frappe/form/form.js:1199
msgid "This form has been modified after you have loaded it"
-msgstr "Hình thức này đã được sửa đổi sau khi bạn đã tải nó"
+msgstr ""
-#: public/js/frappe/form/form.js:457
+#: frappe/public/js/frappe/form/form.js:2257
msgid "This form is not editable due to a Workflow."
msgstr ""
#. Description of the 'Is Default' (Check) field in DocType 'Address Template'
-#: contacts/doctype/address_template/address_template.json
-msgctxt "Address Template"
+#: frappe/contacts/doctype/address_template/address_template.json
msgid "This format is used if country specific format is not found"
-msgstr "Định dạng này được sử dụng nếu định dạng quốc gia cụ thể không được tìm thấy"
+msgstr ""
+
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.py:52
+msgid "This geolocation provider is not supported yet."
+msgstr ""
#. Description of the 'Header' (HTML Editor) field in DocType 'Website
#. Slideshow'
-#: website/doctype/website_slideshow/website_slideshow.json
-msgctxt "Website Slideshow"
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "This goes above the slideshow."
-msgstr "Điều này đi trên các slideshow."
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2132
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
-msgstr "Đây là một báo cáo nền. Vui lòng đặt các bộ lọc thích hợp và sau đó tạo một bộ lọc mới."
+msgstr ""
-#: utils/password_strength.py:162
+#: frappe/utils/password_strength.py:158
msgid "This is a top-10 common password."
-msgstr "Đây là một trong top 10 mật khẩu phổ biến."
+msgstr ""
-#: utils/password_strength.py:164
+#: frappe/utils/password_strength.py:160
msgid "This is a top-100 common password."
-msgstr "Đây là một top-100 mật khẩu chung."
+msgstr ""
-#: utils/password_strength.py:166
+#: frappe/utils/password_strength.py:162
msgid "This is a very common password."
-msgstr "Đây là một mật khẩu rất phổ biến."
+msgstr ""
-#: core/doctype/rq_job/rq_job.js:9
+#: frappe/core/doctype/rq_job/rq_job.js:9
msgid "This is a virtual doctype and data is cleared periodically."
msgstr ""
-#: templates/emails/auto_reply.html:5
+#: frappe/templates/emails/auto_reply.html:5
msgid "This is an automatically generated reply"
-msgstr "Đây là một phản hồi được tự động tạo ra"
+msgstr ""
#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog
#. Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "This is an example Google SERP Preview."
-msgstr "Đây là một ví dụ về Google SERP Preview."
+msgstr ""
-#: utils/password_strength.py:168
+#: frappe/utils/password_strength.py:164
msgid "This is similar to a commonly used password."
-msgstr "Điều này cũng tương tự như một mật khẩu thường được sử dụng."
+msgstr ""
#. Description of the 'Current Value' (Int) field in DocType 'Document Naming
#. Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "This is the number of the last created transaction with this prefix"
-msgstr "Đây là số lượng các giao dịch tạo ra cuối cùng với tiền tố này"
+msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:404
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407
msgid "This link has already been activated for verification."
-msgstr "Liên kết này đã được kích hoạt để xác minh."
+msgstr ""
-#: utils/verified_command.py:49
+#: frappe/utils/verified_command.py:49
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
-msgstr "Liên kết này là không hợp lệ hoặc hết hạn. Hãy chắc chắn rằng bạn đã dán một cách chính xác."
+msgstr ""
-#: printing/page/print/print.js:403
+#: frappe/printing/page/print/print.js:410
msgid "This may get printed on multiple pages"
-msgstr "Điều này có thể được in trên nhiều trang"
+msgstr ""
-#: utils/goal.py:109
+#: frappe/utils/goal.py:109
msgid "This month"
-msgstr "Tháng này"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:223
+#: frappe/email/doctype/newsletter/newsletter.js:223
msgid "This newsletter is scheduled to be sent on {0}"
msgstr ""
-#: email/doctype/newsletter/newsletter.js:50
+#: frappe/email/doctype/newsletter/newsletter.js:50
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
msgstr ""
-#: templates/emails/auto_email_report.html:57
+#: frappe/public/js/frappe/views/reports/query_report.js:1033
+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 "Báo cáo này được tạo vào ngày {0}"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:782
+#: frappe/public/js/frappe/views/reports/query_report.js:856
msgid "This report was generated {0}."
-msgstr "Báo cáo này đã được tạo {0}."
+msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:118
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:122
msgid "This request has not yet been approved by the user."
-msgstr "Yêu cầu này chưa được người dùng chấp thuận."
+msgstr ""
-#: templates/includes/navbar/navbar_items.html:95
+#: frappe/templates/includes/navbar/navbar_items.html:95
msgid "This site is in read only mode, full functionality will be restored soon."
msgstr ""
-#: core/doctype/doctype/doctype.js:76
+#: frappe/core/doctype/doctype/doctype.js:73
msgid "This site is running in developer mode. Any change made here will be updated in code."
msgstr ""
-#: website/doctype/web_page/web_page.js:71
-msgid "This title will be used as the title of the webpage as well as in meta tags"
-msgstr "Tiêu đề này sẽ được sử dụng làm tiêu đề của trang web cũng như trong các thẻ meta"
+#: frappe/www/attribution.html:11
+msgid "This software is built on top of many open source packages."
+msgstr ""
-#: public/js/frappe/form/controls/base_input.js:120
+#: 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 ""
-#: website/doctype/web_page/web_page.js:85
+#. Description of the 'Max Report Rows' (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "This value specifies the max number of rows that can be rendered in report view. "
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:85
msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish"
-msgstr "Điều này sẽ được tạo tự động khi bạn xuất bản trang, bạn cũng có thể tự nhập lộ trình nếu muốn"
+msgstr ""
#. Description of the 'Callback Message' (Small Text) field in DocType
#. 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "This will be shown in a modal after routing"
-msgstr "Điều này sẽ được hiển thị trong một phương thức sau khi định tuyến"
+msgstr ""
#. Description of the 'Report Description' (Data) field in DocType 'Onboarding
#. Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "This will be shown to the user in a dialog after routing to the report"
-msgstr "Điều này sẽ được hiển thị cho người dùng trong một hộp thoại sau khi định tuyến đến báo cáo"
+msgstr ""
-#: www/third_party_apps.html:21
+#: frappe/www/third_party_apps.html:23
msgid "This will log out {0} from all other devices"
-msgstr "Thao tác này sẽ đăng xuất ra {0} từ tất cả các thiết bị khác"
+msgstr ""
-#: templates/emails/delete_data_confirmation.html:3
+#: frappe/templates/emails/delete_data_confirmation.html:3
msgid "This will permanently remove your data."
-msgstr "Điều này sẽ xóa vĩnh viễn dữ liệu của bạn."
+msgstr ""
-#: desk/doctype/form_tour/form_tour.js:103
+#: frappe/desk/doctype/form_tour/form_tour.js:103
msgid "This will reset this tour and show it to all users. Are you sure?"
msgstr ""
-#: core/doctype/rq_job/rq_job.js:15
+#: frappe/core/doctype/rq_job/rq_job.js:15
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: core/doctype/user/user.py:1209
+#: frappe/core/doctype/user/user.py:1240
msgid "Throttled"
-msgstr "Bị hạn chế"
+msgstr ""
-#. Label of a Small Text field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the thumbnail_url (Small Text) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Thumbnail URL"
-msgstr "URL hình đại diện"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Thursday"
-msgstr "Thứ năm"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Thursday"
-msgstr "Thứ năm"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Thursday"
-msgstr "Thứ năm"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Thursday"
-msgstr "Thứ năm"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the thursday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Thursday"
-msgstr "Thứ năm"
-
-#: email/doctype/newsletter/newsletter.js:118
-msgid "Time"
-msgstr "Thời gian"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Time"
-msgstr "Thời gian"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Time"
-msgstr "Thời gian"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Time"
-msgstr "Thời gian"
-
-#. Label of a Datetime field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "Time"
-msgstr "Thời gian"
-
+#. Label of the time (Datetime) field in DocType 'Recorder'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Time"
-msgstr "Thời gian"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Time"
-msgstr "Thời gian"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/email/doctype/newsletter/newsletter.js:118
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
-msgstr "Thời gian"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the time_format (Select) field in DocType 'Language'
+#. Label of the time_format (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Time Format"
-msgstr "Định dạng thời gian"
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the time_interval (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Time Interval"
-msgstr "Khoảng thời gian"
+msgstr ""
-#. Label of a Check field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the timeseries (Check) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Time Series"
-msgstr "Chuỗi thời gian"
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the based_on (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Time Series Based On"
-msgstr "Chuỗi thời gian dựa trên"
+msgstr ""
-#. Label of a Duration field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the time_taken (Duration) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Time Taken"
msgstr ""
-#. Label of a Int field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the rate_limit_seconds (Int) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Time Window (Seconds)"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:395
+#. Label of the time_zone (Select) field in DocType 'System Settings'
+#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of the time_zone (Data) field in DocType 'Web Page View'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:407
+#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
-msgstr "Múi giờ"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Time Zone"
-msgstr "Múi giờ"
-
-#. Label of a Autocomplete field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Time Zone"
-msgstr "Múi giờ"
-
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Time Zone"
-msgstr "Múi giờ"
-
-#. Label of a Text field in DocType 'Country'
-#: geo/doctype/country/country.json
-msgctxt "Country"
+#. Label of the time_zones (Text) field in DocType 'Country'
+#: frappe/geo/doctype/country/country.json
msgid "Time Zones"
-msgstr "Các múi giờ"
+msgstr ""
-#. Label of a Data field in DocType 'Country'
-#: geo/doctype/country/country.json
-msgctxt "Country"
+#. Label of the time_format (Data) field in DocType 'Country'
+#: frappe/geo/doctype/country/country.json
msgid "Time format"
-msgstr "Định dạng thời gian"
+msgstr ""
-#. Label of a Float field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#. Label of the time_in_queries (Float) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
msgid "Time in Queries"
msgstr ""
#. Description of the 'Expiry time of QR Code Image Page' (Int) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Time in seconds to retain QR code image on server. Min:240"
-msgstr "Thời gian tính bằng giây để giữ lại hình ảnh mã QR trên máy chủ. Tối thiểu: 240"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.py:413
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:413
msgid "Time series based on is required to create a dashboard chart"
-msgstr "Chuỗi thời gian dựa trên được yêu cầu để tạo biểu đồ bảng điều khiển"
+msgstr ""
-#: public/js/frappe/form/controls/time.js:104
+#: frappe/public/js/frappe/form/controls/time.js:124
msgid "Time {0} must be in format: {1}"
-msgstr "Thời gian {0} phải ở định dạng: {1}"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/core/doctype/data_import/data_import.json
msgid "Timed Out"
msgstr ""
-#: public/js/frappe/ui/theme_switcher.js:64
+#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr ""
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the timeline (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Timeline"
msgstr ""
-#. Label of a Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. Label of the timeline_doctype (Link) field in DocType 'Activity Log'
+#: frappe/core/doctype/activity_log/activity_log.json
msgid "Timeline DocType"
-msgstr "Dòng thời gian của kiểu văn bản"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the timeline_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Timeline Field"
-msgstr "trường của dòng thời gian"
+msgstr ""
-#. Label of a Section Break field in DocType 'Communication'
-#. Label of a Table field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the timeline_links_sections (Section Break) field in DocType
+#. 'Communication'
+#. Label of the timeline_links (Table) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Timeline Links"
-msgstr "Liên kết dòng thời gian"
+msgstr ""
-#. Label of a Dynamic Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. Label of the timeline_name (Dynamic Link) field in DocType 'Activity Log'
+#: frappe/core/doctype/activity_log/activity_log.json
msgid "Timeline Name"
-msgstr "tên dòng thời gian"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1489
+#: frappe/core/doctype/doctype/doctype.py:1538
msgid "Timeline field must be a Link or Dynamic Link"
-msgstr "Trường của dòng thời gian phải là một liên kết hoặc liên kết động"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1485
+#: frappe/core/doctype/doctype/doctype.py:1534
msgid "Timeline field must be a valid fieldname"
-msgstr "Trường của dòng thời gian phải là một trường tên hợp lệ"
+msgstr ""
-#. Label of a Duration field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the timeout (Duration) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Timeout"
msgstr ""
-#. Label of a Check field in DocType 'Dashboard Chart Source'
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
-msgctxt "Dashboard Chart Source"
+#. Label of the timeout (Int) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Timeout (In Seconds)"
+msgstr ""
+
+#. Label of the timeseries (Check) field in DocType 'Dashboard Chart Source'
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
msgid "Timeseries"
-msgstr "Chuỗi thời gian"
+msgstr ""
-#: desk/page/leaderboard/leaderboard.js:123
-#: public/js/frappe/ui/filters/filter.js:28
+#. Label of the timespan (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/ui/filters/filter.js:28
msgid "Timespan"
-msgstr "Thời gian"
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Timespan"
-msgstr "Thời gian"
-
-#: core/report/transaction_log_report/transaction_log_report.py:112
+#. Label of the timestamp (Datetime) field in DocType 'Access Log'
+#. Label of the timestamp (Datetime) field in DocType 'Transaction Log'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:112
msgid "Timestamp"
-msgstr "Dấu thời gian"
+msgstr ""
-#. Label of a Datetime field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
-msgid "Timestamp"
-msgstr "Dấu thời gian"
+#: frappe/desk/doctype/system_console/system_console.js:41
+msgid "Tip: Try the new dropdown console using"
+msgstr ""
-#. Label of a Datetime field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Timestamp"
-msgstr "Dấu thời gian"
-
-#: public/js/form_builder/store.js:89
-#: public/js/frappe/views/workspace/workspace.js:599
-#: public/js/frappe/views/workspace/workspace.js:928
-#: public/js/frappe/views/workspace/workspace.js:1175
+#. Label of the title (Data) field in DocType 'DocType State'
+#. Label of the method (Data) field in DocType 'Error Log'
+#. Label of the title (Data) field in DocType 'Page'
+#. Label of the title (Data) field in DocType 'Changelog Feed'
+#. Label of the title (Data) field in DocType 'Form Tour'
+#. Label of the title (Data) field in DocType 'Form Tour Step'
+#. Label of the title (Data) field in DocType 'Module Onboarding'
+#. Label of the title (Data) field in DocType 'Note'
+#. Label of the title (Data) field in DocType 'Onboarding Step'
+#. Label of the title (Data) field in DocType 'System Health Report Errors'
+#. Label of the title (Data) field in DocType 'Workspace'
+#. Label of the title (Data) field in DocType 'Email Group'
+#. Label of the title (Data) field in DocType 'Blog Category'
+#. Label of the title (Data) field in DocType 'Blog Post'
+#. Label of the title (Data) field in DocType 'Blog Settings'
+#. Label of the title (Data) field in DocType 'Discussion Topic'
+#. Label of the title (Data) field in DocType 'Help Article'
+#. Label of the title (Data) field in DocType 'Portal Menu Item'
+#. Label of the title (Data) field in DocType 'Web Form'
+#. Label of the list_title (Data) field in DocType 'Web Form'
+#. Label of the title (Data) field in DocType 'Web Page'
+#. Label of the meta_title (Data) field in DocType 'Web Page'
+#. Label of the title (Data) field in DocType 'Website Sidebar'
+#. Label of the title (Data) field in DocType 'Website Sidebar Item'
+#: frappe/core/doctype/doctype/boilerplate/controller_list.html:14
+#: frappe/core/doctype/doctype/boilerplate/controller_list.html:23
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/page/page.json
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/desk/doctype/note/note.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/email/doctype/email_group/email_group.json
+#: frappe/public/js/frappe/views/workspace/workspace.js:393
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
+#: frappe/website/doctype/help_article/help_article.json
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_sidebar/website_sidebar.json
+#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Title"
-msgstr "Tiêu đề"
+msgstr ""
-#. Label of a Data field in DocType 'Blog Category'
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
-msgid "Title"
-msgstr "Tiêu đề"
-
-#. Label of a Data field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Title"
-msgstr "Tiêu đề"
-
-#. Label of a Data field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
-msgid "Title"
-msgstr "Tiêu đề"
-
-#. Label of a Data field in DocType 'Discussion Topic'
-#: website/doctype/discussion_topic/discussion_topic.json
-msgctxt "Discussion Topic"
-msgid "Title"
-msgstr "Tiêu đề"
-
-#. Label of a Data field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Title"
-msgstr "Tiêu đề"
-
-#. Label of a Data field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
-msgid "Title"
-msgstr "Tiêu đề"
-
-#. Label of a Data field in DocType 'Error Log'
-#: core/doctype/error_log/error_log.json
-msgctxt "Error Log"
-msgid "Title"
-msgstr "Tiêu đề"
-
-#. Label of a Data field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Title"
-msgstr "Tiêu đề"
-
-#. Label of a Data field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Title"
-msgstr "Tiêu đề"
-
-#. Label of a Data field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
-msgid "Title"
-msgstr "Tiêu đề"
-
-#. Label of a Data field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Title"
-msgstr "Tiêu đề"
-
-#. Label of a Data field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
-msgid "Title"
-msgstr "Tiêu đề"
-
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Title"
-msgstr "Tiêu đề"
-
-#. Label of a Data field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Title"
-msgstr "Tiêu đề"
-
-#. Label of a Data field in DocType 'Portal Menu Item'
-#: website/doctype/portal_menu_item/portal_menu_item.json
-msgctxt "Portal Menu Item"
-msgid "Title"
-msgstr "Tiêu đề"
-
-#. Label of a Data field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Title"
-msgstr "Tiêu đề"
-
-#. Label of a Data field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Title"
-msgstr "Tiêu đề"
-
-#. Label of a Data field in DocType 'Website Sidebar'
-#: website/doctype/website_sidebar/website_sidebar.json
-msgctxt "Website Sidebar"
-msgid "Title"
-msgstr "Tiêu đề"
-
-#. Label of a Data field in DocType 'Website Sidebar Item'
-#: website/doctype/website_sidebar_item/website_sidebar_item.json
-msgctxt "Website Sidebar Item"
-msgid "Title"
-msgstr "Tiêu đề"
-
-#. Label of a Data field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Title"
-msgstr "Tiêu đề"
-
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the title_field (Data) field in DocType 'DocType'
+#. Label of the title_field (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Title Field"
-msgstr "Đoạn tiêu đề"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Title Field"
-msgstr "Đoạn tiêu đề"
-
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the title_prefix (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Title Prefix"
-msgstr "tiền tố tiêu đề"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1426
+#: frappe/core/doctype/doctype/doctype.py:1475
msgid "Title field must be a valid fieldname"
-msgstr "đoạn tiêu đề phải là một đoạn tên hợp lệ"
+msgstr ""
-#: website/doctype/web_page/web_page.js:70
+#: frappe/website/doctype/web_page/web_page.js:70
msgid "Title of the page"
-msgstr "Tiêu đề của trang"
+msgstr ""
-#: public/js/frappe/views/communication.js:52
-#: public/js/frappe/views/inbox/inbox_view.js:70
+#. Label of the recipients (Code) field in DocType 'Communication'
+#. Label of the recipients (Section Break) field in DocType 'Newsletter'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/permission_log/permission_log.js:12
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
-msgstr "Đến"
+msgstr ""
-#. Label of a Code field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/public/js/frappe/views/communication.js:53
+msgctxt "Email Recipients"
msgid "To"
-msgstr "Đến"
+msgstr ""
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "To"
-msgstr "Đến"
-
-#: website/report/website_analytics/website_analytics.js:14
+#. Label of the to_date (Date) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/website/report/website_analytics/website_analytics.js:14
msgid "To Date"
-msgstr "Đến ngày"
+msgstr ""
-#. Label of a Date field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "To Date"
-msgstr "Đến ngày"
-
-#. Label of a Select field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the to_date_field (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "To Date Field"
-msgstr "Đến trường ngày"
-
-#: desk/doctype/todo/todo_list.js:12
-msgid "To Do"
-msgstr "Để làm"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "ToDo"
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/todo/todo_list.js:6
msgid "To Do"
-msgstr "Để làm"
-
-#: public/js/frappe/form/sidebar/review.js:50
-msgid "To User"
-msgstr "Đến người dùng"
+msgstr ""
#. Description of the 'Subject' (Data) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid ""
-"To add dynamic subject, use jinja tags like\n"
-"\n"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+msgid "To add dynamic subject, use jinja tags like\n\n"
"New {{ doc.doctype }} #{{ doc.name }}
"
msgstr ""
#. Description of the 'Subject' (Data) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid ""
-"To add dynamic subject, use jinja tags like\n"
-"\n"
+#: frappe/email/doctype/notification/notification.json
+msgid "To add dynamic subject, use jinja tags like\n\n"
"{{ doc.name }} Delivered
"
msgstr ""
#. Description of the 'JSON Request Body' (Code) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid ""
-"To add dynamic values from the document, use jinja tags like\n"
-"\n"
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "To add dynamic values from the document, use jinja tags like\n\n"
"\n"
"{ \"id\": \"{{ doc.name }}\" }\n"
"
\n"
""
msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.py:101
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:107
msgid "To allow more reports update limit in System Settings."
msgstr ""
-#. Label of a Section Break field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the section_break_10 (Section Break) field in DocType
+#. 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "To and CC"
-msgstr "To và CC"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.js:35
+#. Description of the 'Use First Day of Period' (Check) field in DocType 'Auto
+#. Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "To begin the date range at the start of the chosen period. For example, if 'Year' is selected as the period, the report will start from January 1st of the current year."
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:35
msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}."
-msgstr "Để định cấu hình Lặp lại tự động, bật "Cho phép lặp lại tự động" từ {0}."
+msgstr ""
-#: www/login.html:73
+#: frappe/www/login.html:76
msgid "To enable it follow the instructions in the following link: {0}"
-msgstr "Để kích hoạt nó, hãy làm theo các hướng dẫn trong liên kết sau: {0}"
+msgstr ""
-#: desk/doctype/onboarding_step/onboarding_step.js:18
+#: frappe/core/doctype/server_script/server_script.js:40
+msgid "To enable server scripts, read the {0}."
+msgstr ""
+
+#: frappe/desk/doctype/onboarding_step/onboarding_step.js:18
msgid "To export this step as JSON, link it in a Onboarding document and save the document."
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:783
-msgid "To get the updated report, click on {0}."
-msgstr "Để nhận báo cáo cập nhật, nhấp vào {0}."
+#: frappe/email/doctype/email_account/email_account.js:126
+msgid "To generate password click {0}"
+msgstr ""
-#: www/me.html:51
-msgid "To manage your authorized third party apps"
+#: frappe/public/js/frappe/views/reports/query_report.js:857
+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'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#: frappe/desk/doctype/system_console/system_console.json
msgid "To print output use print(text)"
msgstr ""
-#: core/doctype/user_type/user_type.py:295
+#: frappe/core/doctype/user_type/user_type.py:291
msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record."
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.js:8
+#: frappe/integrations/doctype/google_calendar/google_calendar.js:8
msgid "To use Google Calendar, enable {0}."
-msgstr "Để sử dụng Lịch Google, bật {0}."
+msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.js:8
+#: frappe/integrations/doctype/google_contacts/google_contacts.js:8
msgid "To use Google Contacts, enable {0}."
-msgstr "Để sử dụng Danh bạ Google, hãy bật {0}."
+msgstr ""
-#: integrations/doctype/google_drive/google_drive.js:8
+#: frappe/integrations/doctype/google_drive/google_drive.js:8
msgid "To use Google Drive, enable {0}."
-msgstr "Để sử dụng Google Drive, hãy bật {0}."
+msgstr ""
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "To use Google Indexing, enable Google Settings."
msgstr ""
#. Description of the 'Slack Channel' (Link) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "To use Slack Channel, add a Slack Webhook URL."
msgstr ""
-#: public/js/frappe/utils/diffview.js:43
+#: frappe/public/js/frappe/utils/diffview.js:44
msgid "To version"
msgstr ""
+#. Label of a shortcut in the Tools Workspace
#. Name of a DocType
#. Name of a report
-#: desk/doctype/todo/todo.json desk/report/todo/todo.json
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.json
msgid "ToDo"
-msgstr "Việc cần làm"
+msgstr ""
-#. Label of a shortcut in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "ToDo"
-msgid "ToDo"
-msgstr "Việc cần làm"
-
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "ToDo"
-msgstr "Việc cần làm"
-
-#: public/js/frappe/form/controls/date.js:58
-#: public/js/frappe/views/calendar/calendar.js:267
+#: frappe/public/js/frappe/form/controls/date.js:58
+#: frappe/public/js/frappe/ui/filters/filter.js:733
+#: frappe/public/js/frappe/views/calendar/calendar.js:274
msgid "Today"
-msgstr "Hôm nay"
+msgstr ""
-#: public/js/frappe/ui/notifications/notifications.js:55
-msgid "Today's Events"
-msgstr "Sự kiện hôm nay"
-
-#: public/js/frappe/views/reports/report_view.js:1495
+#: frappe/public/js/frappe/views/reports/report_view.js:1564
msgid "Toggle Chart"
-msgstr "Chuyển đổi biểu đồ"
+msgstr ""
#. Label of a standard navbar item
#. Type: Action
-#: hooks.py
+#: frappe/hooks.py
msgid "Toggle Full Width"
msgstr ""
-#: public/js/frappe/views/file/file_view.js:33
+#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
-msgstr "Chuyển đổi Chế độ Xem Lưới"
+msgstr ""
-#: public/js/frappe/ui/page.js:193 public/js/frappe/ui/page.js:195
-#: public/js/frappe/views/reports/report_view.js:1499
+#: frappe/public/js/frappe/ui/page.js:201
+#: frappe/public/js/frappe/ui/page.js:203
+#: frappe/public/js/frappe/views/reports/report_view.js:1568
msgid "Toggle Sidebar"
-msgstr "Chuyển đổi Sidebar"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1681
+#: frappe/public/js/frappe/list/list_view.js:1819
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
-msgstr "Chuyển đổi Sidebar"
+msgstr ""
#. Label of a standard navbar item
#. Type: Action
-#: hooks.py
+#: frappe/hooks.py
msgid "Toggle Theme"
msgstr ""
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
-msgstr "thông báo"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/token_cache/token_cache.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Cache"
msgstr ""
-#. Linked DocType in Connected App's connections
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
-msgid "Token Cache"
-msgstr ""
-
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Token Cache"
-msgstr ""
-
-#. Label of a Data field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
+#. Label of the token_type (Data) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Type"
msgstr ""
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the token_uri (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Token URI"
msgstr ""
-#: utils/oauth.py:184
+#: frappe/utils/oauth.py:184
msgid "Token is missing"
-msgstr "Thông báo bị mất"
+msgstr ""
-#: desk/doctype/bulk_update/bulk_update.py:70 model/workflow.py:253
+#: frappe/public/js/frappe/ui/filters/filter.js:739
+msgid "Tomorrow"
+msgstr ""
+
+#: frappe/desk/doctype/bulk_update/bulk_update.py:68
+#: frappe/model/workflow.py:254
msgid "Too Many Documents"
msgstr ""
-#: rate_limiter.py:88
+#: frappe/rate_limiter.py:101
msgid "Too Many Requests"
-msgstr "Quá nhiều yêu cầu"
+msgstr ""
-#: database/database.py:387
+#: frappe/database/database.py:474
msgid "Too many changes to database in single action."
msgstr ""
-#: core/doctype/user/user.py:984
+#: frappe/utils/background_jobs.py:728
+msgid "Too many queued background jobs ({0}). Please retry after some time."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1028
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
-msgstr "Quá nhiều người sử dụng đã đăng ký gần đây, do việc đăng ký bị vô hiệu hóa. Vui lòng thử lại trong một giờ"
+msgstr ""
#. Name of a Workspace
#. Label of a Card Break in the Tools Workspace
-#: automation/workspace/tools/tools.json
+#: frappe/automation/workspace/tools/tools.json
msgid "Tools"
msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:153
msgid "Top"
-msgstr "Hàng đầu"
+msgstr ""
+
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13
+msgid "Top 10"
+msgstr ""
#. Name of a DocType
-#: website/doctype/top_bar_item/top_bar_item.json
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Top Bar Item"
-msgstr "Mẫu hàng ở thanh trên cùng"
+msgstr ""
-#. Label of a Table field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the top_bar_items (Table) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Top Bar Items"
-msgstr "Các mẫu hàng ở thanh trên cùng"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:245
msgid "Top Center"
msgstr ""
-#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Top Center"
+#. Label of the top_errors (Table) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Top Errors"
msgstr ""
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:244
msgid "Top Left"
msgstr ""
-#: templates/emails/energy_points_summary.html:3
-msgid "Top Performer"
-msgstr "Phong độ tuyệt vời"
-
-#: templates/emails/energy_points_summary.html:18
-msgid "Top Reviewer"
-msgstr "Người đánh giá hàng đầu"
-
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Top Right"
-msgstr ""
-
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:246
msgid "Top Right"
msgstr ""
-#: templates/emails/energy_points_summary.html:33
-msgid "Top {0}"
-msgstr "Đầu {0}"
-
-#. Label of a Link field in DocType 'Discussion Reply'
-#: website/doctype/discussion_reply/discussion_reply.json
-msgctxt "Discussion Reply"
+#. Label of the topic (Link) field in DocType 'Discussion Reply'
+#: frappe/website/doctype/discussion_reply/discussion_reply.json
msgid "Topic"
-msgstr "Chủ đề"
+msgstr ""
-#: desk/query_report.py:503
+#: frappe/desk/query_report.py:533
+#: frappe/public/js/frappe/views/reports/print_grid.html:45
+#: frappe/public/js/frappe/views/reports/query_report.js:1320
+#: frappe/public/js/frappe/views/reports/report_view.js:1545
msgid "Total"
-msgstr "Tổng sồ"
+msgstr ""
-#. Label of a Int field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. 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_recipients (Int) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Total Recipients"
msgstr ""
-#. Label of a Int field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#. Label of the total_subscribers (Int) field in DocType 'Email Group'
+#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
+#. Email Group'
+#: frappe/email/doctype/email_group/email_group.json
+#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
-msgstr "Tổng số người theo dõi"
+msgstr ""
-#. Label of a Read Only field in DocType 'Newsletter Email Group'
-#: email/doctype/newsletter_email_group/newsletter_email_group.json
-msgctxt "Newsletter Email Group"
-msgid "Total Subscribers"
-msgstr "Tổng số người theo dõi"
+#. 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 a Int field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the total_views (Int) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Total Views"
msgstr ""
-#. Label of a Duration field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
msgstr ""
#. Description of the 'Initial Sync Count' (Select) field in DocType 'Email
#. Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Total number of emails to sync in initial sync process "
-msgstr "Tổng số lượng email để đồng bộ trong quá trình đồng bộ ban đầu"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1181
-#: public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/print_format_builder/ConfigureColumns.vue:12
+msgid "Total:"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1250
msgid "Totals"
-msgstr "{0}{/0}{1}{/1} {2}{/2}Tổng giá trị"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1156
+#: frappe/public/js/frappe/views/reports/report_view.js:1225
msgid "Totals Row"
-msgstr "Tổng số hàng"
+msgstr ""
-#. Label of a Data field in DocType 'Error Log'
-#: core/doctype/error_log/error_log.json
-msgctxt "Error Log"
+#. Label of the trace_id (Data) field in DocType 'Error Log'
+#: frappe/core/doctype/error_log/error_log.json
msgid "Trace ID"
msgstr ""
-#. Label of a Code field in DocType 'Patch Log'
-#: core/doctype/patch_log/patch_log.json
-msgctxt "Patch Log"
+#. Label of the traceback (Code) field in DocType 'Patch Log'
+#: frappe/core/doctype/patch_log/patch_log.json
msgid "Traceback"
-msgstr "Tìm lại"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the track_changes (Check) field in DocType 'DocType'
+#. Label of the track_changes (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Track Changes"
-msgstr "theo dõi các thay đổi"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Track Changes"
-msgstr "theo dõi các thay đổi"
-
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the track_email_status (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Track Email Status"
-msgstr "Theo dõi trạng thái email"
+msgstr ""
-#. Label of a Data field in DocType 'Milestone'
-#: automation/doctype/milestone/milestone.json
-msgctxt "Milestone"
+#. Label of the track_field (Data) field in DocType 'Milestone'
+#: frappe/automation/doctype/milestone/milestone.json
msgid "Track Field"
-msgstr "Linh vực theo doi"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the track_seen (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Track Seen"
-msgstr "đã xem theo dõi"
+msgstr ""
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the track_steps (Check) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Track Steps"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the track_views (Check) field in DocType 'DocType'
+#. Label of the track_views (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Track Views"
-msgstr "Theo dõi lượt xem"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Track Views"
-msgstr "Theo dõi lượt xem"
+msgstr ""
#. Description of the 'Track Email Status' (Check) field in DocType 'Email
#. Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid ""
-"Track if your email has been opened by the recipient.\n"
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Track if your email has been opened by the recipient.\n"
"
\n"
"Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered \"Opened\""
msgstr ""
-#: public/js/frappe/utils/utils.js:1744
+#. Description of a DocType
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
+msgid "Track milestones for any document"
+msgstr ""
+
+#. Label of a Card Break in the Website Workspace
+#: frappe/website/workspace/website/website.json
+msgid "Tracking"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/utils.js:1781
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
-#. Label of a Small Text field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
+#. Label of the transaction_hash (Small Text) field in DocType 'Transaction
+#. Log'
+#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Transaction Hash"
-msgstr "Giao dịch Hash"
+msgstr ""
#. Name of a DocType
-#: core/doctype/transaction_log/transaction_log.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Transaction Log"
-msgstr "Nhật ký giao dịch"
+msgstr ""
#. Name of a report
-#: core/report/transaction_log_report/transaction_log_report.json
+#: frappe/core/report/transaction_log_report/transaction_log_report.json
msgid "Transaction Log Report"
-msgstr "Báo cáo nhật ký giao dịch"
+msgstr ""
-#. Label of a Section Break field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/desk/page/setup_wizard/install_fixtures.py:31
+msgid "Transgender"
+msgstr ""
+
+#: frappe/public/js/workflow_builder/components/Properties.vue:19
+msgid "Transition Properties"
+msgstr ""
+
+#. Label of the transition_rules (Section Break) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Transition Rules"
-msgstr "Quy định chuyển tiếp"
+msgstr ""
-#. Label of a Table field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the transitions (Table) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Transitions"
-msgstr "Chuyển tiếp"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the translatable (Check) field in DocType 'DocField'
+#. Label of the translatable (Check) field in DocType 'Custom Field'
+#. Label of the translatable (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Translatable"
-msgstr "Có thể dịch được"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Translatable"
-msgstr "Có thể dịch được"
+#: frappe/public/js/frappe/views/reports/query_report.js:2188
+msgid "Translate Data"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Translatable"
-msgstr "Có thể dịch được"
-
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the translated_doctype (Check) field in DocType 'DocType'
+#. Label of the translated_doctype (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Translate Link Fields"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Translate Link Fields"
+#: frappe/public/js/frappe/views/reports/report_view.js:1650
+msgid "Translate values"
msgstr ""
-#: public/js/frappe/views/translation_manager.js:11
+#: frappe/public/js/frappe/views/translation_manager.js:11
msgid "Translate {0}"
-msgstr "Dịch {0}"
+msgstr ""
-#. Label of a Code field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
+#. Label of the translated_text (Code) field in DocType 'Translation'
+#: frappe/core/doctype/translation/translation.json
msgid "Translated Text"
-msgstr "văn bản đã được dịch"
+msgstr ""
#. Name of a DocType
-#: core/doctype/translation/translation.json
+#: frappe/core/doctype/translation/translation.json
msgid "Translation"
-msgstr "Dịch"
+msgstr ""
-#: public/js/frappe/views/translation_manager.js:46
+#: frappe/public/js/frappe/views/translation_manager.js:46
msgid "Translations"
-msgstr "Bản dịch"
+msgstr ""
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Trash"
-msgstr "Rác"
+msgstr ""
#. Option for the 'View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Tree"
-msgstr "Cây biểu thị"
-
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Tree"
-msgstr "Cây biểu thị"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:210
+msgid "Tree View"
+msgstr ""
#. Description of the 'Is Tree' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "Tree structures are implemented using Nested Set"
-msgstr "Các cấu trúc cây được thực hiện bằng cách sử dụng Nested Set"
+msgstr ""
-#: public/js/frappe/views/treeview.js:20
+#: frappe/public/js/frappe/views/treeview.js:19
msgid "Tree view is not available for {0}"
-msgstr "Chế độ xem dạng cây không khả dụng cho {0}"
+msgstr ""
-#. Label of a Data field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the method (Data) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Trigger Method"
-msgstr "kích hoạt Phương pháp"
+msgstr ""
-#: public/js/frappe/ui/keyboard.js:191
+#: frappe/public/js/frappe/ui/keyboard.js:196
msgid "Trigger Primary Action"
-msgstr "Hành động chính kích hoạt"
+msgstr ""
-#: tests/test_translate.py:55
+#: frappe/tests/test_translate.py:55
msgid "Trigger caching"
msgstr ""
#. Description of the 'Trigger Method' (Data) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Trigger on valid methods like \"before_insert\", \"after_update\", etc (will depend on the DocType selected)"
-msgstr "Sử dụng với các phương pháp có giá trị như \"before_insert\", \"after_update\", vv (sẽ phụ thuộc vào kiểu văn bản được chọn)"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:323
+#: frappe/custom/doctype/customize_form/customize_form.js:144
+msgid "Trim Table"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:318
msgid "Try Again"
msgstr ""
-#. Label of a Data field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the try_naming_series (Data) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Try a Naming Series"
msgstr ""
-#: utils/password_strength.py:108
-msgid "Try to avoid repeated words and characters"
-msgstr "Hãy cố gắng tránh những từ và ký tự lặp đi lặp lại"
+#: frappe/printing/page/print/print.js:189
+#: frappe/printing/page/print/print.js:195
+msgid "Try the new Print Designer"
+msgstr ""
-#: utils/password_strength.py:100
+#: 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 "Hãy thử sử dụng một mô hình bàn phím lâu hơn với nhiều lượt hơn"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Tuesday"
-msgstr "Thứ ba"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Tuesday"
-msgstr "Thứ ba"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Tuesday"
-msgstr "Thứ ba"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Tuesday"
-msgstr "Thứ ba"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the tuesday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Tuesday"
-msgstr "Thứ ba"
+msgstr ""
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the two_factor_auth (Check) field in DocType 'Role'
+#. Label of the two_factor_authentication (Section Break) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/role/role.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Two Factor Authentication"
-msgstr "Xác thực hai yếu tố"
+msgstr ""
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Two Factor Authentication"
-msgstr "Xác thực hai yếu tố"
-
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the two_factor_method (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Two Factor Authentication method"
-msgstr "Phương pháp xác thực hai yếu tố"
+msgstr ""
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the communication_medium (Select) field in DocType 'Communication'
+#. Label of the fieldtype (Select) field in DocType 'DocField'
+#. Label of the fieldtype (Select) field in DocType 'Customize Form Field'
+#. Label of the type (Data) field in DocType 'Console Log'
+#. Label of the type (Select) field in DocType 'Dashboard Chart'
+#. Label of the type (Select) field in DocType 'Desktop Icon'
+#. Label of the type (Select) field in DocType 'Notification Log'
+#. Label of the type (Select) field in DocType 'Number Card'
+#. Label of the type (Select) field in DocType 'System Console'
+#. Label of the type (Select) field in DocType 'Workspace'
+#. Label of the type (Select) field in DocType 'Workspace Link'
+#. Label of the type (Select) field in DocType 'Workspace Shortcut'
+#. Label of the type (Select) field in DocType 'Web Template'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/console_log/console_log.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/system_console/system_console.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/views/file/file_view.js:337
+#: frappe/public/js/frappe/views/workspace/workspace.js:399
+#: frappe/public/js/frappe/widgets/widget_dialog.js:391
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/www/attribution.html:35
msgid "Type"
-msgstr "Loại"
+msgstr ""
-#. Label of a Data field in DocType 'Console Log'
-#: desk/doctype/console_log/console_log.json
-msgctxt "Console Log"
-msgid "Type"
-msgstr "Loại"
-
-#. Label of a Select field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Type"
-msgstr "Loại"
-
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Type"
-msgstr "Loại"
-
-#. Label of a Select field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Type"
-msgstr "Loại"
-
-#. Label of a Select field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Type"
-msgstr "Loại"
-
-#. Label of a Select field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Type"
-msgstr "Loại"
-
-#. Label of a Select field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "Type"
-msgstr "Loại"
-
-#. Label of a Select field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Type"
-msgstr "Loại"
-
-#. Label of a Select field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
-msgid "Type"
-msgstr "Loại"
-
-#. Label of a Select field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
-msgid "Type"
-msgstr "Loại"
-
-#. Label of a Select field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
-msgid "Type"
-msgstr "Loại"
-
-#. Label of a Select field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Type"
-msgstr "Loại"
-
-#: public/js/frappe/form/controls/comment.js:78
+#: frappe/public/js/frappe/form/controls/comment.js:90
msgid "Type a reply / comment"
msgstr ""
-#: templates/includes/search_template.html:51
+#: frappe/templates/includes/search_template.html:51
msgid "Type something in the search box to search"
-msgstr "Gõ gì đó trong hộp tìm kiếm để tìm kiếm"
+msgstr ""
-#: templates/discussions/comment_box.html:8
+#: frappe/templates/discussions/comment_box.html:8
+#: frappe/templates/discussions/reply_section.html:53
+#: frappe/templates/discussions/topic_modal.html:11
msgid "Type title"
msgstr ""
-#: templates/discussions/discussions.js:341
+#: frappe/templates/discussions/discussions.js:341
msgid "Type your reply here..."
msgstr ""
-#: core/doctype/data_export/exporter.py:143
+#: frappe/core/doctype/data_export/exporter.py:143
msgid "Type:"
-msgstr "Loại:"
+msgstr ""
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the ui_tour (Check) field in DocType 'Form Tour'
+#. Label of the ui_tour (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "UI Tour"
msgstr ""
-#. Label of a Check field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "UI Tour"
+#. Label of the uid (Int) field in DocType 'Communication'
+#. Label of the uid (Data) field in DocType 'Email Flag Queue'
+#. Label of the uid (Data) field in DocType 'Unhandled Email'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
+msgid "UID"
msgstr ""
-#. Label of a Int field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "UID"
-msgstr "UID"
-
-#. Label of a Data field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
-msgid "UID"
-msgstr "UID"
-
-#. Label of a Data field in DocType 'Unhandled Email'
-#: email/doctype/unhandled_email/unhandled_email.json
-msgctxt "Unhandled Email"
-msgid "UID"
-msgstr "UID"
-
-#. Label of a Int field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the uidnext (Int) field in DocType 'Email Account'
+#. Label of the uidnext (Data) field in DocType 'IMAP Folder'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "UIDNEXT"
-msgstr "UIDNEXT"
+msgstr ""
-#. Label of a Data field in DocType 'IMAP Folder'
-#: email/doctype/imap_folder/imap_folder.json
-msgctxt "IMAP Folder"
-msgid "UIDNEXT"
-msgstr "UIDNEXT"
-
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the uidvalidity (Data) field in DocType 'Email Account'
+#. Label of the uidvalidity (Data) field in DocType 'IMAP Folder'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "UIDVALIDITY"
-msgstr "UIDVALIDITY"
-
-#. Label of a Data field in DocType 'IMAP Folder'
-#: email/doctype/imap_folder/imap_folder.json
-msgctxt "IMAP Folder"
-msgid "UIDVALIDITY"
-msgstr "UIDVALIDITY"
+msgstr ""
#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "UNSEEN"
-msgstr "không thấy"
+msgstr ""
#. Description of the 'Redirect URIs' (Text) field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
-msgid ""
-"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n"
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n"
"
e.g. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook"
msgstr ""
-#. Label of a Small Text field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "URL"
-msgstr "URL"
-
-#. Label of a Data field in DocType 'Top Bar Item'
-#: website/doctype/top_bar_item/top_bar_item.json
-msgctxt "Top Bar Item"
-msgid "URL"
-msgstr "URL"
-
-#. Label of a Data field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "URL"
-msgstr "URL"
-
-#. Label of a Data field in DocType 'Website Slideshow Item'
-#: website/doctype/website_slideshow_item/website_slideshow_item.json
-msgctxt "Website Slideshow Item"
-msgid "URL"
-msgstr "URL"
-
+#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
-#. Label of a Data field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#. Label of the url (Data) field in DocType 'Workspace Shortcut'
+#. Label of the url (Small Text) field in DocType 'Integration Request'
+#. Label of the url (Text) field in DocType 'Webhook Request Log'
+#. Label of the url (Data) field in DocType 'Top Bar Item'
+#. Label of the url (Data) field in DocType 'Website Slideshow Item'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:458
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "URL"
-msgstr "URL"
+msgstr ""
#. Description of the 'Documentation Link' (Data) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "URL for documentation or help"
-msgstr "URL cho tài liệu hoặc trợ giúp"
+msgstr ""
-#: core/doctype/file/file.py:216
+#: frappe/core/doctype/file/file.py:219
msgid "URL must start with http:// or https://"
msgstr ""
-#: website/doctype/web_page/web_page.js:84
+#: frappe/website/doctype/web_page/web_page.js:84
msgid "URL of the page"
-msgstr "URL của trang"
+msgstr ""
#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item'
-#: website/doctype/website_slideshow_item/website_slideshow_item.json
-msgctxt "Website Slideshow Item"
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "URL to go to on clicking the slideshow image"
-msgstr "URL để truy cập khi nhấp vào hình ảnh trình chiếu"
+msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.py:68
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+#: frappe/website/workspace/website/website.json
+msgid "UTM Campaign"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/workspace/website/website.json
+msgid "UTM Medium"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/utm_source/utm_source.json
+#: frappe/website/workspace/website/website.json
+msgid "UTM Source"
+msgstr ""
+
+#. 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 "Không thể tìm thấy DocType {0}"
+msgstr ""
-#: public/js/frappe/ui/capture.js:330
+#: frappe/public/js/frappe/ui/capture.js:338
msgid "Unable to load camera."
-msgstr "Không thể tải máy ảnh."
+msgstr ""
-#: public/js/frappe/model/model.js:258
+#: frappe/public/js/frappe/model/model.js:268
msgid "Unable to load: {0}"
-msgstr "Không thể tải: {0}"
+msgstr ""
-#: utils/csvutils.py:35
+#: frappe/utils/csvutils.py:37
msgid "Unable to open attached file. Did you export it as CSV?"
-msgstr "Không thể mở tập tin đính kèm. Bạn đã xuất nó dưới dạng CSV?"
+msgstr ""
-#: core/doctype/file/utils.py:99 core/doctype/file/utils.py:128
+#: frappe/core/doctype/file/utils.py:98 frappe/core/doctype/file/utils.py:130
msgid "Unable to read file format for {0}"
-msgstr "Không thể đọc dạng tệp tin cho {0}"
+msgstr ""
-#: core/doctype/communication/email.py:173
+#: frappe/core/doctype/communication/email.py:179
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:439
+#: frappe/public/js/frappe/views/calendar/calendar.js:450
msgid "Unable to update event"
-msgstr "Không thể cập nhật sự kiện"
+msgstr ""
-#: core/doctype/file/file.py:458
+#: frappe/core/doctype/file/file.py:464
msgid "Unable to write file format for {0}"
-msgstr "Không thể viết dạng tệp tin cho {0}"
+msgstr ""
-#. Label of a Code field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the unassign_condition (Code) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Unassign Condition"
-msgstr "Điều kiện chưa được gán"
+msgstr ""
-#: www/error.py:15
-msgid "Uncaught Server Exception"
-msgstr "Ngoại lệ máy chủ chưa được thông báo"
+#: frappe/app.py:383
+msgid "Uncaught Exception"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:93
+#: frappe/public/js/frappe/form/toolbar.js:103
msgid "Unchanged"
-msgstr "Không thay đổi"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:450
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Undo"
msgstr ""
-#: public/js/frappe/form/toolbar.js:458
+#: frappe/public/js/frappe/form/toolbar.js:523
msgid "Undo last action"
msgstr ""
-#: public/js/frappe/form/sidebar/form_sidebar.js:232
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
+#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
-msgstr "Hủy theo dõi"
-
-#. Name of a DocType
-#: email/doctype/unhandled_email/unhandled_email.json
-msgid "Unhandled Email"
-msgstr "Email chưa xử lý"
-
-#: public/js/frappe/views/workspace/workspace.js:556
-msgid "Unhide Workspace"
msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Unique"
-msgstr "Độc nhất"
+#. Name of a DocType
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
+msgid "Unhandled Email"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Unique"
-msgstr "Độc nhất"
+#. Label of the unhandled_emails (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Unhandled Emails"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. 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 "Độc nhất"
+msgstr ""
-#: public/js/frappe/model/model.js:199
+#: 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 "Cột không rõ: {0}"
+msgstr ""
-#: utils/data.py:1215
+#: frappe/utils/data.py:1246
msgid "Unknown Rounding Method: {}"
msgstr ""
-#: auth.py:299
+#: frappe/auth.py:316
msgid "Unknown User"
-msgstr "Người dùng không biết"
+msgstr ""
-#: utils/csvutils.py:52
-msgid "Unknown file encoding. Tried utf-8, windows-1250, windows-1252."
-msgstr "Không biết mã hóa tập tin. Cố gắng UTF-8, các cửa sổ-1250, các cửa sổ-1252."
+#: frappe/utils/csvutils.py:54
+msgid "Unknown file encoding. Tried to use: {0}"
+msgstr ""
-#: core/doctype/submission_queue/submission_queue.js:7
+#: frappe/core/doctype/submission_queue/submission_queue.js:7
msgid "Unlock Reference Document"
msgstr ""
-#: website/doctype/blog_post/blog_post.js:36
-#: website/doctype/web_form/web_form.js:77
+#: frappe/public/js/frappe/form/footer/form_timeline.js:632
+#: frappe/website/doctype/blog_post/blog_post.js:36
+#: frappe/website/doctype/web_form/web_form.js:86
msgid "Unpublish"
msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
msgid "Unread"
-msgstr "chưa đọc"
+msgstr ""
-#. Label of a Check field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the unread_notification_sent (Check) field in DocType
+#. 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Unread Notification Sent"
-msgstr "Thông báo chưa đọc đã gửi"
+msgstr ""
-#: utils/safe_exec.py:438
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr ""
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/public/js/frappe/form/controls/multicheck.js:166
+msgid "Unselect All"
+msgstr ""
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Unshared"
-msgstr "Không thể được chia sẻ"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Unshared"
-msgstr "Không thể được chia sẻ"
-
-#: email/queue.py:68
+#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
msgid "Unsubscribe"
-msgstr "Hủy đăng ký"
+msgstr ""
-#. Label of a Data field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#. Label of the unsubscribe_method (Data) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Unsubscribe Method"
-msgstr "Hủy đăng ký phương pháp"
+msgstr ""
-#. Label of a Data field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Unsubscribe Param"
-msgstr "Hủy đăng ký Param"
+#. Label of the unsubscribe_params (Code) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Unsubscribe Params"
+msgstr ""
-#: email/queue.py:126
+#. Label of the unsubscribed (Check) field in DocType 'Contact'
+#. Label of the unsubscribed (Check) field in DocType 'User'
+#. Label of the unsubscribed (Check) field in DocType 'Email Group Member'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
+#: frappe/email/queue.py:122
msgid "Unsubscribed"
-msgstr "Bỏ đăng ký"
+msgstr ""
-#. Label of a Check field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Unsubscribed"
-msgstr "Bỏ đăng ký"
-
-#. Label of a Check field in DocType 'Email Group Member'
-#: email/doctype/email_group_member/email_group_member.json
-msgctxt "Email Group Member"
-msgid "Unsubscribed"
-msgstr "Bỏ đăng ký"
-
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Unsubscribed"
-msgstr "Bỏ đăng ký"
-
-#: public/js/frappe/data_import/import_preview.js:72
+#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
-msgstr "Cột không tên"
+msgstr ""
-#: core/doctype/file/file.js:28
+#: frappe/core/doctype/file/file.js:38
msgid "Unzip"
-msgstr "không mở"
+msgstr ""
-#: public/js/frappe/views/file/file_view.js:132
+#: frappe/public/js/frappe/views/file/file_view.js:132
msgid "Unzipped {0} files"
-msgstr "Giải nén tập tin {0}"
+msgstr ""
-#: public/js/frappe/views/file/file_view.js:125
+#: frappe/public/js/frappe/views/file/file_view.js:125
msgid "Unzipping files..."
-msgstr "Giải nén tập tin ..."
+msgstr ""
-#: desk/doctype/event/event.py:258
+#: frappe/desk/doctype/event/event.py:269
msgid "Upcoming Events for Today"
-msgstr "Sự kiện sắp tới cho Hôm nay"
+msgstr ""
-#: core/doctype/data_import/data_import_list.js:40
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:23
-#: custom/doctype/customize_form/customize_form.js:370
-#: desk/doctype/bulk_update/bulk_update.js:15
-#: printing/page/print_format_builder/print_format_builder.js:447
-#: printing/page/print_format_builder/print_format_builder.js:501
-#: printing/page/print_format_builder/print_format_builder.js:670
-#: printing/page/print_format_builder/print_format_builder.js:757
-#: public/js/frappe/form/grid_row.js:402
-#: public/js/frappe/views/workspace/workspace.js:647
+#. Label of the update (Button) field in DocType 'Document Naming Settings'
+#: frappe/core/doctype/data_import/data_import_list.js:36
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:23
+#: frappe/custom/doctype/customize_form/customize_form.js:438
+#: frappe/desk/doctype/bulk_update/bulk_update.js:15
+#: frappe/printing/page/print_format_builder/print_format_builder.js:447
+#: frappe/printing/page/print_format_builder/print_format_builder.js:507
+#: frappe/printing/page/print_format_builder/print_format_builder.js:678
+#: frappe/printing/page/print_format_builder/print_format_builder.js:765
+#: frappe/public/js/frappe/form/grid_row.js:411
msgid "Update"
-msgstr "Cập nhật"
+msgstr ""
-#. Label of a Button field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
-msgid "Update"
-msgstr "Cập nhật"
-
-#. Label of a Button field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the update_amendment_naming (Button) field in DocType 'Document
+#. Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Amendment Naming"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:596
-msgid "Update Details"
-msgstr "Cập nhật chi tiết"
-
#. Option for the 'Import Type' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/core/doctype/data_import/data_import.json
msgid "Update Existing Records"
-msgstr "Cập nhật hồ sơ hiện có"
+msgstr ""
-#. Label of a Select field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#. Label of the update_field (Select) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Update Field"
-msgstr "Cập nhật Dòng"
+msgstr ""
-#: core/doctype/installed_applications/installed_applications.js:6
-#: core/doctype/installed_applications/installed_applications.js:13
+#: frappe/core/doctype/installed_applications/installed_applications.js:6
+#: frappe/core/doctype/installed_applications/installed_applications.js:13
msgid "Update Hooks Resolution Order"
msgstr ""
-#: core/doctype/installed_applications/installed_applications.js:45
+#: frappe/core/doctype/installed_applications/installed_applications.js:45
msgid "Update Order"
msgstr ""
-#. Label of a Section Break field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/desk/page/setup_wizard/setup_wizard.js:494
+msgid "Update Password"
+msgstr ""
+
+#. Label of the update_series (Section Break) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Series Counter"
msgstr ""
-#. Label of a Button field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the update_series_start (Button) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Series Number"
-msgstr "Cập nhật số sê ri"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Update Settings"
-msgstr "Cập nhật cài đặt"
+msgstr ""
-#: public/js/frappe/views/translation_manager.js:13
+#: frappe/public/js/frappe/views/translation_manager.js:13
msgid "Update Translations"
-msgstr "Cập nhật bản dịch"
+msgstr ""
-#. Label of a Small Text field in DocType 'Bulk Update'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
+#. Label of the update_value (Small Text) field in DocType 'Bulk Update'
+#. Label of the update_value (Data) field in DocType 'Workflow Document State'
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Update Value"
-msgstr "Cập nhật giá trị gia tăng"
+msgstr ""
-#. Label of a Data field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
-msgid "Update Value"
-msgstr "Cập nhật giá trị gia tăng"
+#: frappe/utils/change_log.py:381
+msgid "Update from Frappe Cloud"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:310
+#: frappe/public/js/frappe/list/bulk_operations.js:375
msgid "Update {0} records"
msgstr ""
-#: desk/doctype/desktop_icon/desktop_icon.py:452
-#: public/js/frappe/web_form/web_form.js:423
-msgid "Updated"
-msgstr "Đã được cập nhật"
-
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#. Option for the 'Status' (Select) field in DocType 'Permission Log'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
+#: frappe/desk/doctype/workspace_settings/workspace_settings.py:41
+#: frappe/public/js/frappe/web_form/web_form.js:427
msgid "Updated"
-msgstr "Đã được cập nhật"
-
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Updated"
-msgstr "Đã được cập nhật"
-
-#: desk/doctype/bulk_update/bulk_update.js:32
-msgid "Updated Successfully"
-msgstr "cập nhật thành công"
-
-#: public/js/frappe/desk.js:420
-msgid "Updated To A New Version 🎉"
-msgstr "Cập nhật lên phiên bản mới"
-
-#: public/js/frappe/list/bulk_operations.js:307
-msgid "Updated successfully"
-msgstr "Cập nhật thành công"
-
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Updates"
msgstr ""
-#: utils/response.py:320
-msgid "Updating"
-msgstr "Đang cập nhật"
+#: frappe/desk/doctype/bulk_update/bulk_update.js:32
+msgid "Updated Successfully"
+msgstr ""
-#: public/js/frappe/form/save.js:11
+#: frappe/public/js/frappe/desk.js:444
+msgid "Updated To A New Version 🎉"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:372
+msgid "Updated successfully"
+msgstr ""
+
+#: frappe/utils/response.py:333
+msgid "Updating"
+msgstr ""
+
+#: frappe/public/js/frappe/form/save.js:11
msgctxt "Freeze message while updating a document"
msgid "Updating"
-msgstr "Đang cập nhật"
+msgstr ""
-#: email/doctype/email_queue/email_queue.py:406
+#: frappe/email/doctype/email_queue/email_queue_list.js:49
msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run."
msgstr ""
-#: core/doctype/document_naming_rule/document_naming_rule.js:17
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:17
msgid "Updating counter may lead to document name conflicts if not done properly"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.py:23
+#: frappe/desk/page/setup_wizard/setup_wizard.py:23
msgid "Updating global settings"
msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.js:59
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59
msgid "Updating naming series options"
msgstr ""
-#: public/js/frappe/form/toolbar.js:126
+#: frappe/public/js/frappe/form/toolbar.js:136
msgid "Updating related fields..."
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.py:98
+#: frappe/desk/doctype/bulk_update/bulk_update.py:95
msgid "Updating {0}"
-msgstr "Đang cập nhật {0}"
+msgstr ""
-#: core/doctype/data_import/data_import.js:36
+#: frappe/core/doctype/data_import/data_import.js:36
msgid "Updating {0} of {1}, {2}"
-msgstr "Cập nhật {0} trong số {1}, {2}"
+msgstr ""
-#: public/js/frappe/file_uploader/file_uploader.bundle.js:121
-#: public/js/frappe/file_uploader/file_uploader.bundle.js:122
+#: frappe/public/js/billing.bundle.js:131
+msgid "Upgrade plan"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_sidebar.js:331
+msgid "Upgrade your support experience with Frappe Helpdesk"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132
+#: frappe/public/js/frappe/form/grid.js:66
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
-msgstr "Tải lên"
+msgstr ""
-#. Label of a Check field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:93
+msgid "Upload Image"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198
+msgid "Upload file"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201
+msgid "Upload {0} files"
+msgstr ""
+
+#. Label of the uploaded_to_dropbox (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Uploaded To Dropbox"
-msgstr "Đã tải lên Dropbox"
+msgstr ""
-#. Label of a Check field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the uploaded_to_google_drive (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Uploaded To Google Drive"
-msgstr "Đã tải lên Google Drive"
+msgstr ""
+
+#: frappe/integrations/doctype/google_drive/google_drive.py:196
+msgid "Uploading backup to Google Drive."
+msgstr ""
+
+#: frappe/integrations/doctype/google_drive/google_drive.py:201
+msgid "Uploading successful."
+msgstr ""
+
+#: frappe/integrations/doctype/google_drive/google_drive.js:16
+msgid "Uploading to Google Drive"
+msgstr ""
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#, python-format
-msgctxt "Onboarding Step"
msgid "Use % for any non empty value."
msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the ascii_encode_password (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Use ASCII encoding for password"
-msgstr "Sử dụng mã hóa ASCII cho mật khẩu"
+msgstr ""
-#. Label of a Check field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
+#. Label of the use_first_day_of_period (Check) field in DocType 'Auto Email
+#. Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Use First Day of Period"
+msgstr ""
+
+#. Label of the use_html (Check) field in DocType 'Email Template'
+#: frappe/email/doctype/email_template/email_template.json
msgid "Use HTML"
msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the use_imap (Check) field in DocType 'Email Account'
+#. Label of the use_imap (Check) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use IMAP"
-msgstr "Sử dụng IMAP"
+msgstr ""
-#. Label of a Check field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Use IMAP"
-msgstr "Sử dụng IMAP"
+#. Label of the use_number_format_from_currency (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Use Number Format from Currency"
+msgstr ""
-#. Label of a Check field in DocType 'SMS Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#. Label of the use_post (Check) field in DocType 'SMS Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Use POST"
-msgstr "Sử dụng POST"
+msgstr ""
-#. Label of a Check field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the use_report_chart (Check) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Use Report Chart"
-msgstr "Sử dụng biểu đồ báo cáo"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the use_ssl (Check) field in DocType 'Email Account'
+#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Account'
+#. Label of the use_ssl (Check) field in DocType 'Email Domain'
+#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use SSL"
-msgstr "Sử dụng SSL"
+msgstr ""
-#. Label of a Check field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Use SSL"
-msgstr "Sử dụng SSL"
-
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the use_starttls (Check) field in DocType 'Email Account'
+#. Label of the use_starttls (Check) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use STARTTLS"
msgstr ""
-#. Label of a Check field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Use STARTTLS"
+#. Label of the use_tls (Check) field in DocType 'Email Account'
+#. Label of the use_tls (Check) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Use TLS"
msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Use TLS"
-msgstr "Sử dụng TLS"
-
-#. Label of a Check field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Use TLS"
-msgstr "Sử dụng TLS"
-
-#: utils/password_strength.py:44
+#: frappe/utils/password_strength.py:44
msgid "Use a few words, avoid common phrases."
-msgstr "Sử dụng một vài từ, tránh cụm từ phổ biến."
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the login_id_is_different (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Use different Email ID"
msgstr ""
-#: model/db_query.py:434
+#. Description of the 'Detect CSV type' (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Use if the default settings don't seem to detect your data correctly"
+msgstr ""
+
+#: frappe/model/db_query.py:434
msgid "Use of function {0} in field is restricted"
msgstr ""
-#: model/db_query.py:413
+#: frappe/model/db_query.py:411
msgid "Use of sub-query or function is restricted"
-msgstr "Việc sử dụng truy vấn phụ hoặc chức năng bị hạn chế"
+msgstr ""
-#: printing/page/print/print.js:272
+#: frappe/printing/page/print/print.js:279
msgid "Use the new Print Format Builder"
msgstr ""
#. Description of the 'Title Field' (Data) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Use this fieldname to generate title"
-msgstr "Sử dụng đoạn tên này để tạo tiêu đề"
+msgstr ""
-#. Label of a Check field in DocType 'User Email'
-#: core/doctype/user_email/user_email.json
-msgctxt "User Email"
+#. Description of the 'Always BCC Address' (Data) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Use this, for example, if all sent emails should also be send to an archive."
+msgstr ""
+
+#. Label of the used_oauth (Check) field in DocType 'User Email'
+#: frappe/core/doctype/user_email/user_email.json
msgid "Used OAuth"
msgstr ""
+#. Label of the user (Link) field in DocType 'Assignment Rule User'
+#. Label of the user (Link) field in DocType 'Reminder'
+#. Label of the user (Link) field in DocType 'Activity Log'
+#. Label of the user (Link) field in DocType 'API Request Log'
+#. Label of the user (Link) field in DocType 'Communication'
+#. Label of the user (Link) field in DocType 'DocShare'
+#. Label of the user (Link) field in DocType 'Log Setting User'
+#. Label of the user (Link) field in DocType 'Permission Inspector'
#. Name of a DocType
-#: core/doctype/user/user.json
-#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:8
-#: desk/page/user_profile/user_profile_controller.js:65
-#: templates/emails/energy_points_summary.html:38
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'Assignment Rule User'
-#: automation/doctype/assignment_rule_user/assignment_rule_user.json
-msgctxt "Assignment Rule User"
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'Dashboard Settings'
-#: desk/doctype/dashboard_settings/dashboard_settings.json
-msgctxt "Dashboard Settings"
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'Document Follow'
-#: email/doctype/document_follow/document_follow.json
-msgctxt "Document Follow"
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'Log Setting User'
-#: core/doctype/log_setting_user/log_setting_user.json
-msgctxt "Log Setting User"
-msgid "User"
-msgstr "Người dùng"
-
-#. Linked DocType in Module Profile's connections
-#: core/doctype/module_profile/module_profile.json
-msgctxt "Module Profile"
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'Note Seen By'
-#: desk/doctype/note_seen_by/note_seen_by.json
-msgctxt "Note Seen By"
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'Permission Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'Personal Data Download Request'
-#: website/doctype/personal_data_download_request/personal_data_download_request.json
-msgctxt "Personal Data Download Request"
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'Reminder'
-#: automation/doctype/reminder/reminder.json
-msgctxt "Reminder"
-msgid "User"
-msgstr "Người dùng"
-
-#. Linked DocType in Role Profile's connections
-#: core/doctype/role_profile/role_profile.json
-msgctxt "Role Profile"
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'Route History'
-#: desk/doctype/route_history/route_history.json
-msgctxt "Route History"
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "User"
-msgstr "Người dùng"
-
+#. Label of the user (Link) field in DocType 'User Group Member'
+#. Label of the user (Link) field in DocType 'User Permission'
#. Label of a Link in the Users Workspace
#. Label of a shortcut in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "User"
+#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Note Seen By'
+#. Label of the user (Link) field in DocType 'Notification Settings'
+#. Label of the user (Link) field in DocType 'Route History'
+#. Label of the user (Link) field in DocType 'Document Follow'
+#. Label of the user (Link) field in DocType 'Google Calendar'
+#. Label of the user (Link) field in DocType 'OAuth Authorization Code'
+#. Label of the user (Link) field in DocType 'OAuth Bearer Token'
+#. Label of the user (Link) field in DocType 'OAuth Client'
+#. Label of the user (Link) field in DocType 'Token Cache'
+#. Label of the user (Link) field in DocType 'Webhook Request Log'
+#. Label of the user (Link) field in DocType 'Blogger'
+#. Label of the user (Link) field in DocType 'Personal Data Download Request'
+#. Label of the user (Link) field in DocType 'Workflow Action'
+#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/api_request_log/api_request_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/log_setting_user/log_setting_user.json
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_group_member/user_group_member.json
+#: frappe/core/doctype/user_permission/user_permission.json
+#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8
+#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8
+#: frappe/core/workspace/users/users.json
+#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
+#: frappe/desk/doctype/note_seen_by/note_seen_by.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/desk/doctype/route_history/route_history.json
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/public/js/frappe/form/templates/set_sharing.html:3
+#: frappe/website/doctype/blogger/blogger.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "User"
-msgstr "Người dùng"
+msgstr ""
-#. Label of a Link field in DocType 'User Group Member'
-#: core/doctype/user_group_member/user_group_member.json
-msgctxt "User Group Member"
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
-msgid "User"
-msgstr "Người dùng"
-
-#. Label of a Link field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the user (Link) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "User "
-msgstr "Người sử dụng"
+msgstr ""
-#: core/doctype/has_role/has_role.py:24
+#: frappe/core/doctype/has_role/has_role.py:25
msgid "User '{0}' already has the role '{1}'"
-msgstr "Tài '{0}' đã có vai trò '{1}'"
+msgstr ""
#. Name of a DocType
-#: core/doctype/report/user_activity_report.json
+#: frappe/core/doctype/report/user_activity_report.json
msgid "User Activity Report"
msgstr ""
#. Name of a DocType
-#: core/doctype/report/user_activity_report_without_sort.json
+#: frappe/core/doctype/report/user_activity_report_without_sort.json
msgid "User Activity Report Without Sort"
msgstr ""
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
+#. Label of the user_agent (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "User Agent"
-msgstr "Đại lý người dùng"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the in_create (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "User Cannot Create"
-msgstr "Người sử dụng không thể tạo"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the read_only (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "User Cannot Search"
-msgstr "Người sử dụng không thể tìm kiếm"
+msgstr ""
-#. Label of a Table field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/public/js/frappe/desk.js:546
+msgid "User Changed"
+msgstr ""
+
+#. Label of the defaults (Table) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "User Defaults"
-msgstr "Mặc định người sử dụng"
+msgstr ""
-#. Label of a Tab Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the user_details_tab (Tab Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "User Details"
msgstr ""
+#. Name of a report
+#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.json
+msgid "User Doctype Permissions"
+msgstr ""
+
#. Name of a DocType
-#: core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "User Document Type"
msgstr ""
-#: core/doctype/user_type/user_type.py:97
+#: frappe/core/doctype/user_type/user_type.py:98
msgid "User Document Types Limit Exceeded"
msgstr ""
#. Name of a DocType
-#: core/doctype/user_email/user_email.json
+#: frappe/core/doctype/user_email/user_email.json
msgid "User Email"
-msgstr "Email Người dùng"
+msgstr ""
-#. Label of a Table field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the user_emails (Table) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "User Emails"
-msgstr "email người sử dụng"
-
-#. Label of a Select field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "User Field"
-msgstr "Trường người dùng"
+msgstr ""
#. Name of a DocType
-#: core/doctype/user_group/user_group.json
+#: frappe/core/doctype/user_group/user_group.json
msgid "User Group"
msgstr ""
#. Name of a DocType
-#: core/doctype/user_group_member/user_group_member.json
+#: frappe/core/doctype/user_group_member/user_group_member.json
msgid "User Group Member"
msgstr ""
-#. Label of a Table MultiSelect field in DocType 'User Group'
-#: core/doctype/user_group/user_group.json
-msgctxt "User Group"
+#. Label of the user_group_members (Table MultiSelect) field in DocType 'User
+#. Group'
+#: frappe/core/doctype/user_group/user_group.json
msgid "User Group Members"
msgstr ""
-#. Label of a Data field in DocType 'User Social Login'
-#: core/doctype/user_social_login/user_social_login.json
-msgctxt "User Social Login"
+#. Label of the userid (Data) field in DocType 'User Social Login'
+#: frappe/core/doctype/user_social_login/user_social_login.json
msgid "User ID"
-msgstr "ID người dùng"
+msgstr ""
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the user_id_property (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "User ID Property"
-msgstr "Tài sản ID người dùng"
+msgstr ""
-#. Label of a Link field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Description of a DocType
+#: frappe/website/doctype/blogger/blogger.json
+msgid "User ID of a Blogger"
+msgstr ""
+
+#. Label of the user (Link) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "User Id"
-msgstr "Tên người dùng"
+msgstr ""
-#. Label of a Select field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the user_id_field (Select) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "User Id Field"
msgstr ""
-#: core/doctype/user_type/user_type.py:287
+#: frappe/core/doctype/user_type/user_type.py:283
msgid "User Id Field is mandatory in the user type {0}"
msgstr ""
-#. Label of a Attach Image field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the user_image (Attach Image) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "User Image"
-msgstr "Sử dụng hình ảnh"
+msgstr ""
-#. Label of a Data field in DocType 'Personal Data Download Request'
-#: website/doctype/personal_data_download_request/personal_data_download_request.json
-msgctxt "Personal Data Download Request"
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:115
+msgid "User Menu"
+msgstr ""
+
+#. Label of the user_name (Data) field in DocType 'Personal Data Download
+#. Request'
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
msgid "User Name"
-msgstr "Tên người dùng"
+msgstr ""
#. Name of a DocType
-#: core/doctype/user_permission/user_permission.json
+#: frappe/core/doctype/user_permission/user_permission.json
msgid "User Permission"
-msgstr "Giấy phép sử dụng"
-
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "User Permission"
-msgstr "Giấy phép sử dụng"
-
-#: public/js/frappe/views/reports/query_report.js:1772
-#: public/js/frappe/views/reports/report_view.js:1657
-msgid "User Permissions"
-msgstr "Quyền hạn người dùng"
-
-#: public/js/frappe/list/list_view.js:1639
-msgctxt "Button in list view menu"
-msgid "User Permissions"
-msgstr "Quyền hạn người dùng"
+msgstr ""
#. Label of a Link in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "User Permission"
+#: 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:1881
+#: frappe/public/js/frappe/views/reports/report_view.js:1746
msgid "User Permissions"
-msgstr "Quyền hạn người dùng"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:124
-msgid "User Permissions created sucessfully"
-msgstr "Quyền người dùng được tạo thành công"
+#: frappe/public/js/frappe/list/list_view.js:1777
+msgctxt "Button in list view menu"
+msgid "User Permissions"
+msgstr ""
-#. Label of a shortcut in the Users Workspace
-#: core/workspace/users/users.json
-msgid "User Profile"
-msgstr "Thông tin người dùng"
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "User Permissions are used to limit users to specific records."
+msgstr ""
-#. Label of a Link field in DocType 'LDAP Group Mapping'
-#: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
-msgctxt "LDAP Group Mapping"
+#: frappe/core/doctype/user_permission/user_permission_list.js:124
+msgid "User Permissions created successfully"
+msgstr ""
+
+#. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping'
+#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
msgid "User Role"
msgstr ""
#. Name of a DocType
-#: core/doctype/user_select_document_type/user_select_document_type.json
+#: frappe/core/doctype/user_role_profile/user_role_profile.json
+msgid "User Role Profile"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
msgid "User Select Document Type"
msgstr ""
-#. Name of a DocType
-#: core/doctype/user_social_login/user_social_login.json
-msgid "User Social Login"
-msgstr "User Social Login"
-
-#. Label of a Data field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "User Tags"
-msgstr "Các lần đánh dấu người sử dụng"
-
-#. Name of a DocType
-#: core/doctype/user_type/user_type.json core/doctype/user_type/user_type.py:82
-msgid "User Type"
-msgstr "Loại người sử dụng"
-
-#. Label of a Link field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "User Type"
-msgstr "Loại người sử dụng"
-
-#. Label of a shortcut in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "User Type"
-msgid "User Type"
-msgstr "Loại người sử dụng"
-
-#. Name of a DocType
-#: core/doctype/user_type_module/user_type_module.json
-msgid "User Type Module"
+#. Label of a standard navbar item
+#. Type: Action
+#: frappe/hooks.py
+msgid "User Settings"
msgstr ""
-#. Label of a Table field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. 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'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "User can login using Email id or Mobile number"
-msgstr "Người dùng có thể đăng nhập bằng cách sử dụng Email id hoặc Mobile number"
+msgstr ""
#. Description of the 'Allow Login using User Name' (Check) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "User can login using Email id or User Name"
-msgstr "Người dùng có thể đăng nhập bằng cách sử dụng Email id hoặc User Name"
+msgstr ""
-#: desk/page/user_profile/user_profile_controller.js:26
-msgid "User does not exist"
-msgstr "người dùng không tồn tại"
+#: frappe/templates/includes/login/login.js:292
+msgid "User does not exist."
+msgstr ""
-#: core/doctype/user_type/user_type.py:82
+#: frappe/core/doctype/user_type/user_type.py:83
msgid "User does not have permission to create the new {0}"
msgstr ""
-#: core/doctype/docshare/docshare.py:55
+#: frappe/core/doctype/docshare/docshare.py:56
msgid "User is mandatory for Share"
-msgstr "Người sử dụng là bắt buộc đối với chia sẻ"
+msgstr ""
-#. Label of a Check field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the user_must_always_select (Check) field in DocType 'Document
+#. Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "User must always select"
-msgstr "Người sử dụng phải luôn luôn chọn"
+msgstr ""
-#: model/delete_doc.py:224
-msgid "User not allowed to delete {0}: {1}"
-msgstr "Người sử dụng không được phép xóa {0}: {1}"
-
-#: core/doctype/user_permission/user_permission.py:59
+#: frappe/core/doctype/user_permission/user_permission.py:60
msgid "User permission already exists"
-msgstr "Quyền của người dùng đã tồn tại"
+msgstr ""
-#: www/login.py:153
+#: frappe/www/login.py:167
msgid "User with email address {0} does not exist"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:224
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:225
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: core/doctype/user/user.py:504
+#: frappe/core/doctype/user/user.py:536
msgid "User {0} cannot be deleted"
-msgstr "Người sử dụng {0} không thể bị xóa"
+msgstr ""
-#: core/doctype/user/user.py:242
+#: frappe/core/doctype/user/user.py:326
msgid "User {0} cannot be disabled"
-msgstr "Người sử dụng {0} không thể bị vô hiệu hóa"
+msgstr ""
-#: core/doctype/user/user.py:564
+#: frappe/core/doctype/user/user.py:602
msgid "User {0} cannot be renamed"
-msgstr "Người sử dụng {0} không thể đổi tên"
+msgstr ""
-#: permissions.py:139
+#: frappe/permissions.py:138
msgid "User {0} does not have access to this document"
-msgstr "Người dùng {0} không có quyền truy cập vào tài liệu này"
+msgstr ""
-#: permissions.py:162
+#: frappe/permissions.py:161
msgid "User {0} does not have doctype access via role permission for document {1}"
-msgstr "Người dùng {0} không có quyền truy cập doctype thông qua quyền vai trò cho tài liệu {1}"
+msgstr ""
-#: templates/emails/data_deletion_approval.html:1
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:108
+#: frappe/desk/doctype/workspace/workspace.py:275
+msgid "User {0} does not have the permission to create a Workspace."
+msgstr ""
+
+#: frappe/templates/emails/data_deletion_approval.html:1
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:112
msgid "User {0} has requested for data deletion"
-msgstr "Người dùng {0} đã yêu cầu xóa dữ liệu"
+msgstr ""
-#: utils/oauth.py:272
+#: frappe/core/doctype/user/user.py:1369
+msgid "User {0} impersonated as {1}"
+msgstr ""
+
+#: frappe/utils/oauth.py:269
msgid "User {0} is disabled"
-msgstr "Người sử dụng {0} bị vô hiệu hóa"
+msgstr ""
-#: desk/form/assign_to.py:101
+#: frappe/sessions.py:242
+msgid "User {0} is disabled. Please contact your System Manager."
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:104
msgid "User {0} is not permitted to access this document."
msgstr ""
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the userinfo_uri (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Userinfo URI"
msgstr ""
-#: www/login.py:99
+#. Label of the username (Data) field in DocType 'User'
+#. Label of the username (Data) field in DocType 'User Social Login'
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_social_login/user_social_login.json
+#: frappe/www/login.py:110
msgid "Username"
-msgstr "Tên đăng nhập"
+msgstr ""
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Username"
-msgstr "Tên đăng nhập"
-
-#. Label of a Data field in DocType 'User Social Login'
-#: core/doctype/user_social_login/user_social_login.json
-msgctxt "User Social Login"
-msgid "Username"
-msgstr "Tên đăng nhập"
-
-#: core/doctype/user/user.py:644
+#: frappe/core/doctype/user/user.py:687
msgid "Username {0} already exists"
-msgstr "Tên đăng nhập {0} đã tồn tại"
+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
-#: core/workspace/users/users.json
+#. Label of the users_section (Section Break) field in DocType 'System Health
+#. Report'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/core/workspace/users/users.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
-msgstr "Người sử dụng"
+msgstr ""
-#. Label of a Table MultiSelect field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Users"
-msgstr "Người sử dụng"
+#. Description of the 'Protect Attached Files' (Check) field in DocType
+#. 'DocType'
+#. Description of the 'Protect Attached Files' (Check) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Users are only able to delete attached files if the document is either in draft or if the document is canceled and they are also able to delete the document."
+msgstr ""
-#. Description of the 'Allot Points To Assigned Users' (Check) field in DocType
-#. 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Users assigned to the reference document will get points."
-msgstr "Người dùng được gán cho tài liệu tham khảo sẽ nhận được điểm."
-
-#: core/page/permission_manager/permission_manager.js:345
+#: frappe/core/page/permission_manager/permission_manager.js:355
msgid "Users with role {0}:"
-msgstr "Người sử dụng với vai trò {0}:"
+msgstr ""
-#: public/js/frappe/ui/theme_switcher.js:70
+#: frappe/public/js/frappe/ui/theme_switcher.js:70
msgid "Uses system's theme to switch between light and dark mode"
msgstr ""
-#: public/js/frappe/desk.js:112
+#: frappe/public/js/frappe/desk.js:154
msgid "Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand."
-msgstr "Sử dụng bảng điều khiển này có thể cho phép những kẻ tấn công mạo danh bạn và lấy cắp thông tin của bạn. Không nhập hoặc dán mã mà bạn không hiểu."
+msgstr ""
-#. Label of a Percent field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the utilization (Percent) field in DocType 'System Health Report
+#. Workers'
+#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
+msgid "Utilization"
+msgstr ""
+
+#. Label of the utilization_percent (Percent) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Utilization %"
msgstr ""
#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization
#. Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Valid"
-msgstr "Có hiệu lực"
+msgstr ""
-#. Label of a Check field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/templates/includes/login/login.js:52
+#: frappe/templates/includes/login/login.js:65
+msgid "Valid Login id required."
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:39
+msgid "Valid email and name required"
+msgstr ""
+
+#. Label of the validate_action (Check) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Validate Field"
-msgstr "Xác thực trường"
+msgstr ""
-#: public/js/frappe/web_form/web_form.js:356
+#. Label of the validate_frappe_mail_settings (Button) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Validate Frappe Mail Settings"
+msgstr ""
+
+#. Label of the validate_ssl_certificate (Check) field in DocType 'Email
+#. Account'
+#. Label of the validate_ssl_certificate (Check) field in DocType 'Email
+#. Domain'
+#. Label of the validate_ssl_certificate_for_outgoing (Check) field in DocType
+#. 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Validate SSL Certificate"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:360
msgid "Validation Error"
-msgstr "Lỗi xác nhận"
+msgstr ""
-#. Label of a Select field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. Label of the validity (Select) field in DocType 'OAuth Authorization Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Validity"
-msgstr "Hiệu lực"
+msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.js:92
-#: public/js/frappe/list/bulk_operations.js:271
-#: public/js/frappe/list/bulk_operations.js:333
+#. Label of the value (Data) field in DocType 'Milestone'
+#. Label of the defvalue (Text) field in DocType 'DefaultValue'
+#. Label of the value (Data) field in DocType 'Document Naming Rule Condition'
+#. Label of the value (Data) field in DocType 'SMS Parameter'
+#. Label of the value (Data) field in DocType 'Query Parameters'
+#. Label of the value (Small Text) field in DocType 'Webhook Header'
+#. Label of the value (Text) field in DocType 'Website Meta Tag'
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/core/doctype/defaultvalue/defaultvalue.json
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+#: frappe/core/doctype/prepared_report/prepared_report.js:8
+#: frappe/core/doctype/sms_parameter/sms_parameter.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
+#: frappe/desk/doctype/number_card/number_card.js:205
+#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
+#: frappe/integrations/doctype/query_parameters/query_parameters.json
+#: frappe/integrations/doctype/webhook_header/webhook_header.json
+#: frappe/public/js/frappe/list/bulk_operations.js:336
+#: frappe/public/js/frappe/list/bulk_operations.js:398
+#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
+#: frappe/website/doctype/web_form/web_form.js:197
+#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Value"
-msgstr "Giá trị"
+msgstr ""
-#. Label of a Text field in DocType 'DefaultValue'
-#: core/doctype/defaultvalue/defaultvalue.json
-msgctxt "DefaultValue"
-msgid "Value"
-msgstr "Giá trị"
-
-#. Label of a Data field in DocType 'Document Naming Rule Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
-msgid "Value"
-msgstr "Giá trị"
-
-#. Label of a Data field in DocType 'Milestone'
-#: automation/doctype/milestone/milestone.json
-msgctxt "Milestone"
-msgid "Value"
-msgstr "Giá trị"
-
-#. Label of a Data field in DocType 'Query Parameters'
-#: integrations/doctype/query_parameters/query_parameters.json
-msgctxt "Query Parameters"
-msgid "Value"
-msgstr "Giá trị"
-
-#. Label of a Data field in DocType 'SMS Parameter'
-#: core/doctype/sms_parameter/sms_parameter.json
-msgctxt "SMS Parameter"
-msgid "Value"
-msgstr "Giá trị"
-
-#. Label of a Small Text field in DocType 'Webhook Header'
-#: integrations/doctype/webhook_header/webhook_header.json
-msgctxt "Webhook Header"
-msgid "Value"
-msgstr "Giá trị"
-
-#. Label of a Text field in DocType 'Website Meta Tag'
-#: website/doctype/website_meta_tag/website_meta_tag.json
-msgctxt "Website Meta Tag"
-msgid "Value"
-msgstr "Giá trị"
-
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the value_based_on (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Value Based On"
-msgstr "Giá trị dựa trên"
-
-#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Value Change"
-msgstr "Thay đổi giá trị"
+msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Value Change"
-msgstr "Thay đổi giá trị"
+msgstr ""
-#. Label of a Select field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the value_changed (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Value Changed"
-msgstr "Thay đổi giá trị"
+msgstr ""
-#. Label of a Data field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the property_value (Data) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Value To Be Set"
-msgstr "Giá trị Để Đặt"
+msgstr ""
-#: model/base_document.py:930 model/document.py:648
+#: frappe/model/base_document.py:1049 frappe/model/document.py:834
msgid "Value cannot be changed for {0}"
-msgstr "Giá trị không thể thay đổi cho {0}"
+msgstr ""
-#: model/document.py:593
+#: frappe/model/document.py:780
msgid "Value cannot be negative for"
-msgstr "Giá trị không được âm cho"
+msgstr ""
-#: model/document.py:597
+#: frappe/model/document.py:784
msgid "Value cannot be negative for {0}: {1}"
-msgstr "Giá trị không được âm cho {0}: {1}"
+msgstr ""
-#: custom/doctype/property_setter/property_setter.js:7
+#: frappe/custom/doctype/property_setter/property_setter.js:7
msgid "Value for a check field can be either 0 or 1"
-msgstr "Giá trị cho một đoạn kiểm tra có thể là 0 hoặc 1"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:611
+#: frappe/custom/doctype/customize_form/customize_form.py:611
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
-msgstr "Giá trị cho trường {0} quá dài trong {1}. Độ dài phải nhỏ hơn {2} ký tự"
+msgstr ""
-#: model/base_document.py:360
+#: frappe/model/base_document.py:445
msgid "Value for {0} cannot be a list"
-msgstr "Giá trị {0} không thể là một danh sách"
+msgstr ""
#. Description of the 'Due Date Based On' (Select) field in DocType 'Assignment
#. Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Value from this field will be set as the due date in the ToDo"
-msgstr "Giá trị từ trường này sẽ được đặt làm ngày đến hạn trong Công việc"
+msgstr ""
-#: model/base_document.py:712
-msgid "Value missing for"
-msgstr "Giá trị mất tích"
-
-#: core/doctype/data_import/importer.py:698
+#: frappe/core/doctype/data_import/importer.py:714
msgid "Value must be one of {0}"
-msgstr "Giá trị phải là một trong {0}"
+msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. 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 "Giá trị để xác thực"
+msgstr ""
-#: model/base_document.py:997
+#: frappe/model/base_document.py:1119
msgid "Value too big"
-msgstr "Giá trị quá lớn"
+msgstr ""
-#: core/doctype/data_import/importer.py:711
+#: frappe/core/doctype/data_import/importer.py:727
msgid "Value {0} missing for {1}"
-msgstr "Giá trị {0} bị thiếu cho {1}"
+msgstr ""
-#: core/doctype/data_import/importer.py:742 utils/data.py:877
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
msgid "Value {0} must be in the valid duration format: d h m s"
-msgstr "Giá trị {0} phải ở định dạng thời lượng hợp lệ: dhms"
+msgstr ""
-#: core/doctype/data_import/importer.py:729
+#: frappe/core/doctype/data_import/importer.py:745
+#: frappe/core/doctype/data_import/importer.py:760
msgid "Value {0} must in {1} format"
-msgstr "Giá trị {0} phải ở định dạng {1}"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:8
+msgid "Values Changed"
+msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Verdana"
-msgstr "Verdana"
+msgstr ""
-#: twofactor.py:362
-msgid "Verfication Code"
-msgstr "Mã xác minh"
+#: frappe/templates/includes/login/login.js:333
+msgid "Verification"
+msgstr ""
-#: templates/emails/delete_data_confirmation.html:10
+#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352
+msgid "Verification Code"
+msgstr ""
+
+#: frappe/templates/emails/delete_data_confirmation.html:10
msgid "Verification Link"
-msgstr "Liên kết xác minh"
+msgstr ""
-#: twofactor.py:251
+#: frappe/templates/includes/login/login.js:383
+msgid "Verification code email not sent. Please contact Administrator."
+msgstr ""
+
+#: frappe/twofactor.py:248
msgid "Verification code has been sent to your registered email address."
-msgstr "Mã xác minh đã được gửi tới địa chỉ email đã đăng ký của bạn."
+msgstr ""
#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
+#: frappe/core/doctype/translation/translation.json
msgid "Verified"
-msgstr "Đã xác minh"
+msgstr ""
-#: public/js/frappe/ui/messages.js:352
+#: frappe/public/js/frappe/ui/messages.js:359
+#: frappe/templates/includes/login/login.js:337
msgid "Verify"
-msgstr "Xác nhận"
+msgstr ""
-#: public/js/frappe/ui/messages.js:351
+#: frappe/public/js/frappe/ui/messages.js:358
msgid "Verify Password"
-msgstr "Xác Nhận Mật Khẩu"
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:171
+msgid "Verifying..."
+msgstr ""
#. Name of a DocType
-#: core/doctype/version/version.json
+#: frappe/core/doctype/version/version.json
msgid "Version"
-msgstr "Phiên bản"
+msgstr ""
-#: public/js/frappe/desk.js:131
+#: frappe/public/js/frappe/desk.js:166
msgid "Version Updated"
-msgstr "Đã cập nhật phiên bản"
+msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the video_url (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Video URL"
-msgstr "URL video"
+msgstr ""
-#. Label of a Select field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the view_name (Select) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "View"
msgstr ""
-#: core/doctype/success_action/success_action.js:58
-#: public/js/frappe/form/success_action.js:89
+#: frappe/core/doctype/success_action/success_action.js:60
+#: frappe/public/js/frappe/form/success_action.js:89
msgid "View All"
-msgstr "Xem tất cả"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:507
+#: frappe/public/js/frappe/form/toolbar.js:577
msgid "View Audit Trail"
msgstr ""
-#: templates/includes/likes/likes.py:34
+#: frappe/templates/includes/likes/likes.py:34
msgid "View Blog Post"
msgstr ""
-#: templates/includes/comments/comments.py:58
+#: frappe/templates/includes/comments/comments.py:56
msgid "View Comment"
-msgstr "Xem bình luận"
+msgstr ""
-#: public/js/frappe/views/treeview.js:467
+#: frappe/core/doctype/user/user.js:151
+msgid "View Doctype Permissions"
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:4
+msgid "View File"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:220
+msgid "View Full Log"
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
-msgstr "Xem danh sách"
+msgstr ""
#. Name of a DocType
-#: core/doctype/view_log/view_log.json
+#: frappe/core/doctype/view_log/view_log.json
msgid "View Log"
-msgstr "Xem nhật kí"
+msgstr ""
-#: core/doctype/user/user.js:133
-#: core/doctype/user_permission/user_permission.js:24
+#: frappe/core/doctype/user/user.js:142
+#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
-msgstr "Xem tài liệu được cho phép"
+msgstr ""
-#. Label of a Button field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the view_properties (Button) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "View Properties (via Customize Form)"
-msgstr "Xem Tài sản (qua mẫu đặc chế)"
-
-#: social/doctype/energy_point_log/energy_point_log_list.js:20
-msgid "View Ref"
-msgstr "Xem tham chiếu"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "View Report"
-msgstr "Xem báo cáo"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the view_settings (Section Break) field in DocType 'DocType'
+#. Label of the view_settings_section (Section Break) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "View Settings"
-msgstr "Xem Cài đặt"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "View Settings"
-msgstr "Xem Cài đặt"
-
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the view_switcher (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "View Switcher"
msgstr ""
#. Label of a standard navbar item
#. Type: Action
-#: hooks.py website/doctype/website_settings/website_settings.js:16
+#: frappe/hooks.py
+#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
-msgstr "Xem trang web"
-
-#: www/confirm_workflow_action.html:12
-msgid "View document"
-msgstr "Xem tài liệu"
-
-#: core/doctype/file/file.js:31
-msgid "View file"
msgstr ""
-#: templates/emails/auto_email_report.html:60
+#: 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 "Xem báo cáo trong trình duyệt của bạn"
+msgstr ""
-#: templates/emails/print_link.html:2
+#: frappe/templates/emails/print_link.html:2
msgid "View this in your browser"
-msgstr "Xem này trong trình duyệt của bạn"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.js:43
-#: desk/doctype/calendar_view/calendar_view_list.js:10
-#: desk/doctype/dashboard/dashboard_list.js:10
+#: frappe/public/js/frappe/web_form/web_form.js:454
+msgctxt "Button in web form"
+msgid "View your response"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:43
+#: frappe/desk/doctype/calendar_view/calendar_view_list.js:10
+#: frappe/desk/doctype/dashboard/dashboard_list.js:10
msgid "View {0}"
-msgstr "Xem {0}"
+msgstr ""
-#. Label of a Data field in DocType 'View Log'
-#: core/doctype/view_log/view_log.json
-msgctxt "View Log"
+#. Label of the viewed_by (Data) field in DocType 'View Log'
+#: frappe/core/doctype/view_log/view_log.json
msgid "Viewed By"
-msgstr "Được xem bởi"
-
-#. Label of a Card Break in the Build Workspace
-#: core/workspace/build/build.json
-msgid "Views"
msgstr ""
#. Group in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of a Card Break in the Build Workspace
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/workspace/build/build.json
msgid "Views"
msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the is_virtual (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Virtual"
msgstr ""
-#: model/virtual_doctype.py:78
+#: frappe/model/virtual_doctype.py:76
msgid "Virtual DocType {} requires a static method called {} found {}"
msgstr ""
-#: model/virtual_doctype.py:91
+#: frappe/model/virtual_doctype.py:89
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr ""
-#. Label of a Section Break field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the visibility_section (Section Break) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Visibility"
msgstr ""
+#: 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'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Visit"
-msgstr "Lần"
+msgstr ""
-#: website/doctype/website_route_meta/website_route_meta.js:7
+#: frappe/website/doctype/website_route_meta/website_route_meta.js:7
msgid "Visit Web Page"
-msgstr "Truy cập trang web"
+msgstr ""
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
+#. Label of the visitor_id (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Visitor ID"
msgstr ""
-#: templates/discussions/reply_section.html:38
+#: frappe/templates/discussions/reply_section.html:39
msgid "Want to discuss?"
msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Warehouse"
-msgstr "Kho hàng"
+msgstr ""
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
-msgstr "Cảnh báo"
+msgstr ""
-#: public/js/frappe/model/meta.js:179
+#: frappe/custom/doctype/customize_form/customize_form.js:217
+msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1125
+msgid "Warning: Naming is not set"
+msgstr ""
+
+#: frappe/public/js/frappe/model/meta.js:182
msgid "Warning: Unable to find {0} in any table related to {1}"
-msgstr "Cảnh báo: Không thể tìm thấy {0} trong bất kỳ bảng nào liên quan đến {1}"
+msgstr ""
#. Description of the 'Counter' (Int) field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Warning: Updating counter may lead to document name conflicts if not done properly"
msgstr ""
-#: website/doctype/help_article/templates/help_article.html:24
+#: frappe/website/doctype/help_article/templates/help_article.html:24
msgid "Was this article helpful?"
-msgstr "Bài viết này hữu ích không?"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:127
+msgid "Watch Tutorial"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Watch Video"
-msgstr "Xem video"
+msgstr ""
-#: desk/doctype/workspace/workspace.js:38
+#: frappe/desk/doctype/workspace/workspace.js:34
msgid "We do not allow editing of this document. Simply click the Edit button on the workspace page to make your workspace editable and customize it as you wish"
msgstr ""
-#: templates/emails/delete_data_confirmation.html:2
+#: frappe/templates/emails/delete_data_confirmation.html:2
msgid "We have received a request for deletion of {0} data associated with: {1}"
-msgstr "Chúng tôi đã nhận được yêu cầu xóa dữ liệu {0} được liên kết với: {1}"
+msgstr ""
-#: templates/emails/download_data.html:2
+#: frappe/templates/emails/download_data.html:2
msgid "We have received a request from you to download your {0} data associated with: {1}"
-msgstr "Chúng tôi đã nhận được yêu cầu từ bạn để tải xuống dữ liệu {0} của bạn được liên kết với: {1}"
+msgstr ""
-#: public/js/frappe/form/controls/password.js:88
+#: frappe/www/attribution.html:12
+msgid "We would like to thank the authors of these packages for their contribution."
+msgstr ""
+
+#: frappe/www/contact.py:50
+msgid "We've received your query!"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/password.js:87
msgid "Weak"
msgstr ""
#. Name of a DocType
-#: website/doctype/web_form/web_form.json
-msgid "Web Form"
-msgstr "mẫu web"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Web Form"
-msgstr "mẫu web"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Web Form"
-msgstr "mẫu web"
-
#. Label of a Link in the Website Workspace
#. Label of a shortcut in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Web Form"
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/workspace/website/website.json
msgid "Web Form"
-msgstr "mẫu web"
+msgstr ""
#. Name of a DocType
-#: website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Web Form Field"
-msgstr "Trường mẫu Web"
+msgstr ""
-#. Label of a Table field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the web_form_fields (Table) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Web Form Fields"
-msgstr "Các đoạn mẫu web"
+msgstr ""
#. Name of a DocType
-#: website/doctype/web_form_list_column/web_form_list_column.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Web Form List Column"
msgstr ""
#. Name of a DocType
-#: website/doctype/web_page/web_page.json
-msgid "Web Page"
-msgstr "Trang web"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Web Page"
-msgstr "Trang web"
-
#. Label of a Link in the Website Workspace
#. Label of a shortcut in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Web Page"
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/workspace/website/website.json
msgid "Web Page"
-msgstr "Trang web"
+msgstr ""
#. Name of a DocType
-#: website/doctype/web_page_block/web_page_block.json
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Web Page Block"
-msgstr "Khối trang web"
+msgstr ""
-#: public/js/frappe/utils/utils.js:1697
+#: frappe/public/js/frappe/utils/utils.js:1709
msgid "Web Page URL"
msgstr ""
#. Name of a DocType
-#: website/doctype/web_page_view/web_page_view.json
+#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Web Page View"
-msgstr "Xem trang web"
+msgstr ""
#. Label of a Card Break in the Website Workspace
-#: website/workspace/website/website.json
+#: frappe/website/workspace/website/website.json
msgid "Web Site"
-msgstr "Website"
+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
-#: website/doctype/web_template/web_template.json
-msgid "Web Template"
-msgstr "Mẫu web"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Web Template"
-msgstr "Mẫu web"
-
-#. Label of a Link field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
-msgid "Web Template"
-msgstr "Mẫu web"
-
-#. Name of a DocType
-#: website/doctype/web_template_field/web_template_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Web Template Field"
-msgstr "Trường Mẫu Web"
+msgstr ""
-#. Label of a Code field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the web_template_values (Code) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Web Template Values"
-msgstr "Giá trị Mẫu Web"
+msgstr ""
-#: utils/jinja_globals.py:48
+#: frappe/utils/jinja_globals.py:48
msgid "Web Template is not specified"
msgstr ""
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the web_view (Tab Break) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Web View"
-msgstr "Xem web"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/webhook/webhook.json
-msgid "Webhook"
-msgstr "Webhook"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Webhook"
-msgstr "Webhook"
-
+#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Webhook"
-msgstr "Webhook"
+msgstr ""
-#. Label of a Link field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "Webhook"
-msgstr "Webhook"
+#. 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
-#: integrations/doctype/webhook_data/webhook_data.json
-msgid "Webhook Data"
-msgstr "Dữ liệu Webhook"
-
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Webhook Data"
-msgstr "Dữ liệu Webhook"
-
-#. Name of a DocType
-#: integrations/doctype/webhook_header/webhook_header.json
+#: frappe/integrations/doctype/webhook_header/webhook_header.json
msgid "Webhook Header"
-msgstr "Tiêu đề Webhook"
+msgstr ""
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Headers"
-msgstr "Webhook Headers"
+msgstr ""
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the sb_webhook (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Request"
-msgstr "Yêu cầu Webhook"
+msgstr ""
+#. Label of a Link in the Build Workspace
#. Name of a DocType
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/core/workspace/build/build.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Webhook Request Log"
msgstr ""
-#. Linked DocType in Webhook's connections
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Webhook Request Log"
-msgstr ""
-
-#. Label of a Password field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the webhook_secret (Password) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Secret"
-msgstr "Bí mật webhook"
+msgstr ""
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the sb_security (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Security"
-msgstr "Bảo mật webhook"
+msgstr ""
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the sb_condition (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Trigger"
-msgstr "Kích hoạt webhook"
+msgstr ""
-#. Label of a Data field in DocType 'Slack Webhook URL'
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.json
-msgctxt "Slack Webhook URL"
+#. Label of the webhook_url (Data) field in DocType 'Slack Webhook URL'
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
msgid "Webhook URL"
-msgstr "URL Webhook"
-
-#. Name of a Workspace
-#: email/doctype/newsletter/newsletter.py:451
-#: website/workspace/website/website.json
-msgid "Website"
-msgstr "Website"
+msgstr ""
#. Group in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
+#. Name of a Workspace
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/email/doctype/newsletter/newsletter.py:457
+#: frappe/public/js/frappe/ui/apps_switcher.js:125
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
+#: frappe/website/workspace/website/website.json
msgid "Website"
-msgstr "Website"
+msgstr ""
#. Name of a report
-#: website/report/website_analytics/website_analytics.json
+#. Label of a Link in the Website Workspace
+#: frappe/website/report/website_analytics/website_analytics.json
+#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
-msgstr "Phân tích trang web"
+msgstr ""
#. Name of a role
-#: core/doctype/comment/comment.json
-#: website/doctype/about_us_settings/about_us_settings.json
-#: website/doctype/blog_category/blog_category.json
-#: website/doctype/blog_post/blog_post.json
-#: website/doctype/blog_settings/blog_settings.json
-#: website/doctype/blogger/blogger.json website/doctype/color/color.json
-#: website/doctype/contact_us_settings/contact_us_settings.json
-#: website/doctype/help_category/help_category.json
-#: website/doctype/portal_settings/portal_settings.json
-#: website/doctype/web_form/web_form.json
-#: website/doctype/web_page/web_page.json
-#: website/doctype/website_script/website_script.json
-#: website/doctype/website_settings/website_settings.json
-#: website/doctype/website_sidebar/website_sidebar.json
-#: website/doctype/website_slideshow/website_slideshow.json
-#: website/doctype/website_theme/website_theme.json
+#: frappe/core/doctype/comment/comment.json
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
+#: frappe/website/doctype/blogger/blogger.json
+#: frappe/website/doctype/color/color.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/doctype/help_category/help_category.json
+#: frappe/website/doctype/portal_settings/portal_settings.json
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_script/website_script.json
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/doctype/website_sidebar/website_sidebar.json
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Website Manager"
-msgstr "Quản trị viên Website"
+msgstr ""
#. Name of a DocType
-#: website/doctype/website_meta_tag/website_meta_tag.json
+#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Website Meta Tag"
-msgstr "Thẻ meta trang web"
+msgstr ""
#. Name of a DocType
-#: website/doctype/website_route_meta/website_route_meta.json
-msgid "Website Route Meta"
-msgstr "Trang web Tuyến Meta"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Route Meta"
+#: frappe/website/doctype/website_route_meta/website_route_meta.json
+#: frappe/website/workspace/website/website.json
msgid "Website Route Meta"
-msgstr "Trang web Tuyến Meta"
+msgstr ""
#. Name of a DocType
-#: website/doctype/website_route_redirect/website_route_redirect.json
+#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
msgid "Website Route Redirect"
-msgstr "Chuyển hướng trang web"
+msgstr ""
#. Name of a DocType
-#: website/doctype/website_script/website_script.json
-msgid "Website Script"
-msgstr "Bản thảo website"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Script"
+#: frappe/website/doctype/website_script/website_script.json
+#: frappe/website/workspace/website/website.json
msgid "Website Script"
-msgstr "Bản thảo website"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the website_search_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Website Search Field"
msgstr ""
-#: core/doctype/doctype/doctype.py:1473
+#: frappe/core/doctype/doctype/doctype.py:1522
msgid "Website Search Field must be a valid fieldname"
msgstr ""
#. Name of a DocType
-#: website/doctype/website_settings/website_settings.json
-msgid "Website Settings"
-msgstr "Thiết lập website"
-
#. Label of a Link in the Website Workspace
-#. Label of a shortcut in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/workspace/website/website.json
msgid "Website Settings"
-msgstr "Thiết lập website"
+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
-#: website/doctype/website_sidebar/website_sidebar.json
-msgid "Website Sidebar"
-msgstr "Thanh bên của trang web"
-
-#. Label of a Link field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Website Sidebar"
-msgstr "Thanh bên của trang web"
-
-#. Label of a Link field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Website Sidebar"
-msgstr "Thanh bên của trang web"
-
-#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Sidebar"
-msgid "Website Sidebar"
-msgstr "Thanh bên của trang web"
-
-#. Name of a DocType
-#: website/doctype/website_sidebar_item/website_sidebar_item.json
+#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Website Sidebar Item"
-msgstr "Mục thanh bên của trang web"
+msgstr ""
#. Name of a DocType
-#: website/doctype/website_slideshow/website_slideshow.json
-msgid "Website Slideshow"
-msgstr "Trình diễn Website"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Slideshow"
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
+#: frappe/website/workspace/website/website.json
msgid "Website Slideshow"
-msgstr "Trình diễn Website"
+msgstr ""
#. Name of a DocType
-#: website/doctype/website_slideshow_item/website_slideshow_item.json
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "Website Slideshow Item"
-msgstr "Mục trình diễn website"
+msgstr ""
+#. Label of the website_theme (Link) field in DocType 'Website Settings'
#. Name of a DocType
-#: website/doctype/website_theme/website_theme.json
-msgid "Website Theme"
-msgstr "Giao diện Website"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Website Theme"
-msgstr "Giao diện Website"
-
-#. Label of a Link field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Website Theme"
-msgstr "Giao diện Website"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Theme"
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/doctype/website_theme/website_theme.json
+#: frappe/website/workspace/website/website.json
msgid "Website Theme"
-msgstr "Giao diện Website"
+msgstr ""
#. Name of a DocType
-#: website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
+#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
msgid "Website Theme Ignore App"
-msgstr "Ứng dụng bỏ qua chủ đề trang web"
+msgstr ""
-#. Label of a Image field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the website_theme_image (Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Website Theme Image"
-msgstr "Ảnh giao diện website"
+msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the website_theme_image_link (Code) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Website Theme image link"
msgstr ""
+#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Websocket"
+msgstr ""
+
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Wednesday"
-msgstr "Thứ tư"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Wednesday"
-msgstr "Thứ tư"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Wednesday"
-msgstr "Thứ tư"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Wednesday"
-msgstr "Thứ tư"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the wednesday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Wednesday"
-msgstr "Thứ tư"
+msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:269
+#: frappe/public/js/frappe/views/calendar/calendar.js:276
msgid "Week"
-msgstr "Tuần"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Weekdays"
-msgstr "Ngày thường"
-
-#: public/js/frappe/utils/common.js:399
-#: website/report/website_analytics/website_analytics.js:24
-msgid "Weekly"
-msgstr "Hàng tuần"
-
-#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Weekly"
-msgstr "Hàng tuần"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Weekly"
-msgstr "Hàng tuần"
-
+#. 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'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Weekly"
-msgstr "Hàng tuần"
-
+#. 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'
#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
#. Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Weekly"
-msgstr "Hàng tuần"
-
-#. Option for the 'Point Allocation Periodicity' (Select) field in DocType
-#. 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Weekly"
-msgstr "Hàng tuần"
-
-#. Option for the 'Repeat On' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Weekly"
-msgstr "Hàng tuần"
-
#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Weekly"
-msgstr "Hàng tuần"
-
-#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Weekly"
-msgstr "Hàng tuần"
-
#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
#. Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/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/integrations/doctype/dropbox_settings/dropbox_settings.json
+#: frappe/integrations/doctype/google_drive/google_drive.json
+#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
+#: frappe/public/js/frappe/utils/common.js:399
+#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
-msgstr "Hàng tuần"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Weekly"
-msgstr "Hàng tuần"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Weekly"
-msgstr "Hàng tuần"
-
-#. Option for the 'Frequency' (Select) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Weekly"
-msgstr "Hàng tuần"
-
-#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Weekly Long"
-msgstr "Hàng tuần dài"
+msgstr ""
-#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Weekly Long"
-msgstr "Hàng tuần dài"
-
-#: desk/page/setup_wizard/setup_wizard.js:372
+#: frappe/desk/page/setup_wizard/setup_wizard.js:384
msgid "Welcome"
msgstr ""
-#. Label of a Link field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#. Label of the welcome_email_template (Link) field in DocType 'System
+#. Settings'
+#. Label of the welcome_email_template (Link) field in DocType 'Email Group'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/email/doctype/email_group/email_group.json
msgid "Welcome Email Template"
-msgstr "Mẫu email chào mừng"
+msgstr ""
-#. Label of a Link field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Welcome Email Template"
-msgstr "Mẫu email chào mừng"
-
-#. Label of a Data field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#. Label of the welcome_url (Data) field in DocType 'Email Group'
+#: frappe/email/doctype/email_group/email_group.json
msgid "Welcome URL"
msgstr ""
#. Name of a Workspace
-#: core/workspace/welcome_workspace/welcome_workspace.json desk/desktop.py:468
+#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "Welcome Workspace"
msgstr ""
-#: core/doctype/user/user.py:361
+#: frappe/core/doctype/user/user.py:414
msgid "Welcome email sent"
-msgstr "Email chào mừng gửi"
+msgstr ""
-#: core/doctype/user/user.py:436
+#: frappe/core/doctype/user/user.py:475
msgid "Welcome to {0}"
-msgstr "Chào mừng bạn đến {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'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "When enabled this will allow guests to upload files to your application, You can enable this if you wish to collect files from user without having them to log in, for example in job applications web form."
-msgstr "Khi được bật, điều này sẽ cho phép khách tải tệp lên ứng dụng của bạn, Bạn có thể bật tùy chọn này nếu bạn muốn thu thập tệp từ người dùng mà không cần phải đăng nhập, ví dụ như ở dạng web ứng dụng công việc."
+msgstr ""
+
+#. Description of the 'Store Attached PDF Document' (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "When sending document using email, store the PDF on Communication. Warning: This can increase your storage usage."
+msgstr ""
#. Description of the 'Force Web Capture Mode for Uploads' (Check) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected."
msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:440
-msgid "Which view of the associated DocType should this shortcut take you to?"
-msgstr "Lối tắt này sẽ đưa bạn đến chế độ xem DocType được liên kết nào?"
+#: frappe/core/page/permission_manager/permission_manager_help.html:18
+msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number."
+msgstr ""
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:468
msgid "Which view of the associated DocType should this shortcut take you to?"
-msgstr "Lối tắt này sẽ đưa bạn đến chế độ xem DocType được liên kết nào?"
+msgstr ""
-#. Label of a Data field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the width (Data) field in DocType 'DocField'
+#. Label of the width (Int) field in DocType 'Report Column'
+#. Label of the width (Data) field in DocType 'Custom Field'
+#. Label of the width (Data) field in DocType 'Customize Form Field'
+#. Label of the width (Select) field in DocType 'Dashboard Chart Link'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
-msgstr "Chiều rộng"
+msgstr ""
-#. Label of a Data field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Width"
-msgstr "Chiều rộng"
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:2
+msgid "Widths can be set in px or %."
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart Link'
-#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json
-msgctxt "Dashboard Chart Link"
-msgid "Width"
-msgstr "Chiều rộng"
-
-#. Label of a Data field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Width"
-msgstr "Chiều rộng"
-
-#. Label of a Int field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Width"
-msgstr "Chiều rộng"
-
-#. Label of a Check field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
+#. Label of the wildcard_filter (Check) field in DocType 'Report Filter'
+#: frappe/core/doctype/report_filter/report_filter.json
msgid "Wildcard Filter"
-msgstr "Bộ lọc ký tự đại diện"
+msgstr ""
#. Description of the 'Wildcard Filter' (Check) field in DocType 'Report
#. Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
+#: frappe/core/doctype/report_filter/report_filter.json
msgid "Will add \"%\" before and after the query"
msgstr ""
#. Description of the 'Short Name' (Data) field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
+#: frappe/website/doctype/blogger/blogger.json
msgid "Will be used in url (usually first name)."
-msgstr "Sẽ được sử dụng trong url (tên thường đầu tiên)."
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:470
+#: frappe/desk/page/setup_wizard/setup_wizard.js:485
msgid "Will be your login ID"
-msgstr "Sẽ là ID đăng nhập của bạn"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:424
+#: frappe/printing/page/print_format_builder/print_format_builder.js:424
msgid "Will only be shown if section headings are enabled"
-msgstr "Sẽ chỉ được hiển thị nếu phần tiêu đề được kích hoạt"
+msgstr ""
#. Description of the 'Run Jobs only Daily if Inactive For (Days)' (Int) field
#. in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0."
-msgstr "Sẽ chạy các công việc theo lịch trình chỉ một lần một ngày cho các trang web không hoạt động. Mặc định 4 ngày nếu được đặt thành 0."
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
+msgstr ""
-#: public/js/frappe/form/print_utils.js:13
+#: frappe/public/js/frappe/form/print_utils.js:15
msgid "With Letter head"
-msgstr "Với đầu thư"
+msgstr ""
-#: workflow/doctype/workflow/workflow.js:140
-msgid "Worflow States Don't Exist"
-msgstr "Các trạng thái Worflow không tồn tại"
-
-#. Label of a Section Break field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the worker_information_section (Section Break) field in DocType 'RQ
+#. Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Worker Information"
msgstr ""
-#. Label of a Data field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the worker_name (Data) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Worker Name"
msgstr ""
-#. Name of a DocType
-#: workflow/doctype/workflow/workflow.json
-msgid "Workflow"
-msgstr "Quy trình làm việc"
-
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Workflow"
-msgstr "Quy trình làm việc"
-
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Workflow"
-msgstr "Quy trình làm việc"
-
#. Group in DocType's connections
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. 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 "Quy trình làm việc"
-
-#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Workflow"
-msgid "Workflow"
-msgstr "Quy trình làm việc"
+msgstr ""
#. Name of a DocType
-#: workflow/doctype/workflow_action/workflow_action.json
-#: workflow/doctype/workflow_action/workflow_action.py:486
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:444
msgid "Workflow Action"
-msgstr "Công việc hành động"
+msgstr ""
#. Name of a DocType
-#: workflow/doctype/workflow_action_master/workflow_action_master.json
+#. Description of a DocType
+#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
msgid "Workflow Action Master"
-msgstr "CHủ hành động công việc"
+msgstr ""
-#. Label of a Data field in DocType 'Workflow Action Master'
-#: workflow/doctype/workflow_action_master/workflow_action_master.json
-msgctxt "Workflow Action Master"
+#. Label of the workflow_action_name (Data) field in DocType 'Workflow Action
+#. Master'
+#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
msgid "Workflow Action Name"
-msgstr "Tên hành động công việc"
+msgstr ""
#. Name of a DocType
-#: workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
+#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
msgid "Workflow Action Permitted Role"
msgstr ""
#. Description of the 'Is Optional State' (Check) field in DocType 'Workflow
#. Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Workflow Action is not created for optional states"
-msgstr "Workflow Action không được tạo cho các trạng thái tùy chọn"
+msgstr ""
-#: workflow/page/workflow_builder/workflow_builder.js:4
+#: frappe/public/js/workflow_builder/store.js:129
+#: frappe/workflow/doctype/workflow/workflow.js:25
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:4
msgid "Workflow Builder"
msgstr ""
-#. Label of a Data field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#. Label of the workflow_builder_id (Data) field in DocType 'Workflow Document
+#. State'
+#. Label of the workflow_builder_id (Data) field in DocType 'Workflow
+#. Transition'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Workflow Builder ID"
msgstr ""
-#. Label of a Data field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
-msgid "Workflow Builder ID"
-msgstr ""
-
-#: workflow/doctype/workflow/workflow.js:11
+#: frappe/workflow/doctype/workflow/workflow.js:11
msgid "Workflow Builder allows you to create workflows visually. You can drag and drop states and link them to create transitions. Also you can update thieir properties from the sidebar."
msgstr ""
-#. Label of a JSON field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the workflow_data (JSON) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Data"
msgstr ""
+#: frappe/public/js/workflow_builder/components/Properties.vue:42
+msgid "Workflow Details"
+msgstr ""
+
#. Name of a DocType
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Workflow Document State"
-msgstr "Công việc tài liệu nhà nước"
+msgstr ""
-#. Label of a Data field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the workflow_name (Data) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
-msgstr "Tên công việc"
+msgstr ""
+#. Label of the workflow_state (Data) field in DocType 'Workflow Action'
#. Name of a DocType
-#: workflow/doctype/workflow_state/workflow_state.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Workflow State"
-msgstr "Công việc nhà nước"
+msgstr ""
-#. Label of a Data field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
-msgid "Workflow State"
-msgstr "Công việc nhà nước"
-
-#. Label of a Data field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the workflow_state_field (Data) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow State Field"
-msgstr "Đoạn trạng thái công việc"
+msgstr ""
-#: model/workflow.py:63
+#: frappe/model/workflow.py:61
msgid "Workflow State not set"
-msgstr "Luồng công việc chưa được đặt"
+msgstr ""
-#: model/workflow.py:201 model/workflow.py:209
+#: frappe/model/workflow.py:204 frappe/model/workflow.py:212
msgid "Workflow State transition not allowed from {0} to {1}"
-msgstr "Chuyển đổi trạng thái dòng công việc không được phép từ {0} sang {1}"
+msgstr ""
-#: model/workflow.py:327
+#: frappe/workflow/doctype/workflow/workflow.js:140
+msgid "Workflow States Don't Exist"
+msgstr ""
+
+#: frappe/model/workflow.py:328
msgid "Workflow Status"
-msgstr "Tình trạng quy trình làm việc"
+msgstr ""
#. Name of a DocType
-#: workflow/doctype/workflow_transition/workflow_transition.json
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Workflow Transition"
-msgstr "Chuyển tiếp quy trình làm việc"
-
-#. Description of the Onboarding Step 'Setup Approval Workflows'
-#: custom/onboarding_step/workflows/workflows.json
-msgid "Workflows allow you to define custom rules for the approval process of a particular document in ERPNext. You can also set complex Workflow Rules and set approval conditions."
msgstr ""
-#. Name of a DocType
-#: desk/doctype/workspace/workspace.json
-#: public/js/frappe/ui/toolbar/search_utils.js:541
-#: public/js/frappe/views/workspace/workspace.js:10
-msgid "Workspace"
+#. Description of a DocType
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+msgid "Workflow state represents the current state of a document."
msgstr ""
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Workspace"
+#: frappe/public/js/workflow_builder/store.js:83
+msgid "Workflow updated successfully"
msgstr ""
+#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Workspace"
+#. Name of a DocType
+#. Option for the 'Type' (Select) field in DocType 'Workspace'
+#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557
+#: frappe/public/js/frappe/utils/utils.js:929
+#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
-#: public/js/frappe/router.js:194
+#: frappe/public/js/frappe/router.js:177
msgid "Workspace {0} does not exist"
msgstr ""
#. Name of a DocType
-#: desk/doctype/workspace_chart/workspace_chart.json
+#: frappe/desk/doctype/workspace_chart/workspace_chart.json
msgid "Workspace Chart"
msgstr ""
#. Name of a DocType
-#: desk/doctype/workspace_custom_block/workspace_custom_block.json
+#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json
msgid "Workspace Custom Block"
msgstr ""
#. Name of a DocType
-#: desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Workspace Link"
msgstr ""
#. Name of a role
-#: desk/doctype/custom_html_block/custom_html_block.json
-#: desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
msgid "Workspace Manager"
msgstr ""
#. Name of a DocType
-#: desk/doctype/workspace_number_card/workspace_number_card.json
+#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json
msgid "Workspace Number Card"
msgstr ""
#. Name of a DocType
-#: desk/doctype/workspace_quick_list/workspace_quick_list.json
+#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
msgid "Workspace Quick List"
msgstr ""
+#. Label of a standard navbar item
+#. Type: Action
#. Name of a DocType
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+#: frappe/hooks.py
+msgid "Workspace Settings"
+msgstr ""
+
+#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
+#. Settings'
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+msgid "Workspace Setup Completed"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:1265
-msgid "Workspace {0} Created Successfully"
+#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
+#. Settings'
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+msgid "Workspace Visibility"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:894
-msgid "Workspace {0} Deleted Successfully"
-msgstr ""
-
-#: public/js/frappe/views/workspace/workspace.js:672
-msgid "Workspace {0} Edited Successfully"
+#: frappe/public/js/frappe/views/workspace/workspace.js:538
+msgid "Workspace {0} created"
msgstr ""
#. Option for the 'View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Workspaces"
msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Write"
-msgstr "Viết"
+#: frappe/public/js/frappe/form/footer/form_timeline.js:753
+msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
+msgstr ""
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Write"
-msgstr "Viết"
+#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
+msgstr ""
-#. Label of a Check field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "Write"
-msgstr "Viết"
+#: frappe/desk/page/setup_wizard/setup_wizard.py:41
+msgid "Wrapping up"
+msgstr ""
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
+#. Label of the write (Check) field in DocType 'Custom DocPerm'
+#. Label of the write (Check) field in DocType 'DocPerm'
+#. Label of the write (Check) field in DocType 'DocShare'
+#. Label of the write (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Write"
-msgstr "Viết"
+msgstr ""
-#: model/base_document.py:840
+#: frappe/model/base_document.py:949
msgid "Wrong Fetch From value"
-msgstr "Tìm nạp sai từ giá trị"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:464
+#: frappe/public/js/frappe/views/reports/report_view.js:484
msgid "X Axis Field"
-msgstr "Trục X"
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the x_field (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "X Field"
-msgstr "Trường X"
+msgstr ""
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "XLSX"
-msgstr "XLSX"
+msgstr ""
-#. Label of a Table field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the y_axis (Table) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Y Axis"
-msgstr "Trục Y"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:471
+#: frappe/public/js/frappe/views/reports/report_view.js:491
msgid "Y Axis Fields"
-msgstr "Trục Y trục"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1132
+#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
+#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
+#: frappe/public/js/frappe/views/reports/query_report.js:1221
msgid "Y Field"
-msgstr "Trường Y"
-
-#. Label of a Select field in DocType 'Dashboard Chart Field'
-#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-msgctxt "Dashboard Chart Field"
-msgid "Y Field"
-msgstr "Trường Y"
+msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Yahoo Mail"
-msgstr "Yahoo Mail"
+msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Yandex.Mail"
-msgstr "Yandex.Mail"
+msgstr ""
-#. Label of a Data field in DocType 'Company History'
-#: website/doctype/company_history/company_history.json
-msgctxt "Company History"
+#. Label of the heatmap_year (Select) field in DocType 'Dashboard Chart'
+#. Label of the year (Data) field in DocType 'Company History'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/website/doctype/company_history/company_history.json
msgid "Year"
-msgstr "Năm"
-
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Year"
-msgstr "Năm"
-
-#: public/js/frappe/utils/common.js:403
-msgid "Yearly"
-msgstr "Hàng năm"
-
-#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Yearly"
-msgstr "Hàng năm"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Yearly"
-msgstr "Hàng năm"
-
-#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Yearly"
-msgstr "Hàng năm"
-
-#. Option for the 'Repeat On' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Yearly"
-msgstr "Hàng năm"
-
-#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Yearly"
-msgstr "Hàng năm"
-
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Yearly"
-msgstr "Hàng năm"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Repeat On' (Select) field in DocType 'Event'
+#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
+#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/utils/common.js:403
msgid "Yearly"
-msgstr "Hàng năm"
+msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Yellow"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Yellow"
msgstr ""
-#: integrations/doctype/webhook/webhook.py:127
-#: integrations/doctype/webhook/webhook.py:137
-#: public/js/form_builder/utils.js:336
-#: public/js/frappe/form/controls/link.js:471
-#: public/js/frappe/list/list_sidebar_group_by.js:223
-#: public/js/frappe/views/reports/query_report.js:1513
-#: website/doctype/help_article/templates/help_article.html:25
-msgid "Yes"
-msgstr "Đồng ý"
-
-#: public/js/frappe/ui/messages.js:32
-msgctxt "Approve confirmation dialog"
-msgid "Yes"
-msgstr "Đồng ý"
-
-#: public/js/frappe/ui/filters/filter.js:500
-msgctxt "Checkbox is checked"
-msgid "Yes"
-msgstr "Đồng ý"
-
-#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP
-#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
-msgid "Yes"
-msgstr "Đồng ý"
-
#. Option for the 'Standard' (Select) field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Yes"
-msgstr "Đồng ý"
-
-#. Option for the 'Standard' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Yes"
-msgstr "Đồng ý"
-
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP
+#. Settings'
+#. Option for the 'Standard' (Select) field in DocType 'Print Format'
+#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
+#: frappe/email/doctype/notification/notification.py:92
+#: frappe/email/doctype/notification/notification.py:96
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/webhook/webhook.py:121
+#: frappe/integrations/doctype/webhook/webhook.py:128
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/form_builder/utils.js:336
+#: frappe/public/js/frappe/form/controls/link.js:494
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
+#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
-msgstr "Đồng ý"
+msgstr ""
-#: public/js/frappe/utils/user.js:33
+#: 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 "Bạn"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:462
+#: frappe/public/js/frappe/form/footer/form_timeline.js:463
msgid "You Liked"
msgstr ""
-#: public/js/frappe/dom.js:425
+#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
-msgstr "Bạn đã kết nối internet."
+msgstr ""
-#: permissions.py:417
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:20
+msgid "You are impersonating as another user."
+msgstr ""
+
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:28
+msgid "You are not allowed to access this resource"
+msgstr ""
+
+#: frappe/permissions.py:409
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
-msgstr "Bạn không được phép truy cập bản ghi này {0} vì nó được liên kết với {1} '{2}' trong trường {3}"
+msgstr ""
-#: permissions.py:406
+#: frappe/permissions.py:398
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
-#: public/js/frappe/views/kanban/kanban_board.bundle.js:69
+#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:68
msgid "You are not allowed to create columns"
-msgstr "Bạn không được phép để tạo ra cột"
+msgstr ""
-#: core/doctype/report/report.py:93
+#: frappe/core/doctype/report/report.py:97
msgid "You are not allowed to delete Standard Report"
-msgstr "Bạn không được phép xóa Báo cáo Chuẩn"
+msgstr ""
-#: website/doctype/website_theme/website_theme.py:74
+#: frappe/website/doctype/website_theme/website_theme.py:73
msgid "You are not allowed to delete a standard Website Theme"
-msgstr "Bạn không được phép xóa Theme mặc định"
+msgstr ""
-#: core/doctype/report/report.py:380
+#: frappe/core/doctype/report/report.py:391
msgid "You are not allowed to edit the report."
msgstr ""
-#: permissions.py:614
+#: frappe/core/doctype/data_import/exporter.py:121
+#: frappe/core/doctype/data_import/exporter.py:125
+#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
+#: frappe/permissions.py:604
msgid "You are not allowed to export {} doctype"
-msgstr "Bạn không được phép xuất {} doctype"
+msgstr ""
-#: public/js/frappe/views/treeview.js:431
+#: frappe/public/js/frappe/views/treeview.js:448
msgid "You are not allowed to print this report"
-msgstr "Bạn không được phép in báo cáo này"
+msgstr ""
-#: public/js/frappe/views/communication.js:673
+#: frappe/public/js/frappe/views/communication.js:781
msgid "You are not allowed to send emails related to this document"
-msgstr "Bạn không được phép gửi email liên quan đến tài liệu này"
+msgstr ""
-#: website/doctype/web_form/web_form.py:463
+#: frappe/website/doctype/web_form/web_form.py:569
msgid "You are not allowed to update this Web Form Document"
-msgstr "Bạn không được phép cập nhật"
+msgstr ""
-#: public/js/frappe/request.js:35
+#: frappe/public/js/frappe/request.js:37
msgid "You are not connected to Internet. Retry after sometime."
-msgstr "Bạn không kết nối Internet. Thử lại sau khi."
+msgstr ""
-#: public/js/frappe/web_form/webform_script.js:22
+#: frappe/public/js/frappe/web_form/webform_script.js:22
msgid "You are not permitted to access this page without login."
msgstr ""
-#: www/app.py:25
+#: frappe/www/app.py:27
msgid "You are not permitted to access this page."
-msgstr "Bạn không được phép truy cập vào trang này."
-
-#: __init__.py:834
-msgid "You are not permitted to access this resource."
msgstr ""
-#: 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 "Bây giờ bạn đang theo dõi tài liệu này. Bạn sẽ nhận được cập nhật hàng ngày qua email. Bạn có thể thay đổi điều này trong Cài đặt người dùng."
+#: frappe/__init__.py:669
+msgid "You are not permitted to access this resource. Login to access"
+msgstr ""
-#: core/doctype/installed_applications/installed_applications.py:59
+#: 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:82
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
-#: email/doctype/email_account/email_account.js:221
+#: frappe/email/doctype/email_account/email_account.js:284
msgid "You are selecting Sync Option as ALL, It will resync all read as well as unread message from server. This may also cause the duplication of Communication (emails)."
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:413
+#: frappe/public/js/frappe/form/footer/form_timeline.js:414
msgctxt "Form timeline"
msgid "You attached {0}"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:741
+#: frappe/printing/page/print_format_builder/print_format_builder.js:749
msgid "You can add dynamic properties from the document by using Jinja templating."
-msgstr "Bạn có thể thêm các thuộc tính đa năng từ các tài liệu bằng cách sử dụng khuôn mẫu Jinja."
+msgstr ""
-#: templates/emails/new_user.html:22
+#: frappe/printing/doctype/letter_head/letter_head.js:32
+msgid "You can also access wkhtmltopdf variables (valid only in PDF print):"
+msgstr ""
+
+#: frappe/templates/emails/new_user.html:22
msgid "You can also copy-paste following link in your browser"
msgstr ""
-#: templates/emails/download_data.html:9
+#: frappe/templates/emails/download_data.html:9
msgid "You can also copy-paste this "
-msgstr "Bạn cũng có thể sao chép-dán này"
+msgstr ""
-#: templates/emails/delete_data_confirmation.html:11
+#: frappe/templates/emails/delete_data_confirmation.html:11
msgid "You can also copy-paste this {0} to your browser"
-msgstr "Bạn cũng có thể sao chép-dán {0} này vào trình duyệt của mình"
+msgstr ""
-#: public/js/frappe/logtypes.js:21
+#: frappe/core/page/permission_manager/permission_manager_help.html:17
+msgid "You can change Submitted documents by cancelling them and then, amending them."
+msgstr ""
+
+#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:199
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:194
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: core/doctype/file/file.py:684
+#: frappe/model/delete_doc.py:136
+msgid "You can disable this {0} instead of deleting it."
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:736
msgid "You can increase the limit from System Settings."
msgstr ""
-#: utils/synchronization.py:48
+#: frappe/utils/synchronization.py:48
msgid "You can manually remove the lock if you think it's safe: {}"
msgstr ""
-#: public/js/frappe/form/controls/markdown_editor.js:74
+#: frappe/public/js/frappe/form/controls/markdown_editor.js:75
msgid "You can only insert images in Markdown fields"
msgstr ""
-#: core/doctype/user_type/user_type.py:103
+#: frappe/public/js/frappe/list/bulk_operations.js:42
+msgid "You can only print upto {0} documents at a time"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:104
msgid "You can only set the 3 custom doctypes in the Document Types table."
msgstr ""
-#: handler.py:226
-msgid "You can only upload JPG, PNG, PDF, TXT or Microsoft documents."
+#: frappe/handler.py:182
+msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents."
msgstr ""
-#: core/doctype/data_export/exporter.py:201
+#: frappe/core/doctype/data_export/exporter.py:199
msgid "You can only upload upto 5000 records in one go. (may be less in some cases)"
-msgstr "Bạn chỉ có thể tải lên tối đa 5000 bản ghi trong một lệnh. (Có thể ít hơn trong một số trường hợp)"
+msgstr ""
-#: desk/query_report.py:336
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "You can select one from the following,"
+msgstr ""
+
+#. Description of the 'Rate limit for email link login' (Int) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "You can set a high value here if multiple users will be logging in from the same network."
+msgstr ""
+
+#: frappe/desk/query_report.py:343
msgid "You can try changing the filters of your report."
-msgstr "Bạn có thể thử thay đổi các bộ lọc của báo cáo của bạn."
+msgstr ""
-#: public/js/frappe/form/link_selector.js:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "You can use Customize Form to set levels on fields."
+msgstr ""
+
+#: frappe/public/js/frappe/form/link_selector.js:30
msgid "You can use wildcard %"
msgstr ""
-#: custom/doctype/customize_form/customize_form.py:387
+#: frappe/custom/doctype/customize_form/customize_form.py:389
msgid "You can't set 'Options' for field {0}"
-msgstr "Bạn không thể đặt 'Tùy chọn' cho trường {0}"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:391
+#: frappe/custom/doctype/customize_form/customize_form.py:393
msgid "You can't set 'Translatable' for field {0}"
-msgstr "Bạn không thể đặt 'Có thể dịch được' cho trường {0}"
+msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:74
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:74
msgctxt "Form timeline"
msgid "You cancelled this document"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:61
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:61
msgctxt "Form timeline"
msgid "You cancelled this document {1}"
msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.py:417
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:417
msgid "You cannot create a dashboard chart from single DocTypes"
-msgstr "Bạn không thể tạo biểu đồ trang tổng quan từ một DocTypes"
+msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:44
-msgid "You cannot give review points to yourself"
-msgstr "Bạn không thể đưa ra điểm đánh giá cho chính mình"
-
-#: custom/doctype/customize_form/customize_form.py:383
+#: frappe/custom/doctype/customize_form/customize_form.py:385
msgid "You cannot unset 'Read Only' for field {0}"
-msgstr "Bạn không thể bỏ 'Chỉ xem \"cho đoạn {0}"
+msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:121
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125
msgid "You changed the value of {0}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:110
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114
msgid "You changed the value of {0} {1}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:183
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:191
msgid "You changed the values for {0}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:172
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:180
msgid "You changed the values for {0} {1}"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:442
+#: frappe/public/js/frappe/form/footer/form_timeline.js:443
msgctxt "Form timeline"
msgid "You changed {0} to {1}"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:138
-#: public/js/frappe/form/sidebar/form_sidebar.js:106
+#: frappe/public/js/frappe/form/footer/form_timeline.js:140
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:94
msgid "You created this"
msgstr ""
-#: client.py:430
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247
+msgctxt "Form timeline"
+msgid "You created this document {0}"
+msgstr ""
+
+#: frappe/client.py:417
msgid "You do not have Read or Select Permissions for {}"
msgstr ""
-#: public/js/frappe/request.js:174
+#: frappe/public/js/frappe/request.js:177
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
-msgstr "Bạn không có đủ quyền truy cập tài nguyên này. Hãy liên hệ với quản lý của bạn để có được quyền truy cập."
-
-#: app.py:355
-msgid "You do not have enough permissions to complete the action"
-msgstr "Bạn không có đủ quyền để hoàn thành hành động"
-
-#: public/js/frappe/form/sidebar/review.js:91
-msgid "You do not have enough points"
-msgstr "Bạn không có đủ điểm"
-
-#: social/doctype/energy_point_log/energy_point_log.py:296
-msgid "You do not have enough review points"
-msgstr "Bạn không có đủ điểm đánh giá"
-
-#: www/printview.py:369
-msgid "You do not have permission to view this document"
msgstr ""
-#: public/js/frappe/form/form.js:979
+#: frappe/app.py:368
+msgid "You do not have enough permissions to complete the action"
+msgstr ""
+
+#: frappe/desk/query_report.py:838
+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 "Bạn không có quyền hủy tất cả các tài liệu được liên kết."
+msgstr ""
-#: desk/query_report.py:39
+#: frappe/desk/query_report.py:42
msgid "You don't have access to Report: {0}"
-msgstr "Bạn không có quyền truy cập vào báo: {0}"
+msgstr ""
-#: website/doctype/web_form/web_form.py:699
+#: frappe/website/doctype/web_form/web_form.py:772
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: utils/response.py:278
+#: frappe/utils/response.py:286 frappe/utils/response.py:290
msgid "You don't have permission to access this file"
-msgstr "Bạn không có quyền truy cập tập tin này"
+msgstr ""
-#: desk/query_report.py:45
+#: frappe/desk/query_report.py:48
msgid "You don't have permission to get a report on: {0}"
-msgstr "Bạn không có quyền nhận bản báo cáo về: {0}"
+msgstr ""
-#: website/doctype/web_form/web_form.py:167
+#: frappe/website/doctype/web_form/web_form.py:175
msgid "You don't have the permissions to access this document"
-msgstr "Bạn không có quyền truy cập vào tài liệu này"
+msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:156
-msgid "You gained {0} point"
-msgstr "Bạn đã đạt được {0} điểm"
-
-#: social/doctype/energy_point_log/energy_point_log.py:158
-msgid "You gained {0} points"
-msgstr "Bạn đã đạt được {0} điểm"
-
-#: templates/emails/new_message.html:1
+#: frappe/templates/emails/new_message.html:1
msgid "You have a new message from: "
-msgstr "Bạn có một tin nhắn mới từ:"
+msgstr ""
-#: handler.py:123
+#: frappe/handler.py:118
msgid "You have been successfully logged out"
-msgstr "Bạn đã đăng nhập thành công ra"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:240
+#: frappe/custom/doctype/customize_form/customize_form.py:244
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
-#: public/js/frappe/list/bulk_operations.js:347
+#: frappe/public/js/frappe/list/bulk_operations.js:412
msgid "You have not entered a value. The field will be set to empty."
msgstr ""
-#: templates/includes/likes/likes.py:31
+#: frappe/templates/includes/likes/likes.py:31
msgid "You have received a ❤️ like on your blog post"
msgstr ""
-#: twofactor.py:455
+#: frappe/twofactor.py:432
msgid "You have to enable Two Factor Auth from System Settings."
msgstr ""
-#: public/js/frappe/model/create_new.js:332
+#: frappe/public/js/frappe/model/create_new.js:328
msgid "You have unsaved changes in this form. Please save before you continue."
-msgstr "Bạn có thay đổi chưa được lưu trong mẫu này. Xin vui lòng lưu trước khi tiếp tục."
+msgstr ""
-#: core/doctype/log_settings/log_settings.py:127
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:50
+msgid "You have unseen notifications"
+msgstr ""
+
+#: frappe/core/doctype/log_settings/log_settings.py:125
msgid "You have unseen {0}"
-msgstr "Bạn có {0} không nhìn thấy"
+msgstr ""
-#: public/js/frappe/list/list_view.js:468
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:192
+msgid "You haven't added any Dashboard Charts or Number Cards yet."
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:498
msgid "You haven't created a {0} yet"
msgstr ""
-#: rate_limiter.py:150
+#: frappe/rate_limiter.py:166
msgid "You hit the rate limit because of too many requests. Please try after sometime."
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:149
-#: public/js/frappe/form/sidebar/form_sidebar.js:95
+#: frappe/public/js/frappe/form/footer/form_timeline.js:151
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103
msgid "You last edited this"
msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:308
+#: frappe/public/js/frappe/widgets/widget_dialog.js:339
msgid "You must add atleast one link."
msgstr ""
-#: website/doctype/web_form/web_form.py:669
+#: frappe/website/doctype/web_form/web_form.py:768
msgid "You must be logged in to use this form."
msgstr ""
-#: website/doctype/web_form/web_form.py:503
+#: frappe/website/doctype/web_form/web_form.py:609
msgid "You must login to submit this form"
-msgstr "Bạn phải đăng nhập để trình duyệt mẫu này"
+msgstr ""
-#: desk/doctype/workspace/workspace.py:69
+#: frappe/model/document.py:357
+msgid "You need the '{0}' permission on {1} {2} to perform this action."
+msgstr ""
+
+#: frappe/desk/doctype/workspace/workspace.py:127
+msgid "You need to be Workspace Manager to delete a public workspace."
+msgstr ""
+
+#: frappe/desk/doctype/workspace/workspace.py:76
msgid "You need to be Workspace Manager to edit this document"
msgstr ""
-#: website/doctype/web_form/web_form.py:90
+#: frappe/www/attribution.py:16
+msgid "You need to be a system user to access this page."
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.py:94
msgid "You need to be in developer mode to edit a Standard Web Form"
-msgstr "Bạn cần phải ở trong chế độ nhà phát triển để sửa một mẫu Tiêu chuẩn web"
+msgstr ""
-#: utils/response.py:259
+#: frappe/utils/response.py:275
msgid "You need to be logged in and have System Manager Role to be able to access backups."
-msgstr "Bạn cần phải đăng nhập và có vai trò là System Manager để có thể truy cập vào các bản sao lưu."
+msgstr ""
-#: www/me.py:13 www/third_party_apps.py:10
+#: frappe/www/me.py:13 frappe/www/third_party_apps.py:10
msgid "You need to be logged in to access this page"
-msgstr "Bạn cần phải đăng nhập để truy cập trang này"
+msgstr ""
-#: website/doctype/web_form/web_form.py:158
+#: frappe/website/doctype/web_form/web_form.py:164
msgid "You need to be logged in to access this {0}."
-msgstr "Bạn cần phải đăng nhập để truy cập {0} này."
+msgstr ""
-#: www/login.html:73
+#: frappe/public/js/frappe/widgets/links_widget.js:63
+msgid "You need to create these first: "
+msgstr ""
+
+#: frappe/www/login.html:76
msgid "You need to enable JavaScript for your app to work."
-msgstr "Bạn cần kích hoạt JavaScript để ứng dụng của bạn hoạt động."
+msgstr ""
-#: core/doctype/docshare/docshare.py:62
+#: frappe/core/doctype/docshare/docshare.py:62
msgid "You need to have \"Share\" permission"
-msgstr "Bạn cần phải có quyền cho phép \"chia sẻ \""
+msgstr ""
-#: utils/print_format.py:156
+#: frappe/utils/print_format.py:268
msgid "You need to install pycups to use this feature!"
-msgstr "Bạn cần cài đặt pycups để sử dụng tính năng này!"
+msgstr ""
-#: email/doctype/email_account/email_account.py:140
+#: frappe/core/doctype/recorder/recorder.js:38
+msgid "You need to select indexes you want to add first."
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:160
msgid "You need to set one IMAP folder for {0}"
msgstr ""
-#: model/rename_doc.py:385
-msgid "You need write permission to rename"
-msgstr "Bạn cần có quyền sửa để đổi tên"
+#: frappe/model/rename_doc.py:391
+msgid "You need write permission on {0} {1} to merge"
+msgstr ""
-#: client.py:458
+#: frappe/model/rename_doc.py:386
+msgid "You need write permission on {0} {1} to rename"
+msgstr ""
+
+#: frappe/client.py:449
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:418
+#: frappe/public/js/frappe/form/footer/form_timeline.js:419
msgctxt "Form timeline"
msgid "You removed attachment {0}"
msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:525
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:520
msgid "You seem good to go!"
-msgstr "Bạn có vẻ tốt để đi!"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:29
+#: frappe/templates/includes/contact.js:20
+msgid "You seem to have written your name instead of your email. Please enter a valid email address so that we can get back."
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:31
msgid "You selected Draft or Cancelled documents"
-msgstr "Bạn đã chọn Bản nháp hoặc đã hủy các tài liệu"
+msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:48
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:48
msgctxt "Form timeline"
msgid "You submitted this document"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:35
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:35
msgctxt "Form timeline"
msgid "You submitted this document {0}"
msgstr ""
-#: public/js/frappe/form/sidebar/document_follow.js:144
+#: frappe/public/js/frappe/form/sidebar/document_follow.js:144
msgid "You unfollowed this document"
-msgstr "Bạn đã bỏ theo dõi tài liệu này"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:182
+#: frappe/public/js/frappe/form/footer/form_timeline.js:183
msgid "You viewed this"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:385
+#: frappe/public/js/frappe/desk.js:543
+msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
+msgstr ""
+
+#: frappe/core/doctype/prepared_report/prepared_report.js:57
+msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download."
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:397
msgid "Your Country"
-msgstr "Quốc gia của bạn"
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:377
+#: frappe/desk/page/setup_wizard/setup_wizard.js:389
msgid "Your Language"
-msgstr "Ngôn ngữ của bạn"
+msgstr ""
-#: templates/includes/comments/comments.html:21
+#: frappe/templates/includes/comments/comments.html:21
msgid "Your Name"
-msgstr "Tên của bạn"
+msgstr ""
-#: patches/v14_0/update_workspace2.py:34
+#: frappe/public/js/frappe/list/bulk_operations.js:132
+msgid "Your PDF is ready for download"
+msgstr ""
+
+#: frappe/patches/v14_0/update_workspace2.py:34
msgid "Your Shortcuts"
-msgstr "Các phím tắt của bạn"
+msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:141
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:147
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:145
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:151
msgid "Your account has been deleted"
msgstr ""
-#: auth.py:465
+#: frappe/auth.py:514
msgid "Your account has been locked and will resume after {0} seconds"
-msgstr "Tài khoản của bạn đã bị khóa và sẽ tiếp tục sau {0} giây"
+msgstr ""
-#: desk/form/assign_to.py:268
+#: frappe/desk/form/assign_to.py:279
msgid "Your assignment on {0} {1} has been removed by {2}"
-msgstr "Bài tập của bạn trên {0} {1} đã bị xóa bởi {2}"
+msgstr ""
-#: templates/pages/integrations/gcalendar-success.html:11
+#: frappe/core/doctype/file/file.js:73
+msgid "Your browser does not support the audio element."
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:55
+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 "Yêu cầu kết nối của bạn vào Lịch Google đã được chấp nhận thành công"
+msgstr ""
-#: www/contact.html:35
+#: frappe/www/contact.html:35
msgid "Your email address"
-msgstr "địa chỉ email của bạn"
+msgstr ""
-#: public/js/frappe/web_form/web_form.js:424
+#: frappe/public/js/frappe/web_form/web_form.js:428
msgid "Your form has been successfully updated"
msgstr ""
-#: templates/emails/new_user.html:6
+#: frappe/templates/emails/new_user.html:6
msgid "Your login id is"
-msgstr "Id đăng nhập của bạn là"
+msgstr ""
-#: www/update-password.html:165
+#: frappe/www/update-password.html:167
msgid "Your new password has been set successfully."
msgstr ""
-#: www/update-password.html:145
+#: frappe/www/update-password.html:147
msgid "Your old password is incorrect."
msgstr ""
#. Description of the 'Email Footer Address' (Small Text) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Your organization name and address for the email footer."
-msgstr "Tên tổ chức của bạn và địa chỉ dùng cho chữ ký dưới email"
+msgstr ""
-#: templates/emails/auto_reply.html:2
+#: frappe/templates/emails/auto_reply.html:2
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
-msgstr "Chúng tôi đã nhận được yêu cầu của bạn và sẽ trả lời sớm. Nếu bạn có bất kỳ thông tin bổ sung, vui lòng trả lời email này."
+msgstr ""
-#: app.py:346
+#: frappe/app.py:361
msgid "Your session has expired, please login again to continue."
-msgstr "Phiên của bạn đã hết hạn, vui lòng đăng nhập lại để tiếp tục."
+msgstr ""
-#: templates/emails/verification_code.html:1
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:15
+msgid "Your site is undergoing maintenance or being updated."
+msgstr ""
+
+#: frappe/templates/emails/verification_code.html:1
msgid "Your verification code is {0}"
msgstr ""
-#. Success message of the Module Onboarding 'Website'
-#: website/module_onboarding/website/website.json
-msgid "Your website is all set up!"
-msgstr ""
-
-#: utils/data.py:1518
+#: frappe/utils/data.py:1547
msgid "Zero"
-msgstr "Số 0"
+msgstr ""
#. Description of the 'Only Send Records Updated in Last X Hours' (Int) field
#. in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Zero means send records updated at anytime"
-msgstr "Số 0 nghĩa là gửi các bản ghi cập nhật bất cứ lúc nào"
+msgstr ""
-#. Label of a Link field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265
+msgid "[Action taken by {0}]"
+msgstr ""
+
+#. Label of the _doctype (Link) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "_doctype"
-msgstr "_doctype"
+msgstr ""
-#. Label of a Link field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#. Label of the _report (Link) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "_report"
-msgstr "_report"
+msgstr ""
-#: utils/background_jobs.py:94
+#: frappe/database/database.py:361
+msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
+msgstr ""
+
+#: frappe/utils/background_jobs.py:120
msgid "`job_id` paramater is required for deduplication."
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:219
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232
msgid "added rows for {0}"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "adjust"
-msgstr "điều chỉnh"
-
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "after_insert"
-msgstr "after_insert"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "align-center"
-msgstr "sắp xếp trung tâm"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "align-justify"
-msgstr "sắp xếp biện minh cho"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "align-left"
-msgstr "sắp xếp bên trái"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "align-right"
-msgstr "sắp xếp bên phải"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "amend"
-msgstr "Sửa đổi"
+msgstr ""
-#: public/js/frappe/utils/utils.js:396 utils/data.py:1528
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
msgid "and"
-msgstr "và"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "arrow-down"
-msgstr "mũi tên xuống"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "arrow-left"
-msgstr "mũi tên bên trái"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "arrow-right"
-msgstr "mũi tên bên phải"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "arrow-up"
-msgstr "mũi tên lên"
-
-#: public/js/frappe/ui/sort_selector.js:48
+#: frappe/public/js/frappe/ui/sort_selector.html:5
+#: frappe/public/js/frappe/ui/sort_selector.js:48
msgid "ascending"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "asterisk"
-msgstr "dấu"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "backward"
-msgstr "Ngược"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "ban-circle"
-msgstr "ban-circle"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "barcode"
-msgstr "mã vạch"
-
-#: model/document.py:1337
-msgid "beginning with"
-msgstr "bắt đầu bằng"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "bell"
-msgstr "chuông"
-
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "blue"
-msgstr "màu xanh da trời"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "bold"
-msgstr "Đậm"
+#: frappe/public/js/frappe/form/workflow.js:35
+msgid "by Role"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "book"
-msgstr "sách"
+#. Label of the profile (Code) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "cProfile Output"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "bookmark"
-msgstr "thẻ đánh dấu"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "briefcase"
-msgstr "cặp tài liệu"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "bullhorn"
-msgstr "loa pin"
-
-#: public/js/frappe/ui/toolbar/search_utils.js:270
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
msgid "calendar"
-msgstr "lịch"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "calendar"
-msgstr "lịch"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "camera"
-msgstr "máy ảnh"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "cancel"
-msgstr "Hủy bỏ"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "canceled"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "certificate"
-msgstr "Giấy chứng nhận"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "check"
-msgstr "kiểm tra"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "chevron-down"
-msgstr "Chevron xuống"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "chevron-left"
-msgstr "Chevron bên trái"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "chevron-right"
-msgstr "Chevron phải"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "chevron-up"
-msgstr "Chevron-up"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "circle-arrow-down"
-msgstr "vòng tròn mũi tên xuống"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "circle-arrow-left"
-msgstr "vòng tròn mũi tên bên trái"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "circle-arrow-right"
-msgstr "vòng tròn mũi tên bên phải"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "circle-arrow-up"
-msgstr "vòng tròn mũi tên lên"
-
-#: templates/includes/list/filters.html:19
+#: frappe/templates/includes/list/filters.html:19
msgid "clear"
-msgstr "trong sáng"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "cog"
-msgstr "răng cưa"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "comment"
-msgstr "bình luận"
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:34
+msgid "commented"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "create"
-msgstr "Tạo"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "cyan"
msgstr ""
-#: public/js/frappe/utils/utils.js:1113
+#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
-msgstr "d"
-
-#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "darkgrey"
-msgstr "màu xám đen"
-
-#: core/page/dashboard_view/dashboard_view.js:65
-msgid "dashboard"
-msgstr "bảng điều khiển"
-
-#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "dd-mm-yyyy"
-msgstr "ngày-tháng-năm"
-
-#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "dd.mm.yyyy"
-msgstr "ngày.tháng.năm"
-
-#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "dd/mm/yyyy"
-msgstr "ngày/tháng/năm"
-
-#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
-msgid "default"
msgstr ""
+#. Option for the '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'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "default"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "deferred"
msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "delete"
-msgstr "Xóa"
+msgstr ""
-#: public/js/frappe/ui/sort_selector.js:48
+#: frappe/public/js/frappe/ui/sort_selector.html:5
+#: frappe/public/js/frappe/ui/sort_selector.js:48
msgid "descending"
msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:163
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163
msgid "document type..., e.g. customer"
-msgstr "loại tài liệu ..., ví dụ: khách hàng"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "download"
-msgstr "Đã tải xuống"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "download-alt"
-msgstr "tải-alt"
+msgstr ""
#. Description of the 'Email Account Name' (Data) field in DocType 'Email
#. Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
-msgstr "ví dụ như \"Hỗ trợ \",\" bán hàng \",\" Jerry Yang \""
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:183
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:183
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
-msgstr "ví dụ: (55 + 434) / 4 hoặc = Math.sin (Math.PI / 2) ..."
+msgstr ""
#. Description of the 'Incoming Server' (Data) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "e.g. pop.gmail.com / imap.gmail.com"
-msgstr "ví dụ: pop.gmail.com / imap.gmail.com"
-
#. Description of the 'Incoming Server' (Data) field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "e.g. pop.gmail.com / imap.gmail.com"
-msgstr "ví dụ: pop.gmail.com / imap.gmail.com"
+msgstr ""
#. Description of the 'Default Incoming' (Check) field in DocType 'Email
#. Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "e.g. replies@yourcomany.com. All replies will come to this inbox."
-msgstr "ví dụ như replies@yourcomany.com. Tất cả trả lời sẽ đến hộp thư này."
+msgstr ""
#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "e.g. smtp.gmail.com"
-msgstr "ví dụ: smtp.gmail.com"
-
#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "e.g. smtp.gmail.com"
-msgstr "ví dụ: smtp.gmail.com"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:98
+#: frappe/custom/doctype/custom_field/custom_field.js:98
msgid "e.g.:"
-msgstr "ví dụ như:"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "edit"
-msgstr "Sửa"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "eject"
-msgstr "đào thải"
+#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "emacs"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
-msgid "email"
-msgstr "e-mail"
-
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "email"
-msgstr "e-mail"
+msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305
msgid "email inbox"
-msgstr "Hộp thư đến email"
+msgstr ""
-#: permissions.py:411 permissions.py:422
-#: public/js/frappe/form/controls/link.js:479
+#: frappe/permissions.py:403 frappe/permissions.py:414
+#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
-msgstr "trống"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "envelope"
-msgstr "phong bì"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "exclamation-sign"
-msgstr "chấm than-dấu"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "export"
-msgstr "Xuất"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "eye-close"
-msgstr "mắt gần"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "eye-open"
-msgstr "mắt mở"
+msgstr ""
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "facebook"
-msgstr "Facebook"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "facetime-video"
-msgstr "FaceTime video"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "failed"
msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "fairlogin"
-msgstr "fairlogin"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "fast-backward"
-msgstr "nhanh chóng lạc hậu"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "fast-forward"
-msgstr "nhanh về phía trước"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "file"
-msgstr "file"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "film"
-msgstr "quay phim"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "filter"
-msgstr "bộ lọc"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "finished"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "fire"
-msgstr "lửa"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "flag"
-msgstr "cờ"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "folder-close"
-msgstr "thư mục đóng"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "folder-open"
-msgstr "thư mục mở"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "font"
-msgstr "Phông chữ"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "forward"
-msgstr "về phía trước"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "fullscreen"
-msgstr "toàn màn hình"
-
-#: public/js/frappe/utils/energy_point_utils.js:61
-msgid "gained by {0} via automatic rule {1}"
-msgstr "đạt được {0} thông qua quy tắc tự động {1}"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "gift"
-msgstr "quà"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "glass"
-msgstr "ly"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "globe"
-msgstr "toàn cầu"
-
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "gray"
msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "green"
-msgstr "màu xanh lá"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "grey"
msgstr ""
-#: utils/backups.py:375
+#: frappe/utils/backups.py:399
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: public/js/frappe/utils/utils.js:1117
+#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
-msgstr "h"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "hand-down"
-msgstr "tay xuống"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "hand-left"
-msgstr "tay trái"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "hand-right"
-msgstr "tay phải"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "hand-up"
-msgstr "tay lên"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "hdd"
-msgstr "hdd"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "headphones"
-msgstr "tai nghe"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "heart"
-msgstr "tim"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "home"
-msgstr "Trang Chủ"
-
-#: public/js/frappe/ui/toolbar/search_utils.js:280
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296
msgid "hub"
-msgstr "trung tâm"
+msgstr ""
-#. Label of a Data field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
+#. Label of the icon (Data) field in DocType 'Page'
+#: frappe/core/doctype/page/page.json
msgid "icon"
-msgstr "biểu tượng"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "import"
-msgstr "Nhập khẩu"
+msgstr ""
#. Description of the 'Read Time' (Int) field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "in minutes"
-msgstr "trong vài phút"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "inbox"
-msgstr "hộp thư đến"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "indent-left"
-msgstr "thụt lề trái"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "indent-right"
-msgstr "thụt lề bên phải"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "info-sign"
-msgstr "thông tin-dấu"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "italic"
-msgstr "nghiêng"
-
-#: templates/signup.html:11 www/login.html:10
+#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr ""
-#: public/js/frappe/utils/pretty_date.js:46
+#: frappe/public/js/frappe/utils/pretty_date.js:46
msgid "just now"
-msgstr "vừa mới đây"
+msgstr ""
-#: desk/desktop.py:254 desk/query_report.py:279
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
msgid "label"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "leaf"
-msgstr "lá"
-
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "light-blue"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "link"
-msgstr "liên kết"
+msgstr ""
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "linkedin"
-msgstr "liên kết"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "list"
-msgstr "danh sách"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "list"
-msgstr "danh sách"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "list-alt"
-msgstr "danh sách-alt"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "lock"
-msgstr "Khóa"
-
-#: www/third_party_apps.html:41
+#: frappe/www/third_party_apps.html:43
msgid "logged in"
-msgstr "đăng nhập"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.js:362
+msgid "login_required"
+msgstr ""
#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
-msgid "long"
-msgstr ""
-
#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "long"
msgstr ""
-#: public/js/frappe/utils/utils.js:1121
+#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
-msgstr "m"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "magnet"
-msgstr "nam châm"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "map-marker"
-msgstr "đánh dấu bản đồ"
-
-#: model/rename_doc.py:214
+#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
-msgstr "sáp nhập {0} vào {1}"
+msgstr ""
-#: website/doctype/blog_post/templates/blog_post.html:25
-#: website/doctype/blog_post/templates/blog_post_row.html:36
+#: frappe/website/doctype/blog_post/templates/blog_post.html:25
+#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36
msgid "min read"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "minus"
-msgstr "trừ"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "minus-sign"
-msgstr "dấu trừ"
-
+#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "mm-dd-yyyy"
-msgstr "mm-dd-yyyy"
+msgstr ""
+#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "mm/dd/yyyy"
-msgstr "dd / mm / yyyy"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "module"
-msgstr "mô-đun"
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:178
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:178
msgid "module name..."
-msgstr "Tên mô-đun ..."
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "move"
-msgstr "di chuyển"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "music"
-msgstr "Âm nhạc"
-
-#: public/js/frappe/ui/toolbar/search_utils.js:144
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160
msgid "new"
-msgstr "Mới"
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:158
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:158
msgid "new type of document"
-msgstr "loại tài liệu mới"
+msgstr ""
-#. Label of a Int field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the no_failed (Int) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "no failed attempts"
-msgstr "Không có cố gắng nào thất bại"
+msgstr ""
-#. Label of a Data field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. Label of the nonce (Data) field in DocType 'OAuth Authorization Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "nonce"
msgstr ""
-#: model/document.py:1336
-msgid "none of"
-msgstr "không có"
-
-#. Label of a Check field in DocType 'Reminder'
-#: automation/doctype/reminder/reminder.json
-msgctxt "Reminder"
+#. Label of the notified (Check) field in DocType 'Reminder'
+#: frappe/automation/doctype/reminder/reminder.json
msgid "notified"
msgstr ""
-#: public/js/frappe/utils/pretty_date.js:25
+#: frappe/public/js/frappe/utils/pretty_date.js:25
msgid "now"
-msgstr "hiện nay"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "off"
-msgstr "tắt"
+#: frappe/public/js/frappe/form/grid_pagination.js:116
+msgid "of"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "ok"
-msgstr "ok"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "ok-circle"
-msgstr "ok-vòng tròn"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "ok-sign"
-msgstr "ok-dấu"
-
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the old_parent (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "old_parent"
-msgstr "old_parent"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_cancel"
-msgstr "on_cancel"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_change"
-msgstr "on_change"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_submit"
-msgstr "on_submit"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_trash"
-msgstr "on_trash"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_update"
-msgstr "on_update"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_update_after_submit"
-msgstr "on_update_after_submit"
+msgstr ""
-#: model/document.py:1335
-msgid "one of"
-msgstr "một trong"
-
-#: utils/data.py:1535
-msgid "only."
-msgstr "chẵn"
-
-#: public/js/frappe/utils/utils.js:393 www/login.html:87
+#: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90
+#: frappe/www/login.py:112
msgid "or"
-msgstr "hoặc"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "orange"
-msgstr "trái cam"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "page"
-msgstr "trang"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "pause"
-msgstr "tạm ngừng"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "pencil"
-msgstr "bút chì"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "picture"
-msgstr "tranh"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "pink"
msgstr ""
#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth
#. Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "plain"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "plane"
-msgstr "phi cơ"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "play"
-msgstr "chơi"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "play-circle"
-msgstr "chơi vòng tròn"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "plus"
-msgstr "thêm"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "plus-sign"
-msgstr "dấu cộng"
-
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "print"
-msgstr "in"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "print"
-msgstr "in"
-
-#. Label of a HTML field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#. Label of the processlist (HTML) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
msgid "processlist"
msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "purple"
-msgstr "màu tím"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "qrcode"
-msgstr "qrcode"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "query-report"
-msgstr "truy vấn báo cáo"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "question-sign"
-msgstr "câu hỏi-dấu"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "queued"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "random"
-msgstr "ngẫu nhiên"
-
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "read"
-msgstr "Đọc"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "red"
-msgstr "màu đỏ"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "refresh"
-msgstr "Làm tươi"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "remove"
-msgstr "tẩy"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "remove-circle"
-msgstr "loại bỏ vòng tròn"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "remove-sign"
-msgstr "Dấu hiệu loại bỏ-"
-
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:221
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234
msgid "removed rows for {0}"
msgstr ""
-#: model/rename_doc.py:217
+#: frappe/model/rename_doc.py:217
msgid "renamed from {0} to {1}"
-msgstr "đổi tên từ {0} đến {1}"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "repeat"
-msgstr "nói lại"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "report"
-msgstr "Báo cáo"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "resize-full"
-msgstr "thay đổi kích thước đầy"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "resize-horizontal"
-msgstr "thay đổi kích thước-ngang"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "resize-small"
-msgstr "thay đổi kích thước nhỏ"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "resize-vertical"
-msgstr "thay đổi kích thước thẳng đứng"
-
-#. Label of a HTML field in DocType 'Custom Role'
-#: core/doctype/custom_role/custom_role.json
-msgctxt "Custom Role"
+#. Label of the response (HTML) field in DocType 'Custom Role'
+#: frappe/core/doctype/custom_role/custom_role.json
msgid "response"
-msgstr "phản ứng"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document.py:60
+#: frappe/core/doctype/deleted_document/deleted_document.py:61
msgid "restored {0} as {1}"
-msgstr "phục hồi {0} là {1}"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "retweet"
-msgstr "gõ tweet lại"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "road"
-msgstr "đường"
-
-#: public/js/frappe/utils/utils.js:1125
+#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
-msgstr "S"
+msgstr ""
#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth
#. Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "s256"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "scheduled"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "screenshot"
-msgstr "ảnh chụp màn hình"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "search"
-msgstr "Tìm kiếm"
-
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "select"
-msgstr "Chọn"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "share"
-msgstr "phần"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "share"
-msgstr "phần"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "share-alt"
-msgstr "cổ alt"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "shopping-cart"
-msgstr "mua sắm giỏ hàng"
+msgstr ""
#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
-msgid "short"
-msgstr ""
-
#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "short"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "signal"
-msgstr "tín hiệu"
-
-#: public/js/frappe/widgets/number_card_widget.js:265
+#: frappe/public/js/frappe/widgets/number_card_widget.js:298
msgid "since last month"
-msgstr "kể từ tháng trước"
+msgstr ""
-#: public/js/frappe/widgets/number_card_widget.js:264
+#: frappe/public/js/frappe/widgets/number_card_widget.js:297
msgid "since last week"
-msgstr "kể từ tuần trước"
+msgstr ""
-#: public/js/frappe/widgets/number_card_widget.js:266
+#: frappe/public/js/frappe/widgets/number_card_widget.js:299
msgid "since last year"
-msgstr "kể từ năm ngoái"
+msgstr ""
-#: public/js/frappe/widgets/number_card_widget.js:263
+#: frappe/public/js/frappe/widgets/number_card_widget.js:296
msgid "since yesterday"
-msgstr "từ hôm qua"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "star"
-msgstr "ngôi sao"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "star-empty"
-msgstr "sao - rỗng"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "started"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:194
+#: frappe/desk/page/setup_wizard/setup_wizard.js:201
msgid "starting the setup..."
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "step-backward"
-msgstr "bước lùi"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "step-forward"
-msgstr "bước về phía trước"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "stop"
-msgstr "dừng lại"
-
#. Description of the 'Group Object Class' (Data) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "string value, i.e. group"
msgstr ""
#. Description of the 'LDAP Group Member attribute' (Data) field in DocType
#. 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "string value, i.e. member"
msgstr ""
#. Description of the 'Custom Group Search' (Data) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "string value, i.e. {0} or uid={0},ou=users,dc=example,dc=com"
msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "submit"
-msgstr "Gửi"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "tag"
-msgstr "Tag"
-
-#: public/js/frappe/ui/toolbar/awesome_bar.js:173
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:173
msgid "tag name..., e.g. #tag"
-msgstr "tên thẻ ..., ví dụ #tag"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "tags"
-msgstr "thẻ"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "tasks"
-msgstr "nhiệm vụ"
-
-#: public/js/frappe/ui/toolbar/awesome_bar.js:168
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:168
msgid "text in document type"
-msgstr "văn bản trong loại tài liệu"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "text-height"
-msgstr "chiều cao văn bản"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "text-width"
-msgstr "chiều rộng văn bản"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "th"
-msgstr "th"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "th-large"
-msgstr "th - rộng"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "th-list"
-msgstr "th-danh sách"
-
-#: public/js/frappe/form/controls/data.js:35
+#: frappe/public/js/frappe/form/controls/data.js:36
msgid "this form"
msgstr ""
-#: tests/test_translate.py:158
+#: frappe/tests/test_translate.py:174
msgid "this shouldn't break"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "thumbs-down"
-msgstr "trỏ xuống"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "thumbs-up"
-msgstr "trỏ lên"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "time"
-msgstr "thời gian"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "tint"
-msgstr "gạch sọc"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "trash"
-msgstr "thùng rác"
-
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "twitter"
-msgstr "twitter"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "upload"
-msgstr "tải lên"
+#: frappe/public/js/frappe/change_log.html:7
+msgid "updated to {0}"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:340
+#: frappe/public/js/frappe/ui/filters/filter.js:361
msgid "use % as wildcard"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "user"
-msgstr "Người dùng"
-
-#: public/js/frappe/ui/filters/filter.js:339
+#: frappe/public/js/frappe/ui/filters/filter.js:360
msgid "values separated by commas"
-msgstr "các giá trị cách nhau bằng dấu phẩy"
+msgstr ""
-#. Label of a HTML field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
+#. Label of the version_table (HTML) field in DocType 'Audit Trail'
+#: frappe/core/doctype/audit_trail/audit_trail.json
msgid "version_table"
msgstr ""
-#: automation/doctype/assignment_rule/assignment_rule.py:386
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:382
msgid "via Assignment Rule"
-msgstr "thông qua Quy tắc phân công"
+msgstr ""
-#: core/doctype/data_import/importer.py:259
-#: core/doctype/data_import/importer.py:280
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242
+msgid "via Auto Repeat"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:271
+#: frappe/core/doctype/data_import/importer.py:292
msgid "via Data Import"
-msgstr "thông qua nhập dữ liệu"
+msgstr ""
#. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/desk/doctype/event/event.json
msgid "via Google Meet"
msgstr ""
-#: email/doctype/notification/notification.py:214
+#: frappe/email/doctype/notification/notification.py:361
msgid "via Notification"
-msgstr "thông qua thông báo"
+msgstr ""
-#: public/js/frappe/utils/energy_point_utils.js:46
-msgid "via automatic rule {0} on {1}"
-msgstr "thông qua quy tắc tự động {0} trên {1}"
-
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:17
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:17
msgid "via {0}"
-msgstr "qua {0}"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "volume-down"
-msgstr "giảm âm lượng"
+#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "vim"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "volume-off"
-msgstr "tắt âm lượng"
+#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "vscode"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "volume-up"
-msgstr "tăng âm lượng"
-
-#: templates/includes/oauth_confirmation.html:5
+#: frappe/templates/includes/oauth_confirmation.html:5
msgid "wants to access the following details from your account"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "warning-sign"
-msgstr "Dấu hiệu cảnh báo"
-
#. Description of the 'Popover Element' (Check) field in DocType 'Form Tour
#. Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "when clicked on element it will focus popover if present."
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "wrench"
-msgstr "cờ lê"
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "wkhtmltopdf"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:622
+msgid "wkhtmltopdf 0.12.x (with patched qt)."
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "write"
-msgstr "Viết"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "yellow"
-msgstr "màu vàng"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:58
+#: frappe/public/js/frappe/utils/pretty_date.js:58
msgid "yesterday"
-msgstr "hôm qua"
+msgstr ""
+#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "yyyy-mm-dd"
-msgstr "yyyy-mm-dd"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "zoom-in"
-msgstr "Phóng to"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "zoom-out"
-msgstr "Thu nhỏ"
-
-#: desk/doctype/event/event.js:83
-#: integrations/doctype/google_drive/google_drive.js:19
+#: frappe/desk/doctype/event/event.js:87
+#: frappe/public/js/frappe/form/footer/form_timeline.js:547
msgid "{0}"
msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:81
-#: public/js/frappe/ui/toolbar/search_utils.js:82
-msgid "{0} ${label}"
-msgstr ""
-
-#: public/js/frappe/ui/toolbar/search_utils.js:177
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193
msgid "{0} ${skip_list ? \"\" : type}"
msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198
msgid "{0} ${type}"
msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:77
-#: public/js/frappe/views/gantt/gantt_view.js:54
+#: frappe/public/js/frappe/data_import/data_exporter.js:80
+#: frappe/public/js/frappe/views/gantt/gantt_view.js:54
msgid "{0} ({1})"
msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:76
+#: frappe/public/js/frappe/data_import/data_exporter.js:77
msgid "{0} ({1}) (1 row mandatory)"
-msgstr "{0} ({1}) (1 hàng bắt buộc)"
+msgstr ""
-#: public/js/frappe/views/gantt/gantt_view.js:53
+#: frappe/public/js/frappe/views/gantt/gantt_view.js:53
msgid "{0} ({1}) - {2}%"
msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:346
-#: public/js/frappe/ui/toolbar/awesome_bar.js:349
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:377
msgid "{0} = {1}"
msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:29
+#: frappe/public/js/frappe/views/calendar/calendar.js:30
msgid "{0} Calendar"
-msgstr "{0} Lịch"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:544
+#: frappe/public/js/frappe/views/reports/report_view.js:564
msgid "{0} Chart"
-msgstr "{0} Biểu đồ"
+msgstr ""
-#: core/page/dashboard_view/dashboard_view.js:67
-#: public/js/frappe/ui/toolbar/search_utils.js:331
-#: public/js/frappe/ui/toolbar/search_utils.js:332
-#: public/js/frappe/utils/utils.js:929
-#: public/js/frappe/views/dashboard/dashboard_view.js:10
+#: frappe/core/page/dashboard_view/dashboard_view.js:67
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
-msgstr "{0} Bảng điều khiển"
+msgstr ""
-#: public/js/frappe/form/grid_row.js:456
-#: public/js/frappe/list/list_settings.js:224
-#: public/js/frappe/views/kanban/kanban_settings.js:178
+#: frappe/public/js/frappe/form/grid_row.js:470
+#: frappe/public/js/frappe/list/list_settings.js:227
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
-msgstr "{0} Trường"
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:360
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:376
msgid "{0} Google Calendar Events synced."
-msgstr "{0} Sự kiện Lịch Google được đồng bộ hóa."
+msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.py:190
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:193
msgid "{0} Google Contacts synced."
-msgstr "{0} Danh bạ Google được đồng bộ hóa."
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:463
+#: frappe/public/js/frappe/form/footer/form_timeline.js:464
msgid "{0} Liked"
msgstr ""
-#: public/js/frappe/utils/utils.js:923
-#: public/js/frappe/widgets/chart_widget.js:317 www/list.html:4 www/list.html:8
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:83
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:84
+#: frappe/public/js/frappe/widgets/chart_widget.js:358 frappe/www/list.html:4
+#: frappe/www/list.html:8
msgid "{0} List"
-msgstr "{0} Danh sách"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:37
+#: frappe/public/js/frappe/utils/pretty_date.js:37
msgid "{0} M"
-msgstr "{0} M"
+msgstr ""
-#: public/js/frappe/views/map/map_view.js:14
+#: frappe/public/js/frappe/views/map/map_view.js:14
msgid "{0} Map"
msgstr ""
-#: public/js/frappe/utils/utils.js:926
-msgid "{0} Modules"
-msgstr "{0} Mô-đun"
-
-#: public/js/frappe/form/quick_entry.js:113
+#: frappe/public/js/frappe/form/quick_entry.js:122
msgid "{0} Name"
-msgstr "{0} Tên"
+msgstr ""
-#: model/base_document.py:1027
+#: frappe/model/base_document.py:1149
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
-#: public/js/frappe/utils/utils.js:920
-#: public/js/frappe/widgets/chart_widget.js:325
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/widgets/chart_widget.js:366
msgid "{0} Report"
-msgstr "{0} Báo cáo"
+msgstr ""
-#: public/js/frappe/list/list_settings.js:32
-#: public/js/frappe/views/kanban/kanban_settings.js:26
+#: frappe/public/js/frappe/views/reports/query_report.js:952
+msgid "{0} Reports"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_settings.js:32
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:26
msgid "{0} Settings"
-msgstr "{0} Cài đặt"
+msgstr ""
-#: public/js/frappe/views/treeview.js:139
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:87
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:88
+#: frappe/public/js/frappe/views/treeview.js:152
msgid "{0} Tree"
-msgstr "{0} Cây"
-
-#: public/js/frappe/list/base_list.js:206
-msgid "{0} View"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:126
-#: public/js/frappe/form/sidebar/form_sidebar.js:86
+#: frappe/public/js/frappe/form/footer/form_timeline.js:128
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:73
msgid "{0} Web page views"
-msgstr "{0} Lượt xem Trang"
+msgstr ""
-#: public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:91
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+msgid "{0} Workspace"
+msgstr ""
+
+#: frappe/public/js/frappe/form/link_selector.js:225
msgid "{0} added"
-msgstr "{0}đã thêm"
+msgstr ""
-#: public/js/frappe/form/controls/data.js:203
+#: frappe/public/js/frappe/form/controls/data.js:204
msgid "{0} already exists. Select another name"
-msgstr "{0} đã tồn tại. Chọn tên khác"
+msgstr ""
-#: email/doctype/email_unsubscribe/email_unsubscribe.py:37
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:36
msgid "{0} already unsubscribed"
-msgstr "{0} đã bỏ đăng ký"
+msgstr ""
-#: email/doctype/email_unsubscribe/email_unsubscribe.py:50
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49
msgid "{0} already unsubscribed for {1} {2}"
-msgstr "{0} đã hủy đăng ký cho {1} {2}"
+msgstr ""
-#: utils/data.py:1715
+#: frappe/utils/data.py:1740
msgid "{0} and {1}"
-msgstr "{0} và {1}"
-
-#: public/js/frappe/utils/energy_point_utils.js:38
-msgid "{0} appreciated on {1}"
-msgstr "{0} được đánh giá cao trên {1}"
-
-#: social/doctype/energy_point_log/energy_point_log.py:126
-#: social/doctype/energy_point_log/energy_point_log.py:163
-msgid "{0} appreciated your work on {1} with {2} point"
-msgstr "{0} đánh giá cao công việc của bạn trên {1} với {2} điểm"
-
-#: social/doctype/energy_point_log/energy_point_log.py:128
-#: social/doctype/energy_point_log/energy_point_log.py:165
-msgid "{0} appreciated your work on {1} with {2} points"
-msgstr "{0} đánh giá cao công việc của bạn trên {1} với {2} điểm"
-
-#: public/js/frappe/utils/energy_point_utils.js:53
-msgid "{0} appreciated {1}"
-msgstr "{0} đánh giá cao {1}"
-
-#: public/js/frappe/form/sidebar/review.js:148
-msgid "{0} appreciation point for {1}"
msgstr ""
-#: public/js/frappe/form/sidebar/review.js:150
-msgid "{0} appreciation points for {1}"
-msgstr ""
-
-#: public/js/frappe/form/sidebar/form_sidebar_users.js:72
+#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:72
msgid "{0} are currently {1}"
-msgstr "{0} hiện là {1}"
+msgstr ""
-#: printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:89
msgid "{0} are required"
-msgstr "{0} là bắt buộc"
+msgstr ""
-#: desk/form/assign_to.py:275
+#: frappe/desk/form/assign_to.py:286
msgid "{0} assigned a new task {1} {2} to you"
-msgstr "{0} đã giao một nhiệm vụ mới {1} {2} cho bạn"
+msgstr ""
-#: desk/doctype/todo/todo.py:48
+#: frappe/desk/doctype/todo/todo.py:48
msgid "{0} assigned {1}: {2}"
-msgstr "{0} đã giao cho {1}: {2}"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:414
+#: frappe/public/js/frappe/form/footer/form_timeline.js:415
msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:77
+#: frappe/core/doctype/system_settings/system_settings.py:149
+msgid "{0} can not be more than {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:77
msgid "{0} cancelled this document"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:68
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:68
msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: public/js/form_builder/store.js:185
+#: frappe/model/document.py:547
+msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
+msgstr ""
+
+#: frappe/public/js/form_builder/store.js:190
msgid "{0} cannot be hidden and mandatory without any default value"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:124
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128
msgid "{0} changed the value of {1}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:115
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:119
msgid "{0} changed the value of {1} {2}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:186
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:194
msgid "{0} changed the values for {1}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:177
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:185
msgid "{0} changed the values for {1} {2}"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:443
+#: frappe/public/js/frappe/form/footer/form_timeline.js:444
msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr ""
-#: website/doctype/blog_post/blog_post.py:380
+#: frappe/website/doctype/blog_post/blog_post.py:382
msgid "{0} comments"
-msgstr "{0} bình luận"
+msgstr ""
-#: public/js/frappe/views/interaction.js:261
+#: frappe/core/doctype/doctype/doctype.py:1605
+msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
+msgstr ""
+
+#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
-msgstr "Đã tạo thành công {0}"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:139
-#: public/js/frappe/form/sidebar/form_sidebar.js:107
+#: frappe/public/js/frappe/form/footer/form_timeline.js:141
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:95
msgid "{0} created this"
msgstr ""
-#: public/js/frappe/form/sidebar/review.js:154
-msgid "{0} criticism point for {1}"
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250
+msgctxt "Form timeline"
+msgid "{0} created this document {1}"
msgstr ""
-#: public/js/frappe/form/sidebar/review.js:156
-msgid "{0} criticism points for {1}"
-msgstr ""
-
-#: public/js/frappe/utils/energy_point_utils.js:41
-msgid "{0} criticized on {1}"
-msgstr "{0} bị chỉ trích vào {1}"
-
-#: social/doctype/energy_point_log/energy_point_log.py:132
-#: social/doctype/energy_point_log/energy_point_log.py:170
-msgid "{0} criticized your work on {1} with {2} point"
-msgstr "{0} đã chỉ trích công việc của bạn trên {1} với {2} điểm"
-
-#: social/doctype/energy_point_log/energy_point_log.py:134
-#: social/doctype/energy_point_log/energy_point_log.py:172
-msgid "{0} criticized your work on {1} with {2} points"
-msgstr "{0} đã chỉ trích công việc của bạn trên {1} với {2} điểm"
-
-#: public/js/frappe/utils/energy_point_utils.js:56
-msgid "{0} criticized {1}"
-msgstr "{0} bị chỉ trích {1}"
-
-#: public/js/frappe/utils/pretty_date.js:33
+#: frappe/public/js/frappe/utils/pretty_date.js:33
msgid "{0} d"
-msgstr "{0} ngày"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:60
+#: frappe/public/js/frappe/utils/pretty_date.js:60
msgid "{0} days ago"
-msgstr "{0} ngày trước"
+msgstr ""
-#: website/doctype/website_settings/website_settings.py:96
-#: website/doctype/website_settings/website_settings.py:116
+#: frappe/website/doctype/website_settings/website_settings.py:96
+#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
-msgstr "{0} không tồn tại trong dãy {1}"
+msgstr ""
-#: database/mariadb/schema.py:131 database/postgres/schema.py:184
+#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:184
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
-msgstr "{0}Lĩnh vực không thể được thiết lập là duy nhất trong {1}, vì đang tồn tại những giá trị không phải duy nhất"
+msgstr ""
-#: core/doctype/data_import/importer.py:1017
+#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:97
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101
msgid "{0} from {1} to {2}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:157
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:165
msgid "{0} from {1} to {2} in row #{3}"
msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:120
-msgid "{0} gained {1} point for {2} {3}"
-msgstr "{0} đã đạt được {1} điểm cho {2} {3}"
-
-#: templates/emails/energy_points_summary.html:8
-msgid "{0} gained {1} points"
-msgstr ""
-
-#: social/doctype/energy_point_log/energy_point_log.py:122
-msgid "{0} gained {1} points for {2} {3}"
-msgstr "{0} đã đạt được {1} điểm cho {2} {3}"
-
-#: templates/emails/energy_points_summary.html:23
-msgid "{0} gave {1} points"
-msgstr ""
-
-#: public/js/frappe/utils/pretty_date.js:29
+#: frappe/public/js/frappe/utils/pretty_date.js:29
msgid "{0} h"
-msgstr "{0} giờ"
+msgstr ""
-#: core/doctype/user_permission/user_permission.py:76
+#: frappe/core/doctype/user_permission/user_permission.py:77
msgid "{0} has already assigned default value for {1}."
-msgstr "{0} đã gán giá trị mặc định cho {1}."
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:382
+#: frappe/email/doctype/newsletter/newsletter.py:380
msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} đã được thêm thành công vào Email Group."
+msgstr ""
-#: email/queue.py:127
+#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
-msgstr "{0} đã rời khỏi cuộc trò chuyện trong {1} {2}"
+msgstr ""
-#: __init__.py:2373
-msgid "{0} has no versions tracked."
-msgstr "{0} không có phiên bản nào được theo dõi."
-
-#: public/js/frappe/utils/pretty_date.js:54
+#: frappe/public/js/frappe/utils/pretty_date.js:54
msgid "{0} hours ago"
-msgstr "{0} giờ trước"
+msgstr ""
-#: website/doctype/web_form/templates/web_form.html:145
+#: frappe/website/doctype/web_form/templates/web_form.html:148
msgid "{0} if you are not redirected within {1} seconds"
msgstr ""
-#: website/doctype/website_settings/website_settings.py:102
-#: website/doctype/website_settings/website_settings.py:122
+#: frappe/website/doctype/website_settings/website_settings.py:102
+#: frappe/website/doctype/website_settings/website_settings.py:122
msgid "{0} in row {1} cannot have both URL and child items"
-msgstr "{0} trong dãy {1} không thể đồng thời có cả URL và các vật tư nhỏ"
+msgstr ""
-#: core/doctype/doctype/doctype.py:916
+#: frappe/core/doctype/doctype/doctype.py:934
msgid "{0} is a mandatory field"
-msgstr "{0} là một trường bắt buộc"
+msgstr ""
-#: core/doctype/file/file.py:503
+#: frappe/core/doctype/file/file.py:544
msgid "{0} is a not a valid zip file"
msgstr ""
-#: core/doctype/doctype/doctype.py:1559
+#: frappe/core/doctype/doctype/doctype.py:1618
msgid "{0} is an invalid Data field."
-msgstr "{0} là trường Dữ liệu không hợp lệ."
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:147
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154
msgid "{0} is an invalid email address in 'Recipients'"
-msgstr "{0} là địa chỉ email không hợp lệ trong 'Người nhận'"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1394
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is between {1} and {2}"
msgstr ""
-#: public/js/frappe/form/sidebar/form_sidebar_users.js:41
-#: public/js/frappe/form/sidebar/form_sidebar_users.js:69
+#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:41
+#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:69
msgid "{0} is currently {1}"
-msgstr "{0} hiện là {1}"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1363
+#: frappe/public/js/frappe/views/reports/report_view.js:1431
msgid "{0} is equal to {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1383
+#: frappe/public/js/frappe/views/reports/report_view.js:1451
msgid "{0} is greater than or equal to {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1373
+#: frappe/public/js/frappe/views/reports/report_view.js:1441
msgid "{0} is greater than {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1456
msgid "{0} is less than or equal to {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1446
msgid "{0} is less than {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1413
+#: frappe/public/js/frappe/views/reports/report_view.js:1481
msgid "{0} is like {1}"
msgstr ""
-#: email/doctype/email_account/email_account.py:169
+#: frappe/email/doctype/email_account/email_account.py:193
msgid "{0} is mandatory"
-msgstr "{0} là bắt buộc"
+msgstr ""
-#: core/doctype/document_naming_rule/document_naming_rule.py:49
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
-#: www/printview.py:350
+#: frappe/www/printview.py:384
msgid "{0} is not a raw printing format."
-msgstr "{0} không phải là định dạng in thô."
+msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:81
+#: frappe/public/js/frappe/views/calendar/calendar.js:82
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr ""
-#: public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:64
+msgid "{0} is not a valid Cron expression."
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
msgid "{0} is not a valid DocType for Dynamic Link"
-msgstr "{0} không phải là DocType hợp lệ cho Liên kết động"
+msgstr ""
-#: email/doctype/email_group/email_group.py:130 utils/__init__.py:189
+#: frappe/email/doctype/email_group/email_group.py:131
+#: frappe/utils/__init__.py:202
msgid "{0} is not a valid Email Address"
-msgstr "{0} không phải là một địa chỉ email hợp lệ"
+msgstr ""
-#: utils/__init__.py:157
+#: frappe/geo/doctype/country/country.py:30
+msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
+msgstr ""
+
+#: frappe/utils/__init__.py:170
msgid "{0} is not a valid Name"
-msgstr "{0} không phải là một tên hợp lệ"
+msgstr ""
-#: utils/__init__.py:136
+#: frappe/utils/__init__.py:149
msgid "{0} is not a valid Phone Number"
-msgstr "{0} không phải là một số điện thoại hợp lệ"
+msgstr ""
-#: model/workflow.py:186
+#: frappe/model/workflow.py:189
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
-msgstr "{0} không phải là Trạng thái luồng công việc hợp lệ. Vui lòng cập nhật Quy trình làm việc của bạn và thử lại."
+msgstr ""
-#: permissions.py:795
+#: frappe/permissions.py:787
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: permissions.py:815
+#: frappe/permissions.py:807
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.py:109
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
msgid "{0} is not a valid report format. Report format should one of the following {1}"
-msgstr "{0} không phải là định dạng báo cáo hợp lệ. Định dạng báo cáo phải là một trong những {1} sau"
+msgstr ""
-#: core/doctype/file/file.py:483
+#: frappe/core/doctype/file/file.py:524
msgid "{0} is not a zip file"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1368
+#: frappe/public/js/frappe/views/reports/report_view.js:1436
msgid "{0} is not equal to {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1415
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not like {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1409
+#: frappe/public/js/frappe/views/reports/report_view.js:1477
msgid "{0} is not one of {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1419
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is not set"
msgstr ""
-#: printing/doctype/print_format/print_format.py:166
+#: frappe/printing/doctype/print_format/print_format.py:165
msgid "{0} is now default print format for {1} doctype"
-msgstr "{0} giờ là định dạng in mặc định cho loại tài liệu {1}"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1402
+#: frappe/public/js/frappe/views/reports/report_view.js:1470
msgid "{0} is one of {1}"
msgstr ""
-#: email/doctype/email_account/email_account.py:263 model/naming.py:201
-#: printing/doctype/print_format/print_format.py:93 utils/csvutils.py:131
+#: frappe/email/doctype/email_account/email_account.py:304
+#: frappe/model/naming.py:218
+#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/utils/csvutils.py:156
msgid "{0} is required"
-msgstr "{0} được yêu cầu"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1418
+#: frappe/public/js/frappe/views/reports/report_view.js:1486
msgid "{0} is set"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1397
+#: frappe/public/js/frappe/views/reports/report_view.js:1465
msgid "{0} is within {1}"
msgstr ""
-#: public/js/frappe/list/list_view.js:1556
+#: frappe/public/js/frappe/list/list_view.js:1694
msgid "{0} items selected"
-msgstr "{0} mục đã được chọn"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:150
-#: public/js/frappe/form/sidebar/form_sidebar.js:96
+#: frappe/core/doctype/user/user.py:1378
+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:104
msgid "{0} last edited this"
msgstr ""
-#: core/doctype/activity_log/feed.py:13
+#: frappe/core/doctype/activity_log/feed.py:13
msgid "{0} logged in"
-msgstr "{0} đã đăng nhập"
-
-#: core/doctype/activity_log/feed.py:19
-msgid "{0} logged out: {1}"
-msgstr "{0} đăng xuất khỏi: {1}"
-
-#: public/js/frappe/utils/pretty_date.js:27
-msgid "{0} m"
-msgstr "{0} phút"
-
-#: desk/notifications.py:373
-msgid "{0} mentioned you in a comment in {1} {2}"
-msgstr "{0} đã đề cập đến bạn trong một nhận xét trong {1} {2}"
-
-#: public/js/frappe/utils/pretty_date.js:50
-msgid "{0} minutes ago"
-msgstr "{0} phút trước"
-
-#: public/js/frappe/utils/pretty_date.js:68
-msgid "{0} months ago"
-msgstr "{0} tháng trước"
-
-#: model/document.py:1564
-msgid "{0} must be after {1}"
-msgstr "{0} phải sau {1}"
-
-#: utils/csvutils.py:136
-msgid "{0} must be one of {1}"
-msgstr "{0} phải là một trong {1}"
-
-#: model/base_document.py:771
-msgid "{0} must be set first"
-msgstr "{0} phải được thiết lập trước"
-
-#: model/base_document.py:629
-msgid "{0} must be unique"
-msgstr "{0} phải là duy nhất"
-
-#: core/doctype/language/language.py:42
-msgid ""
-"{0} must begin and end with a letter and can only contain letters,\n"
-"\t\t\t\thyphen or underscore."
msgstr ""
-#: workflow/doctype/workflow/workflow.py:93
+#: 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:397
+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:1792
+msgid "{0} must be after {1}"
+msgstr ""
+
+#: frappe/model/document.py:1551
+msgid "{0} must be beginning with '{1}'"
+msgstr ""
+
+#: frappe/model/document.py:1553
+msgid "{0} must be equal to '{1}'"
+msgstr ""
+
+#: frappe/model/document.py:1549
+msgid "{0} must be none of {1}"
+msgstr ""
+
+#: frappe/model/document.py:1547 frappe/utils/csvutils.py:161
+msgid "{0} must be one of {1}"
+msgstr ""
+
+#: frappe/model/base_document.py:875
+msgid "{0} must be set first"
+msgstr ""
+
+#: frappe/model/base_document.py:732
+msgid "{0} must be unique"
+msgstr ""
+
+#: frappe/model/document.py:1555
+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:90
msgid "{0} not a valid State"
-msgstr "{0} tình trạng ko hợp lệ"
+msgstr ""
-#: model/rename_doc.py:388
+#: frappe/model/rename_doc.py:394
msgid "{0} not allowed to be renamed"
-msgstr "{0} không được phép đổi tên"
+msgstr ""
-#: desk/doctype/desktop_icon/desktop_icon.py:371
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:365
msgid "{0} not found"
-msgstr "{0} không tìm thấy"
+msgstr ""
-#: core/doctype/report/report.py:416 public/js/frappe/list/list_view.js:956
+#: frappe/core/doctype/report/report.py:427
+#: frappe/public/js/frappe/list/list_view.js:1068
msgid "{0} of {1}"
-msgstr "{0} trong tổng số {1}"
+msgstr ""
-#: public/js/frappe/list/list_view.js:958
+#: frappe/public/js/frappe/list/list_view.js:1070
msgid "{0} of {1} ({2} rows with children)"
-msgstr "{0} trong số {1} ({2} hàng có trẻ em)"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:205
+#: frappe/email/doctype/newsletter/newsletter.js:205
msgid "{0} of {1} sent"
msgstr ""
-#: utils/data.py:1705
+#: frappe/utils/data.py:1555
+msgctxt "Money in words"
+msgid "{0} only."
+msgstr ""
+
+#: frappe/utils/data.py:1730
msgid "{0} or {1}"
-msgstr "{0} hoặc {1}"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:177
+#: frappe/core/doctype/user_permission/user_permission_list.js:177
msgid "{0} record deleted"
-msgstr "Đã xóa bản ghi {0}"
+msgstr ""
-#: public/js/frappe/logtypes.js:22
+#: frappe/public/js/frappe/logtypes.js:22
msgid "{0} records are not automatically deleted."
msgstr ""
-#: public/js/frappe/logtypes.js:29
+#: frappe/public/js/frappe/logtypes.js:29
msgid "{0} records are retained for {1} days."
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:179
+#: frappe/core/doctype/user_permission/user_permission_list.js:179
msgid "{0} records deleted"
-msgstr "{0} hồ sơ đã bị xóa"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:229
msgid "{0} records will be exported"
-msgstr "{0} hồ sơ sẽ được xuất"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:419
+#: frappe/public/js/frappe/form/footer/form_timeline.js:420
msgctxt "Form timeline"
msgid "{0} removed attachment {1}"
msgstr ""
-#: desk/doctype/todo/todo.py:58
+#: frappe/desk/doctype/todo/todo.py:58
msgid "{0} removed their assignment."
msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:139
-#: social/doctype/energy_point_log/energy_point_log.py:178
-msgid "{0} reverted your point on {1}"
-msgstr "{0} hoàn nguyên quan điểm của bạn về {1}"
+#: frappe/public/js/frappe/roles_editor.js:62
+msgid "{0} role does not have permission on any doctype"
+msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:141
-#: social/doctype/energy_point_log/energy_point_log.py:180
-msgid "{0} reverted your points on {1}"
-msgstr "{0} hoàn nguyên điểm của bạn trên {1}"
+#: frappe/model/document.py:1785
+msgid "{0} row #{1}: "
+msgstr ""
-#: public/js/frappe/utils/energy_point_utils.js:44
-#: public/js/frappe/utils/energy_point_utils.js:59
-msgid "{0} reverted {1}"
-msgstr "{0} hoàn nguyên {1}"
-
-#: desk/query_report.py:583
+#: frappe/desk/query_report.py:612
msgid "{0} saved successfully"
-msgstr "{0} đã lưu thành công"
+msgstr ""
-#: desk/doctype/todo/todo.py:44
+#: frappe/desk/doctype/todo/todo.py:44
msgid "{0} self assigned this task: {1}"
-msgstr "{0} tự giao nhiệm vụ này: {1}"
+msgstr ""
-#: share.py:238
+#: frappe/share.py:233
msgid "{0} shared a document {1} {2} with you"
-msgstr "{0} đã chia sẻ tài liệu {1} {2} với bạn"
+msgstr ""
-#: core/doctype/docshare/docshare.py:79
+#: frappe/core/doctype/docshare/docshare.py:77
msgid "{0} shared this document with everyone"
-msgstr "{0} đã chia sẻ tài liệu này với tất cả mọi người"
+msgstr ""
-#: core/doctype/docshare/docshare.py:82
+#: frappe/core/doctype/docshare/docshare.py:80
msgid "{0} shared this document with {1}"
-msgstr "{0} đã chia sẻ tài liệu này với {1}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:320
+#: frappe/core/doctype/doctype/doctype.py:316
msgid "{0} should be indexed because it's referred in dashboard connections"
msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:136
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141
msgid "{0} should not be same as {1}"
-msgstr "{0} không nên giống với {1}"
+msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:51
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:51
msgid "{0} submitted this document"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:42
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:42
msgctxt "Form timeline"
msgid "{0} submitted this document {1}"
msgstr ""
-#: email/doctype/email_group/email_group.py:61
-#: email/doctype/email_group/email_group.py:132
+#: frappe/email/doctype/email_group/email_group.py:62
+#: frappe/email/doctype/email_group/email_group.py:133
msgid "{0} subscribers added"
-msgstr "{0}người đăng ký đã được thêm"
+msgstr ""
-#: email/queue.py:70
+#: frappe/email/queue.py:68
msgid "{0} to stop receiving emails of this type"
-msgstr "{0} để ngừng nhận email loại này"
+msgstr ""
-#: public/js/frappe/form/controls/date_range.js:46
-#: public/js/frappe/form/controls/date_range.js:62
-#: public/js/frappe/form/formatters.js:218
+#: frappe/public/js/frappe/form/controls/date_range.js:48
+#: frappe/public/js/frappe/form/controls/date_range.js:64
+#: frappe/public/js/frappe/form/formatters.js:234
msgid "{0} to {1}"
-msgstr "{0} đến {1}"
+msgstr ""
-#: core/doctype/docshare/docshare.py:91
+#: frappe/core/doctype/docshare/docshare.py:89
msgid "{0} un-shared this document with {1}"
-msgstr "{0} hủy chia sẻ tài liệu này với {1}"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:253
msgid "{0} updated"
-msgstr "{0} đã được cập nhật"
+msgstr ""
-#: public/js/frappe/form/controls/multiselect_list.js:162
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:198
msgid "{0} values selected"
-msgstr "{0} giá trị được chọn"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:183
+#: frappe/public/js/frappe/form/footer/form_timeline.js:184
msgid "{0} viewed this"
msgstr ""
-#: public/js/frappe/utils/pretty_date.js:35
+#: frappe/public/js/frappe/utils/pretty_date.js:35
msgid "{0} w"
-msgstr "{0} w"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:64
+#: frappe/public/js/frappe/utils/pretty_date.js:64
msgid "{0} weeks ago"
-msgstr "Cách đây {0} tuần"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:39
+#: frappe/public/js/frappe/utils/pretty_date.js:39
msgid "{0} y"
-msgstr "{0} y"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:72
+#: frappe/public/js/frappe/utils/pretty_date.js:72
msgid "{0} years ago"
-msgstr "{0} năm trước"
+msgstr ""
-#: public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:219
msgid "{0} {1} added"
-msgstr "Đã thêm {0} {1}"
+msgstr ""
-#: public/js/frappe/utils/dashboard_utils.js:270
+#: frappe/public/js/frappe/utils/dashboard_utils.js:270
msgid "{0} {1} added to Dashboard {2}"
-msgstr "{0} {1} đã được thêm vào Trang tổng quan {2}"
+msgstr ""
-#: model/base_document.py:562 model/rename_doc.py:112
+#: frappe/model/base_document.py:665 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
-msgstr "{0} {1} đã tồn tại"
+msgstr ""
-#: model/base_document.py:873
+#: frappe/model/base_document.py:982
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
-msgstr "{0} {1} không thể là \"{2}\". Nó phải là một trong những \"{3}\""
+msgstr ""
-#: utils/nestedset.py:343
+#: frappe/utils/nestedset.py:340
msgid "{0} {1} cannot be a leaf node as it has children"
-msgstr "{0} {1} không thể là một cuống lá vì nó có nhánh con"
+msgstr ""
-#: model/rename_doc.py:377
+#: frappe/model/rename_doc.py:376
msgid "{0} {1} does not exist, select a new target to merge"
-msgstr "{0} {1} không tồn tại, hãy chọn một mục tiêu mới để hợp nhất"
+msgstr ""
-#: public/js/frappe/form/form.js:970
+#: frappe/public/js/frappe/form/form.js:951
msgid "{0} {1} is linked with the following submitted documents: {2}"
-msgstr "{0} {1} được liên kết với các tài liệu được gửi sau đây: {2}"
+msgstr ""
-#: model/document.py:170 permissions.py:566
+#: frappe/model/document.py:260 frappe/permissions.py:558
msgid "{0} {1} not found"
-msgstr "{0} {1} không tìm thấy"
+msgstr ""
-#: model/delete_doc.py:231
+#: frappe/model/delete_doc.py:247
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
-msgstr "{0} {1}: Không thể xóa Bản ghi đã gửi. Trước tiên, bạn phải {2} Hủy {3} nó."
+msgstr ""
-#: model/base_document.py:988
+#: frappe/model/base_document.py:1110
msgid "{0}, Row {1}"
-msgstr "{0}, dòng {1}"
+msgstr ""
-#: model/base_document.py:993
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+msgid "{0}/{1} complete | Please leave this tab open until completion."
+msgstr ""
+
+#: frappe/model/base_document.py:1115
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
-msgstr "{0}: {1} '({3}) sẽ được cắt ngắn, vì số kí tự tối đa cho phép là {2}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1741
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "{0}: Cannot set Amend without Cancel"
-msgstr "{0}: Không thể thiết lập Sửa mà không chọn Hủy bỏ"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1759
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr "{0}: Không thể thiết lập \"Sửa chỉ định\" nếu không thể duyệt"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1757
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr "{0}: Không thể thiết lập \"Duyệt chỉ định\" nếu không thể duyệt"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1736
+#: frappe/core/doctype/doctype/doctype.py:1795
msgid "{0}: Cannot set Cancel without Submit"
-msgstr "{0}: Không thể thiết lập Hủy bỏ mà không chọn \"Duyệt\""
+msgstr ""
-#: core/doctype/doctype/doctype.py:1743
+#: frappe/core/doctype/doctype/doctype.py:1802
msgid "{0}: Cannot set Import without Create"
-msgstr "{0}: Không thể thiết lập \"nhập vào\" mà không chọn \"Khởi Tạo\""
+msgstr ""
-#: core/doctype/doctype/doctype.py:1739
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr "{0}: Không thể thiết lập quyền Duyệt, Hủy bỏ, sửa đổi mà không chọn quyền \"Viết\""
+msgstr ""
-#: core/doctype/doctype/doctype.py:1763
+#: frappe/core/doctype/doctype/doctype.py:1822
msgid "{0}: Cannot set import as {1} is not importable"
-msgstr "{0}: Không thể thiết lập\"nhập vào\" vì {1} không thể nhập vào được"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:393
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
-msgstr "{0}: Không thể đính kèm tài liệu định kỳ mới. Để bật tài liệu đính kèm trong email thông báo lặp lại tự động, hãy bật {1} trong Cài đặt in"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1377
+#: frappe/core/doctype/doctype/doctype.py:1426
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
-msgstr "{0}: Không thể đặt trường '{1}' là Duy nhất vì nó có các giá trị không duy nhất"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1285
+#: frappe/core/doctype/doctype/doctype.py:1334
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
-msgstr "{0}: Trường {1} trong hàng {2} không thể bị ẩn và bắt buộc mà không có mặc định"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1244
+#: frappe/core/doctype/doctype/doctype.py:1293
msgid "{0}: Field {1} of type {2} cannot be mandatory"
-msgstr "{0}: Trường {1} loại {2} không thể bắt buộc"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1232
+#: frappe/core/doctype/doctype/doctype.py:1281
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
-msgstr "{0}: Tên trường {1} xuất hiện nhiều lần trong các hàng {2}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1362
+#: frappe/core/doctype/doctype/doctype.py:1413
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
-msgstr "{0}: Fieldtype {1} cho {2} không thể là duy nhất"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1698
+#: frappe/core/doctype/doctype/doctype.py:1755
msgid "{0}: No basic permissions set"
-msgstr "{0}: Không có quyền cơ bản nào được thiết lập"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1712
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
-msgstr "{0}: Chỉ có một quy tắc được cho phép với vai trò , cấp độ tương tự và {1}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1266
+#: frappe/core/doctype/doctype/doctype.py:1315
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
-msgstr "{0}: Tùy chọn phải là Loại tài liệu hợp lệ cho trường {1} trong hàng {2}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1255
+#: frappe/core/doctype/doctype/doctype.py:1304
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
-msgstr "{0}: Tùy chọn cần thiết cho trường Loại liên kết hoặc Bảng {1} trong hàng {2}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1273
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
-msgstr "{0}: Tùy chọn {1} phải giống với tên doctype {2} cho trường {3}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1727
+#: frappe/public/js/frappe/form/workflow.js:45
+msgid "{0}: Other permission rules may also apply"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1784
msgid "{0}: Permission at level 0 must be set before higher levels are set"
-msgstr "{0}: Quyền ở mức 0 phải được thiết lập trước khi thiết lập cấp độ cao hơn"
+msgstr ""
-#: public/js/frappe/form/controls/data.js:50
+#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr ""
-#: core/doctype/doctype/doctype.py:1219
+#: frappe/core/doctype/doctype/doctype.py:1268
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr ""
-#: contacts/doctype/address/address.js:35
-#: contacts/doctype/contact/contact.js:78
-#: public/js/frappe/views/workspace/workspace.js:169
+#: frappe/contacts/doctype/address/address.js:35
+#: frappe/contacts/doctype/contact/contact.js:88
msgid "{0}: {1}"
msgstr ""
-#: workflow/doctype/workflow_action/workflow_action.py:172
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:172
msgid "{0}: {1} is set to state {2}"
-msgstr "{0}: {1} được đặt thành trạng thái {2}"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:1279
msgid "{0}: {1} vs {2}"
-msgstr "{0}: {1} đấu với {2}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1385
+#: frappe/core/doctype/doctype/doctype.py:1434
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
-msgstr "{0}: Không thể lập chỉ mục Fieldtype {1} cho {2}"
+msgstr ""
-#: public/js/frappe/utils/datatable.js:12
+#: frappe/public/js/frappe/form/quick_entry.js:195
+msgid "{1} saved"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/datatable.js:12
msgid "{count} cell copied"
msgstr ""
-#: public/js/frappe/utils/datatable.js:13
+#: frappe/public/js/frappe/utils/datatable.js:13
msgid "{count} cells copied"
msgstr ""
-#: public/js/frappe/utils/datatable.js:16
+#: frappe/public/js/frappe/utils/datatable.js:16
msgid "{count} row selected"
msgstr ""
-#: public/js/frappe/utils/datatable.js:17
+#: frappe/public/js/frappe/utils/datatable.js:17
msgid "{count} rows selected"
msgstr ""
-#: core/doctype/doctype/doctype.py:1439
+#: frappe/core/doctype/doctype/doctype.py:1488
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
-msgstr "{{{0}}} không phải là một mẫu tên trường hợp lệ. Nên là {{field_name}}."
+msgstr ""
-#: public/js/frappe/form/form.js:553
+#: frappe/public/js/frappe/form/form.js:521
msgid "{} Complete"
-msgstr "{} Hoàn thành"
+msgstr ""
-#: utils/data.py:2418
+#: frappe/utils/data.py:2488
msgid "{} Invalid python code on line {}"
msgstr ""
-#: utils/data.py:2427
+#: frappe/utils/data.py:2497
msgid "{} Possibly invalid python code.
{}"
msgstr ""
-#: core/doctype/log_settings/log_settings.py:54
+#. Count format of shortcut in the Website Workspace
+#: frappe/website/workspace/website/website.json
+msgid "{} Published"
+msgstr ""
+
+#: frappe/core/doctype/log_settings/log_settings.py:54
msgid "{} does not support automated log clearing."
msgstr ""
-#: core/doctype/audit_trail/audit_trail.py:40
+#: frappe/core/doctype/audit_trail/audit_trail.py:41
msgid "{} field cannot be empty."
msgstr ""
-#: email/doctype/email_account/email_account.py:193
-#: email/doctype/email_account/email_account.py:200
+#: frappe/email/doctype/email_account/email_account.py:223
+#: frappe/email/doctype/email_account/email_account.py:231
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: utils/data.py:123
+#: frappe/utils/data.py:135
msgid "{} is not a valid date string."
-msgstr "{} không phải là một chuỗi ngày hợp lệ."
+msgstr ""
-#: commands/utils.py:519
+#: frappe/commands/utils.py:562
msgid "{} not found in PATH! This is required to access the console."
msgstr ""
-#: database/db_manager.py:81
+#: frappe/database/db_manager.py:99
msgid "{} not found in PATH! This is required to restore the database."
msgstr ""
-#: utils/backups.py:441
+#: frappe/utils/backups.py:466
msgid "{} not found in PATH! This is required to take a backup."
msgstr ""
+#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:5
+#: frappe/public/js/frappe/file_uploader/WebLink.vue:4
+msgid "← Back to upload files"
+msgstr ""
+
From cb0d06455bb5e7e8994909a69e7086fc61b069cd Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Tue, 17 Jun 2025 12:03:08 +0530
Subject: [PATCH 010/196] chore: use `frappe._dev_server` instead of
`local.dev_server`
---
frappe/__init__.py | 2 +-
frappe/build.py | 2 +-
frappe/commands/utils.py | 2 +-
frappe/utils/safe_exec.py | 2 +-
frappe/website/path_resolver.py | 2 +-
frappe/website/utils.py | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/frappe/__init__.py b/frappe/__init__.py
index fc1861d640..de597894e0 100644
--- a/frappe/__init__.py
+++ b/frappe/__init__.py
@@ -263,7 +263,7 @@ def init(site: str, sites_path: str = ".", new_site: bool = False, force: bool =
local.form_dict = _dict()
local.preload_assets = {"style": [], "script": [], "icons": []}
local.session = _dict()
- local.dev_server = _dev_server
+ local.dev_server = _dev_server # only for backwards compatibility
local.qb = get_query_builder(local.conf.db_type)
if not cache or not client_cache:
setup_redis_cache_connection()
diff --git a/frappe/build.py b/frappe/build.py
index d499cea553..83fe189ba6 100644
--- a/frappe/build.py
+++ b/frappe/build.py
@@ -52,7 +52,7 @@ def build_missing_files():
folder = os.path.join(sites_path, "assets", "frappe", "dist", type)
current_asset_files.extend(os.listdir(folder))
- development = frappe.local.conf.developer_mode or frappe.local.dev_server
+ development = frappe.local.conf.developer_mode or frappe._dev_server
build_mode = "development" if development else "production"
assets_json = frappe.read_file("assets/assets.json")
diff --git a/frappe/commands/utils.py b/frappe/commands/utils.py
index ed126dff24..1446fb7d2c 100644
--- a/frappe/commands/utils.py
+++ b/frappe/commands/utils.py
@@ -77,7 +77,7 @@ def build(
skip_frappe = False
# don't minify in developer_mode for faster builds
- development = frappe.local.conf.developer_mode or frappe.local.dev_server
+ development = frappe.local.conf.developer_mode or frappe._dev_server
mode = "development" if development else "production"
if production:
mode = "production"
diff --git a/frappe/utils/safe_exec.py b/frappe/utils/safe_exec.py
index 0d055525b6..6cbc9201af 100644
--- a/frappe/utils/safe_exec.py
+++ b/frappe/utils/safe_exec.py
@@ -287,7 +287,7 @@ def get_safe_globals():
scrub=scrub,
guess_mimetype=mimetypes.guess_type,
html2text=html2text,
- dev_server=frappe.local.dev_server,
+ dev_server=frappe._dev_server,
run_script=run_script,
is_job_queued=is_job_queued,
get_visible_columns=get_visible_columns,
diff --git a/frappe/website/path_resolver.py b/frappe/website/path_resolver.py
index 69aafe35e3..e07663aa7f 100644
--- a/frappe/website/path_resolver.py
+++ b/frappe/website/path_resolver.py
@@ -196,7 +196,7 @@ def get_website_rules():
return rules
- if frappe.local.dev_server:
+ if frappe._dev_server:
# dont cache in development
return _get()
diff --git a/frappe/website/utils.py b/frappe/website/utils.py
index 5d2747f634..f3b06647b2 100644
--- a/frappe/website/utils.py
+++ b/frappe/website/utils.py
@@ -127,7 +127,7 @@ def get_home_page():
return home_page
- if frappe.local.dev_server:
+ if frappe._dev_server:
# dont return cached homepage in development
return _get_home_page()
From b7fb6546880ff215b8aea4ca75ddb6389632eeb4 Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Tue, 17 Jun 2025 14:26:17 +0530
Subject: [PATCH 011/196] chore: use `frappe._dev_server`
---
frappe/tests/ui_test_helpers.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/frappe/tests/ui_test_helpers.py b/frappe/tests/ui_test_helpers.py
index c386e65605..f4a26a6325 100644
--- a/frappe/tests/ui_test_helpers.py
+++ b/frappe/tests/ui_test_helpers.py
@@ -7,7 +7,7 @@ UI_TEST_USER = "frappe@example.com"
def whitelist_for_tests(fn):
- if frappe.request and not frappe.flags.in_test and not getattr(frappe.local, "dev_server", 0):
+ if frappe.request and not frappe.flags.in_test and not frappe._dev_server:
frappe.throw("Cannot run UI tests. Use a development server with `bench start`")
return frappe.whitelist()(fn)
From 771d6fe9e15b6dcab501a9ec4d5ade312c6c758d Mon Sep 17 00:00:00 2001
From: Ejaaz Khan
Date: Tue, 17 Jun 2025 15:39:30 +0530
Subject: [PATCH 012/196] refactor: instead of local use site cache
---
frappe/desk/query_report.py | 45 ++++++++++++++++---------------------
1 file changed, 19 insertions(+), 26 deletions(-)
diff --git a/frappe/desk/query_report.py b/frappe/desk/query_report.py
index f3fc023dd0..ce32735415 100644
--- a/frappe/desk/query_report.py
+++ b/frappe/desk/query_report.py
@@ -16,6 +16,7 @@ from frappe.modules import get_module_path, scrub
from frappe.monitor import add_data_to_monitor
from frappe.permissions import get_role_permissions, get_roles, has_permission
from frappe.utils import cint, cstr, flt, format_duration, get_html_format, sbool
+from frappe.utils.caching import site_cache
def get_report_doc(report_name):
@@ -37,17 +38,17 @@ def get_report_doc(report_name):
# Follow whatever the custom report has set for prepared report field
doc.prepared_report = custom_report_doc.prepared_report
- if not doc.is_permitted():
- frappe.throw(
- _("You don't have access to Report: {0}").format(_(doc.name)),
- frappe.PermissionError,
- )
+ # if not doc.is_permitted():
+ # frappe.throw(
+ # _("You don't have access to Report: {0}").format(_(doc.name)),
+ # frappe.PermissionError,
+ # )
- if not frappe.has_permission(doc.ref_doctype, "report"):
- frappe.throw(
- _("You don't have permission to get a report on: {0}").format(_(doc.ref_doctype)),
- frappe.PermissionError,
- )
+ # if not frappe.has_permission(doc.ref_doctype, "report"):
+ # frappe.throw(
+ # _("You don't have permission to get a report on: {0}").format(_(doc.ref_doctype)),
+ # frappe.PermissionError,
+ # )
if doc.disabled:
frappe.throw(_("Report {0} is disabled").format(_(report_name)))
@@ -203,11 +204,11 @@ def run(
user = frappe.session.user
validate_filters_permissions(report_name, filters, user)
report = get_report_doc(report_name)
- if not frappe.has_permission(report.ref_doctype, "report"):
- frappe.msgprint(
- _("Must have report permission to access this report."),
- raise_exception=True,
- )
+ # if not frappe.has_permission(report.ref_doctype, "report"):
+ # frappe.msgprint(
+ # _("Must have report permission to access this report."),
+ # raise_exception=True,
+ # )
result = None
@@ -707,7 +708,7 @@ def has_match(
break
if match:
- match = has_unrestricted_read_access(doctype=ref_doctype)
+ match = has_unrestricted_read_access(doctype=ref_doctype, user=frappe.session.user)
# each doctype could have multiple conflicting user permission doctypes, hence using OR
# so that even if one of the sets allows a match, it is true
@@ -725,15 +726,8 @@ def has_match(
return resultant_match
-def has_unrestricted_read_access(doctype, user=None):
- if not hasattr(frappe.local, "unrestricted_read_perm_cache"):
- frappe.local.unrestricted_read_perm_cache = {}
-
- cache_key = f"{user or frappe.session.user}::{doctype}"
-
- if cache_key in frappe.local.unrestricted_read_perm_cache:
- return frappe.local.unrestricted_read_perm_cache[cache_key]
-
+@site_cache
+def has_unrestricted_read_access(doctype, user):
roles = get_roles(user)
standard_perm_exists = frappe.db.exists(
@@ -759,7 +753,6 @@ def has_unrestricted_read_access(doctype, user=None):
)
has_perm = bool(custom_perm_exists or standard_perm_exists)
- frappe.local.unrestricted_read_perm_cache[cache_key] = has_perm
return has_perm
From e6eb4a73d71731ffa8589a1b25541503363ec9c1 Mon Sep 17 00:00:00 2001
From: Ejaaz Khan
Date: Tue, 17 Jun 2025 15:40:59 +0530
Subject: [PATCH 013/196] refactor: revert permssion changes
---
frappe/desk/query_report.py | 30 +++++++++++++++---------------
1 file changed, 15 insertions(+), 15 deletions(-)
diff --git a/frappe/desk/query_report.py b/frappe/desk/query_report.py
index ce32735415..ea56ac92fa 100644
--- a/frappe/desk/query_report.py
+++ b/frappe/desk/query_report.py
@@ -38,17 +38,17 @@ def get_report_doc(report_name):
# Follow whatever the custom report has set for prepared report field
doc.prepared_report = custom_report_doc.prepared_report
- # if not doc.is_permitted():
- # frappe.throw(
- # _("You don't have access to Report: {0}").format(_(doc.name)),
- # frappe.PermissionError,
- # )
+ if not doc.is_permitted():
+ frappe.throw(
+ _("You don't have access to Report: {0}").format(_(doc.name)),
+ frappe.PermissionError,
+ )
- # if not frappe.has_permission(doc.ref_doctype, "report"):
- # frappe.throw(
- # _("You don't have permission to get a report on: {0}").format(_(doc.ref_doctype)),
- # frappe.PermissionError,
- # )
+ if not frappe.has_permission(doc.ref_doctype, "report"):
+ frappe.throw(
+ _("You don't have permission to get a report on: {0}").format(_(doc.ref_doctype)),
+ frappe.PermissionError,
+ )
if doc.disabled:
frappe.throw(_("Report {0} is disabled").format(_(report_name)))
@@ -204,11 +204,11 @@ def run(
user = frappe.session.user
validate_filters_permissions(report_name, filters, user)
report = get_report_doc(report_name)
- # if not frappe.has_permission(report.ref_doctype, "report"):
- # frappe.msgprint(
- # _("Must have report permission to access this report."),
- # raise_exception=True,
- # )
+ if not frappe.has_permission(report.ref_doctype, "report"):
+ frappe.msgprint(
+ _("Must have report permission to access this report."),
+ raise_exception=True,
+ )
result = None
From 63cf3676a01f504ce5bbfb51cb4b2ecae1c29db9 Mon Sep 17 00:00:00 2001
From: sokumon
Date: Tue, 17 Jun 2025 18:38:12 +0530
Subject: [PATCH 014/196] fix: remove utils file and typo
---
frappe/integrations/offsite_backup_utils.py | 118 --------------------
frappe/translate.py | 1 -
2 files changed, 119 deletions(-)
delete mode 100644 frappe/integrations/offsite_backup_utils.py
diff --git a/frappe/integrations/offsite_backup_utils.py b/frappe/integrations/offsite_backup_utils.py
deleted file mode 100644
index f16eabe748..0000000000
--- a/frappe/integrations/offsite_backup_utils.py
+++ /dev/null
@@ -1,118 +0,0 @@
-# Copyright (c) 2019, Frappe Technologies and contributors
-# License: MIT. See LICENSE
-
-import glob
-import os
-
-import frappe
-from frappe.utils import cint, split_emails
-
-
-def send_email(success, service_name, doctype, email_field, error_status=None):
- recipients = get_recipients(doctype, email_field)
- if not recipients:
- frappe.log_error(
- f"No Email Recipient found for {service_name}",
- f"{service_name}: Failed to send backup status email",
- )
- return
-
- if success:
- if not frappe.db.get_single_value(doctype, "send_email_for_successful_backup"):
- return
-
- subject = "Backup Upload Successful"
- message = """
-Backup Uploaded Successfully!
-Hi there, this is just to inform you that your backup was successfully uploaded to your {} bucket. So relax!
""".format(
- service_name
- )
- else:
- subject = "[Warning] Backup Upload Failed"
- message = f"""
-Backup Upload Failed!
-Oops, your automated backup to {service_name} failed.
-Error message: {error_status}
-Please contact your system manager for more information.
"""
-
- frappe.sendmail(recipients=recipients, subject=subject, message=message)
-
-
-def get_recipients(doctype, email_field):
- return split_emails(frappe.db.get_value(doctype, None, email_field))
-
-
-def get_latest_backup_file(with_files=False):
- from frappe.utils.backups import BackupGenerator
-
- odb = BackupGenerator(
- frappe.conf.db_name,
- frappe.conf.db_user,
- frappe.conf.db_password,
- db_socket=frappe.conf.db_socket,
- db_host=frappe.conf.db_host,
- db_port=frappe.conf.db_port,
- db_type=frappe.conf.db_type,
- )
- database, public, private, config = odb.get_recent_backup(older_than=24 * 30)
-
- if with_files:
- return database, config, public, private
-
- return database, config
-
-
-def get_file_size(file_path, unit="MB"):
- file_size = os.path.getsize(file_path)
-
- memory_size_unit_mapper = {"KB": 1, "MB": 2, "GB": 3, "TB": 4}
- i = 0
- while i < memory_size_unit_mapper[unit]:
- file_size = file_size / 1000.0
- i += 1
-
- return file_size
-
-
-def get_chunk_site(file_size):
- """this function will return chunk size in megabytes based on file size"""
-
- file_size_in_gb = cint(file_size / 1024 / 1024)
-
- MB = 1024 * 1024
- if file_size_in_gb > 5000:
- return 200 * MB
- elif file_size_in_gb >= 3000:
- return 150 * MB
- elif file_size_in_gb >= 1000:
- return 100 * MB
- elif file_size_in_gb >= 500:
- return 50 * MB
- else:
- return 15 * MB
-
-
-def validate_file_size():
- frappe.flags.create_new_backup = True
- latest_file, site_config = get_latest_backup_file()
- file_size = get_file_size(latest_file, unit="GB") if latest_file else 0
-
- if file_size > 1:
- frappe.flags.create_new_backup = False
-
-
-def generate_files_backup():
- from frappe.utils.backups import BackupGenerator
-
- backup = BackupGenerator(
- frappe.conf.db_name,
- frappe.conf.db_user,
- frappe.conf.db_password,
- db_socket=frappe.conf.db_socket,
- db_host=frappe.conf.db_host,
- db_port=frappe.conf.db_port,
- db_type=frappe.conf.db_type,
- )
-
- backup.set_backup_file_name()
- backup.zip_files()
diff --git a/frappe/translate.py b/frappe/translate.py
index f996f2d548..ead55ab67e 100644
--- a/frappe/translate.py
+++ b/frappe/translate.py
@@ -810,7 +810,6 @@ def migrate_translations(source_app, target_app):
"""Migrate target-app-specific translations from source-app to target-app"""
strings_in_source_app = [m[1] for m in frappe.translate.get_messages_for_app(source_app)]
strings_in_target_app = [m[1] for m in frappe.translate.get_messages_for_app(target_app)]
- print(strings_in_source_app)
strings_in_target_app_but_not_in_source_app = list(
set(strings_in_target_app) - set(strings_in_source_app)
)
From 764410761f5e63de8ce7d506b4cfec257c7cfd51 Mon Sep 17 00:00:00 2001
From: Ankush Menat
Date: Tue, 17 Jun 2025 18:48:29 +0530
Subject: [PATCH 015/196] build: Bump RQ (#32969)
https://github.com/rq/rq/compare/v2.3.2...v2.4
---
pyproject.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pyproject.toml b/pyproject.toml
index c54643c640..5a3d38c6d0 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -66,7 +66,7 @@ dependencies = [
# We depend on internal attributes of RQ.
# Do NOT add loose requirements on RQ versions.
# Audit the code changes w.r.t. background_jobs.py before updating.
- "rq==2.3.2",
+ "rq==2.4.0",
"rsa>=4.1",
"semantic-version~=2.10.0",
"sentry-sdk~=1.45.1",
From 7e2b4955f85b9c425e8d8e979da2f7d65df744e9 Mon Sep 17 00:00:00 2001
From: Ankush Menat
Date: Tue, 17 Jun 2025 18:57:36 +0530
Subject: [PATCH 016/196] test: Cancel pending jobs in RQ tests (#32970)
This casues flake sometimes when other tests don't cleanup long running
pending jobs.
---
frappe/core/doctype/rq_job/rq_job.py | 10 ++++++++++
frappe/core/doctype/rq_job/test_rq_job.py | 6 ++++++
2 files changed, 16 insertions(+)
diff --git a/frappe/core/doctype/rq_job/rq_job.py b/frappe/core/doctype/rq_job/rq_job.py
index fd6ef7ce81..93710552dc 100644
--- a/frappe/core/doctype/rq_job/rq_job.py
+++ b/frappe/core/doctype/rq_job/rq_job.py
@@ -112,6 +112,16 @@ class RQJob(Document):
except InvalidJobOperation:
frappe.msgprint(_("Job is not running."), title=_("Invalid Operation"))
+ @check_permissions
+ def cancel(self):
+ if self.status == "queued":
+ self.job.cancel()
+ else:
+ frappe.msgprint(
+ _("Job is in {0} state and can't be cancelled").format(self.status),
+ title=_("Invalid Operation"),
+ )
+
@staticmethod
def get_count(filters=None) -> int:
return len(RQJob.get_matching_job_ids(filters))
diff --git a/frappe/core/doctype/rq_job/test_rq_job.py b/frappe/core/doctype/rq_job/test_rq_job.py
index 8ae4bc427b..accc6712b8 100644
--- a/frappe/core/doctype/rq_job/test_rq_job.py
+++ b/frappe/core/doctype/rq_job/test_rq_job.py
@@ -26,6 +26,12 @@ def wait_for_completion(job: Job):
class TestRQJob(IntegrationTestCase):
BG_JOB = "frappe.core.doctype.rq_job.test_rq_job.test_func"
+ def setUp(self) -> None:
+ # Cleanup all pending jobs
+ for job in frappe.get_all("RQ Job", {"status": "queued"}):
+ frappe.get_doc("RQ Job", job.name).cancel()
+ return super().setUp()
+
def check_status(self, job: Job, status, wait=True):
if wait:
wait_for_completion(job)
From b3e1eda4c85e47e5a32798ef73294068ad330432 Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Tue, 17 Jun 2025 13:49:31 +0000
Subject: [PATCH 017/196] feat: global `frappe.in_test` flag (#32960)
* feat: global `frappe.in_test` flag
* feat: helper utility to toggle `frappe.in_test`
* fix: use `toggle_test_mode` util
* fix: use `frappe.in_test`
* chore: add comment explaining global `in_test`
* chore: ignore commit replacing flag usage
* test: temporarily disable `frappe.in_test`
this worked earlier because flag was set in werkzeug.local which was separate for API test client
* test: add comment explaining change
---
.git-blame-ignore-revs | 3 +++
frappe/__init__.py | 13 ++++++++-----
.../doctype/auto_repeat/auto_repeat.py | 6 +++---
frappe/core/doctype/access_log/access_log.py | 2 +-
frappe/core/doctype/data_import/data_import.py | 2 +-
frappe/core/doctype/doctype/doctype.py | 4 ++--
.../core/doctype/role_profile/role_profile.py | 2 +-
frappe/core/doctype/user/test_user.py | 17 ++++++++++-------
frappe/core/doctype/user/user.py | 4 ++--
.../notification_log/notification_log.py | 6 +++---
.../system_health_report.py | 2 +-
frappe/desk/doctype/workspace/workspace.py | 2 +-
frappe/desk/page/setup_wizard/setup_wizard.py | 2 +-
.../doctype/email_account/email_account.py | 8 +++-----
.../email/doctype/email_domain/email_domain.py | 2 +-
frappe/email/doctype/email_queue/email_queue.py | 6 +++---
frappe/email/doctype/newsletter/newsletter.py | 4 ++--
.../email/doctype/notification/notification.py | 2 +-
frappe/email/queue.py | 2 +-
frappe/email/receive.py | 2 +-
frappe/email/smtp.py | 2 +-
frappe/integrations/doctype/webhook/__init__.py | 2 +-
frappe/model/base_document.py | 2 +-
frappe/model/delete_doc.py | 2 +-
frappe/model/document.py | 2 +-
frappe/model/dynamic_links.py | 2 +-
frappe/model/trace.py | 4 ++--
frappe/parallel_test_runner.py | 4 ++--
.../doctype/print_format/print_format.py | 2 +-
.../printing/doctype/print_style/print_style.py | 2 +-
frappe/recorder.py | 2 +-
frappe/sessions.py | 2 +-
frappe/testing/environment.py | 4 ++--
frappe/tests/test_api_v2.py | 9 ++++++++-
frappe/tests/test_trace.py | 9 +++++----
frappe/tests/test_utils.py | 5 +++--
frappe/tests/ui_test_helpers.py | 2 +-
frappe/tests/utils/__init__.py | 6 ++++++
frappe/utils/__init__.py | 2 +-
frappe/utils/background_jobs.py | 8 +++++---
frappe/utils/user.py | 2 +-
.../personal_data_deletion_request.py | 2 +-
.../personal_data_download_request.py | 2 +-
frappe/website/doctype/web_form/web_form.py | 5 +----
.../doctype/website_theme/website_theme.py | 4 ++--
frappe/website/utils.py | 2 +-
frappe/website/website_generator.py | 4 ++--
.../doctype/workflow_action/workflow_action.py | 2 +-
frappe/www/list.py | 2 +-
49 files changed, 105 insertions(+), 84 deletions(-)
diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs
index 52ba55ffb5..8b4535ba69 100644
--- a/.git-blame-ignore-revs
+++ b/.git-blame-ignore-revs
@@ -58,3 +58,6 @@ e9bbe03354079cfcef65a77b0c33f57b047a7c93
# ruff update
84ef6ec677c8657c3243ac456a1ef794bfb34a50
+
+# replace `frappe.flags.in_test` with `frappe.in_test`
+653c80b8483cc41aef25cd7d66b9b6bb188bf5f8
diff --git a/frappe/__init__.py b/frappe/__init__.py
index de597894e0..8f5e2c436f 100644
--- a/frappe/__init__.py
+++ b/frappe/__init__.py
@@ -83,6 +83,9 @@ cache: Optional["RedisWrapper"] = None
client_cache: Optional["ClientCache"] = None
STANDARD_USERS = ("Guest", "Administrator")
+# this global may be subsequently changed by frappe.tests.utils.toggle_test_mode()
+in_test = False
+
_dev_server = int(sbool(os.environ.get("DEV_SERVER", False)))
if _dev_server:
@@ -219,7 +222,7 @@ def init(site: str, sites_path: str = ".", new_site: bool = False, force: bool =
"in_install_db": False,
"in_install_app": False,
"in_import": False,
- "in_test": False,
+ "in_test": in_test,
"mute_messages": False,
"ignore_links": False,
"mute_emails": False,
@@ -640,7 +643,7 @@ def whitelist(allow_guest=False, xss_safe=False, methods=None):
global whitelisted, guest_methods, xss_safe_methods, allowed_http_methods_for_whitelisted_func
# validate argument types only if request is present
- in_request_or_test = lambda: getattr(local, "request", None) or local.flags.in_test # noqa: E731
+ in_request_or_test = lambda: getattr(local, "request", None) or in_test # noqa: E731
# get function from the unbound / bound method
# this is needed because functions can be compared, but not methods
@@ -740,7 +743,7 @@ def only_for(roles: list[str] | tuple[str] | str, message=False):
:param roles: Permitted role(s)
"""
- if local.flags.in_test or local.session.user == "Administrator":
+ if in_test or local.session.user == "Administrator":
return
if isinstance(roles, str):
@@ -767,7 +770,7 @@ def get_domain_data(module):
else:
return _dict()
except ImportError:
- if local.flags.in_test:
+ if in_test:
return _dict()
else:
raise
@@ -1595,7 +1598,7 @@ def copy_doc(doc: "Document", ignore_no_copy: bool = True) -> "Document":
fields_to_clear = ["name", "owner", "creation", "modified", "modified_by"]
- if not local.flags.in_test:
+ if not in_test:
fields_to_clear.append("docstatus")
if isinstance(doc, BaseDocument) or hasattr(doc, "as_dict"):
diff --git a/frappe/automation/doctype/auto_repeat/auto_repeat.py b/frappe/automation/doctype/auto_repeat/auto_repeat.py
index 0ed66eac66..aba5ae7013 100644
--- a/frappe/automation/doctype/auto_repeat/auto_repeat.py
+++ b/frappe/automation/doctype/auto_repeat/auto_repeat.py
@@ -86,7 +86,7 @@ class AutoRepeat(Document):
validate_template(self.message or "")
def before_insert(self):
- if not frappe.flags.in_test:
+ if not frappe.in_test:
start_date = getdate(self.start_date)
today_date = getdate(today())
if start_date <= today_date:
@@ -112,7 +112,7 @@ class AutoRepeat(Document):
frappe.db.set_value(self.reference_doctype, self.reference_document, "auto_repeat", "")
def validate_reference_doctype(self):
- if frappe.flags.in_test or frappe.flags.in_patch:
+ if frappe.in_test or frappe.flags.in_patch:
return
if not frappe.get_meta(self.reference_doctype).allow_auto_repeat:
frappe.throw(
@@ -229,7 +229,7 @@ class AutoRepeat(Document):
self.disable_auto_repeat()
- if self.reference_document and not frappe.flags.in_test:
+ if self.reference_document and not frappe.in_test:
self.notify_error_to_user(error_log)
def make_new_document(self):
diff --git a/frappe/core/doctype/access_log/access_log.py b/frappe/core/doctype/access_log/access_log.py
index 7e5dbda3f8..5c939587b4 100644
--- a/frappe/core/doctype/access_log/access_log.py
+++ b/frappe/core/doctype/access_log/access_log.py
@@ -81,7 +81,7 @@ def make_access_log(
# `frappe.db.commit` added because insert doesnt `commit` when called in GET requests like `printview`
# dont commit in test mode. It must be tempting to put this block along with the in_request in the
# whitelisted method...yeah, don't do it. That part would be executed possibly on a read only DB conn
- if not frappe.flags.in_test or in_request:
+ if not frappe.in_test or in_request:
frappe.db.commit()
diff --git a/frappe/core/doctype/data_import/data_import.py b/frappe/core/doctype/data_import/data_import.py
index a0ee30296d..b0ee905689 100644
--- a/frappe/core/doctype/data_import/data_import.py
+++ b/frappe/core/doctype/data_import/data_import.py
@@ -101,7 +101,7 @@ class DataImport(Document):
def start_import(self):
from frappe.utils.scheduler import is_scheduler_inactive
- run_now = frappe.flags.in_test or frappe.conf.developer_mode
+ run_now = frappe.in_test or frappe.conf.developer_mode
if is_scheduler_inactive() and not run_now:
frappe.throw(_("Scheduler is inactive. Cannot import data."), title=_("Scheduler Inactive"))
diff --git a/frappe/core/doctype/doctype/doctype.py b/frappe/core/doctype/doctype/doctype.py
index 77a3864860..1b94db76a9 100644
--- a/frappe/core/doctype/doctype/doctype.py
+++ b/frappe/core/doctype/doctype/doctype.py
@@ -322,7 +322,7 @@ class DocType(Document):
def check_developer_mode(self):
"""Throw exception if not developer mode or via patch"""
- if frappe.flags.in_patch or frappe.flags.in_test:
+ if frappe.flags.in_patch or frappe.in_test:
return
if not frappe.conf.get("developer_mode") and not self.custom:
@@ -594,7 +594,7 @@ class DocType(Document):
global_search_fields_after_update.append("name")
if set(global_search_fields_before_update) != set(global_search_fields_after_update):
- now = (not frappe.request) or frappe.flags.in_test or frappe.flags.in_install
+ now = (not frappe.request) or frappe.in_test or frappe.flags.in_install
frappe.enqueue("frappe.utils.global_search.rebuild_for_doctype", now=now, doctype=self.name)
def set_base_class_for_controller(self):
diff --git a/frappe/core/doctype/role_profile/role_profile.py b/frappe/core/doctype/role_profile/role_profile.py
index 9d790bc84a..bab959c545 100644
--- a/frappe/core/doctype/role_profile/role_profile.py
+++ b/frappe/core/doctype/role_profile/role_profile.py
@@ -29,7 +29,7 @@ class RoleProfile(Document):
self.clear_cache()
self.queue_action(
"update_all_users",
- now=frappe.flags.in_test or frappe.flags.in_install,
+ now=frappe.in_test or frappe.flags.in_install,
enqueue_after_commit=True,
queue="long",
)
diff --git a/frappe/core/doctype/user/test_user.py b/frappe/core/doctype/user/test_user.py
index 3cb5991363..ac66c9feb6 100644
--- a/frappe/core/doctype/user/test_user.py
+++ b/frappe/core/doctype/user/test_user.py
@@ -25,6 +25,7 @@ from frappe.model.delete_doc import delete_doc
from frappe.tests import IntegrationTestCase
from frappe.tests.classes.context_managers import change_settings
from frappe.tests.test_api import FrappeAPITestCase
+from frappe.tests.utils import toggle_test_mode
from frappe.utils import get_url
user_module = frappe.core.doctype.user.user
@@ -212,13 +213,15 @@ class TestUser(IntegrationTestCase):
# test password strength while saving user with new password
user = frappe.get_doc("User", "test@example.com")
- frappe.flags.in_test = False
- user.new_password = "password"
- self.assertRaises(frappe.exceptions.ValidationError, user.save)
- user.reload()
- user.new_password = "Eastern_43A1W"
- user.save()
- frappe.flags.in_test = True
+ toggle_test_mode(False)
+ try:
+ user.new_password = "password"
+ self.assertRaises(frappe.exceptions.ValidationError, user.save)
+ user.reload()
+ user.new_password = "Eastern_43A1W"
+ user.save()
+ finally:
+ toggle_test_mode(True)
def test_comment_mentions(self):
comment = """
diff --git a/frappe/core/doctype/user/user.py b/frappe/core/doctype/user/user.py
index c03dc195b2..f53351b4ff 100644
--- a/frappe/core/doctype/user/user.py
+++ b/frappe/core/doctype/user/user.py
@@ -173,7 +173,7 @@ class User(Document):
self.__new_password = self.new_password
self.new_password = ""
- if not frappe.flags.in_test:
+ if not frappe.in_test:
self.password_strength_test()
if self.name not in STANDARD_USERS:
@@ -269,7 +269,7 @@ class User(Document):
self.share_with_self()
clear_notifications(user=self.name)
frappe.clear_cache(user=self.name)
- now = frappe.flags.in_test or frappe.flags.in_install
+ now = frappe.in_test or frappe.flags.in_install
self.send_password_notification(self.__new_password)
frappe.enqueue(
"frappe.core.doctype.user.user.create_contact",
diff --git a/frappe/desk/doctype/notification_log/notification_log.py b/frappe/desk/doctype/notification_log/notification_log.py
index dc54833b5a..c192eccede 100644
--- a/frappe/desk/doctype/notification_log/notification_log.py
+++ b/frappe/desk/doctype/notification_log/notification_log.py
@@ -94,8 +94,8 @@ def enqueue_create_notification(users: list[str] | str, doc: dict):
"frappe.desk.doctype.notification_log.notification_log.make_notification_logs",
doc=doc,
users=users,
- now=frappe.flags.in_test,
- enqueue_after_commit=not frappe.flags.in_test,
+ now=frappe.in_test,
+ enqueue_after_commit=not frappe.in_test,
)
@@ -141,7 +141,7 @@ def send_notification_email(doc: NotificationLog):
template="new_notification",
args=args,
header=[header, "orange"],
- now=frappe.flags.in_test,
+ now=frappe.in_test,
)
diff --git a/frappe/desk/doctype/system_health_report/system_health_report.py b/frappe/desk/doctype/system_health_report/system_health_report.py
index fbf6881528..a9fccc4d48 100644
--- a/frappe/desk/doctype/system_health_report/system_health_report.py
+++ b/frappe/desk/doctype/system_health_report/system_health_report.py
@@ -57,7 +57,7 @@ def health_check(step: str):
try:
return func(*args, **kwargs)
except Exception as e:
- if frappe.flags.in_test:
+ if frappe.in_test:
raise
frappe.log(frappe.get_traceback())
# nosemgrep
diff --git a/frappe/desk/doctype/workspace/workspace.py b/frappe/desk/doctype/workspace/workspace.py
index 3dd399f036..07f4c21d26 100644
--- a/frappe/desk/doctype/workspace/workspace.py
+++ b/frappe/desk/doctype/workspace/workspace.py
@@ -235,7 +235,7 @@ def disable_saving_as_public():
frappe.flags.in_install
or frappe.flags.in_uninstall
or frappe.flags.in_patch
- or frappe.flags.in_test
+ or frappe.in_test
or frappe.flags.in_fixtures
or frappe.flags.in_migrate
)
diff --git a/frappe/desk/page/setup_wizard/setup_wizard.py b/frappe/desk/page/setup_wizard/setup_wizard.py
index 26c21e107d..97d2ee0f61 100755
--- a/frappe/desk/page/setup_wizard/setup_wizard.py
+++ b/frappe/desk/page/setup_wizard/setup_wizard.py
@@ -244,7 +244,7 @@ def update_system_settings(args): # nosemgrep
"date_format": frappe.db.get_value("Country", args.get("country"), "date_format"),
"time_format": frappe.db.get_value("Country", args.get("country"), "time_format"),
"number_format": number_format,
- "enable_scheduler": 1 if not frappe.flags.in_test else 0,
+ "enable_scheduler": 1 if not frappe.in_test else 0,
"backup_limit": 3, # Default for downloadable backups
"enable_telemetry": cint(args.get("enable_telemetry")),
}
diff --git a/frappe/email/doctype/email_account/email_account.py b/frappe/email/doctype/email_account/email_account.py
index 1a0169ea8b..28100bbb9f 100755
--- a/frappe/email/doctype/email_account/email_account.py
+++ b/frappe/email/doctype/email_account/email_account.py
@@ -159,7 +159,7 @@ class EmailAccount(Document):
if self.enable_incoming and self.use_imap and len(self.imap_folder) <= 0:
frappe.throw(_("You need to set one IMAP folder for {0}").format(frappe.bold(self.email_id)))
- if frappe.local.flags.in_patch or frappe.local.flags.in_test:
+ if frappe.local.flags.in_patch or frappe.in_test:
return
use_oauth = self.auth_method == "OAuth"
@@ -363,9 +363,7 @@ class EmailAccount(Document):
@property
def _password(self):
- raise_exception = not (
- self.auth_method == "OAuth" or self.no_smtp_authentication or frappe.flags.in_test
- )
+ raise_exception = not (self.auth_method == "OAuth" or self.no_smtp_authentication or frappe.in_test)
return self.get_password(raise_exception=raise_exception)
@property
@@ -565,7 +563,7 @@ class EmailAccount(Document):
self.set_failed_attempts_count(self.get_failed_attempts_count() + 1)
def _disable_broken_incoming_account(self, description):
- if frappe.flags.in_test:
+ if frappe.in_test:
return
self.db_set("enable_incoming", 0)
diff --git a/frappe/email/doctype/email_domain/email_domain.py b/frappe/email/doctype/email_domain/email_domain.py
index adb0597c3e..32c9696b18 100644
--- a/frappe/email/doctype/email_domain/email_domain.py
+++ b/frappe/email/doctype/email_domain/email_domain.py
@@ -81,7 +81,7 @@ class EmailDomain(Document):
def validate(self):
"""Validate POP3/IMAP and SMTP connections."""
- if frappe.local.flags.in_patch or frappe.local.flags.in_test or frappe.local.flags.in_install:
+ if frappe.local.flags.in_patch or frappe.in_test or frappe.local.flags.in_install:
return
self.validate_incoming_server_conn()
diff --git a/frappe/email/doctype/email_queue/email_queue.py b/frappe/email/doctype/email_queue/email_queue.py
index 526188f050..68cecd4d0e 100644
--- a/frappe/email/doctype/email_queue/email_queue.py
+++ b/frappe/email/doctype/email_queue/email_queue.py
@@ -182,7 +182,7 @@ class EmailQueue(Document):
message = ctx.build_message(recipient.recipient)
if method := get_hook_method("override_email_send"):
method(self, self.sender, recipient.recipient, message)
- elif not frappe.flags.in_test or frappe.flags.testing_email:
+ elif not frappe.in_test or frappe.flags.testing_email:
if ctx.email_account_doc.service == "Frappe Mail":
is_newsletter = self.reference_doctype == "Newsletter"
ctx.frappe_mail_client.send_raw(
@@ -200,7 +200,7 @@ class EmailQueue(Document):
ctx.update_recipient_status_to_sent(recipient)
- if frappe.flags.in_test and not frappe.flags.testing_email:
+ if frappe.in_test and not frappe.flags.testing_email:
frappe.flags.sent_mail = message
return
@@ -773,7 +773,7 @@ class QueueBuilder:
job_name=frappe.utils.get_job_name(
"send_bulk_emails_for", self.reference_doctype, self.reference_name
),
- now=frappe.flags.in_test or send_now,
+ now=frappe.in_test or send_now,
queue="long",
)
diff --git a/frappe/email/doctype/newsletter/newsletter.py b/frappe/email/doctype/newsletter/newsletter.py
index c38f906c6d..8f4702ff28 100644
--- a/frappe/email/doctype/newsletter/newsletter.py
+++ b/frappe/email/doctype/newsletter/newsletter.py
@@ -210,7 +210,7 @@ class Newsletter(WebsiteGenerator):
args["message"] = self.get_message(medium="email")
is_auto_commit_set = bool(frappe.db.auto_commit_on_many_writes)
- frappe.db.auto_commit_on_many_writes = not frappe.flags.in_test
+ frappe.db.auto_commit_on_many_writes = not frappe.in_test
frappe.sendmail(
subject=self.subject,
@@ -421,7 +421,7 @@ def send_scheduled_email():
frappe.db.set_value("Newsletter", newsletter_name, "email_sent", 0)
newsletter.log_error("Failed to send newsletter")
- if not frappe.flags.in_test:
+ if not frappe.in_test:
frappe.db.commit()
frappe.flags.is_scheduler_running = False
diff --git a/frappe/email/doctype/notification/notification.py b/frappe/email/doctype/notification/notification.py
index 24ddc58c81..00fe5f25ec 100644
--- a/frappe/email/doctype/notification/notification.py
+++ b/frappe/email/doctype/notification/notification.py
@@ -322,7 +322,7 @@ def get_context(context):
"frappe.email.doctype.notification.notification.evaluate_alert",
doc=doc,
alert=self,
- now=frappe.flags.in_test,
+ now=frappe.in_test,
enqueue_after_commit=enqueue_after_commit,
)
diff --git a/frappe/email/queue.py b/frappe/email/queue.py
index bad7e7abd3..cd6de1ff81 100755
--- a/frappe/email/queue.py
+++ b/frappe/email/queue.py
@@ -95,7 +95,7 @@ def get_unsubcribed_url(reference_doctype, reference_name, email, unsubscribe_me
@frappe.whitelist(allow_guest=True)
def unsubscribe(doctype, name, email):
# unsubsribe from comments and communications
- if not frappe.flags.in_test and not verify_request():
+ if not frappe.in_test and not verify_request():
return
try:
diff --git a/frappe/email/receive.py b/frappe/email/receive.py
index febbdc63ee..1ddf69afcb 100644
--- a/frappe/email/receive.py
+++ b/frappe/email/receive.py
@@ -632,7 +632,7 @@ class InboundMail(Email):
def process(self):
"""Create communication record from email."""
if self.is_sender_same_as_receiver() and not self.is_reply():
- if frappe.flags.in_test:
+ if frappe.in_test:
print("WARN: Cannot pull email. Sender same as recipient inbox")
raise SentEmailInInboxError
diff --git a/frappe/email/smtp.py b/frappe/email/smtp.py
index 2b64c8e528..2f87fc166c 100644
--- a/frappe/email/smtp.py
+++ b/frappe/email/smtp.py
@@ -109,7 +109,7 @@ class SMTPServer:
frappe.request.after_response.add(self.quit)
elif frappe.job:
frappe.job.after_job.add(self.quit)
- elif not frappe.flags.in_test:
+ elif not frappe.in_test:
# Console?
import atexit
diff --git a/frappe/integrations/doctype/webhook/__init__.py b/frappe/integrations/doctype/webhook/__init__.py
index 18d5cfa5e3..2d5f75124e 100644
--- a/frappe/integrations/doctype/webhook/__init__.py
+++ b/frappe/integrations/doctype/webhook/__init__.py
@@ -115,6 +115,6 @@ def flush_webhook_execution_queue():
"frappe.integrations.doctype.webhook.webhook.enqueue_webhook",
doc=instance.doc,
webhook=instance.webhook,
- now=frappe.flags.in_test,
+ now=frappe.in_test,
queue=instance.webhook.background_jobs_queue or "default",
)
diff --git a/frappe/model/base_document.py b/frappe/model/base_document.py
index fac66fa4d8..7797b4d9ce 100644
--- a/frappe/model/base_document.py
+++ b/frappe/model/base_document.py
@@ -977,7 +977,7 @@ class BaseDocument:
self.set(df.fieldname, cstr(self.get(df.fieldname)).strip())
value = self.get(df.fieldname)
- if value not in options and not (frappe.flags.in_test and value.startswith("_T-")):
+ if value not in options and not (frappe.in_test and value.startswith("_T-")):
# show an elaborate message
prefix = _("Row #{0}:").format(self.idx) if self.get("parentfield") else ""
label = _(self.meta.get_label(df.fieldname))
diff --git a/frappe/model/delete_doc.py b/frappe/model/delete_doc.py
index 4306b3c051..849cc06707 100644
--- a/frappe/model/delete_doc.py
+++ b/frappe/model/delete_doc.py
@@ -153,7 +153,7 @@ def delete_doc(
"frappe.model.delete_doc.delete_dynamic_links",
doctype=doc.doctype,
name=doc.name,
- now=frappe.flags.in_test,
+ now=frappe.in_test,
enqueue_after_commit=True,
)
diff --git a/frappe/model/document.py b/frappe/model/document.py
index 4ab103fd13..59d9549ad1 100644
--- a/frappe/model/document.py
+++ b/frappe/model/document.py
@@ -499,7 +499,7 @@ class Document(BaseDocument):
if ignore_permissions is not None:
self.flags.ignore_permissions = ignore_permissions
- self.flags.ignore_version = frappe.flags.in_test if ignore_version is None else ignore_version
+ self.flags.ignore_version = frappe.in_test if ignore_version is None else ignore_version
if self.get("__islocal") or not self.get("name"):
return self.insert()
diff --git a/frappe/model/dynamic_links.py b/frappe/model/dynamic_links.py
index 9ed56be416..a054406c2d 100644
--- a/frappe/model/dynamic_links.py
+++ b/frappe/model/dynamic_links.py
@@ -32,7 +32,7 @@ def get_dynamic_link_map(for_delete=False):
Note: Will not map single doctypes
"""
- if getattr(frappe.local, "dynamic_link_map", None) is None or frappe.flags.in_test:
+ if getattr(frappe.local, "dynamic_link_map", None) is None or frappe.in_test:
# Build from scratch
dynamic_link_map = {}
for df in get_dynamic_links():
diff --git a/frappe/model/trace.py b/frappe/model/trace.py
index c9b0cb7cc5..4c66e1f3c4 100644
--- a/frappe/model/trace.py
+++ b/frappe/model/trace.py
@@ -90,7 +90,7 @@ class TracedValue:
"""
if value in self.forbidden_values:
- if frappe.flags.in_test:
+ if frappe.in_test:
frappe.throw(f"{self.field_name} cannot be set to {value}", AssertionError)
else:
frappe.throw(f"{self.field_name} cannot be set to {value}")
@@ -99,7 +99,7 @@ class TracedValue:
try:
self.custom_validation(obj, value)
except Exception as e:
- if frappe.flags.in_test:
+ if frappe.in_test:
frappe.throw(str(e), AssertionError)
else:
frappe.throw(str(e))
diff --git a/frappe/parallel_test_runner.py b/frappe/parallel_test_runner.py
index ed2840bfaa..c558c76fee 100644
--- a/frappe/parallel_test_runner.py
+++ b/frappe/parallel_test_runner.py
@@ -12,7 +12,7 @@ import click
import requests
import frappe
-from frappe.tests.utils import make_test_records
+from frappe.tests.utils import make_test_records, toggle_test_mode
from .testing.environment import _decorate_all_methods_and_functions_with_type_checker
from .testing.result import TestResult
@@ -53,7 +53,7 @@ class ParallelTestRunner:
if self.dry_run:
return
- frappe.flags.in_test = True
+ toggle_test_mode(True)
frappe.clear_cache()
frappe.utils.scheduler.disable_scheduler()
_decorate_all_methods_and_functions_with_type_checker()
diff --git a/frappe/printing/doctype/print_format/print_format.py b/frappe/printing/doctype/print_format/print_format.py
index 8f8ea8f5d0..7c96225013 100644
--- a/frappe/printing/doctype/print_format/print_format.py
+++ b/frappe/printing/doctype/print_format/print_format.py
@@ -70,7 +70,7 @@ class PrintFormat(Document):
and not frappe.local.conf.get("developer_mode")
and not frappe.flags.in_migrate
and not frappe.flags.in_install
- and not frappe.flags.in_test
+ and not frappe.in_test
):
frappe.throw(frappe._("Standard Print Format cannot be updated"))
diff --git a/frappe/printing/doctype/print_style/print_style.py b/frappe/printing/doctype/print_style/print_style.py
index 1c1d29a71f..b983326d63 100644
--- a/frappe/printing/doctype/print_style/print_style.py
+++ b/frappe/printing/doctype/print_style/print_style.py
@@ -26,7 +26,7 @@ class PrintStyle(Document):
self.standard == 1
and not frappe.local.conf.get("developer_mode")
and not frappe.flags.in_import
- and not frappe.flags.in_test
+ and not frappe.in_test
):
frappe.throw(frappe._("Standard Print Style cannot be changed. Please duplicate to edit."))
diff --git a/frappe/recorder.py b/frappe/recorder.py
index b20f09355e..e47a064d2c 100644
--- a/frappe/recorder.py
+++ b/frappe/recorder.py
@@ -360,7 +360,7 @@ def start(
@administrator_only
def stop(*args, **kwargs):
frappe.client_cache.set_value(RECORDER_INTERCEPT_FLAG, False)
- frappe.enqueue(post_process, now=frappe.flags.in_test)
+ frappe.enqueue(post_process, now=frappe.in_test)
@frappe.whitelist()
diff --git a/frappe/sessions.py b/frappe/sessions.py
index f002aee08f..f8eb48e231 100644
--- a/frappe/sessions.py
+++ b/frappe/sessions.py
@@ -199,7 +199,7 @@ def get_csrf_token():
def generate_csrf_token():
frappe.local.session.data.csrf_token = frappe.generate_hash()
- if not frappe.flags.in_test:
+ if not frappe.in_test:
frappe.local.session_obj.update(force=True)
diff --git a/frappe/testing/environment.py b/frappe/testing/environment.py
index ac7392c99a..079daa588f 100644
--- a/frappe/testing/environment.py
+++ b/frappe/testing/environment.py
@@ -29,7 +29,7 @@ import tomli
import frappe
import frappe.utils.scheduler
-from frappe.tests.utils import make_test_records
+from frappe.tests.utils import make_test_records, toggle_test_mode
from .runner import TestRunnerError
from .utils import debug_timer
@@ -53,7 +53,7 @@ def _initialize_test_environment(site, config):
raise TestRunnerError(f"Failed to connect to the database: {e}") from e
# Set various test-related flags
- frappe.flags.in_test = True
+ toggle_test_mode(True)
frappe.flags.print_messages = logger.getEffectiveLevel() < logging.INFO
frappe.flags.tests_verbose = logger.getEffectiveLevel() < logging.INFO
diff --git a/frappe/tests/test_api_v2.py b/frappe/tests/test_api_v2.py
index c5f66806b4..518c1cc543 100644
--- a/frappe/tests/test_api_v2.py
+++ b/frappe/tests/test_api_v2.py
@@ -6,6 +6,7 @@ import requests
import frappe
from frappe.installer import update_site_config
from frappe.tests.test_api import FrappeAPITestCase, suppress_stdout
+from frappe.tests.utils import toggle_test_mode
authorization_token = None
@@ -88,7 +89,13 @@ class TestResourceAPIV2(FrappeAPITestCase):
def test_copy_document(self):
doc = frappe.get_doc(self.DOCTYPE, self.GENERATED_DOCUMENTS[0])
- response = self.get(self.resource(self.DOCTYPE, doc.name, "copy"))
+ # disabled temporarily to assert that `docstatus` is not copied outside of tests
+ toggle_test_mode(False)
+ try:
+ response = self.get(self.resource(self.DOCTYPE, doc.name, "copy"))
+ finally:
+ toggle_test_mode(True)
+
self.assertEqual(response.status_code, 200)
data = response.json["data"]
diff --git a/frappe/tests/test_trace.py b/frappe/tests/test_trace.py
index 39e01d56db..6bf02dfbd4 100644
--- a/frappe/tests/test_trace.py
+++ b/frappe/tests/test_trace.py
@@ -5,6 +5,7 @@ import frappe
from frappe.model.document import Document
from frappe.model.trace import TracedDocument, traced_field
from frappe.tests import UnitTestCase
+from frappe.tests.utils import toggle_test_mode
def create_mock_meta(doctype):
@@ -107,9 +108,9 @@ class TestTracedFieldContext(UnitTestCase):
def test_traced_field_context_not_in_test_mode(self):
doc = TestDocument()
- # Temporarily set frappe.flags.in_test to False
- original_in_test = frappe.flags.in_test
- frappe.flags.in_test = False
+ # Temporarily set frappe.in_test to False
+ original_in_test = frappe.in_test
+ toggle_test_mode(False)
try:
with self.trace_fields(TestDocument, test_field={"forbidden_values": ["forbidden"]}):
@@ -120,7 +121,7 @@ class TestTracedFieldContext(UnitTestCase):
self.assertEqual(doc.test_field, "allowed")
finally:
# Restore the original in_test flag
- frappe.flags.in_test = original_in_test
+ toggle_test_mode(original_in_test)
# After context
doc.test_field = "forbidden"
diff --git a/frappe/tests/test_utils.py b/frappe/tests/test_utils.py
index 01871cca2d..9b62316e20 100644
--- a/frappe/tests/test_utils.py
+++ b/frappe/tests/test_utils.py
@@ -20,6 +20,7 @@ import frappe
from frappe.installer import parse_app_name
from frappe.model.document import Document
from frappe.tests import IntegrationTestCase, MockedRequestTestCase
+from frappe.tests.utils import toggle_test_mode
from frappe.utils import (
add_trackers_to_url,
ceil,
@@ -988,9 +989,9 @@ class TestLazyLoader(IntegrationTestCase):
class TestIdenticon(IntegrationTestCase):
def test_get_gravatar(self):
# developers@frappe.io has a gravatar linked so str URL will be returned
- frappe.flags.in_test = False
+ toggle_test_mode(False)
gravatar_url = get_gravatar("developers@frappe.io")
- frappe.flags.in_test = True
+ toggle_test_mode(True)
self.assertIsInstance(gravatar_url, str)
self.assertTrue(gravatar_url.startswith("http"))
diff --git a/frappe/tests/ui_test_helpers.py b/frappe/tests/ui_test_helpers.py
index f4a26a6325..07343852db 100644
--- a/frappe/tests/ui_test_helpers.py
+++ b/frappe/tests/ui_test_helpers.py
@@ -7,7 +7,7 @@ UI_TEST_USER = "frappe@example.com"
def whitelist_for_tests(fn):
- if frappe.request and not frappe.flags.in_test and not frappe._dev_server:
+ if frappe.request and not frappe.in_test and not frappe._dev_server:
frappe.throw("Cannot run UI tests. Use a development server with `bench start`")
return frappe.whitelist()(fn)
diff --git a/frappe/tests/utils/__init__.py b/frappe/tests/utils/__init__.py
index 1d1192eb6c..58f80f6ecb 100644
--- a/frappe/tests/utils/__init__.py
+++ b/frappe/tests/utils/__init__.py
@@ -26,6 +26,12 @@ def check_orpahned_doctypes():
)
+def toggle_test_mode(enable: bool):
+ """Enable or disable `frappe.in_test` (and related deprecated flag)"""
+ frappe.in_test = enable
+ frappe.local.flags.in_test = enable
+
+
from frappe.deprecation_dumpster import (
get_tests_CompatFrappeTestCase,
)
diff --git a/frappe/utils/__init__.py b/frappe/utils/__init__.py
index 8f7cb8672f..a9bdee4d1a 100644
--- a/frappe/utils/__init__.py
+++ b/frappe/utils/__init__.py
@@ -269,7 +269,7 @@ def has_gravatar(email: str) -> str:
"""Return gravatar url if user has set an avatar at gravatar.com."""
import requests
- if frappe.flags.in_import or frappe.flags.in_install or frappe.flags.in_test:
+ if frappe.flags.in_import or frappe.flags.in_install or frappe.in_test:
# no gravatar if via upload
# since querying gravatar for every item will be slow
return ""
diff --git a/frappe/utils/background_jobs.py b/frappe/utils/background_jobs.py
index f42fef8032..5926c5c656 100644
--- a/frappe/utils/background_jobs.py
+++ b/frappe/utils/background_jobs.py
@@ -139,7 +139,7 @@ def enqueue(
"unknown", "v17", "Using enqueue with `job_name` is deprecated, use `job_id` instead."
)
- if not is_async and not frappe.flags.in_test:
+ if not is_async and not frappe.in_test:
from frappe.deprecation_dumpster import deprecation_warning
deprecation_warning(
@@ -148,7 +148,7 @@ def enqueue(
"Using enqueue with is_async=False outside of tests is not recommended, use now=True instead.",
)
- call_directly = now or (not is_async and not frappe.flags.in_test)
+ call_directly = now or (not is_async and not frappe.in_test)
if call_directly:
return frappe.call(method, **kwargs)
@@ -243,7 +243,9 @@ def execute_job(site, method, event, job_name, kwargs, user=None, is_async=True,
frappe.init(site, force=True)
frappe.connect()
if os.environ.get("CI"):
- frappe.flags.in_test = True
+ from frappe.tests.utils import toggle_test_mode
+
+ toggle_test_mode(True)
if user:
frappe.set_user(user)
diff --git a/frappe/utils/user.py b/frappe/utils/user.py
index 680a1d786f..5d9e1dc65e 100644
--- a/frappe/utils/user.py
+++ b/frappe/utils/user.py
@@ -59,7 +59,7 @@ class UserPermissions:
return user
- if not frappe.flags.in_install_db and not frappe.flags.in_test:
+ if not frappe.flags.in_install_db and not frappe.in_test:
user_doc = frappe.cache.hget("user_doc", self.name, get_user_doc)
if user_doc:
self.doc = frappe.get_doc(user_doc)
diff --git a/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py b/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py
index 188ccba6b6..ecd5437e06 100644
--- a/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py
+++ b/frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py
@@ -136,7 +136,7 @@ class PersonalDataDeletionRequest(Document):
"_anonymize_data",
queue="long",
timeout=3000,
- now=frappe.flags.in_test,
+ now=frappe.in_test,
)
def notify_user_after_deletion(self):
diff --git a/frappe/website/doctype/personal_data_download_request/personal_data_download_request.py b/frappe/website/doctype/personal_data_download_request/personal_data_download_request.py
index c725ca8c0b..a41011e9fb 100644
--- a/frappe/website/doctype/personal_data_download_request/personal_data_download_request.py
+++ b/frappe/website/doctype/personal_data_download_request/personal_data_download_request.py
@@ -32,7 +32,7 @@ class PersonalDataDownloadRequest(Document):
"generate_file_and_send_mail",
queue="short",
personal_data=personal_data,
- now=frappe.flags.in_test,
+ now=frappe.in_test,
)
def generate_file_and_send_mail(self, personal_data):
diff --git a/frappe/website/doctype/web_form/web_form.py b/frappe/website/doctype/web_form/web_form.py
index 615a1ae16d..c426e79e94 100644
--- a/frappe/website/doctype/web_form/web_form.py
+++ b/frappe/website/doctype/web_form/web_form.py
@@ -79,10 +79,7 @@ class WebForm(WebsiteGenerator):
self.module = frappe.db.get_value("DocType", self.doc_type, "module")
in_user_env = not (
- frappe.flags.in_install
- or frappe.flags.in_patch
- or frappe.flags.in_test
- or frappe.flags.in_fixtures
+ frappe.flags.in_install or frappe.flags.in_patch or frappe.in_test or frappe.flags.in_fixtures
)
if in_user_env and self.is_standard and not frappe.conf.developer_mode:
# only published can be changed for standard web forms
diff --git a/frappe/website/doctype/website_theme/website_theme.py b/frappe/website/doctype/website_theme/website_theme.py
index e7487bf4d8..2ae69a92ba 100644
--- a/frappe/website/doctype/website_theme/website_theme.py
+++ b/frappe/website/doctype/website_theme/website_theme.py
@@ -55,7 +55,7 @@ class WebsiteTheme(Document):
not self.custom
and frappe.local.conf.get("developer_mode")
and not frappe.flags.in_import
- and not frappe.flags.in_test
+ and not frappe.in_test
):
self.export_doc()
@@ -65,7 +65,7 @@ class WebsiteTheme(Document):
return (
not self.custom
and not frappe.local.conf.get("developer_mode")
- and not (frappe.flags.in_import or frappe.flags.in_test or frappe.flags.in_migrate)
+ and not (frappe.flags.in_import or frappe.in_test or frappe.flags.in_migrate)
)
def on_trash(self):
diff --git a/frappe/website/utils.py b/frappe/website/utils.py
index f3b06647b2..5dca169bc0 100644
--- a/frappe/website/utils.py
+++ b/frappe/website/utils.py
@@ -94,7 +94,7 @@ def get_comment_list(doctype, name):
def get_home_page():
- if frappe.local.flags.home_page and not frappe.flags.in_test:
+ if frappe.local.flags.home_page and not frappe.in_test:
return frappe.local.flags.home_page
def _get_home_page():
diff --git a/frappe/website/website_generator.py b/frappe/website/website_generator.py
index 17d2a6f1bb..cdf05cce8e 100644
--- a/frappe/website/website_generator.py
+++ b/frappe/website/website_generator.py
@@ -155,7 +155,7 @@ class WebsiteGenerator(Document):
def remove_old_route_from_index(self):
"""Remove page from the website index if the route has changed."""
- if self.allow_website_search_indexing() or frappe.flags.in_test:
+ if self.allow_website_search_indexing() or frappe.in_test:
return
old_doc = self.get_doc_before_save()
# Check if the route is changed
@@ -169,7 +169,7 @@ class WebsiteGenerator(Document):
- remove document from index if document is unpublished
- update index otherwise
"""
- if not self.allow_website_search_indexing() or frappe.flags.in_test:
+ if not self.allow_website_search_indexing() or frappe.in_test:
return
if self.is_website_published():
diff --git a/frappe/workflow/doctype/workflow_action/workflow_action.py b/frappe/workflow/doctype/workflow_action/workflow_action.py
index 2982a9842e..7766970b84 100644
--- a/frappe/workflow/doctype/workflow_action/workflow_action.py
+++ b/frappe/workflow/doctype/workflow_action/workflow_action.py
@@ -122,7 +122,7 @@ def process_workflow_actions(doc, state):
doc=doc,
transitions=next_possible_transitions,
enqueue_after_commit=True,
- now=frappe.flags.in_test,
+ now=frappe.in_test,
)
diff --git a/frappe/www/list.py b/frappe/www/list.py
index 090e65ab74..ad83262912 100644
--- a/frappe/www/list.py
+++ b/frappe/www/list.py
@@ -56,7 +56,7 @@ def get(doctype, txt=None, limit_start=0, limit=20, pathname=None, **kwargs):
new_context.doc = frappe.get_doc(doc.doctype, doc.name)
new_context.update(new_context.doc.as_dict())
- if not frappe.flags.in_test:
+ if not frappe.in_test:
pathname = pathname or frappe.local.request.path
new_context["pathname"] = pathname.strip("/ ")
new_context.update(list_context)
From 6091040e9750d30097e87aeb6b46138925106bbe Mon Sep 17 00:00:00 2001
From: Ankush Menat
Date: Tue, 17 Jun 2025 19:29:31 +0530
Subject: [PATCH 018/196] fix: Skip redis cache signal if redis is down
(#32967)
https://github.com/frappe/frappe/pull/32888#issuecomment-2975345660
---
frappe/utils/redis_wrapper.py | 14 +++++++++-----
1 file changed, 9 insertions(+), 5 deletions(-)
diff --git a/frappe/utils/redis_wrapper.py b/frappe/utils/redis_wrapper.py
index 8c0b6b7bfc..844852b4d5 100644
--- a/frappe/utils/redis_wrapper.py
+++ b/frappe/utils/redis_wrapper.py
@@ -5,11 +5,11 @@ import pickle
import re
import threading
import time
-import typing
from collections import namedtuple
from contextlib import suppress
import redis
+import redis.exceptions
from redis.commands.search import Search
from redis.exceptions import ResponseError
@@ -603,10 +603,14 @@ class ClientCache:
This can include cached controller resolution, @site_cache and any other similar persistent
cache.
"""
- self.redis.publish(
- "clear_persistent_cache",
- json.dumps({"doctype": doctype, "site": frappe.local.site}),
- )
+ try:
+ self.redis.publish(
+ "clear_persistent_cache",
+ json.dumps({"doctype": doctype, "site": frappe.local.site}),
+ )
+ except redis.exceptions.ConnectionError:
+ # Assume bench isn't running
+ pass
def _handle_invalidation(self, message):
if message["data"] is None:
From b79c5476a7139d4056d348534e920ddef77b6fb5 Mon Sep 17 00:00:00 2001
From: sokumon
Date: Tue, 17 Jun 2025 20:17:50 +0530
Subject: [PATCH 019/196] fix: restrict fields according to permlevel after
update as well
---
frappe/desk/form/save.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/frappe/desk/form/save.py b/frappe/desk/form/save.py
index cd340a8ef5..3aafd91ce3 100644
--- a/frappe/desk/form/save.py
+++ b/frappe/desk/form/save.py
@@ -79,7 +79,7 @@ def send_updated_docs(doc):
from .load import get_docinfo
get_docinfo(doc)
-
+ doc.apply_fieldlevel_read_permissions()
d = doc.as_dict()
if hasattr(doc, "localname"):
d["localname"] = doc.localname
From 8734d450333d4394aed14a90798f68a3b4b5d6a0 Mon Sep 17 00:00:00 2001
From: Ejaaz Khan
Date: Tue, 17 Jun 2025 20:44:20 +0530
Subject: [PATCH 020/196] refactor: remove duplicate code
---
frappe/desk/query_report.py | 24 ++++++++++--------------
1 file changed, 10 insertions(+), 14 deletions(-)
diff --git a/frappe/desk/query_report.py b/frappe/desk/query_report.py
index ea56ac92fa..08a075f618 100644
--- a/frappe/desk/query_report.py
+++ b/frappe/desk/query_report.py
@@ -730,26 +730,22 @@ def has_match(
def has_unrestricted_read_access(doctype, user):
roles = get_roles(user)
+ permission_filters = {
+ "parent": doctype,
+ "role": ["in", roles],
+ "permlevel": 0,
+ "read": 1,
+ "if_owner": 0,
+ }
+
standard_perm_exists = frappe.db.exists(
"DocPerm",
- {
- "parent": doctype,
- "role": ["in", roles],
- "permlevel": 0,
- "read": 1,
- "if_owner": 0,
- },
+ permission_filters,
)
custom_perm_exists = frappe.db.exists(
"Custom DocPerm",
- {
- "parent": doctype,
- "role": ["in", roles],
- "permlevel": 0,
- "read": 1,
- "if_owner": 0,
- },
+ permission_filters,
)
has_perm = bool(custom_perm_exists or standard_perm_exists)
From e355a175d842d6294db87f01b13298b443753747 Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Wed, 18 Jun 2025 01:33:11 +0000
Subject: [PATCH 021/196] fix: always defer access log insertion (#32976)
---
frappe/core/doctype/access_log/access_log.py | 14 ++------------
1 file changed, 2 insertions(+), 12 deletions(-)
diff --git a/frappe/core/doctype/access_log/access_log.py b/frappe/core/doctype/access_log/access_log.py
index 5c939587b4..19082c96b7 100644
--- a/frappe/core/doctype/access_log/access_log.py
+++ b/frappe/core/doctype/access_log/access_log.py
@@ -54,13 +54,10 @@ def make_access_log(
page=None,
columns=None,
):
- user = frappe.session.user
- in_request = frappe.request and frappe.request.method == "GET"
-
access_log = frappe.get_doc(
{
"doctype": "Access Log",
- "user": user,
+ "user": frappe.session.user,
"export_from": doctype,
"reference_document": document,
"file_type": file_type,
@@ -72,18 +69,11 @@ def make_access_log(
}
)
- if frappe.flags.read_only:
+ if not frappe.in_test:
access_log.deferred_insert()
- return
else:
access_log.db_insert()
- # `frappe.db.commit` added because insert doesnt `commit` when called in GET requests like `printview`
- # dont commit in test mode. It must be tempting to put this block along with the in_request in the
- # whitelisted method...yeah, don't do it. That part would be executed possibly on a read only DB conn
- if not frappe.in_test or in_request:
- frappe.db.commit()
-
# only for backward compatibility
_make_access_log = make_access_log
From f62bae6f5ab463afc0ba6cd0ffdd56ff6ce3ac98 Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Wed, 18 Jun 2025 04:31:20 +0000
Subject: [PATCH 022/196] refactor: reduce branching in `init_request` (#32981)
---
frappe/app.py | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/frappe/app.py b/frappe/app.py
index d5114ab019..69c0e76847 100644
--- a/frappe/app.py
+++ b/frappe/app.py
@@ -177,14 +177,13 @@ def init_request(request):
# site does not exist
raise NotFound
+ frappe.connect(set_admin_as_user=False)
if frappe.local.conf.maintenance_mode:
- frappe.connect()
if frappe.local.conf.allow_reads_during_maintenance:
setup_read_only_mode()
else:
raise frappe.SessionStopped("Session Stopped")
- else:
- frappe.connect(set_admin_as_user=False)
+
if request.path.startswith("/api/method/upload_file"):
from frappe.core.api.file import get_max_file_size
From 3bb70a905d1198094b94288d298c83631396be6b Mon Sep 17 00:00:00 2001
From: Ankush Menat
Date: Wed, 18 Jun 2025 11:02:57 +0530
Subject: [PATCH 023/196] fix: restrict method types in few whitelisted funcs
(#32984)
---
frappe/desk/doctype/system_console/system_console.py | 2 +-
frappe/desk/form/save.py | 6 +++---
frappe/desk/reportview.py | 6 +++---
3 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/frappe/desk/doctype/system_console/system_console.py b/frappe/desk/doctype/system_console/system_console.py
index 714a2c8240..e70f31d5e8 100644
--- a/frappe/desk/doctype/system_console/system_console.py
+++ b/frappe/desk/doctype/system_console/system_console.py
@@ -49,7 +49,7 @@ class SystemConsole(Document):
frappe.db.commit()
-@frappe.whitelist()
+@frappe.whitelist(methods=["POST"])
def execute_code(doc):
console = frappe.get_doc(json.loads(doc))
console.run()
diff --git a/frappe/desk/form/save.py b/frappe/desk/form/save.py
index 3aafd91ce3..9fe884e5b4 100644
--- a/frappe/desk/form/save.py
+++ b/frappe/desk/form/save.py
@@ -12,7 +12,7 @@ from frappe.utils.scheduler import is_scheduler_inactive
from frappe.utils.telemetry import capture_doc
-@frappe.whitelist()
+@frappe.whitelist(methods=["POST", "PUT"])
def savedocs(doc, action):
"""save / submit / update doclist"""
doc = frappe.get_doc(json.loads(doc))
@@ -51,7 +51,7 @@ def savedocs(doc, action):
frappe.msgprint(frappe._(status_message), indicator="green", alert=True)
-@frappe.whitelist()
+@frappe.whitelist(methods=["POST", "PUT"])
def cancel(doctype=None, name=None, workflow_state_fieldname=None, workflow_state=None):
"""cancel a doclist"""
doc = frappe.get_doc(doctype, name)
@@ -64,7 +64,7 @@ def cancel(doctype=None, name=None, workflow_state_fieldname=None, workflow_stat
frappe.msgprint(frappe._("Cancelled"), indicator="red", alert=True)
-@frappe.whitelist()
+@frappe.whitelist(methods=["POST", "PUT"])
def discard(doctype: str, name: str | int):
"""discard a draft document"""
doc = frappe.get_doc(doctype, name)
diff --git a/frappe/desk/reportview.py b/frappe/desk/reportview.py
index 43c83d0187..be504bb166 100644
--- a/frappe/desk/reportview.py
+++ b/frappe/desk/reportview.py
@@ -315,7 +315,7 @@ def compress(data, args=None):
return {"keys": keys, "values": values, "user_info": user_info}
-@frappe.whitelist()
+@frappe.whitelist(methods=["POST", "PUT"])
def save_report(name, doctype, report_settings):
"""Save reports of type Report Builder from Report View"""
@@ -345,7 +345,7 @@ def save_report(name, doctype, report_settings):
return report.name
-@frappe.whitelist()
+@frappe.whitelist(methods=["POST", "DELETE"])
def delete_report(name):
"""Delete reports of type Report Builder from Report View"""
@@ -555,7 +555,7 @@ def parse_field(field: str) -> tuple[str | None, str]:
return None, key.strip("`")
-@frappe.whitelist()
+@frappe.whitelist(methods=["POST", "DELETE"])
def delete_items():
"""delete selected items"""
import json
From c72a9351d482bc4212b4aa7822aeaa8faad2eadb Mon Sep 17 00:00:00 2001
From: Ejaaz Khan
Date: Wed, 18 Jun 2025 11:04:56 +0530
Subject: [PATCH 024/196] refactor: change site to request cache
---
frappe/desk/query_report.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/frappe/desk/query_report.py b/frappe/desk/query_report.py
index 08a075f618..c6e9e87be7 100644
--- a/frappe/desk/query_report.py
+++ b/frappe/desk/query_report.py
@@ -16,7 +16,7 @@ from frappe.modules import get_module_path, scrub
from frappe.monitor import add_data_to_monitor
from frappe.permissions import get_role_permissions, get_roles, has_permission
from frappe.utils import cint, cstr, flt, format_duration, get_html_format, sbool
-from frappe.utils.caching import site_cache
+from frappe.utils.caching import request_cache
def get_report_doc(report_name):
@@ -726,7 +726,7 @@ def has_match(
return resultant_match
-@site_cache
+@request_cache
def has_unrestricted_read_access(doctype, user):
roles = get_roles(user)
From 3a7db9cbb72bb2521b8d99348aaea232e7a97dff Mon Sep 17 00:00:00 2001
From: Ankush Menat
Date: Wed, 18 Jun 2025 11:34:24 +0530
Subject: [PATCH 025/196] refactor: Default to mysqlclient (#32987)
---
frappe/database/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/frappe/database/__init__.py b/frappe/database/__init__.py
index a68fdb78b5..bde93f048b 100644
--- a/frappe/database/__init__.py
+++ b/frappe/database/__init__.py
@@ -75,7 +75,7 @@ def get_db(socket=None, host=None, user=None, password=None, port=None, cur_db_n
import frappe.database.sqlite.database
return frappe.database.sqlite.database.SQLiteDatabase(cur_db_name=cur_db_name)
- elif conf.use_mysqlclient:
+ elif conf.get("use_mysqlclient", 1):
import frappe.database.mariadb.mysqlclient
return frappe.database.mariadb.mysqlclient.MariaDBDatabase(
From e5b208079d9c3b919f593f6f78164f4ab7fa79b9 Mon Sep 17 00:00:00 2001
From: Ejaaz Khan
Date: Wed, 18 Jun 2025 12:00:41 +0530
Subject: [PATCH 026/196] fix: rate limit issue on sending email login link
---
frappe/www/login.py | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/frappe/www/login.py b/frappe/www/login.py
index fa7d38a50e..c9a5e63816 100644
--- a/frappe/www/login.py
+++ b/frappe/www/login.py
@@ -136,8 +136,12 @@ def login_via_token(login_token: str):
)
+def get_login_with_email_link_ratelimit() -> int:
+ return frappe.get_system_settings("rate_limit_email_link_login") or 5
+
+
@frappe.whitelist(allow_guest=True)
-@rate_limit(limit=5, seconds=60 * 60)
+@rate_limit(limit=get_login_with_email_link_ratelimit, seconds=60 * 60)
def send_login_link(email: str):
if not frappe.get_system_settings("login_with_email_link"):
return
@@ -171,10 +175,6 @@ def _generate_temporary_login_link(email: str, expiry: int):
return get_url(f"/api/method/frappe.www.login.login_via_key?key={key}")
-def get_login_with_email_link_ratelimit() -> int:
- return frappe.get_system_settings("rate_limit_email_link_login") or 5
-
-
@frappe.whitelist(allow_guest=True, methods=["GET"])
@rate_limit(limit=get_login_with_email_link_ratelimit, seconds=60 * 60)
def login_via_key(key: str):
From 865e086bd45c0fe097769d913ced37c4b35243d8 Mon Sep 17 00:00:00 2001
From: Akhil Narang
Date: Wed, 18 Jun 2025 12:33:36 +0530
Subject: [PATCH 027/196] build: bump dependencies (#32975)
* build(deps): bump babel
Signed-off-by: Akhil Narang
* build(deps): bump filelock
Signed-off-by: Akhil Narang
* build(deps): bump GitPython
Signed-off-by: Akhil Narang
* build(deps): bump Jinja2
Signed-off-by: Akhil Narang
* build(deps): bump Pillow
Signed-off-by: Akhil Narang
* build(deps): bump PyJWT
Signed-off-by: Akhil Narang
* build(deps): bump pypdf
Signed-off-by: Akhil Narang
* build(deps): bump pydyf
Signed-off-by: Akhil Narang
* build(deps): bump werkzeug
Signed-off-by: Akhil Narang
* build(deps): bump bs4
Signed-off-by: Akhil Narang
* build(deps): bump bleach
Signed-off-by: Akhil Narang
* build(deps): bump chardet
Signed-off-by: Akhil Narang
* build(deps): bump croniter
Signed-off-by: Akhil Narang
* build(deps): bump cryptography
Signed-off-by: Akhil Narang
* build(deps): bump pyopenssl
Signed-off-by: Akhil Narang
* build(deps): bump cssutils
Signed-off-by: Akhil Narang
* build(deps): bump markdown2
Signed-off-by: Akhil Narang
* build(deps): bump markupsafe
Signed-off-by: Akhil Narang
* build(deps): bump num2words
Signed-off-by: Akhil Narang
* build(deps): bump openpyxl
Signed-off-by: Akhil Narang
* build(deps): bump phonenumbers
Signed-off-by: Akhil Narang
* build(deps): bump psutil
Signed-off-by: Akhil Narang
* build(deps): bump pydantic
Signed-off-by: Akhil Narang
* build(deps): bump pyotp
Signed-off-by: Akhil Narang
* build(deps): bump dateutil
Signed-off-by: Akhil Narang
* build(deps): bump ipython
Signed-off-by: Akhil Narang
* build(deps): bump pytz
Signed-off-by: Akhil Narang
* build(deps): bump hiredis
Signed-off-by: Akhil Narang
* build(deps): bump requests-oauthlib
Signed-off-by: Akhil Narang
* build(deps): bump requests
Signed-off-by: Akhil Narang
* build(deps): bump rsa
Signed-off-by: Akhil Narang
* build(deps): bump sql_metadata
Signed-off-by: Akhil Narang
* build(deps): bump tenacity
Signed-off-by: Akhil Narang
* build(deps): bump traceback-with-variables
Signed-off-by: Akhil Narang
* build(deps): bump tomli
Signed-off-by: Akhil Narang
* build(deps): bump uuid-utils
Signed-off-by: Akhil Narang
* build(deps): bump xlrd
Signed-off-by: Akhil Narang
* build(deps): bump zxcvbn
Signed-off-by: Akhil Narang
* build(deps): bump markdownify
Signed-off-by: Akhil Narang
* build(deps): bump google libraries
Signed-off-by: Akhil Narang
* build(deps): bump posthog
Signed-off-by: Akhil Narang
* build(deps): bump vobject
Signed-off-by: Akhil Narang
* fix(zxcvbn): set max password length as 128
We allow checking till 128 characters, v4.5.0 has a default max of 72
Signed-off-by: Akhil Narang
---------
Signed-off-by: Akhil Narang
---
frappe/utils/password_strength.py | 2 +-
pyproject.toml | 88 +++++++++++++++----------------
2 files changed, 45 insertions(+), 45 deletions(-)
diff --git a/frappe/utils/password_strength.py b/frappe/utils/password_strength.py
index c880d412a6..32c6d567de 100644
--- a/frappe/utils/password_strength.py
+++ b/frappe/utils/password_strength.py
@@ -25,7 +25,7 @@ def test_password_strength(password: str, user_inputs: "Iterable[object] | None"
# will still be checked.
password = password[:128]
- result = zxcvbn(password, user_inputs)
+ result = zxcvbn(password, user_inputs, max_length=128)
result["feedback"] = get_feedback(result.get("score"), result.get("sequence"))
return result
diff --git a/pyproject.toml b/pyproject.toml
index 9912ed905d..10fa3ff521 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -9,85 +9,85 @@ readme = "README.md"
dynamic = ["version"]
dependencies = [
# core dependencies
- "Babel~=2.13.1",
+ "Babel~=2.16.0",
"Click~=8.2.0",
- "filelock~=3.13.1",
+ "filelock~=3.18.0",
"filetype~=1.2.0",
- "GitPython~=3.1.34",
- "Jinja2~=3.1.2",
- "Pillow~=11.0.0",
- "PyJWT~=2.8.0",
+ "GitPython~=3.1.44",
+ "Jinja2~=3.1.6",
+ "Pillow~=11.2.1",
+ "PyJWT~=2.10.1",
# We depend on internal attributes,
# do NOT add loose requirements on PyMySQL versions.
"PyMySQL==1.1.1",
- "pypdf~=3.17.0",
+ "pypdf~=5.6.0",
"PyPika @ git+https://github.com/frappe/pypika@093984977ce157d35e048c51d9ff55a1f0f44570",
"mysqlclient==2.2.7",
"PyQRCode~=1.2.1",
"PyYAML~=6.0.2",
"RestrictedPython~=8.0",
"WeasyPrint==59.0",
- "pydyf==0.10.0",
- "Werkzeug==3.0.6",
+ "pydyf==0.11.0",
+ "Werkzeug==3.1.3",
"Whoosh~=2.7.4",
- "beautifulsoup4~=4.12.2",
+ "beautifulsoup4~=4.13.4",
"bleach-allowlist~=1.0.3",
- "bleach[css]~=6.0.0",
- "chardet~=5.1.0",
- "croniter~=2.0.1",
- "cryptography~=44.0.1",
- "cssutils~=2.9.0",
+ "bleach[css]~=6.2.0",
+ "chardet~=5.2.0",
+ "croniter~=6.0.0",
+ "cryptography~=45.0.4",
+ "cssutils~=2.11.1",
"email-reply-parser~=0.5.12",
"gunicorn @ git+https://github.com/frappe/gunicorn@bb554053bb87218120d76ab6676af7015680e8b6",
"html5lib~=1.1",
- "ipython~=8.15.0",
+ "ipython~=8.37.0",
"ldap3~=2.9",
- "markdown2~=2.4.8",
- "MarkupSafe>=2.1.0,<3",
- "num2words~=0.5.12",
+ "markdown2~=2.5.3",
+ "MarkupSafe~=3.0.2",
+ "num2words~=0.5.14",
"oauthlib~=3.2.2",
- "openpyxl~=3.1.2",
+ "openpyxl~=3.1.5",
"passlib~=1.7.4",
"pdfkit~=1.0.0",
- "phonenumbers==8.13.55",
+ "phonenumbers~=9.0.7",
"premailer~=3.10.0",
- "psutil~=5.9.5",
+ "psutil~=7.0.0",
"psycopg2-binary~=2.9.1",
- "pyOpenSSL~=25.0.0",
- "pydantic~=2.10.2",
- "pyotp~=2.8.0",
- "python-dateutil~=2.8.2",
- "pytz==2023.3",
+ "pyOpenSSL~=25.1.0",
+ "pydantic~=2.11.7",
+ "pyotp~=2.9.0",
+ "python-dateutil~=2.9.0",
+ "pytz==2025.2",
"rauth~=0.7.3",
"redis~=6.2.0",
- "hiredis~=3.0.0",
- "requests-oauthlib~=1.3.1",
- "requests~=2.32.0",
+ "hiredis~=3.2.1",
+ "requests-oauthlib~=2.0.0",
+ "requests~=2.32.4",
# We depend on internal attributes of RQ.
# Do NOT add loose requirements on RQ versions.
# Audit the code changes w.r.t. background_jobs.py before updating.
"rq==2.4.0",
- "rsa>=4.1",
+ "rsa~=4.9",
"semantic-version~=2.10.0",
"sentry-sdk~=1.45.1",
"sqlparse~=0.5.0",
- "sql_metadata~=2.11.0",
- "tenacity~=8.2.2",
+ "sql_metadata~=2.17.0",
+ "tenacity~=9.1.2",
"terminaltables~=3.1.10",
- "traceback-with-variables~=2.0.4",
+ "traceback-with-variables~=2.2.0",
"typing_extensions>=4.6.1,<5",
- "tomli~=2.0.1",
- "uuid-utils~=0.10.0",
- "xlrd~=2.0.1",
- "zxcvbn~=4.4.28",
- "markdownify~=0.14.1",
+ "tomli~=2.2.1",
+ "uuid-utils~=0.11.0",
+ "xlrd~=2.0.2",
+ "zxcvbn~=4.5.0",
+ "markdownify~=1.1.0",
# integration dependencies
- "google-api-python-client~=2.2.0",
- "google-auth-oauthlib~=0.4.4",
- "google-auth~=1.29.0",
- "posthog~=3.21.0",
- "vobject~=0.9.7",
+ "google-api-python-client~=2.172.0",
+ "google-auth-oauthlib~=1.2.2",
+ "google-auth~=2.40.3",
+ "posthog~=5.0.0",
+ "vobject~=0.9.9",
"pycountry~=24.6.1",
]
From 8fbe452b4debdca2130efcb8356f3dc92b76cbc0 Mon Sep 17 00:00:00 2001
From: Ankush Menat
Date: Wed, 18 Jun 2025 12:49:35 +0530
Subject: [PATCH 028/196] chore: Drop pdbpp (#32992)
Breaks console sometimes, don't see as much value TBH
```
Traceback (most recent call last):
File "/Users/mihirkandoi/Developer/frappe-develop/apps/frappe/frappe/utils/bench_helper.py", line 48, in invoke
return super().invoke(ctx)
~~~~~~~~~~~~~~^^^^^
File "/Users/mihirkandoi/Developer/frappe-develop/env/lib/python3.13/site-packages/click/core.py", line 1697, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^
File "/Users/mihirkandoi/Developer/frappe-develop/env/lib/python3.13/site-packages/click/core.py", line 1443, in invoke
return ctx.invoke(self.callback, **ctx.params)
~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/mihirkandoi/Developer/frappe-develop/env/lib/python3.13/site-packages/click/core.py", line 788, in invoke
return __callback(*args, **kwargs)
File "/Users/mihirkandoi/Developer/frappe-develop/env/lib/python3.13/site-packages/click/decorators.py", line 33, in new_func
return f(get_current_context(), *args, **kwargs)
File "/Users/mihirkandoi/Developer/frappe-develop/apps/frappe/frappe/commands/__init__.py", line 28, in _func
ret = f(ctx.obj, *args, **kwargs)
File "/Users/mihirkandoi/Developer/frappe-develop/apps/frappe/frappe/commands/utils.py", line 646, in console
from IPython.terminal.embed import InteractiveShellEmbed
File "/Users/mihirkandoi/Developer/frappe-develop/env/lib/python3.13/site-packages/IPython/__init__.py", line 53, in
from .core.application import Application
File "/Users/mihirkandoi/Developer/frappe-develop/env/lib/python3.13/site-packages/IPython/core/application.py", line 26, in
from IPython.core import release, crashhandler
File "/Users/mihirkandoi/Developer/frappe-develop/env/lib/python3.13/site-packages/IPython/core/crashhandler.py", line 27, in
from IPython.core import ultratb
File "/Users/mihirkandoi/Developer/frappe-develop/env/lib/python3.13/site-packages/IPython/core/ultratb.py", line 111, in
from IPython.core import debugger
File "/Users/mihirkandoi/Developer/frappe-develop/env/lib/python3.13/site-packages/IPython/core/debugger.py", line 122, in
from pdb import Pdb as OldPdb
File "/Users/mihirkandoi/Developer/frappe-develop/env/lib/python3.13/site-packages/_pdbpp_path_hack/pdb.py", line 5, in
exec(compile(f.read(), pdb_path, 'exec'))
~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/mihirkandoi/Developer/frappe-develop/env/lib/python3.13/site-packages/pdb.py", line 28, in
__version__ = fancycompleter.LazyVersion('pdbpp')
^^^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: module 'fancycompleter' has no attribute 'LazyVersion'
module 'fancycompleter' has no attribute 'LazyVersion'
```
---
pyproject.toml | 1 -
1 file changed, 1 deletion(-)
diff --git a/pyproject.toml b/pyproject.toml
index 10fa3ff521..d9fcd21a32 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -154,7 +154,6 @@ watchdog = "~=3.0.0"
hypothesis = "~=6.77.0"
responses = "==0.23.1"
freezegun = "~=1.2.2"
-pdbpp = "~=0.10.3"
[tool.ruff]
line-length = 110
From bbf46eb4efd0252aeab76d22972d8646bb3b1d43 Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Wed, 18 Dec 2024 17:14:17 +0530
Subject: [PATCH 029/196] fix: use frappe.qb.get_query
- static controller method get_list to modify query object
---
frappe/api/v2.py | 42 +++++++++++++++++++++++++++++++++++-------
1 file changed, 35 insertions(+), 7 deletions(-)
diff --git a/frappe/api/v2.py b/frappe/api/v2.py
index 3733066e79..ca5753b3d6 100644
--- a/frappe/api/v2.py
+++ b/frappe/api/v2.py
@@ -15,7 +15,7 @@ from werkzeug.routing import Rule
import frappe
import frappe.client
-from frappe import _, get_newargs, is_whitelisted
+from frappe import _, cint, get_newargs, is_whitelisted
from frappe.core.doctype.server_script.server_script_utils import get_server_script_map
from frappe.handler import is_valid_http_method, run_server_script, upload_file
@@ -69,13 +69,41 @@ def read_doc(doctype: str, name: str):
def document_list(doctype: str):
- if frappe.form_dict.get("fields"):
- frappe.form_dict["fields"] = json.loads(frappe.form_dict["fields"])
+ from frappe.model.base_document import get_controller
- # set limit of records for frappe.get_list
- frappe.form_dict.limit_page_length = frappe.form_dict.limit or 20
- # evaluate frappe.get_list
- return frappe.call(frappe.client.get_list, doctype, **frappe.form_dict)
+ args = frappe.request.args
+
+ fields = frappe.parse_json(args.get("fields", None))
+ filters = frappe.parse_json(args.get("filters", None))
+ order_by = args.get("order_by", None)
+ start = cint(args.get("start", 0))
+ limit = cint(args.get("limit", 20))
+ group_by = args.get("group_by", None)
+ debug = args.get("debug", False)
+
+ query = frappe.qb.get_query(
+ table=doctype,
+ fields=fields,
+ filters=filters,
+ order_by=order_by,
+ offset=start,
+ limit=limit + 1,
+ group_by=group_by,
+ )
+ controller = get_controller(doctype)
+ if hasattr(controller, "get_list"):
+ return_value = controller.get_list(query)
+ if return_value is not None:
+ query = return_value
+
+ print(query)
+
+ data = query.run(as_dict=True, debug=debug)
+
+ return {
+ "result": data[:limit],
+ "has_next_page": len(data) > limit,
+ }
def count(doctype: str) -> int:
From e089b2d7231272f466bb2988e9f451db13e89745 Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Thu, 2 Jan 2025 00:23:09 +0530
Subject: [PATCH 030/196] fix: explicitly return doc as dict
because json serializer of Document doesn't return fields with null values
---
frappe/api/v2.py | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/frappe/api/v2.py b/frappe/api/v2.py
index ca5753b3d6..ef42cf18b3 100644
--- a/frappe/api/v2.py
+++ b/frappe/api/v2.py
@@ -65,7 +65,7 @@ def read_doc(doctype: str, name: str):
doc = frappe.get_doc(doctype, name)
doc.check_permission("read")
doc.apply_fieldlevel_read_permissions()
- return doc
+ return doc.as_dict()
def document_list(doctype: str):
@@ -96,8 +96,6 @@ def document_list(doctype: str):
if return_value is not None:
query = return_value
- print(query)
-
data = query.run(as_dict=True, debug=debug)
return {
@@ -119,7 +117,7 @@ def create_doc(doctype: str):
data.pop("doctype", None)
if (name := data.get("name")) and isinstance(name, str):
frappe.flags.api_name_set = True
- return frappe.new_doc(doctype, **data).insert()
+ return frappe.new_doc(doctype, **data).insert().as_dict()
def copy_doc(doctype: str, name: str, ignore_no_copy: bool = True):
@@ -146,7 +144,7 @@ def update_doc(doctype: str, name: str):
if doc.get("parenttype"):
frappe.get_doc(doc.parenttype, doc.parent).save()
- return doc
+ return doc.as_dict()
def delete_doc(doctype: str, name: str):
From 79893f0248daf85b5e6e488afb46cf970bcff3a3 Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Thu, 2 Jan 2025 00:23:41 +0530
Subject: [PATCH 031/196] fix: return updated doc from execute_doc_method
---
frappe/api/v2.py | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/frappe/api/v2.py b/frappe/api/v2.py
index ef42cf18b3..bbf29f4562 100644
--- a/frappe/api/v2.py
+++ b/frappe/api/v2.py
@@ -170,7 +170,10 @@ def execute_doc_method(doctype: str, name: str, method: str | None = None):
doc.is_whitelisted(method)
doc.check_permission(PERMISSION_MAP[frappe.request.method])
- return doc.run_method(method, **frappe.form_dict)
+ result = doc.run_method(method, **frappe.form_dict)
+ doc.reload()
+ frappe.response.docs.append(doc.as_dict())
+ return result
def run_doc_method(method: str, document: dict[str, Any] | str, kwargs=None):
From fc86f9737b11c3eb764df2ed3bc0e1f3f6728cfc Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Thu, 2 Jan 2025 00:24:58 +0530
Subject: [PATCH 032/196] fix: print error traceback in api/v2
---
frappe/utils/response.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/frappe/utils/response.py b/frappe/utils/response.py
index 679535cd2e..f30e7f3241 100644
--- a/frappe/utils/response.py
+++ b/frappe/utils/response.py
@@ -52,6 +52,7 @@ def report_error(status_code):
case ApiVersion.V2:
error_log = {"type": exc_type.__name__}
if allow_traceback:
+ frappe.errprint(traceback)
error_log["exception"] = traceback
_link_error_with_message_log(error_log, exc_value, frappe.message_log)
frappe.local.response.errors = [error_log]
From 09ae9ad086d8b897169739728db754d803e88e75 Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Thu, 2 Jan 2025 00:25:56 +0530
Subject: [PATCH 033/196] fix: rename method typing
---
frappe/model/document.py | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/frappe/model/document.py b/frappe/model/document.py
index 59d9549ad1..48da6c7355 100644
--- a/frappe/model/document.py
+++ b/frappe/model/document.py
@@ -1201,7 +1201,9 @@ class Document(BaseDocument):
self.docstatus = DocStatus.CANCELLED
return self.save()
- def _rename(self, name: str, merge: bool = False, force: bool = False, validate_rename: bool = True):
+ def _rename(
+ self, name: str | int, merge: bool = False, force: bool = False, validate_rename: bool = True
+ ):
"""Rename the document. Triggers frappe.rename_doc, then reloads."""
from frappe.model.rename_doc import rename_doc
@@ -1238,7 +1240,7 @@ class Document(BaseDocument):
self.run_method("on_discard")
@frappe.whitelist()
- def rename(self, name: str, merge=False, force=False, validate_rename=True):
+ def rename(self, name: str | int, merge=False, force=False, validate_rename=True):
"""Rename the document to `name`. This transforms the current object."""
return self._rename(name=name, merge=merge, force=force, validate_rename=validate_rename)
From 11602c1e6bac448b607fd68a83d0c097506b8cc2 Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Wed, 8 Jan 2025 13:45:50 +0530
Subject: [PATCH 034/196] fix: revert document_list return format
---
frappe/api/v2.py | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/frappe/api/v2.py b/frappe/api/v2.py
index bbf29f4562..bddbebb5a9 100644
--- a/frappe/api/v2.py
+++ b/frappe/api/v2.py
@@ -97,11 +97,8 @@ def document_list(doctype: str):
query = return_value
data = query.run(as_dict=True, debug=debug)
-
- return {
- "result": data[:limit],
- "has_next_page": len(data) > limit,
- }
+ frappe.response["has_next_page"] = len(data) > limit
+ return data[:limit]
def count(doctype: str) -> int:
From 7d26eca67867a8548861b81519ab8e5156d39185 Mon Sep 17 00:00:00 2001
From: Ankush Menat
Date: Wed, 8 Jan 2025 18:52:37 +0530
Subject: [PATCH 035/196] fix: basic perm checks
---
frappe/api/v2.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/frappe/api/v2.py b/frappe/api/v2.py
index bddbebb5a9..f04ac8b1ec 100644
--- a/frappe/api/v2.py
+++ b/frappe/api/v2.py
@@ -72,6 +72,7 @@ def document_list(doctype: str):
from frappe.model.base_document import get_controller
args = frappe.request.args
+ frappe.has_permission(doctype, throw=True)
fields = frappe.parse_json(args.get("fields", None))
filters = frappe.parse_json(args.get("filters", None))
From 471e001ebb47fcc452df7981cc530b3ccbd43aeb Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Thu, 9 Jan 2025 01:45:54 +0530
Subject: [PATCH 036/196] feat: apply permissions in get_query
---
frappe/api/v2.py | 2 +-
frappe/database/query.py | 182 ++++++++++++++++++++++++++++++++++++++-
2 files changed, 179 insertions(+), 5 deletions(-)
diff --git a/frappe/api/v2.py b/frappe/api/v2.py
index f04ac8b1ec..8d62c2006a 100644
--- a/frappe/api/v2.py
+++ b/frappe/api/v2.py
@@ -72,7 +72,6 @@ def document_list(doctype: str):
from frappe.model.base_document import get_controller
args = frappe.request.args
- frappe.has_permission(doctype, throw=True)
fields = frappe.parse_json(args.get("fields", None))
filters = frappe.parse_json(args.get("filters", None))
@@ -90,6 +89,7 @@ def document_list(doctype: str):
offset=start,
limit=limit + 1,
group_by=group_by,
+ ignore_permissions=False,
)
controller = get_controller(doctype)
if hasattr(controller, "get_list"):
diff --git a/frappe/database/query.py b/frappe/database/query.py
index ef1d942883..204f6e7de9 100644
--- a/frappe/database/query.py
+++ b/frappe/database/query.py
@@ -12,6 +12,7 @@ from frappe import _
from frappe.database.operator_map import NESTED_SET_OPERATORS, OPERATOR_MAP
from frappe.database.schema import SPECIAL_CHAR_PATTERN
from frappe.database.utils import DefaultOrderBy, FilterValue, convert_to_value, get_doctype_name
+from frappe.model import get_permitted_fields
from frappe.query_builder import Criterion, Field, Order, functions
from frappe.query_builder.functions import Function, SqlFunctions
from frappe.query_builder.utils import PseudoColumnMapper
@@ -50,6 +51,9 @@ class Engine:
validate_filters: bool = False,
skip_locked: bool = False,
wait: bool = True,
+ ignore_permissions: bool = True,
+ user: str | None = None,
+ parent_doctype: str | None = None,
) -> QueryBuilder:
qb = frappe.local.qb
db_type = frappe.local.db.db_type
@@ -58,6 +62,8 @@ class Engine:
self.is_postgres = db_type == "postgres"
self.is_sqlite = db_type == "sqlite"
self.validate_filters = validate_filters
+ self.user = user or frappe.session.user
+ self.parent_doctype = parent_doctype
if isinstance(table, Table):
self.table = table
@@ -75,7 +81,10 @@ class Engine:
self.query = qb.from_(self.table, immutable=False).delete()
else:
self.query = qb.from_(self.table, immutable=False)
- self.apply_fields(fields)
+ self.fields = self.parse_fields(fields)
+ if not ignore_permissions:
+ self.fields = self.apply_field_permissions()
+ self.apply_fields(self.fields)
self.apply_filters(filters)
self.apply_order_by(order_by)
@@ -95,6 +104,10 @@ class Engine:
if group_by:
self.query = self.query.groupby(group_by)
+ if not ignore_permissions:
+ self.check_read_permission()
+ self.add_permission_conditions()
+
self.query.immutable = True
return self.query
@@ -103,8 +116,6 @@ class Engine:
frappe.throw(_("Invalid DocType: {0}").format(self.doctype))
def apply_fields(self, fields):
- # add fields
- self.fields = self.parse_fields(fields)
if not self.fields:
self.fields = [self.table.name]
@@ -356,6 +367,167 @@ class Engine:
order_direction = Order.asc if (len(parts) > 1 and parts[1].lower() == "asc") else Order.desc
self.query = self.query.orderby(order_field, order=order_direction)
+ def check_read_permission(self):
+ """Check if user has read permission on the doctype"""
+
+ def has_permission(ptype):
+ return frappe.has_permission(
+ self.doctype,
+ ptype,
+ user=self.user,
+ parent_doctype=self.parent_doctype,
+ )
+
+ if not has_permission("select") and not has_permission("read"):
+ frappe.throw(_("Insufficient Permission for {0}").format(frappe.bold(self.doctype)))
+
+ def apply_field_permissions(self):
+ """Allow fields that user has permission to read"""
+ permitted_fields = get_permitted_fields(
+ doctype=self.doctype,
+ parenttype=self.parent_doctype,
+ permission_type=self.get_permission_type(self.doctype),
+ ignore_virtual=True,
+ )
+ filtered_fields = []
+ for field in self.fields:
+ if isinstance(field, ChildTableField):
+ permitted_child_fields = get_permitted_fields(
+ doctype=field.doctype,
+ parenttype=field.parent_doctype,
+ permission_type=self.get_permission_type(field.doctype),
+ ignore_virtual=True,
+ )
+ if field.child_fieldname in permitted_child_fields:
+ filtered_fields.append(field)
+ elif isinstance(field, LinkTableField):
+ if field.link_fieldname in permitted_fields:
+ filtered_fields.append(field)
+ elif isinstance(field, ChildQuery):
+ permitted_child_fields = get_permitted_fields(
+ doctype=field.doctype,
+ parenttype=field.parent_doctype,
+ permission_type=self.get_permission_type(field.doctype),
+ ignore_virtual=True,
+ )
+ field.fields = [f for f in field.fields if f in permitted_child_fields]
+ elif isinstance(field, Field):
+ if field.name == "*":
+ filtered_fields.extend(self.parse_fields(permitted_fields))
+ elif field.name in permitted_fields:
+ filtered_fields.append(field)
+ return filtered_fields
+
+ def get_user_permission_conditions(self, role_permissions):
+ """Build conditions for user permissions and return tuple of (conditions, fetch_shared_docs)"""
+ conditions = []
+ fetch_shared_docs = False
+
+ # add user permission only if role has read perm
+ if not (role_permissions.get("read") or role_permissions.get("select")):
+ return conditions, fetch_shared_docs
+
+ user_permissions = frappe.permissions.get_user_permissions(self.user)
+
+ if not user_permissions:
+ return conditions, fetch_shared_docs
+
+ fetch_shared_docs = True
+
+ doctype_link_fields = self.get_doctype_link_fields()
+ for df in doctype_link_fields:
+ if df.get("ignore_user_permissions"):
+ continue
+
+ user_permission_values = user_permissions.get(df.get("options"), {})
+ if user_permission_values:
+ docs = []
+ for permission in user_permission_values:
+ if not permission.get("applicable_for"):
+ docs.append(permission.get("doc"))
+ # append docs based on user permission applicable on reference doctype
+ # this is useful when getting list of docs from a link field
+ # in this case parent doctype of the link
+ # will be the reference doctype
+ elif df.get("fieldname") == "name" and self.reference_doctype:
+ if permission.get("applicable_for") == self.reference_doctype:
+ docs.append(permission.get("doc"))
+ elif permission.get("applicable_for") == self.doctype:
+ docs.append(permission.get("doc"))
+
+ if docs:
+ field_name = df.get("fieldname")
+ strict_user_permissions = frappe.get_system_settings("apply_strict_user_permissions")
+ if strict_user_permissions:
+ conditions.append(self.table[field_name].isin(docs))
+ else:
+ empty_value_condition = self.table[field_name].isnull()
+ value_condition = self.table[field_name].isin(docs)
+ conditions.append(empty_value_condition | value_condition)
+
+ return conditions, fetch_shared_docs
+
+ def get_doctype_link_fields(self):
+ meta = frappe.get_meta(self.doctype)
+ # append current doctype with fieldname as 'name' as first link field
+ doctype_link_fields = [{"options": self.doctype, "fieldname": "name"}]
+ # append other link fields
+ doctype_link_fields.extend(meta.get_link_fields())
+ return doctype_link_fields
+
+ def add_permission_conditions(self):
+ conditions = []
+ role_permissions = frappe.permissions.get_role_permissions(self.doctype, user=self.user)
+ fetch_shared_docs = False
+
+ if self.requires_owner_constraint(role_permissions):
+ fetch_shared_docs = True
+ conditions.append(self.table.owner == self.user)
+ # skip user perm check if owner constraint is required
+ elif role_permissions.get("read") or role_permissions.get("select"):
+ user_perm_conditions, fetch_shared = self.get_user_permission_conditions(role_permissions)
+ conditions.extend(user_perm_conditions)
+ fetch_shared_docs = fetch_shared_docs or fetch_shared
+
+ shared_docs = []
+ if fetch_shared_docs:
+ shared_docs = frappe.share.get_shared(self.doctype, self.user)
+
+ if shared_docs:
+ shared_condition = self.table.name.isin(shared_docs)
+ if conditions:
+ # (permission conditions) OR (shared condition)
+ self.query = self.query.where(Criterion.any(conditions) | shared_condition)
+ else:
+ self.query = self.query.where(shared_condition)
+ elif conditions:
+ # AND all permission conditions
+ self.query = self.query.where(Criterion.all(conditions))
+
+ def get_permission_type(self, doctype) -> str:
+ """Get permission type (select/read) based on user permissions"""
+ if frappe.only_has_select_perm(doctype, user=self.user):
+ return "select"
+ return "read"
+
+ def requires_owner_constraint(self, role_permissions):
+ """Return True if "select" or "read" isn't available without being creator."""
+ if not role_permissions.get("has_if_owner_enabled"):
+ return
+
+ if_owner_perms = role_permissions.get("if_owner")
+ if not if_owner_perms:
+ return
+
+ # has select or read without if owner, no need for constraint
+ for perm_type in ("select", "read"):
+ if role_permissions.get(perm_type) and perm_type not in if_owner_perms:
+ return
+
+ # not checking if either select or read if present in if_owner_perms
+ # because either of those is required to perform a query
+ return True
+
class Permission:
@classmethod
@@ -427,7 +599,7 @@ class DynamicTableField:
if linked_field.fieldtype == "Link":
return LinkTableField(linked_doctype, fieldname, doctype, linked_fieldname, alias=alias)
elif linked_field.fieldtype in frappe.model.table_fields:
- return ChildTableField(linked_doctype, fieldname, doctype, alias=alias)
+ return ChildTableField(linked_doctype, fieldname, doctype, linked_fieldname, alias=alias)
def apply_select(self, query: QueryBuilder) -> QueryBuilder:
raise NotImplementedError
@@ -439,12 +611,14 @@ class ChildTableField(DynamicTableField):
doctype: str,
fieldname: str,
parent_doctype: str,
+ parent_fieldname: str | None = None,
alias: str | None = None,
) -> None:
self.doctype = doctype
self.fieldname = fieldname
self.alias = alias
self.parent_doctype = parent_doctype
+ self.parent_fieldname = parent_fieldname
self.table = frappe.qb.DocType(self.doctype)
self.field = self.table[self.fieldname]
From 56c3a55665726cc4195def98d1af90e7fbcbd3e3 Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Thu, 9 Jan 2025 01:47:43 +0530
Subject: [PATCH 037/196] fix: print traceback instead of errprint
---
frappe/utils/response.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/frappe/utils/response.py b/frappe/utils/response.py
index f30e7f3241..dac5237c76 100644
--- a/frappe/utils/response.py
+++ b/frappe/utils/response.py
@@ -52,7 +52,7 @@ def report_error(status_code):
case ApiVersion.V2:
error_log = {"type": exc_type.__name__}
if allow_traceback:
- frappe.errprint(traceback)
+ print(traceback)
error_log["exception"] = traceback
_link_error_with_message_log(error_log, exc_value, frappe.message_log)
frappe.local.response.errors = [error_log]
From f580cb3dad9f17440693e15325c5e85cbcd8b54b Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Thu, 9 Jan 2025 12:34:52 +0530
Subject: [PATCH 038/196] fix: add child query to allowed fields
---
frappe/database/query.py | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/frappe/database/query.py b/frappe/database/query.py
index 204f6e7de9..61f366b590 100644
--- a/frappe/database/query.py
+++ b/frappe/database/query.py
@@ -389,7 +389,7 @@ class Engine:
permission_type=self.get_permission_type(self.doctype),
ignore_virtual=True,
)
- filtered_fields = []
+ allowed_fields = []
for field in self.fields:
if isinstance(field, ChildTableField):
permitted_child_fields = get_permitted_fields(
@@ -399,10 +399,10 @@ class Engine:
ignore_virtual=True,
)
if field.child_fieldname in permitted_child_fields:
- filtered_fields.append(field)
+ allowed_fields.append(field)
elif isinstance(field, LinkTableField):
if field.link_fieldname in permitted_fields:
- filtered_fields.append(field)
+ allowed_fields.append(field)
elif isinstance(field, ChildQuery):
permitted_child_fields = get_permitted_fields(
doctype=field.doctype,
@@ -411,12 +411,13 @@ class Engine:
ignore_virtual=True,
)
field.fields = [f for f in field.fields if f in permitted_child_fields]
+ allowed_fields.append(field)
elif isinstance(field, Field):
if field.name == "*":
- filtered_fields.extend(self.parse_fields(permitted_fields))
+ allowed_fields.extend(self.parse_fields(permitted_fields))
elif field.name in permitted_fields:
- filtered_fields.append(field)
- return filtered_fields
+ allowed_fields.append(field)
+ return allowed_fields
def get_user_permission_conditions(self, role_permissions):
"""Build conditions for user permissions and return tuple of (conditions, fetch_shared_docs)"""
From f707cf572228861943d808031403228a9fe7b83b Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Mon, 3 Mar 2025 12:20:31 +0530
Subject: [PATCH 039/196] fix: raise PermissionError instead of ValidationError
---
frappe/database/query.py | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/frappe/database/query.py b/frappe/database/query.py
index 61f366b590..045c4dd174 100644
--- a/frappe/database/query.py
+++ b/frappe/database/query.py
@@ -197,7 +197,7 @@ class Engine:
self.query = dynamic_field.apply_join(self.query)
_field = dynamic_field.field
elif self.validate_filters and SPECIAL_CHAR_PATTERN.search(_field):
- frappe.throw(_("Invalid filter: {0}").format(_field))
+ frappe.throw(_("Invalid filter: {0}").format(_field), frappe.PermissionError)
elif not doctype or doctype == self.doctype:
_field = self.table[field]
elif doctype:
@@ -379,7 +379,9 @@ class Engine:
)
if not has_permission("select") and not has_permission("read"):
- frappe.throw(_("Insufficient Permission for {0}").format(frappe.bold(self.doctype)))
+ frappe.throw(
+ _("Insufficient Permission for {0}").format(frappe.bold(self.doctype)), frappe.PermissionError
+ )
def apply_field_permissions(self):
"""Allow fields that user has permission to read"""
@@ -553,7 +555,9 @@ class Permission:
user=kwargs.get("user"),
parent_doctype=kwargs.get("parent_doctype"),
):
- frappe.throw(_("Insufficient Permission for {0}").format(frappe.bold(dt)))
+ frappe.throw(
+ _("Insufficient Permission for {0}").format(frappe.bold(dt)), frappe.PermissionError
+ )
@staticmethod
def get_tables_from_query(query: str):
From ccca6bffab9cd3255e17dc12cab08591ec5c43b0 Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Mon, 3 Mar 2025 12:22:04 +0530
Subject: [PATCH 040/196] test: add permissions tests for qb.get_query
---
frappe/tests/test_query.py | 142 ++++++++++++++++++++++++++++++++++++-
1 file changed, 141 insertions(+), 1 deletion(-)
diff --git a/frappe/tests/test_query.py b/frappe/tests/test_query.py
index e20f50921f..00fb90f139 100644
--- a/frappe/tests/test_query.py
+++ b/frappe/tests/test_query.py
@@ -5,9 +5,17 @@ from frappe.core.doctype.doctype.test_doctype import new_doctype
from frappe.query_builder import Field
from frappe.query_builder.functions import Abs, Count, Ifnull, Max, Now, Timestamp
from frappe.tests import IntegrationTestCase
+from frappe.tests.test_db_query import (
+ create_nested_doctype,
+ create_nested_doctype_records,
+ setup_patched_blog_post,
+ setup_test_user,
+)
from frappe.tests.test_query_builder import db_type_is, run_only_if
from frappe.utils.nestedset import get_ancestors_of, get_descendants_of
+EXTRA_TEST_RECORD_DEPENDENCIES = ["User", "Blog Post", "Blog Category", "Blogger"]
+
def create_tree_docs():
records = [
@@ -252,7 +260,7 @@ class TestQuery(IntegrationTestCase):
)
self.assertRaisesRegex(
- frappe.ValidationError,
+ frappe.PermissionError,
"Invalid filter",
lambda: frappe.qb.get_query(
"DocType",
@@ -455,3 +463,135 @@ class TestQuery(IntegrationTestCase):
note1.delete()
note2.delete()
+
+ def test_build_match_conditions(self):
+ from frappe.permissions import add_user_permission, clear_user_permissions_for_doctype
+
+ clear_user_permissions_for_doctype("Blog Post", "test2@example.com")
+
+ test2user = frappe.get_doc("User", "test2@example.com")
+ test2user.add_roles("Blogger")
+ frappe.set_user("test2@example.com")
+
+ # Before any user permission is applied, there should be no conditions
+ query = frappe.qb.get_query("Blog Post", ignore_permissions=False)
+ self.assertNotIn("(`tabBlog Post`.`name` in (", str(query))
+
+ # Add user permissions
+ add_user_permission("Blog Post", "-test-blog-post", "test2@example.com", True)
+ add_user_permission("Blog Post", "-test-blog-post-1", "test2@example.com", True)
+
+ # After applying user permission, condition should be in query
+ query = str(frappe.qb.get_query("Blog Post", ignore_permissions=False))
+
+ # Check for user permission condition in the query string
+ if frappe.db.db_type == "mariadb":
+ self.assertIn("`name` IS NULL OR `name` IN ('-test-blog-post-1','-test-blog-post')", query)
+ elif frappe.db.db_type == "postgres":
+ self.assertIn("\"name\" IS NULL OR \"name\" IN ('-test-blog-post-1','-test-blog-post')", query)
+
+ frappe.set_user("Administrator")
+ clear_user_permissions_for_doctype("Blog Post", "test2@example.com")
+ test2user.remove_roles("Blogger")
+
+ def test_ignore_permissions_for_query(self):
+ frappe.set_user("test2@example.com")
+
+ with self.assertRaises(frappe.PermissionError):
+ frappe.qb.get_query("DocType", filters={"istable": 1}, ignore_permissions=False)
+
+ result = frappe.qb.get_query("DocType", filters={"istable": 1}, ignore_permissions=True).run()
+ self.assertTrue(len(result) > 0)
+
+ frappe.set_user("Administrator")
+
+ def test_permlevel_fields(self):
+ """Test permission level check when querying fields"""
+ with setup_patched_blog_post(), setup_test_user(set_user=True):
+ # Create a test blog post
+ test_post = frappe.get_doc(
+ {
+ "doctype": "Blog Post",
+ "title": "Test Permission Post",
+ "content": "Test Content",
+ "published": 1,
+ }
+ ).insert(ignore_permissions=True)
+
+ # Without proper permission, published field should be filtered out
+ data = frappe.qb.get_query(
+ "Blog Post",
+ filters={"name": test_post.name},
+ fields=["name", "published", "title"],
+ ignore_permissions=False,
+ ).run(as_dict=1)
+
+ field_list = [field for d in data for field in d.keys()]
+ self.assertIn("title", field_list)
+ self.assertIn("name", field_list)
+ self.assertNotIn("published", field_list)
+
+ # With Administrator, all fields should be accessible
+ frappe.set_user("Administrator")
+ data = frappe.qb.get_query(
+ "Blog Post",
+ filters={"name": test_post.name},
+ fields=["name", "published", "title"],
+ ignore_permissions=False,
+ ).run(as_dict=1)
+
+ field_list = [field for d in data for field in d.keys()]
+ self.assertIn("published", field_list)
+
+ test_post.delete()
+
+ def test_nested_permission(self):
+ """Test permission on nested doctypes"""
+ frappe.set_user("Administrator")
+ create_nested_doctype()
+ create_nested_doctype_records()
+
+ from frappe.permissions import add_user_permission, clear_user_permissions_for_doctype
+
+ clear_user_permissions_for_doctype("Nested DocType")
+
+ # Add user permission for only one root folder
+ add_user_permission("Nested DocType", "Level 1 A", "test2@example.com")
+
+ from frappe.core.page.permission_manager.permission_manager import update
+
+ # To avoid if_owner filter
+ update("Nested DocType", "All", 0, "if_owner", 0)
+
+ test2user = frappe.get_doc("User", "test2@example.com")
+ test2user.add_roles("Blogger")
+ frappe.set_user("test2@example.com")
+ data = frappe.qb.get_query("Nested DocType", ignore_permissions=False).run(as_dict=1)
+
+ # Children of the permitted node should be accessible
+ self.assertTrue(any(d.name == "Level 2 A" for d in data))
+
+ # Other nodes should not be accessible
+ self.assertFalse(any(d.name == "Level 1 B" for d in data))
+ self.assertFalse(any(d.name == "Level 2 B" for d in data))
+
+ update("Nested DocType", "All", 0, "if_owner", 1) # Reset to default
+ frappe.set_user("Administrator")
+
+ def test_is_set_is_not_set(self):
+ """Test is set and is not set filters"""
+ result = frappe.qb.get_query("DocType", filters={"autoname": ["is", "not set"]}).run(as_dict=1)
+ self.assertTrue({"name": "Integration Request"} in result)
+ self.assertTrue({"name": "User"} in result)
+ self.assertFalse({"name": "Blogger"} in result)
+
+ result = frappe.qb.get_query("DocType", filters={"autoname": ["is", "set"]}).run(as_dict=1)
+ self.assertTrue({"name": "DocField"} in result)
+ self.assertTrue({"name": "Prepared Report"} in result)
+ self.assertFalse({"name": "Property Setter"} in result)
+
+ # Test with updating value to NULL
+ frappe.db.set_value("DocType", "Property Setter", "autoname", None, update_modified=False)
+
+ result = frappe.qb.get_query("DocType", filters={"autoname": ["is", "set"]}).run(as_dict=1)
+ self.assertFalse(any(d.name == "Property Setter" for d in result))
From f3af0c582c589bcac26ab29aafac95a0f2484a0f Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Mon, 3 Mar 2025 13:38:16 +0530
Subject: [PATCH 041/196] test: fix test_api_v2
---
frappe/api/v2.py | 5 +++--
frappe/tests/test_api_v2.py | 2 +-
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/frappe/api/v2.py b/frappe/api/v2.py
index 8d62c2006a..a7afb5002c 100644
--- a/frappe/api/v2.py
+++ b/frappe/api/v2.py
@@ -71,7 +71,7 @@ def read_doc(doctype: str, name: str):
def document_list(doctype: str):
from frappe.model.base_document import get_controller
- args = frappe.request.args
+ args = frappe.form_dict
fields = frappe.parse_json(args.get("fields", None))
filters = frappe.parse_json(args.get("filters", None))
@@ -80,6 +80,7 @@ def document_list(doctype: str):
limit = cint(args.get("limit", 20))
group_by = args.get("group_by", None)
debug = args.get("debug", False)
+ as_dict = args.get("as_dict", True)
query = frappe.qb.get_query(
table=doctype,
@@ -97,7 +98,7 @@ def document_list(doctype: str):
if return_value is not None:
query = return_value
- data = query.run(as_dict=True, debug=debug)
+ data = query.run(as_dict=as_dict, debug=debug)
frappe.response["has_next_page"] = len(data) > limit
return data[:limit]
diff --git a/frappe/tests/test_api_v2.py b/frappe/tests/test_api_v2.py
index 518c1cc543..54a802aa62 100644
--- a/frappe/tests/test_api_v2.py
+++ b/frappe/tests/test_api_v2.py
@@ -113,7 +113,7 @@ class TestResourceAPIV2(FrappeAPITestCase):
def test_delete_document(self):
doc_to_delete = choice(self.GENERATED_DOCUMENTS)
- response = self.delete(self.resource(self.DOCTYPE, doc_to_delete))
+ response = self.delete(self.resource(self.DOCTYPE, doc_to_delete), data={"sid": self.sid})
self.assertEqual(response.status_code, 202)
self.assertDictEqual(response.json, {"data": "ok"})
From 3ab0e8756f4d2118bfc289a042d14d4e85341b31 Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Mon, 3 Mar 2025 14:28:16 +0530
Subject: [PATCH 042/196] test: mandatory field
---
frappe/tests/test_query.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/frappe/tests/test_query.py b/frappe/tests/test_query.py
index 00fb90f139..0b0a9e86a0 100644
--- a/frappe/tests/test_query.py
+++ b/frappe/tests/test_query.py
@@ -514,9 +514,10 @@ class TestQuery(IntegrationTestCase):
"doctype": "Blog Post",
"title": "Test Permission Post",
"content": "Test Content",
+ "blog_category": "-test-blog-category",
"published": 1,
}
- ).insert(ignore_permissions=True)
+ ).insert(ignore_permissions=True, ignore_mandatory=True)
# Without proper permission, published field should be filtered out
data = frappe.qb.get_query(
From b3a05896ea62b47f17f088dee6c112a7461da56b Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Mon, 3 Mar 2025 20:10:05 +0530
Subject: [PATCH 043/196] fix: remove doc.reload
---
frappe/api/v2.py | 1 -
1 file changed, 1 deletion(-)
diff --git a/frappe/api/v2.py b/frappe/api/v2.py
index a7afb5002c..01570ae989 100644
--- a/frappe/api/v2.py
+++ b/frappe/api/v2.py
@@ -170,7 +170,6 @@ def execute_doc_method(doctype: str, name: str, method: str | None = None):
doc.check_permission(PERMISSION_MAP[frappe.request.method])
result = doc.run_method(method, **frappe.form_dict)
- doc.reload()
frappe.response.docs.append(doc.as_dict())
return result
From a94c14331443b2e3131c7a73b363571db186102f Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Mon, 3 Mar 2025 20:10:41 +0530
Subject: [PATCH 044/196] fix: add support for permission query conditions
---
frappe/database/query.py | 44 ++++++++++++++++++++++++++--
frappe/tests/test_query.py | 59 ++++++++++++++++++++++++++++++++++++++
2 files changed, 101 insertions(+), 2 deletions(-)
diff --git a/frappe/database/query.py b/frappe/database/query.py
index 045c4dd174..bf24553d1a 100644
--- a/frappe/database/query.py
+++ b/frappe/database/query.py
@@ -2,10 +2,11 @@ import re
from ast import literal_eval
from functools import lru_cache
from types import BuiltinFunctionType
-from typing import TYPE_CHECKING
+from typing import TYPE_CHECKING, Any, TypeAlias
import sqlparse
from pypika.queries import QueryBuilder, Table
+from pypika.terms import Term
import frappe
from frappe import _
@@ -492,6 +493,10 @@ class Engine:
conditions.extend(user_perm_conditions)
fetch_shared_docs = fetch_shared_docs or fetch_shared
+ permission_query_conditions = self.get_permission_query_conditions()
+ if permission_query_conditions:
+ conditions.extend(permission_query_conditions)
+
shared_docs = []
if fetch_shared_docs:
shared_docs = frappe.share.get_shared(self.doctype, self.user)
@@ -500,13 +505,33 @@ class Engine:
shared_condition = self.table.name.isin(shared_docs)
if conditions:
# (permission conditions) OR (shared condition)
- self.query = self.query.where(Criterion.any(conditions) | shared_condition)
+ self.query = self.query.where(Criterion.all(conditions) | shared_condition)
else:
self.query = self.query.where(shared_condition)
elif conditions:
# AND all permission conditions
self.query = self.query.where(Criterion.all(conditions))
+ def get_permission_query_conditions(self):
+ """Add permission query conditions from hooks and server scripts"""
+ from frappe.core.doctype.server_script.server_script_utils import get_server_script_map
+
+ conditions = []
+ hooks = frappe.get_hooks("permission_query_conditions", {})
+ condition_methods = hooks.get(self.doctype, []) + hooks.get("*", [])
+
+ for method in condition_methods:
+ if c := frappe.call(frappe.get_attr(method), self.user, doctype=self.doctype):
+ conditions.append(RawCriterion(c))
+
+ # Get conditions from server scripts
+ if permission_script_name := get_server_script_map().get("permission_query", {}).get(self.doctype):
+ script = frappe.get_doc("Server Script", permission_script_name)
+ if condition := script.get_permission_query_conditions(self.user):
+ conditions.append(RawCriterion(condition))
+
+ return conditions
+
def get_permission_type(self, doctype) -> str:
"""Get permission type (select/read) based on user permissions"""
if frappe.only_has_select_perm(doctype, user=self.user):
@@ -754,3 +779,18 @@ def _sanitize_field(field: str, is_mariadb):
if is_mariadb:
return MARIADB_SPECIFIC_COMMENT.sub("", stripped_field)
return stripped_field
+
+
+class RawCriterion(Term):
+ """A class to represent raw SQL string as a criterion.
+
+ Allows using raw SQL strings in pypika queries:
+ frappe.qb.from_("DocType").where(RawCriterion("name like 'a%'"))
+ """
+
+ def __init__(self, sql_string: str):
+ self.sql_string = sql_string
+ super().__init__()
+
+ def get_sql(self, **kwargs: Any) -> str:
+ return self.sql_string
diff --git a/frappe/tests/test_query.py b/frappe/tests/test_query.py
index 0b0a9e86a0..83d9d7a144 100644
--- a/frappe/tests/test_query.py
+++ b/frappe/tests/test_query.py
@@ -596,3 +596,62 @@ class TestQuery(IntegrationTestCase):
result = frappe.qb.get_query("DocType", filters={"autoname": ["is", "set"]}).run(as_dict=1)
self.assertFalse(any(d.name == "Property Setter" for d in result))
+
+ def test_permission_query_condition(self):
+ """Test permission query condition being applied from hooks and server script"""
+ from frappe.desk.doctype.dashboard_settings.dashboard_settings import create_dashboard_settings
+
+ # Create a Dashboard Settings for test user
+ self.doctype = "Dashboard Settings"
+ self.user = "test@example.com"
+
+ # First check without custom permission query condition
+ original_hooks = frappe.get_hooks("permission_query_conditions") or {}
+
+ # Clear any hooks temporarily
+ frappe.clear_cache()
+ frappe.hooks.permission_query_conditions = {}
+
+ # Create test data
+ create_dashboard_settings(self.user)
+
+ # Register the hook for Dashboard Settings
+ frappe.clear_cache()
+ frappe.hooks.permission_query_conditions = {
+ "Dashboard Settings": ["frappe.tests.test_query.test_permission_hook_condition"]
+ }
+
+ # Hook condition will restrict to only name=Administrator, so our test user's record should not be found
+ query = frappe.qb.get_query("Dashboard Settings", user=self.user, ignore_permissions=False)
+ data = query.run(as_dict=1)
+ self.assertEqual(len(data), 0)
+
+ # Create a server script for permission query
+ script = frappe.new_doc(
+ doctype="Server Script",
+ name="Dashboard Settings Permission Query",
+ script_type="Permission Query",
+ enabled=1,
+ reference_doctype="Dashboard Settings",
+ script=f"""conditions = '`tabDashboard Settings`.`name` = "{self.user}"'""",
+ ).insert()
+
+ # Test with server script
+ # Script condition should allow the record to be found
+ frappe.clear_cache()
+ frappe.hooks.permission_query_conditions = {} # Clear hooks to test server script alone
+
+ data = frappe.qb.get_query("Dashboard Settings", user=self.user, ignore_permissions=False).run(
+ as_dict=1
+ )
+ self.assertEqual(len(data), 1)
+
+ # Cleanup
+ script.delete()
+ frappe.clear_cache()
+ frappe.hooks.permission_query_conditions = original_hooks
+
+
+# This function is used as a permission query condition hook
+def test_permission_hook_condition(user):
+ return "`tabDashboard Settings`.`name` = 'Administrator'"
From 601df8268f8a45ca624ebb54a9a67406b85213e8 Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Tue, 4 Mar 2025 10:24:42 +0530
Subject: [PATCH 045/196] test: simpler assertions
---
frappe/tests/test_query.py | 22 ++++------------------
1 file changed, 4 insertions(+), 18 deletions(-)
diff --git a/frappe/tests/test_query.py b/frappe/tests/test_query.py
index 83d9d7a144..5ffdf84f17 100644
--- a/frappe/tests/test_query.py
+++ b/frappe/tests/test_query.py
@@ -605,26 +605,14 @@ class TestQuery(IntegrationTestCase):
self.doctype = "Dashboard Settings"
self.user = "test@example.com"
- # First check without custom permission query condition
original_hooks = frappe.get_hooks("permission_query_conditions") or {}
- # Clear any hooks temporarily
- frappe.clear_cache()
- frappe.hooks.permission_query_conditions = {}
-
# Create test data
create_dashboard_settings(self.user)
- # Register the hook for Dashboard Settings
- frappe.clear_cache()
- frappe.hooks.permission_query_conditions = {
- "Dashboard Settings": ["frappe.tests.test_query.test_permission_hook_condition"]
- }
-
# Hook condition will restrict to only name=Administrator, so our test user's record should not be found
query = frappe.qb.get_query("Dashboard Settings", user=self.user, ignore_permissions=False)
- data = query.run(as_dict=1)
- self.assertEqual(len(data), 0)
+ self.assertIn("`tabDashboard Settings`.name = ", str(query))
# Create a server script for permission query
script = frappe.new_doc(
@@ -633,7 +621,7 @@ class TestQuery(IntegrationTestCase):
script_type="Permission Query",
enabled=1,
reference_doctype="Dashboard Settings",
- script=f"""conditions = '`tabDashboard Settings`.`name` = "{self.user}"'""",
+ script=f"""conditions = '`tabDashboard Settings`.`user` = "{self.user}"'""",
).insert()
# Test with server script
@@ -641,10 +629,8 @@ class TestQuery(IntegrationTestCase):
frappe.clear_cache()
frappe.hooks.permission_query_conditions = {} # Clear hooks to test server script alone
- data = frappe.qb.get_query("Dashboard Settings", user=self.user, ignore_permissions=False).run(
- as_dict=1
- )
- self.assertEqual(len(data), 1)
+ query = frappe.qb.get_query("Dashboard Settings", user=self.user, ignore_permissions=False)
+ self.assertIn(f'`tabDashboard Settings`.`user` = "{self.user}"', str(query))
# Cleanup
script.delete()
From 39a65a13006ab2c4bbba0bc8d2fca8367100292d Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Tue, 4 Mar 2025 11:42:38 +0530
Subject: [PATCH 046/196] test: enable server script temporarily
---
frappe/tests/test_query.py | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/frappe/tests/test_query.py b/frappe/tests/test_query.py
index 5ffdf84f17..8015196818 100644
--- a/frappe/tests/test_query.py
+++ b/frappe/tests/test_query.py
@@ -5,6 +5,7 @@ from frappe.core.doctype.doctype.test_doctype import new_doctype
from frappe.query_builder import Field
from frappe.query_builder.functions import Abs, Count, Ifnull, Max, Now, Timestamp
from frappe.tests import IntegrationTestCase
+from frappe.tests.classes.context_managers import enable_safe_exec
from frappe.tests.test_db_query import (
create_nested_doctype,
create_nested_doctype_records,
@@ -629,8 +630,9 @@ class TestQuery(IntegrationTestCase):
frappe.clear_cache()
frappe.hooks.permission_query_conditions = {} # Clear hooks to test server script alone
- query = frappe.qb.get_query("Dashboard Settings", user=self.user, ignore_permissions=False)
- self.assertIn(f'`tabDashboard Settings`.`user` = "{self.user}"', str(query))
+ with enable_safe_exec():
+ query = frappe.qb.get_query("Dashboard Settings", user=self.user, ignore_permissions=False)
+ self.assertIn(f'`tabDashboard Settings`.`user` = "{self.user}"', str(query))
# Cleanup
script.delete()
From 8aa4c1030fc4acc728819a98ae95268694b15638 Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Tue, 4 Mar 2025 12:01:08 +0530
Subject: [PATCH 047/196] fix: add support for AND, OR, NOT in RawCriterion
---
frappe/database/query.py | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/frappe/database/query.py b/frappe/database/query.py
index bf24553d1a..f135b3cd6c 100644
--- a/frappe/database/query.py
+++ b/frappe/database/query.py
@@ -794,3 +794,25 @@ class RawCriterion(Term):
def get_sql(self, **kwargs: Any) -> str:
return self.sql_string
+
+ def __and__(self, other):
+ return CombinedRawCriterion(self, other, "AND")
+
+ def __or__(self, other):
+ return CombinedRawCriterion(self, other, "OR")
+
+ def __invert__(self):
+ return RawCriterion(f"NOT ({self.sql_string})")
+
+
+class CombinedRawCriterion(RawCriterion):
+ def __init__(self, left, right, operator):
+ self.left = left
+ self.right = right
+ self.operator = operator
+ super(RawCriterion, self).__init__()
+
+ def get_sql(self, **kwargs: Any) -> str:
+ left_sql = self.left.get_sql(**kwargs) if hasattr(self.left, "get_sql") else str(self.left)
+ right_sql = self.right.get_sql(**kwargs) if hasattr(self.right, "get_sql") else str(self.right)
+ return f"({left_sql}) {self.operator} ({right_sql})"
From ddca77429c05513d8a7238bb059fd4d80a37086f Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Thu, 1 May 2025 03:20:35 +0530
Subject: [PATCH 048/196] fix: secure query building
Add strict validation using regex for fields in SELECT, filters, GROUP BY, and ORDER BY clauses to avoid potential SQL injection risks.
Refactor field parsing and validation logic into dedicated functions.
---
frappe/database/query.py | 403 +++++++++++++++++++++++++++++----------
1 file changed, 300 insertions(+), 103 deletions(-)
diff --git a/frappe/database/query.py b/frappe/database/query.py
index f135b3cd6c..37ab0404cf 100644
--- a/frappe/database/query.py
+++ b/frappe/database/query.py
@@ -32,6 +32,23 @@ COMMA_PATTERN = re.compile(r",\s*(?![^()]*\))")
# to allow table names like __Auth
TABLE_NAME_PATTERN = re.compile(r"^[\w -]*$", flags=re.ASCII)
+# Pattern to validate field names in SELECT:
+# Allows: name, `name`, name as alias, `name` as alias, `table`.`name`, `table`.`name` as alias, table.name, table.name as alias
+ALLOWED_FIELD_PATTERN = re.compile(r"^(?:`?\w+`?\.)?(`?\w+`?|\w+)(?:\s+as\s+\w+)?$", flags=re.ASCII)
+
+# Pattern to validate basic SQL function call syntax: word(...) [as alias]
+FUNCTION_CALL_PATTERN = re.compile(r"^\w+\(.*\)(?:\s+as\s+\w+)?$", flags=re.IGNORECASE | re.ASCII)
+
+# Pattern to validate field names used in various SQL clauses (WHERE, GROUP BY, ORDER BY):
+# Allows simple field names, backticked names, and table-qualified names (e.g., name, `name`, `table`.`name`, table.name)
+# Does NOT allow aliases ('as alias') or functions.
+ALLOWED_SQL_FIELD_PATTERN = re.compile(r"^(?:`?\w+`?\.)?(`?\w+`?|\w+)$", flags=re.ASCII)
+
+# Regex to parse field names:
+# Group 1: Optional table name (e.g., `tabDocType` or tabDocType)
+# Group 2: Field name (e.g., `field` or field)
+FIELD_PARSE_REGEX = re.compile(r"^(?:[`\"]?(tab\w+)[`\"]?\.)?[`\"]?(\w+)[`\"]?$")
+
class Engine:
def get_query(
@@ -65,6 +82,7 @@ class Engine:
self.validate_filters = validate_filters
self.user = user or frappe.session.user
self.parent_doctype = parent_doctype
+ self.apply_permissions = not ignore_permissions
if isinstance(table, Table):
self.table = table
@@ -74,6 +92,9 @@ class Engine:
self.validate_doctype()
self.table = qb.DocType(table)
+ if self.apply_permissions:
+ self.check_read_permission()
+
if update:
self.query = qb.update(self.table, immutable=False)
elif into:
@@ -82,18 +103,19 @@ class Engine:
self.query = qb.from_(self.table, immutable=False).delete()
else:
self.query = qb.from_(self.table, immutable=False)
- self.fields = self.parse_fields(fields)
- if not ignore_permissions:
- self.fields = self.apply_field_permissions()
- self.apply_fields(self.fields)
+ self.apply_fields(fields)
self.apply_filters(filters)
self.apply_order_by(order_by)
if limit:
+ if not isinstance(limit, int) or limit < 0:
+ frappe.throw(_("Limit must be a non-negative integer"), TypeError)
self.query = self.query.limit(limit)
if offset:
+ if not isinstance(offset, int) or offset < 0:
+ frappe.throw(_("Offset must be a non-negative integer"), TypeError)
self.query = self.query.offset(offset)
if distinct:
@@ -103,10 +125,10 @@ class Engine:
self.query = self.query.for_update(skip_locked=skip_locked, nowait=not wait)
if group_by:
+ self._validate_group_by(group_by)
self.query = self.query.groupby(group_by)
- if not ignore_permissions:
- self.check_read_permission()
+ if self.apply_permissions:
self.add_permission_conditions()
self.query.immutable = True
@@ -117,6 +139,10 @@ class Engine:
frappe.throw(_("Invalid DocType: {0}").format(self.doctype))
def apply_fields(self, fields):
+ self.fields = self.parse_fields(fields)
+ if self.apply_permissions:
+ self.fields = self.apply_field_permissions()
+
if not self.fields:
self.fields = [self.table.name]
@@ -180,31 +206,59 @@ class Engine:
self._apply_filter(field, value, operator)
+ def _validate_and_prepare_filter_field(self, field: str | Field, doctype: str | None = None) -> Field:
+ """Validate field name for filters and return a pypika Field object. Handles dynamic fields."""
+ _field = field
+ is_fieldname_safe = False
+
+ if not isinstance(_field, str):
+ # Assume it's a pypika Field or similar, return as is.
+ return _field
+
+ # Always validate field name if it contains special characters to prevent injection
+ if SPECIAL_CHAR_PATTERN.search(_field):
+ # First, try to parse as a dynamic field (contains '.')
+ dynamic_field = DynamicTableField.parse(_field, self.doctype)
+ if dynamic_field:
+ # Legitimate dynamic field (e.g., table.field), apply join
+ self.query = dynamic_field.apply_join(self.query)
+ _field = dynamic_field.field # _field is now a pypika Field object
+ # If not a dynamic field and doesn't match the allowed pattern, reject it
+ elif not ALLOWED_SQL_FIELD_PATTERN.match(_field):
+ frappe.throw(
+ _(
+ "Invalid filter field format: {0}. Field names cannot contain special characters or disallowed patterns."
+ ).format(_field),
+ frappe.PermissionError,
+ )
+ # If it matched the pattern (e.g., `fieldname` with backticks), mark as safe
+ else:
+ is_fieldname_safe = True
+ # No special characters, treat as a standard field name, mark as safe
+ else:
+ is_fieldname_safe = True
+
+ # Convert string field name to pypika Field object if needed
+ if is_fieldname_safe:
+ # Note: We are converting the original `field` string here,
+ # not the potentially modified `_field`
+ # if it became a dynamic field object earlier.
+ _field = frappe.qb.DocType(doctype or self.doctype)[field]
+
+ return _field
+
def _apply_filter(
self,
- field: str,
+ field: str | Field,
value: FilterValue | list | set | None,
operator: str = "=",
doctype: str | None = None,
):
- _field = field
+ _field = self._validate_and_prepare_filter_field(field, doctype)
_value = value
_operator = operator
- if not isinstance(_field, str):
- pass
- elif not self.validate_filters and (dynamic_field := DynamicTableField.parse(field, self.doctype)):
- # apply implicit join if link field's field is referenced
- self.query = dynamic_field.apply_join(self.query)
- _field = dynamic_field.field
- elif self.validate_filters and SPECIAL_CHAR_PATTERN.search(_field):
- frappe.throw(_("Invalid filter: {0}").format(_field), frappe.PermissionError)
- elif not doctype or doctype == self.doctype:
- _field = self.table[field]
- elif doctype:
- _field = frappe.qb.DocType(doctype)[field]
-
- # apply implicit join if child table is referenced
+ # Apply implicit join if child table is referenced
if doctype and doctype != self.doctype:
meta = frappe.get_meta(doctype)
table = frappe.qb.DocType(doctype)
@@ -218,12 +272,14 @@ class Engine:
if not _value and isinstance(_value, list | tuple | set):
_value = ("",)
- # Nested set
+ # Handle nested set operators
if _operator in NESTED_SET_OPERATORS:
hierarchy = _operator
docname = _value
- _df = frappe.get_meta(self.doctype).get_field(field)
+ # Use the original field name string for get_field if _field was converted
+ original_field_name = field if isinstance(field, str) else _field.name
+ _df = frappe.get_meta(self.doctype).get_field(original_field_name)
ref_doctype = _df.options if _df else self.doctype
nodes = get_nested_set_hierarchy_result(ref_doctype, docname, hierarchy)
@@ -232,10 +288,7 @@ class Engine:
if hierarchy in ("not ancestors of", "not descendants of")
else OPERATOR_MAP["in"]
)
- if nodes:
- self.query = self.query.where(operator_fn(_field, nodes))
- else:
- self.query = self.query.where(operator_fn(_field, ("",)))
+ self.query = self.query.where(operator_fn(_field, nodes or ("",)))
return
operator_fn = OPERATOR_MAP[_operator.casefold()]
@@ -298,69 +351,138 @@ class Engine:
# Fall back for functions not present in `SqlFunctions``
return Function(func, *_args, alias=alias or None)
- def sanitize_fields(self, fields: str | list | tuple):
- if isinstance(fields, list | tuple):
- return [
- _sanitize_field(field, self.is_mariadb) if isinstance(field, str) else field
- for field in fields
- ]
- elif isinstance(fields, str):
- return _sanitize_field(fields, self.is_mariadb)
- return fields
-
def parse_string_field(self, field: str):
+ """
+ Parses a field string into a pypika Field object.
+
+ Handles:
+ - *
+ - simple_field
+ - `quoted_field`
+ - tabDocType.simple_field
+ - `tabDocType`.`quoted_field`
+ - Aliases for all above formats (e.g., field as alias)
+ """
if field == "*":
return self.table.star
- alias = None
- if " as " in field:
- field, alias = field.split(" as ")
- if "`" in field:
- if alias:
- return PseudoColumnMapper(f"{field} {alias}")
- return PseudoColumnMapper(field)
- if alias:
- return self.table[field].as_(alias)
- return self.table[field]
- def parse_fields(self, fields: str | list | tuple | None) -> list:
+ alias = None
+ field_part = field
+ if " as " in field.lower(): # Case-insensitive check for ' as '
+ # Find the last occurrence of ' as ' to handle potential aliases named 'as'
+ parts = re.split(r"\s+as\s+", field, flags=re.IGNORECASE)
+ if len(parts) > 1:
+ field_part = parts[0].strip()
+ alias = parts[1].strip().strip('`"') # Remove potential quotes from alias
+
+ match = FIELD_PARSE_REGEX.match(field_part)
+
+ if not match:
+ frappe.throw(_("Could not parse field: {0}").format(field))
+
+ table_name, field_name = match.groups()
+
+ if table_name:
+ # Table name specified (e.g., `tabX`.`y` or tabX.y)
+ table_obj = frappe.qb.DocType(table_name)
+ pypika_field = table_obj[field_name]
+ else:
+ # Simple field name (e.g., `y` or y) - use the main table
+ pypika_field = self.table[field_name]
+
+ if alias:
+ return pypika_field.as_(alias)
+ else:
+ return pypika_field
+
+ def _parse_single_field_item(
+ self, field: str | Criterion | dict
+ ) -> list | Criterion | Field | "DynamicTableField" | "ChildQuery" | None:
+ """Parses a single item from the fields list/tuple. Assumes comma-separated strings have already been split."""
+ if isinstance(field, Criterion):
+ return field
+ elif isinstance(field, dict):
+ # Handle child queries defined as dicts {fieldname: [child_fields]}
+ _parsed_fields = []
+ for child_field, child_fields_list in field.items():
+ # Ensure child_fields_list is a list or tuple
+ if not isinstance(child_fields_list, list | tuple):
+ frappe.throw(
+ _("Child query fields for '{0}' must be a list or tuple.").format(child_field)
+ )
+ _parsed_fields.append(ChildQuery(child_field, list(child_fields_list), self.doctype))
+ # Return list as a dict entry might represent multiple child queries (though unlikely)
+ return _parsed_fields
+
+ # At this point, field must be a string (already validated and sanitized)
+ if not isinstance(field, str):
+ frappe.throw(_("Invalid field type: {0}").format(type(field)))
+
+ # Check for functions or dynamic fields first
+ if has_function(field):
+ return self.get_function_object(field)
+ elif parsed := DynamicTableField.parse(field, self.doctype):
+ return parsed
+ # Otherwise, parse as a standard field (simple, quoted, table-qualified, with/without alias)
+ else:
+ # Note: Comma handling is done in parse_fields before this method is called
+ return self.parse_string_field(field)
+
+ def parse_fields(
+ self, fields: str | list | tuple | None
+ ) -> list[Field | Criterion | "DynamicTableField" | "ChildQuery"]:
if not fields:
return []
- fields = self.sanitize_fields(fields)
- if not isinstance(fields, list | tuple):
- fields = [fields]
-
- def parse_field(field: str):
- if has_function(field):
- return self.get_function_object(field)
- elif parsed := DynamicTableField.parse(field, self.doctype):
- return parsed
- else:
- return self.parse_string_field(field)
+ sanitized_field_list = []
+ if isinstance(fields, str):
+ # Split comma-separated fields passed as a single string *before* sanitizing
+ sanitized_field_list.extend(
+ _sanitize_field(f.strip(), self.is_mariadb) for f in COMMA_PATTERN.split(fields) if f.strip()
+ )
+ elif isinstance(fields, list | tuple):
+ # Sanitize fields if input is already a list/tuple
+ sanitized_field_list.extend(
+ _sanitize_field(field, self.is_mariadb) if isinstance(field, str) else field
+ for field in fields
+ )
+ else:
+ frappe.throw(_("Fields must be a string, list, or tuple"))
_fields = []
- for field in fields:
- if isinstance(field, Criterion):
- _fields.append(field)
- elif isinstance(field, dict):
- for child_field, fields in field.items():
- _fields.append(ChildQuery(child_field, fields, self.doctype))
- elif isinstance(field, str):
- if "," in field:
- field = field.casefold() if "`" not in field else field
- field_list = COMMA_PATTERN.split(field)
- for field in field_list:
- if _field := field.strip():
- _fields.append(parse_field(_field))
- else:
- _fields.append(parse_field(field))
+ # Iterate through the list where each item is a single field definition or criterion
+ for field_item in sanitized_field_list:
+ parsed = self._parse_single_field_item(field_item)
+ if isinstance(parsed, list): # Result from parsing a child query dict
+ _fields.extend(parsed)
+ elif parsed:
+ _fields.append(parsed)
return _fields
+ def _validate_group_by(self, group_by: str):
+ """Validate the group_by string argument."""
+ if not isinstance(group_by, str):
+ frappe.throw(_("Group By must be a string"), TypeError)
+ parts = COMMA_PATTERN.split(group_by)
+ for part in parts:
+ field_name = part.strip()
+ if not field_name:
+ continue
+ if field_name.isdigit():
+ continue
+ if not ALLOWED_SQL_FIELD_PATTERN.match(field_name):
+ frappe.throw(
+ _("Invalid field format in Group By: {0}").format(field_name),
+ frappe.PermissionError,
+ )
+
def apply_order_by(self, order_by: str | None):
if not order_by or order_by == DefaultOrderBy:
return
+ self._validate_order_by(order_by)
+
for declaration in order_by.split(","):
if _order_by := declaration.strip():
parts = _order_by.split(" ")
@@ -368,6 +490,35 @@ class Engine:
order_direction = Order.asc if (len(parts) > 1 and parts[1].lower() == "asc") else Order.desc
self.query = self.query.orderby(order_field, order=order_direction)
+ def _validate_order_by(self, order_by: str):
+ """Validate the order_by string argument."""
+ if not isinstance(order_by, str):
+ frappe.throw(_("Order By must be a string"), TypeError)
+
+ valid_directions = {"asc", "desc"}
+
+ for declaration in order_by.split(","):
+ if _order_by := declaration.strip():
+ parts = _order_by.split()
+ field_name = parts[0]
+ direction = None
+ if len(parts) > 1:
+ direction = parts[1].lower()
+
+ if field_name.isdigit():
+ pass
+ elif not ALLOWED_SQL_FIELD_PATTERN.match(field_name):
+ frappe.throw(
+ _("Invalid field format in Order By: {0}").format(field_name),
+ frappe.PermissionError,
+ )
+
+ if direction and direction not in valid_directions:
+ frappe.throw(
+ _("Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'.").format(parts[1]),
+ ValueError,
+ )
+
def check_read_permission(self):
"""Check if user has read permission on the doctype"""
@@ -385,41 +536,66 @@ class Engine:
)
def apply_field_permissions(self):
- """Allow fields that user has permission to read"""
- permitted_fields = get_permitted_fields(
- doctype=self.doctype,
- parenttype=self.parent_doctype,
- permission_type=self.get_permission_type(self.doctype),
- ignore_virtual=True,
- )
+ """Filter the list of fields based on permlevel."""
allowed_fields = []
+ permitted_fields_set = set(
+ get_permitted_fields(
+ doctype=self.doctype,
+ parenttype=self.parent_doctype,
+ permission_type=self.get_permission_type(self.doctype),
+ ignore_virtual=True,
+ )
+ )
+
for field in self.fields:
if isinstance(field, ChildTableField):
- permitted_child_fields = get_permitted_fields(
- doctype=field.doctype,
- parenttype=field.parent_doctype,
- permission_type=self.get_permission_type(field.doctype),
- ignore_virtual=True,
+ # Cache permitted fields for child doctypes if accessed multiple times
+ permitted_child_fields_set = set(
+ get_permitted_fields(
+ doctype=field.doctype,
+ parenttype=field.parent_doctype,
+ permission_type=self.get_permission_type(field.doctype),
+ ignore_virtual=True,
+ )
)
- if field.child_fieldname in permitted_child_fields:
+ # Check permission for the specific field in the child table
+ if field.fieldname in permitted_child_fields_set:
allowed_fields.append(field)
elif isinstance(field, LinkTableField):
- if field.link_fieldname in permitted_fields:
+ # Check permission for the link field *in the parent doctype*
+ if field.link_fieldname in permitted_fields_set:
allowed_fields.append(field)
elif isinstance(field, ChildQuery):
- permitted_child_fields = get_permitted_fields(
- doctype=field.doctype,
- parenttype=field.parent_doctype,
- permission_type=self.get_permission_type(field.doctype),
- ignore_virtual=True,
+ # Cache permitted fields for the child doctype of the query
+ permitted_child_fields_set = set(
+ get_permitted_fields(
+ doctype=field.doctype,
+ parenttype=field.parent_doctype,
+ permission_type=self.get_permission_type(field.doctype),
+ ignore_virtual=True,
+ )
)
- field.fields = [f for f in field.fields if f in permitted_child_fields]
- allowed_fields.append(field)
+ # Filter the fields *within* the ChildQuery object based on permissions
+ field.fields = [f for f in field.fields if f in permitted_child_fields_set]
+ # Only add the child query if it still has fields after filtering
+ if field.fields:
+ allowed_fields.append(field)
elif isinstance(field, Field):
if field.name == "*":
- allowed_fields.extend(self.parse_fields(permitted_fields))
- elif field.name in permitted_fields:
+ # Expand '*' to include all permitted fields
+ # Avoid reparsing '*' recursively by passing the actual list
+ allowed_fields.extend(self.parse_fields(list(permitted_fields_set)))
+ # Check if the field name (without alias) is permitted
+ elif field.name in permitted_fields_set:
allowed_fields.append(field)
+ # Handle cases where the field might be aliased but the base name is permitted
+ elif hasattr(field, "alias") and field.alias and field.name in permitted_fields_set:
+ allowed_fields.append(field)
+
+ elif isinstance(field, PseudoColumnMapper):
+ # Typically functions or complex terms
+ allowed_fields.append(field)
+
return allowed_fields
def get_user_permission_conditions(self, role_permissions):
@@ -769,16 +945,37 @@ def get_nested_set_hierarchy_result(doctype: str, name: str, hierarchy: str) ->
return result
+@lru_cache(maxsize=1024)
+def _validate_select_field(field: str):
+ """Validate a field string intended for use in a SELECT clause."""
+ if field == "*":
+ return
+
+ if field.isdigit():
+ return
+
+ if ALLOWED_FIELD_PATTERN.match(field) or FUNCTION_CALL_PATTERN.match(field):
+ return
+
+ frappe.throw(
+ _(
+ "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, a valid function call, or '*'."
+ ).format(field),
+ frappe.PermissionError,
+ )
+
+
@lru_cache(maxsize=1024)
def _sanitize_field(field: str, is_mariadb):
- if field == "*" or not SPECIAL_CHAR_PATTERN.search(field):
- # Skip checking if there are no special characters
- return field
+ """Validate and sanitize a field string for SELECT clause by stripping comments."""
+ _validate_select_field(field)
stripped_field = sqlparse.format(field, strip_comments=True, keyword_case="lower")
+
if is_mariadb:
- return MARIADB_SPECIFIC_COMMENT.sub("", stripped_field)
- return stripped_field
+ stripped_field = MARIADB_SPECIFIC_COMMENT.sub("", stripped_field)
+
+ return stripped_field.strip()
class RawCriterion(Term):
From 87664ad6049011b3f9f63df26d32ff564ac91bea Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Fri, 2 May 2025 18:07:54 +0530
Subject: [PATCH 049/196] refactor: Enhance field and function parsing in query
engine
- Introduce `SqlFunctionParser` for robust parsing of supported SQL functions (e.g., `COUNT(*)`, `SUM(amount) as total`, `AVG(price - cost)`), replacing get_function_object and has_function.
- Refactor `DynamicTableField.parse` for improved handling of:
- Aliases (case-insensitive `as`, quoted/unquoted).
- `tabDocType.fieldname` notation (distinguishing child vs. main doctype refs).
- Add validation and better error handling during parsing.
- Rewrite filter field validation (`_validate_and_prepare_filter_field`):
- Disallow backticks (`) in filter field names.
- Enforce specific patterns for dot notation (link/child fields only, reject `tabDoc.field`).
- Validate character sets for simple field names.
- Update standard field parsing (`parse_string_field`, `ALLOWED_FIELD_PATTERN`, `FIELD_PARSE_REGEX`):
- Support quoted table names potentially containing spaces (e.g., `tabTable Name`.`field`).
- Improve `parse_fields` and `_parse_single_field_item` logic:
- Handle direct pypika `Field`/`AggregateFunction` inputs.
- Reliably split comma-separated field strings.
```
---
frappe/database/query.py | 511 ++++++++++++++++++++++++++-------------
1 file changed, 347 insertions(+), 164 deletions(-)
diff --git a/frappe/database/query.py b/frappe/database/query.py
index 37ab0404cf..ec2fbe6ee3 100644
--- a/frappe/database/query.py
+++ b/frappe/database/query.py
@@ -1,12 +1,13 @@
+import operator
import re
from ast import literal_eval
from functools import lru_cache
from types import BuiltinFunctionType
-from typing import TYPE_CHECKING, Any, TypeAlias
+from typing import TYPE_CHECKING, Any, ClassVar, Optional, TypeAlias, Union
import sqlparse
from pypika.queries import QueryBuilder, Table
-from pypika.terms import Term
+from pypika.terms import AggregateFunction, Term
import frappe
from frappe import _
@@ -25,7 +26,6 @@ if TYPE_CHECKING:
TAB_PATTERN = re.compile("^tab")
WORDS_PATTERN = re.compile(r"\w+")
BRACKETS_PATTERN = re.compile(r"\(.*?\)|$")
-SQL_FUNCTIONS = tuple(f"{sql_function.value}(" for sql_function in SqlFunctions) # ) <- ignore this comment.
COMMA_PATTERN = re.compile(r",\s*(?![^()]*\))")
# less restrictive version of frappe.core.doctype.doctype.doctype.START_WITH_LETTERS_PATTERN
@@ -33,8 +33,8 @@ COMMA_PATTERN = re.compile(r",\s*(?![^()]*\))")
TABLE_NAME_PATTERN = re.compile(r"^[\w -]*$", flags=re.ASCII)
# Pattern to validate field names in SELECT:
-# Allows: name, `name`, name as alias, `name` as alias, `table`.`name`, `table`.`name` as alias, table.name, table.name as alias
-ALLOWED_FIELD_PATTERN = re.compile(r"^(?:`?\w+`?\.)?(`?\w+`?|\w+)(?:\s+as\s+\w+)?$", flags=re.ASCII)
+# Allows: name, `name`, name as alias, `name` as alias, `table name`.`name`, `table name`.`name` as alias, table.name, table.name as alias
+ALLOWED_FIELD_PATTERN = re.compile(r"^(?:`?[\w\s-]+`?\.)?(`?\w+`?|\w+)(?:\s+as\s+\w+)?$", flags=re.ASCII)
# Pattern to validate basic SQL function call syntax: word(...) [as alias]
FUNCTION_CALL_PATTERN = re.compile(r"^\w+\(.*\)(?:\s+as\s+\w+)?$", flags=re.IGNORECASE | re.ASCII)
@@ -44,10 +44,30 @@ FUNCTION_CALL_PATTERN = re.compile(r"^\w+\(.*\)(?:\s+as\s+\w+)?$", flags=re.IGNO
# Does NOT allow aliases ('as alias') or functions.
ALLOWED_SQL_FIELD_PATTERN = re.compile(r"^(?:`?\w+`?\.)?(`?\w+`?|\w+)$", flags=re.ASCII)
+# Pattern to validate characters allowed within function arguments that are not simple fields/literals.
+# Allows alphanumeric, underscore, whitespace, +, -, *, /, ., (, ), quotes, and the keyword 'distinct'.
+# Disallows characters like ; = < > etc. to prevent injection.
+ALLOWED_ARGUMENT_CHARS_PATTERN = re.compile(
+ r"^(?:[\w\s\+\-\*\/\.\(\)\`\'\"]+|\bDISTINCT\b)+$", flags=re.IGNORECASE | re.ASCII
+)
+
# Regex to parse field names:
-# Group 1: Optional table name (e.g., `tabDocType` or tabDocType)
-# Group 2: Field name (e.g., `field` or field)
-FIELD_PARSE_REGEX = re.compile(r"^(?:[`\"]?(tab\w+)[`\"]?\.)?[`\"]?(\w+)[`\"]?$")
+# Group 1: Optional quote for table name
+# Group 2: Optional table name (e.g., `tabDocType` or tabDocType or `tabNote Seen By`)
+# Group 3: Optional quote for field name
+# Group 4: Field name (e.g., `field` or field)
+FIELD_PARSE_REGEX = re.compile(r"^(?:([`\"]?)(tab[\w\s-]+)\1\.)?([`\"]?)(\w+)\3$")
+
+# Regex to capture: FunctionName(Arguments) [AS Alias]
+# Group 1: Function Name (e.g., COUNT, SUM)
+# Group 2: Arguments string (e.g., *, field1, 'literal', field2)
+# Group 3: Optional Alias (e.g., average_price or `average_price`) - allows backticks
+SQL_FUNCTION_PATTERN = re.compile(
+ r"^([a-zA-Z_]\w*)\s*\((.*?)\)(?:\s+as\s+(`?[\w\s-]+`?|\w+))?$", flags=re.IGNORECASE | re.ASCII
+)
+
+# Regex to split arguments, respecting potential quotes or nested parentheses
+ARGS_SPLIT_PATTERN = re.compile(r",\s*(?![^()]*\))")
class Engine:
@@ -206,47 +226,6 @@ class Engine:
self._apply_filter(field, value, operator)
- def _validate_and_prepare_filter_field(self, field: str | Field, doctype: str | None = None) -> Field:
- """Validate field name for filters and return a pypika Field object. Handles dynamic fields."""
- _field = field
- is_fieldname_safe = False
-
- if not isinstance(_field, str):
- # Assume it's a pypika Field or similar, return as is.
- return _field
-
- # Always validate field name if it contains special characters to prevent injection
- if SPECIAL_CHAR_PATTERN.search(_field):
- # First, try to parse as a dynamic field (contains '.')
- dynamic_field = DynamicTableField.parse(_field, self.doctype)
- if dynamic_field:
- # Legitimate dynamic field (e.g., table.field), apply join
- self.query = dynamic_field.apply_join(self.query)
- _field = dynamic_field.field # _field is now a pypika Field object
- # If not a dynamic field and doesn't match the allowed pattern, reject it
- elif not ALLOWED_SQL_FIELD_PATTERN.match(_field):
- frappe.throw(
- _(
- "Invalid filter field format: {0}. Field names cannot contain special characters or disallowed patterns."
- ).format(_field),
- frappe.PermissionError,
- )
- # If it matched the pattern (e.g., `fieldname` with backticks), mark as safe
- else:
- is_fieldname_safe = True
- # No special characters, treat as a standard field name, mark as safe
- else:
- is_fieldname_safe = True
-
- # Convert string field name to pypika Field object if needed
- if is_fieldname_safe:
- # Note: We are converting the original `field` string here,
- # not the potentially modified `_field`
- # if it became a dynamic field object earlier.
- _field = frappe.qb.DocType(doctype or self.doctype)[field]
-
- return _field
-
def _apply_filter(
self,
field: str | Field,
@@ -278,9 +257,18 @@ class Engine:
docname = _value
# Use the original field name string for get_field if _field was converted
+ # If _field is from a dynamic field, its name might be just the target fieldname.
+ # We need the original string ('link.target') or the fieldname from the main doctype.
original_field_name = field if isinstance(field, str) else _field.name
- _df = frappe.get_meta(self.doctype).get_field(original_field_name)
- ref_doctype = _df.options if _df else self.doctype
+ # Check if the original field name exists in the *main* doctype meta
+ main_meta = frappe.get_meta(self.doctype)
+ if main_meta.has_field(original_field_name):
+ _df = main_meta.get_field(original_field_name)
+ ref_doctype = _df.options if _df else self.doctype
+ else:
+ # If not in main doctype, assume it's a standard field like 'name' or refers to the main doctype itself
+ # This part might need refinement if nested set operators are used with dynamic fields.
+ ref_doctype = self.doctype
nodes = get_nested_set_hierarchy_result(ref_doctype, docname, hierarchy)
operator_fn = (
@@ -297,59 +285,54 @@ class Engine:
else:
self.query = self.query.where(operator_fn(_field, _value))
- def get_function_object(self, field: str) -> "Function":
- """Return PyPika Function object. Expect field to look like 'SUM(*)' or 'name' or something similar."""
- func = field.split("(", maxsplit=1)[0].capitalize()
- args_start, args_end = len(func) + 1, field.index(")")
- args = field[args_start:args_end].split(",")
+ def _validate_and_prepare_filter_field(self, field: str | Field, doctype: str | None = None) -> Field:
+ """Validate field name for filters and return a pypika Field object. Handles dynamic fields."""
- _, alias = field.split(" as ") if " as " in field else (None, None)
+ if isinstance(field, Term):
+ # return if field is already a pypika Term
+ return field
- to_cast = "*" not in args
- _args = []
+ # Reject backticks
+ if "`" in field:
+ frappe.throw(
+ _("Filter fields cannot contain backticks (`)."),
+ frappe.ValidationError,
+ title=_("Invalid Filter"),
+ )
- for arg in args:
- initial_fields = literal_eval_(arg.strip())
- if to_cast:
- has_primitive_operator = False
- for _operator in OPERATOR_MAP.keys():
- if _operator in initial_fields:
- operator_mapping = OPERATOR_MAP[_operator]
- # Only perform this if operator is of primitive type.
- if isinstance(operator_mapping, BuiltinFunctionType):
- has_primitive_operator = True
- field = operator_mapping(
- *map(
- lambda field: Field(field.strip())
- if "`" not in field
- else PseudoColumnMapper(field.strip()),
- arg.split(_operator),
- ),
- )
-
- field = (
- (
- Field(initial_fields)
- if "`" not in initial_fields
- else PseudoColumnMapper(initial_fields)
- )
- if not has_primitive_operator
- else field
- )
+ # Handle dot notation (link_field.target_field or child_table_field.target_field)
+ if "." in field:
+ # Disallow tabDoc.field notation in filters.
+ dynamic_field = DynamicTableField.parse(field, self.doctype, allow_tab_notation=False)
+ if dynamic_field:
+ # Parsed successfully as link/child field access
+ self.query = dynamic_field.apply_join(self.query)
+ # Return the pypika Field object associated with the dynamic field
+ return dynamic_field.field
else:
- field = initial_fields
-
- _args.append(field)
-
- if alias and "`" in alias:
- alias = alias.replace("`", "")
- try:
- if func.casefold() == "now":
- return getattr(functions, func)()
- return getattr(functions, func)(*_args, alias=alias or None)
- except AttributeError:
- # Fall back for functions not present in `SqlFunctions``
- return Function(func, *_args, alias=alias or None)
+ # Contains '.' but is not a valid link/child field access pattern
+ # This rejects tabDoc.field and other invalid formats like a.b.c
+ frappe.throw(
+ _(
+ "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+ ).format(field),
+ frappe.ValidationError,
+ title=_("Invalid Filter"),
+ )
+ else:
+ # No '.' and no '`'. Check if it's a simple field name (alphanumeric + underscore).
+ if not re.fullmatch(r"\w+", field):
+ frappe.throw(
+ _(
+ "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+ ).format(field),
+ frappe.ValidationError,
+ title=_("Invalid Filter"),
+ )
+ # It's a simple, valid fieldname like 'name' or 'creation'
+ # Convert string field name to pypika Field object for the specified/current doctype
+ target_doctype = doctype or self.doctype
+ return frappe.qb.DocType(target_doctype)[field]
def parse_string_field(self, field: str):
"""
@@ -361,6 +344,7 @@ class Engine:
- `quoted_field`
- tabDocType.simple_field
- `tabDocType`.`quoted_field`
+ - `tabTable Name`.`quoted_field`
- Aliases for all above formats (e.g., field as alias)
"""
if field == "*":
@@ -380,10 +364,16 @@ class Engine:
if not match:
frappe.throw(_("Could not parse field: {0}").format(field))
- table_name, field_name = match.groups()
+ # Groups: 1: table_quote, 2: table_name_with_tab, 3: field_quote, 4: field_name
+ groups = match.groups()
+ table_name = groups[1] # This will be None if no table part (e.g., just 'field')
+ field_name = groups[3] # This will be the field name (e.g., 'field')
if table_name:
- # Table name specified (e.g., `tabX`.`y` or tabX.y)
+ # Table name specified (e.g., `tabX`.`y` or tabX.y or `tabX Y`.`y`)
+ # Ensure the extracted table name is valid before creating DocType object
+ if not TABLE_NAME_PATTERN.match(table_name.lstrip("tab")):
+ frappe.throw(_("Invalid characters in table name: {0}").format(table_name))
table_obj = frappe.qb.DocType(table_name)
pypika_field = table_obj[field_name]
else:
@@ -395,11 +385,59 @@ class Engine:
else:
return pypika_field
+ def parse_fields(
+ self, fields: str | list | tuple | Field | AggregateFunction | None
+ ) -> "list[Field | AggregateFunction | Criterion | DynamicTableField | ChildQuery]":
+ if not fields:
+ return []
+
+ # Handle direct pypika Field or Function objects
+ if isinstance(fields, Field | AggregateFunction):
+ return [fields]
+
+ initial_field_list = []
+ if isinstance(fields, str):
+ # Split comma-separated fields passed as a single string
+ initial_field_list.extend(f.strip() for f in COMMA_PATTERN.split(fields) if f.strip())
+ elif isinstance(fields, list | tuple):
+ for item in fields:
+ if isinstance(item, str) and "," in item:
+ # Split comma-separated strings within the list
+ initial_field_list.extend(f.strip() for f in COMMA_PATTERN.split(item) if f.strip())
+ else:
+ # Add non-comma-separated items directly
+ initial_field_list.append(item)
+
+ else:
+ frappe.throw(_("Fields must be a string, list, tuple, pypika Field, or pypika Function"))
+
+ _fields = []
+ # Iterate through the list where each item could be a single field, criterion, or a comma-separated string
+ for item in initial_field_list:
+ if isinstance(item, str):
+ # Sanitize and split potentially comma-separated strings within the list
+ sanitized_item = _sanitize_field(item.strip(), self.is_mariadb).strip()
+ if sanitized_item:
+ parsed = self._parse_single_field_item(sanitized_item)
+ if isinstance(parsed, list): # Result from parsing a child query dict
+ _fields.extend(parsed)
+ elif parsed:
+ _fields.append(parsed)
+ else:
+ # Handle non-string items (like dict for child query, or pre-parsed Field/Function)
+ parsed = self._parse_single_field_item(item)
+ if isinstance(parsed, list):
+ _fields.extend(parsed)
+ elif parsed:
+ _fields.append(parsed)
+
+ return _fields
+
def _parse_single_field_item(
- self, field: str | Criterion | dict
- ) -> list | Criterion | Field | "DynamicTableField" | "ChildQuery" | None:
+ self, field: str | Criterion | dict | Field | Function
+ ) -> "list | Criterion | Field | Function | DynamicTableField | ChildQuery | None":
"""Parses a single item from the fields list/tuple. Assumes comma-separated strings have already been split."""
- if isinstance(field, Criterion):
+ if isinstance(field, Criterion | Field | Function):
return field
elif isinstance(field, dict):
# Handle child queries defined as dicts {fieldname: [child_fields]}
@@ -418,9 +456,10 @@ class Engine:
if not isinstance(field, str):
frappe.throw(_("Invalid field type: {0}").format(type(field)))
- # Check for functions or dynamic fields first
- if has_function(field):
- return self.get_function_object(field)
+ # Try parsing as SQL function first
+ if parsed_function := SqlFunctionParser.parse(field):
+ return parsed_function
+ # Then try parsing as dynamic field (link/child table access)
elif parsed := DynamicTableField.parse(field, self.doctype):
return parsed
# Otherwise, parse as a standard field (simple, quoted, table-qualified, with/without alias)
@@ -428,38 +467,6 @@ class Engine:
# Note: Comma handling is done in parse_fields before this method is called
return self.parse_string_field(field)
- def parse_fields(
- self, fields: str | list | tuple | None
- ) -> list[Field | Criterion | "DynamicTableField" | "ChildQuery"]:
- if not fields:
- return []
-
- sanitized_field_list = []
- if isinstance(fields, str):
- # Split comma-separated fields passed as a single string *before* sanitizing
- sanitized_field_list.extend(
- _sanitize_field(f.strip(), self.is_mariadb) for f in COMMA_PATTERN.split(fields) if f.strip()
- )
- elif isinstance(fields, list | tuple):
- # Sanitize fields if input is already a list/tuple
- sanitized_field_list.extend(
- _sanitize_field(field, self.is_mariadb) if isinstance(field, str) else field
- for field in fields
- )
- else:
- frappe.throw(_("Fields must be a string, list, or tuple"))
-
- _fields = []
- # Iterate through the list where each item is a single field definition or criterion
- for field_item in sanitized_field_list:
- parsed = self._parse_single_field_item(field_item)
- if isinstance(parsed, list): # Result from parsing a child query dict
- _fields.extend(parsed)
- elif parsed:
- _fields.append(parsed)
-
- return _fields
-
def _validate_group_by(self, group_by: str):
"""Validate the group_by string argument."""
if not isinstance(group_by, str):
@@ -592,7 +599,7 @@ class Engine:
elif hasattr(field, "alias") and field.alias and field.name in permitted_fields_set:
allowed_fields.append(field)
- elif isinstance(field, PseudoColumnMapper):
+ elif isinstance(field, PseudoColumnMapper | Function):
# Typically functions or complex terms
allowed_fields.append(field)
@@ -788,24 +795,84 @@ class DynamicTableField:
return f"{table_name}.{fieldname} {alias}".strip()
@staticmethod
- def parse(field: str, doctype: str):
+ def parse(field: str, doctype: str, allow_tab_notation: bool = True):
if "." in field:
alias = None
- if " as " in field:
- field, alias = field.split(" as ")
- if field.startswith("`tab") or field.startswith('"tab'):
- _, child_doctype, child_field = re.search(r'([`"])tab(.+?)\1.\1(.+)\1', field).groups()
- if child_doctype == doctype:
- return
- return ChildTableField(child_doctype, child_field, doctype, alias=alias)
+ # Handle 'as' alias, case-insensitive, taking the last occurrence
+ if " as " in field.lower():
+ parts = re.split(r"\s+as\s+", field, flags=re.IGNORECASE)
+ if len(parts) > 1:
+ field_part = parts[0].strip()
+ alias = parts[-1].strip().strip('`"') # Get last part as alias
+ field = field_part # Use the part before alias for further parsing
+
+ child_match = None
+ if allow_tab_notation:
+ # Regex to match `tabDoc`.`field`, "tabDoc"."field", tabDoc.field
+ # Group 1: Doctype name (without 'tab')
+ # Group 2: Optional quote for fieldname
+ # Group 3: Fieldname
+ # Ensures quotes are consistent or absent on fieldname using backreference \2
+ # Uses re.match to ensure the pattern matches the *entire* field string
+ # Allow spaces in doctype name (Group 1) and field name (Group 3)
+ child_match = re.match(r'[`"]?tab([\w\s]+)[`"]?\.([`"]?)([\w\s]+)\2$', field)
+
+ if child_match:
+ child_doctype_name = child_match.group(1)
+ child_field = child_match.group(3)
+
+ if child_doctype_name == doctype:
+ # Referencing a field in the main doctype using `tabDoctype.field` notation.
+ # This should be handled by the standard field parser, not as a DynamicTableField.
+ return None
+ # Found a child table reference like tabChildDoc.child_field
+ # Note: parent_fieldname is None here as it's directly specified via tab notation
+ return ChildTableField(child_doctype_name, child_field, doctype, alias=alias)
else:
- linked_fieldname, fieldname = field.split(".")
- linked_field = frappe.get_meta(doctype).get_field(linked_fieldname)
- linked_doctype = linked_field.options
- if linked_field.fieldtype == "Link":
- return LinkTableField(linked_doctype, fieldname, doctype, linked_fieldname, alias=alias)
- elif linked_field.fieldtype in frappe.model.table_fields:
- return ChildTableField(linked_doctype, fieldname, doctype, linked_fieldname, alias=alias)
+ # Try parsing as LinkTableField (link_field.target_field) or ChildTableField (child_field.target_field)
+ # This handles patterns not starting with 'tab' prefix
+ if "." not in field: # Should not happen due to outer check, but safety
+ return None
+
+ parts = field.split(".", 1)
+ if len(parts) != 2: # Ensure it splits into exactly two parts
+ return None
+ potential_parent_fieldname, target_fieldname = parts
+
+ # Basic validation for the parts to avoid unnecessary metadata lookups on invalid input
+ # We expect simple identifiers here. Quoted/complex names are handled elsewhere or by child_match.
+ if (
+ not potential_parent_fieldname.replace("_", "").isalnum()
+ or not target_fieldname.replace("_", "").isalnum()
+ ):
+ return None
+
+ try:
+ meta = frappe.get_meta(doctype) # Get meta of the *parent* doctype
+ # Check if the first part is a valid fieldname in the parent doctype
+ if not meta.has_field(potential_parent_fieldname):
+ return None # Not a field in the parent, so not link/child access pattern
+
+ linked_field = meta.get_field(potential_parent_fieldname)
+ except Exception:
+ # Handle cases where doctype doesn't exist, etc.
+ print(f"Error getting metadata for {doctype} while parsing field {field}")
+ return None
+
+ if linked_field:
+ linked_doctype = linked_field.options
+ if linked_field.fieldtype == "Link":
+ # It's a Link field access: parent_doctype.link_fieldname.target_fieldname
+ return LinkTableField(
+ linked_doctype, target_fieldname, doctype, potential_parent_fieldname, alias=alias
+ )
+ elif linked_field.fieldtype in frappe.model.table_fields:
+ # It's a Child Table field access: parent_doctype.child_table_fieldname.target_fieldname
+ return ChildTableField(
+ linked_doctype, target_fieldname, doctype, potential_parent_fieldname, alias=alias
+ )
+
+ return None
def apply_select(self, query: QueryBuilder) -> QueryBuilder:
raise NotImplementedError
@@ -899,6 +966,129 @@ class ChildQuery:
)
+class SqlFunctionParser:
+ _supported_functions: ClassVar[dict[str, BuiltinFunctionType]] = {
+ f.value.lower(): getattr(functions, f.name) for f in SqlFunctions if hasattr(functions, f.name)
+ }
+
+ @staticmethod
+ def _parse_argument_expression(arg_str: str) -> Term | None:
+ """Attempts to parse simple arithmetic expressions between fields."""
+ # Map symbols to pypika's expected operation methods if needed, or rely on overloading
+ # For +, -, *, / pypika Field overloading works directly
+ supported_operators = {"+": operator.add, "-": operator.sub, "*": operator.mul, "/": operator.truediv}
+
+ for op_symbol, _op_func in supported_operators.items():
+ # Split only on the first occurrence of the operator
+ parts = arg_str.split(op_symbol, 1)
+ if len(parts) == 2:
+ left_str, right_str = parts[0].strip(), parts[1].strip()
+
+ # Validate both parts are valid field names (simple or quoted)
+ if ALLOWED_SQL_FIELD_PATTERN.match(left_str.strip('`"')) and ALLOWED_SQL_FIELD_PATTERN.match(
+ right_str.strip('`"')
+ ):
+ # Create Field or PseudoColumnMapper objects
+ left_field = (
+ PseudoColumnMapper(left_str)
+ if "`" in left_str or '"' in left_str
+ else Field(left_str)
+ )
+ right_field = (
+ PseudoColumnMapper(right_str)
+ if "`" in right_str or '"' in right_str
+ else Field(right_str)
+ )
+
+ # Use pypika's operator overloading for Field objects
+ if op_symbol == "+":
+ return left_field + right_field
+ elif op_symbol == "-":
+ return left_field - right_field
+ elif op_symbol == "*":
+ return left_field * right_field
+ elif op_symbol == "/":
+ return left_field / right_field
+ # If no simple binary arithmetic expression is found
+ return None
+
+ @staticmethod
+ def parse(field_str: str) -> Function | None:
+ """
+ Parses a string to see if it represents a *supported* SQL function call.
+ Returns a pypika Function object if valid and supported, otherwise None.
+ Handles simple arguments (field names, *), aliases, and simple expressions.
+ """
+ match = SQL_FUNCTION_PATTERN.match(field_str.strip())
+ if not match:
+ return None
+
+ func_name, args_str, alias = match.groups()
+ func_name_lower = func_name.lower()
+
+ # Strip backticks from alias if present
+ if alias:
+ alias = alias.strip("`")
+
+ # Check if the function is in our supported list
+ pypika_func = SqlFunctionParser._supported_functions.get(func_name_lower)
+ if not pypika_func:
+ # Function name not found in SqlFunctions enum values
+ return None
+
+ # Handle NOW() specifically (often takes no arguments)
+ if func_name_lower == "now" and not args_str.strip():
+ return pypika_func(alias=alias or None)
+
+ # Parse arguments
+ parsed_args = []
+ if args_str.strip():
+ raw_args = ARGS_SPLIT_PATTERN.split(args_str.strip())
+ for arg in raw_args:
+ arg = arg.strip()
+ if not arg:
+ continue
+
+ if arg == "*":
+ # Only allow '*' for specific functions like COUNT
+ if func_name_lower != "count":
+ frappe.throw(_("Wildcard '*' argument is only supported for COUNT function."))
+ parsed_args.append(Term.wrap_constant("*"))
+ continue
+
+ evaluated_arg = literal_eval_(arg)
+ if evaluated_arg != arg: # Successfully evaluated to a literal
+ parsed_args.append(Term.wrap_constant(evaluated_arg))
+ else:
+ # Not '*' or a simple literal. Could be a field, quoted field, keyword, or expression.
+ # Check if it's a simple or quoted field name first.
+ if ALLOWED_SQL_FIELD_PATTERN.match(arg.strip('`"')):
+ # Pass the original arg (with quotes if present) to the mapper/field
+ if "`" in arg or '"' in arg:
+ parsed_args.append(PseudoColumnMapper(arg))
+ else:
+ parsed_args.append(Field(arg))
+ # Check if it's a valid expression/keyword based on allowed characters
+ elif ALLOWED_ARGUMENT_CHARS_PATTERN.match(arg):
+ # Attempt to parse as a simple arithmetic expression first
+ parsed_expr = SqlFunctionParser._parse_argument_expression(arg)
+ if parsed_expr:
+ parsed_args.append(parsed_expr)
+ else:
+ # Fallback: Pass the raw string argument for non-expression cases like 'distinct name'
+ parsed_args.append(arg)
+ else:
+ # Argument contains disallowed characters.
+ frappe.throw(
+ _("Invalid characters or format in function argument expression: {0}").format(
+ arg
+ ),
+ frappe.ValidationError,
+ )
+
+ return pypika_func(*parsed_args, alias=alias or None)
+
+
def literal_eval_(literal):
try:
return literal_eval(literal)
@@ -906,13 +1096,6 @@ def literal_eval_(literal):
return literal
-def has_function(field: str):
- if "`" not in field:
- field = field.casefold()
-
- return any(func in field for func in SQL_FUNCTIONS)
-
-
def get_nested_set_hierarchy_result(doctype: str, name: str, hierarchy: str) -> list[str]:
"""Get matching nodes based on operator."""
table = frappe.qb.DocType(doctype)
@@ -954,7 +1137,7 @@ def _validate_select_field(field: str):
if field.isdigit():
return
- if ALLOWED_FIELD_PATTERN.match(field) or FUNCTION_CALL_PATTERN.match(field):
+ if ALLOWED_FIELD_PATTERN.match(field) or SqlFunctionParser.parse(field):
return
frappe.throw(
From a9fb29fb8e11396ef41cf39c6492484fe0481361 Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Fri, 2 May 2025 18:10:30 +0530
Subject: [PATCH 050/196] test: test for invalid inputs in fields, filters,
group_by, order_by
- comment out invalid tests
---
frappe/tests/test_query.py | 217 ++++++++++++++++++++++++++++++++++---
1 file changed, 202 insertions(+), 15 deletions(-)
diff --git a/frappe/tests/test_query.py b/frappe/tests/test_query.py
index 8015196818..d6991f3358 100644
--- a/frappe/tests/test_query.py
+++ b/frappe/tests/test_query.py
@@ -200,6 +200,191 @@ class TestQuery(IntegrationTestCase):
frappe.qb.from_(user_doctype).select(user_doctype.email).get_sql(),
)
+ def test_field_validation_select(self):
+ """Test validation for fields in SELECT clause."""
+
+ valid_fields = [
+ "name",
+ "`name`",
+ "tabUser.name",
+ "`tabUser`.`name`",
+ "name as alias",
+ "`name` as alias",
+ "tabUser.name as alias",
+ "`tabUser`.`name` as alias",
+ "COUNT(*)",
+ "COUNT(name)",
+ "COUNT(`name`)",
+ "COUNT(`tabUser`.`name`)",
+ "COUNT(*) as count_alias",
+ "SUM(amount) as total",
+ "*",
+ ]
+ invalid_fields = [
+ "name; DROP TABLE users",
+ "`name` ; SELECT * FROM secrets",
+ "name--comment",
+ "name /* comment */",
+ "name AS alias; --",
+ "COUNT(name) as alias; SELECT 1",
+ "invalid-field-name",
+ "table.invalid-field",
+ "`table`.`invalid-field`",
+ "field with space",
+ "`field with space`",
+ "field as alias with space",
+ "field as `alias with space`",
+ "COUNT(name;)",
+ ]
+
+ for field in valid_fields:
+ try:
+ frappe.qb.get_query("User", fields=field).get_sql()
+ # Test as list item too
+ frappe.qb.get_query("User", fields=[field]).get_sql()
+ except Exception as e:
+ self.fail(f"Valid SELECT field '{field}' failed validation: {e}")
+
+ for field in invalid_fields:
+ with self.assertRaises(
+ (frappe.PermissionError, frappe.ValidationError),
+ msg=f"Invalid SELECT field '[{field}]' passed validation",
+ ):
+ frappe.qb.get_query("User", fields=[field]).get_sql()
+
+ def test_field_validation_filters(self):
+ """Test validation for fields used in filters (WHERE clause)."""
+ valid_fields = ["name", "creation", "language.name"]
+ # Filters should not allow aliases or functions directly as field names
+ invalid_fields = [
+ "tabUser.name",
+ "`tabUser`.`name`",
+ "name as alias",
+ "`name` as alias",
+ "tabUser.name as alias",
+ "`tabUser`.`name` as alias",
+ "COUNT(*)",
+ "COUNT(name)",
+ "name; DROP TABLE users",
+ "`name` ; SELECT * FROM secrets",
+ "name--comment",
+ "name /* comment */",
+ "invalid-field-name",
+ "table.invalid-field",
+ "`table`.`invalid-field`",
+ "field with space",
+ "`field with space`",
+ ]
+
+ for field in valid_fields:
+ try:
+ # Test in dict filter
+ frappe.qb.get_query("User", filters={field: "value"}).get_sql()
+ # Test in list filter
+ frappe.qb.get_query("User", filters=[[field, "=", "value"]]).get_sql()
+ # Test in list filter with doctype
+ frappe.qb.get_query("User", filters=[["User", field, "=", "value"]]).get_sql()
+ except Exception as e:
+ self.fail(f"Valid filter field '{field}' failed validation: {e}")
+
+ for field in invalid_fields:
+ with self.assertRaises(
+ frappe.ValidationError, msg=f"Invalid filter field '{{{field}: val}}' passed validation"
+ ):
+ frappe.qb.get_query("User", filters={field: "value"}).get_sql()
+
+ def test_field_validation_group_by(self):
+ """Test validation for fields in GROUP BY clause."""
+ valid_fields = [
+ "name",
+ "`name`",
+ "tabUser.name",
+ "`tabUser`.`name`",
+ "1", # Allow numeric indices
+ "name, email",
+ "`name`, `tabUser`.`email`",
+ "1, 2",
+ ]
+ # GROUP BY should not allow aliases or functions
+ invalid_fields = [
+ "name as alias",
+ "COUNT(*)",
+ "COUNT(name)",
+ "name; DROP TABLE users",
+ "`name` ; SELECT * FROM secrets",
+ "name--comment",
+ "name /* comment */",
+ "invalid-field-name",
+ "table.invalid-field",
+ "`table`.`invalid-field`",
+ "field with space",
+ "`field with space`",
+ "name, email; SELECT 1",
+ ]
+
+ for group_by_str in valid_fields:
+ try:
+ frappe.qb.get_query("User", group_by=group_by_str).get_sql()
+ except Exception as e:
+ self.fail(f"Valid GROUP BY string '{group_by_str}' failed validation: {e}")
+
+ for group_by_str in invalid_fields:
+ with self.assertRaises(
+ frappe.PermissionError, msg=f"Invalid GROUP BY string '{group_by_str}' passed validation"
+ ):
+ frappe.qb.get_query("User", group_by=group_by_str).get_sql()
+
+ def test_field_validation_order_by(self):
+ """Test validation for fields in ORDER BY clause."""
+ valid_fields = [
+ "name",
+ "`name`",
+ "tabUser.name",
+ "`tabUser`.`name`",
+ "1", # Allow numeric indices
+ "name asc",
+ "`name` DESC",
+ "tabUser.name Asc",
+ "`tabUser`.`name` desc",
+ "1 asc",
+ "2 DESC",
+ "name, email",
+ "`name` asc, `tabUser`.`email` DESC",
+ "1 asc, 2 desc",
+ ]
+ # ORDER BY should not allow aliases or functions, or invalid directions
+ invalid_fields = [
+ "name as alias",
+ "COUNT(*)",
+ "COUNT(name)",
+ "name; DROP TABLE users",
+ "`name` ; SELECT * FROM secrets",
+ "name--comment",
+ "name /* comment */",
+ "invalid-field-name",
+ "table.invalid-field",
+ "`table`.`invalid-field`",
+ "field with space",
+ "`field with space`",
+ "name sideways",
+ "name ASC;",
+ "name, email; SELECT 1",
+ "name INVALID_DIRECTION",
+ ]
+
+ for order_by_str in valid_fields:
+ try:
+ frappe.qb.get_query("User", order_by=order_by_str).get_sql()
+ except Exception as e:
+ self.fail(f"Valid ORDER BY string '{order_by_str}' failed validation: {e}")
+
+ for order_by_str in invalid_fields:
+ with self.assertRaises(
+ (frappe.PermissionError, ValueError),
+ msg=f"Invalid ORDER BY string '{order_by_str}' passed validation",
+ ):
+ frappe.qb.get_query("User", order_by=order_by_str).get_sql()
+
def test_aliasing(self):
user_doctype = frappe.qb.DocType("User")
self.assertEqual(
@@ -260,16 +445,17 @@ class TestQuery(IntegrationTestCase):
),
)
- self.assertRaisesRegex(
- frappe.PermissionError,
- "Invalid filter",
- lambda: frappe.qb.get_query(
- "DocType",
- fields=["name"],
- filters={"permissions.role": "System Manager"},
- validate_filters=True,
- ),
- )
+ # validate_filters is deprecated, test not needed
+ # self.assertRaisesRegex(
+ # frappe.PermissionError,
+ # "Invalid filter",
+ # lambda: frappe.qb.get_query(
+ # "DocType",
+ # fields=["name"],
+ # filters={"permissions.role": "System Manager"},
+ # validate_filters=True,
+ # ),
+ # )
self.assertEqual(
frappe.qb.get_query(
@@ -366,11 +552,12 @@ class TestQuery(IntegrationTestCase):
),
)
- @run_only_if(db_type_is.MARIADB)
- def test_comment_stripping(self):
- self.assertNotIn(
- "email", frappe.qb.get_query("User", fields=["name", "#email"], filters={}).get_sql()
- )
+ # fields now has strict validation, so this test is not valid anymore
+ # @run_only_if(db_type_is.MARIADB)
+ # def test_comment_stripping(self):
+ # self.assertNotIn(
+ # "email", frappe.qb.get_query("User", fields=["name", "#email"], filters={}).get_sql()
+ # )
def test_nestedset(self):
frappe.db.sql("delete from `tabDocType` where `name` = 'Test Tree DocType'")
From 63afc0601b4bdd56face8a615c39d330c91fe111 Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Fri, 2 May 2025 19:08:00 +0530
Subject: [PATCH 051/196] fix: restrict child table access if user has only
"select" on parent
---
frappe/database/query.py | 16 +++++++++---
frappe/tests/test_query.py | 51 ++++++++++++++++++++++++++++++++++++++
2 files changed, 64 insertions(+), 3 deletions(-)
diff --git a/frappe/database/query.py b/frappe/database/query.py
index ec2fbe6ee3..47a8b4d887 100644
--- a/frappe/database/query.py
+++ b/frappe/database/query.py
@@ -391,8 +391,8 @@ class Engine:
if not fields:
return []
- # Handle direct pypika Field or Function objects
- if isinstance(fields, Field | AggregateFunction):
+ # return if fields is already a pypika Term
+ if isinstance(fields, Term):
return [fields]
initial_field_list = []
@@ -545,17 +545,23 @@ class Engine:
def apply_field_permissions(self):
"""Filter the list of fields based on permlevel."""
allowed_fields = []
+ parent_permission_type = self.get_permission_type(self.doctype)
+
permitted_fields_set = set(
get_permitted_fields(
doctype=self.doctype,
parenttype=self.parent_doctype,
- permission_type=self.get_permission_type(self.doctype),
+ permission_type=parent_permission_type,
ignore_virtual=True,
)
)
for field in self.fields:
if isinstance(field, ChildTableField):
+ if parent_permission_type == "select":
+ # Skip child table fields if parent permission is only 'select'
+ continue
+
# Cache permitted fields for child doctypes if accessed multiple times
permitted_child_fields_set = set(
get_permitted_fields(
@@ -573,6 +579,10 @@ class Engine:
if field.link_fieldname in permitted_fields_set:
allowed_fields.append(field)
elif isinstance(field, ChildQuery):
+ if parent_permission_type == "select":
+ # Skip child queries if parent permission is only 'select'
+ continue
+
# Cache permitted fields for the child doctype of the query
permitted_child_fields_set = set(
get_permitted_fields(
diff --git a/frappe/tests/test_query.py b/frappe/tests/test_query.py
index d6991f3358..988af95aaa 100644
--- a/frappe/tests/test_query.py
+++ b/frappe/tests/test_query.py
@@ -2,6 +2,7 @@ import itertools
import frappe
from frappe.core.doctype.doctype.test_doctype import new_doctype
+from frappe.permissions import add_permission, update_permission_property
from frappe.query_builder import Field
from frappe.query_builder.functions import Abs, Count, Ifnull, Max, Now, Timestamp
from frappe.tests import IntegrationTestCase
@@ -734,6 +735,56 @@ class TestQuery(IntegrationTestCase):
test_post.delete()
+ def test_child_table_access_with_select_permission(self):
+ """Test that child table fields are inaccessible if user only has select perm on parent."""
+
+ test_role = "Select Note Test Role"
+ test_user_email = "test2@example.com" # Use existing test user
+ test_note_title = "Child Select Test Note"
+
+ # Cleanup
+ frappe.set_user("Administrator")
+ test_user = frappe.get_doc("User", test_user_email)
+ test_user.remove_roles(test_role)
+ frappe.delete_doc("Role", test_role, ignore_missing=True, force=True)
+ frappe.delete_doc("Note", {"title": test_note_title}, ignore_missing=True, force=True)
+
+ # Setup Role with 'select' on Note and 'read' on Note Seen By
+ frappe.get_doc({"doctype": "Role", "role_name": test_role}).insert(ignore_if_duplicate=True)
+ # Grant select on Note, read on Note Seen By
+ add_permission("Note", test_role, 0, ptype="select")
+ add_permission("Note Seen By", test_role, 0, ptype="read")
+ # Ensure no read permission on Note for this role by explicitly setting it to 0
+ update_permission_property("Note", test_role, 0, "read", 0, validate=False)
+ test_user.add_roles(test_role)
+
+ note = frappe.get_doc(
+ doctype="Note", title=test_note_title, public=1, seen_by=[{"user": "Administrator"}]
+ ).insert(ignore_permissions=True)
+
+ frappe.set_user(test_user_email)
+ query = frappe.qb.get_query(
+ "Note",
+ filters={"name": note.name},
+ fields=["name", {"seen_by": ["user"]}],
+ ignore_permissions=False,
+ )
+ result = query.run(as_dict=True)
+
+ self.assertEqual(len(result), 1, "Should find the note record")
+ self.assertIn("name", result[0], "Parent field 'name' should be accessible")
+ self.assertNotIn(
+ "seen_by",
+ result[0],
+ "Child table field 'seen_by' should NOT be accessible with only 'select' on parent",
+ )
+
+ # Cleanup
+ frappe.set_user("Administrator")
+ note.delete(ignore_permissions=True)
+ test_user.remove_roles(test_role)
+ frappe.delete_doc("Role", test_role, force=True, ignore_permissions=True)
+
def test_nested_permission(self):
"""Test permission on nested doctypes"""
frappe.set_user("Administrator")
From f77a9405823f7ac07038632d192bafdc51b4cf33 Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Fri, 2 May 2025 19:21:01 +0530
Subject: [PATCH 052/196] fix: check permlevel for fields like
"link_field.fieldname"
---
frappe/database/query.py | 55 +++++++++++--------
frappe/tests/test_query.py | 110 +++++++++++++++++++++++++++++++++++++
2 files changed, 143 insertions(+), 22 deletions(-)
diff --git a/frappe/database/query.py b/frappe/database/query.py
index 47a8b4d887..97e86df1b9 100644
--- a/frappe/database/query.py
+++ b/frappe/database/query.py
@@ -546,14 +546,23 @@ class Engine:
"""Filter the list of fields based on permlevel."""
allowed_fields = []
parent_permission_type = self.get_permission_type(self.doctype)
+ permitted_fields_cache = {}
- permitted_fields_set = set(
- get_permitted_fields(
- doctype=self.doctype,
- parenttype=self.parent_doctype,
- permission_type=parent_permission_type,
- ignore_virtual=True,
- )
+ def get_cached_permitted_fields(doctype, parenttype, permission_type):
+ cache_key = (doctype, parenttype, permission_type)
+ if cache_key not in permitted_fields_cache:
+ permitted_fields_cache[cache_key] = set(
+ get_permitted_fields(
+ doctype=doctype,
+ parenttype=parenttype,
+ permission_type=permission_type,
+ ignore_virtual=True,
+ )
+ )
+ return permitted_fields_cache[cache_key]
+
+ permitted_fields_set = get_cached_permitted_fields(
+ self.doctype, self.parent_doctype, parent_permission_type
)
for field in self.fields:
@@ -563,13 +572,8 @@ class Engine:
continue
# Cache permitted fields for child doctypes if accessed multiple times
- permitted_child_fields_set = set(
- get_permitted_fields(
- doctype=field.doctype,
- parenttype=field.parent_doctype,
- permission_type=self.get_permission_type(field.doctype),
- ignore_virtual=True,
- )
+ permitted_child_fields_set = get_cached_permitted_fields(
+ field.doctype, field.parent_doctype, self.get_permission_type(field.doctype)
)
# Check permission for the specific field in the child table
if field.fieldname in permitted_child_fields_set:
@@ -577,20 +581,27 @@ class Engine:
elif isinstance(field, LinkTableField):
# Check permission for the link field *in the parent doctype*
if field.link_fieldname in permitted_fields_set:
- allowed_fields.append(field)
+ # Also check if user has permission to read/select the target doctype
+ target_doctype = field.doctype
+ has_target_perm = frappe.has_permission(
+ target_doctype, "select", user=self.user
+ ) or frappe.has_permission(target_doctype, "read", user=self.user)
+
+ if has_target_perm:
+ # Finally, check if the specific field *in the target doctype* is permitted
+ permitted_target_fields_set = get_cached_permitted_fields(
+ target_doctype, None, self.get_permission_type(target_doctype)
+ )
+ if field.fieldname in permitted_target_fields_set:
+ allowed_fields.append(field)
elif isinstance(field, ChildQuery):
if parent_permission_type == "select":
# Skip child queries if parent permission is only 'select'
continue
# Cache permitted fields for the child doctype of the query
- permitted_child_fields_set = set(
- get_permitted_fields(
- doctype=field.doctype,
- parenttype=field.parent_doctype,
- permission_type=self.get_permission_type(field.doctype),
- ignore_virtual=True,
- )
+ permitted_child_fields_set = get_cached_permitted_fields(
+ field.doctype, field.parent_doctype, self.get_permission_type(field.doctype)
)
# Filter the fields *within* the ChildQuery object based on permissions
field.fields = [f for f in field.fields if f in permitted_child_fields_set]
diff --git a/frappe/tests/test_query.py b/frappe/tests/test_query.py
index 988af95aaa..cabb7e8bcb 100644
--- a/frappe/tests/test_query.py
+++ b/frappe/tests/test_query.py
@@ -877,6 +877,116 @@ class TestQuery(IntegrationTestCase):
frappe.clear_cache()
frappe.hooks.permission_query_conditions = original_hooks
+ def test_link_field_target_permission(self):
+ """Test that accessing link_field.target_field respects target field's permlevel."""
+ target_dt_name = "TargetDocForLinkPerm"
+ source_dt_name = "SourceDocForLinkPerm"
+ test_role = "LinkPermTestRole"
+ test_user = "test2@example.com"
+
+ # Cleanup previous runs
+ frappe.set_user("Administrator")
+ frappe.delete_doc("DocType", target_dt_name, ignore_missing=True, force=True)
+ frappe.delete_doc("DocType", source_dt_name, ignore_missing=True, force=True)
+ frappe.delete_doc("Role", test_role, ignore_missing=True, force=True)
+ test_user_doc = frappe.get_doc("User", test_user)
+ test_user_doc.remove_roles(test_role)
+
+ # Create Doctypes
+ target_dt = new_doctype(
+ target_dt_name,
+ fields=[
+ {"fieldname": "target_field", "fieldtype": "Data", "permlevel": 1, "label": "Target Field"},
+ {"fieldname": "other_target_field", "fieldtype": "Data", "label": "Other Target Field"},
+ ],
+ ).insert(ignore_if_duplicate=True)
+
+ source_dt = new_doctype(
+ source_dt_name,
+ fields=[
+ {
+ "fieldname": "link_field",
+ "fieldtype": "Link",
+ "options": target_dt_name,
+ "label": "Link Field",
+ }
+ ],
+ ).insert(ignore_if_duplicate=True)
+
+ # Create Records
+ target_doc = frappe.get_doc(
+ doctype=target_dt_name, target_field="Secret Data", other_target_field="Public Data"
+ ).insert(ignore_permissions=True)
+ source_doc = frappe.get_doc(doctype=source_dt_name, link_field=target_doc.name).insert(
+ ignore_permissions=True
+ )
+
+ # Setup Role and Permissions
+ frappe.get_doc({"doctype": "Role", "role_name": test_role}).insert(ignore_if_duplicate=True)
+ add_permission(source_dt_name, test_role, 0, ptype="read")
+ add_permission(target_dt_name, test_role, 0, ptype="read")
+ # Ensure no permlevel 1 read for test_role
+ update_permission_property(target_dt_name, test_role, 1, "read", 0, validate=False)
+ # Ensure System Manager can read permlevel 1
+ add_permission(target_dt_name, "System Manager", 1, ptype="read")
+ test_user_doc.add_roles(test_role)
+
+ # Test as the restricted user
+ frappe.set_user(test_user)
+ result_restricted = frappe.qb.get_query(
+ source_dt_name,
+ filters={"name": source_doc.name},
+ fields=[
+ "name",
+ "link_field.target_field as linked_secret",
+ "link_field.other_target_field as linked_public",
+ ],
+ ignore_permissions=False,
+ ).run(as_dict=True)
+
+ self.assertEqual(len(result_restricted), 1)
+ self.assertIn(
+ "linked_public",
+ result_restricted[0],
+ "Permlevel 0 target field should be accessible via link.",
+ )
+ self.assertNotIn(
+ "linked_secret",
+ result_restricted[0],
+ "Permlevel 1 target field should NOT be accessible via link for restricted user.",
+ )
+
+ # Test as Administrator (who has System Manager role)
+ frappe.set_user("Administrator")
+ result_admin = frappe.qb.get_query(
+ source_dt_name,
+ filters={"name": source_doc.name},
+ fields=[
+ "name",
+ "link_field.target_field as linked_secret",
+ "link_field.other_target_field as linked_public",
+ ],
+ ignore_permissions=False, # Still check permissions, but Admin has them
+ ).run(as_dict=True)
+
+ self.assertEqual(len(result_admin), 1)
+ self.assertIn(
+ "linked_public", result_admin[0], "Permlevel 0 target field should be accessible for Admin."
+ )
+ self.assertIn(
+ "linked_secret", result_admin[0], "Permlevel 1 target field should be accessible for Admin."
+ )
+ self.assertEqual(result_admin[0].linked_secret, "Secret Data")
+
+ # Cleanup
+ frappe.set_user("Administrator")
+ source_doc.delete(ignore_permissions=True)
+ target_doc.delete(ignore_permissions=True)
+ source_dt.delete()
+ target_dt.delete()
+ test_user_doc.remove_roles(test_role)
+ frappe.delete_doc("Role", test_role, force=True)
+
# This function is used as a permission query condition hook
def test_permission_hook_condition(user):
From b2a37f86b332a50ce7aa506a81204d9c341244ad Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Fri, 2 May 2025 19:39:34 +0530
Subject: [PATCH 053/196] fix: filtering should only be allowed on permitted
fields
---
frappe/database/query.py | 38 +++++++++-
frappe/tests/test_db_query.py | 1 +
frappe/tests/test_query.py | 133 ++++++++++++++++++++++++++++++++++
3 files changed, 170 insertions(+), 2 deletions(-)
diff --git a/frappe/database/query.py b/frappe/database/query.py
index 97e86df1b9..6d78a247de 100644
--- a/frappe/database/query.py
+++ b/frappe/database/query.py
@@ -306,6 +306,13 @@ class Engine:
dynamic_field = DynamicTableField.parse(field, self.doctype, allow_tab_notation=False)
if dynamic_field:
# Parsed successfully as link/child field access
+ target_doctype = dynamic_field.doctype
+ target_fieldname = dynamic_field.fieldname
+ parent_doctype_for_perm = (
+ dynamic_field.parent_doctype if isinstance(dynamic_field, ChildTableField) else None
+ )
+ self._check_filter_field_permission(target_doctype, target_fieldname, parent_doctype_for_perm)
+
self.query = dynamic_field.apply_join(self.query)
# Return the pypika Field object associated with the dynamic field
return dynamic_field.field
@@ -330,9 +337,36 @@ class Engine:
title=_("Invalid Filter"),
)
# It's a simple, valid fieldname like 'name' or 'creation'
- # Convert string field name to pypika Field object for the specified/current doctype
target_doctype = doctype or self.doctype
- return frappe.qb.DocType(target_doctype)[field]
+ target_fieldname = field
+ parent_doctype_for_perm = self.parent_doctype if doctype else None
+ self._check_filter_field_permission(target_doctype, target_fieldname, parent_doctype_for_perm)
+
+ # Convert string field name to pypika Field object for the specified/current doctype
+ return frappe.qb.DocType(target_doctype)[target_fieldname]
+
+ def _check_filter_field_permission(self, doctype: str, fieldname: str, parent_doctype: str | None = None):
+ """Check if the user has permission to access the given field for filtering."""
+ if not self.apply_permissions:
+ return
+
+ permission_type = self.get_permission_type(doctype)
+ permitted_fields = get_permitted_fields(
+ doctype=doctype,
+ parenttype=parent_doctype,
+ permission_type=permission_type,
+ ignore_virtual=True,
+ user=self.user,
+ )
+
+ if fieldname not in permitted_fields:
+ frappe.throw(
+ _("You do not have permission to filter on field: {0}").format(
+ frappe.bold(f"{doctype}.{fieldname}")
+ ),
+ frappe.PermissionError,
+ title=_("Permission Error"),
+ )
def parse_string_field(self, field: str):
"""
diff --git a/frappe/tests/test_db_query.py b/frappe/tests/test_db_query.py
index 2f4644d766..f04cdd5190 100644
--- a/frappe/tests/test_db_query.py
+++ b/frappe/tests/test_db_query.py
@@ -33,6 +33,7 @@ def setup_test_user(set_user=False):
yield test_user
+ test_user.reload()
test_user.remove_roles("Blogger")
test_user.add_roles(*user_roles)
diff --git a/frappe/tests/test_query.py b/frappe/tests/test_query.py
index cabb7e8bcb..f6b6d2a6a8 100644
--- a/frappe/tests/test_query.py
+++ b/frappe/tests/test_query.py
@@ -987,6 +987,139 @@ class TestQuery(IntegrationTestCase):
test_user_doc.remove_roles(test_role)
frappe.delete_doc("Role", test_role, force=True)
+ def test_filter_direct_field_permission(self):
+ """Test that filtering is only allowed on permitted direct fields."""
+ with setup_patched_blog_post(), setup_test_user(set_user=True) as user:
+ # Create a test blog post
+ test_post = frappe.get_doc(
+ {
+ "doctype": "Blog Post",
+ "title": "Test Filter Permission Post",
+ "content": "Test Content",
+ "blog_category": "-test-blog-category",
+ "published": 1, # permlevel 1
+ }
+ ).insert(ignore_permissions=True, ignore_mandatory=True)
+
+ # User has read permlevel 0, but not 1 (published field)
+ # Try filtering on permitted field (title - permlevel 0)
+ try:
+ frappe.qb.get_query(
+ "Blog Post",
+ filters={"title": test_post.title},
+ ignore_permissions=False,
+ user=user.name,
+ ).run()
+ except frappe.PermissionError as e:
+ self.fail(f"Filtering on permitted field 'title' failed: {e}")
+
+ # Try filtering on non-permitted field (published - permlevel 1)
+ with self.assertRaises(frappe.PermissionError) as cm:
+ frappe.qb.get_query(
+ "Blog Post",
+ filters={"published": 1},
+ ignore_permissions=False,
+ user=user.name,
+ ).run()
+ self.assertIn("You do not have permission to filter on field", str(cm.exception))
+ self.assertIn("Blog Post.published", str(cm.exception))
+
+ # Cleanup
+ frappe.set_user("Administrator")
+ test_post.delete()
+
+ def test_filter_linked_field_permission(self):
+ """Test that filtering is only allowed on permitted linked fields."""
+ with setup_test_user(set_user=True) as user:
+ target_dt_name = "TargetDocForFilterPerm"
+ source_dt_name = "SourceDocForFilterPerm"
+ test_role = "FilterPermTestRole"
+
+ # Cleanup previous runs
+ frappe.set_user("Administrator")
+ frappe.delete_doc("DocType", target_dt_name, ignore_missing=True, force=True)
+ frappe.delete_doc("DocType", source_dt_name, ignore_missing=True, force=True)
+ frappe.delete_doc("Role", test_role, ignore_missing=True, force=True)
+ test_user_doc = frappe.get_doc("User", user.name)
+ test_user_doc.remove_roles(test_role)
+
+ # Create Doctypes
+ target_dt = new_doctype(
+ target_dt_name,
+ fields=[
+ {
+ "fieldname": "target_field",
+ "fieldtype": "Data",
+ "permlevel": 1,
+ "label": "Target Field",
+ },
+ {"fieldname": "other_target_field", "fieldtype": "Data", "label": "Other Target Field"},
+ ],
+ ).insert(ignore_if_duplicate=True)
+
+ source_dt = new_doctype(
+ source_dt_name,
+ fields=[
+ {
+ "fieldname": "link_field",
+ "fieldtype": "Link",
+ "options": target_dt_name,
+ "label": "Link Field",
+ }
+ ],
+ ).insert(ignore_if_duplicate=True)
+
+ # Create Records
+ target_doc = frappe.get_doc(
+ doctype=target_dt_name, target_field="Secret Data", other_target_field="Public Data"
+ ).insert(ignore_permissions=True)
+ source_doc = frappe.get_doc(doctype=source_dt_name, link_field=target_doc.name).insert(
+ ignore_permissions=True
+ )
+
+ # Setup Role and Permissions
+ frappe.get_doc({"doctype": "Role", "role_name": test_role}).insert(ignore_if_duplicate=True)
+ add_permission(source_dt_name, test_role, 0, ptype="read")
+ add_permission(target_dt_name, test_role, 0, ptype="read")
+ update_permission_property(
+ target_dt_name, test_role, 1, "read", 0, validate=False
+ ) # No permlevel 1 read
+ test_user_doc.add_roles(test_role)
+
+ # Test as the restricted user
+ frappe.set_user(user.name)
+
+ # Try filtering on permitted linked field (other_target_field - permlevel 0)
+ try:
+ frappe.qb.get_query(
+ source_dt_name,
+ filters={"link_field.other_target_field": "Public Data"},
+ ignore_permissions=False,
+ user=user.name,
+ ).run()
+ except frappe.PermissionError as e:
+ self.fail(f"Filtering on permitted linked field 'link_field.other_target_field' failed: {e}")
+
+ # Try filtering on non-permitted linked field (target_field - permlevel 1)
+ with self.assertRaises(frappe.PermissionError) as cm_link:
+ frappe.qb.get_query(
+ source_dt_name,
+ filters={"link_field.target_field": "Secret Data"},
+ ignore_permissions=False,
+ user=user.name,
+ ).run()
+ self.assertIn("You do not have permission to filter on field", str(cm_link.exception))
+ self.assertIn(f"{target_dt_name}.target_field", str(cm_link.exception))
+
+ # Cleanup
+ frappe.set_user("Administrator")
+ source_doc.delete(ignore_permissions=True)
+ target_doc.delete(ignore_permissions=True)
+ source_dt.delete()
+ target_dt.delete()
+ test_user_doc.remove_roles(test_role)
+ frappe.delete_doc("Role", test_role, force=True)
+
# This function is used as a permission query condition hook
def test_permission_hook_condition(user):
From 9a84f20436fec96c863bad2653d2b9dee3aa7b4a Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Sat, 3 May 2025 17:50:01 +0530
Subject: [PATCH 054/196] feat: add support for nested AND and OR conditions
---
frappe/database/query.py | 257 +++++++++++++++++++++++++++++++------
frappe/tests/test_query.py | 156 +++++++++++++++++++---
2 files changed, 362 insertions(+), 51 deletions(-)
diff --git a/frappe/database/query.py b/frappe/database/query.py
index 6d78a247de..4668d9cbd4 100644
--- a/frappe/database/query.py
+++ b/frappe/database/query.py
@@ -187,23 +187,80 @@ class Engine:
if isinstance(filters, Criterion):
self.query = self.query.where(filters)
+ return
- elif isinstance(filters, dict):
+ if isinstance(filters, dict):
self.apply_dict_filters(filters)
+ return
- elif isinstance(filters, list | tuple):
- if all(isinstance(d, FilterValue) for d in filters) and len(filters) > 0:
+ if isinstance(filters, list | tuple):
+ if not filters:
+ return
+
+ # 1. Handle special case: list of names -> name IN (...)
+ if all(isinstance(d, FilterValue) for d in filters):
self.apply_dict_filters({"name": ("in", tuple(convert_to_value(f) for f in filters))})
- else:
- for filter in filters:
- if isinstance(filter, FilterValue | Criterion | dict):
- self.apply_filters(filter)
- elif isinstance(filter, list | tuple):
- self.apply_list_filters(filter)
+ return
+
+ # 2. Check for nested logic format [cond, op, cond, ...] or [[cond, op, cond]]
+ is_nested_structure = False
+ potential_nested_list = filters
+ is_single_group = False
+
+ # Check for single grouped condition [[cond_a, op, cond_b]]
+ if len(filters) == 1 and isinstance(filters[0], list | tuple):
+ inner_list = filters[0]
+ # Ensure inner list also looks like a nested structure
+ # Check if the operator is a string, validation happens inside _parse_nested_filters
+ if len(inner_list) >= 3 and isinstance(inner_list[1], str):
+ is_nested_structure = True
+ potential_nested_list = inner_list # Use the inner list for validation and parsing
+ is_single_group = True # Flag that the original filters was wrapped
+
+ # Check for standard nested structure [cond, op, cond, ...]
+ # Check if it looks like it *might* be nested (even if malformed).
+ # This allows lists starting with operators or containing invalid operators
+ # to be passed to _parse_nested_filters for detailed validation.
+ # Condition: Contains a string at an odd index OR starts with a string.
+ elif any(isinstance(item, str) for i, item in enumerate(filters) if i % 2 != 0) or (
+ len(filters) > 0 and isinstance(filters[0], str)
+ ):
+ is_nested_structure = True
+ # potential_nested_list remains filters
+
+ if is_nested_structure:
+ # If validation passes, proceed with parsing the identified nested list
+ try:
+ # If it's a single group like [[cond]], parse the inner list as one condition.
+ # Otherwise, parse the list as a sequence [cond1, op, cond2, ...].
+ if is_single_group:
+ combined_criterion = self._condition_to_criterion(potential_nested_list)
else:
- raise ValueError(f"Unknown filter type: {type(filters)}")
- else:
- raise ValueError(f"Unknown filter type: {type(filters)}")
+ # _parse_nested_filters MUST validate the structure, including the first element and operators.
+ combined_criterion = self._parse_nested_filters(potential_nested_list)
+ if combined_criterion:
+ self.query = self.query.where(combined_criterion)
+ except Exception as e:
+ # Log the original filters list for better debugging context
+ frappe.log_error(f"Filter parsing error: {filters}", "Query Engine Error")
+ frappe.throw(_("Error parsing nested filters: {0}").format(e), exc=e)
+
+ else: # Not a nested structure, assume it's a list of simple filters (implicitly ANDed)
+ for filter_item in filters:
+ if isinstance(filter_item, list | tuple):
+ self.apply_list_filters(filter_item) # Handles simple [field, op, value] lists
+ elif isinstance(filter_item, dict | Criterion):
+ self.apply_filters(filter_item) # Recursive call for dict/criterion
+ else:
+ # Disallow single values (strings, numbers, etc.) directly in the list
+ # unless it's the name IN (...) case handled above.
+ raise ValueError(
+ f"Invalid item type in filter list: {type(filter_item).__name__}. Expected list, tuple, dict, or Criterion."
+ )
+ return
+
+ # If filters type is none of the above
+ raise ValueError(f"Unsupported filters type: {type(filters).__name__}")
def apply_list_filters(self, filter: list):
if len(filter) == 2:
@@ -233,25 +290,26 @@ class Engine:
operator: str = "=",
doctype: str | None = None,
):
+ """Applies a simple filter condition to the query."""
+ criterion = self._build_criterion_for_simple_filter(field, value, operator, doctype)
+ if criterion:
+ self.query = self.query.where(criterion)
+
+ def _build_criterion_for_simple_filter(
+ self,
+ field: str | Field,
+ value: FilterValue | list | set | None,
+ operator: str = "=",
+ doctype: str | None = None,
+ ) -> "Criterion | None":
+ """Builds a pypika Criterion object for a simple filter condition."""
_field = self._validate_and_prepare_filter_field(field, doctype)
- _value = value
+ _value = convert_to_value(value)
_operator = operator
- # Apply implicit join if child table is referenced
- if doctype and doctype != self.doctype:
- meta = frappe.get_meta(doctype)
- table = frappe.qb.DocType(doctype)
- if meta.istable and not self.query.is_joined(table):
- self.query = self.query.left_join(table).on(
- (table.parent == self.table.name) & (table.parenttype == self.doctype)
- )
-
- _value = convert_to_value(_value)
-
if not _value and isinstance(_value, list | tuple | set):
_value = ("",)
- # Handle nested set operators
if _operator in NESTED_SET_OPERATORS:
hierarchy = _operator
docname = _value
@@ -276,14 +334,98 @@ class Engine:
if hierarchy in ("not ancestors of", "not descendants of")
else OPERATOR_MAP["in"]
)
- self.query = self.query.where(operator_fn(_field, nodes or ("",)))
- return
+ return operator_fn(_field, nodes or ("",))
operator_fn = OPERATOR_MAP[_operator.casefold()]
if _value is None and isinstance(_field, Field):
- self.query = self.query.where(_field.isnull())
+ return _field.isnull()
else:
- self.query = self.query.where(operator_fn(_field, _value))
+ return operator_fn(_field, _value)
+
+ def _parse_nested_filters(self, nested_list: list | tuple) -> "Criterion | None":
+ """Parses a nested filter list like [cond1, 'and', cond2, 'or', cond3, ...] into a pypika Criterion."""
+ if not isinstance(nested_list, list | tuple):
+ frappe.throw(_("Nested filters must be provided as a list or tuple."))
+
+ if not nested_list:
+ return None
+
+ # First item must be a condition (list/tuple)
+ if not isinstance(nested_list[0], list | tuple):
+ frappe.throw(
+ _("Invalid start for filter condition: {0}. Expected a list or tuple.").format(nested_list[0])
+ )
+
+ current_criterion = self._condition_to_criterion(nested_list[0])
+
+ idx = 1
+ while idx < len(nested_list):
+ # Expect an operator ('and' or 'or')
+ operator_str = nested_list[idx]
+ if not isinstance(operator_str, str) or operator_str.lower() not in ("and", "or"):
+ frappe.throw(
+ _("Expected 'and' or 'or' operator, found: {0}").format(operator_str),
+ frappe.ValidationError,
+ )
+
+ idx += 1
+ if idx >= len(nested_list):
+ frappe.throw(_("Filter condition missing after operator: {0}").format(operator_str))
+
+ # Expect a condition (list/tuple)
+ next_condition = nested_list[idx]
+ if not isinstance(next_condition, list | tuple):
+ frappe.throw(
+ _("Invalid filter condition: {0}. Expected a list or tuple.").format(next_condition)
+ )
+
+ next_criterion = self._condition_to_criterion(next_condition)
+
+ if operator_str.lower() == "and":
+ current_criterion = current_criterion & next_criterion
+ elif operator_str.lower() == "or":
+ current_criterion = current_criterion | next_criterion
+
+ idx += 1
+
+ return current_criterion
+
+ def _condition_to_criterion(self, condition: list | tuple) -> "Criterion":
+ """Converts a single condition (simple filter list or nested list) into a pypika Criterion."""
+ if not isinstance(condition, list | tuple):
+ frappe.throw(_("Invalid condition type in nested filters: {0}").format(type(condition)))
+
+ # Check if it's a nested condition list [cond1, op, cond2, ...]
+ is_nested = False
+ # Broaden check here as well: length >= 3 and second element is string
+ if len(condition) >= 3 and isinstance(condition[1], str):
+ if isinstance(condition[0], list | tuple): # First element must also be a condition
+ is_nested = True
+
+ if is_nested:
+ # It's a nested sub-expression like [["assignee", "=", "A"], "or", ["assignee", "=", "B"]]
+ # _parse_nested_filters will handle operator validation ('and'/'or')
+ return self._parse_nested_filters(condition)
+ else:
+ # Assume it's a simple filter [field, op, value] etc.
+ field, value, operator, doctype = None, None, None, None
+
+ # Determine structure based on length and types
+ if len(condition) == 3 and isinstance(condition[1], str) and condition[1] in OPERATOR_MAP:
+ # [field, operator, value]
+ field, operator, value = condition
+ elif len(condition) == 4 and isinstance(condition[2], str) and condition[2] in OPERATOR_MAP:
+ # [doctype, field, operator, value]
+ doctype, field, operator, value = condition
+ elif len(condition) == 2:
+ # [field, value] -> implies '=' operator
+ field, value = condition
+ operator = "="
+ else:
+ frappe.throw(_("Invalid simple filter format: {0}").format(condition))
+
+ # Use the helper method to build the criterion for the simple filter
+ return self._build_criterion_for_simple_filter(field, value, operator, doctype)
def _validate_and_prepare_filter_field(self, field: str | Field, doctype: str | None = None) -> Field:
"""Validate field name for filters and return a pypika Field object. Handles dynamic fields."""
@@ -340,10 +482,48 @@ class Engine:
target_doctype = doctype or self.doctype
target_fieldname = field
parent_doctype_for_perm = self.parent_doctype if doctype else None
- self._check_filter_field_permission(target_doctype, target_fieldname, parent_doctype_for_perm)
- # Convert string field name to pypika Field object for the specified/current doctype
- return frappe.qb.DocType(target_doctype)[target_fieldname]
+ # If a specific doctype is provided and it's different from the main query doctype,
+ # assume it's a child table and add the join using ChildTableField logic.
+ if doctype and doctype != self.doctype:
+ # Check if doctype is a valid child table of self.doctype
+ parent_meta = frappe.get_meta(self.doctype)
+ # Find the parent fieldname for this child doctype
+ parent_fieldname = None
+ for df in parent_meta.get_table_fields():
+ if df.options == doctype:
+ parent_fieldname = df.fieldname
+ break
+
+ if not parent_fieldname:
+ frappe.throw(
+ _("{0} is not a child table of {1}").format(doctype, self.doctype),
+ frappe.ValidationError,
+ title=_("Invalid Filter"),
+ )
+
+ # Create a ChildTableField instance to handle join and field access
+ # Pass the identified parent_fieldname
+ child_field_handler = ChildTableField(
+ doctype=doctype,
+ fieldname=target_fieldname,
+ parent_doctype=self.doctype,
+ parent_fieldname=parent_fieldname,
+ )
+
+ # For permission check, the parent is the main doctype
+ parent_doctype_for_perm = self.doctype
+ self._check_filter_field_permission(target_doctype, target_fieldname, parent_doctype_for_perm)
+
+ # Delegate join logic
+ self.query = child_field_handler.apply_join(self.query)
+ # Return the pypika Field object from the handler
+ return child_field_handler.field
+ else:
+ # Field belongs to the main doctype or doctype wasn't specified differently
+ self._check_filter_field_permission(target_doctype, target_fieldname, parent_doctype_for_perm)
+ # Convert string field name to pypika Field object for the specified/current doctype
+ return frappe.qb.DocType(target_doctype)[target_fieldname]
def _check_filter_field_permission(self, doctype: str, fieldname: str, parent_doctype: str | None = None):
"""Check if the user has permission to access the given field for filtering."""
@@ -956,12 +1136,14 @@ class ChildTableField(DynamicTableField):
return query.select(getattr(table, self.fieldname).as_(self.alias or None))
def apply_join(self, query: QueryBuilder) -> QueryBuilder:
- table = frappe.qb.DocType(self.doctype)
main_table = frappe.qb.DocType(self.parent_doctype)
- if not query.is_joined(table):
- query = query.left_join(table).on(
- (table.parent == main_table.name) & (table.parenttype == self.parent_doctype)
+ if not query.is_joined(self.table):
+ join_conditions = (self.table.parent == main_table.name) & (
+ self.table.parenttype == self.parent_doctype
)
+ if self.parent_fieldname:
+ join_conditions &= self.table.parentfield == self.parent_fieldname
+ query = query.left_join(self.table).on(join_conditions)
return query
@@ -1251,3 +1433,6 @@ class CombinedRawCriterion(RawCriterion):
left_sql = self.left.get_sql(**kwargs) if hasattr(self.left, "get_sql") else str(self.left)
right_sql = self.right.get_sql(**kwargs) if hasattr(self.right, "get_sql") else str(self.right)
return f"({left_sql}) {self.operator} ({right_sql})"
+ left_sql = self.left.get_sql(**kwargs) if hasattr(self.left, "get_sql") else str(self.left)
+ right_sql = self.right.get_sql(**kwargs) if hasattr(self.right, "get_sql") else str(self.right)
+ return f"({left_sql}) {self.operator} ({right_sql})"
diff --git a/frappe/tests/test_query.py b/frappe/tests/test_query.py
index f6b6d2a6a8..53a2413d74 100644
--- a/frappe/tests/test_query.py
+++ b/frappe/tests/test_query.py
@@ -74,7 +74,7 @@ class TestQuery(IntegrationTestCase):
["DocType", "parent", "=", "something"],
],
).get_sql(),
- "SELECT `tabDocType`.* FROM `tabDocType` LEFT JOIN `tabDocField` ON `tabDocField`.`parent`=`tabDocType`.`name` AND `tabDocField`.`parenttype`='DocType' WHERE `tabDocField`.`name` LIKE 'f%' AND `tabDocType`.`parent`='something'",
+ "SELECT `tabDocType`.* FROM `tabDocType` LEFT JOIN `tabDocField` ON `tabDocField`.`parent`=`tabDocType`.`name` AND `tabDocField`.`parenttype`='DocType' AND `tabDocField`.`parentfield`='fields' WHERE `tabDocField`.`name` LIKE 'f%' AND `tabDocType`.`parent`='something'",
)
@run_only_if(db_type_is.MARIADB)
@@ -441,23 +441,11 @@ class TestQuery(IntegrationTestCase):
fields=["name"],
filters={"permissions.role": "System Manager"},
).get_sql(),
- "SELECT `tabDocType`.`name` FROM `tabDocType` LEFT JOIN `tabDocPerm` ON `tabDocPerm`.`parent`=`tabDocType`.`name` AND `tabDocPerm`.`parenttype`='DocType' WHERE `tabDocPerm`.`role`='System Manager'".replace(
+ "SELECT `tabDocType`.`name` FROM `tabDocType` LEFT JOIN `tabDocPerm` ON `tabDocPerm`.`parent`=`tabDocType`.`name` AND `tabDocPerm`.`parenttype`='DocType' AND `tabDocPerm`.`parentfield`='permissions' WHERE `tabDocPerm`.`role`='System Manager'".replace(
"`", '"' if frappe.db.db_type == "postgres" else "`"
),
)
- # validate_filters is deprecated, test not needed
- # self.assertRaisesRegex(
- # frappe.PermissionError,
- # "Invalid filter",
- # lambda: frappe.qb.get_query(
- # "DocType",
- # fields=["name"],
- # filters={"permissions.role": "System Manager"},
- # validate_filters=True,
- # ),
- # )
-
self.assertEqual(
frappe.qb.get_query(
"DocType",
@@ -507,6 +495,142 @@ class TestQuery(IntegrationTestCase):
"SELECT `name` FROM `tabDocType`".replace("`", '"' if frappe.db.db_type == "postgres" else "`"),
)
+ def test_nested_filters(self):
+ """Test nested filter conditions with AND/OR logic."""
+ User = frappe.qb.DocType("User")
+
+ # Simple AND
+ filters_and = [
+ ["email", "=", "admin@example.com"],
+ "and",
+ ["first_name", "=", "Admin"],
+ ]
+ expected_sql_and = (
+ frappe.qb.from_(User)
+ .select(User.name)
+ .where((User.email == "admin@example.com") & (User.first_name == "Admin"))
+ .get_sql()
+ )
+ self.assertEqual(frappe.qb.get_query("User", filters=filters_and).get_sql(), expected_sql_and)
+
+ # Simple OR
+ filters_or = [
+ ["email", "=", "admin@example.com"],
+ "or",
+ ["email", "=", "guest@example.com"],
+ ]
+ expected_sql_or = (
+ frappe.qb.from_(User)
+ .select(User.name)
+ .where((User.email == "admin@example.com") | (User.email == "guest@example.com"))
+ .get_sql()
+ )
+ self.assertEqual(frappe.qb.get_query("User", filters=filters_or).get_sql(), expected_sql_or)
+
+ # Mixed AND/OR
+ filters_mixed = [
+ ["first_name", "=", "Admin"],
+ "and",
+ [["email", "=", "admin@example.com"], "or", ["email", "=", "guest@example.com"]],
+ ]
+ expected_sql_mixed = (
+ frappe.qb.from_(User)
+ .select(User.name)
+ .where(
+ (User.first_name == "Admin")
+ & ((User.email == "admin@example.com") | (User.email == "guest@example.com"))
+ )
+ .get_sql()
+ )
+ self.assertEqual(frappe.qb.get_query("User", filters=filters_mixed).get_sql(), expected_sql_mixed)
+
+ # Nested AND/OR
+ filters_nested = [
+ [["first_name", "=", "Admin"], "and", ["enabled", "=", 1]],
+ "or",
+ [["first_name", "=", "Guest"], "and", ["enabled", "=", 0]],
+ ]
+ expected_sql_nested = (
+ frappe.qb.from_(User)
+ .select(User.name)
+ .where(
+ ((User.first_name == "Admin") & (User.enabled == 1))
+ | ((User.first_name == "Guest") & (User.enabled == 0))
+ )
+ .get_sql()
+ )
+ self.assertEqual(frappe.qb.get_query("User", filters=filters_nested).get_sql(), expected_sql_nested)
+
+ # Single Grouped Condition (wrapped in extra list)
+ filters_single_group = [[["first_name", "=", "Admin"], "and", ["enabled", "=", 1]]]
+ expected_sql_single_group = (
+ frappe.qb.from_(User)
+ .select(User.name)
+ .where((User.first_name == "Admin") & (User.enabled == 1))
+ .get_sql()
+ )
+ self.assertEqual(
+ frappe.qb.get_query("User", filters=filters_single_group).get_sql(), expected_sql_single_group
+ )
+
+ # Test with different operators and values
+ filters_complex = [
+ ["creation", ">", "2023-01-01"],
+ "and",
+ [
+ ["email", "like", "%@example.com"],
+ "or",
+ [["first_name", "in", ["Admin", "Guest"]], "and", ["enabled", "!=", 1]],
+ ],
+ ]
+ expected_sql_complex = (
+ frappe.qb.from_(User)
+ .select(User.name)
+ .where(
+ (User.creation > "2023-01-01")
+ & (
+ (User.email.like("%@example.com"))
+ | ((User.first_name.isin(["Admin", "Guest"])) & (User.enabled != 1))
+ )
+ )
+ .get_sql()
+ )
+ self.assertEqual(frappe.qb.get_query("User", filters=filters_complex).get_sql(), expected_sql_complex)
+
+ def test_invalid_nested_filters(self):
+ """Test invalid formats for nested filters."""
+ # Invalid operator
+ with self.assertRaises(frappe.ValidationError) as cm:
+ frappe.qb.get_query("User", filters=[["email", "=", "a"], "xor", ["email", "=", "b"]]).get_sql()
+ self.assertIn("Expected 'and' or 'or' operator", str(cm.exception))
+
+ # Missing condition after operator
+ with self.assertRaises(frappe.ValidationError) as cm:
+ frappe.qb.get_query("User", filters=[["email", "=", "a"], "and"]).get_sql()
+ self.assertIn("Filter condition missing after operator", str(cm.exception))
+
+ # Starting with operator
+ with self.assertRaises(frappe.ValidationError) as cm:
+ frappe.qb.get_query("User", filters=["and", ["email", "=", "a"]]).get_sql()
+ self.assertIn("Invalid start for filter condition", str(cm.exception))
+
+ # Invalid condition type (string instead of list/tuple)
+ with self.assertRaises(frappe.ValidationError) as cm:
+ frappe.qb.get_query("User", filters=[["email", "=", "a"], "and", "enabled = 1"]).get_sql()
+ self.assertIn("Invalid filter condition", str(cm.exception))
+
+ # Malformed simple filter inside nested
+ with self.assertRaises(frappe.ValidationError) as cm:
+ frappe.qb.get_query(
+ "User", filters=[["email", "=", "a", "extra"], "and", ["enabled", "=", 1]]
+ ).get_sql()
+ self.assertIn("Invalid simple filter format", str(cm.exception))
+
+ # Nested list doesn't start with a condition list/tuple
+ with self.assertRaises(frappe.ValidationError) as cm:
+ frappe.qb.get_query("User", filters=["email", "and", ["enabled", "=", 1]]).get_sql()
+ self.assertIn("Invalid start for filter condition", str(cm.exception))
+
def test_implicit_join_query(self):
self.maxDiff = None
@@ -521,6 +645,7 @@ class TestQuery(IntegrationTestCase):
),
)
+ # output doesn't contain parentfield condition because it can't be inferred
self.assertEqual(
frappe.qb.get_query(
"Note",
@@ -532,13 +657,14 @@ class TestQuery(IntegrationTestCase):
),
)
+ # output contains parentfield condition because it can be inferred by "seen_by.user"
self.assertEqual(
frappe.qb.get_query(
"Note",
filters={"name": "Test Note Title"},
fields=["name", "seen_by.user as seen_by", "`tabNote Seen By`.`idx` as idx"],
).get_sql(),
- "SELECT `tabNote`.`name`,`tabNote Seen By`.`user` `seen_by`,`tabNote Seen By`.`idx` `idx` FROM `tabNote` LEFT JOIN `tabNote Seen By` ON `tabNote Seen By`.`parent`=`tabNote`.`name` AND `tabNote Seen By`.`parenttype`='Note' WHERE `tabNote`.`name`='Test Note Title'".replace(
+ "SELECT `tabNote`.`name`,`tabNote Seen By`.`user` `seen_by`,`tabNote Seen By`.`idx` `idx` FROM `tabNote` LEFT JOIN `tabNote Seen By` ON `tabNote Seen By`.`parent`=`tabNote`.`name` AND `tabNote Seen By`.`parenttype`='Note' AND `tabNote Seen By`.`parentfield`='seen_by' WHERE `tabNote`.`name`='Test Note Title'".replace(
"`", '"' if frappe.db.db_type == "postgres" else "`"
),
)
From 36a990e4bff5fdef36522075168941c941149741 Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Mon, 5 May 2025 03:18:14 +0530
Subject: [PATCH 055/196] chore: update new docs domain
---
.github/helper/documentation.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/.github/helper/documentation.py b/.github/helper/documentation.py
index 7eb209cbde..87550596da 100644
--- a/.github/helper/documentation.py
+++ b/.github/helper/documentation.py
@@ -11,6 +11,7 @@ WEBSITE_REPOS = [
DOCUMENTATION_DOMAINS = [
"docs.erpnext.com",
"frappeframework.com",
+ "docs.frappe.io",
]
From 420e891d96b575942413747d35cb051f43be2d07 Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Tue, 20 May 2025 00:51:00 +0530
Subject: [PATCH 056/196] feat: remove support for sql functions in fields
---
frappe/database/query.py | 177 ++-----------------------------------
frappe/tests/test_query.py | 86 ++----------------
2 files changed, 14 insertions(+), 249 deletions(-)
diff --git a/frappe/database/query.py b/frappe/database/query.py
index 4668d9cbd4..fe9a2d3f59 100644
--- a/frappe/database/query.py
+++ b/frappe/database/query.py
@@ -1,9 +1,7 @@
-import operator
import re
from ast import literal_eval
from functools import lru_cache
-from types import BuiltinFunctionType
-from typing import TYPE_CHECKING, Any, ClassVar, Optional, TypeAlias, Union
+from typing import TYPE_CHECKING, Any, Optional, Union
import sqlparse
from pypika.queries import QueryBuilder, Table
@@ -12,11 +10,9 @@ from pypika.terms import AggregateFunction, Term
import frappe
from frappe import _
from frappe.database.operator_map import NESTED_SET_OPERATORS, OPERATOR_MAP
-from frappe.database.schema import SPECIAL_CHAR_PATTERN
from frappe.database.utils import DefaultOrderBy, FilterValue, convert_to_value, get_doctype_name
from frappe.model import get_permitted_fields
from frappe.query_builder import Criterion, Field, Order, functions
-from frappe.query_builder.functions import Function, SqlFunctions
from frappe.query_builder.utils import PseudoColumnMapper
from frappe.utils.data import MARIADB_SPECIFIC_COMMENT
@@ -25,7 +21,6 @@ if TYPE_CHECKING:
TAB_PATTERN = re.compile("^tab")
WORDS_PATTERN = re.compile(r"\w+")
-BRACKETS_PATTERN = re.compile(r"\(.*?\)|$")
COMMA_PATTERN = re.compile(r",\s*(?![^()]*\))")
# less restrictive version of frappe.core.doctype.doctype.doctype.START_WITH_LETTERS_PATTERN
@@ -36,21 +31,11 @@ TABLE_NAME_PATTERN = re.compile(r"^[\w -]*$", flags=re.ASCII)
# Allows: name, `name`, name as alias, `name` as alias, `table name`.`name`, `table name`.`name` as alias, table.name, table.name as alias
ALLOWED_FIELD_PATTERN = re.compile(r"^(?:`?[\w\s-]+`?\.)?(`?\w+`?|\w+)(?:\s+as\s+\w+)?$", flags=re.ASCII)
-# Pattern to validate basic SQL function call syntax: word(...) [as alias]
-FUNCTION_CALL_PATTERN = re.compile(r"^\w+\(.*\)(?:\s+as\s+\w+)?$", flags=re.IGNORECASE | re.ASCII)
-
# Pattern to validate field names used in various SQL clauses (WHERE, GROUP BY, ORDER BY):
# Allows simple field names, backticked names, and table-qualified names (e.g., name, `name`, `table`.`name`, table.name)
# Does NOT allow aliases ('as alias') or functions.
ALLOWED_SQL_FIELD_PATTERN = re.compile(r"^(?:`?\w+`?\.)?(`?\w+`?|\w+)$", flags=re.ASCII)
-# Pattern to validate characters allowed within function arguments that are not simple fields/literals.
-# Allows alphanumeric, underscore, whitespace, +, -, *, /, ., (, ), quotes, and the keyword 'distinct'.
-# Disallows characters like ; = < > etc. to prevent injection.
-ALLOWED_ARGUMENT_CHARS_PATTERN = re.compile(
- r"^(?:[\w\s\+\-\*\/\.\(\)\`\'\"]+|\bDISTINCT\b)+$", flags=re.IGNORECASE | re.ASCII
-)
-
# Regex to parse field names:
# Group 1: Optional quote for table name
# Group 2: Optional table name (e.g., `tabDocType` or tabDocType or `tabNote Seen By`)
@@ -58,17 +43,6 @@ ALLOWED_ARGUMENT_CHARS_PATTERN = re.compile(
# Group 4: Field name (e.g., `field` or field)
FIELD_PARSE_REGEX = re.compile(r"^(?:([`\"]?)(tab[\w\s-]+)\1\.)?([`\"]?)(\w+)\3$")
-# Regex to capture: FunctionName(Arguments) [AS Alias]
-# Group 1: Function Name (e.g., COUNT, SUM)
-# Group 2: Arguments string (e.g., *, field1, 'literal', field2)
-# Group 3: Optional Alias (e.g., average_price or `average_price`) - allows backticks
-SQL_FUNCTION_PATTERN = re.compile(
- r"^([a-zA-Z_]\w*)\s*\((.*?)\)(?:\s+as\s+(`?[\w\s-]+`?|\w+))?$", flags=re.IGNORECASE | re.ASCII
-)
-
-# Regex to split arguments, respecting potential quotes or nested parentheses
-ARGS_SPLIT_PATTERN = re.compile(r",\s*(?![^()]*\))")
-
class Engine:
def get_query(
@@ -648,10 +622,10 @@ class Engine:
return _fields
def _parse_single_field_item(
- self, field: str | Criterion | dict | Field | Function
- ) -> "list | Criterion | Field | Function | DynamicTableField | ChildQuery | None":
+ self, field: str | Criterion | dict | Field
+ ) -> "list | Criterion | Field | DynamicTableField | ChildQuery | None":
"""Parses a single item from the fields list/tuple. Assumes comma-separated strings have already been split."""
- if isinstance(field, Criterion | Field | Function):
+ if isinstance(field, Criterion | Field):
return field
elif isinstance(field, dict):
# Handle child queries defined as dicts {fieldname: [child_fields]}
@@ -670,11 +644,8 @@ class Engine:
if not isinstance(field, str):
frappe.throw(_("Invalid field type: {0}").format(type(field)))
- # Try parsing as SQL function first
- if parsed_function := SqlFunctionParser.parse(field):
- return parsed_function
- # Then try parsing as dynamic field (link/child table access)
- elif parsed := DynamicTableField.parse(field, self.doctype):
+ # Try parsing as dynamic field (link/child table access)
+ if parsed := DynamicTableField.parse(field, self.doctype):
return parsed
# Otherwise, parse as a standard field (simple, quoted, table-qualified, with/without alias)
else:
@@ -834,7 +805,7 @@ class Engine:
elif hasattr(field, "alias") and field.alias and field.name in permitted_fields_set:
allowed_fields.append(field)
- elif isinstance(field, PseudoColumnMapper | Function):
+ elif isinstance(field, PseudoColumnMapper):
# Typically functions or complex terms
allowed_fields.append(field)
@@ -1203,136 +1174,6 @@ class ChildQuery:
)
-class SqlFunctionParser:
- _supported_functions: ClassVar[dict[str, BuiltinFunctionType]] = {
- f.value.lower(): getattr(functions, f.name) for f in SqlFunctions if hasattr(functions, f.name)
- }
-
- @staticmethod
- def _parse_argument_expression(arg_str: str) -> Term | None:
- """Attempts to parse simple arithmetic expressions between fields."""
- # Map symbols to pypika's expected operation methods if needed, or rely on overloading
- # For +, -, *, / pypika Field overloading works directly
- supported_operators = {"+": operator.add, "-": operator.sub, "*": operator.mul, "/": operator.truediv}
-
- for op_symbol, _op_func in supported_operators.items():
- # Split only on the first occurrence of the operator
- parts = arg_str.split(op_symbol, 1)
- if len(parts) == 2:
- left_str, right_str = parts[0].strip(), parts[1].strip()
-
- # Validate both parts are valid field names (simple or quoted)
- if ALLOWED_SQL_FIELD_PATTERN.match(left_str.strip('`"')) and ALLOWED_SQL_FIELD_PATTERN.match(
- right_str.strip('`"')
- ):
- # Create Field or PseudoColumnMapper objects
- left_field = (
- PseudoColumnMapper(left_str)
- if "`" in left_str or '"' in left_str
- else Field(left_str)
- )
- right_field = (
- PseudoColumnMapper(right_str)
- if "`" in right_str or '"' in right_str
- else Field(right_str)
- )
-
- # Use pypika's operator overloading for Field objects
- if op_symbol == "+":
- return left_field + right_field
- elif op_symbol == "-":
- return left_field - right_field
- elif op_symbol == "*":
- return left_field * right_field
- elif op_symbol == "/":
- return left_field / right_field
- # If no simple binary arithmetic expression is found
- return None
-
- @staticmethod
- def parse(field_str: str) -> Function | None:
- """
- Parses a string to see if it represents a *supported* SQL function call.
- Returns a pypika Function object if valid and supported, otherwise None.
- Handles simple arguments (field names, *), aliases, and simple expressions.
- """
- match = SQL_FUNCTION_PATTERN.match(field_str.strip())
- if not match:
- return None
-
- func_name, args_str, alias = match.groups()
- func_name_lower = func_name.lower()
-
- # Strip backticks from alias if present
- if alias:
- alias = alias.strip("`")
-
- # Check if the function is in our supported list
- pypika_func = SqlFunctionParser._supported_functions.get(func_name_lower)
- if not pypika_func:
- # Function name not found in SqlFunctions enum values
- return None
-
- # Handle NOW() specifically (often takes no arguments)
- if func_name_lower == "now" and not args_str.strip():
- return pypika_func(alias=alias or None)
-
- # Parse arguments
- parsed_args = []
- if args_str.strip():
- raw_args = ARGS_SPLIT_PATTERN.split(args_str.strip())
- for arg in raw_args:
- arg = arg.strip()
- if not arg:
- continue
-
- if arg == "*":
- # Only allow '*' for specific functions like COUNT
- if func_name_lower != "count":
- frappe.throw(_("Wildcard '*' argument is only supported for COUNT function."))
- parsed_args.append(Term.wrap_constant("*"))
- continue
-
- evaluated_arg = literal_eval_(arg)
- if evaluated_arg != arg: # Successfully evaluated to a literal
- parsed_args.append(Term.wrap_constant(evaluated_arg))
- else:
- # Not '*' or a simple literal. Could be a field, quoted field, keyword, or expression.
- # Check if it's a simple or quoted field name first.
- if ALLOWED_SQL_FIELD_PATTERN.match(arg.strip('`"')):
- # Pass the original arg (with quotes if present) to the mapper/field
- if "`" in arg or '"' in arg:
- parsed_args.append(PseudoColumnMapper(arg))
- else:
- parsed_args.append(Field(arg))
- # Check if it's a valid expression/keyword based on allowed characters
- elif ALLOWED_ARGUMENT_CHARS_PATTERN.match(arg):
- # Attempt to parse as a simple arithmetic expression first
- parsed_expr = SqlFunctionParser._parse_argument_expression(arg)
- if parsed_expr:
- parsed_args.append(parsed_expr)
- else:
- # Fallback: Pass the raw string argument for non-expression cases like 'distinct name'
- parsed_args.append(arg)
- else:
- # Argument contains disallowed characters.
- frappe.throw(
- _("Invalid characters or format in function argument expression: {0}").format(
- arg
- ),
- frappe.ValidationError,
- )
-
- return pypika_func(*parsed_args, alias=alias or None)
-
-
-def literal_eval_(literal):
- try:
- return literal_eval(literal)
- except (ValueError, SyntaxError):
- return literal
-
-
def get_nested_set_hierarchy_result(doctype: str, name: str, hierarchy: str) -> list[str]:
"""Get matching nodes based on operator."""
table = frappe.qb.DocType(doctype)
@@ -1374,12 +1215,12 @@ def _validate_select_field(field: str):
if field.isdigit():
return
- if ALLOWED_FIELD_PATTERN.match(field) or SqlFunctionParser.parse(field):
+ if ALLOWED_FIELD_PATTERN.match(field):
return
frappe.throw(
_(
- "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, a valid function call, or '*'."
+ "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
).format(field),
frappe.PermissionError,
)
diff --git a/frappe/tests/test_query.py b/frappe/tests/test_query.py
index 53a2413d74..58c019ca03 100644
--- a/frappe/tests/test_query.py
+++ b/frappe/tests/test_query.py
@@ -119,74 +119,10 @@ class TestQuery(IntegrationTestCase):
)
self.assertEqual(
- frappe.qb.get_query(
- "User", fields=["`tabUser`.`name`, Count(`name`) as count"], filters={"name": "Administrator"}
- ).run(),
- frappe.qb.from_("User")
- .select(Field("name"), Count("name").as_("count"))
- .where(Field("name") == "Administrator")
- .run(),
- )
-
- self.assertEqual(
- frappe.qb.get_query(
- "User",
- fields=["`tabUser`.`name`, Count(`name`) as `count`"],
- filters={"name": "Administrator"},
- ).run(),
- frappe.qb.from_("User")
- .select(Field("name"), Count("name").as_("count"))
- .where(Field("name") == "Administrator")
- .run(),
- )
-
- self.assertEqual(
- frappe.qb.get_query(
- "User", fields="`tabUser`.`name`, Count(`name`) as `count`", filters={"name": "Administrator"}
- ).run(),
- frappe.qb.from_("User")
- .select(Field("name"), Count("name").as_("count"))
- .where(Field("name") == "Administrator")
- .run(),
- )
-
- def test_functions_fields(self):
- self.assertEqual(
- frappe.qb.get_query("User", fields="Count(name)", filters={}).get_sql(),
- frappe.qb.from_("User").select(Count(Field("name"))).get_sql(),
- )
-
- self.assertEqual(
- frappe.qb.get_query("User", fields=["Count(name)", "Max(name)"], filters={}).get_sql(),
- frappe.qb.from_("User").select(Count(Field("name")), Max(Field("name"))).get_sql(),
- )
-
- self.assertEqual(
- frappe.qb.get_query("User", fields=["abs(name-email)", "Count(name)"], filters={}).get_sql(),
- frappe.qb.from_("User")
- .select(Abs(Field("name") - Field("email")), Count(Field("name")))
- .get_sql(),
- )
-
- self.assertEqual(
- frappe.qb.get_query("User", fields=[Count("*")], filters={}).get_sql(),
+ frappe.qb.get_query("User", fields=[Count("*")]).get_sql(),
frappe.qb.from_("User").select(Count("*")).get_sql(),
)
- self.assertEqual(
- frappe.qb.get_query("User", fields="timestamp(creation, modified)", filters={}).get_sql(),
- frappe.qb.from_("User").select(Timestamp(Field("creation"), Field("modified"))).get_sql(),
- )
-
- self.assertEqual(
- frappe.qb.get_query(
- "User", fields="Count(name) as count, Max(email) as max_email", filters={}
- ).get_sql(),
- frappe.qb.from_("User")
- .select(Count(Field("name")).as_("count"), Max(Field("email")).as_("max_email"))
- .get_sql(),
- )
-
def test_qb_fields(self):
user_doctype = frappe.qb.DocType("User")
self.assertEqual(
@@ -213,12 +149,6 @@ class TestQuery(IntegrationTestCase):
"`name` as alias",
"tabUser.name as alias",
"`tabUser`.`name` as alias",
- "COUNT(*)",
- "COUNT(name)",
- "COUNT(`name`)",
- "COUNT(`tabUser`.`name`)",
- "COUNT(*) as count_alias",
- "SUM(amount) as total",
"*",
]
invalid_fields = [
@@ -227,7 +157,6 @@ class TestQuery(IntegrationTestCase):
"name--comment",
"name /* comment */",
"name AS alias; --",
- "COUNT(name) as alias; SELECT 1",
"invalid-field-name",
"table.invalid-field",
"`table`.`invalid-field`",
@@ -235,6 +164,10 @@ class TestQuery(IntegrationTestCase):
"`field with space`",
"field as alias with space",
"field as `alias with space`",
+ "COUNT(*)",
+ "COUNT(name)",
+ "SUM(amount) as total",
+ "COUNT(name) as alias; SELECT 1",
"COUNT(name;)",
]
@@ -402,15 +335,6 @@ class TestQuery(IntegrationTestCase):
.get_sql(),
)
- self.assertEqual(
- frappe.qb.get_query(
- user_doctype, fields=["Count(name) as count", "email as id"], filters={}
- ).get_sql(),
- frappe.qb.from_(user_doctype)
- .select(Count(Field("name")).as_("count"), user_doctype.email.as_("id"))
- .get_sql(),
- )
-
@run_only_if(db_type_is.MARIADB)
def test_filters(self):
self.assertEqual(
From 3f65806a0b4d582de8e821f8818dfdae8119cfb9 Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Fri, 23 May 2025 21:37:07 +0530
Subject: [PATCH 057/196] fix: harden group by and order by inputs
- only field, link_field.field, child_field.field allowed
- dont allow backticks
- add permlevel check
- add tests
---
frappe/database/query.py | 139 ++++++++++-----
frappe/tests/test_query.py | 357 +++++++++++++++++++++++++++++++++++--
2 files changed, 438 insertions(+), 58 deletions(-)
diff --git a/frappe/database/query.py b/frappe/database/query.py
index fe9a2d3f59..a7aa869db6 100644
--- a/frappe/database/query.py
+++ b/frappe/database/query.py
@@ -100,7 +100,6 @@ class Engine:
self.apply_fields(fields)
self.apply_filters(filters)
- self.apply_order_by(order_by)
if limit:
if not isinstance(limit, int) or limit < 0:
@@ -119,8 +118,10 @@ class Engine:
self.query = self.query.for_update(skip_locked=skip_locked, nowait=not wait)
if group_by:
- self._validate_group_by(group_by)
- self.query = self.query.groupby(group_by)
+ self.apply_group_by(group_by)
+
+ if order_by:
+ self.apply_order_by(order_by)
if self.apply_permissions:
self.add_permission_conditions()
@@ -427,7 +428,7 @@ class Engine:
parent_doctype_for_perm = (
dynamic_field.parent_doctype if isinstance(dynamic_field, ChildTableField) else None
)
- self._check_filter_field_permission(target_doctype, target_fieldname, parent_doctype_for_perm)
+ self._check_field_permission(target_doctype, target_fieldname, parent_doctype_for_perm)
self.query = dynamic_field.apply_join(self.query)
# Return the pypika Field object associated with the dynamic field
@@ -487,7 +488,7 @@ class Engine:
# For permission check, the parent is the main doctype
parent_doctype_for_perm = self.doctype
- self._check_filter_field_permission(target_doctype, target_fieldname, parent_doctype_for_perm)
+ self._check_field_permission(target_doctype, target_fieldname, parent_doctype_for_perm)
# Delegate join logic
self.query = child_field_handler.apply_join(self.query)
@@ -495,12 +496,12 @@ class Engine:
return child_field_handler.field
else:
# Field belongs to the main doctype or doctype wasn't specified differently
- self._check_filter_field_permission(target_doctype, target_fieldname, parent_doctype_for_perm)
+ self._check_field_permission(target_doctype, target_fieldname, parent_doctype_for_perm)
# Convert string field name to pypika Field object for the specified/current doctype
return frappe.qb.DocType(target_doctype)[target_fieldname]
- def _check_filter_field_permission(self, doctype: str, fieldname: str, parent_doctype: str | None = None):
- """Check if the user has permission to access the given field for filtering."""
+ def _check_field_permission(self, doctype: str, fieldname: str, parent_doctype: str | None = None):
+ """Check if the user has permission to access the given field"""
if not self.apply_permissions:
return
@@ -515,7 +516,7 @@ class Engine:
if fieldname not in permitted_fields:
frappe.throw(
- _("You do not have permission to filter on field: {0}").format(
+ _("You do not have permission to access field: {0}").format(
frappe.bold(f"{doctype}.{fieldname}")
),
frappe.PermissionError,
@@ -652,42 +653,99 @@ class Engine:
# Note: Comma handling is done in parse_fields before this method is called
return self.parse_string_field(field)
- def _validate_group_by(self, group_by: str):
- """Validate the group_by string argument."""
- if not isinstance(group_by, str):
- frappe.throw(_("Group By must be a string"), TypeError)
- parts = COMMA_PATTERN.split(group_by)
- for part in parts:
- field_name = part.strip()
- if not field_name:
- continue
- if field_name.isdigit():
- continue
- if not ALLOWED_SQL_FIELD_PATTERN.match(field_name):
- frappe.throw(
- _("Invalid field format in Group By: {0}").format(field_name),
- frappe.PermissionError,
- )
+ def apply_group_by(self, group_by: str | None = None):
+ parsed_group_by_fields = self._validate_group_by(group_by)
+ self.query = self.query.groupby(*parsed_group_by_fields)
def apply_order_by(self, order_by: str | None):
if not order_by or order_by == DefaultOrderBy:
return
- self._validate_order_by(order_by)
+ parsed_order_fields = self._validate_order_by(order_by)
+ for order_field, order_direction in parsed_order_fields:
+ self.query = self.query.orderby(order_field, order=order_direction)
- for declaration in order_by.split(","):
- if _order_by := declaration.strip():
- parts = _order_by.split(" ")
- order_field = parts[0]
- order_direction = Order.asc if (len(parts) > 1 and parts[1].lower() == "asc") else Order.desc
- self.query = self.query.orderby(order_field, order=order_direction)
+ def _validate_and_parse_field_for_clause(self, field_name: str, clause_name: str) -> Field:
+ """
+ Common helper to validate and parse field names for GROUP BY and ORDER BY clauses.
- def _validate_order_by(self, order_by: str):
- """Validate the order_by string argument."""
+ Args:
+ field_name: The field name to validate and parse
+ clause_name: Name of the SQL clause (for error messages) - 'Group By' or 'Order By'
+
+ Returns:
+ Parsed Field object ready for use in pypika query
+ """
+ if field_name.isdigit():
+ # For numeric field references, return as-is (will be handled by caller)
+ return field_name
+
+ # Reject backticks
+ if "`" in field_name:
+ frappe.throw(
+ _("{0} fields cannot contain backticks (`): {1}").format(clause_name, field_name),
+ frappe.ValidationError,
+ )
+
+ # Try parsing as dynamic field (link_field.field or child_table.field)
+ dynamic_field = DynamicTableField.parse(field_name, self.doctype, allow_tab_notation=False)
+ if dynamic_field:
+ # Check permissions for dynamic field
+ if self.apply_permissions:
+ if isinstance(dynamic_field, ChildTableField):
+ self._check_field_permission(
+ dynamic_field.doctype, dynamic_field.fieldname, dynamic_field.parent_doctype
+ )
+ elif isinstance(dynamic_field, LinkTableField):
+ # Check permission for the link field in parent doctype
+ self._check_field_permission(self.doctype, dynamic_field.link_fieldname)
+ # Check permission for the target field in linked doctype
+ self._check_field_permission(dynamic_field.doctype, dynamic_field.fieldname)
+
+ # Apply join for the dynamic field
+ self.query = dynamic_field.apply_join(self.query)
+ return dynamic_field.field
+ else:
+ # Validate as simple field name (alphanumeric + underscore only)
+ if not re.fullmatch(r"\w+", field_name):
+ frappe.throw(
+ _(
+ "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+ ).format(clause_name, field_name),
+ frappe.ValidationError,
+ )
+
+ # Check permissions for simple field
+ if self.apply_permissions:
+ self._check_field_permission(self.doctype, field_name)
+
+ # Create Field object for simple field
+ return self.table[field_name]
+
+ def _validate_group_by(self, group_by: str) -> list[Field]:
+ """Validate the group_by string argument, apply joins for dynamic fields, and return parsed Field objects."""
+ if not isinstance(group_by, str):
+ frappe.throw(_("Group By must be a string"), TypeError)
+
+ parsed_fields = []
+ parts = COMMA_PATTERN.split(group_by)
+ for part in parts:
+ field_name = part.strip()
+ if not field_name:
+ continue
+
+ parsed_field = self._validate_and_parse_field_for_clause(field_name, "Group By")
+ parsed_fields.append(parsed_field)
+
+ return parsed_fields
+
+ def _validate_order_by(self, order_by: str) -> list[tuple[Field | str, Order]]:
+ """Validate the order_by string argument, apply joins for dynamic fields, and return parsed Field objects with directions."""
if not isinstance(order_by, str):
frappe.throw(_("Order By must be a string"), TypeError)
valid_directions = {"asc", "desc"}
+ parsed_order_fields = []
for declaration in order_by.split(","):
if _order_by := declaration.strip():
@@ -697,13 +755,10 @@ class Engine:
if len(parts) > 1:
direction = parts[1].lower()
- if field_name.isdigit():
- pass
- elif not ALLOWED_SQL_FIELD_PATTERN.match(field_name):
- frappe.throw(
- _("Invalid field format in Order By: {0}").format(field_name),
- frappe.PermissionError,
- )
+ order_direction = Order.asc if direction == "asc" else Order.desc
+
+ parsed_field = self._validate_and_parse_field_for_clause(field_name, "Order By")
+ parsed_order_fields.append((parsed_field, order_direction))
if direction and direction not in valid_directions:
frappe.throw(
@@ -711,6 +766,8 @@ class Engine:
ValueError,
)
+ return parsed_order_fields
+
def check_read_permission(self):
"""Check if user has read permission on the doctype"""
diff --git a/frappe/tests/test_query.py b/frappe/tests/test_query.py
index 58c019ca03..fd5b2fea11 100644
--- a/frappe/tests/test_query.py
+++ b/frappe/tests/test_query.py
@@ -231,12 +231,8 @@ class TestQuery(IntegrationTestCase):
"""Test validation for fields in GROUP BY clause."""
valid_fields = [
"name",
- "`name`",
- "tabUser.name",
- "`tabUser`.`name`",
"1", # Allow numeric indices
"name, email",
- "`name`, `tabUser`.`email`",
"1, 2",
]
# GROUP BY should not allow aliases or functions
@@ -250,6 +246,10 @@ class TestQuery(IntegrationTestCase):
"name /* comment */",
"invalid-field-name",
"table.invalid-field",
+ "tabUser.name",
+ "`name`",
+ "`tabUser`.`name`",
+ "`name`, `tabUser`.`email`",
"`table`.`invalid-field`",
"field with space",
"`field with space`",
@@ -264,7 +264,8 @@ class TestQuery(IntegrationTestCase):
for group_by_str in invalid_fields:
with self.assertRaises(
- frappe.PermissionError, msg=f"Invalid GROUP BY string '{group_by_str}' passed validation"
+ (frappe.PermissionError, frappe.ValidationError),
+ msg=f"Invalid GROUP BY string '{group_by_str}' passed validation",
):
frappe.qb.get_query("User", group_by=group_by_str).get_sql()
@@ -272,18 +273,11 @@ class TestQuery(IntegrationTestCase):
"""Test validation for fields in ORDER BY clause."""
valid_fields = [
"name",
- "`name`",
- "tabUser.name",
- "`tabUser`.`name`",
"1", # Allow numeric indices
"name asc",
- "`name` DESC",
- "tabUser.name Asc",
- "`tabUser`.`name` desc",
"1 asc",
"2 DESC",
"name, email",
- "`name` asc, `tabUser`.`email` DESC",
"1 asc, 2 desc",
]
# ORDER BY should not allow aliases or functions, or invalid directions
@@ -295,6 +289,13 @@ class TestQuery(IntegrationTestCase):
"`name` ; SELECT * FROM secrets",
"name--comment",
"name /* comment */",
+ "`name`",
+ "tabUser.name",
+ "`tabUser`.`name`",
+ "`name` DESC",
+ "tabUser.name Asc",
+ "`tabUser`.`name` desc",
+ "`name` asc, `tabUser`.`email` DESC",
"invalid-field-name",
"table.invalid-field",
"`table`.`invalid-field`",
@@ -314,7 +315,7 @@ class TestQuery(IntegrationTestCase):
for order_by_str in invalid_fields:
with self.assertRaises(
- (frappe.PermissionError, ValueError),
+ (frappe.PermissionError, ValueError, frappe.ValidationError),
msg=f"Invalid ORDER BY string '{order_by_str}' passed validation",
):
frappe.qb.get_query("User", order_by=order_by_str).get_sql()
@@ -833,7 +834,7 @@ class TestQuery(IntegrationTestCase):
frappe.set_user("Administrator")
note.delete(ignore_permissions=True)
test_user.remove_roles(test_role)
- frappe.delete_doc("Role", test_role, force=True, ignore_permissions=True)
+ frappe.delete_doc("Role", test_role, force=True)
def test_nested_permission(self):
"""Test permission on nested doctypes"""
@@ -1049,7 +1050,7 @@ class TestQuery(IntegrationTestCase):
"blog_category": "-test-blog-category",
"published": 1, # permlevel 1
}
- ).insert(ignore_permissions=True, ignore_mandatory=True)
+ ).insert(ignore_permissions=True, ignore_mandatory=True, ignore_if_duplicate=True)
# User has read permlevel 0, but not 1 (published field)
# Try filtering on permitted field (title - permlevel 0)
@@ -1071,7 +1072,7 @@ class TestQuery(IntegrationTestCase):
ignore_permissions=False,
user=user.name,
).run()
- self.assertIn("You do not have permission to filter on field", str(cm.exception))
+ self.assertIn("You do not have permission to access field", str(cm.exception))
self.assertIn("Blog Post.published", str(cm.exception))
# Cleanup
@@ -1158,7 +1159,7 @@ class TestQuery(IntegrationTestCase):
ignore_permissions=False,
user=user.name,
).run()
- self.assertIn("You do not have permission to filter on field", str(cm_link.exception))
+ self.assertIn("You do not have permission to access field", str(cm_link.exception))
self.assertIn(f"{target_dt_name}.target_field", str(cm_link.exception))
# Cleanup
@@ -1170,6 +1171,328 @@ class TestQuery(IntegrationTestCase):
test_user_doc.remove_roles(test_role)
frappe.delete_doc("Role", test_role, force=True)
+ def test_dynamic_fields_in_group_by(self):
+ """Test dynamic field support in GROUP BY clause."""
+ try:
+ query = frappe.qb.get_query(
+ "DocType",
+ fields=["module.app_name", "name"],
+ group_by="module.app_name",
+ )
+ result = query.run(as_dict=True)
+ self.assertTrue(len(result) > 0)
+ sql = query.get_sql()
+ self.assertIn("LEFT JOIN", sql)
+ self.assertIn("tabModule Def", sql)
+ except Exception as e:
+ self.fail(f"Dynamic link field in GROUP BY failed: {e}")
+
+ note = frappe.get_doc(
+ doctype="Note", title="Group By Test Note", seen_by=[{"user": "Administrator"}, {"user": "Guest"}]
+ ).insert()
+
+ try:
+ query = frappe.qb.get_query(
+ "Note",
+ fields=["seen_by.user", "name"],
+ filters={"name": note.name},
+ group_by="seen_by.user",
+ )
+ result = query.run(as_dict=True)
+ self.assertTrue(len(result) >= 1)
+ sql = query.get_sql()
+ self.assertIn("LEFT JOIN", sql)
+ self.assertIn("tabNote Seen By", sql)
+ except Exception as e:
+ self.fail(f"Dynamic child field in GROUP BY failed: {e}")
+ finally:
+ note.delete()
+
+ def test_dynamic_fields_in_order_by(self):
+ """Test dynamic field support in ORDER BY clause."""
+ try:
+ query = frappe.qb.get_query(
+ "DocType", fields=["name", "module.app_name"], order_by="module.app_name DESC", limit=5
+ )
+ result = query.run(as_dict=True)
+ self.assertTrue(len(result) > 0)
+ sql = query.get_sql()
+ self.assertIn("LEFT JOIN", sql)
+ self.assertIn("tabModule Def", sql)
+ self.assertIn("ORDER BY", sql)
+ except Exception as e:
+ self.fail(f"Dynamic link field in ORDER BY failed: {e}")
+
+ note1 = frappe.get_doc(
+ doctype="Note", title="Order Test Note 1", seen_by=[{"user": "Administrator"}]
+ ).insert()
+ note2 = frappe.get_doc(
+ doctype="Note", title="Order Test Note 2", seen_by=[{"user": "Guest"}]
+ ).insert()
+
+ try:
+ query = frappe.qb.get_query(
+ "Note",
+ fields=["name", "seen_by.user"],
+ filters={"name": ["in", [note1.name, note2.name]]},
+ order_by="seen_by.user ASC",
+ )
+ result = query.run(as_dict=True)
+ self.assertTrue(len(result) >= 2)
+ sql = query.get_sql()
+ self.assertIn("LEFT JOIN", sql)
+ self.assertIn("tabNote Seen By", sql)
+ except Exception as e:
+ self.fail(f"Dynamic child field in ORDER BY failed: {e}")
+ finally:
+ note1.delete()
+ note2.delete()
+
+ def test_multiple_dynamic_fields_group_order(self):
+ """Test multiple dynamic fields in GROUP BY and ORDER BY."""
+ try:
+ query = frappe.qb.get_query(
+ "DocType",
+ fields=["module", "module.app_name", "name"],
+ group_by="module, module.app_name",
+ order_by="module.app_name",
+ )
+ result = query.run(as_dict=True)
+ self.assertTrue(len(result) > 0)
+ except Exception as e:
+ self.fail(f"Multiple dynamic fields in GROUP BY/ORDER BY failed: {e}")
+
+ def test_group_by_order_by_permission_checks(self):
+ """Test permission checks for dynamic fields in GROUP BY and ORDER BY."""
+ target_dt_name = "TargetDocForGroupOrderPerm"
+ source_dt_name = "SourceDocForGroupOrderPerm"
+ test_role = "GroupOrderPermTestRole"
+ test_user = "test2@example.com"
+
+ frappe.set_user("Administrator")
+ frappe.delete_doc("DocType", target_dt_name, ignore_missing=True, force=True)
+ frappe.delete_doc("DocType", source_dt_name, ignore_missing=True, force=True)
+ frappe.delete_doc("Role", test_role, ignore_missing=True, force=True)
+ test_user_doc = frappe.get_doc("User", test_user)
+ test_user_doc.remove_roles(test_role)
+
+ target_dt = new_doctype(
+ target_dt_name,
+ fields=[
+ {
+ "fieldname": "restricted_field",
+ "fieldtype": "Data",
+ "permlevel": 1,
+ "label": "Restricted Field",
+ },
+ {"fieldname": "public_field", "fieldtype": "Data", "label": "Public Field"},
+ ],
+ ).insert(ignore_if_duplicate=True)
+
+ source_dt = new_doctype(
+ source_dt_name,
+ fields=[
+ {
+ "fieldname": "link_field",
+ "fieldtype": "Link",
+ "options": target_dt_name,
+ "label": "Link Field",
+ },
+ ],
+ ).insert(ignore_if_duplicate=True)
+
+ frappe.get_doc({"doctype": "Role", "role_name": test_role}).insert(ignore_if_duplicate=True)
+ add_permission(source_dt_name, test_role, 0, ptype="read")
+ add_permission(target_dt_name, test_role, 0, ptype="read")
+ update_permission_property(target_dt_name, test_role, 1, "read", 0, validate=False)
+ test_user_doc.add_roles(test_role)
+
+ frappe.set_user(test_user)
+
+ try:
+ frappe.qb.get_query(
+ source_dt_name,
+ fields=["link_field.public_field", "name"],
+ group_by="link_field.public_field",
+ ignore_permissions=False,
+ user=test_user,
+ ).get_sql()
+ except frappe.PermissionError as e:
+ self.fail(f"GROUP BY with permitted field failed: {e}")
+
+ with self.assertRaises(frappe.PermissionError) as cm:
+ frappe.qb.get_query(
+ source_dt_name,
+ fields=["link_field.restricted_field", "name"],
+ group_by="link_field.restricted_field",
+ ignore_permissions=False,
+ user=test_user,
+ ).get_sql()
+ self.assertIn("You do not have permission to access field", str(cm.exception))
+ self.assertIn("restricted_field", str(cm.exception))
+
+ try:
+ frappe.qb.get_query(
+ source_dt_name,
+ fields=["name", "link_field.public_field"],
+ order_by="link_field.public_field",
+ ignore_permissions=False,
+ user=test_user,
+ ).get_sql()
+ except frappe.PermissionError as e:
+ self.fail(f"ORDER BY with permitted field failed: {e}")
+
+ with self.assertRaises(frappe.PermissionError) as cm:
+ frappe.qb.get_query(
+ source_dt_name,
+ fields=["name"],
+ order_by="link_field.restricted_field",
+ ignore_permissions=False,
+ user=test_user,
+ ).get_sql()
+ self.assertIn("You do not have permission to access field", str(cm.exception))
+ self.assertIn("restricted_field", str(cm.exception))
+
+ frappe.set_user("Administrator")
+ source_dt.delete()
+ target_dt.delete()
+ test_user_doc.remove_roles(test_role)
+ frappe.delete_doc("Role", test_role, force=True)
+
+ def test_child_table_group_by_order_by_permissions(self):
+ """Test permission checks for child table fields in GROUP BY and ORDER BY."""
+ child_dt_name = "ChildDocForGroupOrderPerm"
+ parent_dt_name = "ParentDocForGroupOrderPerm"
+ test_role = "ChildGroupOrderPermTestRole"
+ test_user_email = "test2@example.com"
+
+ frappe.set_user("Administrator")
+ frappe.delete_doc("DocType", child_dt_name, ignore_missing=True, force=True)
+ frappe.delete_doc("DocType", parent_dt_name, ignore_missing=True, force=True)
+ frappe.delete_doc("Role", test_role, ignore_missing=True, force=True)
+
+ test_user_doc = frappe.get_doc("User", test_user_email)
+ test_user_doc.remove_roles(test_role)
+
+ child_dt = new_doctype(
+ child_dt_name,
+ fields=[
+ {
+ "fieldname": "restricted_child_field",
+ "fieldtype": "Data",
+ "permlevel": 1,
+ "label": "Restricted Child Field",
+ },
+ {"fieldname": "public_child_field", "fieldtype": "Data", "label": "Public Child Field"},
+ ],
+ istable=1,
+ ).insert(ignore_if_duplicate=True)
+
+ parent_dt = new_doctype(
+ parent_dt_name,
+ fields=[
+ {
+ "fieldname": "child_table",
+ "fieldtype": "Table",
+ "options": child_dt_name,
+ "label": "Child Table",
+ },
+ ],
+ ).insert(ignore_if_duplicate=True)
+
+ frappe.get_doc({"doctype": "Role", "role_name": test_role}).insert(ignore_if_duplicate=True)
+ add_permission(parent_dt_name, test_role, 0, ptype="read")
+ add_permission(child_dt_name, test_role, 0, ptype="read")
+ update_permission_property(child_dt_name, test_role, 1, "read", 0, validate=False)
+ test_user_doc.add_roles(test_role)
+
+ frappe.set_user(test_user_email)
+
+ try:
+ frappe.qb.get_query(
+ parent_dt_name,
+ fields=["child_table.public_child_field", "name"],
+ group_by="child_table.public_child_field",
+ ignore_permissions=False,
+ user=test_user_email,
+ ).get_sql()
+ except frappe.PermissionError as e:
+ self.fail(f"GROUP BY with permitted child field failed: {e}")
+
+ with self.assertRaises(frappe.PermissionError) as cm:
+ frappe.qb.get_query(
+ parent_dt_name,
+ fields=["child_table.restricted_child_field", "name"],
+ group_by="child_table.restricted_child_field",
+ ignore_permissions=False,
+ user=test_user_email,
+ ).get_sql()
+ self.assertIn("You do not have permission to access field", str(cm.exception))
+ self.assertIn("restricted_child_field", str(cm.exception))
+
+ with self.assertRaises(frappe.PermissionError) as cm:
+ frappe.qb.get_query(
+ parent_dt_name,
+ fields=["name"],
+ order_by="child_table.restricted_child_field",
+ ignore_permissions=False,
+ user=test_user_email,
+ ).get_sql()
+ self.assertIn("You do not have permission to access field", str(cm.exception))
+ self.assertIn("restricted_child_field", str(cm.exception))
+
+ frappe.set_user("Administrator")
+ parent_dt.delete()
+ child_dt.delete()
+ test_user_doc.remove_roles(test_role)
+ frappe.delete_doc("Role", test_role, force=True)
+
+ def test_group_by_order_by_validation_errors(self):
+ """Test validation errors for invalid GROUP BY and ORDER BY fields."""
+ invalid_group_by_fields = [
+ "name; DROP TABLE users",
+ "name--comment",
+ "name /* comment */",
+ "invalid-field-name",
+ "field with space",
+ "`field with space`",
+ "name, email; SELECT 1",
+ ]
+
+ for field in invalid_group_by_fields:
+ with self.assertRaises(
+ frappe.ValidationError, msg=f"Invalid GROUP BY field '{field}' passed validation"
+ ):
+ frappe.qb.get_query("User", group_by=field).get_sql()
+
+ invalid_order_by_fields = [
+ "name sideways",
+ "name INVALID_DIRECTION",
+ "name ASC;",
+ "name, email; SELECT 1",
+ ]
+
+ for field in invalid_order_by_fields:
+ with self.assertRaises(
+ (frappe.ValidationError, ValueError),
+ msg=f"Invalid ORDER BY field '{field}' passed validation",
+ ):
+ frappe.qb.get_query("User", order_by=field).get_sql()
+
+ def test_backtick_rejection_group_order(self):
+ """Test that backticks are properly rejected in GROUP BY and ORDER BY."""
+ with self.assertRaises(frappe.ValidationError) as cm:
+ frappe.qb.get_query("User", group_by="`name`").get_sql()
+ self.assertIn("cannot contain backticks", str(cm.exception))
+
+ with self.assertRaises(frappe.ValidationError) as cm:
+ frappe.qb.get_query("User", order_by="`name` ASC").get_sql()
+ self.assertIn("cannot contain backticks", str(cm.exception))
+
+ with self.assertRaises(frappe.ValidationError) as cm:
+ frappe.qb.get_query("User", group_by="`name`, `email`").get_sql()
+ self.assertIn("cannot contain backticks", str(cm.exception))
+
# This function is used as a permission query condition hook
def test_permission_hook_condition(user):
From 840e7991cee136f4f194d4763a1a0564f499b7c0 Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Fri, 23 May 2025 21:46:19 +0530
Subject: [PATCH 058/196] fix: dont allow partial backticks
- add tests
---
frappe/database/query.py | 7 ++-----
frappe/tests/test_query.py | 12 ++++++++++++
2 files changed, 14 insertions(+), 5 deletions(-)
diff --git a/frappe/database/query.py b/frappe/database/query.py
index a7aa869db6..1418a681e8 100644
--- a/frappe/database/query.py
+++ b/frappe/database/query.py
@@ -29,12 +29,12 @@ TABLE_NAME_PATTERN = re.compile(r"^[\w -]*$", flags=re.ASCII)
# Pattern to validate field names in SELECT:
# Allows: name, `name`, name as alias, `name` as alias, `table name`.`name`, `table name`.`name` as alias, table.name, table.name as alias
-ALLOWED_FIELD_PATTERN = re.compile(r"^(?:`?[\w\s-]+`?\.)?(`?\w+`?|\w+)(?:\s+as\s+\w+)?$", flags=re.ASCII)
+ALLOWED_FIELD_PATTERN = re.compile(r"^(?:(`[\w\s-]+`|\w+)\.)?(`\w+`|\w+)(?:\s+as\s+\w+)?$", flags=re.ASCII)
# Pattern to validate field names used in various SQL clauses (WHERE, GROUP BY, ORDER BY):
# Allows simple field names, backticked names, and table-qualified names (e.g., name, `name`, `table`.`name`, table.name)
# Does NOT allow aliases ('as alias') or functions.
-ALLOWED_SQL_FIELD_PATTERN = re.compile(r"^(?:`?\w+`?\.)?(`?\w+`?|\w+)$", flags=re.ASCII)
+ALLOWED_SQL_FIELD_PATTERN = re.compile(r"^(?:(`\w+`|\w+)\.)?(`\w+`|\w+)$", flags=re.ASCII)
# Regex to parse field names:
# Group 1: Optional quote for table name
@@ -1331,6 +1331,3 @@ class CombinedRawCriterion(RawCriterion):
left_sql = self.left.get_sql(**kwargs) if hasattr(self.left, "get_sql") else str(self.left)
right_sql = self.right.get_sql(**kwargs) if hasattr(self.right, "get_sql") else str(self.right)
return f"({left_sql}) {self.operator} ({right_sql})"
- left_sql = self.left.get_sql(**kwargs) if hasattr(self.left, "get_sql") else str(self.left)
- right_sql = self.right.get_sql(**kwargs) if hasattr(self.right, "get_sql") else str(self.right)
- return f"({left_sql}) {self.operator} ({right_sql})"
diff --git a/frappe/tests/test_query.py b/frappe/tests/test_query.py
index fd5b2fea11..d26a95bde9 100644
--- a/frappe/tests/test_query.py
+++ b/frappe/tests/test_query.py
@@ -150,6 +150,7 @@ class TestQuery(IntegrationTestCase):
"tabUser.name as alias",
"`tabUser`.`name` as alias",
"*",
+ "`tabHas Role`.`name`",
]
invalid_fields = [
"name; DROP TABLE users",
@@ -169,6 +170,12 @@ class TestQuery(IntegrationTestCase):
"SUM(amount) as total",
"COUNT(name) as alias; SELECT 1",
"COUNT(name;)",
+ "`name",
+ "name`",
+ "`tabUser.name`",
+ "tabUser.`name",
+ "tabUser`.`name`",
+ "tab`User.name",
]
for field in valid_fields:
@@ -208,6 +215,11 @@ class TestQuery(IntegrationTestCase):
"`table`.`invalid-field`",
"field with space",
"`field with space`",
+ "`name`",
+ "`name",
+ "name`",
+ "tabUser.`name`",
+ "`tabUser.name`",
]
for field in valid_fields:
From a6e90280906bd5c26ec8d6ee9c2edf0799529364 Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Sat, 24 May 2025 02:37:04 +0530
Subject: [PATCH 059/196] fix: cast link fields that are int to string
- id fields should always be string
- easier to manage in typed code in frontend
---
frappe/api/v2.py | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/frappe/api/v2.py b/frappe/api/v2.py
index 01570ae989..b372bd1adc 100644
--- a/frappe/api/v2.py
+++ b/frappe/api/v2.py
@@ -15,7 +15,7 @@ from werkzeug.routing import Rule
import frappe
import frappe.client
-from frappe import _, cint, get_newargs, is_whitelisted
+from frappe import _, cint, cstr, get_newargs, is_whitelisted
from frappe.core.doctype.server_script.server_script_utils import get_server_script_map
from frappe.handler import is_valid_http_method, run_server_script, upload_file
@@ -65,7 +65,14 @@ def read_doc(doctype: str, name: str):
doc = frappe.get_doc(doctype, name)
doc.check_permission("read")
doc.apply_fieldlevel_read_permissions()
- return doc.as_dict()
+ _doc = doc.as_dict()
+
+ for key in _doc:
+ df = doc.meta.get_field(key)
+ if df and df.fieldtype == "Link" and isinstance(_doc.get(key), int):
+ _doc[key] = cstr(_doc.get(key))
+
+ return _doc
def document_list(doctype: str):
From f2a0724f9a6be718f04f494b93daa305dadc630a Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Sat, 24 May 2025 02:41:00 +0530
Subject: [PATCH 060/196] feat: add back sql functions support with json syntax
```
fields=['user_type', {'COUNT': 'name', 'as': 'total'}]
fields=[{"IFNULL": ["first_name", "'Unknown'"], "as": "safe_name"}]
```
---
frappe/database/query.py | 323 +++++++++++++++++++++++++++++++++++--
frappe/tests/test_query.py | 103 ++++++++++++
2 files changed, 415 insertions(+), 11 deletions(-)
diff --git a/frappe/database/query.py b/frappe/database/query.py
index 1418a681e8..aafeef04c1 100644
--- a/frappe/database/query.py
+++ b/frappe/database/query.py
@@ -43,6 +43,22 @@ ALLOWED_SQL_FIELD_PATTERN = re.compile(r"^(?:(`\w+`|\w+)\.)?(`\w+`|\w+)$", flags
# Group 4: Field name (e.g., `field` or field)
FIELD_PARSE_REGEX = re.compile(r"^(?:([`\"]?)(tab[\w\s-]+)\1\.)?([`\"]?)(\w+)\3$")
+# Direct mapping from uppercase function names to pypika function classes
+FUNCTION_MAPPING = {
+ "COUNT": functions.Count,
+ "SUM": functions.Sum,
+ "AVG": functions.Avg,
+ "MAX": functions.Max,
+ "MIN": functions.Min,
+ "ABS": functions.Abs,
+ "EXTRACT": functions.Extract,
+ "LOCATE": functions.Locate,
+ "TIMESTAMP": functions.Timestamp,
+ "IFNULL": functions.IfNull,
+ "CONCAT": functions.Concat,
+ "NOW": functions.Now,
+}
+
class Engine:
def get_query(
@@ -629,17 +645,29 @@ class Engine:
if isinstance(field, Criterion | Field):
return field
elif isinstance(field, dict):
- # Handle child queries defined as dicts {fieldname: [child_fields]}
- _parsed_fields = []
- for child_field, child_fields_list in field.items():
- # Ensure child_fields_list is a list or tuple
- if not isinstance(child_fields_list, list | tuple):
- frappe.throw(
- _("Child query fields for '{0}' must be a list or tuple.").format(child_field)
- )
- _parsed_fields.append(ChildQuery(child_field, list(child_fields_list), self.doctype))
- # Return list as a dict entry might represent multiple child queries (though unlikely)
- return _parsed_fields
+ # Check if it's a SQL function dictionary
+ function_parser = SQLFunctionParser(engine=self)
+ if function_parser.is_function_dict(field):
+ return function_parser.parse_function(field)
+ else:
+ # Handle child queries defined as dicts {fieldname: [child_fields]}
+ _parsed_fields = []
+ for child_field, child_fields_list in field.items():
+ # Skip uppercase keys as they might be unsupported SQL functions
+ if child_field.isupper():
+ frappe.throw(
+ _("Unsupported function or invalid field name: {0}").format(child_field),
+ frappe.ValidationError,
+ )
+
+ # Ensure child_fields_list is a list or tuple
+ if not isinstance(child_fields_list, list | tuple):
+ frappe.throw(
+ _("Child query fields for '{0}' must be a list or tuple.").format(child_field)
+ )
+ _parsed_fields.append(ChildQuery(child_field, list(child_fields_list), self.doctype))
+ # Return list as a dict entry might represent multiple child queries (though unlikely)
+ return _parsed_fields
# At this point, field must be a string (already validated and sanitized)
if not isinstance(field, str):
@@ -1331,3 +1359,276 @@ class CombinedRawCriterion(RawCriterion):
left_sql = self.left.get_sql(**kwargs) if hasattr(self.left, "get_sql") else str(self.left)
right_sql = self.right.get_sql(**kwargs) if hasattr(self.right, "get_sql") else str(self.right)
return f"({left_sql}) {self.operator} ({right_sql})"
+
+
+class SQLFunctionParser:
+ """Parser for SQL function dictionaries in query builder fields."""
+
+ def __init__(self, engine):
+ self.engine = engine
+
+ def is_function_dict(self, field_dict: dict) -> bool:
+ """Check if a dictionary represents a SQL function definition."""
+ function_keys = [k for k in field_dict.keys() if k != "as"]
+ return len(function_keys) == 1 and function_keys[0] in FUNCTION_MAPPING
+
+ def parse_function(self, function_dict: dict) -> Field:
+ """Parse a SQL function dictionary into a pypika function call."""
+ function_name = None
+ alias = None
+ function_args = None
+
+ for key, value in function_dict.items():
+ if key == "as":
+ alias = value
+ else:
+ function_name = key
+ function_args = value
+
+ if not function_name:
+ frappe.throw(_("Invalid function dictionary format"), frappe.ValidationError)
+
+ if function_name not in FUNCTION_MAPPING:
+ frappe.throw(
+ _("Unsupported function or invalid field name: {0}").format(function_name),
+ frappe.ValidationError,
+ )
+
+ if alias:
+ self._validate_alias(alias)
+
+ func_class = FUNCTION_MAPPING.get(function_name)
+ if not func_class:
+ frappe.throw(
+ _("Unsupported function or invalid field name: {0}").format(function_name),
+ frappe.ValidationError,
+ )
+
+ if isinstance(function_args, str):
+ parsed_arg = self._parse_and_validate_argument(function_args)
+ function_call = func_class(parsed_arg)
+ elif isinstance(function_args, list):
+ parsed_args = []
+ for arg in function_args:
+ parsed_arg = self._parse_and_validate_argument(arg)
+ parsed_args.append(parsed_arg)
+ function_call = func_class(*parsed_args)
+ elif isinstance(function_args, (int | float)):
+ function_call = func_class(function_args)
+ elif function_args is None:
+ try:
+ function_call = func_class()
+ except TypeError:
+ frappe.throw(
+ _("Function {0} requires arguments but none were provided").format(function_name),
+ frappe.ValidationError,
+ )
+ else:
+ frappe.throw(
+ _(
+ "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+ ).format(type(function_args).__name__),
+ frappe.ValidationError,
+ )
+
+ if alias:
+ return function_call.as_(alias)
+ else:
+ return function_call
+
+ def _parse_and_validate_argument(self, arg):
+ """Parse and validate a single function argument against SQL injection."""
+ if isinstance(arg, (int | float)):
+ return arg
+ elif isinstance(arg, str):
+ return self._validate_string_argument(arg)
+ elif arg is None:
+ # None is allowed for some functions
+ return arg
+ else:
+ frappe.throw(
+ _("Invalid argument type: {0}. Only strings, numbers, and None are allowed.").format(
+ type(arg).__name__
+ ),
+ frappe.ValidationError,
+ )
+
+ def _validate_string_argument(self, arg: str):
+ """Validate string arguments to prevent SQL injection."""
+ arg = arg.strip()
+
+ if not arg:
+ frappe.throw(_("Empty string arguments are not allowed"), frappe.ValidationError)
+
+ # Check for string literals (quoted strings)
+ if self._is_string_literal(arg):
+ return self._validate_string_literal(arg)
+
+ elif self._is_valid_field_name(arg):
+ # Validate field name and check permissions
+ self._validate_function_field_arg(arg)
+ return self.engine.table[arg]
+
+ else:
+ frappe.throw(
+ _(
+ "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+ ).format(arg),
+ frappe.ValidationError,
+ )
+
+ def _is_string_literal(self, arg: str) -> bool:
+ """Check if argument is a properly quoted string literal."""
+ return (arg.startswith("'") and arg.endswith("'") and len(arg) >= 2) or (
+ arg.startswith('"') and arg.endswith('"') and len(arg) >= 2
+ )
+
+ def _validate_string_literal(self, literal: str):
+ """Validate a string literal for SQL injection attacks."""
+ if literal.startswith("'") and literal.endswith("'"):
+ quote_char = "'"
+ content = literal[1:-1]
+ elif literal.startswith('"') and literal.endswith('"'):
+ quote_char = '"'
+ content = literal[1:-1]
+ else:
+ frappe.throw(_("Invalid string literal format: {0}").format(literal), frappe.ValidationError)
+
+ if quote_char in content:
+ escaped_content = content.replace(quote_char + quote_char, "")
+ if quote_char in escaped_content:
+ frappe.throw(
+ _("Unescaped quotes in string literal: {0}").format(literal),
+ frappe.ValidationError,
+ )
+
+ # Reject dangerous SQL keywords and patterns
+ dangerous_patterns = [
+ # SQL injection keywords
+ r"\b(?:union|select|insert|update|delete|drop|create|alter|exec|execute)\b",
+ # Comment patterns
+ r"--",
+ r"/\*",
+ r"\*/",
+ # Semicolon (statement terminator)
+ r";",
+ # Backslash escape sequences that could be dangerous
+ r"\\x[0-9a-fA-F]{2}", # Hex escape sequences
+ r"\\[0-7]{1,3}", # Octal escape sequences
+ ]
+
+ content_lower = content.lower()
+ for pattern in dangerous_patterns:
+ if re.search(pattern, content_lower, re.IGNORECASE):
+ frappe.throw(
+ _("Potentially dangerous content in string literal: {0}").format(literal),
+ frappe.ValidationError,
+ )
+
+ # Return just the content without quotes - pypika will handle proper escaping
+ return content
+
+ def _is_valid_field_name(self, name: str) -> bool:
+ """Check if a string is a valid field name."""
+ # Field names should only contain alphanumeric characters and underscores
+ return re.fullmatch(r"[a-zA-Z_][a-zA-Z0-9_]*", name) is not None
+
+ def _validate_alias(self, alias: str):
+ """Validate alias name for SQL injection."""
+ if not isinstance(alias, str):
+ frappe.throw(_("Alias must be a string"), frappe.ValidationError)
+
+ alias = alias.strip()
+ if not alias:
+ frappe.throw(_("Empty alias is not allowed"), frappe.ValidationError)
+
+ # Alias should be a simple identifier
+ if not re.fullmatch(r"[a-zA-Z_][a-zA-Z0-9_]*", alias):
+ frappe.throw(
+ _("Invalid alias format: {0}. Alias must be a simple identifier.").format(alias),
+ frappe.ValidationError,
+ )
+
+ # Check for SQL keywords that shouldn't be used as aliases
+ sql_keywords = {
+ "select",
+ "from",
+ "where",
+ "join",
+ "inner",
+ "left",
+ "right",
+ "outer",
+ "union",
+ "group",
+ "order",
+ "by",
+ "having",
+ "limit",
+ "offset",
+ "insert",
+ "update",
+ "delete",
+ "create",
+ "drop",
+ "alter",
+ "table",
+ "index",
+ "view",
+ "database",
+ "schema",
+ "grant",
+ "revoke",
+ "commit",
+ "rollback",
+ "transaction",
+ "begin",
+ "end",
+ "if",
+ "else",
+ "case",
+ "when",
+ "then",
+ "null",
+ "not",
+ "and",
+ "or",
+ "in",
+ "exists",
+ "between",
+ "like",
+ "is",
+ "as",
+ "on",
+ "using",
+ "distinct",
+ "all",
+ "any",
+ "some",
+ "true",
+ "false",
+ }
+
+ if alias.lower() in sql_keywords:
+ frappe.throw(
+ _("Alias cannot be a SQL keyword: {0}").format(alias),
+ frappe.ValidationError,
+ )
+
+ def _validate_function_field_arg(self, field_name: str):
+ """Validate a field name used as a function argument."""
+ if not isinstance(field_name, str):
+ return # Non-string arguments are allowed (literals)
+
+ # Basic validation - should be a simple field name
+ if not self._is_valid_field_name(field_name):
+ frappe.throw(
+ _("Invalid field name in function: {0}. Only simple field names are allowed.").format(
+ field_name
+ ),
+ frappe.ValidationError,
+ )
+
+ # Check field permission if permissions are being applied
+ if self.engine.apply_permissions and self.engine.doctype:
+ self.engine._check_field_permission(self.engine.doctype, field_name)
diff --git a/frappe/tests/test_query.py b/frappe/tests/test_query.py
index d26a95bde9..4656853a1e 100644
--- a/frappe/tests/test_query.py
+++ b/frappe/tests/test_query.py
@@ -1505,6 +1505,109 @@ class TestQuery(IntegrationTestCase):
frappe.qb.get_query("User", group_by="`name`, `email`").get_sql()
self.assertIn("cannot contain backticks", str(cm.exception))
+ def test_sql_functions_in_fields(self):
+ """Test SQL function support in fields with various syntaxes."""
+
+ # Test simple function without alias
+ query = frappe.qb.get_query("User", fields=["user_type", {"COUNT": "name"}], group_by="user_type")
+ sql = query.get_sql()
+ self.assertIn("COUNT(`name`)", sql)
+ self.assertIn("GROUP BY", sql)
+
+ # Test function with alias
+ query = frappe.qb.get_query(
+ "User", fields=[{"COUNT": "name", "as": "total_users"}], group_by="user_type"
+ )
+ sql = query.get_sql()
+ self.assertIn("COUNT(`name`) `total_users`", sql)
+
+ # Test SUM function with alias
+ query = frappe.qb.get_query(
+ "User", fields=[{"SUM": "enabled", "as": "total_enabled"}], group_by="user_type"
+ )
+ sql = query.get_sql()
+ self.assertIn("SUM(`enabled`) `total_enabled`", sql)
+
+ # Test MAX function
+ query = frappe.qb.get_query(
+ "User", fields=[{"MAX": "creation", "as": "latest_user"}], group_by="user_type"
+ )
+ sql = query.get_sql()
+ self.assertIn("MAX(`creation`) `latest_user`", sql)
+
+ # Test MIN function
+ query = frappe.qb.get_query(
+ "User", fields=[{"MIN": "creation", "as": "earliest_user"}], group_by="user_type"
+ )
+ sql = query.get_sql()
+ self.assertIn("MIN(`creation`) `earliest_user`", sql)
+
+ # Test AVG function
+ query = frappe.qb.get_query(
+ "User", fields=[{"AVG": "enabled", "as": "avg_enabled"}], group_by="user_type"
+ )
+ sql = query.get_sql()
+ self.assertIn("AVG(`enabled`) `avg_enabled`", sql)
+
+ # Test ABS function
+ query = frappe.qb.get_query("User", fields=[{"ABS": "enabled", "as": "abs_enabled"}])
+ sql = query.get_sql()
+ self.assertIn("ABS(`enabled`) `abs_enabled`", sql)
+
+ # Test IFNULL function with two parameters
+ query = frappe.qb.get_query(
+ "User", fields=[{"IFNULL": ["first_name", "'Unknown'"], "as": "safe_name"}]
+ )
+ sql = query.get_sql()
+ self.assertIn("IFNULL(`first_name`,'Unknown') `safe_name`", sql)
+
+ # Test TIMESTAMP function
+ query = frappe.qb.get_query("User", fields=[{"TIMESTAMP": "creation", "as": "ts"}])
+ sql = query.get_sql()
+ self.assertIn("TIMESTAMP(`creation`) `ts`", sql)
+
+ # Test mixed regular fields and function fields
+ query = frappe.qb.get_query(
+ "User",
+ fields=[
+ "user_type",
+ {"COUNT": "name", "as": "total_users"},
+ {"MAX": "creation", "as": "latest_creation"},
+ ],
+ group_by="user_type",
+ )
+ sql = query.get_sql()
+ self.assertIn("`user_type`", sql)
+ self.assertIn("COUNT(`name`) `total_users`", sql)
+ self.assertIn("MAX(`creation`) `latest_creation`", sql)
+
+ # Test NOW function with no arguments
+ query = frappe.qb.get_query("User", fields=[{"NOW": None, "as": "current_time"}])
+ sql = query.get_sql()
+ self.assertIn("NOW() `current_time`", sql)
+
+ # Test CONCAT function (which is supported)
+ query = frappe.qb.get_query(
+ "User", fields=[{"CONCAT": ["first_name", "last_name"], "as": "full_name"}]
+ )
+ sql = query.get_sql()
+ self.assertIn("CONCAT(`first_name`,`last_name`) `full_name`", sql)
+
+ # Test unsupported function validation
+ with self.assertRaises(frappe.ValidationError) as cm:
+ frappe.qb.get_query("User", fields=[{"UNSUPPORTED_FUNC": "name"}]).get_sql()
+ self.assertIn("Unsupported function or invalid field name: UNSUPPORTED_FUNC", str(cm.exception))
+
+ # Test unsupported function that might be confused with child field
+ with self.assertRaises(frappe.ValidationError) as cm:
+ frappe.qb.get_query("User", fields=[{"UPPER": ["first_name"]}]).get_sql()
+ self.assertIn("Unsupported function or invalid field name: UPPER", str(cm.exception))
+
+ # Test SQL injection attempt
+ with self.assertRaises(frappe.ValidationError) as cm:
+ frappe.qb.get_query("User", fields=[{"DROP": "TABLE users"}]).get_sql()
+ self.assertIn("Unsupported function or invalid field name: DROP", str(cm.exception))
+
# This function is used as a permission query condition hook
def test_permission_hook_condition(user):
From b2e081d07656117498ce32ba63a6e3f51556f371 Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Sat, 24 May 2025 02:48:24 +0530
Subject: [PATCH 061/196] chore: update sql function usage
---
frappe/tests/test_db.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/frappe/tests/test_db.py b/frappe/tests/test_db.py
index dade5e2298..91e431ea31 100644
--- a/frappe/tests/test_db.py
+++ b/frappe/tests/test_db.py
@@ -71,11 +71,11 @@ class TestDB(IntegrationTestCase):
self.assertEqual(frappe.db.get_value("User", {"name": ["<", "Adn"]}), "Administrator")
self.assertEqual(frappe.db.get_value("User", {"name": ["<=", "Administrator"]}), "Administrator")
self.assertEqual(
- frappe.db.get_value("User", {}, ["Max(name)"], order_by=None),
+ frappe.db.get_value("User", {}, [{"MAX": "name"}], order_by=None),
frappe.db.sql("SELECT Max(name) FROM tabUser")[0][0],
)
self.assertEqual(
- frappe.db.get_value("User", {}, "Min(name)", order_by=None),
+ frappe.db.get_value("User", {}, {"MIN": "name"}, order_by=None),
frappe.db.sql("SELECT Min(name) FROM tabUser")[0][0],
)
self.assertIn(
@@ -374,7 +374,7 @@ class TestDB(IntegrationTestCase):
random_field,
)
self.assertEqual(
- next(iter(frappe.get_all("ToDo", fields=[f"count(`{random_field}`)"], limit=1)[0])),
+ next(iter(frappe.get_all("ToDo", fields=[{"count": random_field}], limit=1)[0])),
"count" if frappe.conf.db_type == "postgres" else f"count(`{random_field}`)",
)
From ae3f21625502bcb3ae158db2ed7e04e873e1b77d Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Mon, 26 May 2025 11:57:49 +0530
Subject: [PATCH 062/196] chore: update sql function usage
---
frappe/tests/test_db.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/frappe/tests/test_db.py b/frappe/tests/test_db.py
index 91e431ea31..15614e5f8d 100644
--- a/frappe/tests/test_db.py
+++ b/frappe/tests/test_db.py
@@ -75,7 +75,7 @@ class TestDB(IntegrationTestCase):
frappe.db.sql("SELECT Max(name) FROM tabUser")[0][0],
)
self.assertEqual(
- frappe.db.get_value("User", {}, {"MIN": "name"}, order_by=None),
+ frappe.db.get_value("User", {}, [{"MIN": "name"}], order_by=None),
frappe.db.sql("SELECT Min(name) FROM tabUser")[0][0],
)
self.assertIn(
@@ -374,7 +374,7 @@ class TestDB(IntegrationTestCase):
random_field,
)
self.assertEqual(
- next(iter(frappe.get_all("ToDo", fields=[{"count": random_field}], limit=1)[0])),
+ next(iter(frappe.get_all("ToDo", fields=[{"COUNT": random_field}], limit=1)[0])),
"count" if frappe.conf.db_type == "postgres" else f"count(`{random_field}`)",
)
From e6c939c6066cb9f4c6c84d3da0c9212f2d27f329 Mon Sep 17 00:00:00 2001
From: Faris Ansari
Date: Mon, 26 May 2025 12:45:49 +0530
Subject: [PATCH 063/196] fix: revert get_all change
get_all doesn't use get_query
---
frappe/tests/test_db.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/frappe/tests/test_db.py b/frappe/tests/test_db.py
index 15614e5f8d..bcfb271500 100644
--- a/frappe/tests/test_db.py
+++ b/frappe/tests/test_db.py
@@ -374,7 +374,7 @@ class TestDB(IntegrationTestCase):
random_field,
)
self.assertEqual(
- next(iter(frappe.get_all("ToDo", fields=[{"COUNT": random_field}], limit=1)[0])),
+ next(iter(frappe.get_all("ToDo", fields=[f"count(`{random_field}`)"], limit=1)[0])),
"count" if frappe.conf.db_type == "postgres" else f"count(`{random_field}`)",
)
From 32a87f53d621cf409e7bd512b32105c38cb697de Mon Sep 17 00:00:00 2001
From: sokumon
Date: Tue, 13 May 2025 14:36:55 +0530
Subject: [PATCH 064/196] fix: delete newsletter related files
---
frappe/email/doctype/newsletter/__init__.py | 0
frappe/email/doctype/newsletter/exceptions.py | 16 -
frappe/email/doctype/newsletter/newsletter.js | 229 ---------
.../email/doctype/newsletter/newsletter.json | 282 -----------
frappe/email/doctype/newsletter/newsletter.py | 457 ------------------
.../doctype/newsletter/newsletter_list.js | 12 -
.../newsletter/templates/newsletter.html | 65 ---
.../newsletter/templates/newsletter_row.html | 15 -
.../doctype/newsletter/test_newsletter.py | 252 ----------
.../doctype/newsletter_attachment/__init__.py | 0
.../newsletter_attachment.json | 32 --
.../newsletter_attachment.py | 23 -
.../newsletter_email_group/__init__.py | 0
.../newsletter_email_group.json | 43 --
.../newsletter_email_group.py | 23 -
frappe/templates/emails/newsletter.html | 13 -
.../website/doctype/utm_campaign/__init__.py | 0
.../doctype/utm_campaign/test_utm_campaign.py | 9 -
.../doctype/utm_campaign/utm_campaign.js | 8 -
.../doctype/utm_campaign/utm_campaign.json | 83 ----
.../doctype/utm_campaign/utm_campaign.py | 23 -
frappe/website/doctype/utm_medium/__init__.py | 0
.../doctype/utm_medium/test_utm_medium.py | 9 -
.../website/doctype/utm_medium/utm_medium.js | 8 -
.../doctype/utm_medium/utm_medium.json | 72 ---
.../website/doctype/utm_medium/utm_medium.py | 23 -
frappe/website/doctype/utm_source/__init__.py | 0
.../doctype/utm_source/test_utm_source.py | 9 -
.../website/doctype/utm_source/utm_source.js | 8 -
.../doctype/utm_source/utm_source.json | 72 ---
.../website/doctype/utm_source/utm_source.py | 23 -
frappe/www/unsubscribe.html | 121 -----
frappe/www/unsubscribe.py | 48 --
33 files changed, 1978 deletions(-)
delete mode 100644 frappe/email/doctype/newsletter/__init__.py
delete mode 100644 frappe/email/doctype/newsletter/exceptions.py
delete mode 100644 frappe/email/doctype/newsletter/newsletter.js
delete mode 100644 frappe/email/doctype/newsletter/newsletter.json
delete mode 100644 frappe/email/doctype/newsletter/newsletter.py
delete mode 100644 frappe/email/doctype/newsletter/newsletter_list.js
delete mode 100644 frappe/email/doctype/newsletter/templates/newsletter.html
delete mode 100644 frappe/email/doctype/newsletter/templates/newsletter_row.html
delete mode 100644 frappe/email/doctype/newsletter/test_newsletter.py
delete mode 100644 frappe/email/doctype/newsletter_attachment/__init__.py
delete mode 100644 frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
delete mode 100644 frappe/email/doctype/newsletter_attachment/newsletter_attachment.py
delete mode 100644 frappe/email/doctype/newsletter_email_group/__init__.py
delete mode 100644 frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
delete mode 100644 frappe/email/doctype/newsletter_email_group/newsletter_email_group.py
delete mode 100644 frappe/templates/emails/newsletter.html
delete mode 100644 frappe/website/doctype/utm_campaign/__init__.py
delete mode 100644 frappe/website/doctype/utm_campaign/test_utm_campaign.py
delete mode 100644 frappe/website/doctype/utm_campaign/utm_campaign.js
delete mode 100644 frappe/website/doctype/utm_campaign/utm_campaign.json
delete mode 100644 frappe/website/doctype/utm_campaign/utm_campaign.py
delete mode 100644 frappe/website/doctype/utm_medium/__init__.py
delete mode 100644 frappe/website/doctype/utm_medium/test_utm_medium.py
delete mode 100644 frappe/website/doctype/utm_medium/utm_medium.js
delete mode 100644 frappe/website/doctype/utm_medium/utm_medium.json
delete mode 100644 frappe/website/doctype/utm_medium/utm_medium.py
delete mode 100644 frappe/website/doctype/utm_source/__init__.py
delete mode 100644 frappe/website/doctype/utm_source/test_utm_source.py
delete mode 100644 frappe/website/doctype/utm_source/utm_source.js
delete mode 100644 frappe/website/doctype/utm_source/utm_source.json
delete mode 100644 frappe/website/doctype/utm_source/utm_source.py
delete mode 100644 frappe/www/unsubscribe.html
delete mode 100644 frappe/www/unsubscribe.py
diff --git a/frappe/email/doctype/newsletter/__init__.py b/frappe/email/doctype/newsletter/__init__.py
deleted file mode 100644
index e69de29bb2..0000000000
diff --git a/frappe/email/doctype/newsletter/exceptions.py b/frappe/email/doctype/newsletter/exceptions.py
deleted file mode 100644
index ccce54c957..0000000000
--- a/frappe/email/doctype/newsletter/exceptions.py
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors
-# MIT License. See LICENSE
-
-from frappe.exceptions import ValidationError
-
-
-class NewsletterAlreadySentError(ValidationError):
- pass
-
-
-class NoRecipientFoundError(ValidationError):
- pass
-
-
-class NewsletterNotSavedError(ValidationError):
- pass
diff --git a/frappe/email/doctype/newsletter/newsletter.js b/frappe/email/doctype/newsletter/newsletter.js
deleted file mode 100644
index 385b31dfab..0000000000
--- a/frappe/email/doctype/newsletter/newsletter.js
+++ /dev/null
@@ -1,229 +0,0 @@
-// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
-// License: GNU General Public License v3. See license.txt
-
-frappe.ui.form.on("Newsletter", {
- refresh(frm) {
- let doc = frm.doc;
- let can_write = frappe.boot.user.can_write.includes(doc.doctype);
- if (!frm.is_new() && !frm.is_dirty() && !doc.email_sent && can_write) {
- frm.add_custom_button(
- __("Send a test email"),
- () => {
- frm.events.send_test_email(frm);
- },
- __("Preview")
- );
-
- frm.add_custom_button(
- __("Check broken links"),
- () => {
- frm.dashboard.set_headline(__("Checking broken links..."));
- frm.call("find_broken_links").then((r) => {
- frm.dashboard.set_headline("");
- let links = r.message;
- if (links && links.length) {
- let html =
- "" +
- links.map((link) => `- ${link}
`).join("") +
- "
";
- frm.dashboard.set_headline(
- __("Following links are broken in the email content: {0}", [html])
- );
- } else {
- frm.dashboard.set_headline(
- __("No broken links found in the email content")
- );
- setTimeout(() => {
- frm.dashboard.set_headline("");
- }, 3000);
- }
- });
- },
- __("Preview")
- );
-
- frm.add_custom_button(
- __("Send now"),
- () => {
- if (frm.doc.schedule_send) {
- frappe.confirm(
- __(
- "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
- ),
- function () {
- frm.events.send_emails(frm);
- }
- );
- return;
- }
- frappe.confirm(
- __("Are you sure you want to send this newsletter now?"),
- () => {
- frm.events.send_emails(frm);
- }
- );
- },
- __("Send")
- );
-
- frm.add_custom_button(
- __("Schedule sending"),
- () => {
- frm.events.schedule_send_dialog(frm);
- },
- __("Send")
- );
- }
-
- frm.events.update_sending_status(frm);
-
- if (frm.is_new() && !doc.sender_email) {
- let { fullname, email } = frappe.user_info(doc.owner);
- frm.set_value("sender_email", email);
- frm.set_value("sender_name", fullname);
- }
-
- frm.trigger("update_schedule_message");
- },
-
- send_emails(frm) {
- frappe.dom.freeze(__("Queuing emails..."));
- frm.call("send_emails").then(() => {
- frm.refresh();
- frappe.dom.unfreeze();
- frappe.show_alert(
- __("Queued {0} emails", [frappe.utils.shorten_number(frm.doc.total_recipients)])
- );
- });
- },
-
- schedule_send_dialog(frm) {
- let hours = frappe.utils.range(24);
- let time_slots = hours.map((hour) => {
- return `${(hour + "").padStart(2, "0")}:00`;
- });
- let d = new frappe.ui.Dialog({
- title: __("Schedule Newsletter"),
- fields: [
- {
- label: __("Date"),
- fieldname: "date",
- fieldtype: "Date",
- options: {
- minDate: new Date(),
- },
- reqd: true,
- },
- {
- label: __("Time"),
- fieldname: "time",
- fieldtype: "Select",
- options: time_slots,
- reqd: true,
- },
- ],
- primary_action_label: __("Schedule"),
- primary_action({ date, time }) {
- frm.set_value("schedule_sending", 1);
- frm.set_value("schedule_send", `${date} ${time}:00`);
- d.hide();
- frm.save();
- },
- secondary_action_label: __("Cancel Scheduling"),
- secondary_action() {
- frm.set_value("schedule_sending", 0);
- frm.set_value("schedule_send", "");
- d.hide();
- frm.save();
- },
- });
- if (frm.doc.schedule_sending) {
- let parts = frm.doc.schedule_send.split(" ");
- if (parts.length === 2) {
- let [date, time] = parts;
- d.set_value("date", date);
- d.set_value("time", time.slice(0, 5));
- }
- }
- d.show();
- },
-
- send_test_email(frm) {
- let d = new frappe.ui.Dialog({
- title: __("Send Test Email"),
- fields: [
- {
- label: __("Email"),
- fieldname: "email",
- fieldtype: "Data",
- options: "Email",
- },
- ],
- primary_action_label: __("Send"),
- primary_action({ email }) {
- d.get_primary_btn().text(__("Sending...")).prop("disabled", true);
- frm.call("send_test_email", { email }).then(() => {
- d.get_primary_btn().text(__("Send again")).prop("disabled", false);
- });
- },
- });
- d.show();
- },
-
- async update_sending_status(frm) {
- if (frm.doc.email_sent && frm.$wrapper.is(":visible") && !frm.waiting_for_request) {
- frm.waiting_for_request = true;
- let res = await frm.call("get_sending_status");
- frm.waiting_for_request = false;
- let stats = res.message;
- stats && frm.events.update_sending_progress(frm, stats);
- if (
- stats.sent + stats.error >= frm.doc.total_recipients ||
- (!stats.total && !stats.emails_queued)
- ) {
- frm.sending_status && clearInterval(frm.sending_status);
- frm.sending_status = null;
- return;
- }
- }
-
- if (frm.sending_status) return;
- frm.sending_status = setInterval(() => frm.events.update_sending_status(frm), 5000);
- },
-
- update_sending_progress(frm, stats) {
- if (stats.sent + stats.error >= frm.doc.total_recipients || !frm.doc.email_sent) {
- frm.doc.email_sent && frm.page.set_indicator(__("Sent"), "green");
- frm.dashboard.hide_progress();
- return;
- }
- if (stats.total) {
- frm.page.set_indicator(__("Sending"), "blue");
- frm.dashboard.show_progress(
- __("Sending emails"),
- (stats.sent * 100) / frm.doc.total_recipients,
- __("{0} of {1} sent", [stats.sent, frm.doc.total_recipients])
- );
- } else if (stats.emails_queued) {
- frm.page.set_indicator(__("Queued"), "blue");
- }
- },
-
- on_hide(frm) {
- if (frm.sending_status) {
- clearInterval(frm.sending_status);
- frm.sending_status = null;
- }
- },
-
- update_schedule_message(frm) {
- if (!frm.doc.email_sent && frm.doc.schedule_send) {
- let datetime = frappe.datetime.global_date_format(frm.doc.schedule_send);
- frm.dashboard.set_headline_alert(
- __("This newsletter is scheduled to be sent on {0}", [datetime.bold()])
- );
- } else {
- frm.dashboard.clear_headline();
- }
- },
-});
diff --git a/frappe/email/doctype/newsletter/newsletter.json b/frappe/email/doctype/newsletter/newsletter.json
deleted file mode 100644
index 8def40c232..0000000000
--- a/frappe/email/doctype/newsletter/newsletter.json
+++ /dev/null
@@ -1,282 +0,0 @@
-{
- "actions": [],
- "allow_guest_to_view": 1,
- "allow_rename": 1,
- "creation": "2013-01-10 16:34:31",
- "description": "Create and send emails to a specific group of subscribers periodically.",
- "doctype": "DocType",
- "document_type": "Other",
- "engine": "InnoDB",
- "field_order": [
- "status_section",
- "email_sent_at",
- "column_break_3",
- "total_recipients",
- "column_break_12",
- "total_views",
- "email_sent",
- "from_section",
- "sender_name",
- "column_break_5",
- "sender_email",
- "column_break_7",
- "send_from",
- "recipients",
- "email_group",
- "subject_section",
- "subject",
- "newsletter_content",
- "content_type",
- "message",
- "message_md",
- "message_html",
- "campaign",
- "attachments",
- "send_unsubscribe_link",
- "send_webview_link",
- "schedule_settings_section",
- "scheduled_to_send",
- "schedule_sending",
- "schedule_send",
- "publish_as_a_web_page_section",
- "published",
- "route"
- ],
- "fields": [
- {
- "fieldname": "email_group",
- "fieldtype": "Table",
- "in_standard_filter": 1,
- "label": "Audience",
- "options": "Newsletter Email Group",
- "reqd": 1
- },
- {
- "fieldname": "send_from",
- "fieldtype": "Data",
- "ignore_xss_filter": 1,
- "label": "Sender",
- "read_only": 1
- },
- {
- "default": "0",
- "fieldname": "email_sent",
- "fieldtype": "Check",
- "hidden": 1,
- "label": "Email Sent",
- "no_copy": 1,
- "read_only": 1
- },
- {
- "fieldname": "newsletter_content",
- "fieldtype": "Section Break",
- "label": "Content"
- },
- {
- "fieldname": "subject",
- "fieldtype": "Small Text",
- "in_global_search": 1,
- "in_list_view": 1,
- "label": "Subject",
- "reqd": 1
- },
- {
- "depends_on": "eval: doc.content_type === 'Rich Text'",
- "fieldname": "message",
- "fieldtype": "Text Editor",
- "in_list_view": 1,
- "label": "Message",
- "mandatory_depends_on": "eval: doc.content_type === 'Rich Text'"
- },
- {
- "default": "1",
- "fieldname": "send_unsubscribe_link",
- "fieldtype": "Check",
- "label": "Send Unsubscribe Link"
- },
- {
- "default": "0",
- "fieldname": "published",
- "fieldtype": "Check",
- "label": "Published"
- },
- {
- "depends_on": "published",
- "fieldname": "route",
- "fieldtype": "Data",
- "label": "Route",
- "read_only": 1
- },
- {
- "fieldname": "scheduled_to_send",
- "fieldtype": "Int",
- "hidden": 1,
- "label": "Scheduled To Send"
- },
- {
- "fieldname": "recipients",
- "fieldtype": "Section Break",
- "label": "To"
- },
- {
- "depends_on": "eval: doc.schedule_sending",
- "fieldname": "schedule_send",
- "fieldtype": "Datetime",
- "label": "Send Email At",
- "read_only": 1,
- "read_only_depends_on": "eval: doc.email_sent"
- },
- {
- "fieldname": "content_type",
- "fieldtype": "Select",
- "label": "Content Type",
- "options": "Rich Text\nMarkdown\nHTML"
- },
- {
- "depends_on": "eval:doc.content_type === 'Markdown'",
- "fieldname": "message_md",
- "fieldtype": "Markdown Editor",
- "label": "Message (Markdown)",
- "mandatory_depends_on": "eval:doc.content_type === 'Markdown'"
- },
- {
- "depends_on": "eval:doc.content_type === 'HTML'",
- "fieldname": "message_html",
- "fieldtype": "HTML Editor",
- "label": "Message (HTML)",
- "mandatory_depends_on": "eval:doc.content_type === 'HTML'"
- },
- {
- "default": "0",
- "fieldname": "schedule_sending",
- "fieldtype": "Check",
- "label": "Schedule sending at a later time",
- "read_only_depends_on": "eval: doc.email_sent"
- },
- {
- "default": "0",
- "fieldname": "send_webview_link",
- "fieldtype": "Check",
- "label": "Send Web View Link"
- },
- {
- "fieldname": "from_section",
- "fieldtype": "Section Break",
- "label": "From"
- },
- {
- "fieldname": "sender_name",
- "fieldtype": "Data",
- "label": "Sender Name"
- },
- {
- "fieldname": "sender_email",
- "fieldtype": "Data",
- "label": "Sender Email",
- "options": "Email",
- "reqd": 1
- },
- {
- "fieldname": "column_break_5",
- "fieldtype": "Column Break"
- },
- {
- "fieldname": "column_break_7",
- "fieldtype": "Column Break"
- },
- {
- "fieldname": "subject_section",
- "fieldtype": "Section Break",
- "label": "Subject"
- },
- {
- "fieldname": "publish_as_a_web_page_section",
- "fieldtype": "Section Break",
- "label": "Publish as a web page"
- },
- {
- "depends_on": "schedule_sending",
- "fieldname": "schedule_settings_section",
- "fieldtype": "Section Break",
- "label": "Scheduled Sending"
- },
- {
- "fieldname": "attachments",
- "fieldtype": "Table",
- "label": "Attachments",
- "options": "Newsletter Attachment"
- },
- {
- "fieldname": "email_sent_at",
- "fieldtype": "Datetime",
- "label": "Email Sent At",
- "read_only": 1
- },
- {
- "fieldname": "total_recipients",
- "fieldtype": "Int",
- "label": "Total Recipients",
- "read_only": 1
- },
- {
- "depends_on": "email_sent",
- "fieldname": "status_section",
- "fieldtype": "Section Break",
- "label": "Status"
- },
- {
- "fieldname": "column_break_12",
- "fieldtype": "Column Break"
- },
- {
- "fieldname": "column_break_3",
- "fieldtype": "Column Break"
- },
- {
- "default": "0",
- "fieldname": "total_views",
- "fieldtype": "Int",
- "label": "Total Views",
- "no_copy": 1,
- "read_only": 1
- },
- {
- "fieldname": "campaign",
- "fieldtype": "Link",
- "label": "Campaign",
- "options": "UTM Campaign"
- }
- ],
- "has_web_view": 1,
- "icon": "fa fa-envelope",
- "idx": 1,
- "index_web_pages_for_search": 1,
- "is_published_field": "published",
- "links": [],
- "make_attachments_public": 1,
- "modified": "2024-11-12 12:41:02.569631",
- "modified_by": "Administrator",
- "module": "Email",
- "name": "Newsletter",
- "owner": "Administrator",
- "permissions": [
- {
- "create": 1,
- "delete": 1,
- "email": 1,
- "export": 1,
- "print": 1,
- "read": 1,
- "report": 1,
- "role": "Newsletter Manager",
- "share": 1,
- "write": 1
- }
- ],
- "route": "newsletters",
- "sort_field": "creation",
- "sort_order": "ASC",
- "states": [],
- "title_field": "subject",
- "track_changes": 1
-}
\ No newline at end of file
diff --git a/frappe/email/doctype/newsletter/newsletter.py b/frappe/email/doctype/newsletter/newsletter.py
deleted file mode 100644
index 8f4702ff28..0000000000
--- a/frappe/email/doctype/newsletter/newsletter.py
+++ /dev/null
@@ -1,457 +0,0 @@
-# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors
-# MIT License. See LICENSE
-
-
-import frappe
-import frappe.utils
-from frappe import _
-from frappe.email.doctype.email_group.email_group import add_subscribers
-from frappe.rate_limiter import rate_limit
-from frappe.utils.safe_exec import is_job_queued
-from frappe.utils.verified_command import get_signed_params, verify_request
-from frappe.website.website_generator import WebsiteGenerator
-
-from .exceptions import NewsletterAlreadySentError, NewsletterNotSavedError, NoRecipientFoundError
-
-
-class Newsletter(WebsiteGenerator):
- # begin: auto-generated types
- # This code is auto-generated. Do not modify anything in this block.
-
- from typing import TYPE_CHECKING
-
- if TYPE_CHECKING:
- from frappe.email.doctype.newsletter_attachment.newsletter_attachment import NewsletterAttachment
- from frappe.email.doctype.newsletter_email_group.newsletter_email_group import NewsletterEmailGroup
- from frappe.types import DF
-
- attachments: DF.Table[NewsletterAttachment]
- campaign: DF.Link | None
- content_type: DF.Literal["Rich Text", "Markdown", "HTML"]
- email_group: DF.Table[NewsletterEmailGroup]
- email_sent: DF.Check
- email_sent_at: DF.Datetime | None
- message: DF.TextEditor | None
- message_html: DF.HTMLEditor | None
- message_md: DF.MarkdownEditor | None
- published: DF.Check
- route: DF.Data | None
- schedule_send: DF.Datetime | None
- schedule_sending: DF.Check
- scheduled_to_send: DF.Int
- send_from: DF.Data | None
- send_unsubscribe_link: DF.Check
- send_webview_link: DF.Check
- sender_email: DF.Data
- sender_name: DF.Data | None
- subject: DF.SmallText
- total_recipients: DF.Int
- total_views: DF.Int
- # end: auto-generated types
-
- def validate(self):
- self.route = f"newsletters/{self.name}"
- self.validate_sender_address()
- self.validate_publishing()
- self.validate_scheduling_date()
-
- @property
- def newsletter_recipients(self) -> list[str]:
- if getattr(self, "_recipients", None) is None:
- self._recipients = self.get_recipients()
- return self._recipients
-
- @frappe.whitelist()
- def get_sending_status(self):
- count_by_status = frappe.get_all(
- "Email Queue",
- filters={"reference_doctype": self.doctype, "reference_name": self.name},
- fields=["status", "count(name) as count"],
- group_by="status",
- order_by="status",
- )
- sent = 0
- error = 0
- total = 0
- for row in count_by_status:
- if row.status == "Sent":
- sent = row.count
- elif row.status == "Error":
- error = row.count
- total += row.count
- emails_queued = is_job_queued(
- job_name=frappe.utils.get_job_name("send_bulk_emails_for", self.doctype, self.name),
- queue="long",
- )
- return {"sent": sent, "error": error, "total": total, "emails_queued": emails_queued}
-
- @frappe.whitelist()
- def send_test_email(self, email):
- test_emails = frappe.utils.validate_email_address(email, throw=True)
- self.send_newsletter(emails=test_emails, test_email=True)
- frappe.msgprint(_("Test email sent to {0}").format(email), alert=True)
-
- @frappe.whitelist()
- def find_broken_links(self):
- import requests
- from bs4 import BeautifulSoup
-
- html = self.get_message()
- soup = BeautifulSoup(html, "html.parser")
- links = soup.find_all("a")
- images = soup.find_all("img")
- broken_links = []
- for el in links + images:
- url = el.attrs.get("href") or el.attrs.get("src")
- try:
- response = requests.head(url, verify=False, timeout=5)
- if response.status_code >= 400:
- broken_links.append(url)
- except Exception:
- broken_links.append(url)
- return broken_links
-
- @frappe.whitelist()
- def send_emails(self):
- """queue sending emails to recipients"""
- self.schedule_sending = False
- self.schedule_send = None
- self.queue_all()
-
- def validate_send(self):
- """Validate if Newsletter can be sent."""
- self.validate_newsletter_status()
- self.validate_newsletter_recipients()
-
- def validate_newsletter_status(self):
- if self.email_sent:
- frappe.throw(_("Newsletter has already been sent"), exc=NewsletterAlreadySentError)
-
- if self.get("__islocal"):
- frappe.throw(_("Please save the Newsletter before sending"), exc=NewsletterNotSavedError)
-
- def validate_newsletter_recipients(self):
- if not self.newsletter_recipients:
- frappe.throw(_("Newsletter should have atleast one recipient"), exc=NoRecipientFoundError)
-
- def validate_sender_address(self):
- """Validate self.send_from is a valid email address or not."""
- if self.sender_email:
- frappe.utils.validate_email_address(self.sender_email, throw=True)
- self.send_from = (
- f"{self.sender_name} <{self.sender_email}>" if self.sender_name else self.sender_email
- )
-
- def validate_publishing(self):
- if self.send_webview_link and not self.published:
- frappe.throw(_("Newsletter must be published to send webview link in email"))
-
- def validate_scheduling_date(self):
- if getattr(frappe.flags, "is_scheduler_running", False):
- return
-
- if (
- self.schedule_sending
- and frappe.utils.get_datetime(self.schedule_send) < frappe.utils.now_datetime()
- ):
- frappe.throw(_("Past dates are not allowed for Scheduling."))
-
- def get_linked_email_queue(self) -> list[str]:
- """Get list of email queue linked to this newsletter."""
- return frappe.get_all(
- "Email Queue",
- filters={
- "reference_doctype": self.doctype,
- "reference_name": self.name,
- },
- pluck="name",
- )
-
- def get_queued_recipients(self) -> list[str]:
- """Recipients who have already been queued for receiving the newsletter."""
- return frappe.get_all(
- "Email Queue Recipient",
- filters={
- "parent": ("in", self.get_linked_email_queue()),
- },
- pluck="recipient",
- )
-
- def get_pending_recipients(self) -> list[str]:
- """Get list of pending recipients of the newsletter. These
- recipients may not have receive the newsletter in the previous iteration.
- """
-
- queued_recipients = set(self.get_queued_recipients())
- return [x for x in self.newsletter_recipients if x not in queued_recipients]
-
- def queue_all(self):
- """Queue Newsletter to all the recipients generated from the `Email Group` table"""
- self.validate()
- self.validate_send()
-
- recipients = self.get_pending_recipients()
- self.send_newsletter(emails=recipients)
-
- self.email_sent = True
- self.email_sent_at = frappe.utils.now()
- self.total_recipients = len(recipients)
- self.save()
-
- def get_newsletter_attachments(self) -> list[dict[str, str]]:
- """Get list of attachments on current Newsletter"""
- return [{"file_url": row.attachment} for row in self.attachments]
-
- def send_newsletter(self, emails: list[str], test_email: bool = False):
- """Trigger email generation for `emails` and add it in Email Queue."""
- attachments = self.get_newsletter_attachments()
- sender = self.send_from or frappe.utils.get_formatted_email(self.owner)
- args = self.as_dict()
- args["message"] = self.get_message(medium="email")
-
- is_auto_commit_set = bool(frappe.db.auto_commit_on_many_writes)
- frappe.db.auto_commit_on_many_writes = not frappe.in_test
-
- frappe.sendmail(
- subject=self.subject,
- sender=sender,
- recipients=emails,
- attachments=attachments,
- template="newsletter",
- add_unsubscribe_link=self.send_unsubscribe_link,
- unsubscribe_method="/unsubscribe",
- reference_doctype=self.doctype,
- reference_name=self.name,
- queue_separately=True,
- send_priority=0,
- args=args,
- email_read_tracker_url=None
- if test_email
- else "/api/method/frappe.email.doctype.newsletter.newsletter.newsletter_email_read",
- )
-
- frappe.db.auto_commit_on_many_writes = is_auto_commit_set
-
- def get_message(self, medium=None) -> str:
- message = self.message
- if self.content_type == "Markdown":
- message = frappe.utils.md_to_html(self.message_md)
- if self.content_type == "HTML":
- message = self.message_html
-
- html = frappe.render_template(message, {"doc": self.as_dict()})
-
- return self.add_source(html, medium=medium)
-
- def add_source(self, html: str, medium="None") -> str:
- """Add source to the site links in the newsletter content."""
- from bs4 import BeautifulSoup
-
- soup = BeautifulSoup(html, "html.parser")
-
- links = soup.find_all("a")
- for link in links:
- href = link.get("href")
- if href and not href.startswith("#"):
- if not frappe.utils.is_site_link(href):
- continue
- new_href = frappe.utils.add_trackers_to_url(
- href, source="Newsletter", campaign=self.campaign, medium=medium
- )
- link["href"] = new_href
-
- return str(soup)
-
- def get_recipients(self) -> list[str]:
- """Get recipients from Email Group"""
- emails = frappe.get_all(
- "Email Group Member",
- filters={"unsubscribed": 0, "email_group": ("in", self.get_email_groups())},
- pluck="email",
- )
- return list(set(emails))
-
- def get_email_groups(self) -> list[str]:
- # wondering why the 'or'? i can't figure out why both aren't equivalent - @gavin
- return [x.email_group for x in self.email_group] or frappe.get_all(
- "Newsletter Email Group",
- filters={"parent": self.name, "parenttype": "Newsletter"},
- pluck="email_group",
- )
-
- def get_attachments(self) -> list[dict[str, str]]:
- return frappe.get_all(
- "File",
- fields=["name", "file_name", "file_url", "is_private"],
- filters={
- "attached_to_name": self.name,
- "attached_to_doctype": "Newsletter",
- "is_private": 0,
- },
- )
-
-
-def confirmed_unsubscribe(email, group):
- """unsubscribe the email(user) from the mailing list(email_group)"""
- frappe.flags.ignore_permissions = True
- doc = frappe.get_doc("Email Group Member", {"email": email, "email_group": group})
- if not doc.unsubscribed:
- doc.unsubscribed = 1
- doc.save(ignore_permissions=True)
-
-
-@frappe.whitelist(allow_guest=True)
-@rate_limit(limit=10, seconds=60 * 60)
-def subscribe(email, email_group=None):
- """API endpoint to subscribe an email to a particular email group. Triggers a confirmation email."""
-
- if email_group is None:
- email_group = get_default_email_group()
-
- # build subscription confirmation URL
- api_endpoint = frappe.utils.get_url(
- "/api/method/frappe.email.doctype.newsletter.newsletter.confirm_subscription"
- )
- signed_params = get_signed_params({"email": email, "email_group": email_group})
- confirm_subscription_url = f"{api_endpoint}?{signed_params}"
-
- # fetch custom template if available
- email_confirmation_template = frappe.db.get_value(
- "Email Group", email_group, "confirmation_email_template"
- )
-
- # build email and send
- if email_confirmation_template:
- args = {"email": email, "confirmation_url": confirm_subscription_url, "email_group": email_group}
- email_template = frappe.get_doc("Email Template", email_confirmation_template)
- email_subject = email_template.subject
- content = frappe.render_template(email_template.response, args)
- else:
- email_subject = _("Confirm Your Email")
- translatable_content = (
- _("Thank you for your interest in subscribing to our updates"),
- _("Please verify your Email Address"),
- confirm_subscription_url,
- _("Click here to verify"),
- )
- content = """
- {}. {}.
-
- """.format(*translatable_content)
-
- frappe.sendmail(
- email,
- subject=email_subject,
- content=content,
- )
-
-
-@frappe.whitelist(allow_guest=True)
-def confirm_subscription(email, email_group=None):
- """API endpoint to confirm email subscription.
- This endpoint is called when user clicks on the link sent to their mail.
- """
- if not verify_request():
- return
-
- if email_group is None:
- email_group = get_default_email_group()
-
- try:
- group = frappe.get_doc("Email Group", email_group)
- except frappe.DoesNotExistError:
- group = frappe.get_doc({"doctype": "Email Group", "title": email_group}).insert(
- ignore_permissions=True
- )
-
- frappe.flags.ignore_permissions = True
-
- add_subscribers(email_group, email)
- frappe.db.commit()
-
- welcome_url = group.get_welcome_url(email)
-
- if welcome_url:
- frappe.local.response["type"] = "redirect"
- frappe.local.response["location"] = welcome_url
- else:
- frappe.respond_as_web_page(
- _("Confirmed"),
- _("{0} has been successfully added to the Email Group.").format(email),
- indicator_color="green",
- )
-
-
-def get_list_context(context=None):
- context.update(
- {
- "show_search": True,
- "no_breadcrumbs": True,
- "title": _("Newsletters"),
- "filters": {"published": 1},
- "row_template": "email/doctype/newsletter/templates/newsletter_row.html",
- }
- )
-
-
-def send_scheduled_email():
- """Send scheduled newsletter to the recipients."""
- frappe.flags.is_scheduler_running = True
-
- scheduled_newsletter = frappe.get_all(
- "Newsletter",
- filters={
- "schedule_send": ("<=", frappe.utils.now_datetime()),
- "email_sent": False,
- "schedule_sending": True,
- },
- ignore_ifnull=True,
- pluck="name",
- )
-
- for newsletter_name in scheduled_newsletter:
- try:
- newsletter = frappe.get_doc("Newsletter", newsletter_name)
- newsletter.queue_all()
-
- except Exception:
- frappe.db.rollback()
-
- # wasn't able to send emails :(
- frappe.db.set_value("Newsletter", newsletter_name, "email_sent", 0)
- newsletter.log_error("Failed to send newsletter")
-
- if not frappe.in_test:
- frappe.db.commit()
-
- frappe.flags.is_scheduler_running = False
-
-
-@frappe.whitelist(allow_guest=True)
-def newsletter_email_read(recipient_email=None, reference_doctype=None, reference_name=None):
- if not (recipient_email and reference_name):
- return
- verify_request()
- try:
- doc = frappe.get_cached_doc("Newsletter", reference_name)
- if doc.add_viewed(recipient_email, force=True, unique_views=True):
- newsletter = frappe.qb.DocType("Newsletter")
- (
- frappe.qb.update(newsletter)
- .set(newsletter.total_views, newsletter.total_views + 1)
- .where(newsletter.name == doc.name)
- ).run()
-
- except Exception:
- frappe.log_error(
- title=f"Unable to mark as viewed for {recipient_email}",
- reference_doctype="Newsletter",
- reference_name=reference_name,
- )
-
- finally:
- frappe.response.update(frappe.utils.get_imaginary_pixel_response())
-
-
-def get_default_email_group():
- return _("Website", lang=frappe.db.get_default("language"))
diff --git a/frappe/email/doctype/newsletter/newsletter_list.js b/frappe/email/doctype/newsletter/newsletter_list.js
deleted file mode 100644
index 71e9423b7e..0000000000
--- a/frappe/email/doctype/newsletter/newsletter_list.js
+++ /dev/null
@@ -1,12 +0,0 @@
-frappe.listview_settings["Newsletter"] = {
- add_fields: ["subject", "email_sent", "schedule_sending"],
- get_indicator: function (doc) {
- if (doc.email_sent) {
- return [__("Sent"), "green", "email_sent,=,1"];
- } else if (doc.schedule_sending) {
- return [__("Scheduled"), "purple", "email_sent,=,0|schedule_sending,=,1"];
- } else {
- return [__("Not Sent"), "gray", "email_sent,=,0"];
- }
- },
-};
diff --git a/frappe/email/doctype/newsletter/templates/newsletter.html b/frappe/email/doctype/newsletter/templates/newsletter.html
deleted file mode 100644
index 05f3560648..0000000000
--- a/frappe/email/doctype/newsletter/templates/newsletter.html
+++ /dev/null
@@ -1,65 +0,0 @@
-{% extends "templates/web.html" %}
-
-{% block title %} {{ doc.subject }} {% endblock %}
-
-{% block page_content %}
-
-
-
-
-
- {{ doc.subject }}
-
- {{ frappe.format_date(doc.modified) }}
-
-
-
- {{ doc.get_message(medium="web_page") }}
-
-
-
- {% if doc.attachments %}
-
-
-
- {{ _("Attachments") }}
-
-
-
-
- {% for attachment in doc.attachments %}
-
- {% endfor %}
-
-
-
- {% endif %}
-
-
-{% endblock %}
\ No newline at end of file
diff --git a/frappe/email/doctype/newsletter/templates/newsletter_row.html b/frappe/email/doctype/newsletter/templates/newsletter_row.html
deleted file mode 100644
index 503fadb1ea..0000000000
--- a/frappe/email/doctype/newsletter/templates/newsletter_row.html
+++ /dev/null
@@ -1,15 +0,0 @@
-
\ No newline at end of file
diff --git a/frappe/email/doctype/newsletter/test_newsletter.py b/frappe/email/doctype/newsletter/test_newsletter.py
deleted file mode 100644
index c7ee147410..0000000000
--- a/frappe/email/doctype/newsletter/test_newsletter.py
+++ /dev/null
@@ -1,252 +0,0 @@
-# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors
-# MIT License. See LICENSE
-
-from random import choice
-from unittest.mock import MagicMock, PropertyMock, patch
-
-import frappe
-from frappe.email.doctype.newsletter.exceptions import (
- NewsletterAlreadySentError,
- NoRecipientFoundError,
-)
-from frappe.email.doctype.newsletter.newsletter import (
- Newsletter,
- confirmed_unsubscribe,
- send_scheduled_email,
-)
-from frappe.email.queue import flush
-from frappe.tests import IntegrationTestCase
-from frappe.utils import add_days, getdate
-
-emails = [
- "test_subscriber1@example.com",
- "test_subscriber2@example.com",
- "test_subscriber3@example.com",
- "test1@example.com",
-]
-newsletters = []
-
-
-def get_dotted_path(obj: type) -> str:
- klass = obj.__class__
- module = klass.__module__
- if module == "builtins":
- return klass.__qualname__ # avoid outputs like 'builtins.str'
- return f"{module}.{klass.__qualname__}"
-
-
-class TestNewsletterMixin:
- def setUp(self):
- frappe.set_user("Administrator")
- self.setup_email_group()
-
- def tearDown(self):
- frappe.set_user("Administrator")
- for newsletter in newsletters:
- frappe.db.delete(
- "Email Queue",
- {
- "reference_doctype": "Newsletter",
- "reference_name": newsletter,
- },
- )
- frappe.delete_doc("Newsletter", newsletter)
- frappe.db.delete("Newsletter Email Group", {"parent": newsletter})
- newsletters.remove(newsletter)
-
- def setup_email_group(self):
- if not frappe.db.exists("Email Group", "_Test Email Group"):
- frappe.get_doc({"doctype": "Email Group", "title": "_Test Email Group"}).insert()
-
- for email in emails:
- doctype = "Email Group Member"
- email_filters = {"email": email, "email_group": "_Test Email Group"}
-
- savepoint = "setup_email_group"
- frappe.db.savepoint(savepoint)
-
- try:
- frappe.get_doc(
- {
- "doctype": doctype,
- **email_filters,
- }
- ).insert(ignore_if_duplicate=True)
- except Exception:
- frappe.db.rollback(save_point=savepoint)
- frappe.db.set_value(doctype, email_filters, "unsubscribed", 0)
-
- frappe.db.release_savepoint(savepoint)
-
- def send_newsletter(self, published=0, schedule_send=None) -> str | None:
- frappe.db.delete("Email Queue")
- frappe.db.delete("Email Queue Recipient")
- frappe.db.delete("Newsletter")
-
- newsletter_options = {
- "published": published,
- "schedule_sending": bool(schedule_send),
- "schedule_send": schedule_send,
- }
- newsletter = self.get_newsletter(**newsletter_options)
-
- if schedule_send:
- send_scheduled_email()
- else:
- newsletter.send_emails()
- return newsletter.name
-
- return newsletter
-
- @staticmethod
- def get_newsletter(**kwargs) -> "Newsletter":
- """Generate and return Newsletter object"""
- doctype = "Newsletter"
- newsletter_content = {
- "subject": "_Test Newsletter",
- "sender_name": "Test Sender",
- "sender_email": "test_sender@example.com",
- "content_type": "Rich Text",
- "message": "Testing my news.",
- }
- similar_newsletters = frappe.get_all(doctype, newsletter_content, pluck="name")
-
- for similar_newsletter in similar_newsletters:
- frappe.delete_doc(doctype, similar_newsletter)
-
- newsletter = frappe.get_doc({"doctype": doctype, **newsletter_content, **kwargs})
- newsletter.append("email_group", {"email_group": "_Test Email Group"})
- newsletter.save(ignore_permissions=True)
- newsletter.reload()
- newsletters.append(newsletter.name)
-
- attached_files = frappe.get_all(
- "File",
- {
- "attached_to_doctype": newsletter.doctype,
- "attached_to_name": newsletter.name,
- },
- pluck="name",
- )
- for file in attached_files:
- frappe.delete_doc("File", file)
-
- return newsletter
-
-
-class TestNewsletter(TestNewsletterMixin, IntegrationTestCase):
- def test_send(self):
- self.send_newsletter()
-
- email_queue_list = [frappe.get_doc("Email Queue", e.name) for e in frappe.get_all("Email Queue")]
- self.assertEqual(len(email_queue_list), 4)
-
- recipients = {e.recipients[0].recipient for e in email_queue_list}
- self.assertTrue(set(emails).issubset(recipients))
-
- def test_unsubscribe(self):
- name = self.send_newsletter()
- to_unsubscribe = choice(emails)
- group = frappe.get_all("Newsletter Email Group", filters={"parent": name}, fields=["email_group"])
-
- flush()
- confirmed_unsubscribe(to_unsubscribe, group[0].email_group)
-
- name = self.send_newsletter()
- email_queue_list = [frappe.get_doc("Email Queue", e.name) for e in frappe.get_all("Email Queue")]
- self.assertEqual(len(email_queue_list), 3)
- recipients = [e.recipients[0].recipient for e in email_queue_list]
-
- for email in emails:
- if email != to_unsubscribe:
- self.assertTrue(email in recipients)
-
- def test_schedule_send(self):
- newsletter = self.send_newsletter(schedule_send=add_days(getdate(), 1))
- newsletter.db_set("schedule_send", add_days(getdate(), -1)) # Set date in past
- send_scheduled_email()
-
- email_queue_list = [frappe.get_doc("Email Queue", e.name) for e in frappe.get_all("Email Queue")]
- self.assertEqual(len(email_queue_list), 4)
- recipients = [e.recipients[0].recipient for e in email_queue_list]
- for email in emails:
- self.assertTrue(email in recipients)
-
- def test_newsletter_send_test_email(self):
- """Test "Send Test Email" functionality of Newsletter"""
- newsletter = self.get_newsletter()
- test_email = choice(emails)
- newsletter.send_test_email(test_email)
-
- self.assertFalse(newsletter.email_sent)
- newsletter.save = MagicMock()
- self.assertFalse(newsletter.save.called)
- # check if the test email is in the queue
- email_queue = frappe.get_all(
- "Email Queue",
- filters=[
- ["reference_doctype", "=", "Newsletter"],
- ["reference_name", "=", newsletter.name],
- ["Email Queue Recipient", "recipient", "=", test_email],
- ],
- )
- self.assertTrue(email_queue)
-
- def test_newsletter_status(self):
- """Test for Newsletter's stats on onload event"""
- newsletter = self.get_newsletter()
- newsletter.email_sent = True
- result = newsletter.get_sending_status()
- self.assertTrue("total" in result)
- self.assertTrue("sent" in result)
-
- def test_already_sent_newsletter(self):
- newsletter = self.get_newsletter()
- newsletter.send_emails()
-
- with self.assertRaises(NewsletterAlreadySentError):
- newsletter.send_emails()
-
- def test_newsletter_with_no_recipient(self):
- newsletter = self.get_newsletter()
- property_path = f"{get_dotted_path(newsletter)}.newsletter_recipients"
-
- with patch(property_path, new_callable=PropertyMock) as mock_newsletter_recipients:
- mock_newsletter_recipients.return_value = []
- with self.assertRaises(NoRecipientFoundError):
- newsletter.send_emails()
-
- def test_send_scheduled_email_error_handling(self):
- newsletter = self.get_newsletter(schedule_send=add_days(getdate(), -1))
- job_path = "frappe.email.doctype.newsletter.newsletter.Newsletter.queue_all"
- m = MagicMock(side_effect=frappe.OutgoingEmailError)
-
- with self.assertRaises(frappe.OutgoingEmailError):
- with patch(job_path, new_callable=m):
- send_scheduled_email()
-
- newsletter.reload()
- self.assertEqual(newsletter.email_sent, 0)
-
- def test_retry_partially_sent_newsletter(self):
- frappe.db.delete("Email Queue")
- frappe.db.delete("Email Queue Recipient")
- frappe.db.delete("Newsletter")
-
- newsletter = self.get_newsletter()
- newsletter.send_emails()
- email_queue_list = [frappe.get_doc("Email Queue", e.name) for e in frappe.get_all("Email Queue")]
- self.assertEqual(len(email_queue_list), 4)
-
- # delete a queue document to emulate partial send
- queue_recipient_name = email_queue_list[0].recipients[0].recipient
- email_queue_list[0].delete()
- newsletter.email_sent = False
-
- # make sure the pending recipient is only the one which has been deleted
- self.assertEqual(newsletter.get_pending_recipients(), [queue_recipient_name])
-
- # retry
- newsletter.send_emails()
- self.assertEqual(frappe.db.count("Email Queue"), 4)
- self.assertTrue(newsletter.email_sent)
diff --git a/frappe/email/doctype/newsletter_attachment/__init__.py b/frappe/email/doctype/newsletter_attachment/__init__.py
deleted file mode 100644
index e69de29bb2..0000000000
diff --git a/frappe/email/doctype/newsletter_attachment/newsletter_attachment.json b/frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
deleted file mode 100644
index 47ff57b235..0000000000
--- a/frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- "actions": [],
- "allow_rename": 1,
- "creation": "2021-12-06 16:37:40.652468",
- "doctype": "DocType",
- "editable_grid": 1,
- "engine": "InnoDB",
- "field_order": [
- "attachment"
- ],
- "fields": [
- {
- "fieldname": "attachment",
- "fieldtype": "Attach",
- "in_list_view": 1,
- "label": "Attachment",
- "reqd": 1
- }
- ],
- "index_web_pages_for_search": 1,
- "istable": 1,
- "links": [],
- "modified": "2024-03-23 16:03:31.101104",
- "modified_by": "Administrator",
- "module": "Email",
- "name": "Newsletter Attachment",
- "owner": "Administrator",
- "permissions": [],
- "sort_field": "creation",
- "sort_order": "DESC",
- "states": []
-}
\ No newline at end of file
diff --git a/frappe/email/doctype/newsletter_attachment/newsletter_attachment.py b/frappe/email/doctype/newsletter_attachment/newsletter_attachment.py
deleted file mode 100644
index e0a3f3aa56..0000000000
--- a/frappe/email/doctype/newsletter_attachment/newsletter_attachment.py
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright (c) 2021, Frappe Technologies and contributors
-# For license information, please see license.txt
-
-# import frappe
-from frappe.model.document import Document
-
-
-class NewsletterAttachment(Document):
- # begin: auto-generated types
- # This code is auto-generated. Do not modify anything in this block.
-
- from typing import TYPE_CHECKING
-
- if TYPE_CHECKING:
- from frappe.types import DF
-
- attachment: DF.Attach
- parent: DF.Data
- parentfield: DF.Data
- parenttype: DF.Data
- # end: auto-generated types
-
- pass
diff --git a/frappe/email/doctype/newsletter_email_group/__init__.py b/frappe/email/doctype/newsletter_email_group/__init__.py
deleted file mode 100644
index e69de29bb2..0000000000
diff --git a/frappe/email/doctype/newsletter_email_group/newsletter_email_group.json b/frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
deleted file mode 100644
index b8f1dea630..0000000000
--- a/frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "actions": [],
- "creation": "2017-02-26 16:20:52.654136",
- "doctype": "DocType",
- "editable_grid": 1,
- "engine": "InnoDB",
- "field_order": [
- "email_group",
- "total_subscribers"
- ],
- "fields": [
- {
- "columns": 7,
- "fieldname": "email_group",
- "fieldtype": "Link",
- "in_list_view": 1,
- "label": "Email Group",
- "options": "Email Group",
- "reqd": 1
- },
- {
- "columns": 3,
- "fetch_from": "email_group.total_subscribers",
- "fieldname": "total_subscribers",
- "fieldtype": "Read Only",
- "in_list_view": 1,
- "label": "Total Subscribers"
- }
- ],
- "istable": 1,
- "links": [],
- "modified": "2024-03-23 16:03:31.190219",
- "modified_by": "Administrator",
- "module": "Email",
- "name": "Newsletter Email Group",
- "owner": "Administrator",
- "permissions": [],
- "quick_entry": 1,
- "sort_field": "creation",
- "sort_order": "DESC",
- "states": [],
- "track_changes": 1
-}
\ No newline at end of file
diff --git a/frappe/email/doctype/newsletter_email_group/newsletter_email_group.py b/frappe/email/doctype/newsletter_email_group/newsletter_email_group.py
deleted file mode 100644
index 59b06e446d..0000000000
--- a/frappe/email/doctype/newsletter_email_group/newsletter_email_group.py
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright (c) 2015, Frappe Technologies and contributors
-# License: MIT. See LICENSE
-
-from frappe.model.document import Document
-
-
-class NewsletterEmailGroup(Document):
- # begin: auto-generated types
- # This code is auto-generated. Do not modify anything in this block.
-
- from typing import TYPE_CHECKING
-
- if TYPE_CHECKING:
- from frappe.types import DF
-
- email_group: DF.Link
- parent: DF.Data
- parentfield: DF.Data
- parenttype: DF.Data
- total_subscribers: DF.ReadOnly | None
- # end: auto-generated types
-
- pass
diff --git a/frappe/templates/emails/newsletter.html b/frappe/templates/emails/newsletter.html
deleted file mode 100644
index 27b22023ac..0000000000
--- a/frappe/templates/emails/newsletter.html
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
- {{ message }}
-
-
-
-{% if published and send_webview_link %}
-
-
-
-{% endif %}
\ No newline at end of file
diff --git a/frappe/website/doctype/utm_campaign/__init__.py b/frappe/website/doctype/utm_campaign/__init__.py
deleted file mode 100644
index e69de29bb2..0000000000
diff --git a/frappe/website/doctype/utm_campaign/test_utm_campaign.py b/frappe/website/doctype/utm_campaign/test_utm_campaign.py
deleted file mode 100644
index c5be69c032..0000000000
--- a/frappe/website/doctype/utm_campaign/test_utm_campaign.py
+++ /dev/null
@@ -1,9 +0,0 @@
-# Copyright (c) 2024, Frappe Technologies and Contributors
-# See license.txt
-
-# import frappe
-from frappe.tests import IntegrationTestCase
-
-
-class TestUTMCampaign(IntegrationTestCase):
- pass
diff --git a/frappe/website/doctype/utm_campaign/utm_campaign.js b/frappe/website/doctype/utm_campaign/utm_campaign.js
deleted file mode 100644
index a11b27e381..0000000000
--- a/frappe/website/doctype/utm_campaign/utm_campaign.js
+++ /dev/null
@@ -1,8 +0,0 @@
-// Copyright (c) 2024, Frappe Technologies and contributors
-// For license information, please see license.txt
-
-// frappe.ui.form.on("UTM Campaign", {
-// refresh(frm) {
-
-// },
-// });
diff --git a/frappe/website/doctype/utm_campaign/utm_campaign.json b/frappe/website/doctype/utm_campaign/utm_campaign.json
deleted file mode 100644
index 85de90ec5d..0000000000
--- a/frappe/website/doctype/utm_campaign/utm_campaign.json
+++ /dev/null
@@ -1,83 +0,0 @@
-{
- "actions": [],
- "autoname": "prompt",
- "creation": "2023-03-20 22:36:45.058045",
- "default_view": "List",
- "doctype": "DocType",
- "editable_grid": 1,
- "engine": "InnoDB",
- "field_order": [
- "slug",
- "campaign_description"
- ],
- "fields": [
- {
- "allow_in_quick_entry": 1,
- "fieldname": "campaign_description",
- "fieldtype": "Small Text",
- "in_filter": 1,
- "in_list_view": 1,
- "label": "Campaign Description (Optional)"
- },
- {
- "fieldname": "slug",
- "fieldtype": "Data",
- "label": "Slug",
- "unique": 1
- }
- ],
- "index_web_pages_for_search": 1,
- "links": [],
- "modified": "2024-06-28 15:05:14.714600",
- "modified_by": "Administrator",
- "module": "Website",
- "name": "UTM Campaign",
- "naming_rule": "Set by user",
- "owner": "Administrator",
- "permissions": [
- {
- "create": 1,
- "delete": 1,
- "email": 1,
- "export": 1,
- "print": 1,
- "read": 1,
- "report": 1,
- "role": "System Manager",
- "share": 1,
- "write": 1
- },
- {
- "create": 1,
- "delete": 1,
- "email": 1,
- "export": 1,
- "print": 1,
- "read": 1,
- "report": 1,
- "role": "Newsletter Manager",
- "share": 1,
- "write": 1
- },
- {
- "role": "Desk User",
- "select": 1
- },
- {
- "create": 1,
- "delete": 1,
- "email": 1,
- "export": 1,
- "print": 1,
- "read": 1,
- "report": 1,
- "role": "Marketing Manager",
- "share": 1,
- "write": 1
- }
- ],
- "quick_entry": 1,
- "sort_field": "creation",
- "sort_order": "DESC",
- "states": []
-}
\ No newline at end of file
diff --git a/frappe/website/doctype/utm_campaign/utm_campaign.py b/frappe/website/doctype/utm_campaign/utm_campaign.py
deleted file mode 100644
index feedfc5434..0000000000
--- a/frappe/website/doctype/utm_campaign/utm_campaign.py
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright (c) 2023, Frappe Technologies and contributors
-# For license information, please see license.txt
-
-import frappe
-from frappe.model.document import Document
-
-
-class UTMCampaign(Document):
- # begin: auto-generated types
- # This code is auto-generated. Do not modify anything in this block.
-
- from typing import TYPE_CHECKING
-
- if TYPE_CHECKING:
- from frappe.types import DF
-
- campaign_description: DF.SmallText | None
- slug: DF.Data | None
- # end: auto-generated types
-
- def before_save(self):
- if self.slug:
- self.slug = frappe.utils.slug(self.slug)
diff --git a/frappe/website/doctype/utm_medium/__init__.py b/frappe/website/doctype/utm_medium/__init__.py
deleted file mode 100644
index e69de29bb2..0000000000
diff --git a/frappe/website/doctype/utm_medium/test_utm_medium.py b/frappe/website/doctype/utm_medium/test_utm_medium.py
deleted file mode 100644
index 5d9e38e843..0000000000
--- a/frappe/website/doctype/utm_medium/test_utm_medium.py
+++ /dev/null
@@ -1,9 +0,0 @@
-# Copyright (c) 2024, Frappe Technologies and Contributors
-# See license.txt
-
-# import frappe
-from frappe.tests import IntegrationTestCase
-
-
-class TestUTMMedium(IntegrationTestCase):
- pass
diff --git a/frappe/website/doctype/utm_medium/utm_medium.js b/frappe/website/doctype/utm_medium/utm_medium.js
deleted file mode 100644
index bbea0c0ec9..0000000000
--- a/frappe/website/doctype/utm_medium/utm_medium.js
+++ /dev/null
@@ -1,8 +0,0 @@
-// Copyright (c) 2024, Frappe Technologies and contributors
-// For license information, please see license.txt
-
-// frappe.ui.form.on("UTM Medium", {
-// refresh(frm) {
-
-// },
-// });
diff --git a/frappe/website/doctype/utm_medium/utm_medium.json b/frappe/website/doctype/utm_medium/utm_medium.json
deleted file mode 100644
index 1343769434..0000000000
--- a/frappe/website/doctype/utm_medium/utm_medium.json
+++ /dev/null
@@ -1,72 +0,0 @@
-{
- "actions": [],
- "allow_rename": 1,
- "autoname": "prompt",
- "creation": "2024-06-28 09:46:10.102141",
- "doctype": "DocType",
- "engine": "InnoDB",
- "field_order": [
- "slug",
- "description"
- ],
- "fields": [
- {
- "fieldname": "description",
- "fieldtype": "Small Text",
- "label": "Description"
- },
- {
- "fieldname": "slug",
- "fieldtype": "Data",
- "label": "Slug",
- "unique": 1
- }
- ],
- "index_web_pages_for_search": 1,
- "links": [],
- "modified": "2024-06-28 15:04:51.679189",
- "modified_by": "Administrator",
- "module": "Website",
- "name": "UTM Medium",
- "naming_rule": "Set by user",
- "owner": "Administrator",
- "permissions": [
- {
- "create": 1,
- "delete": 1,
- "email": 1,
- "export": 1,
- "print": 1,
- "read": 1,
- "report": 1,
- "role": "System Manager",
- "share": 1,
- "write": 1
- },
- {
- "create": 1,
- "delete": 1,
- "email": 1,
- "export": 1,
- "print": 1,
- "read": 1,
- "report": 1,
- "role": "Marketing Manager",
- "share": 1,
- "write": 1
- },
- {
- "email": 1,
- "export": 1,
- "print": 1,
- "report": 1,
- "role": "Desk User",
- "select": 1,
- "share": 1
- }
- ],
- "quick_entry": 1,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": []
-}
\ No newline at end of file
diff --git a/frappe/website/doctype/utm_medium/utm_medium.py b/frappe/website/doctype/utm_medium/utm_medium.py
deleted file mode 100644
index ae22177879..0000000000
--- a/frappe/website/doctype/utm_medium/utm_medium.py
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright (c) 2024, Frappe Technologies and contributors
-# For license information, please see license.txt
-
-import frappe
-from frappe.model.document import Document
-
-
-class UTMMedium(Document):
- # begin: auto-generated types
- # This code is auto-generated. Do not modify anything in this block.
-
- from typing import TYPE_CHECKING
-
- if TYPE_CHECKING:
- from frappe.types import DF
-
- description: DF.SmallText | None
- slug: DF.Data | None
- # end: auto-generated types
-
- def before_save(self):
- if self.slug:
- self.slug = frappe.utils.slug(self.slug)
diff --git a/frappe/website/doctype/utm_source/__init__.py b/frappe/website/doctype/utm_source/__init__.py
deleted file mode 100644
index e69de29bb2..0000000000
diff --git a/frappe/website/doctype/utm_source/test_utm_source.py b/frappe/website/doctype/utm_source/test_utm_source.py
deleted file mode 100644
index f08e2d1185..0000000000
--- a/frappe/website/doctype/utm_source/test_utm_source.py
+++ /dev/null
@@ -1,9 +0,0 @@
-# Copyright (c) 2024, Frappe Technologies and Contributors
-# See license.txt
-
-# import frappe
-from frappe.tests import IntegrationTestCase
-
-
-class TestUTMSource(IntegrationTestCase):
- pass
diff --git a/frappe/website/doctype/utm_source/utm_source.js b/frappe/website/doctype/utm_source/utm_source.js
deleted file mode 100644
index cb04f46f45..0000000000
--- a/frappe/website/doctype/utm_source/utm_source.js
+++ /dev/null
@@ -1,8 +0,0 @@
-// Copyright (c) 2024, Frappe Technologies and contributors
-// For license information, please see license.txt
-
-// frappe.ui.form.on("UTM Source", {
-// refresh(frm) {
-
-// },
-// });
diff --git a/frappe/website/doctype/utm_source/utm_source.json b/frappe/website/doctype/utm_source/utm_source.json
deleted file mode 100644
index 270d09aaec..0000000000
--- a/frappe/website/doctype/utm_source/utm_source.json
+++ /dev/null
@@ -1,72 +0,0 @@
-{
- "actions": [],
- "allow_rename": 1,
- "autoname": "prompt",
- "creation": "2024-06-28 09:42:04.478212",
- "doctype": "DocType",
- "engine": "InnoDB",
- "field_order": [
- "slug",
- "description"
- ],
- "fields": [
- {
- "fieldname": "description",
- "fieldtype": "Small Text",
- "label": "Description"
- },
- {
- "fieldname": "slug",
- "fieldtype": "Data",
- "label": "Slug",
- "unique": 1
- }
- ],
- "index_web_pages_for_search": 1,
- "links": [],
- "modified": "2024-06-28 15:04:59.643513",
- "modified_by": "Administrator",
- "module": "Website",
- "name": "UTM Source",
- "naming_rule": "Set by user",
- "owner": "Administrator",
- "permissions": [
- {
- "create": 1,
- "delete": 1,
- "email": 1,
- "export": 1,
- "print": 1,
- "read": 1,
- "report": 1,
- "role": "System Manager",
- "share": 1,
- "write": 1
- },
- {
- "create": 1,
- "delete": 1,
- "email": 1,
- "export": 1,
- "print": 1,
- "read": 1,
- "report": 1,
- "role": "Marketing Manager",
- "share": 1,
- "write": 1
- },
- {
- "email": 1,
- "export": 1,
- "print": 1,
- "report": 1,
- "role": "Desk User",
- "select": 1,
- "share": 1
- }
- ],
- "quick_entry": 1,
- "sort_field": "modified",
- "sort_order": "DESC",
- "states": []
-}
\ No newline at end of file
diff --git a/frappe/website/doctype/utm_source/utm_source.py b/frappe/website/doctype/utm_source/utm_source.py
deleted file mode 100644
index 715997c503..0000000000
--- a/frappe/website/doctype/utm_source/utm_source.py
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright (c) 2024, Frappe Technologies and contributors
-# For license information, please see license.txt
-
-import frappe
-from frappe.model.document import Document
-
-
-class UTMSource(Document):
- # begin: auto-generated types
- # This code is auto-generated. Do not modify anything in this block.
-
- from typing import TYPE_CHECKING
-
- if TYPE_CHECKING:
- from frappe.types import DF
-
- description: DF.SmallText | None
- slug: DF.Data | None
- # end: auto-generated types
-
- def before_save(self):
- if self.slug:
- self.slug = frappe.utils.slug(self.slug)
diff --git a/frappe/www/unsubscribe.html b/frappe/www/unsubscribe.html
deleted file mode 100644
index e3c59c8016..0000000000
--- a/frappe/www/unsubscribe.html
+++ /dev/null
@@ -1,121 +0,0 @@
-{% extends "templates/web.html" %}
-
-{% block title %} Unsubscribe from Newsletter {% endblock %}
-
-{% block navbar %}{% endblock %}
-{% block footer %}{% endblock %}
-
-{% block page_content %}
-
-
-
-
-{% if status == "waiting_for_confirmation" %}
-
-
-
- {{_("Unsubscribe")}}
- Select groups you wish to unsubscribe from ({{ email }})
-
- {% if email_groups|length > 5 %}
-
-
- {% endif %}
-
- {% if email_groups %}
-
-
- {% else %}
-
- You are not registered to any mailing list.
- {{ email }}
-
- {% endif %}
-
- filters عبر filters
msgid "Filters {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1421
+#: frappe/public/js/frappe/views/reports/report_view.js:1427
msgid "Filters:"
msgstr ""
@@ -10461,7 +10296,7 @@ msgstr ""
msgid "Following document {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:111
+#: frappe/website/doctype/web_form/web_form.py:108
msgid "Following fields are missing:"
msgstr "الحقول التالية مفقودة:"
@@ -10469,7 +10304,7 @@ msgstr "الحقول التالية مفقودة:"
msgid "Following fields have invalid values:"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:345
+#: frappe/public/js/frappe/widgets/widget_dialog.js:358
msgid "Following fields have missing values"
msgstr ""
@@ -10612,7 +10447,7 @@ msgstr ""
msgid "For Document Type"
msgstr "لنوع المستند"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:553
+#: frappe/public/js/frappe/widgets/widget_dialog.js:566
msgid "For Example: {} Open"
msgstr "على سبيل المثال: {} Open"
@@ -10641,7 +10476,7 @@ msgstr "للمستخدم"
msgid "For Value"
msgstr "للقيمة"
-#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/query_report.js:2068
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "للمقارنة ، استخدم> 5 ، <10 أو = 324. للنطاقات ، استخدم 5:10 (للقيم بين 5 و 10)."
@@ -10794,7 +10629,7 @@ msgstr "نموذج URL المشفرة"
#. 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:552
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
msgid "Format"
msgstr "شكل"
@@ -10826,7 +10661,7 @@ msgstr "جزء الوحدات"
#. 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:149
+#: frappe/www/login.py:153
msgid "Frappe"
msgstr "فرابي"
@@ -10843,7 +10678,7 @@ msgstr ""
msgid "Frappe Mail"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:549
+#: frappe/email/doctype/email_account/email_account.py:547
msgid "Frappe Mail OAuth Error"
msgstr ""
@@ -10871,13 +10706,11 @@ msgstr ""
#. 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'
-#. Label of the frequency (Select) field in DocType 'Google Drive'
#: 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/integrations/doctype/google_drive/google_drive.json
#: frappe/public/js/frappe/utils/common.js:395
msgid "Frequency"
msgstr "تكرر"
@@ -10923,7 +10756,7 @@ msgstr "من تاريخ"
msgid "From Date Field"
msgstr "من حقل التاريخ"
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
+#: frappe/public/js/frappe/views/reports/query_report.js:1779
msgid "From Document Type"
msgstr "من نوع المستند"
@@ -10974,16 +10807,16 @@ 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:247
-#: frappe/public/js/frappe/widgets/widget_dialog.js:686
+#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "وظيفة"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:693
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
msgstr "وظيفة على أساس"
-#: frappe/__init__.py:670
+#: frappe/__init__.py:677
msgid "Function {0} is not whitelisted."
msgstr ""
@@ -11048,7 +10881,7 @@ msgstr "عام"
msgid "Generate Keys"
msgstr "توليد مفاتيح"
-#: frappe/public/js/frappe/views/reports/query_report.js:877
+#: frappe/public/js/frappe/views/reports/query_report.js:872
msgid "Generate New Report"
msgstr "توليد تقرير جديد"
@@ -11336,32 +11169,12 @@ msgstr "جهات اتصال Google - تعذر تحديث جهة الاتصال
msgid "Google Contacts Id"
msgstr "معرف جهات اتصال Google"
-#. Name of a DocType
-#. Label of the google_drive_section (Section Break) field in DocType 'Google
-#. Drive'
#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/google_drive/google_drive.json
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr "محرك جوجل"
-#: frappe/integrations/doctype/google_drive/google_drive.py:117
-msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}"
-msgstr "Google Drive - تعذر إنشاء مجلد في Google Drive - رمز الخطأ {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:132
-msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}"
-msgstr "Google Drive - تعذر العثور على مجلد في Google Drive - رمز الخطأ {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:193
-msgid "Google Drive - Could not locate - {0}"
-msgstr "Google Drive - تعذر تحديد الموقع - {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:204
-msgid "Google Drive Backup Successful."
-msgstr ""
-
#. Label of the section_break_7 (Section Break) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -11691,6 +11504,10 @@ msgstr ""
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'
@@ -12014,17 +11831,17 @@ msgstr "الصفحة الرئيسية"
msgid "Home Settings"
msgstr "الإعدادات الرئيسية"
-#: frappe/core/doctype/file/test_file.py:330
-#: frappe/core/doctype/file/test_file.py:332
-#: frappe/core/doctype/file/test_file.py:396
+#: 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 "الصفحة الرئيسية / اختبار المجلد 1"
-#: frappe/core/doctype/file/test_file.py:385
+#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
msgstr "مجلد الوطن / اختبار 1 / مجلد اختبار 3"
-#: frappe/core/doctype/file/test_file.py:341
+#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
msgstr "الصفحة الرئيسية / مجلد اختبار 2"
@@ -12069,7 +11886,7 @@ msgstr ""
#: frappe/core/doctype/data_import/importer.py:1177
#: frappe/core/doctype/data_import/importer.py:1242
#: frappe/core/doctype/data_import/importer.py:1245
-#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:50
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
#: frappe/public/js/frappe/list/list_settings.js:337
@@ -12081,7 +11898,7 @@ msgid "ID"
msgstr "هوية شخصية"
#: frappe/desk/reportview.py:491
-#: frappe/public/js/frappe/views/reports/report_view.js:978
+#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
msgstr "هوية شخصية"
@@ -12265,12 +12082,6 @@ msgstr "في حالة التمكين ، لن تتم مطالبة المستخد
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
msgstr "إذا تم تمكينه، فسيتم إشعار المستخدمين في كل مرة يسجلون فيها الدخول. إذا لم يتم تمكينه، فسيتم إشعار المستخدمين مرة واحدة فقط."
-#. Description of the 'Backup Path' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "If it's empty, it will backup to the root of the bucket."
-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"
@@ -12401,16 +12212,12 @@ msgstr "تجاهل إرفاق ملفات أكثر من هذا الحجم"
msgid "Ignored Apps"
msgstr "التطبيقات التي تم تجاهلها"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:348
-msgid "Illegal Access Token. Please try again"
-msgstr "وصول رمز غير قانوني. حاول مرة اخرى"
-
#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
msgstr "حالة المستند غير القانوني لـ {0}"
-#: frappe/model/db_query.py:451 frappe/model/db_query.py:454
-#: frappe/model/db_query.py:1128
+#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
+#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
msgstr "استعلام SQL غير قانوني"
@@ -12759,11 +12566,11 @@ msgstr "تضمين سمة من التطبيقات"
msgid "Include Web View Link in Email"
msgstr "إرسال ارتباط عرض الويب للمستند بالبريد الإلكتروني"
-#: frappe/public/js/frappe/views/reports/query_report.js:1592
+#: frappe/public/js/frappe/views/reports/query_report.js:1594
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1584
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Include indentation"
msgstr "تشمل المسافة البادئة"
@@ -12830,11 +12637,11 @@ msgstr "مستخدم غير صحيح أو كلمة مرور"
msgid "Incorrect Verification code"
msgstr "رمز التحقق غير صحيح"
-#: frappe/model/document.py:1542
+#: frappe/model/document.py:1541
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1544
+#: frappe/model/document.py:1543
msgid "Incorrect value:"
msgstr ""
@@ -12843,10 +12650,10 @@ msgstr ""
#. 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:53
+#: 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:999
+#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
msgstr "مؤشر"
@@ -12921,7 +12728,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:1822
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
msgid "Insert After"
msgstr "إدراج بعد"
@@ -12937,7 +12744,7 @@ msgstr "إدراج بعد الحقل '{0}' المذكورة في الحقل ال
msgid "Insert Below"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:384
+#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
msgstr "إدراج عمود قبل {0}"
@@ -12986,11 +12793,11 @@ msgstr "تعليمات"
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:818
+#: frappe/permissions.py:827
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:376
+#: frappe/database/query.py:383
msgid "Insufficient Permission for {0}"
msgstr "عدم كفاية الإذن {0}"
@@ -13108,7 +12915,7 @@ msgstr "غير صالحة"
#: frappe/public/js/form_builder/utils.js:221
#: frappe/public/js/frappe/form/grid_row.js:833
#: frappe/public/js/frappe/form/layout.js:811
-#: frappe/public/js/frappe/views/reports/report_view.js:710
+#: frappe/public/js/frappe/views/reports/report_view.js:716
msgid "Invalid \"depends_on\" expression"
msgstr "تعبير "under_on" غير صالح"
@@ -13148,7 +12955,7 @@ msgstr "تاريخ غير صالح"
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:102
+#: frappe/database/query.py:103
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13193,6 +13000,7 @@ 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 ""
@@ -13217,7 +13025,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1226 frappe/www/update-password.html:123
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
#: frappe/www/update-password.html:247
msgid "Invalid Password"
@@ -13246,7 +13054,7 @@ msgstr ""
#: frappe/core/doctype/file/file.py:220
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
-#: frappe/public/js/frappe/widgets/widget_dialog.js:589
+#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
msgstr "URL غير صالح"
@@ -13267,11 +13075,11 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:393
+#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "عمود غير صالح"
-#: frappe/model/document.py:1015 frappe/model/document.py:1029
+#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13295,7 +13103,7 @@ msgstr "اسم الحقل غير صالح '{0}' في الااسم تلقائي"
msgid "Invalid file path: {0}"
msgstr "مسار الملف غير صالح: {0}"
-#: frappe/database/query.py:182
+#: frappe/database/query.py:189
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "مرشح غير صالح: {0}"
@@ -13321,7 +13129,7 @@ msgstr "محتوى غير صالح أو تالف للاستيراد"
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:324
+#: frappe/app.py:317
msgid "Invalid request arguments"
msgstr ""
@@ -13505,7 +13313,7 @@ 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:328
+#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
msgstr ""
@@ -13720,6 +13528,10 @@ msgstr ""
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 ""
@@ -13751,7 +13563,7 @@ msgstr "لوحة المهام"
#. 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:498
+#: frappe/public/js/frappe/widgets/widget_dialog.js:511
msgid "Kanban Board"
msgstr "لوح كانبان"
@@ -14023,10 +13835,10 @@ msgstr ""
#: 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:300
-#: frappe/public/js/frappe/widgets/widget_dialog.js:453
-#: frappe/public/js/frappe/widgets/widget_dialog.js:630
-#: frappe/public/js/frappe/widgets/widget_dialog.js:663
+#: 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
@@ -14111,11 +13923,6 @@ msgstr ""
msgid "Last Active"
msgstr "آخر تواجد في"
-#. Label of the last_backup_on (Datetime) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Last Backup On"
-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"
@@ -14200,12 +14007,12 @@ msgstr ""
msgid "Last Synced On"
msgstr "آخر مزامنة في"
-#: frappe/model/meta.py:55 frappe/public/js/frappe/model/meta.js:205
+#: 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:54 frappe/public/js/frappe/model/meta.js:204
+#: 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 "آخر تحديث يوم"
@@ -14249,7 +14056,7 @@ msgid "Leave blank to repeat always"
msgstr "اتركه فارغ لتكرار دائما"
#: frappe/core/doctype/communication/mixins.py:207
-#: frappe/email/doctype/email_account/email_account.py:722
+#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
msgstr "ترك هذه المحادثة"
@@ -14468,7 +14275,7 @@ msgstr ""
msgid "Liked"
msgstr "أحب"
-#: frappe/model/meta.py:58 frappe/public/js/frappe/model/meta.js:208
+#: 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 "أحب بواسطة"
@@ -14483,11 +14290,6 @@ msgstr "اعجابات"
msgid "Limit"
msgstr "حد"
-#. Label of the limit_no_of_backups (Check) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Limit Number of DB Backups"
-msgstr "الحد من عدد النسخ الاحتياطية DB"
-
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14602,11 +14404,11 @@ msgstr "لينك تيتل"
#: 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:414
+#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
msgstr "رابط ل"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:350
+#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
msgstr ""
@@ -14619,7 +14421,7 @@ msgstr ""
msgid "Link Type"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:346
+#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
msgstr ""
@@ -14771,7 +14573,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1085
+#: frappe/public/js/frappe/views/reports/query_report.js:1087
msgid "Loading"
msgstr "تحميل"
@@ -14902,7 +14704,7 @@ msgstr ""
msgid "Login Page"
msgstr ""
-#: frappe/www/login.py:152
+#: frappe/www/login.py:156
msgid "Login To {0}"
msgstr ""
@@ -15169,7 +14971,7 @@ msgstr "إلزامي يعتمد على"
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:473
+#: frappe/website/doctype/web_form/web_form.py:470
msgid "Mandatory Information missing:"
msgstr "معلومات إلزامية مفقود:"
@@ -15444,7 +15246,7 @@ msgid "Menu"
msgstr "الخيارات"
#: frappe/public/js/frappe/form/toolbar.js:242
-#: frappe/public/js/frappe/model/model.js:754
+#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "دمج مع الحالي"
@@ -15623,7 +15425,7 @@ msgstr "عنوان Meta لـ SEO"
msgid "Method"
msgstr "طريقة"
-#: frappe/__init__.py:672
+#: frappe/__init__.py:679
msgid "Method Not Allowed"
msgstr ""
@@ -15700,7 +15502,7 @@ msgstr ""
msgid "Miss"
msgstr ""
-#: frappe/desk/form/meta.py:218
+#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
msgstr ""
@@ -15725,7 +15527,7 @@ msgid "Missing Value"
msgstr ""
#: frappe/public/js/frappe/ui/field_group.js:124
-#: frappe/public/js/frappe/widgets/widget_dialog.js:361
+#: 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"
@@ -15908,8 +15710,6 @@ msgstr "شهر"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -15917,7 +15717,6 @@ msgstr "شهر"
#: 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/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:400
#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
@@ -16089,7 +15888,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:462
+#: frappe/website/doctype/web_form/web_form.py:459
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16255,7 +16054,7 @@ msgstr ""
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:793
+#: frappe/model/document.py:792
msgid "Negative Value"
msgstr "قيمة سالبة"
@@ -16360,7 +16159,7 @@ 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:762
+#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "اسم جديد"
@@ -16394,7 +16193,7 @@ msgstr "اسم تنسيق طباعة جديد"
msgid "New Quick List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
msgstr "اسم التقرير الجديد"
@@ -16450,26 +16249,26 @@ msgstr "القيمة الجديدة التي سيتم تحديدها"
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
#: frappe/public/js/frappe/form/toolbar.js:558
-#: frappe/public/js/frappe/model/model.js:661
+#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:379
+#: frappe/website/doctype/web_form/web_form.py:376
msgid "New {0}"
msgstr "{0} جديد"
-#: frappe/public/js/frappe/views/reports/query_report.js:394
+#: frappe/public/js/frappe/views/reports/query_report.js:392
msgid "New {0} Created"
msgstr "جديد {0} تم إنشاؤه"
-#: frappe/public/js/frappe/views/reports/query_report.js:386
+#: frappe/public/js/frappe/views/reports/query_report.js:384
msgid "New {0} {1} added to Dashboard {2}"
msgstr "تمت إضافة {0} {1} جديد إلى لوحة التحكم {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:391
+#: frappe/public/js/frappe/views/reports/query_report.js:389
msgid "New {0} {1} created"
msgstr "تم إنشاء {0} {1} جديد"
@@ -16481,7 +16280,7 @@ msgstr "جديد {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "تتوفر {} إصدارات جديدة للتطبيقات التالية"
-#: frappe/core/doctype/user/user.py:802
+#: frappe/core/doctype/user/user.py:804
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16643,7 +16442,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "لا"
@@ -16784,7 +16583,7 @@ msgstr "لا يوجد نتائج"
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:803
+#: frappe/core/doctype/user/user.py:805
msgid "No Roles Specified"
msgstr ""
@@ -16935,7 +16734,7 @@ msgstr "عدد الصفوف (بحد أقصى 500)"
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:827 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "لا يوجد صلاحية لـ {0}
No permission for {0}"
@@ -16944,7 +16743,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "لا توجد صلاحية ل '{0} ' {1}"
-#: frappe/model/db_query.py:949
+#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
msgstr "ليس هناك إذن لقراءة {0}"
@@ -17028,12 +16827,6 @@ msgstr "غير سلبي"
msgid "Non-Conforming"
msgstr ""
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "None"
-msgstr "لا شيء"
-
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr "لا شيء: نهاية سير العمل"
@@ -17048,7 +16841,7 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "غير مسموح"
@@ -17069,7 +16862,7 @@ msgstr "ليس من أحفاد"
msgid "Not Equals"
msgstr "لا تساوي"
-#: frappe/app.py:374 frappe/www/404.html:3
+#: frappe/app.py:367 frappe/www/404.html:3
msgid "Not Found"
msgstr "لم يتم العثور على"
@@ -17095,9 +16888,9 @@ msgstr "غير مرتبط بأي سجل"
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:754 frappe/app.py:367 frappe/desk/calendar.py:26
+#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:711
+#: frappe/website/doctype/web_form/web_form.py:708
#: 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
@@ -17118,7 +16911,7 @@ msgstr "لم تنشر"
#: frappe/public/js/frappe/form/toolbar.js:813
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
-#: frappe/public/js/frappe/views/reports/report_view.js:197
+#: frappe/public/js/frappe/views/reports/report_view.js:203
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
@@ -17149,7 +16942,7 @@ msgstr "غير محدد"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "ليس صالحا القيمة المفصولة بفواصل ( CSV ملف)"
-#: frappe/core/doctype/user/user.py:264
+#: frappe/core/doctype/user/user.py:265
msgid "Not a valid User Image."
msgstr "ليست صورة مستخدم صالحة."
@@ -17165,7 +16958,7 @@ msgstr ""
msgid "Not active"
msgstr "غير نشطة"
-#: frappe/permissions.py:360
+#: frappe/permissions.py:370
msgid "Not allowed for {0}: {1}"
msgstr "غير مسموح لـ {0}: {1}"
@@ -17185,7 +16978,7 @@ msgstr "لا يسمح لطباعة الوثائق الملغاة"
msgid "Not allowed to print draft documents"
msgstr "لا يسمح لطباعة مسودات الوثائق"
-#: frappe/permissions.py:212
+#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
msgstr ""
@@ -17201,12 +16994,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:214
+#: frappe/core/doctype/system_settings/system_settings.py:215
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:724
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "غير مسموح به"
@@ -17232,15 +17025,6 @@ msgstr "ملاحظة يراها"
msgid "Note:"
msgstr "ملحوظة:"
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'Dropbox Settings'
-#. Description of the 'Send Email for Successful backup' (Check) field in
-#. DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Note: By default emails for failed backups are sent."
-msgstr "ملاحظة: يتم إرسال رسائل البريد الإلكتروني الافتراضية لعمليات النسخ الاحتياطي الفاشلة."
-
#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "ملاحظة: يؤدي تغيير اسم الصفحة إلى كسر عنوان ورل السابق لهذه الصفحة."
@@ -17300,13 +17084,10 @@ msgstr "لا شيء للتحديث"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
#. Name of a DocType
-#. Label of the notification_section (Section Break) field in DocType 'S3
-#. Backup Settings'
#: 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
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Notification"
msgstr "إعلام"
@@ -17408,7 +17189,7 @@ msgstr "رقم"
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:615
+#: frappe/public/js/frappe/widgets/widget_dialog.js:628
msgid "Number Card"
msgstr "بطاقة رقم"
@@ -17426,7 +17207,7 @@ 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:645
+#: frappe/public/js/frappe/widgets/widget_dialog.js:658
msgid "Number Cards"
msgstr "عدد البطاقات"
@@ -17444,15 +17225,6 @@ msgstr "تنسيق الرقم"
msgid "Number of Backups"
msgstr "عدد النسخ الاحتياطية"
-#. Label of the no_of_backups (Int) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Number of DB Backups"
-msgstr "عدد النسخ الاحتياطية DB"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:54
-msgid "Number of DB backups cannot be less than 1"
-msgstr "لا يمكن أن يكون عدد نسخ DB الاحتياطية أقل من 1"
-
#. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Number of Groups"
@@ -17468,7 +17240,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:169
+#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17697,7 +17469,7 @@ 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:322
+#: frappe/public/js/frappe/widgets/widget_dialog.js:335
msgid "Onboard"
msgstr ""
@@ -17793,19 +17565,13 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Only change this if you want to use other S3 compatible object storage backends."
-msgstr ""
-
-#: frappe/model/document.py:1232
+#: frappe/model/document.py:1231
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:315
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
msgstr ""
@@ -18054,7 +17820,7 @@ msgstr "يجب تعيين خيارات {0} قبل تعيين القيمة الا
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:870
+#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
msgstr "خيارات لم يتم تعيين لحقل الرابط {0}"
@@ -18166,7 +17932,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1742
+#: frappe/public/js/frappe/views/reports/query_report.js:1744
msgid "PDF"
msgstr ""
@@ -18465,7 +18231,7 @@ msgstr "الأصل هو اسم المستند الذي ستتم إضافة ال
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:798
+#: frappe/permissions.py:807
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18525,11 +18291,11 @@ msgstr "غير فعال"
msgid "Password"
msgstr "كلمة السر"
-#: frappe/core/doctype/user/user.py:1079
+#: frappe/core/doctype/user/user.py:1081
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:457
+#: frappe/core/doctype/user/user.py:458
msgid "Password Reset"
msgstr "إعادة تعيين كلمة المرور"
@@ -18563,7 +18329,7 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1078
+#: frappe/core/doctype/user/user.py:1080
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18575,7 +18341,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:869
+#: frappe/core/doctype/user/user.py:871
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18732,7 +18498,7 @@ msgstr ""
msgid "Permanently Submit {0}?"
msgstr "إرسال دائم {0} ؟"
-#: frappe/public/js/frappe/model/model.js:733
+#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
msgstr "حذف بشكل دائم {0} ؟"
@@ -18893,8 +18659,8 @@ msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:40
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
-#: frappe/public/js/frappe/views/reports/report_view.js:1576
+#: frappe/public/js/frappe/views/reports/report_view.js:1579
+#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
msgstr "اختيار الأعمدة"
@@ -18934,7 +18700,7 @@ msgstr ""
msgid "Plant"
msgstr "مصنع"
-#: frappe/email/doctype/email_account/email_account.py:546
+#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
msgstr ""
@@ -18950,7 +18716,7 @@ msgstr "يرجى تكرار هذا الموقع موضوع لتخصيص."
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "الرجاء تثبيت مكتبة ldap3 عبر النقطة لاستخدام وظيفة ldap."
-#: frappe/public/js/frappe/views/reports/query_report.js:309
+#: frappe/public/js/frappe/views/reports/query_report.js:307
msgid "Please Set Chart"
msgstr "يرجى وضع الرسم البياني"
@@ -18966,7 +18732,7 @@ msgstr "الرجاء إضافة موضوع إلى بريدك الإلكترون
msgid "Please add a valid comment."
msgstr "الرجاء إضافة تعليق صالح."
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1063
msgid "Please ask your administrator to verify your sign-up"
msgstr "الرجاء اطلب من المشرف التأكد من تسجيلك"
@@ -18994,11 +18760,11 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "يرجى التحقق من قيم المرشح المحددة لمخطط لوحة المعلومات: {}"
-#: frappe/model/base_document.py:946
+#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "يرجى التحقق من قيمة مجموعة "الجلب من" للحقل {0}"
-#: frappe/core/doctype/user/user.py:1059
+#: frappe/core/doctype/user/user.py:1061
msgid "Please check your email for verification"
msgstr "يرجى التحقق من بريدك الالكتروني للتحقق"
@@ -19026,10 +18792,6 @@ msgstr ""
msgid "Please click on the following link to set your new password"
msgstr "الرجاء الضغط على الرابط التالي لتعيين كلمة المرور الجديدة"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:343
-msgid "Please close this window"
-msgstr "الرجاء إغلاق هذه النافذة"
-
#: frappe/www/confirm_workflow_action.html:4
msgid "Please confirm your action to {0} this document."
msgstr "يرجى تأكيد الإجراء الخاص بك إلى {0} هذا المستند."
@@ -19046,7 +18808,7 @@ msgstr "الرجاء إنشاء البطاقة أولاً"
msgid "Please create chart first"
msgstr "يرجى إنشاء الرسم البياني أولا"
-#: frappe/desk/form/meta.py:214
+#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
msgstr ""
@@ -19058,7 +18820,7 @@ msgstr "من فضلك لا تغيير عناوين القالب."
msgid "Please duplicate this to make changes"
msgstr "يرجى تكرار هذه إلى إجراء تغييرات"
-#: frappe/core/doctype/system_settings/system_settings.py:162
+#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19076,7 +18838,7 @@ msgstr "يرجى تمكين النوافذ المنبثقة"
msgid "Please enable pop-ups in your browser"
msgstr "يرجى تمكين النوافذ المنبثقة في متصفحك"
-#: frappe/integrations/google_oauth.py:53
+#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
msgstr ""
@@ -19153,7 +18915,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "يرجى التأكد من أن وثائق الاتصال المرجعية غير مرتبطة بشكل دائري."
-#: frappe/model/document.py:987
+#: frappe/model/document.py:986
msgid "Please refresh to get the latest document."
msgstr "يرجى تحديث للحصول على أحدث وثيقة."
@@ -19177,7 +18939,7 @@ msgstr "الرجاء حفظ المستند قبل التعيين"
msgid "Please save the document before removing assignment"
msgstr "الرجاء حفظ المستند قبل إزالة المهمة"
-#: frappe/public/js/frappe/views/reports/report_view.js:1703
+#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
msgstr "يرجى حفظ التقرير الأول"
@@ -19193,11 +18955,11 @@ msgstr "يرجى تحديد DOCTYPE أولا"
msgid "Please select Entity Type first"
msgstr "يرجى اختيار نوع الكيان أولا"
-#: frappe/core/doctype/system_settings/system_settings.py:112
+#: frappe/core/doctype/system_settings/system_settings.py:113
msgid "Please select Minimum Password Score"
msgstr "يرجى تحديد الحد الأدنى لسجل كلمة المرور"
-#: frappe/public/js/frappe/views/reports/query_report.js:1181
+#: frappe/public/js/frappe/views/reports/query_report.js:1183
msgid "Please select X and Y fields"
msgstr ""
@@ -19225,7 +18987,7 @@ msgstr "الرجاء تحديد مرشح تاريخ صالح"
msgid "Please select applicable Doctypes"
msgstr "يرجى اختيار الأساليب المناسبة"
-#: frappe/model/db_query.py:1140
+#: frappe/model/db_query.py:1141
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "يرجى تحديد عمود واحد على الأقل من {0} إلى التصنيف / المجموعة"
@@ -19247,10 +19009,6 @@ msgstr ""
msgid "Please select {0}"
msgstr "الرجاء اختيار {0}"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:305
-msgid "Please set Dropbox access keys in site config or doctype"
-msgstr ""
-
#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
msgstr "يرجى وضع عنوان البريد الإلكتروني"
@@ -19259,7 +19017,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:1404
+#: frappe/public/js/frappe/views/reports/query_report.js:1406
msgid "Please set filters"
msgstr "يرجى تعيين المرشحات"
@@ -19279,7 +19037,7 @@ msgstr "يرجى تعيين المستندات التالية في لوحة ال
msgid "Please set the series to be used."
msgstr "يرجى ضبط المسلسل ليتم استخدامه."
-#: frappe/core/doctype/system_settings/system_settings.py:125
+#: frappe/core/doctype/system_settings/system_settings.py:126
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr "يرجى إعداد سمز قبل تعيينه كطريقة المصادقة، عبر إعدادات سمز"
@@ -19287,19 +19045,19 @@ msgstr "يرجى إعداد سمز قبل تعيينه كطريقة المصاد
msgid "Please setup a message first"
msgstr "يرجى إعداد رسالة أولاً"
-#: frappe/core/doctype/user/user.py:422
+#: frappe/core/doctype/user/user.py:423
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:434
+#: 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:823
+#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
msgstr "رجاء حدد"
-#: frappe/permissions.py:774
+#: frappe/permissions.py:783
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19328,7 +19086,7 @@ msgstr "يرجى تحديد حقل القيمة الذي يجب التحقق م
msgid "Please try again"
msgstr "حاول مرة اخرى"
-#: frappe/integrations/google_oauth.py:56
+#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
msgstr ""
@@ -19641,8 +19399,8 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1728
-#: frappe/public/js/frappe/views/reports/report_view.js:1531
+#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "طباعة"
@@ -19885,7 +19643,7 @@ msgstr "ProTip: إضافة Reference: {{ reference_doctype }} {{ reference
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
msgstr "المتابعة على أية حال"
@@ -20206,7 +19964,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:729
+#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
msgstr ""
@@ -20227,7 +19985,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:554
+#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
msgstr "يجب أن تكون قائمة الانتظار واحدة من {0}"
@@ -20260,12 +20018,6 @@ msgstr ""
msgid "Queued for Submission. You can track the progress over {0}."
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:65
-#: frappe/integrations/doctype/google_drive/google_drive.py:153
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:86
-msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr "قائمة الانتظار للنسخ الاحتياطي. قد يستغرق الأمر بضع دقائق إلى ساعة.\\n
\\nQueued for backup. It may take a few minutes to an hour."
-
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
msgstr "قائمة الانتظار للنسخ الاحتياطي. سوف تتلقى رسالة بريد إلكتروني مع رابط التحميل"
@@ -20401,7 +20153,7 @@ msgstr ""
msgid "Re-Run in Console"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:728
+#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
msgstr ""
@@ -20503,7 +20255,7 @@ msgstr ""
msgid "Reason"
msgstr "سبب"
-#: frappe/public/js/frappe/views/reports/query_report.js:889
+#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
msgstr "إعادة بناء"
@@ -20868,11 +20620,11 @@ msgid "Referrer"
msgstr "المرجع"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:548
+#: frappe/public/js/frappe/desk.js:556
#: 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:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1719
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20891,12 +20643,10 @@ msgstr "قم بتحديث ورقة Google"
#. 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 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
@@ -20913,7 +20663,7 @@ msgstr ""
msgid "Refreshing..."
msgstr "يحديث ..."
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
msgstr "سجل لكن المعوقين"
@@ -21076,7 +20826,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
#: frappe/public/js/frappe/form/toolbar.js:432
-#: frappe/public/js/frappe/model/model.js:772
+#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
msgstr "إعادة تسمية"
@@ -21086,7 +20836,7 @@ msgstr "إعادة تسمية"
msgid "Rename Fieldname"
msgstr ""
-#: frappe/public/js/frappe/model/model.js:759
+#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
msgstr "إعادة تسمية {0}"
@@ -21150,7 +20900,7 @@ msgstr "كما يكرر "AAA" من السهل تخمين"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "يكرر مثل "abcabcabc" ليست سوى أصعب قليلا لتخمين من "اي بي سي""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:146
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
msgstr "يكرر {0}"
@@ -21288,7 +21038,7 @@ msgstr "مدير التقارير"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1902
+#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
msgstr "تقرير الاسم"
@@ -21340,7 +21090,7 @@ msgstr "لا يحتوي التقرير على بيانات ، يرجى تعدي
msgid "Report has no numeric fields, please change the Report Name"
msgstr "لا يحتوي التقرير على حقول رقمية ، يُرجى تغيير اسم التقرير"
-#: frappe/public/js/frappe/views/reports/query_report.js:1009
+#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
msgstr ""
@@ -21356,11 +21106,11 @@ msgstr ""
msgid "Report updated successfully"
msgstr "تم تحديث التقرير بنجاح"
-#: frappe/public/js/frappe/views/reports/report_view.js:1351
+#: frappe/public/js/frappe/views/reports/report_view.js:1357
msgid "Report was not saved (there were errors)"
msgstr "لم يتم حفظ التقرير (كانت هناك أخطاء)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1940
+#: frappe/public/js/frappe/views/reports/query_report.js:1942
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "التقرير مع أكثر من 10 أعمدة تبدو أفضل في وضع أفقي."
@@ -21396,7 +21146,7 @@ msgstr "تقارير"
msgid "Reports & Masters"
msgstr "التقارير والماجستير"
-#: frappe/public/js/frappe/views/reports/query_report.js:925
+#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
msgstr "التقارير موجودة بالفعل في قائمة الانتظار"
@@ -21846,7 +21596,7 @@ msgstr ""
msgid "Role and Level"
msgstr "مستوى الصلاحية"
-#: frappe/core/doctype/user/user.py:363
+#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -21961,7 +21711,7 @@ msgstr "إعادة توجيه الطريق"
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:855 frappe/model/document.py:778
+#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
msgstr "صف"
@@ -21974,7 +21724,7 @@ msgstr ""
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:982
msgid "Row #{0}:"
msgstr "الصف # {0}:"
@@ -22052,7 +21802,7 @@ msgstr "قاعدة"
msgid "Rule Conditions"
msgstr "شروط القاعدة"
-#: frappe/permissions.py:653
+#: frappe/permissions.py:662
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22096,23 +21846,6 @@ msgstr ""
msgid "Runtime in Seconds"
msgstr ""
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "S3 Backup Settings"
-msgstr "إعدادات النسخ الاحتياطي لـ S3"
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
-msgid "S3 Backup complete!"
-msgstr "اكتمل النسخ الاحتياطي S3!"
-
-#. Label of the s3_bucket_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Bucket Details"
-msgstr "تفاصيل دلو S3"
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
@@ -22253,7 +21986,7 @@ msgstr "السبت"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/page/print/print.js:858
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/quick_entry.js:185
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
@@ -22263,8 +21996,8 @@ msgstr "السبت"
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
-#: frappe/public/js/frappe/views/reports/query_report.js:1894
-#: frappe/public/js/frappe/views/reports/report_view.js:1720
+#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
@@ -22281,8 +22014,8 @@ msgstr ""
msgid "Save Anyway"
msgstr "حفظ على أي حال"
-#: frappe/public/js/frappe/views/reports/report_view.js:1382
-#: frappe/public/js/frappe/views/reports/report_view.js:1727
+#: frappe/public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
msgstr "حفظ باسم"
@@ -22290,7 +22023,7 @@ msgstr "حفظ باسم"
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1897
+#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
msgstr "احفظ التقرير"
@@ -22456,7 +22189,7 @@ msgstr "المجدول غير نشط"
msgid "Scheduler Status"
msgstr ""
-#: frappe/utils/scheduler.py:249
+#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr ""
@@ -22682,7 +22415,7 @@ msgstr "إعدادات الأمان"
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:858
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "See all past reports."
msgstr "عرض جميع التقارير السابقة"
@@ -22762,7 +22495,7 @@ msgstr "حدد المرفقات"
msgid "Select Child Table"
msgstr "حدد جدول الطفل"
-#: frappe/public/js/frappe/views/reports/report_view.js:377
+#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
msgstr "حدد العمود"
@@ -23079,31 +22812,11 @@ msgstr "إرسال البريد الإلكتروني المرفقات طباعة
msgid "Send Email To Creator"
msgstr ""
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Dropbox Settings'
-#. Label of the send_email_for_successful_backup (Check) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Email for Successful Backup"
-msgstr "إرسال بريد إلكتروني للنجاح النسخ الاحتياطي"
-
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Email for Successful backup"
-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 email (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Notification To"
-msgstr "إرسال إشعار ل"
-
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -23120,14 +22833,6 @@ msgstr "إرسال إخطارات للمستندات التي اتبعتها"
msgid "Send Notifications For Email Threads"
msgstr "إرسال إخطارات لمواضيع البريد الإلكتروني"
-#. Label of the send_notifications_to (Data) field in DocType 'Dropbox
-#. Settings'
-#. Label of the notify_email (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Notifications To"
-msgstr "إرسال إشعارات إلى"
-
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
msgstr "أرسل الآن"
@@ -23386,7 +23091,7 @@ msgstr "الترقيم المتسلسل {0} مستخدم بالفعل في {1}"
msgid "Server Action"
msgstr "عمل الخادم"
-#: frappe/app.py:383 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "خطأ في الخادم"
@@ -23452,7 +23157,7 @@ msgstr "الجلسة الافتراضية"
msgid "Session Defaults Saved"
msgstr "تم حفظ الإعدادات الافتراضية للجلسة"
-#: frappe/app.py:360
+#: frappe/app.py:353
msgid "Session Expired"
msgstr "انتهت الجلسة"
@@ -23461,7 +23166,7 @@ msgstr "انتهت الجلسة"
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:119
+#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
msgstr "يجب أن يكون انتهاء الجلسة بالتنسيق {0}"
@@ -23484,7 +23189,7 @@ msgstr "مجموعة"
msgid "Set Banner from Image"
msgstr "تعيين ترويسة من الصورة"
-#: frappe/public/js/frappe/views/reports/query_report.js:201
+#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
msgstr "مجموعة الرسم البياني"
@@ -23510,7 +23215,7 @@ msgstr "ضبط المرشحات"
msgid "Set Filters for {0}"
msgstr "تعيين عوامل التصفية لـ {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
msgstr ""
@@ -23728,8 +23433,8 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1763
-#: frappe/public/js/frappe/views/reports/report_view.js:1698
+#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "الإعداد التلقائي البريد الإلكتروني"
@@ -23825,6 +23530,15 @@ msgstr "تبين"
msgid "Show \"Call to Action\" in Blog"
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"
@@ -23995,7 +23709,7 @@ msgstr "اظهار العنوان"
msgid "Show Title in Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1521
+#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
msgstr "مشاهدة المجاميع"
@@ -24105,7 +23819,7 @@ msgstr "اظهار العنوان في نافذة المتصفح كما \"باد
msgid "Show {0} List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:495
+#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
msgstr "عرض حقول رقمية فقط من التقرير"
@@ -24140,7 +23854,7 @@ msgstr "الشريط الجانبي وتعليقات"
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
msgstr "تم تعطيل الاشتراك"
@@ -24785,7 +24499,7 @@ msgstr "الفاصل الزمني للإحصائيات"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
-#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: frappe/public/js/frappe/views/reports/report_view.js:975
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
@@ -25084,7 +24798,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:1166
+#: frappe/public/js/frappe/form/grid.js:1170
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25181,7 +24895,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:720
+#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
msgstr "اسم المستخدم اقترح: {0}"
@@ -25471,11 +25185,9 @@ msgstr ""
#: frappe/geo/doctype/country/country.json
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/connected_app/connected_app.json
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.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_drive/google_drive.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
@@ -25484,7 +25196,6 @@ msgstr ""
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_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
@@ -25609,11 +25320,11 @@ msgstr "الجدول MultiSelect"
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1165
+#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
msgstr "الجدول محدث"
-#: frappe/model/document.py:1565
+#: frappe/model/document.py:1564
msgid "Table {0} cannot be empty"
msgstr "جدول {0} لا يمكن أن يكون فارغا"
@@ -25632,7 +25343,7 @@ msgstr "بطاقة شعار"
msgid "Tag Link"
msgstr "علامة الارتباط"
-#: frappe/model/meta.py:57
+#: 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
@@ -25644,15 +25355,6 @@ msgstr "علامة الارتباط"
msgid "Tags"
msgstr "بطاقات"
-#: frappe/integrations/doctype/google_drive/google_drive.js:29
-msgid "Take Backup"
-msgstr "خذ نسخة احتياطية"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
-msgid "Take Backup Now"
-msgstr "ابداء النسخ الاحتياطي الآن"
-
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
msgstr "تصوير"
@@ -25730,12 +25432,12 @@ msgstr "تحذيرات القالب"
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1027
+#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
msgstr "موقوف مؤقتا"
-#: frappe/core/doctype/translation/test_translation.py:56
-#: frappe/core/doctype/translation/test_translation.py:63
+#: frappe/core/doctype/translation/test_translation.py:47
+#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
msgstr ""
@@ -25744,8 +25446,8 @@ msgstr ""
msgid "Test Job ID"
msgstr ""
-#: frappe/core/doctype/translation/test_translation.py:58
-#: frappe/core/doctype/translation/test_translation.py:66
+#: frappe/core/doctype/translation/test_translation.py:49
+#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
msgstr ""
@@ -25753,7 +25455,7 @@ msgstr ""
msgid "Test email sent to {0}"
msgstr "تم إرسال بريد إلكتروني تجريبي إلى {0}"
-#: frappe/core/doctype/file/test_file.py:388
+#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "إختبار_المجلد"
@@ -25834,7 +25536,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr "تم تعطيل التكرار التلقائي لهذا المستند."
-#: frappe/public/js/frappe/form/grid.js:1188
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
msgstr "تنسيق كسف حساس لحالة الأحرف"
@@ -26002,15 +25704,15 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:987
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:991
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:368 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"
@@ -26022,7 +25724,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:334
+#: frappe/utils/response.py:331
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26083,7 +25785,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26112,7 +25814,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr "هناك بعض المشاكل مع رابط الملف: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:958
+#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26199,12 +25901,12 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:750
+#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
msgstr "هذا الإجراء مسموح به فقط لـ {}"
#: frappe/public/js/frappe/form/toolbar.js:117
-#: frappe/public/js/frappe/model/model.js:755
+#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "هذا لا يمكن التراجع عنها"
@@ -26242,7 +25944,7 @@ msgstr ""
msgid "This document is already amended, you cannot ammend it again"
msgstr "تم تعديل هذا المستند بالفعل ، ولا يمكنك تعديله مرة أخرى"
-#: frappe/model/document.py:474
+#: frappe/model/document.py:473
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -26303,7 +26005,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr "هذا يذهب فوق عرض الشرائح."
-#: frappe/public/js/frappe/views/reports/query_report.js:2132
+#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "هذا هو تقرير الخلفية. يرجى تعيين المرشحات المناسبة ثم إنشاء واحدة جديدة."
@@ -26367,7 +26069,7 @@ msgstr ""
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1033
+#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26375,7 +26077,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr "تم إنشاء هذا التقرير في {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:856
+#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
msgstr "تم إنشاء هذا التقرير {0}."
@@ -26441,7 +26143,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1240
+#: frappe/core/doctype/user/user.py:1242
msgid "Throttled"
msgstr "مخنوق"
@@ -26792,7 +26494,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:857
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "To get the updated report, click on {0}."
msgstr "للحصول على التقرير المحدّث ، انقر على {0}."
@@ -26817,10 +26519,6 @@ msgstr "لاستخدام تقويم Google ، قم بتمكين {0}."
msgid "To use Google Contacts, enable {0}."
msgstr "لاستخدام جهات اتصال Google ، قم بتمكين {0}."
-#: frappe/integrations/doctype/google_drive/google_drive.js:8
-msgid "To use Google Drive, enable {0}."
-msgstr "لاستخدام Google Drive ، قم بتمكين {0}."
-
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -26851,7 +26549,7 @@ msgstr "قائمة المهام"
msgid "Today"
msgstr "اليوم"
-#: frappe/public/js/frappe/views/reports/report_view.js:1564
+#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
msgstr "تبديل الرسم البياني"
@@ -26867,7 +26565,7 @@ 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:1568
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
msgstr "تبديل الشريط الجانبي"
@@ -26923,11 +26621,11 @@ msgstr "طلبات كثيرة جدا"
msgid "Too many changes to database in single action."
msgstr ""
-#: frappe/utils/background_jobs.py:728
+#: 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:1028
+#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "وقعت الكثير من المستخدمين في الآونة الأخيرة، وذلك هو تعطيل التسجيل. يرجى المحاولة مرة أخرى في ساعة"
@@ -26991,8 +26689,8 @@ msgstr "موضوع"
#: frappe/desk/query_report.py:533
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1320
-#: frappe/public/js/frappe/views/reports/report_view.js:1545
+#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr "الاجمالي غير شامل الضريبة"
@@ -27055,11 +26753,11 @@ msgstr "إجمالي عدد الرسائل الإلكترونية المراد
msgid "Total:"
msgstr "الاجمالي غير شامل الضريبة:"
-#: frappe/public/js/frappe/views/reports/report_view.js:1250
+#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
msgstr "المجاميع"
-#: frappe/public/js/frappe/views/reports/report_view.js:1225
+#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
msgstr "الصف الكلي"
@@ -27172,7 +26870,7 @@ msgstr "التحولات"
msgid "Translatable"
msgstr "للترجمة"
-#: frappe/public/js/frappe/views/reports/query_report.js:2188
+#: frappe/public/js/frappe/views/reports/query_report.js:2183
msgid "Translate Data"
msgstr ""
@@ -27183,7 +26881,7 @@ msgstr ""
msgid "Translate Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1650
+#: frappe/public/js/frappe/views/reports/report_view.js:1656
msgid "Translate values"
msgstr ""
@@ -27331,7 +27029,7 @@ msgstr "أسلوب اثنان عامل المصادقة"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/views/file/file_view.js:337
#: frappe/public/js/frappe/views/workspace/workspace.js:399
-#: frappe/public/js/frappe/widgets/widget_dialog.js:391
+#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
msgid "Type"
@@ -27411,7 +27109,7 @@ msgstr ""
#: 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:458
+#: 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"
@@ -27473,7 +27171,7 @@ msgstr "تعذر العثور على نوع الملف {0}"
msgid "Unable to load camera."
msgstr "تعذر تحميل الكاميرا."
-#: frappe/public/js/frappe/model/model.js:268
+#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
msgstr "غير قادر على تحميل: {0}"
@@ -27502,7 +27200,7 @@ msgstr "تعذر كتابة تنسيق الملف {0}"
msgid "Unassign Condition"
msgstr "إلغاء تعيين الشرط"
-#: frappe/app.py:383
+#: frappe/app.py:376
msgid "Uncaught Exception"
msgstr ""
@@ -27735,7 +27433,7 @@ msgstr "محدّث"
msgid "Updated Successfully"
msgstr "تم التحديث بنجاح"
-#: frappe/public/js/frappe/desk.js:444
+#: frappe/public/js/frappe/desk.js:452
msgid "Updated To A New Version 🎉"
msgstr "تم التحديث إلى إصدار جديد 🎉"
@@ -27743,7 +27441,7 @@ msgstr "تم التحديث إلى إصدار جديد 🎉"
msgid "Updated successfully"
msgstr "تم التحديث بنجاح"
-#: frappe/utils/response.py:333
+#: frappe/utils/response.py:330
msgid "Updating"
msgstr "يتم التحديث"
@@ -27817,18 +27515,6 @@ msgstr "تم التحميل إلى Dropbox"
msgid "Uploaded To Google Drive"
msgstr "تم الرفع إلى Google Drive"
-#: frappe/integrations/doctype/google_drive/google_drive.py:196
-msgid "Uploading backup to Google Drive."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:201
-msgid "Uploading successful."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:16
-msgid "Uploading to Google Drive"
-msgstr ""
-
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -27912,11 +27598,11 @@ msgstr ""
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:434
+#: frappe/model/db_query.py:435
msgid "Use of function {0} in field is restricted"
msgstr ""
-#: frappe/model/db_query.py:411
+#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
msgstr "استخدام الاستعلام الفرعي أو وظيفة مقيدة"
@@ -28033,7 +27719,7 @@ msgstr "المستخدم لا يستطيع أن ينشئ"
msgid "User Cannot Search"
msgstr "المستخدم لا يستطيع أن يبحث"
-#: frappe/public/js/frappe/desk.js:546
+#: frappe/public/js/frappe/desk.js:554
msgid "User Changed"
msgstr ""
@@ -28139,8 +27825,8 @@ 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:1881
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "ضوابط المستخدم"
@@ -28237,7 +27923,7 @@ msgstr "يجب دائما مستخدم تحديد"
msgid "User permission already exists"
msgstr "إذن المستخدم موجود بالفعل"
-#: frappe/www/login.py:167
+#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
msgstr ""
@@ -28245,23 +27931,23 @@ msgstr ""
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: frappe/core/doctype/user/user.py:536
+#: frappe/core/doctype/user/user.py:537
msgid "User {0} cannot be deleted"
msgstr "المستخدم {0} لا يمكن حذف"
-#: frappe/core/doctype/user/user.py:326
+#: frappe/core/doctype/user/user.py:327
msgid "User {0} cannot be disabled"
msgstr "المستخدم {0} لا يمكن تعطيل"
-#: frappe/core/doctype/user/user.py:602
+#: frappe/core/doctype/user/user.py:603
msgid "User {0} cannot be renamed"
msgstr "المستخدم {0} لا يمكن إعادة تسمية"
-#: frappe/permissions.py:138
+#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
msgstr "المستخدم {0} ليس لديه حق الوصول إلى هذا المستند"
-#: frappe/permissions.py:161
+#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr "لا يملك المستخدم {0} حق الوصول إلى النمط عبر إذن دور للمستند {1}"
@@ -28274,7 +27960,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr "طلب المستخدم {0} حذف البيانات"
-#: frappe/core/doctype/user/user.py:1369
+#: frappe/core/doctype/user/user.py:1371
msgid "User {0} impersonated as {1}"
msgstr ""
@@ -28303,7 +27989,7 @@ msgstr ""
msgid "Username"
msgstr "اسم االمستخدم"
-#: frappe/core/doctype/user/user.py:687
+#: frappe/core/doctype/user/user.py:689
msgid "Username {0} already exists"
msgstr "اسم المستخدم {0} موجود بالفعل"
@@ -28443,15 +28129,15 @@ msgstr "تم تغير القيمة"
msgid "Value To Be Set"
msgstr "قيمة ليتم تعيينها"
-#: frappe/model/base_document.py:1049 frappe/model/document.py:834
+#: frappe/model/base_document.py:1054 frappe/model/document.py:833
msgid "Value cannot be changed for {0}"
msgstr "لا يمكن تغير القيمة ل {0}"
-#: frappe/model/document.py:780
+#: frappe/model/document.py:779
msgid "Value cannot be negative for"
msgstr "لا يمكن أن تكون القيمة سالبة لـ"
-#: frappe/model/document.py:784
+#: frappe/model/document.py:783
msgid "Value cannot be negative for {0}: {1}"
msgstr "لا يمكن أن تكون القيمة سالبة لـ {0}: {1}"
@@ -28482,7 +28168,7 @@ msgstr "يجب أن تكون القيمة واحدة من {0}"
msgid "Value to Validate"
msgstr "قيمة للتحقق من صحتها"
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1124
msgid "Value too big"
msgstr "قيمة كبيرة جدا"
@@ -29083,11 +28769,6 @@ msgstr "أيام الأسبوع"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -29096,9 +28777,6 @@ msgstr "أيام الأسبوع"
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:399
#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
@@ -29133,11 +28811,11 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:414
+#: frappe/core/doctype/user/user.py:415
msgid "Welcome email sent"
msgstr "رسالة الترحيب تم أرسالها"
-#: frappe/core/doctype/user/user.py:475
+#: frappe/core/doctype/user/user.py:476
msgid "Welcome to {0}"
msgstr "أهلا وسهلا بك إلى {0}"
@@ -29170,7 +28848,7 @@ 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:468
+#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
msgstr "ما هي طريقة عرض DocType المرتبطة التي يجب أن يأخذك إليها هذا الاختصار؟"
@@ -29369,7 +29047,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:177
+#: frappe/public/js/frappe/router.js:173
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29439,11 +29117,11 @@ msgstr ""
msgid "Workspaces"
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:753
+#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
msgstr ""
@@ -29462,11 +29140,11 @@ msgstr "تغليف"
msgid "Write"
msgstr "الكتابة"
-#: frappe/model/base_document.py:949
+#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
msgstr "إحضار خاطئ من القيمة"
-#: frappe/public/js/frappe/views/reports/report_view.js:484
+#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
msgstr "X محور الحقل"
@@ -29485,13 +29163,13 @@ msgstr ""
msgid "Y Axis"
msgstr "المحور ص"
-#: frappe/public/js/frappe/views/reports/report_view.js:491
+#: frappe/public/js/frappe/views/reports/report_view.js:497
msgid "Y Axis Fields"
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:1221
+#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
msgstr "Y الميدان"
@@ -29552,7 +29230,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "نعم"
@@ -29592,11 +29270,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:409
+#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "لا يسمح لك بالوصول إلى هذا السجل {0} لأنه مرتبط بـ {1} '{2}' في الحقل {3}"
-#: frappe/permissions.py:398
+#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29619,7 +29297,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:604
+#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
msgstr "غير مسموح لك بتصدير النمط {}"
@@ -29631,7 +29309,7 @@ msgstr "لا يسمح لك بطباعة هذا التقرير"
msgid "You are not allowed to send emails related to this document"
msgstr "لا يسمح لك بإرسال رسائل البريد الإلكتروني ذات الصلة بهذه الوثيقة"
-#: frappe/website/doctype/web_form/web_form.py:569
+#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
msgstr "لا يسمح لك بتحديث الوثيقة نموذج الويب هذه"
@@ -29647,7 +29325,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr "لا يسمح لك بالوصول إلى هذه الصفحة."
-#: frappe/__init__.py:669
+#: frappe/__init__.py:676
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29655,7 +29333,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr "أنت الآن تتبع هذا المستند. سوف تتلقى التحديثات اليومية عبر البريد الإلكتروني. يمكنك تغيير هذا في إعدادات المستخدم."
-#: frappe/core/doctype/installed_applications/installed_applications.py:82
+#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -29819,11 +29497,11 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "ليس لديك الأذونات الكافية للوصول إلى هذا المورد. الرجاء الاتصال بالمدير للحصول علي الوصول."
-#: frappe/app.py:368
+#: frappe/app.py:361
msgid "You do not have enough permissions to complete the action"
msgstr "لا يوجد لديك الصلاحية الكافية لاتمام هذا العمل"
-#: frappe/desk/query_report.py:838
+#: frappe/desk/query_report.py:831
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29835,11 +29513,11 @@ msgstr "ليس لديك أذونات لإلغاء كافة المستندات ا
msgid "You don't have access to Report: {0}"
msgstr "ليس لديك حق الوصول إلى التقرير: {0}"
-#: frappe/website/doctype/web_form/web_form.py:772
+#: frappe/website/doctype/web_form/web_form.py:769
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:286 frappe/utils/response.py:290
+#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
msgstr "لا تتوفر لديك الصلاحية للوصول الى هذا الملف"
@@ -29847,7 +29525,7 @@ msgstr "لا تتوفر لديك الصلاحية للوصول الى هذا ا
msgid "You don't have permission to get a report on: {0}"
msgstr "ليس لديك إذن للحصول على تقرير عن: {0}"
-#: frappe/website/doctype/web_form/web_form.py:175
+#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
msgstr "ليس لديك الأذونات للوصول إلى هذا المستند"
@@ -29900,23 +29578,23 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:339
+#: 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:768
+#: frappe/website/doctype/web_form/web_form.py:765
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:609
+#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
msgstr "يجب عليك تسجيل الدخول لإرسال هذا النموذج"
-#: frappe/model/document.py:357
+#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
@@ -29932,11 +29610,11 @@ msgstr ""
msgid "You need to be a system user to access this page."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:94
+#: 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:275
+#: frappe/utils/response.py:272
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "يتوجب عليك تسجيل الدخول بصلاحية مدير النظام حتي تتمكن من الوصول الى النسخ الأحتياطية."
@@ -29944,7 +29622,7 @@ msgstr "يتوجب عليك تسجيل الدخول بصلاحية مدير ال
msgid "You need to be logged in to access this page"
msgstr "تحتاج إلى تسجيل الدخول للوصول إلى هذه الصفحة"
-#: frappe/website/doctype/web_form/web_form.py:164
+#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
msgstr "تحتاج إلى تسجيل الدخول للوصول إلى هذه {0}."
@@ -30019,7 +29697,7 @@ msgstr "لقد قمت بإلغاء متابعة هذا المستند"
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/desk.js:543
+#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -30102,7 +29780,7 @@ msgstr "اسم المؤسسة وعنوانك لتذييل البريد الإل
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "وقد وردت الاستعلام الخاص بك. سوف نقوم بالرد مرة أخرى قريبا. إذا كان لديك أي معلومات إضافية، يرجى الرد على هذا البريد."
-#: frappe/app.py:361
+#: frappe/app.py:354
msgid "Your session has expired, please login again to continue."
msgstr "انتهت صلاحية الجلسة، يرجى تسجيل الدخول مرة أخرى للمتابعة."
@@ -30333,7 +30011,7 @@ msgstr "البريد الإلكتروني"
msgid "email inbox"
msgstr "البريد الوارد"
-#: frappe/permissions.py:403 frappe/permissions.py:414
+#: frappe/permissions.py:412 frappe/permissions.py:423
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "فارغة"
@@ -30885,7 +30563,7 @@ msgstr ""
msgid "{0} Calendar"
msgstr "{0} التقويم"
-#: frappe/public/js/frappe/views/reports/report_view.js:564
+#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
msgstr "{0} الرسم البياني"
@@ -30933,7 +30611,7 @@ msgstr ""
msgid "{0} Name"
msgstr "{0} الاسم"
-#: frappe/model/base_document.py:1149
+#: frappe/model/base_document.py:1154
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -30943,7 +30621,7 @@ msgstr ""
msgid "{0} Report"
msgstr "{0} تقرير"
-#: frappe/public/js/frappe/views/reports/query_report.js:952
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
msgstr ""
@@ -31009,7 +30687,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:149
+#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
msgstr ""
@@ -31022,7 +30700,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:547
+#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -31147,7 +30825,7 @@ msgstr "{0} هو حقل بيانات غير صالح."
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "{0} هو عنوان بريد إلكتروني غير صالح في "المستلمين""
-#: frappe/public/js/frappe/views/reports/report_view.js:1462
+#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
msgstr ""
@@ -31156,27 +30834,27 @@ msgstr ""
msgid "{0} is currently {1}"
msgstr "{0} حاليًا {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1431
+#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1451
+#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1441
+#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1456
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1446
+#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1481
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
msgstr ""
@@ -31196,7 +30874,7 @@ msgstr "{0} ليس تنسيق طباعة خامًا."
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:64
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
msgstr ""
@@ -31225,11 +30903,11 @@ msgstr "{0} ليس رقم هاتف صالحًا"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} ليست حالة سير عمل صالحة. يرجى تحديث سير العمل والمحاولة مرة أخرى."
-#: frappe/permissions.py:787
+#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31241,27 +30919,27 @@ msgstr "{0} ليس تنسيق تقرير صالحًا. يجب أن يكون تن
msgid "{0} is not a zip file"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1436
+#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1483
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1487
+#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:165
+#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} هو الآن تنسيق الطباعة الافتراضي لنوع المستند {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1470
+#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
msgstr ""
@@ -31272,11 +30950,11 @@ msgstr ""
msgid "{0} is required"
msgstr "{0} مطلوب"
-#: frappe/public/js/frappe/views/reports/report_view.js:1486
+#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1465
+#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
msgstr ""
@@ -31284,12 +30962,12 @@ msgstr ""
msgid "{0} items selected"
msgstr "{0} العناصر المحددة"
-#: frappe/core/doctype/user/user.py:1378
+#: frappe/core/doctype/user/user.py:1380
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:104
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
msgstr ""
@@ -31305,7 +30983,7 @@ msgstr "{0} تسجيل الخروج: {1}"
msgid "{0} m"
msgstr "{0} م"
-#: frappe/desk/notifications.py:397
+#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
msgstr "{0} ذكرتك في تعليق في {1} {2}"
@@ -31317,35 +30995,35 @@ msgstr "قبل {0} دقائق"
msgid "{0} months ago"
msgstr "قبل {0} أشهر"
-#: frappe/model/document.py:1792
+#: frappe/model/document.py:1791
msgid "{0} must be after {1}"
msgstr "{0} يجب أن يكون بعد {1}"
-#: frappe/model/document.py:1551
+#: frappe/model/document.py:1550
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1553
+#: frappe/model/document.py:1552
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1549
+#: frappe/model/document.py:1548
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1547 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} يجب أن يكون واحدا من {1}"
-#: frappe/model/base_document.py:875
+#: frappe/model/base_document.py:876
msgid "{0} must be set first"
msgstr "يجب تعيين {0} أولا"
-#: frappe/model/base_document.py:732
+#: frappe/model/base_document.py:729
msgid "{0} must be unique"
msgstr "{0} يجب أن تكون فريدة من نوعها"
-#: frappe/model/document.py:1555
+#: frappe/model/document.py:1554
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31420,7 +31098,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1785
+#: frappe/model/document.py:1784
msgid "{0} row #{1}: "
msgstr ""
@@ -31516,11 +31194,11 @@ msgstr "تمت إضافة {0} {1}"
msgid "{0} {1} added to Dashboard {2}"
msgstr "تمت إضافة {0} {1} إلى لوحة التحكم {2}"
-#: frappe/model/base_document.py:665 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} موجود بالفعل"
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:987
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} لا يمكن أن يكون {{}}. يجب أن تكون واحدة من \"{3}\""
@@ -31536,7 +31214,7 @@ msgstr "{0} {1} غير موجود ، حدد هدفا جديدا لدمج"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} مرتبط بالمستندات المرسلة التالية: {2}"
-#: frappe/model/document.py:260 frappe/permissions.py:558
+#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
msgstr "{0} {1} غير موجود"
@@ -31544,7 +31222,7 @@ msgstr "{0} {1} غير موجود"
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:1110
+#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
msgstr "{0}، الصف {1}"
@@ -31552,7 +31230,7 @@ msgstr "{0}، الصف {1}"
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "{0}/{1} مكتمل | يرجى ترك علامة التبويب هذه مفتوحة حتى الانتهاء."
-#: frappe/model/base_document.py:1115
+#: frappe/model/base_document.py:1120
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: '{1}' ({3}) سيتم اقتطاعه، حيث أن الحد الأقصى المسموح به هو {2}"
@@ -31653,7 +31331,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr "{0}: تم تعيين {1} على الحالة {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:1279
+#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} ضد {2}"
diff --git a/frappe/locale/bs.po b/frappe/locale/bs.po
index 218e1ab40c..252770ba90 100644
--- a/frappe/locale/bs.po
+++ b/frappe/locale/bs.po
@@ -2,14 +2,14 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-08 09:34+0000\n"
-"PO-Revision-Date: 2025-06-11 14:05\n"
+"POT-Creation-Date: 2025-06-22 09:34+0000\n"
+"PO-Revision-Date: 2025-06-22 16:41\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Bosnian\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.13.1\n"
+"Generated-By: Babel 2.16.0\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Crowdin-Project: frappe\n"
"X-Crowdin-Project-ID: 639578\n"
@@ -141,7 +141,7 @@ msgstr "1 Dan"
msgid "1 Google Calendar Event synced."
msgstr "Sinhroniziran je 1 događaj iz Google Kalendara."
-#: frappe/public/js/frappe/views/reports/query_report.js:951
+#: frappe/public/js/frappe/views/reports/query_report.js:953
msgid "1 Report"
msgstr "1 Izvještaj"
@@ -149,7 +149,7 @@ msgstr "1 Izvještaj"
msgid "1 comment"
msgstr "1 komentar"
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:711
msgid "1 day ago"
msgstr "prije 1 dan"
@@ -158,17 +158,17 @@ msgid "1 hour"
msgstr "1 sat"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:709
msgid "1 hour ago"
msgstr "prije 1 sat"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:707
msgid "1 minute ago"
msgstr "prije 1 minutu"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:715
msgid "1 month ago"
msgstr "prije 1 mjesec"
@@ -180,37 +180,37 @@ msgstr "1 od 2"
msgid "1 record will be exported"
msgstr "1 zapis će biti eksportiran"
-#: frappe/tests/test_utils.py:705
+#: frappe/tests/test_utils.py:706
msgid "1 second ago"
msgstr "prije 1 sekundu"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:713
msgid "1 week ago"
msgstr "prije 1 sedmicu"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:717
msgid "1 year ago"
msgstr "prije 1 godinu"
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:710
msgid "2 hours ago"
msgstr "prije 2 sata"
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:716
msgid "2 months ago"
msgstr "prije 2 mjeseca"
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:714
msgid "2 weeks ago"
msgstr "prije 2 sedmice"
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:718
msgid "2 years ago"
msgstr "prije 2 godine"
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:708
msgid "3 minutes ago"
msgstr "prije 3 minute"
@@ -226,7 +226,7 @@ msgstr "4 sata"
msgid "5 Records"
msgstr "5 Zapisa"
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:712
msgid "5 days ago"
msgstr "prije 5 dana"
@@ -246,7 +246,7 @@ msgstr "<"
msgid "<="
msgstr "<="
-#: frappe/public/js/frappe/widgets/widget_dialog.js:588
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
msgid "{0} is not a valid URL"
msgstr "{0} nije važeći URL"
@@ -838,10 +838,7 @@ msgid "API"
msgstr "API"
#. Label of the api_access (Section Break) field in DocType 'User'
-#. Label of the api_access_section (Section Break) field in DocType 'S3 Backup
-#. Settings'
#: frappe/core/doctype/user/user.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "API Access"
msgstr "API Pristup"
@@ -953,17 +950,6 @@ msgstr "Preostalo je oko {0} sekundi"
msgid "Access Control"
msgstr "Kontrola Pristupa"
-#. Label of the access_key_id (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key ID"
-msgstr "ID Pristupnog Ključa"
-
-#. Label of the secret_access_key (Password) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key Secret"
-msgstr "Tajna Pristupnog Ključa"
-
#. Name of a DocType
#. Label of a Link in the Users Workspace
#: frappe/core/doctype/access_log/access_log.json
@@ -1014,6 +1000,10 @@ msgstr "Upravitelj Knjigovodstva"
msgid "Accounts User"
msgstr "Korisnik Knjigovodstva"
+#: frappe/public/js/frappe/form/dashboard.js:510
+msgid "Accurate count can not be fetched, click here to view all documents"
+msgstr "Tačan broj nije moguće preuzeti, klikni ovdje da biste vidjeli sve dokumente"
+
#. Label of the action (Select) field in DocType 'Amended Document Naming
#. Settings'
#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
@@ -1044,7 +1034,7 @@ msgstr "Radnja / Ruta"
msgid "Action Complete"
msgstr "Radnja Završena"
-#: frappe/model/document.py:1872
+#: frappe/model/document.py:1871
msgid "Action Failed"
msgstr "Radnja Neuspješna"
@@ -1093,10 +1083,10 @@ msgstr "Radnja {0} nije uspjela {1} {2}. Pogledaj {3}"
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:192
-#: frappe/public/js/frappe/views/reports/query_report.js:205
-#: frappe/public/js/frappe/views/reports/query_report.js:215
-#: frappe/public/js/frappe/views/reports/query_report.js:845
+#: frappe/public/js/frappe/views/reports/query_report.js:190
+#: frappe/public/js/frappe/views/reports/query_report.js:203
+#: frappe/public/js/frappe/views/reports/query_report.js:213
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Actions"
msgstr "Radnje"
@@ -1158,8 +1148,8 @@ msgstr "Zapisnik Aktivnosti"
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:267
-#: frappe/public/js/frappe/views/reports/query_report.js:295
+#: frappe/public/js/frappe/views/reports/query_report.js:265
+#: frappe/public/js/frappe/views/reports/query_report.js:293
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Dodaj"
@@ -1200,7 +1190,7 @@ msgstr "Dodaj Ivicu na Vrh"
msgid "Add Card to Dashboard"
msgstr "Dodaj Karticu na Nadzornu Tablu"
-#: frappe/public/js/frappe/views/reports/query_report.js:211
+#: frappe/public/js/frappe/views/reports/query_report.js:209
msgid "Add Chart to Dashboard"
msgstr "Dodaj Grafikon na Nadzornu Tablu"
@@ -1209,10 +1199,10 @@ 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:1769
-#: frappe/public/js/frappe/views/reports/query_report.js:1772
-#: frappe/public/js/frappe/views/reports/report_view.js:349
-#: frappe/public/js/frappe/views/reports/report_view.js:374
+#: frappe/public/js/frappe/views/reports/query_report.js:1771
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/report_view.js:355
+#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
msgstr "Dodaj Kolonu"
@@ -1236,7 +1226,7 @@ msgid "Add Custom Tags"
msgstr "Dodaj Prilagođene Oznake"
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
-#: frappe/public/js/frappe/widgets/widget_dialog.js:703
+#: frappe/public/js/frappe/widgets/widget_dialog.js:716
msgid "Add Filters"
msgstr "Dodaj Filtere"
@@ -1271,7 +1261,7 @@ msgstr "Dodaj Učesnike"
msgid "Add Query Parameters"
msgstr "Dodaj Parametre Upita"
-#: frappe/core/doctype/user/user.py:806
+#: frappe/core/doctype/user/user.py:808
msgid "Add Roles"
msgstr "Dodaj Uloge"
@@ -1416,7 +1406,7 @@ msgid "Add tab"
msgstr "Dodaj karticu"
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:253
+#: frappe/public/js/frappe/views/reports/query_report.js:251
msgid "Add to Dashboard"
msgstr "Dodaj na Nadzornu Tablu"
@@ -1571,11 +1561,11 @@ msgstr "Administracija"
msgid "Administrator"
msgstr "Administrator"
-#: frappe/core/doctype/user/user.py:1211
+#: frappe/core/doctype/user/user.py:1213
msgid "Administrator Logged In"
msgstr "Administrator je prijavljen"
-#: frappe/core/doctype/user/user.py:1205
+#: frappe/core/doctype/user/user.py:1207
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "Administrator je pristupio {0} {1} putem IP adrese {2}."
@@ -1808,12 +1798,6 @@ msgstr "Dozvoli Grupno Uređivanje"
msgid "Allow Consecutive Login Attempts "
msgstr "Broj Dozvoljnih Uzastopnih Pokušaje Prijave "
-#. Label of the allow_dropbox_access (Button) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Allow Dropbox Access"
-msgstr "Dozvoli Pristup Dropboxu"
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
msgid "Allow Google Calendar Access"
msgstr "Dozvoli Pristup Google Kalendaru"
@@ -1822,10 +1806,6 @@ msgstr "Dozvoli Pristup Google Kalendaru"
msgid "Allow Google Contacts Access"
msgstr "Dozvoli Pristup Google Kontaktima"
-#: frappe/integrations/doctype/google_drive/google_drive.py:52
-msgid "Allow Google Drive Access"
-msgstr "Dozvoli Pristup Google Disku"
-
#. Label of the allow_guest (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
@@ -2080,7 +2060,7 @@ msgstr "Dozvoljeno ugrađivanje domena"
msgid "Allowing DocType, DocType. Be careful!"
msgstr "Dopuštanje DocType, DocType. Budite pažljivi!"
-#: frappe/core/doctype/user/user.py:1021
+#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr "Već Registrovan"
@@ -2088,11 +2068,11 @@ msgstr "Već Registrovan"
msgid "Already in the following Users ToDo list:{0}"
msgstr "Već na sljedećoj ToDo listi Korisnika:{0}"
-#: frappe/public/js/frappe/views/reports/report_view.js:896
+#: frappe/public/js/frappe/views/reports/report_view.js:902
msgid "Also adding the dependent currency field {0}"
msgstr "Takođe se dodaje polje zavisne valute {0}"
-#: frappe/public/js/frappe/views/reports/report_view.js:909
+#: frappe/public/js/frappe/views/reports/report_view.js:915
msgid "Also adding the status dependency field {0}"
msgstr "Takođe se dodaje polje statusne zavisnosti {0}"
@@ -2171,7 +2151,7 @@ msgstr "Izmjena"
msgid "Amendment Naming Override"
msgstr "Zaobiđi izmjenu Imenovanja"
-#: frappe/model/document.py:550
+#: frappe/model/document.py:549
msgid "Amendment Not Allowed"
msgstr "Izmjena nije Dozvoljena"
@@ -2260,15 +2240,6 @@ msgstr "Osim Upravitelja Sistema, uloge s pravom Postavi korisničke dozvole mog
msgid "App"
msgstr "Aplikacija"
-#. Label of the app_access_key (Data) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Access Key"
-msgstr "Ključ Pristupa Aplikaciji"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:22
-msgid "App Access Key and/or Secret Key are not present."
-msgstr "Ključ Pristup Aplikaciji i/ili Tajni Ključ nisu navedeni."
-
#. Label of the client_id (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client ID"
@@ -2302,16 +2273,11 @@ msgstr "Logotip aplikacije"
msgid "App Name"
msgstr "Naziv Aplikacije"
-#. Label of the app_secret_key (Password) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Secret Key"
-msgstr "Tajni Ključ Aplikacije"
-
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr "Aplikacija nije pronađena za modul: {0}"
-#: frappe/__init__.py:1462
+#: frappe/__init__.py:1465
msgid "App {0} is not installed"
msgstr "Aplikacija {0} nije instalirana"
@@ -2461,7 +2427,7 @@ msgstr "Arhivirane Kolone"
msgid "Are you sure you want to clear the assignments?"
msgstr "Jeste li sigurni da želite izbrisati zadatke?"
-#: frappe/public/js/frappe/form/grid.js:290
+#: frappe/public/js/frappe/form/grid.js:294
msgid "Are you sure you want to delete all rows?"
msgstr "Jeste li sigurni da želite izbrisati sve redove?"
@@ -2489,7 +2455,7 @@ msgstr "Jeste li sigurni da želite izbrisati karticu? Svi odjeljci zajedno s po
msgid "Are you sure you want to discard the changes?"
msgstr "Jeste li sigurni da želite odbaciti promjene?"
-#: frappe/public/js/frappe/views/reports/query_report.js:965
+#: frappe/public/js/frappe/views/reports/query_report.js:967
msgid "Are you sure you want to generate a new report?"
msgstr "Jeste li sigurni da želite generisati novi izvještaj?"
@@ -2615,7 +2581,7 @@ msgstr "Dodijelio"
msgid "Assigned By Full Name"
msgstr "Dodijelio"
-#: frappe/model/meta.py:60
+#: 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
@@ -2885,13 +2851,11 @@ msgstr "Autor"
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
#. Contacts'
-#. Label of the authorization_code (Data) field in DocType 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
@@ -2929,12 +2893,6 @@ msgstr "Autoriziraj pristup Google kalendaru"
msgid "Authorize Google Contacts Access"
msgstr "Autoriziraj pristup Google Kontaktima"
-#. Label of the authorize_google_drive_access (Button) field in DocType 'Google
-#. Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Authorize Google Drive Access"
-msgstr "Autoriziraj pristup Google Disku"
-
#. 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"
@@ -3081,11 +3039,11 @@ msgstr "Automatska Poruka"
msgid "Automatic"
msgstr "Automatsko"
-#: frappe/email/doctype/email_account/email_account.py:774
+#: frappe/email/doctype/email_account/email_account.py:772
msgid "Automatic Linking can be activated only for one Email Account."
msgstr "Automatsko povezivanje se može aktivirati samo za jedan nalog e-pošte."
-#: frappe/email/doctype/email_account/email_account.py:768
+#: frappe/email/doctype/email_account/email_account.py:766
msgid "Automatic Linking can be activated only if Incoming is enabled."
msgstr "Automatsko povezivanje može se aktivirati samo ako je omogućeno Dolazno."
@@ -3299,66 +3257,14 @@ msgstr "Pozadinski Ispis (potrebno za >25 dokumenata)"
msgid "Background Workers"
msgstr "Pozadinski Radnici"
-#: frappe/integrations/doctype/google_drive/google_drive.py:170
-msgid "Backing up Data."
-msgstr "Sigurnosno Kopiranje Podataka."
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:32
-msgid "Backing up to Google Drive."
-msgstr "Sigurnosno Kopiranje na Google Disk."
-
-#. Label of a Card Break in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Backup"
-msgstr "Sigurnosna Kopija"
-
-#. Label of the backup_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Details"
-msgstr "Detalji Sigurnosne Kopije"
-
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
msgstr "Sigurnosni Ključ Šifriranja"
-#. Label of the backup_files (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Files"
-msgstr "Datoteke sigurnosne kopije"
-
-#. Label of the backup_folder_id (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder ID"
-msgstr "ID Sigurnosne Mape"
-
-#. Label of the backup_folder_name (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder Name"
-msgstr "Naziv Sigurnosne Mape"
-
-#. Label of the backup_frequency (Select) field in DocType 'Dropbox Settings'
-#. Label of the frequency (Select) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Frequency"
-msgstr "Učestalost Sigurnosnih Kopija"
-
-#. Label of the backup_path (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Path"
-msgstr "Put Sigurnosne Kopije"
-
#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
msgstr "Posao Sigurnosne Kopije je već u redu čekanja. Primit ćete e-poruku s linkom za preuzimanje"
-#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup public and private files along with the database."
-msgstr "Napravi sigurnosnu kopiju javnih i privatnih datoteka zajedno s bazom podataka."
-
#. 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'
@@ -3372,7 +3278,7 @@ msgstr "Sigurnosne Kopije"
msgid "Backups (MB)"
msgstr "Sigurnosne Kopije (MB)"
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:65
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
msgid "Bad Cron Expression"
msgstr "Pogrešan Cron Izraz"
@@ -3769,15 +3675,6 @@ msgstr "Pretraživač nije podržan"
msgid "Brute Force Security"
msgstr "Sigurnost Prijave"
-#. Label of the bucket (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Bucket Name"
-msgstr "Naziv Korpe"
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:71
-msgid "Bucket {0} not found."
-msgstr "Korpa {0} nije pronađena."
-
#. 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"
@@ -3814,7 +3711,7 @@ msgstr "Grupno Brisanje"
msgid "Bulk Edit"
msgstr "Grupno Uređivanje"
-#: frappe/public/js/frappe/form/grid.js:1184
+#: frappe/public/js/frappe/form/grid.js:1188
msgid "Bulk Edit {0}"
msgstr "Grupno uređivanje {0}"
@@ -3889,12 +3786,6 @@ msgstr "Prema Polju \"Imenovanje serije\""
msgid "By default the title is used as meta title, adding a value here will override it."
msgstr "Prema standard postavkama naslov se koristi kao meta naslov, dodavanje vrijednosti ovdje će ga nadjačati."
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "By default, emails are only sent for failed backups."
-msgstr "Prema standard postavkama e-pošta se šalju samo za neuspjele sigurnosne kopije."
-
#. 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
@@ -4205,7 +4096,7 @@ msgstr "Nije Moguće Preuzeti Vrijednosti"
msgid "Cannot Remove"
msgstr "Nije Moguće Ukloniti"
-#: frappe/model/base_document.py:1156
+#: frappe/model/base_document.py:1161
msgid "Cannot Update After Submit"
msgstr "Nije Moguće Ažurirati Nakon Podnošenja"
@@ -4225,11 +4116,11 @@ msgstr "Nije moguće otkazati prije podnošenja. Pogledaj Tranzicija {0}"
msgid "Cannot cancel {0}."
msgstr "Nije moguće otkazati {0}."
-#: frappe/model/document.py:1012
+#: frappe/model/document.py:1011
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr "Nije moguće promijeniti status dokumenta iz 0 (Nacrt) u 2 (Otkazano)"
-#: frappe/model/document.py:1026
+#: frappe/model/document.py:1025
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "Nije moguće promijeniti status dokumenta sa 1 (Podneseno) u 0 (Nacrt)"
@@ -4312,7 +4203,7 @@ msgstr "Nije moguće uređivati Standardne Grafikone"
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "Nije moguće uređivati standard izvještaj.Dupliciraj i kreiraj novi izvještaj"
-#: frappe/model/document.py:1032
+#: frappe/model/document.py:1031
msgid "Cannot edit cancelled document"
msgstr "Nije moguće uređivati otkazani dokument"
@@ -4345,11 +4236,11 @@ 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:1128
+#: frappe/public/js/frappe/form/grid.js:1132
msgid "Cannot import table with more than 5000 rows."
msgstr "Nije moguće uvesti tabelu sa više od 5000 redova."
-#: frappe/model/document.py:1100
+#: frappe/model/document.py:1099
msgid "Cannot link cancelled document: {0}"
msgstr "Nije moguće povezati otkazani dokument: {0}"
@@ -4365,7 +4256,7 @@ msgstr "Nije moguće uskladiti kolonu {0} ni sa jednim poljem"
msgid "Cannot move row"
msgstr "Nije moguće pomjeriti red"
-#: frappe/public/js/frappe/views/reports/report_view.js:921
+#: frappe/public/js/frappe/views/reports/report_view.js:927
msgid "Cannot remove ID field"
msgstr "Nije moguće ukloniti ID polje"
@@ -4390,11 +4281,11 @@ msgstr "Nije moguće podnijeti {0}."
msgid "Cannot update {0}"
msgstr "Nije moguće ažurirati {0}"
-#: frappe/model/db_query.py:1125
+#: frappe/model/db_query.py:1126
msgid "Cannot use sub-query in order by"
msgstr "Nije moguće koristiti podupit po redoslijedu"
-#: frappe/model/db_query.py:1144
+#: frappe/model/db_query.py:1145
msgid "Cannot use {0} in order/group by"
msgstr "Ne može se koristiti {0} u redoslijedu/grupiranju po"
@@ -4420,7 +4311,7 @@ msgstr "Numerička Kartica"
msgid "Card Break"
msgstr "Prijelom Kartice"
-#: frappe/public/js/frappe/views/reports/query_report.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:261
msgid "Card Label"
msgstr "Oznaka Kartice"
@@ -4563,7 +4454,7 @@ msgstr "Konfiguracija Grafikona"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:290
+#: frappe/public/js/frappe/views/reports/query_report.js:288
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Naziv Grafikona"
@@ -4583,7 +4474,7 @@ msgstr "Izvor Grafikona"
#. 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:499
+#: frappe/public/js/frappe/views/reports/report_view.js:505
msgid "Chart Type"
msgstr "Tip Grafikona"
@@ -4697,7 +4588,7 @@ msgstr "Podređena tabela {0} za polje {1}"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Podređene tabele su prikazane kao mreža u drugim DocTypes"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:638
+#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "Odaberi postojeću karticu ili kreiraj novu karticu"
@@ -4790,10 +4681,6 @@ msgstr "Klikni ovdje"
msgid "Click here to verify"
msgstr "Klikni ovdje za potvrdu"
-#: frappe/integrations/doctype/google_drive/google_drive.js:47
-msgid "Click on Authorize Google Drive Access to authorize Google Drive Access."
-msgstr "Klikni Autoriziraj pristup Google Disku da biste autorizirali pristup Google Disku."
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "Klikni na datoteku da biste je odabrali."
@@ -4820,7 +4707,6 @@ msgstr "Klikni na vezu ispod kako biste potvrdili vaš zahtjev"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
-#: frappe/integrations/doctype/google_drive/google_drive.py:53
#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
msgstr "Klikni na {0} za generisanje tokena osvježavanja."
@@ -4994,7 +4880,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Sklopi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Sklopi Sve"
@@ -5049,9 +4935,9 @@ 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:1229
-#: frappe/public/js/frappe/widgets/widget_dialog.js:533
-#: frappe/public/js/frappe/widgets/widget_dialog.js:681
+#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: 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
@@ -5192,7 +5078,7 @@ msgstr "Ograničenje komentara po satu"
msgid "Comment publicity can only be updated by the original author or a System Manager."
msgstr "Publicitet komentara može ažurirati samo originalni autor ili Upravitelj Systema."
-#: frappe/model/meta.py:59 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/model/meta.js:209
#: frappe/public/js/frappe/model/model.js:135
#: frappe/website/doctype/web_form/templates/web_form.html:122
@@ -5299,7 +5185,7 @@ msgstr "Završeno"
msgid "Complete By"
msgstr "Završeno Do"
-#: frappe/core/doctype/user/user.py:477
+#: frappe/core/doctype/user/user.py:478
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Završi Registraciju"
@@ -5395,7 +5281,7 @@ msgstr "Uslovi"
msgid "Configuration"
msgstr "Konfiguracija"
-#: frappe/public/js/frappe/views/reports/report_view.js:481
+#: frappe/public/js/frappe/views/reports/report_view.js:487
msgid "Configure Chart"
msgstr "Konfiguriši Grafikon"
@@ -5734,7 +5620,7 @@ msgstr "Ispravna verzija:"
msgid "Could not connect to outgoing email server"
msgstr "Povezivanje sa serverom odlazne e-pošte nije uspjelo"
-#: frappe/model/document.py:1096
+#: frappe/model/document.py:1095
msgid "Could not find {0}"
msgstr "Nije moguće pronaći {0}"
@@ -5763,7 +5649,7 @@ msgstr "Nije moguće spremiti, provjerite podatke koje ste unijeli"
msgid "Count"
msgstr "Broj"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:527
+#: frappe/public/js/frappe/widgets/widget_dialog.js:540
msgid "Count Customizations"
msgstr "Broj Prilagodba"
@@ -5771,10 +5657,14 @@ msgstr "Broj Prilagodba"
#. 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:512
+#: frappe/public/js/frappe/widgets/widget_dialog.js:525
msgid "Count Filter"
msgstr "Broj & Filter"
+#: frappe/public/js/frappe/form/dashboard.js:509
+msgid "Count of linked documents"
+msgstr "Broj povezanih dokumenata"
+
#. Label of the counter (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Counter"
@@ -5825,7 +5715,7 @@ msgstr "Cr"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1261
+#: frappe/public/js/frappe/views/reports/query_report.js:1263
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5839,13 +5729,13 @@ msgstr "Kreiraj & Nastavi"
msgid "Create Address"
msgstr "Kreiraj Adresu"
-#: frappe/public/js/frappe/views/reports/query_report.js:188
-#: frappe/public/js/frappe/views/reports/query_report.js:233
+#: frappe/public/js/frappe/views/reports/query_report.js:186
+#: frappe/public/js/frappe/views/reports/query_report.js:231
msgid "Create Card"
msgstr "Kreiraj Karticu"
-#: frappe/public/js/frappe/views/reports/query_report.js:286
-#: frappe/public/js/frappe/views/reports/query_report.js:1188
+#: frappe/public/js/frappe/views/reports/query_report.js:284
+#: frappe/public/js/frappe/views/reports/query_report.js:1190
msgid "Create Chart"
msgstr "Kreiraj Grafikon"
@@ -5956,7 +5846,7 @@ msgstr "Kreirano"
msgid "Created At"
msgstr "Kreirano"
-#: frappe/model/meta.py:56
+#: 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
@@ -5968,14 +5858,14 @@ msgid "Created Custom Field {0} in {1}"
msgstr "Kreirano Prilagođeno Polje {0} u {1}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241
-#: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:51
+#: 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 "Kreirano"
-#: frappe/public/js/frappe/desk.js:515
+#: frappe/public/js/frappe/desk.js:523
#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
msgstr "Kreiranje {0}"
@@ -5998,7 +5888,7 @@ msgstr "Cron"
msgid "Cron Format"
msgstr "Cron Format"
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:59
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
msgstr "Cron format je potreban za tipove poslova sa Cron frekvencijom."
@@ -6395,11 +6285,6 @@ msgstr "NACRT"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -6408,9 +6293,6 @@ msgstr "NACRT"
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:398
#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
@@ -6964,7 +6846,7 @@ msgstr "Odgođeno"
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/toolbar.js:461
-#: frappe/public/js/frappe/views/reports/report_view.js:1734
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
@@ -7007,7 +6889,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Izbriši Karticu"
-#: frappe/public/js/frappe/views/reports/query_report.js:932
+#: frappe/public/js/frappe/views/reports/query_report.js:934
msgid "Delete and Generate New"
msgstr "Izbriši i Generiši Novi"
@@ -7016,7 +6898,7 @@ msgctxt "Button text"
msgid "Delete column"
msgstr "Izbriši Kolonu"
-#: frappe/public/js/frappe/form/footer/form_timeline.js:738
+#: frappe/public/js/frappe/form/footer/form_timeline.js:741
msgid "Delete comment?"
msgstr "Izbriši komentar?"
@@ -7102,7 +6984,7 @@ msgstr "Brisanje {0} u toku"
msgid "Deleting {0} records..."
msgstr "Brisanje {0} zapisa u toku..."
-#: frappe/public/js/frappe/model/model.js:741
+#: frappe/public/js/frappe/model/model.js:692
msgid "Deleting {0}..."
msgstr "Brisanje {0} u toku..."
@@ -7148,7 +7030,7 @@ msgstr "Odjel"
#. 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:310
+#: frappe/public/js/frappe/widgets/widget_dialog.js:323
#: frappe/www/attribution.html:29
msgid "Dependencies"
msgstr "Zavisnosti"
@@ -7262,6 +7144,7 @@ msgstr "Tema Radne Površine"
#: 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
@@ -7559,14 +7442,10 @@ 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:1189
+#: frappe/public/js/frappe/form/grid.js:1193
msgid "Do not edit headers which are preset in the template"
msgstr "Ne uređiuji zaglavlja koja su unaprijed postavljena u šablonu"
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:69
-msgid "Do not have permission to access bucket {0}."
-msgstr "Nemate dozvolu za pristup korpi {0}."
-
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr "Želiš li i dalje nastaviti?"
@@ -7702,7 +7581,7 @@ msgstr "DocType Stanje"
#. 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:466
+#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
msgstr "DocType Prikaz"
@@ -7762,7 +7641,7 @@ msgstr "DocTypes se ne mogu mijenjati, umjesto toga koristite {0}"
#. 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:669
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
msgid "Doctype"
msgstr "Doctype"
@@ -7880,7 +7759,7 @@ msgstr "Uslov Pravila Imenovanja Dokumenta"
msgid "Document Naming Settings"
msgstr "Postavke Imenovanja Dokumenata"
-#: frappe/model/document.py:477
+#: frappe/model/document.py:476
msgid "Document Queued"
msgstr "Dokument u Redu Čekanja"
@@ -7933,7 +7812,7 @@ msgstr "Izvještaj Dijeljenju Dokumenta"
msgid "Document States"
msgstr "Stanja Dokumenta"
-#: frappe/model/meta.py:52 frappe/public/js/frappe/model/meta.js:202
+#: 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 "Status Dokumenta"
@@ -8004,11 +7883,11 @@ msgstr "Tip Dokumenta"
msgid "Document Type and Function are required to create a number card"
msgstr "Tip i Funkcija Dokumenta su obavezni za kreiranje numeričke kartice"
-#: frappe/permissions.py:148
+#: frappe/permissions.py:149
msgid "Document Type is not importable"
msgstr "Tip Dokumenta nemože se importirati"
-#: frappe/permissions.py:144
+#: frappe/permissions.py:145
msgid "Document Type is not submittable"
msgstr "Tip Dokumenta se ne može podnijeti"
@@ -8037,7 +7916,7 @@ msgid "Document Types and Permissions"
msgstr "Tipovi Dokumenata i Dozvole"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1943
+#: frappe/model/document.py:1942
msgid "Document Unlocked"
msgstr "Dokument Otključan"
@@ -8228,7 +8107,7 @@ msgstr "Link Preuzimanja"
msgid "Download PDF"
msgstr "Preuzmi PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:835
+#: frappe/public/js/frappe/views/reports/query_report.js:830
msgid "Download Report"
msgstr "Preuzmi izvještaj"
@@ -8239,7 +8118,7 @@ msgstr "Preuzmi Nacrt"
#: 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:57
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
msgid "Download Your Data"
msgstr "Preuzmi Podatke"
@@ -8295,29 +8174,6 @@ msgstr "Pvuci da dodate stanje"
msgid "Drop files here"
msgstr "Ispusti datoteke ovdje"
-#. Label of the dropbox_access_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Access Token"
-msgstr "Pristupni Token Dropboxa"
-
-#. Label of the dropbox_refresh_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Refresh Token"
-msgstr "Token za osvježavanje Dropboxa"
-
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Dropbox Settings"
-msgstr "Dropbox Postavke"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:347
-msgid "Dropbox Setup"
-msgstr "Dropbox Postavljanje"
-
#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
@@ -8347,7 +8203,7 @@ msgstr "Dvostruki Unos"
msgid "Duplicate Filter Name"
msgstr "Duplicirani Naziv Filtera"
-#: frappe/model/base_document.py:666 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Duplicirano Ime"
@@ -8446,13 +8302,13 @@ msgstr "ESC"
#: 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:668
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:669
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:883
-#: frappe/public/js/frappe/views/reports/query_report.js:1722
+#: frappe/public/js/frappe/views/reports/query_report.js:878
+#: frappe/public/js/frappe/views/reports/query_report.js:1724
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8615,7 +8471,7 @@ msgstr "Uredi vaš odgovor"
msgid "Edit your workflow visually using the Workflow Builder."
msgstr "Uredi vaš Radni Tok vizuelno koristeći Alat Razvoja Radnog Toka."
-#: frappe/public/js/frappe/views/reports/report_view.js:672
+#: frappe/public/js/frappe/views/reports/report_view.js:678
#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
msgstr "Uredi {0}"
@@ -8716,7 +8572,7 @@ msgstr "Račun e-pošte je onemogućen."
msgid "Email Account Name"
msgstr "Ime Računa e-pošte"
-#: frappe/core/doctype/user/user.py:736
+#: frappe/core/doctype/user/user.py:738
msgid "Email Account added multiple times"
msgstr "Račun e-pošte je dodan više puta"
@@ -8724,7 +8580,7 @@ msgstr "Račun e-pošte je dodan više puta"
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
msgstr "Račun e-pošte nije postavljen. Molimo kreirajte novi račun e-pošte iz Postavke > Račun e-pošte"
-#: frappe/email/doctype/email_account/email_account.py:578
+#: frappe/email/doctype/email_account/email_account.py:576
msgid "Email Account {0} Disabled"
msgstr "Račun e-pošte {0} Onemogućen"
@@ -8950,7 +8806,7 @@ msgstr "E-pošta"
msgid "Emails Pulled"
msgstr "E-pošta Povučena"
-#: frappe/email/doctype/email_account/email_account.py:936
+#: frappe/email/doctype/email_account/email_account.py:934
msgid "Emails are already being pulled from this account."
msgstr "E-pošta se već povlači s ovog računa."
@@ -8973,11 +8829,9 @@ msgstr "Prazna kolona"
#. 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 Drive'
#. 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_drive/google_drive.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
msgstr "Omogući"
@@ -8997,11 +8851,6 @@ msgstr "Omogućite Dozvoli Automatsko Ponavljanje za tip dokumenta {0} u formi z
msgid "Enable Auto Reply"
msgstr "Omogući Automatski Odgovor"
-#. Label of the enabled (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Enable Automatic Backup"
-msgstr "Omogući Automatsko Pravljenje Sigurnosnih Kopija"
-
#. Label of the enable_automatic_linking (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -9161,7 +9010,6 @@ msgstr "Omogući praćenje web stranice u aplikaciji"
#. 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 'Dropbox Settings'
#. 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'
@@ -9172,7 +9020,6 @@ msgstr "Omogući praćenje web stranice u aplikaciji"
#: 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/dropbox_settings/dropbox_settings.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/public/js/frappe/model/indicator.js:106
@@ -9185,7 +9032,7 @@ msgstr "Omogućeno"
msgid "Enabled Scheduler"
msgstr "Raspoređivač Omogućen"
-#: frappe/email/doctype/email_account/email_account.py:1012
+#: frappe/email/doctype/email_account/email_account.py:1010
msgid "Enabled email inbox for user {0}"
msgstr "Omogućeno prijemno sanduče e-pošte za korisnika {0}"
@@ -9266,11 +9113,6 @@ msgstr "Datum Završetka ne može biti prije datuma početka!"
msgid "Ended At"
msgstr "Završeno"
-#. Label of the endpoint_url (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Endpoint URL"
-msgstr "URL Krajnje Tačke"
-
#. Label of the sb_endpoints_section (Section Break) field in DocType
#. 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -9449,7 +9291,7 @@ msgstr "Greška u Obavještenju"
msgid "Error in print format on line {0}: {1}"
msgstr "Greška u formatu za ispisivanje na liniji {0}: {1}"
-#: frappe/email/doctype/email_account/email_account.py:672
+#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "Greška prilikom povezivanja na račun e-pošte {0}"
@@ -9457,15 +9299,15 @@ msgstr "Greška prilikom povezivanja na račun e-pošte {0}"
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:806
+#: frappe/model/base_document.py:803
msgid "Error: Data missing in table {0}"
msgstr "Greška: Podaci nedostaju u tabeli {0}"
-#: frappe/model/base_document.py:816
+#: frappe/model/base_document.py:813
msgid "Error: Value missing for {0}: {1}"
msgstr "Greška: Nedostaje vrijednost za {0}: {1}"
-#: frappe/model/base_document.py:810
+#: frappe/model/base_document.py:807
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "Greška: {0} Red #{1}: Nedostaje vrijednost za: {2}"
@@ -9614,7 +9456,7 @@ msgstr "Izvršava se Kod"
msgid "Executing..."
msgstr "Izvršavanje..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2069
+#: frappe/public/js/frappe/views/reports/query_report.js:2071
msgid "Execution Time: {0} sec"
msgstr "Vrijeme izvršenja: {0} sek"
@@ -9640,7 +9482,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Proširi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Rasklopi Sve"
@@ -9697,8 +9539,8 @@ 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:1757
-#: frappe/public/js/frappe/views/reports/report_view.js:1621
+#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Izvoz"
@@ -9749,11 +9591,11 @@ msgstr "Eksportiraj Izvještaj: {0}"
msgid "Export Type"
msgstr "Tip Izvoza"
-#: frappe/public/js/frappe/views/reports/report_view.js:1632
+#: frappe/public/js/frappe/views/reports/report_view.js:1638
msgid "Export all matching rows?"
msgstr "Eksportiraj sve podudarne redove?"
-#: frappe/public/js/frappe/views/reports/report_view.js:1642
+#: frappe/public/js/frappe/views/reports/report_view.js:1648
msgid "Export all {0} rows?"
msgstr "Eksportiraj sve {0} redove?"
@@ -10061,8 +9903,8 @@ msgstr "Preuzimaju se standard Dokumenata Globalnog Pretraživanja."
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:237
-#: frappe/public/js/frappe/views/reports/query_report.js:1816
+#: frappe/public/js/frappe/views/reports/query_report.js:235
+#: frappe/public/js/frappe/views/reports/query_report.js:1818
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10137,7 +9979,7 @@ msgstr "Tip polja se ne može promijeniti za {0}"
msgid "Field {0} does not exist on {1}"
msgstr "Polje {0} ne postoji na {1}"
-#: frappe/desk/form/meta.py:208
+#: frappe/desk/form/meta.py:184
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr "Polje {0} se odnosi na nepostojeći tip dokumenta {1}."
@@ -10240,7 +10082,7 @@ msgstr "Polja Višestrukog Odabira"
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr "Polja `file_name` ili `file_url` moraju biti postavljena za datoteku"
-#: frappe/model/db_query.py:144
+#: frappe/model/db_query.py:146
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"
@@ -10289,13 +10131,6 @@ msgstr "Datoteka \"{0}\" je preskočena zbog nevažećeg tipa datoteke"
msgid "File '{0}' not found"
msgstr "Datoteka '{0}' nije pronađena"
-#. Label of the file_backup (Check) field in DocType 'Dropbox Settings'
-#. Label of the file_backup (Check) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "File Backup"
-msgstr "Sigurnosna Kopija Datoteke"
-
#. Label of the private_file_section (Section Break) field in DocType 'Access
#. Log'
#: frappe/core/doctype/access_log/access_log.json
@@ -10496,7 +10331,7 @@ msgstr "Filteri će biti dostupni putem filters.
Pošalji i
msgid "Filters {0}"
msgstr "Filteri {0}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1421
+#: frappe/public/js/frappe/views/reports/report_view.js:1427
msgid "Filters:"
msgstr "Filteri:"
@@ -10643,7 +10478,7 @@ msgstr "Sljedeći Filteri Izvještaja nemaju vrijednosti:"
msgid "Following document {0}"
msgstr "Pratim dokument {0}"
-#: frappe/website/doctype/web_form/web_form.py:111
+#: frappe/website/doctype/web_form/web_form.py:108
msgid "Following fields are missing:"
msgstr "Nedostaju sljedeća polja:"
@@ -10651,7 +10486,7 @@ msgstr "Nedostaju sljedeća polja:"
msgid "Following fields have invalid values:"
msgstr "Sljedeća polja imaju nevažeće vrijednosti:"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:345
+#: frappe/public/js/frappe/widgets/widget_dialog.js:358
msgid "Following fields have missing values"
msgstr "Sljedeća polja nemaju vrijednosti"
@@ -10794,7 +10629,7 @@ msgstr "Za Dokument"
msgid "For Document Type"
msgstr "Za Tip Dokumenta"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:553
+#: frappe/public/js/frappe/widgets/widget_dialog.js:566
msgid "For Example: {} Open"
msgstr "Na Primjer: {} Otvori"
@@ -10824,7 +10659,7 @@ msgstr "Za Korisnika"
msgid "For Value"
msgstr "Za Vrijednost"
-#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/query_report.js:2068
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Za poređenje, koristite >5, <10 ili =324. Za raspone koristite 5:10 (za vrijednosti između 5 i 10)."
@@ -10977,7 +10812,7 @@ msgstr "Forma URL Kodirana"
#. 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:552
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
msgid "Format"
msgstr "Format"
@@ -11009,7 +10844,7 @@ msgstr "Jedinice Frakcije"
#. 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:149
+#: frappe/www/login.py:153
msgid "Frappe"
msgstr "Frappe"
@@ -11026,7 +10861,7 @@ msgstr "Frappe Light"
msgid "Frappe Mail"
msgstr "Frappe Mail"
-#: frappe/email/doctype/email_account/email_account.py:549
+#: frappe/email/doctype/email_account/email_account.py:547
msgid "Frappe Mail OAuth Error"
msgstr "Frappe Mail OAuth greška"
@@ -11054,13 +10889,11 @@ msgstr "Slobodno"
#. 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'
-#. Label of the frequency (Select) field in DocType 'Google Drive'
#: 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/integrations/doctype/google_drive/google_drive.json
#: frappe/public/js/frappe/utils/common.js:395
msgid "Frequency"
msgstr "Učestalost"
@@ -11106,7 +10939,7 @@ msgstr "Od Datuma"
msgid "From Date Field"
msgstr "Od Datuma"
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
+#: frappe/public/js/frappe/views/reports/query_report.js:1779
msgid "From Document Type"
msgstr "Od Dokumenta"
@@ -11157,16 +10990,16 @@ msgstr "Puna Širina"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:247
-#: frappe/public/js/frappe/widgets/widget_dialog.js:686
+#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Funkcija"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:693
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
msgstr "Funkcija zasnovana na"
-#: frappe/__init__.py:670
+#: frappe/__init__.py:677
msgid "Function {0} is not whitelisted."
msgstr "Funkcija {0} nije na bijeloj listi."
@@ -11231,7 +11064,7 @@ msgstr "Općenito"
msgid "Generate Keys"
msgstr "Generiši Ključeve"
-#: frappe/public/js/frappe/views/reports/query_report.js:877
+#: frappe/public/js/frappe/views/reports/query_report.js:872
msgid "Generate New Report"
msgstr "Generiši Novi Izvještaj"
@@ -11519,32 +11352,12 @@ msgstr "Google Kontakti - Nije moguće ažurirati kontakt u Google Kontaktima {0
msgid "Google Contacts Id"
msgstr "Id Google Kontakata"
-#. Name of a DocType
-#. Label of the google_drive_section (Section Break) field in DocType 'Google
-#. Drive'
#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/google_drive/google_drive.json
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr "Google Disk"
-#: frappe/integrations/doctype/google_drive/google_drive.py:117
-msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}"
-msgstr "Google Disk - Nije moguće kreirati mapu na Google Disku - kod greške {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:132
-msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}"
-msgstr "Google Disk - Nije moguće pronaći mapu na Google Disku - kod greške {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:193
-msgid "Google Drive - Could not locate - {0}"
-msgstr "Google Disk - Nije moguće locirati - {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:204
-msgid "Google Drive Backup Successful."
-msgstr "Sigurnosna Kopija Google Diska uspjela."
-
#. Label of the section_break_7 (Section Break) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -11874,6 +11687,10 @@ msgstr "Skripte Zaglavlja/Podnožja mogu se koristiti za dodavanje dinamičkog p
msgid "Headers"
msgstr "Zaglavlja"
+#: frappe/email/email_body.py:322
+msgid "Headers must be a dictionary"
+msgstr "Zaglavlja moraju biti rječnik"
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -12197,17 +12014,17 @@ msgstr "Početna Stranica"
msgid "Home Settings"
msgstr "Početna Postavke"
-#: frappe/core/doctype/file/test_file.py:330
-#: frappe/core/doctype/file/test_file.py:332
-#: frappe/core/doctype/file/test_file.py:396
+#: 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 "Početna/Test Maps 1"
-#: frappe/core/doctype/file/test_file.py:385
+#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
msgstr "Početna/Test Mapa 1/Test Mapa 3"
-#: frappe/core/doctype/file/test_file.py:341
+#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
msgstr "Početna/Test Mapa 2"
@@ -12252,7 +12069,7 @@ msgstr "Pretpostavka je da još nemate pristup nijednom radnom prostoru, ali ga
#: frappe/core/doctype/data_import/importer.py:1177
#: frappe/core/doctype/data_import/importer.py:1242
#: frappe/core/doctype/data_import/importer.py:1245
-#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:50
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
#: frappe/public/js/frappe/list/list_settings.js:337
@@ -12264,7 +12081,7 @@ msgid "ID"
msgstr "ID"
#: frappe/desk/reportview.py:491
-#: frappe/public/js/frappe/views/reports/report_view.js:978
+#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
msgstr "ID"
@@ -12448,12 +12265,6 @@ msgstr "Ako je omogućeno, korisnici koji se prijavljuju s ograničene IP adrese
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
msgstr "Ako je omogućeno, korisnici će biti obaviješteni svaki put kada se prijave. Ako nije omogućeno, korisnici će biti obaviješteni samo jednom."
-#. Description of the 'Backup Path' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "If it's empty, it will backup to the root of the bucket."
-msgstr "Ako je prazno, sigurnosna kopija će se napraviti u korijenu spremnika."
-
#. 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"
@@ -12584,16 +12395,12 @@ msgstr "Zanemari priloge veće od ove veličine"
msgid "Ignored Apps"
msgstr "Ignorisane Aplikacije"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:348
-msgid "Illegal Access Token. Please try again"
-msgstr "Ilegalni Token Pristupa. Pokušaj ponovo"
-
#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
msgstr "Ilegalan Status Dokumenta za {0}"
-#: frappe/model/db_query.py:451 frappe/model/db_query.py:454
-#: frappe/model/db_query.py:1128
+#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
+#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
msgstr "Ilegalan SQL Upit"
@@ -12942,11 +12749,11 @@ msgstr "Uključite Teme iz Aplikacija"
msgid "Include Web View Link in Email"
msgstr "Uključi Web Pregled vezu u e-poštu"
-#: frappe/public/js/frappe/views/reports/query_report.js:1592
+#: frappe/public/js/frappe/views/reports/query_report.js:1594
msgid "Include filters"
msgstr "Uključi Filtere"
-#: frappe/public/js/frappe/views/reports/query_report.js:1584
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Include indentation"
msgstr "Uključi Uvlačenje"
@@ -13013,11 +12820,11 @@ msgstr "Netačan korisnik ili lozinka"
msgid "Incorrect Verification code"
msgstr "Netačan Verifikacioni Kod"
-#: frappe/model/document.py:1542
+#: frappe/model/document.py:1541
msgid "Incorrect value in row {0}:"
msgstr "Netačna vrijednost u redu {0}:"
-#: frappe/model/document.py:1544
+#: frappe/model/document.py:1543
msgid "Incorrect value:"
msgstr "Netačna vrijednost:"
@@ -13026,10 +12833,10 @@ msgstr "Netačna vrijednost:"
#. 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:53
+#: 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:999
+#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
msgstr "Indeks"
@@ -13104,7 +12911,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:1822
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
msgid "Insert After"
msgstr "Umetni Poslije"
@@ -13120,7 +12927,7 @@ msgstr "Umetni Nakon polja '{0}' spomenutog u prilagođenom polju '{1}', sa ozna
msgid "Insert Below"
msgstr "Umetni Ispod"
-#: frappe/public/js/frappe/views/reports/report_view.js:384
+#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
msgstr "Umetni Kolonu Ispred {0}"
@@ -13169,11 +12976,11 @@ msgstr "Instrukcije"
msgid "Instructions Emailed"
msgstr "Instrukcije Poslane e-poštom"
-#: frappe/permissions.py:818
+#: frappe/permissions.py:827
msgid "Insufficient Permission Level for {0}"
msgstr "Nedovoljan Nivo Dozvola za {0}"
-#: frappe/database/query.py:376
+#: frappe/database/query.py:383
msgid "Insufficient Permission for {0}"
msgstr "Nedovoljne Dozvole za {0}"
@@ -13291,7 +13098,7 @@ msgstr "Nevažeći"
#: frappe/public/js/form_builder/utils.js:221
#: frappe/public/js/frappe/form/grid_row.js:833
#: frappe/public/js/frappe/form/layout.js:811
-#: frappe/public/js/frappe/views/reports/report_view.js:710
+#: frappe/public/js/frappe/views/reports/report_view.js:716
msgid "Invalid \"depends_on\" expression"
msgstr "Nevažeći izraz \"depends_on\""
@@ -13331,7 +13138,7 @@ msgstr "Nevažeći Datum"
msgid "Invalid DocType"
msgstr "Nevažeći DocType"
-#: frappe/database/query.py:102
+#: frappe/database/query.py:103
msgid "Invalid DocType: {0}"
msgstr "Nevažeći DocType: {0}"
@@ -13376,6 +13183,7 @@ msgid "Invalid Naming Series: {}"
msgstr "Nevažeća Serija Imenovanja: {}"
#: frappe/core/doctype/rq_job/rq_job.py:113
+#: frappe/core/doctype/rq_job/rq_job.py:122
msgid "Invalid Operation"
msgstr "Nevažeća Operacija"
@@ -13400,7 +13208,7 @@ msgstr "Nevažeće Nadjačavanje"
msgid "Invalid Parameters."
msgstr "Nevažeći Parametri."
-#: frappe/core/doctype/user/user.py:1226 frappe/www/update-password.html:123
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
#: frappe/www/update-password.html:247
msgid "Invalid Password"
@@ -13429,7 +13237,7 @@ msgstr "Nevažeća Tranzicija"
#: frappe/core/doctype/file/file.py:220
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
-#: frappe/public/js/frappe/widgets/widget_dialog.js:589
+#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
msgstr "Nevažeći URL"
@@ -13450,11 +13258,11 @@ msgstr "Nevažeća Tajna Webhooka"
msgid "Invalid aggregate function"
msgstr "Nevažeća agregatna funkcija"
-#: frappe/public/js/frappe/views/reports/report_view.js:393
+#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "Nevažeća kolona"
-#: frappe/model/document.py:1015 frappe/model/document.py:1029
+#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "Nevažeći status dokumenta"
@@ -13478,7 +13286,7 @@ 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:182
+#: frappe/database/query.py:189
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "Nevažeći filter: {0}"
@@ -13504,7 +13312,7 @@ msgstr "Nevažeći ili oštećeni sadržaj za uvoz"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Nevažeći regex za preusmjeravanje u redu #{}: {}"
-#: frappe/app.py:324
+#: frappe/app.py:317
msgid "Invalid request arguments"
msgstr "Nevažeći argumenti zahtjeva"
@@ -13688,7 +13496,7 @@ msgstr "Je Objavljeno Polje mora biti važeći naziv polja"
#. Label of the is_query_report (Check) field in DocType 'Workspace Link'
#: frappe/desk/doctype/workspace_link/workspace_link.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:328
+#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
msgstr "Je Izvještaj Upita"
@@ -13903,6 +13711,10 @@ msgstr "Status Posla"
msgid "Job Stopped Successfully"
msgstr "Posao Uspješno Zaustavljen"
+#: frappe/core/doctype/rq_job/rq_job.py:121
+msgid "Job is in {0} state and can't be cancelled"
+msgstr "Posao je u stanju {0} i ne može se otkazati"
+
#: frappe/core/doctype/rq_job/rq_job.py:113
msgid "Job is not running."
msgstr "Posao se ne izvodi."
@@ -13934,7 +13746,7 @@ msgstr "Oglasna Tabla"
#. 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:498
+#: frappe/public/js/frappe/widgets/widget_dialog.js:511
msgid "Kanban Board"
msgstr "Oglasna Tabla"
@@ -14206,10 +14018,10 @@ msgstr "LDAP postavke su netačne. odgovor validacije je bio: {0}"
#: 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:300
-#: frappe/public/js/frappe/widgets/widget_dialog.js:453
-#: frappe/public/js/frappe/widgets/widget_dialog.js:630
-#: frappe/public/js/frappe/widgets/widget_dialog.js:663
+#: 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
@@ -14294,11 +14106,6 @@ msgstr "Posljednjih 90 Dana"
msgid "Last Active"
msgstr "Zadnja Aktivnost"
-#. Label of the last_backup_on (Datetime) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Last Backup On"
-msgstr "Zadnja Sigurnosna Kopija"
-
#. 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"
@@ -14383,12 +14190,12 @@ msgstr "Zadnja Sinhronizacija"
msgid "Last Synced On"
msgstr "Zadnja Sinhronizacija"
-#: frappe/model/meta.py:55 frappe/public/js/frappe/model/meta.js:205
+#: 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 "Posljednji put Ažurirano od"
-#: frappe/model/meta.py:54 frappe/public/js/frappe/model/meta.js:204
+#: 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 "Zadnji put Ažurirano"
@@ -14432,7 +14239,7 @@ msgid "Leave blank to repeat always"
msgstr "Ostavite prazno da se uvijek ponavlja"
#: frappe/core/doctype/communication/mixins.py:207
-#: frappe/email/doctype/email_account/email_account.py:722
+#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
msgstr "Napusti ovu konverzaciju"
@@ -14651,7 +14458,7 @@ msgstr "Lajk na {0}: {1}"
msgid "Liked"
msgstr "Lajk"
-#: frappe/model/meta.py:58 frappe/public/js/frappe/model/meta.js:208
+#: 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 "Lajkad Od"
@@ -14666,11 +14473,6 @@ msgstr "Lajkova"
msgid "Limit"
msgstr "Ograniči"
-#. Label of the limit_no_of_backups (Check) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Limit Number of DB Backups"
-msgstr "Ograniči Broj Sigurnosnih Kopija Baze Podataka na"
-
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14785,11 +14587,11 @@ msgstr "Naziv Veze"
#: 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:414
+#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
msgstr "Poveži Sa"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:350
+#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
msgstr "Poveži sa Redom"
@@ -14802,7 +14604,7 @@ msgstr "Poveži sa Redom"
msgid "Link Type"
msgstr "Tip Veze"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:346
+#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
msgstr "Tip Veze u Redu"
@@ -14954,7 +14756,7 @@ msgstr "Učitaj više"
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1085
+#: frappe/public/js/frappe/views/reports/query_report.js:1087
msgid "Loading"
msgstr "Učitava se"
@@ -15085,7 +14887,7 @@ msgstr "Metode Prijave"
msgid "Login Page"
msgstr "Stranica Prijave"
-#: frappe/www/login.py:152
+#: frappe/www/login.py:156
msgid "Login To {0}"
msgstr "Prijavite se na {0}"
@@ -15352,7 +15154,7 @@ msgstr "Obavezno Zavisi od"
msgid "Mandatory Depends On (JS)"
msgstr "Obavezno Zavisi od (JS)"
-#: frappe/website/doctype/web_form/web_form.py:473
+#: frappe/website/doctype/web_form/web_form.py:470
msgid "Mandatory Information missing:"
msgstr "Nedostaju obavezne informacije:"
@@ -15627,7 +15429,7 @@ msgid "Menu"
msgstr "Meni"
#: frappe/public/js/frappe/form/toolbar.js:242
-#: frappe/public/js/frappe/model/model.js:754
+#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "Spoji sa postojećim"
@@ -15806,7 +15608,7 @@ msgstr "Meta naslov za SEO"
msgid "Method"
msgstr "Metoda"
-#: frappe/__init__.py:672
+#: frappe/__init__.py:679
msgid "Method Not Allowed"
msgstr "Metoda nije Dozvoljena"
@@ -15883,7 +15685,7 @@ msgstr "Pogrešno konfigurisano"
msgid "Miss"
msgstr "Gospođica"
-#: frappe/desk/form/meta.py:218
+#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
msgstr "Nedostaje DocType"
@@ -15908,7 +15710,7 @@ msgid "Missing Value"
msgstr "Nedostaje Vrijednost"
#: frappe/public/js/frappe/ui/field_group.js:124
-#: frappe/public/js/frappe/widgets/widget_dialog.js:361
+#: 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"
@@ -16091,8 +15893,6 @@ msgstr "Mjesec"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -16100,7 +15900,6 @@ msgstr "Mjesec"
#: 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/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:400
#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
@@ -16272,7 +16071,7 @@ msgid "Mx"
msgstr "Mx"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:462
+#: frappe/website/doctype/web_form/web_form.py:459
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16440,7 +16239,7 @@ msgstr "Postavke Navigacije"
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "Potrebna je uloga Upravitelja Radnog Prostora za uređivanje privatnog radnog prostora drugih korisnika"
-#: frappe/model/document.py:793
+#: frappe/model/document.py:792
msgid "Negative Value"
msgstr "Negativna Vrijednost"
@@ -16545,7 +16344,7 @@ msgstr "Nova Pruka sa Kontaktne Web Stranice"
#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
#: frappe/public/js/frappe/form/toolbar.js:218
-#: frappe/public/js/frappe/model/model.js:762
+#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "Novo Ime"
@@ -16579,7 +16378,7 @@ msgstr "Novo Ime Formata Ispisa"
msgid "New Quick List"
msgstr "Nova Brza Lista"
-#: frappe/public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
msgstr "Novi Naziv Izvještaja"
@@ -16635,26 +16434,26 @@ msgstr "Nova vrijednost koju treba postaviti"
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
#: frappe/public/js/frappe/form/toolbar.js:558
-#: frappe/public/js/frappe/model/model.js:661
+#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:379
+#: frappe/website/doctype/web_form/web_form.py:376
msgid "New {0}"
msgstr "Novi {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:394
+#: frappe/public/js/frappe/views/reports/query_report.js:392
msgid "New {0} Created"
msgstr "Novi {0} Kreiran"
-#: frappe/public/js/frappe/views/reports/query_report.js:386
+#: frappe/public/js/frappe/views/reports/query_report.js:384
msgid "New {0} {1} added to Dashboard {2}"
msgstr "Novi {0} {1} dodan na Nadzornu Tablu {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:391
+#: frappe/public/js/frappe/views/reports/query_report.js:389
msgid "New {0} {1} created"
msgstr "Novi {0} {1} kreiran"
@@ -16666,7 +16465,7 @@ msgstr "Novi {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "Dostupna su nova {} izdanja za sljedeće aplikacije"
-#: frappe/core/doctype/user/user.py:802
+#: frappe/core/doctype/user/user.py:804
msgid "Newly created user {0} has no roles enabled."
msgstr "Novokreirani korisnik {0} nema omogućene uloge."
@@ -16828,7 +16627,7 @@ msgstr "Sljedeća na Klik"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Ne"
@@ -16969,7 +16768,7 @@ msgstr "Nema Rezultata"
msgid "No Results found"
msgstr "Nema Rezultata"
-#: frappe/core/doctype/user/user.py:803
+#: frappe/core/doctype/user/user.py:805
msgid "No Roles Specified"
msgstr "Nisu Navedene Uloge"
@@ -17120,7 +16919,7 @@ msgstr "Broj Redova (Max. 500)"
msgid "No of Sent SMS"
msgstr "Broj Poslanih SMS-ova"
-#: frappe/__init__.py:827 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Nema dozvole za {0}"
@@ -17129,7 +16928,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "Nema dozvole za '{0}' {1}"
-#: frappe/model/db_query.py:949
+#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
msgstr "Nema dozvole za čitanje {0}"
@@ -17213,12 +17012,6 @@ msgstr "Nije Negativno"
msgid "Non-Conforming"
msgstr "Neusklađen"
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "None"
-msgstr "Nijedan"
-
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr "Ništa: Kraj Radnog Toka"
@@ -17233,7 +17026,7 @@ msgstr "Normalizovane Kopije"
msgid "Normalized Query"
msgstr "Normalizovani Upit"
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "Nije Dozvoljeno"
@@ -17254,7 +17047,7 @@ msgstr "Nisu Podređeni Od"
msgid "Not Equals"
msgstr "Nije Jednako"
-#: frappe/app.py:374 frappe/www/404.html:3
+#: frappe/app.py:367 frappe/www/404.html:3
msgid "Not Found"
msgstr "Nije Pronađeno"
@@ -17280,9 +17073,9 @@ msgstr "Nije povezano ni sa jednim zapisom"
msgid "Not Nullable"
msgstr "Nemože se Nulirati"
-#: frappe/__init__.py:754 frappe/app.py:367 frappe/desk/calendar.py:26
+#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:711
+#: frappe/website/doctype/web_form/web_form.py:708
#: 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
@@ -17303,7 +17096,7 @@ msgstr "Nije Objavljeno"
#: frappe/public/js/frappe/form/toolbar.js:813
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
-#: frappe/public/js/frappe/views/reports/report_view.js:197
+#: frappe/public/js/frappe/views/reports/report_view.js:203
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
@@ -17334,7 +17127,7 @@ msgstr "Nije Postavljeno"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "Nije važeća Vrijednost Odvojena Zarezima (CSV datoteka)"
-#: frappe/core/doctype/user/user.py:264
+#: frappe/core/doctype/user/user.py:265
msgid "Not a valid User Image."
msgstr "Nije važeća Korisnička slika."
@@ -17350,7 +17143,7 @@ msgstr "Nije važeći korisnik"
msgid "Not active"
msgstr "Nije aktivno"
-#: frappe/permissions.py:360
+#: frappe/permissions.py:370
msgid "Not allowed for {0}: {1}"
msgstr "Nije dozvoljeno za {0}: {1}"
@@ -17370,7 +17163,7 @@ msgstr "Nije dozvoljen ispis otkazanih dokumenata"
msgid "Not allowed to print draft documents"
msgstr "Nije dozvoljen ispis nacrta dokumenata"
-#: frappe/permissions.py:212
+#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
msgstr "Nije dozvoljeno putem provjere dozvole kontrolora"
@@ -17386,12 +17179,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:214
+#: frappe/core/doctype/system_settings/system_settings.py:215
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:724
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Nije dozvoljeno"
@@ -17417,15 +17210,6 @@ msgstr "Napomena Viđena Od"
msgid "Note:"
msgstr "Napomena:"
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'Dropbox Settings'
-#. Description of the 'Send Email for Successful backup' (Check) field in
-#. DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Note: By default emails for failed backups are sent."
-msgstr "Napomena: Prema standard postavkama šalju se e-pošta za neuspjele sigurnosne kopije."
-
#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "Napomena: Promjena naziva stranice će prekinuti prethodni URL na ovu stranicu."
@@ -17485,13 +17269,10 @@ msgstr "Ništa za ažuriranje"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
#. Name of a DocType
-#. Label of the notification_section (Section Break) field in DocType 'S3
-#. Backup Settings'
#: 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
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Notification"
msgstr "Obavještenje"
@@ -17593,7 +17374,7 @@ msgstr "Broj"
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:615
+#: frappe/public/js/frappe/widgets/widget_dialog.js:628
msgid "Number Card"
msgstr "Numerička Kartica"
@@ -17611,7 +17392,7 @@ msgstr "Naziv Numeričke Kartice"
#. Label of the number_cards_tab (Tab Break) field in DocType 'Workspace'
#. Label of the number_cards (Table) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:645
+#: frappe/public/js/frappe/widgets/widget_dialog.js:658
msgid "Number Cards"
msgstr "Numeričke Kartice"
@@ -17629,15 +17410,6 @@ msgstr "Format Broja"
msgid "Number of Backups"
msgstr "Broj Sigurnosnih Kopija"
-#. Label of the no_of_backups (Int) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Number of DB Backups"
-msgstr "Broj Sigurnosnih Kopija Baze Podataka"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:54
-msgid "Number of DB backups cannot be less than 1"
-msgstr "Broj Sigurnosnih Kopija Baze Podataka ne može biti manji od 1"
-
#. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Number of Groups"
@@ -17653,7 +17425,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:169
+#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
msgstr "Broj Sigurnosnih Kopija mora biti veći od nule."
@@ -17882,7 +17654,7 @@ msgstr "{0}, {1} je napisao:"
#. Label of the onboard (Check) field in DocType 'Workspace Link'
#: frappe/desk/doctype/workspace_link/workspace_link.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:322
+#: frappe/public/js/frappe/widgets/widget_dialog.js:335
msgid "Onboard"
msgstr "Introdukcija"
@@ -17978,19 +17750,13 @@ msgstr "Samo Upravitelj Radnog Prostorar može uređivati javne radne prostore"
msgid "Only allowed to export customizations in developer mode"
msgstr "Dozvoljeno je izvoziti prilagođavanja samo u načinu rada za programere"
-#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Only change this if you want to use other S3 compatible object storage backends."
-msgstr "Ovo promijenite samo ako želite koristiti druge S3 kompatibilne pozadine za pohranu objekata."
-
-#: frappe/model/document.py:1232
+#: frappe/model/document.py:1231
msgid "Only draft documents can be discarded"
msgstr "Mogu se odbaciti samo nacrti dokumenata"
#. Label of the only_for (Link) field in DocType 'Workspace Link'
#: frappe/desk/doctype/workspace_link/workspace_link.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:315
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
msgstr "Samo za"
@@ -18239,7 +18005,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:870
+#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
msgstr "Opcije nisu postavljene za polje veze {0}"
@@ -18351,7 +18117,7 @@ msgstr "ZAKRPA"
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1742
+#: frappe/public/js/frappe/views/reports/query_report.js:1744
msgid "PDF"
msgstr "PDF"
@@ -18650,7 +18416,7 @@ msgstr "Nadređeni je naziv dokumenta u koji će se dodati podaci."
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr "Grupiranje roditelj-dijete ili dijete-roditelj nije dozvoljeno."
-#: frappe/permissions.py:798
+#: frappe/permissions.py:807
msgid "Parentfield not specified in {0}: {1}"
msgstr "Nadređeno polje nije navedeno u {0}: {1}"
@@ -18710,11 +18476,11 @@ msgstr "Pasivno"
msgid "Password"
msgstr "Lozinka"
-#: frappe/core/doctype/user/user.py:1079
+#: frappe/core/doctype/user/user.py:1081
msgid "Password Email Sent"
msgstr "E-pošta s lozinkom poslana"
-#: frappe/core/doctype/user/user.py:457
+#: frappe/core/doctype/user/user.py:458
msgid "Password Reset"
msgstr "Poništavanje Lozinke"
@@ -18748,7 +18514,7 @@ msgstr "Nedostaje Lozinka za Račun e-pošte"
msgid "Password not found for {0} {1} {2}"
msgstr "Lozinka nije pronađena za {0} {1} {2}"
-#: frappe/core/doctype/user/user.py:1078
+#: frappe/core/doctype/user/user.py:1080
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Uputstva za poništavanje lozinke su poslana na e-poštu korisnika {}"
@@ -18760,7 +18526,7 @@ msgstr "Lozinka postavljena"
msgid "Password size exceeded the maximum allowed size"
msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu"
-#: frappe/core/doctype/user/user.py:869
+#: frappe/core/doctype/user/user.py:871
msgid "Password size exceeded the maximum allowed size."
msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu."
@@ -18917,7 +18683,7 @@ msgstr "Trajno Odbaci {0}?"
msgid "Permanently Submit {0}?"
msgstr "Trajno Podnesi {0}?"
-#: frappe/public/js/frappe/model/model.js:733
+#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
msgstr "Trajno izbriši {0}?"
@@ -19078,8 +18844,8 @@ msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Telefonski Broj {0} postavljen u polje {1} nije važeći."
#: frappe/public/js/frappe/form/print_utils.js:40
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
-#: frappe/public/js/frappe/views/reports/report_view.js:1576
+#: frappe/public/js/frappe/views/reports/report_view.js:1579
+#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
msgstr "Odaberi Kolone"
@@ -19119,7 +18885,7 @@ msgstr "Obični Tekst"
msgid "Plant"
msgstr "Pogon"
-#: frappe/email/doctype/email_account/email_account.py:546
+#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
msgstr "Ovlasti OAuth za račun e-pošte {0}"
@@ -19135,7 +18901,7 @@ msgstr "Kopiraj ovu Temu Web Stranice kako biste je prilagodili."
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "Instaliraj biblioteku ldap3 putem pip-a da biste koristili ldap funkcionalnost."
-#: frappe/public/js/frappe/views/reports/query_report.js:309
+#: frappe/public/js/frappe/views/reports/query_report.js:307
msgid "Please Set Chart"
msgstr "Postavi Grafikon"
@@ -19151,7 +18917,7 @@ msgstr "Dodaj predmet e-pošti"
msgid "Please add a valid comment."
msgstr "Dodaj relevantan komentar."
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1063
msgid "Please ask your administrator to verify your sign-up"
msgstr "Zamoli administratora da potvrdi vašu registraciju"
@@ -19179,11 +18945,11 @@ msgstr "Provjerite URL konfiguracije OpenID-a"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Provjeri vrijednosti filtera postavljene za Grafikon Nadzorne Table: {}"
-#: frappe/model/base_document.py:946
+#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Provjeri vrijednost \"Preuzmi iz\" postavljenu za polje {0}"
-#: frappe/core/doctype/user/user.py:1059
+#: frappe/core/doctype/user/user.py:1061
msgid "Please check your email for verification"
msgstr "Provjeri e-poštu za potvrdu"
@@ -19211,10 +18977,6 @@ msgstr "Klikni na sljedeću vezu i slijedi upute na stranici. {0}"
msgid "Please click on the following link to set your new password"
msgstr "Klikni na sljedeću vezu da postavite novu lozinku"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:343
-msgid "Please close this window"
-msgstr "Zatvori ovaj prozor"
-
#: frappe/www/confirm_workflow_action.html:4
msgid "Please confirm your action to {0} this document."
msgstr "Potvrdi akciju {0} ovog dokumenta."
@@ -19231,7 +18993,7 @@ msgstr "Kreiraj Numeričku Karticu"
msgid "Please create chart first"
msgstr "Kreiraj Grafikon"
-#: frappe/desk/form/meta.py:214
+#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
msgstr "Izbriši polje iz {0} ili dodaj traženi dokument."
@@ -19243,7 +19005,7 @@ msgstr "Ne mijenjaj Naslove Šablona."
msgid "Please duplicate this to make changes"
msgstr "Kopiraj ovo da izvršite promjene"
-#: frappe/core/doctype/system_settings/system_settings.py:162
+#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr "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."
@@ -19261,7 +19023,7 @@ msgstr "Omogući iskačuće prozore"
msgid "Please enable pop-ups in your browser"
msgstr "Omogući iskačuće prozore u vašem pretraživaču"
-#: frappe/integrations/google_oauth.py:53
+#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
msgstr "Omogući {} prije nego nastavite."
@@ -19338,7 +19100,7 @@ msgstr "Prijavi se da biste objavili komentar."
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "Provjeri da su Referentni Dokumenti Konverzacije kružno povezani."
-#: frappe/model/document.py:987
+#: frappe/model/document.py:986
msgid "Please refresh to get the latest document."
msgstr "Osvježi da dobijete najnoviji dokument."
@@ -19362,7 +19124,7 @@ msgstr "Spremi dokument prije dodjele"
msgid "Please save the document before removing assignment"
msgstr "Spremi dokument prije uklanjanja dodjele"
-#: frappe/public/js/frappe/views/reports/report_view.js:1703
+#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
msgstr "Prvo spremi izvještaj"
@@ -19378,11 +19140,11 @@ msgstr "Odaberi DocType"
msgid "Please select Entity Type first"
msgstr "Odaberi Tip Entiteta"
-#: frappe/core/doctype/system_settings/system_settings.py:112
+#: frappe/core/doctype/system_settings/system_settings.py:113
msgid "Please select Minimum Password Score"
msgstr "Odaberi Minimalnu Vrijednost Lozinke"
-#: frappe/public/js/frappe/views/reports/query_report.js:1181
+#: frappe/public/js/frappe/views/reports/query_report.js:1183
msgid "Please select X and Y fields"
msgstr "Odaberi X i Y polja"
@@ -19410,7 +19172,7 @@ msgstr "Odaberi važeći filter datuma"
msgid "Please select applicable Doctypes"
msgstr "Odaberi primjenjive Dokumente"
-#: frappe/model/db_query.py:1140
+#: frappe/model/db_query.py:1141
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "Odaberi najmanje 1 kolonu iz {0} za sortiranje/grupiranje"
@@ -19432,10 +19194,6 @@ msgstr "Odaberite LDAP mapu koja se koristi"
msgid "Please select {0}"
msgstr "Odaberi {0}"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:305
-msgid "Please set Dropbox access keys in site config or doctype"
-msgstr "Postavi pristupne ključeve Dropbox-a u konfiguraciji stranice ili tipu dokumenta"
-
#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
msgstr "Postavi adresu e-pošte"
@@ -19444,7 +19202,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:1404
+#: frappe/public/js/frappe/views/reports/query_report.js:1406
msgid "Please set filters"
msgstr "Postavi filtere"
@@ -19464,7 +19222,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:125
+#: frappe/core/doctype/system_settings/system_settings.py:126
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"
@@ -19472,19 +19230,19 @@ msgstr "Podesite SMS prije nego što ga postavite kao metodu provjere autentičn
msgid "Please setup a message first"
msgstr "Postavi Poruku"
-#: frappe/core/doctype/user/user.py:422
+#: frappe/core/doctype/user/user.py:423
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "Podesi standard odlazni račun e-pošte iz Podešavanja > Račun e-pošte"
-#: frappe/email/doctype/email_account/email_account.py:434
+#: frappe/email/doctype/email_account/email_account.py:432
msgid "Please setup default outgoing Email Account from Tools > Email Account"
msgstr "Podesi standard odlazni račun e-pošte iz Alati > Račun e-pošte"
-#: frappe/public/js/frappe/model/model.js:823
+#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
msgstr "Navedi"
-#: frappe/permissions.py:774
+#: frappe/permissions.py:783
msgid "Please specify a valid parent DocType for {0}"
msgstr "Navedi važeći nadređeni DocType za {0}"
@@ -19513,7 +19271,7 @@ msgstr "Navedi koje polje vrijednosti mora biti označeno"
msgid "Please try again"
msgstr "Pokušaj ponovo"
-#: frappe/integrations/google_oauth.py:56
+#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
msgstr "Ažuriraj {} prije nego nastavite."
@@ -19826,8 +19584,8 @@ msgstr "Primarni ključ tipa dokumenta {0} ne može se promijeniti jer postoje p
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1728
-#: frappe/public/js/frappe/views/reports/report_view.js:1531
+#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "Ispiši"
@@ -20070,7 +19828,7 @@ msgstr "Savjet: Dodaj referencu: {{ reference_doctype }} {{ reference_name
msgid "Proceed"
msgstr "Nastavi"
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
msgstr "Svejedno Nastavi"
@@ -20391,7 +20149,7 @@ msgstr "Upit mora biti tipa SELECT ili samo za čitanje WITH."
msgid "Queue"
msgstr "Red"
-#: frappe/utils/background_jobs.py:729
+#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
msgstr "Red Čekanja Preopterećen"
@@ -20412,7 +20170,7 @@ msgstr "Tip Reda"
msgid "Queue in Background (BETA)"
msgstr "Red u pozadini (BETA)"
-#: frappe/utils/background_jobs.py:554
+#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
msgstr "Red bi trebao biti jedan od {0}"
@@ -20445,12 +20203,6 @@ msgstr "U Redu Od"
msgid "Queued for Submission. You can track the progress over {0}."
msgstr "U Redu za Podnošenje. Možete pratiti napredak preko {0}."
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:65
-#: frappe/integrations/doctype/google_drive/google_drive.py:153
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:86
-msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr "U Redu za Sigurnosno Kopiranje. Može potrajati nekoliko minuta do sat vremena."
-
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
msgstr "U Redu za Sigurnosno Kopiranje. Primit ćete e-poruku s vezom za preuzimanje"
@@ -20586,7 +20338,7 @@ msgstr "Postavka Direktnog Ispisivanja"
msgid "Re-Run in Console"
msgstr "Ponovo Pokreni u Konzoli"
-#: frappe/email/doctype/email_account/email_account.py:728
+#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
msgstr "Od:"
@@ -20688,7 +20440,7 @@ msgstr "Realno Vrijeme (SocketIO)"
msgid "Reason"
msgstr "Razlog"
-#: frappe/public/js/frappe/views/reports/query_report.js:889
+#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
msgstr "Obnovi"
@@ -21053,11 +20805,11 @@ msgid "Referrer"
msgstr "Preporučitelj"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:548
+#: frappe/public/js/frappe/desk.js:556
#: 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:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1719
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21076,12 +20828,10 @@ msgstr "Osvježite Google Sheet"
#. Label of the refresh_token (Password) field in DocType 'Google Calendar'
#. Label of the refresh_token (Password) field in DocType 'Google Contacts'
-#. Label of the refresh_token (Data) field in DocType 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
@@ -21098,7 +20848,7 @@ msgstr "Osvježava se"
msgid "Refreshing..."
msgstr "Osvježavanje u toku..."
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
msgstr "Registrovan, ali onemogućen"
@@ -21261,7 +21011,7 @@ msgstr "Uklonjeno"
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
#: frappe/public/js/frappe/form/toolbar.js:432
-#: frappe/public/js/frappe/model/model.js:772
+#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
msgstr "Preimenuj"
@@ -21271,7 +21021,7 @@ msgstr "Preimenuj"
msgid "Rename Fieldname"
msgstr "Preimenuj naziv polja"
-#: frappe/public/js/frappe/model/model.js:759
+#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
msgstr "Preimenuj {0}"
@@ -21335,7 +21085,7 @@ msgstr "Ponavljanja poput \"aaa\" je lako pogoditi"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "Ponavljanja poput \"abcabcabc\" samo su malo teža za pogoditi od \"abc\""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:146
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
msgstr "Ponavlja se {0}"
@@ -21473,7 +21223,7 @@ msgstr "Upravitelj izvještaja"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1902
+#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
msgstr "Naziv Izvještaja"
@@ -21525,7 +21275,7 @@ msgstr "Izvještaj nema podataka, promijenite filtere ili promijenite naziv izvj
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Izvještaj nema numerička polja, promijeni Naziv Izvještaja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1009
+#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
msgstr "Izvještaj je pokrenut, klikni da vidite status"
@@ -21541,11 +21291,11 @@ msgstr "Izvještaj je istekao."
msgid "Report updated successfully"
msgstr "Izvještaj je uspješno ažuriran"
-#: frappe/public/js/frappe/views/reports/report_view.js:1351
+#: frappe/public/js/frappe/views/reports/report_view.js:1357
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:1940
+#: frappe/public/js/frappe/views/reports/query_report.js:1942
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."
@@ -21581,7 +21331,7 @@ msgstr "Izvještaji"
msgid "Reports & Masters"
msgstr "Izvještaji & Masters"
-#: frappe/public/js/frappe/views/reports/query_report.js:925
+#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
msgstr "Izvještaji su već u redu čekanja"
@@ -22031,7 +21781,7 @@ msgstr "Replikacija Uloge"
msgid "Role and Level"
msgstr "Uloga i Nivo"
-#: frappe/core/doctype/user/user.py:363
+#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
msgstr "Uloga je postavljena prema tipu korisnika {0}"
@@ -22146,7 +21896,7 @@ msgstr "Preusmjeravanja Rute"
msgid "Route: Example \"/app\""
msgstr "Ruta: Primjer \"/app\""
-#: frappe/model/base_document.py:855 frappe/model/document.py:778
+#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
msgstr "Red"
@@ -22159,7 +21909,7 @@ msgstr "Red #"
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:977
+#: frappe/model/base_document.py:982
msgid "Row #{0}:"
msgstr "Red #{0}:"
@@ -22237,7 +21987,7 @@ msgstr "Pravilo"
msgid "Rule Conditions"
msgstr "Uslovi Pravila"
-#: frappe/permissions.py:653
+#: frappe/permissions.py:662
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Pravilo za ovu kombinaciju tipa dokumenta, uloge, nivoa dozvole i vlasnika već postoji."
@@ -22281,23 +22031,6 @@ msgstr "Vrijeme izvođenja u Minutama"
msgid "Runtime in Seconds"
msgstr "Vrijeme izvođenja u Sekundama"
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "S3 Backup Settings"
-msgstr "S3 Sigurnosna Kopija Postavke"
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
-msgid "S3 Backup complete!"
-msgstr "S3 Sigurnosna Kopija završena!"
-
-#. Label of the s3_bucket_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Bucket Details"
-msgstr "S3 Bucket Detalji"
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
@@ -22438,7 +22171,7 @@ msgstr "Subota"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/page/print/print.js:858
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/quick_entry.js:185
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
@@ -22448,8 +22181,8 @@ msgstr "Subota"
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
-#: frappe/public/js/frappe/views/reports/query_report.js:1894
-#: frappe/public/js/frappe/views/reports/report_view.js:1720
+#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
@@ -22466,8 +22199,8 @@ msgstr "Spremi API Tajnu: {0}"
msgid "Save Anyway"
msgstr "Svejedno Spremi"
-#: frappe/public/js/frappe/views/reports/report_view.js:1382
-#: frappe/public/js/frappe/views/reports/report_view.js:1727
+#: frappe/public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
msgstr "Spremi Kao"
@@ -22475,7 +22208,7 @@ msgstr "Spremi Kao"
msgid "Save Customizations"
msgstr "Spremi Prilagođavanja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1897
+#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
msgstr "Spremi Izvještaj"
@@ -22641,7 +22374,7 @@ msgstr "Raspoređivač Neaktivan"
msgid "Scheduler Status"
msgstr "Status Raspoređivača"
-#: frappe/utils/scheduler.py:249
+#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr "Raspoređivač se ne može ponovno omogućiti kada je aktivan način rada za održavanje."
@@ -22867,7 +22600,7 @@ msgstr "Sigurnosne Postavke"
msgid "See all Activity"
msgstr "Pogledaj Sve Aktivnosti"
-#: frappe/public/js/frappe/views/reports/query_report.js:858
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "See all past reports."
msgstr "Pogledaj sve prethodne izvještaje."
@@ -22947,7 +22680,7 @@ msgstr "Odaberi Priloge"
msgid "Select Child Table"
msgstr "Odaberi Podređenu Tabelu"
-#: frappe/public/js/frappe/views/reports/report_view.js:377
+#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
msgstr "Odaberi Kolonu"
@@ -23264,31 +22997,11 @@ msgstr "Pošalji Prilog e-poštom kao PDF (Preporučeno)"
msgid "Send Email To Creator"
msgstr "Pošalji e-poštu Kreatoru"
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Dropbox Settings'
-#. Label of the send_email_for_successful_backup (Check) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Email for Successful Backup"
-msgstr "Pošalji e-poštu za Uspješnu Sigurnosnu Kopiju"
-
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Email for Successful backup"
-msgstr "Pošalji e-poštu za Uspješnu Sigurnosnu Kopiju"
-
#. 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 "Pošalji mi Kopiju Odlazne e-pošte"
-#. Label of the email (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Notification To"
-msgstr "Pošalji Obavještenje"
-
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -23305,14 +23018,6 @@ msgstr "Šalji obavještenja za dokumente koje pratim"
msgid "Send Notifications For Email Threads"
msgstr "Slanje Obavijesti za Niti e-pošte"
-#. Label of the send_notifications_to (Data) field in DocType 'Dropbox
-#. Settings'
-#. Label of the notify_email (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Notifications To"
-msgstr "Pošalji Obavještenja"
-
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
msgstr "Pošalji Sad"
@@ -23571,7 +23276,7 @@ msgstr "Serija Imenovanja {0} se već koristi u {1}"
msgid "Server Action"
msgstr "Radnja Servera"
-#: frappe/app.py:383 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Greška Servera"
@@ -23637,7 +23342,7 @@ msgstr "Standard Sesije"
msgid "Session Defaults Saved"
msgstr "Standard Postavke Sesije Spremljene"
-#: frappe/app.py:360
+#: frappe/app.py:353
msgid "Session Expired"
msgstr "Sesija Istekla"
@@ -23646,7 +23351,7 @@ msgstr "Sesija Istekla"
msgid "Session Expiry (idle timeout)"
msgstr "Istek Sesije (vremensko ograničenje mirovanja)"
-#: frappe/core/doctype/system_settings/system_settings.py:119
+#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
msgstr "Istek Sesije mora biti u formatu {0}"
@@ -23669,7 +23374,7 @@ msgstr "Postavi"
msgid "Set Banner from Image"
msgstr "Postavi Transparent sa Slike"
-#: frappe/public/js/frappe/views/reports/query_report.js:201
+#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
msgstr "Potavi grafikon"
@@ -23695,7 +23400,7 @@ msgstr "Postavi Filtere"
msgid "Set Filters for {0}"
msgstr "Postavi filtere za {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
msgstr "Postavi Nivo"
@@ -23937,8 +23642,8 @@ msgstr "Postavljanje> Korisnik"
msgid "Setup > User Permissions"
msgstr "Postavljanje > Korisničke Dozvole"
-#: frappe/public/js/frappe/views/reports/query_report.js:1763
-#: frappe/public/js/frappe/views/reports/report_view.js:1698
+#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Postavljanje Automatske e-pošte"
@@ -24034,6 +23739,15 @@ msgstr "Prikaži"
msgid "Show \"Call to Action\" in Blog"
msgstr "Prikaži \"Poziv na Akciju\" u Blogu"
+#. 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 "Prikaži Apsolutni Datum i Vrijeme na Vremenskoj Liniji"
+
#. Label of the absolute_value (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Absolute Values"
@@ -24204,7 +23918,7 @@ msgstr "Prikaži Naziv"
msgid "Show Title in Link Fields"
msgstr "Prikaži Naziv u Poljima Veza"
-#: frappe/public/js/frappe/views/reports/report_view.js:1521
+#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
msgstr "Prikaži Ukupno"
@@ -24314,7 +24028,7 @@ msgstr "Prikaži naziv u prozoru pretraživača kao \"Prefiks - naziv\""
msgid "Show {0} List"
msgstr "Prikaži {0} Listu"
-#: frappe/public/js/frappe/views/reports/report_view.js:495
+#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
msgstr "Prikazuju se samo numerička polja iz Izvještaja"
@@ -24349,7 +24063,7 @@ msgstr "Bočna Traka i Komentari"
msgid "Sign Up and Confirmation"
msgstr "Prijava i Potvrda"
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
msgstr "Prijava je onemogućena"
@@ -24994,7 +24708,7 @@ msgstr "Vremenski Interval Statistike"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
-#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: frappe/public/js/frappe/views/reports/report_view.js:975
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
@@ -25293,7 +25007,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:1166
+#: frappe/public/js/frappe/form/grid.js:1170
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25390,7 +25104,7 @@ msgstr "Predloži Optimizacije"
msgid "Suggested Indexes"
msgstr "Predloženi Indeksi"
-#: frappe/core/doctype/user/user.py:720
+#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
msgstr "Predloženo Korisničko Ime: {0}"
@@ -25680,11 +25394,9 @@ msgstr "Sistemski Zapisnici"
#: frappe/geo/doctype/country/country.json
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/connected_app/connected_app.json
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.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_drive/google_drive.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
@@ -25693,7 +25405,6 @@ msgstr "Sistemski Zapisnici"
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_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
@@ -25818,11 +25529,11 @@ msgstr "Višestruki Odabir Tabele"
msgid "Table Trimmed"
msgstr "Tabela Optimizirana"
-#: frappe/public/js/frappe/form/grid.js:1165
+#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
msgstr "Tabela Ažurirana"
-#: frappe/model/document.py:1565
+#: frappe/model/document.py:1564
msgid "Table {0} cannot be empty"
msgstr "Tabela {0} ne može biti prazna"
@@ -25841,7 +25552,7 @@ msgstr "Oznaka"
msgid "Tag Link"
msgstr "Veza Oznake"
-#: frappe/model/meta.py:57
+#: 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
@@ -25853,15 +25564,6 @@ msgstr "Veza Oznake"
msgid "Tags"
msgstr "Oznake"
-#: frappe/integrations/doctype/google_drive/google_drive.js:29
-msgid "Take Backup"
-msgstr "Uzmi Sigurnosnu Kopiju"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
-msgid "Take Backup Now"
-msgstr "Uzmi Sigurnosnu Kopiju Odmah"
-
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
msgstr "Uslikaj"
@@ -25939,12 +25641,12 @@ msgstr "Šablon Upozorenja"
msgid "Templates"
msgstr "Šabloni"
-#: frappe/core/doctype/user/user.py:1027
+#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
msgstr "Privremeno Onemogućeno"
-#: frappe/core/doctype/translation/test_translation.py:56
-#: frappe/core/doctype/translation/test_translation.py:63
+#: frappe/core/doctype/translation/test_translation.py:47
+#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
msgstr "Test Podaci"
@@ -25953,8 +25655,8 @@ msgstr "Test Podaci"
msgid "Test Job ID"
msgstr "ID Test Posla"
-#: frappe/core/doctype/translation/test_translation.py:58
-#: frappe/core/doctype/translation/test_translation.py:66
+#: frappe/core/doctype/translation/test_translation.py:49
+#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
msgstr "Test Španski"
@@ -25962,7 +25664,7 @@ msgstr "Test Španski"
msgid "Test email sent to {0}"
msgstr "Probna e-pošta poslana na {0}"
-#: frappe/core/doctype/file/test_file.py:388
+#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Test Mapa"
@@ -26045,7 +25747,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:1188
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
msgstr "CSV format razlikuje velika i mala slova"
@@ -26219,15 +25921,15 @@ msgstr "Broj projekta dobijen od Google Cloud Console pod "
-#: frappe/core/doctype/user/user.py:987
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
msgstr "Veza za poništavanje lozinke je istekla"
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:991
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:375 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Resurs koji tražite nije dostupan"
@@ -26239,7 +25941,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:334
+#: frappe/utils/response.py:331
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Sistem se ažurira. Osvježite ponovo nakon nekoliko trenutaka."
@@ -26300,7 +26002,7 @@ msgstr "Nema predstojećih događaja za vas."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "Nema {0} za ovaj {1}, zašto ga ne pokrenete!"
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "There are {0} with the same filters already in the queue:"
msgstr "U redu čekanja već postoji {0} s istim filterima:"
@@ -26329,7 +26031,7 @@ msgstr "Trenutno nema ništa novo za pokazati."
msgid "There is some problem with the file url: {0}"
msgstr "Postoji neki problem sa urlom datoteke: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:958
+#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
msgstr "Postoji {0} s istim filterima već u redu čekanja:"
@@ -26416,12 +26118,12 @@ msgstr "Ove Godine"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Ova radnja je nepovratna. Da li želite da nastavite?"
-#: frappe/__init__.py:750
+#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
msgstr "Ova radnja je dozvoljena samo za {}"
#: frappe/public/js/frappe/form/toolbar.js:117
-#: frappe/public/js/frappe/model/model.js:755
+#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "Ovo se ne može poništiti"
@@ -26459,7 +26161,7 @@ msgstr "Ovaj dokument ima nespremljene promjene koje se možda neće pojaviti u
msgid "This document is already amended, you cannot ammend it again"
msgstr "Ovaj dokument je već izmijenjen, ne možete ga ponovo mijenjati"
-#: frappe/model/document.py:474
+#: frappe/model/document.py:473
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr "Ovaj dokument je trenutno zaključan i na čekanju za izvršenje. Molimo pokušajte ponovo nakon nekog vremena."
@@ -26524,7 +26226,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:2132
+#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Ovo je pozadinski izvještaj. Molimo postavite odgovarajuće filtere, a zatim generišite novi."
@@ -26588,7 +26290,7 @@ msgstr "Ovaj bilten je planiran za slanje {0}"
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
msgstr "Slanje ovog biltena bilo je planirano za neki kasniji datum. Jeste li sigurni da ga želite sada poslati?"
-#: frappe/public/js/frappe/views/reports/query_report.js:1033
+#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Ovaj izvještaj sadrži {0} redova i prevelik je za prikaz u pretraživaču, umjesto toga možete {1} ovaj izvještaj."
@@ -26596,7 +26298,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:856
+#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
msgstr "Ovaj izvještaj je generisan {0}."
@@ -26662,7 +26364,7 @@ msgstr "Ovo će poništiti ovu introdukciju i prikazati ga svim korisnicima. Jes
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr "Ovo će odmah prekinuti posao i može biti opasno, jeste li sigurni? "
-#: frappe/core/doctype/user/user.py:1240
+#: frappe/core/doctype/user/user.py:1242
msgid "Throttled"
msgstr "Prigušeno"
@@ -27019,7 +26721,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:857
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "To get the updated report, click on {0}."
msgstr "Da biste dobili ažurirani izvještaj, kliknite na {0}."
@@ -27044,10 +26746,6 @@ msgstr "Da koristite Google Kalendar, omogućite {0}."
msgid "To use Google Contacts, enable {0}."
msgstr "Da koristite Google kontakte, omogući {0}."
-#: frappe/integrations/doctype/google_drive/google_drive.js:8
-msgid "To use Google Drive, enable {0}."
-msgstr "Da koristite Google Drive, omogućite {0}."
-
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -27078,7 +26776,7 @@ msgstr "Za Uraditi"
msgid "Today"
msgstr "Danas"
-#: frappe/public/js/frappe/views/reports/report_view.js:1564
+#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
msgstr "Prebaci grafikon"
@@ -27094,7 +26792,7 @@ msgstr "Uključi Prikaz Mreže"
#: frappe/public/js/frappe/ui/page.js:201
#: frappe/public/js/frappe/ui/page.js:203
-#: frappe/public/js/frappe/views/reports/report_view.js:1568
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
msgstr "Prebaci Bočnu Traku"
@@ -27150,11 +26848,11 @@ msgstr "Previše Zahtjeva"
msgid "Too many changes to database in single action."
msgstr "Previše promjena u bazi podataka u jednoj akciji."
-#: frappe/utils/background_jobs.py:728
+#: frappe/utils/background_jobs.py:730
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr "Previše pozadinskih poslova na čekanju ({0}). Pokušaj ponovo nakon nekog vremena."
-#: frappe/core/doctype/user/user.py:1028
+#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "Nedavno se prijavilo previše korisnika, pa je registracija onemogućena. Pokušajte ponovo za sat vremena"
@@ -27218,8 +26916,8 @@ msgstr "Tema"
#: frappe/desk/query_report.py:533
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1320
-#: frappe/public/js/frappe/views/reports/report_view.js:1545
+#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr "Ukupno"
@@ -27282,11 +26980,11 @@ msgstr "Ukupan broj e-poruka za sinhronizaciju u početnom procesu sinhronizacij
msgid "Total:"
msgstr "Ukupno:"
-#: frappe/public/js/frappe/views/reports/report_view.js:1250
+#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
msgstr "Ukupno"
-#: frappe/public/js/frappe/views/reports/report_view.js:1225
+#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
msgstr "Ukupni Red"
@@ -27401,7 +27099,7 @@ msgstr "Prelazi"
msgid "Translatable"
msgstr "Prevodivo"
-#: frappe/public/js/frappe/views/reports/query_report.js:2188
+#: frappe/public/js/frappe/views/reports/query_report.js:2183
msgid "Translate Data"
msgstr "Prevedi Podatke"
@@ -27412,7 +27110,7 @@ msgstr "Prevedi Podatke"
msgid "Translate Link Fields"
msgstr "Prevedi Polja Veza"
-#: frappe/public/js/frappe/views/reports/report_view.js:1650
+#: frappe/public/js/frappe/views/reports/report_view.js:1656
msgid "Translate values"
msgstr "Prevedi vrijednosti"
@@ -27560,7 +27258,7 @@ msgstr "Metoda Dvofaktorske Autentifikacije"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/views/file/file_view.js:337
#: frappe/public/js/frappe/views/workspace/workspace.js:399
-#: frappe/public/js/frappe/widgets/widget_dialog.js:391
+#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
msgid "Type"
@@ -27641,7 +27339,7 @@ msgstr "URI-ovi za primanje autorizacijskog koda nakon što korisnik dopusti pri
#: 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:458
+#: 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"
@@ -27703,7 +27401,7 @@ msgstr "Nije moguće pronaći DocType {0}"
msgid "Unable to load camera."
msgstr "Nije moguće učitati kameru."
-#: frappe/public/js/frappe/model/model.js:268
+#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
msgstr "Nije moguće učitati: {0}"
@@ -27732,7 +27430,7 @@ msgstr "Nije moguće napisati format datoteke za {0}"
msgid "Unassign Condition"
msgstr "Poništi Dodjelu Uslova"
-#: frappe/app.py:383
+#: frappe/app.py:376
msgid "Uncaught Exception"
msgstr "Neuhvaćena Iznimka"
@@ -27965,7 +27663,7 @@ msgstr "Ažurirano"
msgid "Updated Successfully"
msgstr "Uspješno Ažurirano"
-#: frappe/public/js/frappe/desk.js:444
+#: frappe/public/js/frappe/desk.js:452
msgid "Updated To A New Version 🎉"
msgstr "Ažurirano na Novu Verziju 🎉"
@@ -27973,7 +27671,7 @@ msgstr "Ažurirano na Novu Verziju 🎉"
msgid "Updated successfully"
msgstr "Uspješno Ažurirano"
-#: frappe/utils/response.py:333
+#: frappe/utils/response.py:330
msgid "Updating"
msgstr "Ažuriranje"
@@ -28047,18 +27745,6 @@ msgstr "Preneseno na Dropbox"
msgid "Uploaded To Google Drive"
msgstr "Učitano na Google Disk"
-#: frappe/integrations/doctype/google_drive/google_drive.py:196
-msgid "Uploading backup to Google Drive."
-msgstr "Učitavanje Sigurnosne Kopije na Google Disk u toku."
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:201
-msgid "Uploading successful."
-msgstr "Učitavanje uspješno."
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:16
-msgid "Uploading to Google Drive"
-msgstr "Učitavanje na Google disk u toku"
-
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -28142,11 +27828,11 @@ 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:434
+#: frappe/model/db_query.py:435
msgid "Use of function {0} in field is restricted"
msgstr "Korištenje funkcije {0} u polju je ograničena"
-#: frappe/model/db_query.py:411
+#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
msgstr "Korištenje podupita ili funkcije je ograničena"
@@ -28263,7 +27949,7 @@ msgstr "Korisnik Nemože Kreirati"
msgid "User Cannot Search"
msgstr "Korisnik Nemože Pretraživati"
-#: frappe/public/js/frappe/desk.js:546
+#: frappe/public/js/frappe/desk.js:554
msgid "User Changed"
msgstr "Korisnik Promijenjen"
@@ -28369,8 +28055,8 @@ 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:1881
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "Korisničke Dozvole"
@@ -28467,7 +28153,7 @@ msgstr "Korisnik mora uvijek odabrati"
msgid "User permission already exists"
msgstr "Korisnička dozvola već postoji"
-#: frappe/www/login.py:167
+#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
msgstr "Korisnik sa adresom e-pošte {0} ne postoji"
@@ -28475,23 +28161,23 @@ msgstr "Korisnik sa adresom e-pošte {0} ne postoji"
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr "Korisnik sa e-poštom: {0} ne postoji u sistemu. Zamoli 'Administratora Sistema' da kreira korisnika za vas."
-#: frappe/core/doctype/user/user.py:536
+#: frappe/core/doctype/user/user.py:537
msgid "User {0} cannot be deleted"
msgstr "Korisnik {0} se ne može izbrisati"
-#: frappe/core/doctype/user/user.py:326
+#: frappe/core/doctype/user/user.py:327
msgid "User {0} cannot be disabled"
msgstr "Korisnik {0} se ne može onemogućiti"
-#: frappe/core/doctype/user/user.py:602
+#: frappe/core/doctype/user/user.py:603
msgid "User {0} cannot be renamed"
msgstr "Korisnik {0} se ne može preimenovati"
-#: frappe/permissions.py:138
+#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
msgstr "Korisnik {0} nema pristup ovom dokumentu"
-#: frappe/permissions.py:161
+#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr "Korisnik {0} nema pristup tipu dokumenta preko dopuštenja uloge za dokument {1}"
@@ -28504,7 +28190,7 @@ msgstr "Korisnik {0} nema dozvolu za kreiranje Radnog Prostora."
msgid "User {0} has requested for data deletion"
msgstr "Korisnik {0} je zatražio brisanje podataka"
-#: frappe/core/doctype/user/user.py:1369
+#: frappe/core/doctype/user/user.py:1371
msgid "User {0} impersonated as {1}"
msgstr "Korisnik {0} predstavljen kao {1}"
@@ -28533,7 +28219,7 @@ msgstr "URI informacija Korisnika"
msgid "Username"
msgstr "Korisničko Ime"
-#: frappe/core/doctype/user/user.py:687
+#: frappe/core/doctype/user/user.py:689
msgid "Username {0} already exists"
msgstr "Korisničko Ime {0} već postoji"
@@ -28673,15 +28359,15 @@ msgstr "Vrijednost Promijenjena"
msgid "Value To Be Set"
msgstr "Vrijednost Koju Treba Postaviti"
-#: frappe/model/base_document.py:1049 frappe/model/document.py:834
+#: frappe/model/base_document.py:1054 frappe/model/document.py:833
msgid "Value cannot be changed for {0}"
msgstr "Vrijednost se ne može promijeniti za {0}"
-#: frappe/model/document.py:780
+#: frappe/model/document.py:779
msgid "Value cannot be negative for"
msgstr "Vrijednost ne može biti negativna za"
-#: frappe/model/document.py:784
+#: frappe/model/document.py:783
msgid "Value cannot be negative for {0}: {1}"
msgstr "Vrijednost ne može biti negativna za {0}: {1}"
@@ -28712,7 +28398,7 @@ msgstr "Vrijednost mora biti jedna od {0}"
msgid "Value to Validate"
msgstr "Vrijednost za Provjeru"
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1124
msgid "Value too big"
msgstr "Vrijednost je Prevelika"
@@ -29313,11 +28999,6 @@ msgstr "Radnim Danima"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -29326,9 +29007,6 @@ msgstr "Radnim Danima"
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:399
#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
@@ -29363,11 +29041,11 @@ msgstr "URL Dobrodošlice"
msgid "Welcome Workspace"
msgstr "Početni Radni Prostor"
-#: frappe/core/doctype/user/user.py:414
+#: frappe/core/doctype/user/user.py:415
msgid "Welcome email sent"
msgstr "E-pošta Dobrodošlice poslana"
-#: frappe/core/doctype/user/user.py:475
+#: frappe/core/doctype/user/user.py:476
msgid "Welcome to {0}"
msgstr "Dobrodošli u {0}"
@@ -29400,7 +29078,7 @@ msgstr "Kada izmijenite dokument nakon Otkaži i spremite ga, dobit će novi bro
#. 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:468
+#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
msgstr "Na koji prikaz povezanog DocType bi vas ova prečica trebala odvesti?"
@@ -29599,7 +29277,7 @@ msgstr "Radni Tok je uspješno ažuriran"
msgid "Workspace"
msgstr "Radni Prostor"
-#: frappe/public/js/frappe/router.js:177
+#: frappe/public/js/frappe/router.js:173
msgid "Workspace {0} does not exist"
msgstr "Radni Prostor {0} ne postoji"
@@ -29669,11 +29347,11 @@ msgstr "Radni Prostor {0} kreiran"
msgid "Workspaces"
msgstr "Radni Prostori"
-#: frappe/public/js/frappe/form/footer/form_timeline.js:753
+#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
msgstr "Želiš li objaviti ovaj komentar? To znači da će postati vidljiv korisnicima web stranice/portala."
-#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
msgstr "Želiš li poništiti objavljivanje ovog komentara? To znači da više neće biti vidljivo korisnicima web stranice/portala."
@@ -29692,11 +29370,11 @@ msgstr "Završava se.."
msgid "Write"
msgstr "Piši"
-#: frappe/model/base_document.py:949
+#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
msgstr "Pogrešno Peuzimanje iz vrijednosti"
-#: frappe/public/js/frappe/views/reports/report_view.js:484
+#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
msgstr "Polje Ose X"
@@ -29715,13 +29393,13 @@ msgstr "XLSX"
msgid "Y Axis"
msgstr "Y Osa"
-#: frappe/public/js/frappe/views/reports/report_view.js:491
+#: frappe/public/js/frappe/views/reports/report_view.js:497
msgid "Y Axis Fields"
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:1221
+#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
msgstr "Y Polje"
@@ -29782,7 +29460,7 @@ msgstr "Žuta"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Da"
@@ -29822,11 +29500,11 @@ msgstr "Predstavljate se kao neki drugi korisnik."
msgid "You are not allowed to access this resource"
msgstr "Nije vam dozvoljen pristup ovom resursu"
-#: frappe/permissions.py:409
+#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "Nije vam dozvoljen pristup ovom {0} zapisu jer je povezan sa {1} '{2}' u polju {3}"
-#: frappe/permissions.py:398
+#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "Nije vam dozvoljen pristup ovom zapisu {0} jer je povezan s {1} '{2}' u redu {3}, polju {4}"
@@ -29849,7 +29527,7 @@ msgstr "Nije vam dozvoljeno uređivati izvještaj."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:604
+#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
msgstr "Nije vam dozvoljeno da izvezete {} doctype"
@@ -29861,7 +29539,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:569
+#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
msgstr "Nije vam dozvoljeno ažurirati ovaj dokument web forme"
@@ -29877,7 +29555,7 @@ msgstr "Nije vam dozvoljen pristup ovoj stranici bez prijave."
msgid "You are not permitted to access this page."
msgstr "Nije vam dozvoljen pristup ovoj stranici."
-#: frappe/__init__.py:669
+#: frappe/__init__.py:676
msgid "You are not permitted to access this resource. Login to access"
msgstr "Nemate dozvolu za pristup ovom resursu. Prijavite se za pristup"
@@ -29885,7 +29563,7 @@ msgstr "Nemate dozvolu za pristup ovom resursu. Prijavite se za pristup"
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr "Sada pratite ovaj dokument. Svakodnevno ćete primati ažuriranja putem e-pošte. Ovo možete promijeniti u korisničkim postavkama."
-#: frappe/core/doctype/installed_applications/installed_applications.py:82
+#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
msgstr "Dozvoljeno vam je samo ažurirati redoslijed, nemojte uklanjati ili dodavati aplikacije."
@@ -30049,11 +29727,11 @@ msgstr "Nemate dozvole za Čitanje ili Odabir za {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Nemate dovoljno dozvola za pristup ovom resursu. Kontaktiraj svog odgovornog da dobijete pristup."
-#: frappe/app.py:368
+#: frappe/app.py:361
msgid "You do not have enough permissions to complete the action"
msgstr "Nemate dovoljno dozvola da dovršite radnju"
-#: frappe/desk/query_report.py:838
+#: frappe/desk/query_report.py:831
msgid "You do not have permission to access {0}: {1}."
msgstr "Nemate dozvolu za pristup {0}: {1}."
@@ -30065,11 +29743,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:772
+#: frappe/website/doctype/web_form/web_form.py:769
msgid "You don't have permission to access the {0} DocType."
msgstr "Nemate dozvolu za pristup {0} DocType."
-#: frappe/utils/response.py:286 frappe/utils/response.py:290
+#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
msgstr "Nemate dozvolu za pristup ovoj datoteci"
@@ -30077,7 +29755,7 @@ msgstr "Nemate dozvolu za pristup ovoj datoteci"
msgid "You don't have permission to get a report on: {0}"
msgstr "Nemate dozvolu da preuzmete izvještaj o: {0}"
-#: frappe/website/doctype/web_form/web_form.py:175
+#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
msgstr "Nemate dozvole za pristup ovom dokumentu"
@@ -30130,23 +29808,23 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr "Dosegli ste ograničenje zbog previše zahtjeva. Molimo pokušajte nakon nekog vremena."
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
msgstr "Zadnji put ste uređivali ovo"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:339
+#: frappe/public/js/frappe/widgets/widget_dialog.js:352
msgid "You must add atleast one link."
msgstr "Morate dodati barem jednu vezu."
-#: frappe/website/doctype/web_form/web_form.py:768
+#: frappe/website/doctype/web_form/web_form.py:765
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:609
+#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
msgstr "Morate se prijaviti da pošaljete ovu formu"
-#: frappe/model/document.py:357
+#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr "Potrebna vam je '{0}' dozvola za {1} {2} da biste izvršili ovu radnju."
@@ -30162,11 +29840,11 @@ msgstr "Morate biti Upravitelj Radnog Prostora da biste uredili ovaj dokument"
msgid "You need to be a system user to access this page."
msgstr "Morate biti korisnik sistema da biste pristupili ovoj stranici."
-#: frappe/website/doctype/web_form/web_form.py:94
+#: frappe/website/doctype/web_form/web_form.py:91
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:275
+#: frappe/utils/response.py:272
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."
@@ -30174,7 +29852,7 @@ msgstr "Morate biti prijavljeni i imati ulogu Upravitelja Sistema da biste mogli
msgid "You need to be logged in to access this page"
msgstr "Morate biti prijavljeni da biste pristupili ovoj stranici"
-#: frappe/website/doctype/web_form/web_form.py:164
+#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
msgstr "Morate biti prijavljeni da biste pristupili ovom {0}."
@@ -30249,7 +29927,7 @@ msgstr "Prestali ste pratiti ovaj dokument"
msgid "You viewed this"
msgstr "Prikazali ste ovo"
-#: frappe/public/js/frappe/desk.js:543
+#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr "Prijavili ste se kao drugi korisnik sa druge kartice. Osvježite ovu stranicu da nastavite koristiti sistem."
@@ -30332,7 +30010,7 @@ msgstr "Ime vaše organizacije i adresa za podnožje e-pošte."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Vaš upit je primljen. Odgovorit ćemo vam uskoro. Ako imate dodatnih informacija, odgovorite na ovu poruku e-pošte."
-#: frappe/app.py:361
+#: frappe/app.py:354
msgid "Your session has expired, please login again to continue."
msgstr "Vaša sesija je istekla, prijavite se ponovo da nastavite."
@@ -30563,7 +30241,7 @@ msgstr "e-pošta"
msgid "email inbox"
msgstr "prijemno sanduče e-pošte"
-#: frappe/permissions.py:403 frappe/permissions.py:414
+#: frappe/permissions.py:412 frappe/permissions.py:423
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "prazno"
@@ -31115,7 +30793,7 @@ msgstr "{0} = {1}"
msgid "{0} Calendar"
msgstr "{0} Kalendar"
-#: frappe/public/js/frappe/views/reports/report_view.js:564
+#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
msgstr "{0} Grafikon"
@@ -31163,7 +30841,7 @@ msgstr "{0} Karta"
msgid "{0} Name"
msgstr "{0} Naziv"
-#: frappe/model/base_document.py:1149
+#: frappe/model/base_document.py:1154
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}"
@@ -31173,7 +30851,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:952
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
msgstr "{0} Izvještaja"
@@ -31239,7 +30917,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr "{0} priloženo {1}"
-#: frappe/core/doctype/system_settings/system_settings.py:149
+#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
msgstr "{0} ne može biti više od {1}"
@@ -31252,7 +30930,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} je otkazao ovaj dokument {1}"
-#: frappe/model/document.py:547
+#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr "{0} ne može se mijenjati jer nije otkazan. Molimo otkažite dokument prije kreiranja izmjene."
@@ -31377,7 +31055,7 @@ msgstr "{0} je nevažeće polje podataka."
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "{0} je nevažeća adresa e-pošte u 'Primatelji'"
-#: frappe/public/js/frappe/views/reports/report_view.js:1462
+#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
msgstr "{0} je između {1} i {2}"
@@ -31386,27 +31064,27 @@ msgstr "{0} je između {1} i {2}"
msgid "{0} is currently {1}"
msgstr "{0} je trenutno {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1431
+#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
msgstr "{0} je jednako {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1451
+#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
msgstr "{0} je veće ili jednako {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1441
+#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
msgstr "{0} je veće od {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1456
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
msgstr "{0} je manje ili jednako {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1446
+#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
msgstr "{0} je manje od {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1481
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
msgstr "{0} je kao {1}"
@@ -31426,7 +31104,7 @@ msgstr "{0} nije direktni format za ispisivanje."
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr "{0} nije važeći Kalendar. Preusmjeravanje na Standard Kalendar."
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:64
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
msgstr "{0} nije važeći Cron izraz."
@@ -31455,11 +31133,11 @@ msgstr "{0} nije ispravan broj telefona"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} nije važeće Stanje Radnog Toka. Ažuriraj Radni Tok i pokušaj ponovo."
-#: frappe/permissions.py:787
+#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} nije važeći nadređeni DocType za {1}"
-#: frappe/permissions.py:807
+#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} nije važeće nadređeno polje za {1}"
@@ -31471,27 +31149,27 @@ msgstr "{0} nije važeći format izvještaja. Format izvještaja bi trebao biti
msgid "{0} is not a zip file"
msgstr "{0} nije zip datoteka"
-#: frappe/public/js/frappe/views/reports/report_view.js:1436
+#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
msgstr "{0} nije jednako {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1483
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
msgstr "{0} nije kao {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
msgstr "{0} nije jedno od {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1487
+#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
msgstr "{0} nije postavljeno"
-#: frappe/printing/doctype/print_format/print_format.py:165
+#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} je sada standardi format ispisivanja za {1} tip dokumenta"
-#: frappe/public/js/frappe/views/reports/report_view.js:1470
+#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
msgstr "{0} je jedan od {1}"
@@ -31502,11 +31180,11 @@ msgstr "{0} je jedan od {1}"
msgid "{0} is required"
msgstr "{0} je obavezan"
-#: frappe/public/js/frappe/views/reports/report_view.js:1486
+#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
msgstr "{0} je postavljeno"
-#: frappe/public/js/frappe/views/reports/report_view.js:1465
+#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
msgstr "{0} je unutar {1}"
@@ -31514,12 +31192,12 @@ msgstr "{0} je unutar {1}"
msgid "{0} items selected"
msgstr "{0} artikala odabrano"
-#: frappe/core/doctype/user/user.py:1378
+#: frappe/core/doctype/user/user.py:1380
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} samo se predstavljao kao vi. Naveli su ovaj razlog: {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:104
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
msgstr "{0} je zadnji put uredio ovo"
@@ -31535,7 +31213,7 @@ msgstr "{0} odjavljen: {1}"
msgid "{0} m"
msgstr "{0} m"
-#: frappe/desk/notifications.py:397
+#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
msgstr "{0} vas je spomenuo u komentaru u {1} {2}"
@@ -31547,35 +31225,35 @@ msgstr "prije {0} minuta"
msgid "{0} months ago"
msgstr "{0} mjeseci prije"
-#: frappe/model/document.py:1792
+#: frappe/model/document.py:1791
msgid "{0} must be after {1}"
msgstr "{0} mora biti iza {1}"
-#: frappe/model/document.py:1551
+#: frappe/model/document.py:1550
msgid "{0} must be beginning with '{1}'"
msgstr "{0} mora početi sa '{1}'"
-#: frappe/model/document.py:1553
+#: frappe/model/document.py:1552
msgid "{0} must be equal to '{1}'"
msgstr "{0} mora biti jednako '{1}'"
-#: frappe/model/document.py:1549
+#: frappe/model/document.py:1548
msgid "{0} must be none of {1}"
msgstr "{0} ne smije biti ni jedna od {1}"
-#: frappe/model/document.py:1547 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} mora biti jedan od {1}"
-#: frappe/model/base_document.py:875
+#: frappe/model/base_document.py:876
msgid "{0} must be set first"
msgstr "{0} se mora prvo postaviti"
-#: frappe/model/base_document.py:732
+#: frappe/model/base_document.py:729
msgid "{0} must be unique"
msgstr "{0} mora biti jedinstven"
-#: frappe/model/document.py:1555
+#: frappe/model/document.py:1554
msgid "{0} must be {1} {2}"
msgstr "{0} mora biti {1} {2}"
@@ -31650,7 +31328,7 @@ msgstr "{0} je uklonio(la) svoju dodjelu."
msgid "{0} role does not have permission on any doctype"
msgstr "{0} uloga nema dozvolu ni za jedan tip dokumenta"
-#: frappe/model/document.py:1785
+#: frappe/model/document.py:1784
msgid "{0} row #{1}: "
msgstr "{0} red #{1}: "
@@ -31746,11 +31424,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:665 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} već postoji"
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:987
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}\""
@@ -31766,7 +31444,7 @@ msgstr "{0} {1} ne postoji, odaberi novi cilj za spajanje"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} je povezan sa sljedećim podesenim dokumentima: {2}"
-#: frappe/model/document.py:260 frappe/permissions.py:558
+#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
msgstr "{0} {1} nije pronađeno"
@@ -31774,7 +31452,7 @@ msgstr "{0} {1} nije pronađeno"
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:1110
+#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
msgstr "{0}, Red {1}"
@@ -31782,7 +31460,7 @@ 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:1115
+#: frappe/model/base_document.py:1120
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}"
@@ -31883,7 +31561,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:1279
+#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} naspram {2}"
diff --git a/frappe/locale/cs.po b/frappe/locale/cs.po
index b811b5bff1..5085672df2 100644
--- a/frappe/locale/cs.po
+++ b/frappe/locale/cs.po
@@ -2,14 +2,14 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-08 09:34+0000\n"
-"PO-Revision-Date: 2025-06-16 15:30\n"
+"POT-Creation-Date: 2025-06-22 09:34+0000\n"
+"PO-Revision-Date: 2025-06-22 16:41\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Czech\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.13.1\n"
+"Generated-By: Babel 2.16.0\n"
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
"X-Crowdin-Project: frappe\n"
"X-Crowdin-Project-ID: 639578\n"
@@ -140,7 +140,7 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:951
+#: frappe/public/js/frappe/views/reports/query_report.js:953
msgid "1 Report"
msgstr ""
@@ -148,7 +148,7 @@ msgstr ""
msgid "1 comment"
msgstr ""
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:711
msgid "1 day ago"
msgstr ""
@@ -157,17 +157,17 @@ msgid "1 hour"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:709
msgid "1 hour ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:707
msgid "1 minute ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:715
msgid "1 month ago"
msgstr ""
@@ -179,37 +179,37 @@ msgstr ""
msgid "1 record will be exported"
msgstr ""
-#: frappe/tests/test_utils.py:705
+#: frappe/tests/test_utils.py:706
msgid "1 second ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:713
msgid "1 week ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:717
msgid "1 year ago"
msgstr ""
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:710
msgid "2 hours ago"
msgstr ""
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:716
msgid "2 months ago"
msgstr ""
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:714
msgid "2 weeks ago"
msgstr ""
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:718
msgid "2 years ago"
msgstr ""
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:708
msgid "3 minutes ago"
msgstr ""
@@ -225,7 +225,7 @@ msgstr ""
msgid "5 Records"
msgstr ""
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:712
msgid "5 days ago"
msgstr ""
@@ -245,7 +245,7 @@ msgstr ""
msgid "<="
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:588
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
msgid "{0} is not a valid URL"
msgstr ""
@@ -654,10 +654,7 @@ msgid "API"
msgstr ""
#. Label of the api_access (Section Break) field in DocType 'User'
-#. Label of the api_access_section (Section Break) field in DocType 'S3 Backup
-#. Settings'
#: frappe/core/doctype/user/user.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "API Access"
msgstr ""
@@ -769,17 +766,6 @@ msgstr ""
msgid "Access Control"
msgstr ""
-#. Label of the access_key_id (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key ID"
-msgstr ""
-
-#. Label of the secret_access_key (Password) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key Secret"
-msgstr ""
-
#. Name of a DocType
#. Label of a Link in the Users Workspace
#: frappe/core/doctype/access_log/access_log.json
@@ -830,6 +816,10 @@ msgstr ""
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'
@@ -860,7 +850,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1872
+#: frappe/model/document.py:1871
msgid "Action Failed"
msgstr ""
@@ -909,10 +899,10 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:192
-#: frappe/public/js/frappe/views/reports/query_report.js:205
-#: frappe/public/js/frappe/views/reports/query_report.js:215
-#: frappe/public/js/frappe/views/reports/query_report.js:845
+#: frappe/public/js/frappe/views/reports/query_report.js:190
+#: frappe/public/js/frappe/views/reports/query_report.js:203
+#: frappe/public/js/frappe/views/reports/query_report.js:213
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Actions"
msgstr ""
@@ -974,8 +964,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:267
-#: frappe/public/js/frappe/views/reports/query_report.js:295
+#: frappe/public/js/frappe/views/reports/query_report.js:265
+#: frappe/public/js/frappe/views/reports/query_report.js:293
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr ""
@@ -1016,7 +1006,7 @@ msgstr ""
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:211
+#: frappe/public/js/frappe/views/reports/query_report.js:209
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1025,10 +1015,10 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1769
-#: frappe/public/js/frappe/views/reports/query_report.js:1772
-#: frappe/public/js/frappe/views/reports/report_view.js:349
-#: frappe/public/js/frappe/views/reports/report_view.js:374
+#: frappe/public/js/frappe/views/reports/query_report.js:1771
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/report_view.js:355
+#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
msgstr ""
@@ -1052,7 +1042,7 @@ msgid "Add Custom Tags"
msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
-#: frappe/public/js/frappe/widgets/widget_dialog.js:703
+#: frappe/public/js/frappe/widgets/widget_dialog.js:716
msgid "Add Filters"
msgstr ""
@@ -1087,7 +1077,7 @@ msgstr ""
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:806
+#: frappe/core/doctype/user/user.py:808
msgid "Add Roles"
msgstr ""
@@ -1232,7 +1222,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:253
+#: frappe/public/js/frappe/views/reports/query_report.js:251
msgid "Add to Dashboard"
msgstr ""
@@ -1387,11 +1377,11 @@ msgstr ""
msgid "Administrator"
msgstr ""
-#: frappe/core/doctype/user/user.py:1211
+#: frappe/core/doctype/user/user.py:1213
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1205
+#: frappe/core/doctype/user/user.py:1207
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
@@ -1624,12 +1614,6 @@ msgstr ""
msgid "Allow Consecutive Login Attempts "
msgstr ""
-#. Label of the allow_dropbox_access (Button) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Allow Dropbox Access"
-msgstr ""
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
msgid "Allow Google Calendar Access"
msgstr ""
@@ -1638,10 +1622,6 @@ msgstr ""
msgid "Allow Google Contacts Access"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:52
-msgid "Allow Google Drive Access"
-msgstr ""
-
#. Label of the allow_guest (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
@@ -1895,7 +1875,7 @@ msgstr ""
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
-#: frappe/core/doctype/user/user.py:1021
+#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr ""
@@ -1903,11 +1883,11 @@ msgstr ""
msgid "Already in the following Users ToDo list:{0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:896
+#: frappe/public/js/frappe/views/reports/report_view.js:902
msgid "Also adding the dependent currency field {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:909
+#: frappe/public/js/frappe/views/reports/report_view.js:915
msgid "Also adding the status dependency field {0}"
msgstr ""
@@ -1986,7 +1966,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:550
+#: frappe/model/document.py:549
msgid "Amendment Not Allowed"
msgstr ""
@@ -2075,15 +2055,6 @@ msgstr ""
msgid "App"
msgstr ""
-#. Label of the app_access_key (Data) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Access Key"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:22
-msgid "App Access Key and/or Secret Key are not present."
-msgstr ""
-
#. Label of the client_id (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client ID"
@@ -2117,16 +2088,11 @@ msgstr ""
msgid "App Name"
msgstr ""
-#. Label of the app_secret_key (Password) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Secret Key"
-msgstr ""
-
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1462
+#: frappe/__init__.py:1465
msgid "App {0} is not installed"
msgstr ""
@@ -2276,7 +2242,7 @@ msgstr ""
msgid "Are you sure you want to clear the assignments?"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:290
+#: frappe/public/js/frappe/form/grid.js:294
msgid "Are you sure you want to delete all rows?"
msgstr ""
@@ -2304,7 +2270,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:965
+#: frappe/public/js/frappe/views/reports/query_report.js:967
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2430,7 +2396,7 @@ msgstr ""
msgid "Assigned By Full Name"
msgstr ""
-#: frappe/model/meta.py:60
+#: 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
@@ -2700,13 +2666,11 @@ msgstr ""
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
#. Contacts'
-#. Label of the authorization_code (Data) field in DocType 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
@@ -2744,12 +2708,6 @@ msgstr ""
msgid "Authorize Google Contacts Access"
msgstr ""
-#. Label of the authorize_google_drive_access (Button) field in DocType 'Google
-#. Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Authorize Google Drive 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"
@@ -2896,11 +2854,11 @@ msgstr ""
msgid "Automatic"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:774
+#: 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:768
+#: frappe/email/doctype/email_account/email_account.py:766
msgid "Automatic Linking can be activated only if Incoming is enabled."
msgstr ""
@@ -3114,66 +3072,14 @@ msgstr ""
msgid "Background Workers"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:170
-msgid "Backing up Data."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:32
-msgid "Backing up to Google Drive."
-msgstr ""
-
-#. Label of a Card Break in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Backup"
-msgstr ""
-
-#. Label of the backup_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Details"
-msgstr ""
-
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
msgstr ""
-#. Label of the backup_files (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Files"
-msgstr ""
-
-#. Label of the backup_folder_id (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder ID"
-msgstr ""
-
-#. Label of the backup_folder_name (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder Name"
-msgstr ""
-
-#. Label of the backup_frequency (Select) field in DocType 'Dropbox Settings'
-#. Label of the frequency (Select) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Frequency"
-msgstr ""
-
-#. Label of the backup_path (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Path"
-msgstr ""
-
#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
msgstr ""
-#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup public and private files along with the database."
-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'
@@ -3187,7 +3093,7 @@ msgstr ""
msgid "Backups (MB)"
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:65
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
msgid "Bad Cron Expression"
msgstr ""
@@ -3584,15 +3490,6 @@ msgstr ""
msgid "Brute Force Security"
msgstr ""
-#. Label of the bucket (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Bucket Name"
-msgstr ""
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:71
-msgid "Bucket {0} not found."
-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"
@@ -3629,7 +3526,7 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1184
+#: frappe/public/js/frappe/form/grid.js:1188
msgid "Bulk Edit {0}"
msgstr ""
@@ -3704,12 +3601,6 @@ msgstr ""
msgid "By default the title is used as meta title, adding a value here will override it."
msgstr ""
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "By default, emails are only sent for failed backups."
-msgstr ""
-
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
@@ -4020,7 +3911,7 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1156
+#: frappe/model/base_document.py:1161
msgid "Cannot Update After Submit"
msgstr ""
@@ -4040,11 +3931,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1012
+#: frappe/model/document.py:1011
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1026
+#: frappe/model/document.py:1025
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -4127,7 +4018,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1032
+#: frappe/model/document.py:1031
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4160,11 +4051,11 @@ msgstr ""
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1128
+#: frappe/public/js/frappe/form/grid.js:1132
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1100
+#: frappe/model/document.py:1099
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4180,7 +4071,7 @@ msgstr ""
msgid "Cannot move row"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:921
+#: frappe/public/js/frappe/views/reports/report_view.js:927
msgid "Cannot remove ID field"
msgstr ""
@@ -4205,11 +4096,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr ""
-#: frappe/model/db_query.py:1125
+#: frappe/model/db_query.py:1126
msgid "Cannot use sub-query in order by"
msgstr ""
-#: frappe/model/db_query.py:1144
+#: frappe/model/db_query.py:1145
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4235,7 +4126,7 @@ msgstr ""
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:261
msgid "Card Label"
msgstr ""
@@ -4377,7 +4268,7 @@ msgstr ""
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:290
+#: frappe/public/js/frappe/views/reports/query_report.js:288
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4397,7 +4288,7 @@ 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:499
+#: frappe/public/js/frappe/views/reports/report_view.js:505
msgid "Chart Type"
msgstr ""
@@ -4511,7 +4402,7 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:638
+#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4604,10 +4495,6 @@ msgstr ""
msgid "Click here to verify"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:47
-msgid "Click on Authorize Google Drive Access to authorize Google Drive Access."
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4634,7 +4521,6 @@ msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
-#: frappe/integrations/doctype/google_drive/google_drive.py:53
#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
msgstr ""
@@ -4808,7 +4694,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4863,9 +4749,9 @@ 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:1229
-#: frappe/public/js/frappe/widgets/widget_dialog.js:533
-#: frappe/public/js/frappe/widgets/widget_dialog.js:681
+#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: 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
@@ -5006,7 +4892,7 @@ msgstr ""
msgid "Comment publicity can only be updated by the original author or a System Manager."
msgstr ""
-#: frappe/model/meta.py:59 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/model/meta.js:209
#: frappe/public/js/frappe/model/model.js:135
#: frappe/website/doctype/web_form/templates/web_form.html:122
@@ -5113,7 +4999,7 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:477
+#: frappe/core/doctype/user/user.py:478
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
@@ -5209,7 +5095,7 @@ msgstr ""
msgid "Configuration"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:481
+#: frappe/public/js/frappe/views/reports/report_view.js:487
msgid "Configure Chart"
msgstr ""
@@ -5546,7 +5432,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1096
+#: frappe/model/document.py:1095
msgid "Could not find {0}"
msgstr ""
@@ -5575,7 +5461,7 @@ msgstr ""
msgid "Count"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:527
+#: frappe/public/js/frappe/widgets/widget_dialog.js:540
msgid "Count Customizations"
msgstr ""
@@ -5583,10 +5469,14 @@ msgstr ""
#. 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:512
+#: 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"
@@ -5637,7 +5527,7 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1261
+#: frappe/public/js/frappe/views/reports/query_report.js:1263
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5651,13 +5541,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:188
-#: frappe/public/js/frappe/views/reports/query_report.js:233
+#: frappe/public/js/frappe/views/reports/query_report.js:186
+#: frappe/public/js/frappe/views/reports/query_report.js:231
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:286
-#: frappe/public/js/frappe/views/reports/query_report.js:1188
+#: frappe/public/js/frappe/views/reports/query_report.js:284
+#: frappe/public/js/frappe/views/reports/query_report.js:1190
msgid "Create Chart"
msgstr ""
@@ -5768,7 +5658,7 @@ msgstr ""
msgid "Created At"
msgstr ""
-#: frappe/model/meta.py:56
+#: 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
@@ -5780,14 +5670,14 @@ 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:51
+#: 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:515
+#: frappe/public/js/frappe/desk.js:523
#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
msgstr ""
@@ -5810,7 +5700,7 @@ msgstr ""
msgid "Cron Format"
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:59
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
msgstr ""
@@ -6207,11 +6097,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -6220,9 +6105,6 @@ msgstr ""
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:398
#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
@@ -6776,7 +6658,7 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/toolbar.js:461
-#: frappe/public/js/frappe/views/reports/report_view.js:1734
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
@@ -6819,7 +6701,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:932
+#: frappe/public/js/frappe/views/reports/query_report.js:934
msgid "Delete and Generate New"
msgstr ""
@@ -6828,7 +6710,7 @@ msgctxt "Button text"
msgid "Delete column"
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:738
+#: frappe/public/js/frappe/form/footer/form_timeline.js:741
msgid "Delete comment?"
msgstr ""
@@ -6914,7 +6796,7 @@ msgstr ""
msgid "Deleting {0} records..."
msgstr ""
-#: frappe/public/js/frappe/model/model.js:741
+#: frappe/public/js/frappe/model/model.js:692
msgid "Deleting {0}..."
msgstr ""
@@ -6960,7 +6842,7 @@ 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:310
+#: frappe/public/js/frappe/widgets/widget_dialog.js:323
#: frappe/www/attribution.html:29
msgid "Dependencies"
msgstr ""
@@ -7074,6 +6956,7 @@ msgstr ""
#: 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
@@ -7371,14 +7254,10 @@ 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:1189
+#: frappe/public/js/frappe/form/grid.js:1193
msgid "Do not edit headers which are preset in the template"
msgstr ""
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:69
-msgid "Do not have permission to access bucket {0}."
-msgstr ""
-
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
@@ -7511,7 +7390,7 @@ 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:466
+#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
msgstr ""
@@ -7571,7 +7450,7 @@ 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:669
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
msgid "Doctype"
msgstr ""
@@ -7689,7 +7568,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:477
+#: frappe/model/document.py:476
msgid "Document Queued"
msgstr ""
@@ -7742,7 +7621,7 @@ msgstr ""
msgid "Document States"
msgstr ""
-#: frappe/model/meta.py:52 frappe/public/js/frappe/model/meta.js:202
+#: 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 ""
@@ -7813,11 +7692,11 @@ msgstr ""
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: frappe/permissions.py:148
+#: frappe/permissions.py:149
msgid "Document Type is not importable"
msgstr ""
-#: frappe/permissions.py:144
+#: frappe/permissions.py:145
msgid "Document Type is not submittable"
msgstr ""
@@ -7846,7 +7725,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1943
+#: frappe/model/document.py:1942
msgid "Document Unlocked"
msgstr ""
@@ -8037,7 +7916,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:835
+#: frappe/public/js/frappe/views/reports/query_report.js:830
msgid "Download Report"
msgstr ""
@@ -8048,7 +7927,7 @@ 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:57
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
msgid "Download Your Data"
msgstr ""
@@ -8104,29 +7983,6 @@ msgstr ""
msgid "Drop files here"
msgstr ""
-#. Label of the dropbox_access_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Access Token"
-msgstr ""
-
-#. Label of the dropbox_refresh_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Refresh Token"
-msgstr ""
-
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Dropbox Settings"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:347
-msgid "Dropbox Setup"
-msgstr ""
-
#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
@@ -8156,7 +8012,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:666 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
@@ -8255,13 +8111,13 @@ msgstr ""
#: 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:668
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:669
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:883
-#: frappe/public/js/frappe/views/reports/query_report.js:1722
+#: frappe/public/js/frappe/views/reports/query_report.js:878
+#: frappe/public/js/frappe/views/reports/query_report.js:1724
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8424,7 +8280,7 @@ msgstr ""
msgid "Edit your workflow visually using the Workflow Builder."
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:672
+#: frappe/public/js/frappe/views/reports/report_view.js:678
#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
msgstr ""
@@ -8525,7 +8381,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:736
+#: frappe/core/doctype/user/user.py:738
msgid "Email Account added multiple times"
msgstr ""
@@ -8533,7 +8389,7 @@ msgstr ""
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:578
+#: frappe/email/doctype/email_account/email_account.py:576
msgid "Email Account {0} Disabled"
msgstr ""
@@ -8759,7 +8615,7 @@ msgstr ""
msgid "Emails Pulled"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:936
+#: frappe/email/doctype/email_account/email_account.py:934
msgid "Emails are already being pulled from this account."
msgstr ""
@@ -8782,11 +8638,9 @@ 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 Drive'
#. 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_drive/google_drive.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
msgstr ""
@@ -8806,11 +8660,6 @@ msgstr ""
msgid "Enable Auto Reply"
msgstr ""
-#. Label of the enabled (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Enable Automatic Backup"
-msgstr ""
-
#. Label of the enable_automatic_linking (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -8969,7 +8818,6 @@ msgstr ""
#. 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 'Dropbox Settings'
#. 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'
@@ -8980,7 +8828,6 @@ msgstr ""
#: 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/dropbox_settings/dropbox_settings.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/public/js/frappe/model/indicator.js:106
@@ -8993,7 +8840,7 @@ msgstr ""
msgid "Enabled Scheduler"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:1012
+#: frappe/email/doctype/email_account/email_account.py:1010
msgid "Enabled email inbox for user {0}"
msgstr ""
@@ -9074,11 +8921,6 @@ msgstr ""
msgid "Ended At"
msgstr ""
-#. Label of the endpoint_url (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Endpoint URL"
-msgstr ""
-
#. Label of the sb_endpoints_section (Section Break) field in DocType
#. 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -9257,7 +9099,7 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:672
+#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9265,15 +9107,15 @@ msgstr ""
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr ""
-#: frappe/model/base_document.py:806
+#: frappe/model/base_document.py:803
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:816
+#: frappe/model/base_document.py:813
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:810
+#: frappe/model/base_document.py:807
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9422,7 +9264,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2069
+#: frappe/public/js/frappe/views/reports/query_report.js:2071
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9448,7 +9290,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9505,8 +9347,8 @@ 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:1757
-#: frappe/public/js/frappe/views/reports/report_view.js:1621
+#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
@@ -9557,11 +9399,11 @@ msgstr ""
msgid "Export Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1632
+#: frappe/public/js/frappe/views/reports/report_view.js:1638
msgid "Export all matching rows?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1642
+#: frappe/public/js/frappe/views/reports/report_view.js:1648
msgid "Export all {0} rows?"
msgstr ""
@@ -9869,8 +9711,8 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:237
-#: frappe/public/js/frappe/views/reports/query_report.js:1816
+#: frappe/public/js/frappe/views/reports/query_report.js:235
+#: frappe/public/js/frappe/views/reports/query_report.js:1818
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9945,7 +9787,7 @@ msgstr ""
msgid "Field {0} does not exist on {1}"
msgstr ""
-#: frappe/desk/form/meta.py:208
+#: frappe/desk/form/meta.py:184
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
@@ -10048,7 +9890,7 @@ msgstr ""
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
-#: frappe/model/db_query.py:144
+#: frappe/model/db_query.py:146
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
@@ -10097,13 +9939,6 @@ msgstr ""
msgid "File '{0}' not found"
msgstr ""
-#. Label of the file_backup (Check) field in DocType 'Dropbox Settings'
-#. Label of the file_backup (Check) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "File Backup"
-msgstr ""
-
#. Label of the private_file_section (Section Break) field in DocType 'Access
#. Log'
#: frappe/core/doctype/access_log/access_log.json
@@ -10304,7 +10139,7 @@ msgstr ""
msgid "Filters {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1421
+#: frappe/public/js/frappe/views/reports/report_view.js:1427
msgid "Filters:"
msgstr ""
@@ -10451,7 +10286,7 @@ msgstr ""
msgid "Following document {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:111
+#: frappe/website/doctype/web_form/web_form.py:108
msgid "Following fields are missing:"
msgstr ""
@@ -10459,7 +10294,7 @@ msgstr ""
msgid "Following fields have invalid values:"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:345
+#: frappe/public/js/frappe/widgets/widget_dialog.js:358
msgid "Following fields have missing values"
msgstr ""
@@ -10602,7 +10437,7 @@ msgstr ""
msgid "For Document Type"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:553
+#: frappe/public/js/frappe/widgets/widget_dialog.js:566
msgid "For Example: {} Open"
msgstr ""
@@ -10631,7 +10466,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/query_report.js:2068
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10784,7 +10619,7 @@ msgstr ""
#. 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:552
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
msgid "Format"
msgstr ""
@@ -10816,7 +10651,7 @@ msgstr ""
#. 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:149
+#: frappe/www/login.py:153
msgid "Frappe"
msgstr ""
@@ -10833,7 +10668,7 @@ msgstr ""
msgid "Frappe Mail"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:549
+#: frappe/email/doctype/email_account/email_account.py:547
msgid "Frappe Mail OAuth Error"
msgstr ""
@@ -10861,13 +10696,11 @@ msgstr ""
#. 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'
-#. Label of the frequency (Select) field in DocType 'Google Drive'
#: 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/integrations/doctype/google_drive/google_drive.json
#: frappe/public/js/frappe/utils/common.js:395
msgid "Frequency"
msgstr ""
@@ -10913,7 +10746,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
+#: frappe/public/js/frappe/views/reports/query_report.js:1779
msgid "From Document Type"
msgstr ""
@@ -10964,16 +10797,16 @@ 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:247
-#: frappe/public/js/frappe/widgets/widget_dialog.js:686
+#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:693
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:670
+#: frappe/__init__.py:677
msgid "Function {0} is not whitelisted."
msgstr ""
@@ -11038,7 +10871,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:877
+#: frappe/public/js/frappe/views/reports/query_report.js:872
msgid "Generate New Report"
msgstr ""
@@ -11326,32 +11159,12 @@ msgstr ""
msgid "Google Contacts Id"
msgstr ""
-#. Name of a DocType
-#. Label of the google_drive_section (Section Break) field in DocType 'Google
-#. Drive'
#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/google_drive/google_drive.json
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:117
-msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:132
-msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:193
-msgid "Google Drive - Could not locate - {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:204
-msgid "Google Drive Backup Successful."
-msgstr ""
-
#. Label of the section_break_7 (Section Break) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -11681,6 +11494,10 @@ msgstr ""
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'
@@ -12004,17 +11821,17 @@ msgstr ""
msgid "Home Settings"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:330
-#: frappe/core/doctype/file/test_file.py:332
-#: frappe/core/doctype/file/test_file.py:396
+#: 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:385
+#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:341
+#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
msgstr ""
@@ -12059,7 +11876,7 @@ msgstr ""
#: frappe/core/doctype/data_import/importer.py:1177
#: frappe/core/doctype/data_import/importer.py:1242
#: frappe/core/doctype/data_import/importer.py:1245
-#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:50
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
#: frappe/public/js/frappe/list/list_settings.js:337
@@ -12071,7 +11888,7 @@ msgid "ID"
msgstr ""
#: frappe/desk/reportview.py:491
-#: frappe/public/js/frappe/views/reports/report_view.js:978
+#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
msgstr ""
@@ -12255,12 +12072,6 @@ msgstr ""
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
msgstr ""
-#. Description of the 'Backup Path' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "If it's empty, it will backup to the root of the bucket."
-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"
@@ -12391,16 +12202,12 @@ msgstr ""
msgid "Ignored Apps"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:348
-msgid "Illegal Access Token. Please try again"
-msgstr ""
-
#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
msgstr ""
-#: frappe/model/db_query.py:451 frappe/model/db_query.py:454
-#: frappe/model/db_query.py:1128
+#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
+#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
msgstr ""
@@ -12749,11 +12556,11 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1592
+#: frappe/public/js/frappe/views/reports/query_report.js:1594
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1584
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Include indentation"
msgstr ""
@@ -12820,11 +12627,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1542
+#: frappe/model/document.py:1541
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1544
+#: frappe/model/document.py:1543
msgid "Incorrect value:"
msgstr ""
@@ -12833,10 +12640,10 @@ msgstr ""
#. 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:53
+#: 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:999
+#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
msgstr ""
@@ -12911,7 +12718,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:1822
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
msgid "Insert After"
msgstr ""
@@ -12927,7 +12734,7 @@ msgstr ""
msgid "Insert Below"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:384
+#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
msgstr ""
@@ -12976,11 +12783,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:818
+#: frappe/permissions.py:827
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:376
+#: frappe/database/query.py:383
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -13098,7 +12905,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:221
#: frappe/public/js/frappe/form/grid_row.js:833
#: frappe/public/js/frappe/form/layout.js:811
-#: frappe/public/js/frappe/views/reports/report_view.js:710
+#: frappe/public/js/frappe/views/reports/report_view.js:716
msgid "Invalid \"depends_on\" expression"
msgstr ""
@@ -13138,7 +12945,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:102
+#: frappe/database/query.py:103
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13183,6 +12990,7 @@ 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 ""
@@ -13207,7 +13015,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1226 frappe/www/update-password.html:123
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
#: frappe/www/update-password.html:247
msgid "Invalid Password"
@@ -13236,7 +13044,7 @@ msgstr ""
#: frappe/core/doctype/file/file.py:220
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
-#: frappe/public/js/frappe/widgets/widget_dialog.js:589
+#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
msgstr ""
@@ -13257,11 +13065,11 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:393
+#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
-#: frappe/model/document.py:1015 frappe/model/document.py:1029
+#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13285,7 +13093,7 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:182
+#: frappe/database/query.py:189
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
@@ -13311,7 +13119,7 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:324
+#: frappe/app.py:317
msgid "Invalid request arguments"
msgstr ""
@@ -13495,7 +13303,7 @@ 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:328
+#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
msgstr ""
@@ -13710,6 +13518,10 @@ msgstr ""
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 ""
@@ -13741,7 +13553,7 @@ msgstr ""
#. 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:498
+#: frappe/public/js/frappe/widgets/widget_dialog.js:511
msgid "Kanban Board"
msgstr ""
@@ -14013,10 +13825,10 @@ msgstr ""
#: 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:300
-#: frappe/public/js/frappe/widgets/widget_dialog.js:453
-#: frappe/public/js/frappe/widgets/widget_dialog.js:630
-#: frappe/public/js/frappe/widgets/widget_dialog.js:663
+#: 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
@@ -14101,11 +13913,6 @@ msgstr ""
msgid "Last Active"
msgstr ""
-#. Label of the last_backup_on (Datetime) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Last Backup On"
-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"
@@ -14190,12 +13997,12 @@ msgstr ""
msgid "Last Synced On"
msgstr ""
-#: frappe/model/meta.py:55 frappe/public/js/frappe/model/meta.js:205
+#: 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:54 frappe/public/js/frappe/model/meta.js:204
+#: 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 ""
@@ -14239,7 +14046,7 @@ msgid "Leave blank to repeat always"
msgstr ""
#: frappe/core/doctype/communication/mixins.py:207
-#: frappe/email/doctype/email_account/email_account.py:722
+#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
msgstr ""
@@ -14458,7 +14265,7 @@ msgstr ""
msgid "Liked"
msgstr ""
-#: frappe/model/meta.py:58 frappe/public/js/frappe/model/meta.js:208
+#: 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 ""
@@ -14473,11 +14280,6 @@ msgstr ""
msgid "Limit"
msgstr ""
-#. Label of the limit_no_of_backups (Check) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Limit Number of DB Backups"
-msgstr ""
-
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14592,11 +14394,11 @@ msgstr ""
#: 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:414
+#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:350
+#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
msgstr ""
@@ -14609,7 +14411,7 @@ msgstr ""
msgid "Link Type"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:346
+#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
msgstr ""
@@ -14761,7 +14563,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1085
+#: frappe/public/js/frappe/views/reports/query_report.js:1087
msgid "Loading"
msgstr ""
@@ -14892,7 +14694,7 @@ msgstr ""
msgid "Login Page"
msgstr ""
-#: frappe/www/login.py:152
+#: frappe/www/login.py:156
msgid "Login To {0}"
msgstr ""
@@ -15159,7 +14961,7 @@ msgstr ""
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:473
+#: frappe/website/doctype/web_form/web_form.py:470
msgid "Mandatory Information missing:"
msgstr ""
@@ -15434,7 +15236,7 @@ msgid "Menu"
msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:242
-#: frappe/public/js/frappe/model/model.js:754
+#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr ""
@@ -15613,7 +15415,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:672
+#: frappe/__init__.py:679
msgid "Method Not Allowed"
msgstr ""
@@ -15690,7 +15492,7 @@ msgstr ""
msgid "Miss"
msgstr ""
-#: frappe/desk/form/meta.py:218
+#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
msgstr ""
@@ -15715,7 +15517,7 @@ msgid "Missing Value"
msgstr ""
#: frappe/public/js/frappe/ui/field_group.js:124
-#: frappe/public/js/frappe/widgets/widget_dialog.js:361
+#: 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"
@@ -15898,8 +15700,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -15907,7 +15707,6 @@ msgstr ""
#: 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/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:400
#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
@@ -16079,7 +15878,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:462
+#: frappe/website/doctype/web_form/web_form.py:459
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16245,7 +16044,7 @@ msgstr ""
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:793
+#: frappe/model/document.py:792
msgid "Negative Value"
msgstr ""
@@ -16350,7 +16149,7 @@ 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:762
+#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr ""
@@ -16384,7 +16183,7 @@ msgstr ""
msgid "New Quick List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
msgstr ""
@@ -16440,26 +16239,26 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
#: frappe/public/js/frappe/form/toolbar.js:558
-#: frappe/public/js/frappe/model/model.js:661
+#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:379
+#: frappe/website/doctype/web_form/web_form.py:376
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:394
+#: frappe/public/js/frappe/views/reports/query_report.js:392
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:386
+#: frappe/public/js/frappe/views/reports/query_report.js:384
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:391
+#: frappe/public/js/frappe/views/reports/query_report.js:389
msgid "New {0} {1} created"
msgstr ""
@@ -16471,7 +16270,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:802
+#: frappe/core/doctype/user/user.py:804
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16633,7 +16432,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16774,7 +16573,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:803
+#: frappe/core/doctype/user/user.py:805
msgid "No Roles Specified"
msgstr ""
@@ -16925,7 +16724,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:827 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16934,7 +16733,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
-#: frappe/model/db_query.py:949
+#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
msgstr ""
@@ -17018,12 +16817,6 @@ msgstr ""
msgid "Non-Conforming"
msgstr ""
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "None"
-msgstr ""
-
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr ""
@@ -17038,7 +16831,7 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr ""
@@ -17059,7 +16852,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:374 frappe/www/404.html:3
+#: frappe/app.py:367 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -17085,9 +16878,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:754 frappe/app.py:367 frappe/desk/calendar.py:26
+#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:711
+#: frappe/website/doctype/web_form/web_form.py:708
#: 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
@@ -17108,7 +16901,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:813
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
-#: frappe/public/js/frappe/views/reports/report_view.js:197
+#: frappe/public/js/frappe/views/reports/report_view.js:203
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
@@ -17139,7 +16932,7 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:264
+#: frappe/core/doctype/user/user.py:265
msgid "Not a valid User Image."
msgstr ""
@@ -17155,7 +16948,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:360
+#: frappe/permissions.py:370
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17175,7 +16968,7 @@ msgstr ""
msgid "Not allowed to print draft documents"
msgstr ""
-#: frappe/permissions.py:212
+#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
msgstr ""
@@ -17191,12 +16984,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:214
+#: frappe/core/doctype/system_settings/system_settings.py:215
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:724
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17222,15 +17015,6 @@ msgstr ""
msgid "Note:"
msgstr ""
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'Dropbox Settings'
-#. Description of the 'Send Email for Successful backup' (Check) field in
-#. DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Note: By default emails for failed backups are sent."
-msgstr ""
-
#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr ""
@@ -17290,13 +17074,10 @@ msgstr ""
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
#. Name of a DocType
-#. Label of the notification_section (Section Break) field in DocType 'S3
-#. Backup Settings'
#: 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
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Notification"
msgstr ""
@@ -17398,7 +17179,7 @@ msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:615
+#: frappe/public/js/frappe/widgets/widget_dialog.js:628
msgid "Number Card"
msgstr ""
@@ -17416,7 +17197,7 @@ 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:645
+#: frappe/public/js/frappe/widgets/widget_dialog.js:658
msgid "Number Cards"
msgstr ""
@@ -17434,15 +17215,6 @@ msgstr ""
msgid "Number of Backups"
msgstr ""
-#. Label of the no_of_backups (Int) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Number of DB Backups"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:54
-msgid "Number of DB backups cannot be less than 1"
-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"
@@ -17458,7 +17230,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:169
+#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17687,7 +17459,7 @@ 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:322
+#: frappe/public/js/frappe/widgets/widget_dialog.js:335
msgid "Onboard"
msgstr ""
@@ -17783,19 +17555,13 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Only change this if you want to use other S3 compatible object storage backends."
-msgstr ""
-
-#: frappe/model/document.py:1232
+#: frappe/model/document.py:1231
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:315
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
msgstr ""
@@ -18044,7 +17810,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:870
+#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
msgstr ""
@@ -18156,7 +17922,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1742
+#: frappe/public/js/frappe/views/reports/query_report.js:1744
msgid "PDF"
msgstr ""
@@ -18455,7 +18221,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:798
+#: frappe/permissions.py:807
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18515,11 +18281,11 @@ msgstr ""
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1079
+#: frappe/core/doctype/user/user.py:1081
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:457
+#: frappe/core/doctype/user/user.py:458
msgid "Password Reset"
msgstr ""
@@ -18553,7 +18319,7 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1078
+#: frappe/core/doctype/user/user.py:1080
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18565,7 +18331,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:869
+#: frappe/core/doctype/user/user.py:871
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18722,7 +18488,7 @@ msgstr ""
msgid "Permanently Submit {0}?"
msgstr ""
-#: frappe/public/js/frappe/model/model.js:733
+#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
msgstr ""
@@ -18883,8 +18649,8 @@ msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:40
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
-#: frappe/public/js/frappe/views/reports/report_view.js:1576
+#: frappe/public/js/frappe/views/reports/report_view.js:1579
+#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
msgstr ""
@@ -18924,7 +18690,7 @@ msgstr ""
msgid "Plant"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:546
+#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
msgstr ""
@@ -18940,7 +18706,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:309
+#: frappe/public/js/frappe/views/reports/query_report.js:307
msgid "Please Set Chart"
msgstr ""
@@ -18956,7 +18722,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1063
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -18984,11 +18750,11 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:946
+#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1059
+#: frappe/core/doctype/user/user.py:1061
msgid "Please check your email for verification"
msgstr ""
@@ -19016,10 +18782,6 @@ msgstr ""
msgid "Please click on the following link to set your new password"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:343
-msgid "Please close this window"
-msgstr ""
-
#: frappe/www/confirm_workflow_action.html:4
msgid "Please confirm your action to {0} this document."
msgstr ""
@@ -19036,7 +18798,7 @@ msgstr ""
msgid "Please create chart first"
msgstr ""
-#: frappe/desk/form/meta.py:214
+#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
msgstr ""
@@ -19048,7 +18810,7 @@ msgstr ""
msgid "Please duplicate this to make changes"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:162
+#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19066,7 +18828,7 @@ msgstr ""
msgid "Please enable pop-ups in your browser"
msgstr ""
-#: frappe/integrations/google_oauth.py:53
+#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
msgstr ""
@@ -19143,7 +18905,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:987
+#: frappe/model/document.py:986
msgid "Please refresh to get the latest document."
msgstr ""
@@ -19167,7 +18929,7 @@ msgstr ""
msgid "Please save the document before removing assignment"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1703
+#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
msgstr ""
@@ -19183,11 +18945,11 @@ msgstr ""
msgid "Please select Entity Type first"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:112
+#: frappe/core/doctype/system_settings/system_settings.py:113
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1181
+#: frappe/public/js/frappe/views/reports/query_report.js:1183
msgid "Please select X and Y fields"
msgstr ""
@@ -19215,7 +18977,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1140
+#: frappe/model/db_query.py:1141
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19237,10 +18999,6 @@ msgstr ""
msgid "Please select {0}"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:305
-msgid "Please set Dropbox access keys in site config or doctype"
-msgstr ""
-
#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
msgstr ""
@@ -19249,7 +19007,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:1404
+#: frappe/public/js/frappe/views/reports/query_report.js:1406
msgid "Please set filters"
msgstr ""
@@ -19269,7 +19027,7 @@ msgstr ""
msgid "Please set the series to be used."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:125
+#: frappe/core/doctype/system_settings/system_settings.py:126
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr ""
@@ -19277,19 +19035,19 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:422
+#: frappe/core/doctype/user/user.py:423
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:434
+#: 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:823
+#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:774
+#: frappe/permissions.py:783
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19318,7 +19076,7 @@ msgstr ""
msgid "Please try again"
msgstr ""
-#: frappe/integrations/google_oauth.py:56
+#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
msgstr ""
@@ -19631,8 +19389,8 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1728
-#: frappe/public/js/frappe/views/reports/report_view.js:1531
+#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr ""
@@ -19875,7 +19633,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
msgstr ""
@@ -20196,7 +19954,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:729
+#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
msgstr ""
@@ -20217,7 +19975,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:554
+#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
msgstr ""
@@ -20250,12 +20008,6 @@ msgstr ""
msgid "Queued for Submission. You can track the progress over {0}."
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:65
-#: frappe/integrations/doctype/google_drive/google_drive.py:153
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:86
-msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr ""
-
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
@@ -20391,7 +20143,7 @@ msgstr ""
msgid "Re-Run in Console"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:728
+#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
msgstr ""
@@ -20493,7 +20245,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:889
+#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
msgstr ""
@@ -20858,11 +20610,11 @@ msgid "Referrer"
msgstr ""
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:548
+#: frappe/public/js/frappe/desk.js:556
#: 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:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1719
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20881,12 +20633,10 @@ 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 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
@@ -20903,7 +20653,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
msgstr ""
@@ -21066,7 +20816,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
#: frappe/public/js/frappe/form/toolbar.js:432
-#: frappe/public/js/frappe/model/model.js:772
+#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
msgstr ""
@@ -21076,7 +20826,7 @@ msgstr ""
msgid "Rename Fieldname"
msgstr ""
-#: frappe/public/js/frappe/model/model.js:759
+#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
msgstr ""
@@ -21140,7 +20890,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:146
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
msgstr ""
@@ -21278,7 +21028,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1902
+#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
msgstr ""
@@ -21330,7 +21080,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1009
+#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
msgstr ""
@@ -21346,11 +21096,11 @@ msgstr ""
msgid "Report updated successfully"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1351
+#: frappe/public/js/frappe/views/reports/report_view.js:1357
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1940
+#: frappe/public/js/frappe/views/reports/query_report.js:1942
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21386,7 +21136,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:925
+#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
msgstr ""
@@ -21836,7 +21586,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:363
+#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -21951,7 +21701,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:855 frappe/model/document.py:778
+#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
msgstr ""
@@ -21964,7 +21714,7 @@ msgstr ""
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:982
msgid "Row #{0}:"
msgstr ""
@@ -22042,7 +21792,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:653
+#: frappe/permissions.py:662
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22086,23 +21836,6 @@ msgstr ""
msgid "Runtime in Seconds"
msgstr ""
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "S3 Backup Settings"
-msgstr ""
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
-msgid "S3 Backup complete!"
-msgstr ""
-
-#. Label of the s3_bucket_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Bucket Details"
-msgstr ""
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
@@ -22243,7 +21976,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/page/print/print.js:858
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/quick_entry.js:185
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
@@ -22253,8 +21986,8 @@ msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
-#: frappe/public/js/frappe/views/reports/query_report.js:1894
-#: frappe/public/js/frappe/views/reports/report_view.js:1720
+#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
@@ -22271,8 +22004,8 @@ msgstr ""
msgid "Save Anyway"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1382
-#: frappe/public/js/frappe/views/reports/report_view.js:1727
+#: frappe/public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
msgstr ""
@@ -22280,7 +22013,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1897
+#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
msgstr ""
@@ -22446,7 +22179,7 @@ msgstr ""
msgid "Scheduler Status"
msgstr ""
-#: frappe/utils/scheduler.py:249
+#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr ""
@@ -22672,7 +22405,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:858
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "See all past reports."
msgstr ""
@@ -22752,7 +22485,7 @@ msgstr ""
msgid "Select Child Table"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:377
+#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
msgstr ""
@@ -23069,31 +22802,11 @@ msgstr ""
msgid "Send Email To Creator"
msgstr ""
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Dropbox Settings'
-#. Label of the send_email_for_successful_backup (Check) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Email for Successful Backup"
-msgstr ""
-
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Email for Successful backup"
-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 email (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Notification To"
-msgstr ""
-
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -23110,14 +22823,6 @@ msgstr ""
msgid "Send Notifications For Email Threads"
msgstr ""
-#. Label of the send_notifications_to (Data) field in DocType 'Dropbox
-#. Settings'
-#. Label of the notify_email (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Notifications To"
-msgstr ""
-
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
msgstr ""
@@ -23376,7 +23081,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:383 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23442,7 +23147,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:360
+#: frappe/app.py:353
msgid "Session Expired"
msgstr ""
@@ -23451,7 +23156,7 @@ msgstr ""
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:119
+#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
msgstr ""
@@ -23474,7 +23179,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:201
+#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
msgstr ""
@@ -23500,7 +23205,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
msgstr ""
@@ -23718,8 +23423,8 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1763
-#: frappe/public/js/frappe/views/reports/report_view.js:1698
+#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23815,6 +23520,15 @@ msgstr ""
msgid "Show \"Call to Action\" in Blog"
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"
@@ -23985,7 +23699,7 @@ msgstr ""
msgid "Show Title in Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1521
+#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
msgstr ""
@@ -24095,7 +23809,7 @@ msgstr ""
msgid "Show {0} List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:495
+#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
msgstr ""
@@ -24130,7 +23844,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
msgstr ""
@@ -24775,7 +24489,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
-#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: frappe/public/js/frappe/views/reports/report_view.js:975
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
@@ -25074,7 +24788,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:1166
+#: frappe/public/js/frappe/form/grid.js:1170
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25171,7 +24885,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:720
+#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
msgstr ""
@@ -25461,11 +25175,9 @@ msgstr ""
#: frappe/geo/doctype/country/country.json
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/connected_app/connected_app.json
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.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_drive/google_drive.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
@@ -25474,7 +25186,6 @@ msgstr ""
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_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
@@ -25599,11 +25310,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1165
+#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1565
+#: frappe/model/document.py:1564
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25622,7 +25333,7 @@ msgstr ""
msgid "Tag Link"
msgstr ""
-#: frappe/model/meta.py:57
+#: 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
@@ -25634,15 +25345,6 @@ msgstr ""
msgid "Tags"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:29
-msgid "Take Backup"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
-msgid "Take Backup Now"
-msgstr ""
-
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
msgstr ""
@@ -25720,12 +25422,12 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1027
+#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
msgstr ""
-#: frappe/core/doctype/translation/test_translation.py:56
-#: frappe/core/doctype/translation/test_translation.py:63
+#: frappe/core/doctype/translation/test_translation.py:47
+#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
msgstr ""
@@ -25734,8 +25436,8 @@ msgstr ""
msgid "Test Job ID"
msgstr ""
-#: frappe/core/doctype/translation/test_translation.py:58
-#: frappe/core/doctype/translation/test_translation.py:66
+#: frappe/core/doctype/translation/test_translation.py:49
+#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
msgstr ""
@@ -25743,7 +25445,7 @@ msgstr ""
msgid "Test email sent to {0}"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:388
+#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25824,7 +25526,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1188
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
msgstr ""
@@ -25992,15 +25694,15 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:987
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:991
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -26012,7 +25714,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:334
+#: frappe/utils/response.py:331
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26073,7 +25775,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26102,7 +25804,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:958
+#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26189,12 +25891,12 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:750
+#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:117
-#: frappe/public/js/frappe/model/model.js:755
+#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr ""
@@ -26232,7 +25934,7 @@ msgstr ""
msgid "This document is already amended, you cannot ammend it again"
msgstr ""
-#: frappe/model/document.py:474
+#: frappe/model/document.py:473
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -26293,7 +25995,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2132
+#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26357,7 +26059,7 @@ msgstr ""
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1033
+#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26365,7 +26067,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:856
+#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
msgstr ""
@@ -26431,7 +26133,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1240
+#: frappe/core/doctype/user/user.py:1242
msgid "Throttled"
msgstr ""
@@ -26782,7 +26484,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:857
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26807,10 +26509,6 @@ msgstr ""
msgid "To use Google Contacts, enable {0}."
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:8
-msgid "To use Google Drive, enable {0}."
-msgstr ""
-
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -26841,7 +26539,7 @@ msgstr ""
msgid "Today"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1564
+#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
msgstr ""
@@ -26857,7 +26555,7 @@ 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:1568
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
msgstr ""
@@ -26913,11 +26611,11 @@ msgstr ""
msgid "Too many changes to database in single action."
msgstr ""
-#: frappe/utils/background_jobs.py:728
+#: 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:1028
+#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -26981,8 +26679,8 @@ msgstr ""
#: frappe/desk/query_report.py:533
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1320
-#: frappe/public/js/frappe/views/reports/report_view.js:1545
+#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr ""
@@ -27045,11 +26743,11 @@ msgstr ""
msgid "Total:"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1250
+#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1225
+#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
msgstr ""
@@ -27162,7 +26860,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2188
+#: frappe/public/js/frappe/views/reports/query_report.js:2183
msgid "Translate Data"
msgstr ""
@@ -27173,7 +26871,7 @@ msgstr ""
msgid "Translate Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1650
+#: frappe/public/js/frappe/views/reports/report_view.js:1656
msgid "Translate values"
msgstr ""
@@ -27321,7 +27019,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/views/file/file_view.js:337
#: frappe/public/js/frappe/views/workspace/workspace.js:399
-#: frappe/public/js/frappe/widgets/widget_dialog.js:391
+#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
msgid "Type"
@@ -27401,7 +27099,7 @@ msgstr ""
#: 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:458
+#: 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"
@@ -27463,7 +27161,7 @@ msgstr ""
msgid "Unable to load camera."
msgstr ""
-#: frappe/public/js/frappe/model/model.js:268
+#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
msgstr ""
@@ -27492,7 +27190,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:383
+#: frappe/app.py:376
msgid "Uncaught Exception"
msgstr ""
@@ -27725,7 +27423,7 @@ msgstr ""
msgid "Updated Successfully"
msgstr ""
-#: frappe/public/js/frappe/desk.js:444
+#: frappe/public/js/frappe/desk.js:452
msgid "Updated To A New Version 🎉"
msgstr ""
@@ -27733,7 +27431,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:333
+#: frappe/utils/response.py:330
msgid "Updating"
msgstr ""
@@ -27807,18 +27505,6 @@ msgstr ""
msgid "Uploaded To Google Drive"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:196
-msgid "Uploading backup to Google Drive."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:201
-msgid "Uploading successful."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:16
-msgid "Uploading to Google Drive"
-msgstr ""
-
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -27902,11 +27588,11 @@ msgstr ""
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:434
+#: frappe/model/db_query.py:435
msgid "Use of function {0} in field is restricted"
msgstr ""
-#: frappe/model/db_query.py:411
+#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
msgstr ""
@@ -28023,7 +27709,7 @@ msgstr ""
msgid "User Cannot Search"
msgstr ""
-#: frappe/public/js/frappe/desk.js:546
+#: frappe/public/js/frappe/desk.js:554
msgid "User Changed"
msgstr ""
@@ -28129,8 +27815,8 @@ 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:1881
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
@@ -28227,7 +27913,7 @@ msgstr ""
msgid "User permission already exists"
msgstr ""
-#: frappe/www/login.py:167
+#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
msgstr ""
@@ -28235,23 +27921,23 @@ msgstr ""
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: frappe/core/doctype/user/user.py:536
+#: frappe/core/doctype/user/user.py:537
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:326
+#: frappe/core/doctype/user/user.py:327
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:602
+#: frappe/core/doctype/user/user.py:603
msgid "User {0} cannot be renamed"
msgstr ""
-#: frappe/permissions.py:138
+#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
msgstr ""
-#: frappe/permissions.py:161
+#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr ""
@@ -28264,7 +27950,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1369
+#: frappe/core/doctype/user/user.py:1371
msgid "User {0} impersonated as {1}"
msgstr ""
@@ -28293,7 +27979,7 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:687
+#: frappe/core/doctype/user/user.py:689
msgid "Username {0} already exists"
msgstr ""
@@ -28433,15 +28119,15 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1049 frappe/model/document.py:834
+#: frappe/model/base_document.py:1054 frappe/model/document.py:833
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:780
+#: frappe/model/document.py:779
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:784
+#: frappe/model/document.py:783
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28472,7 +28158,7 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1124
msgid "Value too big"
msgstr ""
@@ -29073,11 +28759,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -29086,9 +28767,6 @@ msgstr ""
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:399
#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
@@ -29123,11 +28801,11 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:414
+#: frappe/core/doctype/user/user.py:415
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:475
+#: frappe/core/doctype/user/user.py:476
msgid "Welcome to {0}"
msgstr ""
@@ -29160,7 +28838,7 @@ 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:468
+#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
msgstr ""
@@ -29359,7 +29037,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:177
+#: frappe/public/js/frappe/router.js:173
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29429,11 +29107,11 @@ msgstr ""
msgid "Workspaces"
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:753
+#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
msgstr ""
@@ -29452,11 +29130,11 @@ msgstr ""
msgid "Write"
msgstr ""
-#: frappe/model/base_document.py:949
+#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:484
+#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
msgstr ""
@@ -29475,13 +29153,13 @@ msgstr ""
msgid "Y Axis"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:491
+#: frappe/public/js/frappe/views/reports/report_view.js:497
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:1221
+#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
msgstr ""
@@ -29542,7 +29220,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29582,11 +29260,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:409
+#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:398
+#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29609,7 +29287,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:604
+#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29621,7 +29299,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:569
+#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29637,7 +29315,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:669
+#: frappe/__init__.py:676
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29645,7 +29323,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr ""
-#: frappe/core/doctype/installed_applications/installed_applications.py:82
+#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -29809,11 +29487,11 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:368
+#: frappe/app.py:361
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:838
+#: frappe/desk/query_report.py:831
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29825,11 +29503,11 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:772
+#: frappe/website/doctype/web_form/web_form.py:769
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:286 frappe/utils/response.py:290
+#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
msgstr ""
@@ -29837,7 +29515,7 @@ msgstr ""
msgid "You don't have permission to get a report on: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:175
+#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
msgstr ""
@@ -29890,23 +29568,23 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:339
+#: 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:768
+#: frappe/website/doctype/web_form/web_form.py:765
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:609
+#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:357
+#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
@@ -29922,11 +29600,11 @@ msgstr ""
msgid "You need to be a system user to access this page."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:94
+#: 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:275
+#: frappe/utils/response.py:272
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29934,7 +29612,7 @@ msgstr ""
msgid "You need to be logged in to access this page"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:164
+#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
msgstr ""
@@ -30009,7 +29687,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/desk.js:543
+#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -30092,7 +29770,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:354
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -30323,7 +30001,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:403 frappe/permissions.py:414
+#: frappe/permissions.py:412 frappe/permissions.py:423
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30875,7 +30553,7 @@ msgstr ""
msgid "{0} Calendar"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:564
+#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
msgstr ""
@@ -30923,7 +30601,7 @@ msgstr ""
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1149
+#: frappe/model/base_document.py:1154
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -30933,7 +30611,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:952
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
msgstr ""
@@ -30999,7 +30677,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:149
+#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
msgstr ""
@@ -31012,7 +30690,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:547
+#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -31137,7 +30815,7 @@ msgstr ""
msgid "{0} is an invalid email address in 'Recipients'"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1462
+#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
msgstr ""
@@ -31146,27 +30824,27 @@ msgstr ""
msgid "{0} is currently {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1431
+#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1451
+#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1441
+#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1456
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1446
+#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1481
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
msgstr ""
@@ -31186,7 +30864,7 @@ msgstr ""
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:64
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
msgstr ""
@@ -31215,11 +30893,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:787
+#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31231,27 +30909,27 @@ msgstr ""
msgid "{0} is not a zip file"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1436
+#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1483
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1487
+#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:165
+#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1470
+#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
msgstr ""
@@ -31262,11 +30940,11 @@ msgstr ""
msgid "{0} is required"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1486
+#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1465
+#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
msgstr ""
@@ -31274,12 +30952,12 @@ msgstr ""
msgid "{0} items selected"
msgstr ""
-#: frappe/core/doctype/user/user.py:1378
+#: frappe/core/doctype/user/user.py:1380
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:104
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
msgstr ""
@@ -31295,7 +30973,7 @@ msgstr ""
msgid "{0} m"
msgstr ""
-#: frappe/desk/notifications.py:397
+#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
msgstr ""
@@ -31307,35 +30985,35 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1792
+#: frappe/model/document.py:1791
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1551
+#: frappe/model/document.py:1550
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1553
+#: frappe/model/document.py:1552
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1549
+#: frappe/model/document.py:1548
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1547 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:875
+#: frappe/model/base_document.py:876
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:732
+#: frappe/model/base_document.py:729
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1555
+#: frappe/model/document.py:1554
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31410,7 +31088,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1785
+#: frappe/model/document.py:1784
msgid "{0} row #{1}: "
msgstr ""
@@ -31506,11 +31184,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:665 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:987
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -31526,7 +31204,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:260 frappe/permissions.py:558
+#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
msgstr ""
@@ -31534,7 +31212,7 @@ msgstr ""
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1110
+#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
msgstr ""
@@ -31542,7 +31220,7 @@ msgstr ""
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1115
+#: frappe/model/base_document.py:1120
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
@@ -31643,7 +31321,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1279
+#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
msgstr ""
diff --git a/frappe/locale/de.po b/frappe/locale/de.po
index 936743d64a..b52c8d6edc 100644
--- a/frappe/locale/de.po
+++ b/frappe/locale/de.po
@@ -2,14 +2,14 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-08 09:34+0000\n"
-"PO-Revision-Date: 2025-06-16 15:29\n"
+"POT-Creation-Date: 2025-06-22 09:34+0000\n"
+"PO-Revision-Date: 2025-06-22 16:40\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: German\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.13.1\n"
+"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"
@@ -141,7 +141,7 @@ msgstr "1 Tag"
msgid "1 Google Calendar Event synced."
msgstr "1 Google Kalender-Ereignis synchronisiert"
-#: frappe/public/js/frappe/views/reports/query_report.js:951
+#: frappe/public/js/frappe/views/reports/query_report.js:953
msgid "1 Report"
msgstr "1 Bericht"
@@ -149,7 +149,7 @@ msgstr "1 Bericht"
msgid "1 comment"
msgstr "1 Kommentar"
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:711
msgid "1 day ago"
msgstr "vor 1 Tag"
@@ -158,17 +158,17 @@ msgid "1 hour"
msgstr "1 Stunde"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:709
msgid "1 hour ago"
msgstr "vor einer Stunde"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:707
msgid "1 minute ago"
msgstr "vor einer Minute"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:715
msgid "1 month ago"
msgstr "vor 1 Monat"
@@ -180,37 +180,37 @@ msgstr "1 von 2"
msgid "1 record will be exported"
msgstr "1 Datensatz wird exportiert"
-#: frappe/tests/test_utils.py:705
+#: frappe/tests/test_utils.py:706
msgid "1 second ago"
msgstr "vor 1 Sekunde"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:713
msgid "1 week ago"
msgstr "vor einer Woche"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:717
msgid "1 year ago"
msgstr "vor einem Jahr"
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:710
msgid "2 hours ago"
msgstr "vor 2 Stunden"
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:716
msgid "2 months ago"
msgstr "vor 2 Monaten"
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:714
msgid "2 weeks ago"
msgstr "vor 2 Wochen"
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:718
msgid "2 years ago"
msgstr "vor 2 Jahren"
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:708
msgid "3 minutes ago"
msgstr "vor 3 Minuten"
@@ -226,7 +226,7 @@ msgstr "4 Stunden"
msgid "5 Records"
msgstr "5 Datensätze"
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:712
msgid "5 days ago"
msgstr "vor 5 Tagen"
@@ -246,7 +246,7 @@ msgstr "<"
msgid "<="
msgstr "<="
-#: frappe/public/js/frappe/widgets/widget_dialog.js:588
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
msgid "{0} is not a valid URL"
msgstr "{0} ist keine gültige URL"
@@ -546,16 +546,16 @@ msgid "Email Reply Example
\n\n"
"Templating
\n\n"
"Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
\n"
msgstr "Beispiel für eine E-Mail-Antwort
\n\n"
-"Überfällige Bestellung\n\n"
-"Die Transaktion {{ name }} hat das Fälligkeitsdatum überschritten. Bitte ergreifen Sie die notwendigen Maßnahmen.\n\n"
+"Bestellung überfällig\n\n"
+"Transaktion {{ name }} hat Fälligkeitsdatum überschritten. Bitte ergreifen Sie die erforderlichen Maßnahmen.\n\n"
"Details\n\n"
"- Kunde: {{ customer }}\n"
"- Betrag: {{ grand_total }}\n"
"\n\n"
"So erhalten Sie Feldnamen
\n\n"
-"Die Feldnamen, die Sie in Ihrer E-Mail-Vorlage verwenden können, sind die Felder des Dokuments, aus dem Sie die E-Mail versenden. Sie können die Felder aller Dokumente über Setup > Formularansicht anpassen und den Dokumententyp auswählen (z.B. Verkaufsrechnung)
\n\n"
+"Die Feldnamen, die Sie in Ihrer E-Mail-Vorlage verwenden können, sind die Felder in dem Dokument, aus dem Sie die E-Mail senden. Die Felder aller Dokumente finden Sie unter „Setup“ > „Formular anpassen“ und wählen Sie den Dokumenttyp (z. B. Ausgangsrechnung) aus.
\n\n"
"Vorlagenerstellung
\n\n"
-"Vorlagen werden mit der Jinja-Vorlagensprache erstellt. Wenn Sie mehr über Jinja erfahren möchten, lesen Sie diese Dokumentation.
\n"
+"Vorlagen werden mit der Jinja-Vorlagensprache erstellt. Weitere Informationen zu Jinja finden Sie in dieser Dokumentation.
\n"
#. Content of the 'html_5' (HTML) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
@@ -839,10 +839,7 @@ msgid "API"
msgstr "API"
#. Label of the api_access (Section Break) field in DocType 'User'
-#. Label of the api_access_section (Section Break) field in DocType 'S3 Backup
-#. Settings'
#: frappe/core/doctype/user/user.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "API Access"
msgstr "API-Zugriff"
@@ -954,17 +951,6 @@ msgstr "Noch ungefähr {0} Sekunden"
msgid "Access Control"
msgstr "Zugriffskontrolle"
-#. Label of the access_key_id (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key ID"
-msgstr "Zugriffsschlüssel-ID"
-
-#. Label of the secret_access_key (Password) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key Secret"
-msgstr "Zugriffsschlüssel Geheimnis"
-
#. Name of a DocType
#. Label of a Link in the Users Workspace
#: frappe/core/doctype/access_log/access_log.json
@@ -1015,6 +1001,10 @@ msgstr "Leiter der Buchhaltung"
msgid "Accounts User"
msgstr "Benutzer der Buchhaltung"
+#: 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'
@@ -1045,7 +1035,7 @@ msgstr "Aktion / Route"
msgid "Action Complete"
msgstr "Aktion abgeschlossen"
-#: frappe/model/document.py:1872
+#: frappe/model/document.py:1871
msgid "Action Failed"
msgstr "Aktion fehlgeschlagen"
@@ -1094,10 +1084,10 @@ msgstr "Aktion {0} fehlgeschlagen auf {1} {2}. {3} ansehen."
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:192
-#: frappe/public/js/frappe/views/reports/query_report.js:205
-#: frappe/public/js/frappe/views/reports/query_report.js:215
-#: frappe/public/js/frappe/views/reports/query_report.js:845
+#: frappe/public/js/frappe/views/reports/query_report.js:190
+#: frappe/public/js/frappe/views/reports/query_report.js:203
+#: frappe/public/js/frappe/views/reports/query_report.js:213
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Actions"
msgstr "Aktionen"
@@ -1159,8 +1149,8 @@ msgstr "Aktivitätsprotokoll"
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:267
-#: frappe/public/js/frappe/views/reports/query_report.js:295
+#: frappe/public/js/frappe/views/reports/query_report.js:265
+#: frappe/public/js/frappe/views/reports/query_report.js:293
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Hinzufügen"
@@ -1201,7 +1191,7 @@ msgstr "Rand oben hinzufügen"
msgid "Add Card to Dashboard"
msgstr "Karte zum Dashboard hinzufügen"
-#: frappe/public/js/frappe/views/reports/query_report.js:211
+#: frappe/public/js/frappe/views/reports/query_report.js:209
msgid "Add Chart to Dashboard"
msgstr "Diagramm zum Dashboard hinzufügen"
@@ -1210,10 +1200,10 @@ 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:1769
-#: frappe/public/js/frappe/views/reports/query_report.js:1772
-#: frappe/public/js/frappe/views/reports/report_view.js:349
-#: frappe/public/js/frappe/views/reports/report_view.js:374
+#: frappe/public/js/frappe/views/reports/query_report.js:1771
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/report_view.js:355
+#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
msgstr "Spalte hinzufügen"
@@ -1237,7 +1227,7 @@ msgid "Add Custom Tags"
msgstr "Benutzerdefinierte Schlagworte hinzufügen"
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
-#: frappe/public/js/frappe/widgets/widget_dialog.js:703
+#: frappe/public/js/frappe/widgets/widget_dialog.js:716
msgid "Add Filters"
msgstr "Filter hinzufügen"
@@ -1272,7 +1262,7 @@ msgstr "Teilnehmer hinzufügen"
msgid "Add Query Parameters"
msgstr "Abfrageparameter hinzufügen"
-#: frappe/core/doctype/user/user.py:806
+#: frappe/core/doctype/user/user.py:808
msgid "Add Roles"
msgstr "Rollen hinzufügen"
@@ -1417,7 +1407,7 @@ msgid "Add tab"
msgstr "Tab hinzufügen"
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:253
+#: frappe/public/js/frappe/views/reports/query_report.js:251
msgid "Add to Dashboard"
msgstr "Zum Dashboard hinzufügen"
@@ -1572,11 +1562,11 @@ msgstr "Verwaltung"
msgid "Administrator"
msgstr "Administrator"
-#: frappe/core/doctype/user/user.py:1211
+#: frappe/core/doctype/user/user.py:1213
msgid "Administrator Logged In"
msgstr "Administrator hat sich angemeldet"
-#: frappe/core/doctype/user/user.py:1205
+#: frappe/core/doctype/user/user.py:1207
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "Administrator hat auf {0} über {1} zugegriffen mit IP-Adresse {2}."
@@ -1809,12 +1799,6 @@ msgstr "Stapelberarbeitung zulassen"
msgid "Allow Consecutive Login Attempts "
msgstr "Aufeinanderfolgende Anmeldeversuche zulassen "
-#. Label of the allow_dropbox_access (Button) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Allow Dropbox Access"
-msgstr "Dropbox-Zugriff zulassen"
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
msgid "Allow Google Calendar Access"
msgstr "Google Kalender-Zugriff zulassen"
@@ -1823,10 +1807,6 @@ msgstr "Google Kalender-Zugriff zulassen"
msgid "Allow Google Contacts Access"
msgstr "Zugriff auf Google-Kontakte zulassen"
-#: frappe/integrations/doctype/google_drive/google_drive.py:52
-msgid "Allow Google Drive Access"
-msgstr "Google Drive-Zugang zulassen"
-
#. Label of the allow_guest (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
@@ -2081,7 +2061,7 @@ msgstr "Erlaubte Einbettungsdomänen"
msgid "Allowing DocType, DocType. Be careful!"
msgstr "DocType, DocType zulassen. Achtung!"
-#: frappe/core/doctype/user/user.py:1021
+#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr "Bereits registriert"
@@ -2089,11 +2069,11 @@ msgstr "Bereits registriert"
msgid "Already in the following Users ToDo list:{0}"
msgstr "Bereits in der folgenden Benutzer-ToDo-Liste: {0}"
-#: frappe/public/js/frappe/views/reports/report_view.js:896
+#: frappe/public/js/frappe/views/reports/report_view.js:902
msgid "Also adding the dependent currency field {0}"
msgstr "Außerdem wird das abhängige Währungsfeld {0} hinzugefügt."
-#: frappe/public/js/frappe/views/reports/report_view.js:909
+#: frappe/public/js/frappe/views/reports/report_view.js:915
msgid "Also adding the status dependency field {0}"
msgstr "Hinzufügen des Statusabhängigkeitsfelds {0}"
@@ -2172,7 +2152,7 @@ msgstr "Änderung"
msgid "Amendment Naming Override"
msgstr "Überschreibung der Berichtigungsbenennung"
-#: frappe/model/document.py:550
+#: frappe/model/document.py:549
msgid "Amendment Not Allowed"
msgstr "Berichtigung nicht erlaubt"
@@ -2261,15 +2241,6 @@ msgstr "Abgesehen vom Systemmanager können Rollen mit der Berechtigung „Benut
msgid "App"
msgstr "Anwendung"
-#. Label of the app_access_key (Data) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Access Key"
-msgstr "App Zugriffsschlüssel"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:22
-msgid "App Access Key and/or Secret Key are not present."
-msgstr "App Access Key und/oder Secret Key sind nicht vorhanden."
-
#. Label of the client_id (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client ID"
@@ -2303,16 +2274,11 @@ msgstr "Anwendungslogo"
msgid "App Name"
msgstr "App-Name"
-#. Label of the app_secret_key (Password) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Secret Key"
-msgstr "App geheimer Schlüssel"
-
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr "App nicht gefunden für Modul: {0}"
-#: frappe/__init__.py:1462
+#: frappe/__init__.py:1465
msgid "App {0} is not installed"
msgstr "App {0} ist nicht installiert"
@@ -2462,7 +2428,7 @@ msgstr "Archivierte Spalten"
msgid "Are you sure you want to clear the assignments?"
msgstr "Sind Sie sicher, dass Sie die Zuweisungen löschen möchten?"
-#: frappe/public/js/frappe/form/grid.js:290
+#: frappe/public/js/frappe/form/grid.js:294
msgid "Are you sure you want to delete all rows?"
msgstr "Möchten Sie wirklich alle Zeilen löschen?"
@@ -2490,7 +2456,7 @@ msgstr "Sind Sie sicher, dass Sie die Registerkarte löschen möchten? Alle Absc
msgid "Are you sure you want to discard the changes?"
msgstr "Sind Sie sicher, dass Sie die Änderungen verwerfen möchten?"
-#: frappe/public/js/frappe/views/reports/query_report.js:965
+#: frappe/public/js/frappe/views/reports/query_report.js:967
msgid "Are you sure you want to generate a new report?"
msgstr "Sind Sie sicher, dass Sie einen neuen Bericht erstellen möchten?"
@@ -2616,7 +2582,7 @@ msgstr "Zugewiesen von"
msgid "Assigned By Full Name"
msgstr "Zugewiesen von (vollständiger Name)"
-#: frappe/model/meta.py:60
+#: 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
@@ -2886,13 +2852,11 @@ msgstr "Autor"
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
#. Contacts'
-#. Label of the authorization_code (Data) field in DocType 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
@@ -2930,12 +2894,6 @@ msgstr "Zugriff auf Google Kalender autorisieren"
msgid "Authorize Google Contacts Access"
msgstr "Zugriff auf Google Kontakte autorisieren"
-#. Label of the authorize_google_drive_access (Button) field in DocType 'Google
-#. Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Authorize Google Drive Access"
-msgstr "Zugriff auf Google Drive autorisieren"
-
#. 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"
@@ -3082,11 +3040,11 @@ msgstr "Automatisierte Nachricht"
msgid "Automatic"
msgstr "Automatisch"
-#: frappe/email/doctype/email_account/email_account.py:774
+#: frappe/email/doctype/email_account/email_account.py:772
msgid "Automatic Linking can be activated only for one Email Account."
msgstr "Die automatische Verknüpfung kann nur für ein E-Mail-Konto aktiviert werden."
-#: frappe/email/doctype/email_account/email_account.py:768
+#: frappe/email/doctype/email_account/email_account.py:766
msgid "Automatic Linking can be activated only if Incoming is enabled."
msgstr "Die automatische Verknüpfung kann nur aktiviert werden, wenn Eingehend aktiviert ist."
@@ -3300,66 +3258,14 @@ msgstr "Im Hintergrund drucken (erforderlich für >25 Dokumente)"
msgid "Background Workers"
msgstr "Hintergrundprozesse"
-#: frappe/integrations/doctype/google_drive/google_drive.py:170
-msgid "Backing up Data."
-msgstr "Daten werden gesichert."
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:32
-msgid "Backing up to Google Drive."
-msgstr "Sichern auf Google Drive."
-
-#. Label of a Card Break in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Backup"
-msgstr "Sicherungskopie"
-
-#. Label of the backup_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Details"
-msgstr "Sicherungsdetails"
-
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
msgstr "Backup-Verschlüsselungs-Schlüssel"
-#. Label of the backup_files (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Files"
-msgstr "Sicherungs-Dateien"
-
-#. Label of the backup_folder_id (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder ID"
-msgstr "Sicherungsordner-ID"
-
-#. Label of the backup_folder_name (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder Name"
-msgstr "Name des Sicherungsordners"
-
-#. Label of the backup_frequency (Select) field in DocType 'Dropbox Settings'
-#. Label of the frequency (Select) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Frequency"
-msgstr "Sicherungshäufigkeit"
-
-#. Label of the backup_path (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Path"
-msgstr "Sicherungspfad"
-
#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
msgstr "Der Sicherungsauftrag ist bereits in der Warteschlange. Sie erhalten eine E-Mail mit dem Download-Link"
-#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup public and private files along with the database."
-msgstr "Sichern Sie öffentliche und private Dateien zusammen mit der Datenbank."
-
#. 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'
@@ -3373,7 +3279,7 @@ msgstr "Backups"
msgid "Backups (MB)"
msgstr "Backups (MB)"
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:65
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
msgid "Bad Cron Expression"
msgstr "Ungültiger Cron-Ausdruck"
@@ -3771,15 +3677,6 @@ msgstr "Browser wird nicht unterstützt"
msgid "Brute Force Security"
msgstr "Brute-Force-Sicherheit"
-#. Label of the bucket (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Bucket Name"
-msgstr "Bucket-Name"
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:71
-msgid "Bucket {0} not found."
-msgstr "Bucket {0} nicht gefunden."
-
#. 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"
@@ -3816,7 +3713,7 @@ msgstr "Stapel löschen"
msgid "Bulk Edit"
msgstr "Stapel bearbeiten"
-#: frappe/public/js/frappe/form/grid.js:1184
+#: frappe/public/js/frappe/form/grid.js:1188
msgid "Bulk Edit {0}"
msgstr "Stapel-Bearbeitung {0}"
@@ -3891,12 +3788,6 @@ msgstr "Nach \"Nummernkreis\"-Feld"
msgid "By default the title is used as meta title, adding a value here will override it."
msgstr "Standardmäßig wird der Titel als Metatitel verwendet. Wenn Sie hier einen Wert hinzufügen, wird dieser überschrieben."
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "By default, emails are only sent for failed backups."
-msgstr "E-Mails werden standardmäßig nur für fehlgeschlagene Sicherungen versendet."
-
#. 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
@@ -4207,7 +4098,7 @@ msgstr "Werte können nicht abgerufen werden"
msgid "Cannot Remove"
msgstr "Kann nicht entfernt werden."
-#: frappe/model/base_document.py:1156
+#: frappe/model/base_document.py:1161
msgid "Cannot Update After Submit"
msgstr "Kann nach dem Buchen nicht mehr geändert werden"
@@ -4227,11 +4118,11 @@ msgstr "Stornierung vor Übertragen nicht möglich. Vorgang {0} beachten"
msgid "Cannot cancel {0}."
msgstr "{0} kann nicht storniert werden."
-#: frappe/model/document.py:1012
+#: frappe/model/document.py:1011
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr "Status kann nicht von 0 (Entwurf) zu 2 (Abgebrochen) geändert werden"
-#: frappe/model/document.py:1026
+#: frappe/model/document.py:1025
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "Der Dokumentstatus kann nicht von 1 (Gebucht) auf 0 (Entwurf) geändert werden"
@@ -4314,7 +4205,7 @@ msgstr "Standarddiagramme können nicht bearbeitet werden"
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "Der Standard-Report kann nicht bearbeitet werden. Bitte kopieren und einen neuen Bericht erstellen"
-#: frappe/model/document.py:1032
+#: frappe/model/document.py:1031
msgid "Cannot edit cancelled document"
msgstr "Aufgehobenes Dokument kann nicht bearbeitet werden"
@@ -4347,11 +4238,11 @@ 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:1128
+#: frappe/public/js/frappe/form/grid.js:1132
msgid "Cannot import table with more than 5000 rows."
msgstr "Tabelle mit mehr als 5000 Zeilen kann nicht importiert werden."
-#: frappe/model/document.py:1100
+#: frappe/model/document.py:1099
msgid "Cannot link cancelled document: {0}"
msgstr "Aufgehobenes Dokument kann nicht verknüpft werden: {0}"
@@ -4367,7 +4258,7 @@ msgstr "Die Spalte {0} kann keinem Feld zugeordnet werden"
msgid "Cannot move row"
msgstr "Zeile kann nicht verschoben werden"
-#: frappe/public/js/frappe/views/reports/report_view.js:921
+#: frappe/public/js/frappe/views/reports/report_view.js:927
msgid "Cannot remove ID field"
msgstr "ID-Feld kann nicht entfernt werden"
@@ -4392,11 +4283,11 @@ msgstr "Kann {0} nicht buchen."
msgid "Cannot update {0}"
msgstr "Kann {0} nicht aktualisieren"
-#: frappe/model/db_query.py:1125
+#: frappe/model/db_query.py:1126
msgid "Cannot use sub-query in order by"
msgstr "Kann in \"sortieren nach\" keine Unterabfrage verwenden."
-#: frappe/model/db_query.py:1144
+#: frappe/model/db_query.py:1145
msgid "Cannot use {0} in order/group by"
msgstr "{0} kann für die Sortierung oder Gruppierung verwendet werden"
@@ -4422,7 +4313,7 @@ msgstr "Karte"
msgid "Card Break"
msgstr "Neue Karte"
-#: frappe/public/js/frappe/views/reports/query_report.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:261
msgid "Card Label"
msgstr "Kartenetikett"
@@ -4565,7 +4456,7 @@ msgstr "Diagrammkonfiguration"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:290
+#: frappe/public/js/frappe/views/reports/query_report.js:288
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Diagrammname"
@@ -4585,7 +4476,7 @@ msgstr "Diagrammquelle"
#. 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:499
+#: frappe/public/js/frappe/views/reports/report_view.js:505
msgid "Chart Type"
msgstr "Diagramm Typ"
@@ -4699,7 +4590,7 @@ msgstr "Untertabelle {0} für Feld {1}"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Untergeordnete Tabellen werden in anderen DocTypes als Raster angezeigt"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:638
+#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "Wählen Sie Vorhandene Karte oder erstellen Sie eine neue Karte"
@@ -4792,10 +4683,6 @@ msgstr "Klicken Sie hier"
msgid "Click here to verify"
msgstr "Hier klicken um die Richtigkeit zu bestätigen"
-#: frappe/integrations/doctype/google_drive/google_drive.js:47
-msgid "Click on Authorize Google Drive Access to authorize Google Drive Access."
-msgstr "Klicken Sie auf Google Drive Access autorisieren, um Google Drive Access zu autorisieren."
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "Klicken Sie auf eine Datei, um sie auszuwählen."
@@ -4822,7 +4709,6 @@ msgstr "Klicken Sie auf den folgenden Link, um Ihre Anfrage zu bestätigen"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
-#: frappe/integrations/doctype/google_drive/google_drive.py:53
#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
msgstr "Klicken Sie auf {0}, um das Refresh Token zu generieren."
@@ -4996,7 +4882,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Zuklappen"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Alle zuklappen"
@@ -5051,9 +4937,9 @@ 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:1229
-#: frappe/public/js/frappe/widgets/widget_dialog.js:533
-#: frappe/public/js/frappe/widgets/widget_dialog.js:681
+#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: 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
@@ -5194,7 +5080,7 @@ msgstr "Kommentarlimit pro Stunde"
msgid "Comment publicity can only be updated by the original author or a System Manager."
msgstr "Die Öffentlichkeit von Kommentaren kann nur vom ursprünglichen Autor oder einem Systemmanager geändert werden."
-#: frappe/model/meta.py:59 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/model/meta.js:209
#: frappe/public/js/frappe/model/model.js:135
#: frappe/website/doctype/web_form/templates/web_form.html:122
@@ -5301,7 +5187,7 @@ msgstr "Vollständig"
msgid "Complete By"
msgstr "Fertigstellen bis"
-#: frappe/core/doctype/user/user.py:477
+#: frappe/core/doctype/user/user.py:478
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Anmeldung abschliessen"
@@ -5397,7 +5283,7 @@ msgstr "Bedingungen"
msgid "Configuration"
msgstr "Konfiguration"
-#: frappe/public/js/frappe/views/reports/report_view.js:481
+#: frappe/public/js/frappe/views/reports/report_view.js:487
msgid "Configure Chart"
msgstr "Diagramm konfigurieren"
@@ -5736,7 +5622,7 @@ msgstr "Korrekte Version :"
msgid "Could not connect to outgoing email server"
msgstr "Konnte keine Verbindung zum Postausgangsserver herstellen"
-#: frappe/model/document.py:1096
+#: frappe/model/document.py:1095
msgid "Could not find {0}"
msgstr "{0} konnte nicht gefunden werden"
@@ -5765,7 +5651,7 @@ msgstr "Konnte nicht speichern, überprüfen Sie bitte die eingegebenen Daten"
msgid "Count"
msgstr "Anzahl"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:527
+#: frappe/public/js/frappe/widgets/widget_dialog.js:540
msgid "Count Customizations"
msgstr "Anpassungen zählen"
@@ -5773,10 +5659,14 @@ msgstr "Anpassungen zählen"
#. 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:512
+#: frappe/public/js/frappe/widgets/widget_dialog.js:525
msgid "Count Filter"
msgstr "Filter zählen"
+#: 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"
@@ -5827,7 +5717,7 @@ msgstr "H"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1261
+#: frappe/public/js/frappe/views/reports/query_report.js:1263
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5841,13 +5731,13 @@ msgstr "Erstellen & Fortfahren"
msgid "Create Address"
msgstr "Adresse erstellen"
-#: frappe/public/js/frappe/views/reports/query_report.js:188
-#: frappe/public/js/frappe/views/reports/query_report.js:233
+#: frappe/public/js/frappe/views/reports/query_report.js:186
+#: frappe/public/js/frappe/views/reports/query_report.js:231
msgid "Create Card"
msgstr "Karte erstellen"
-#: frappe/public/js/frappe/views/reports/query_report.js:286
-#: frappe/public/js/frappe/views/reports/query_report.js:1188
+#: frappe/public/js/frappe/views/reports/query_report.js:284
+#: frappe/public/js/frappe/views/reports/query_report.js:1190
msgid "Create Chart"
msgstr "Diagramm erstellen"
@@ -5958,7 +5848,7 @@ msgstr "Erstellt"
msgid "Created At"
msgstr "Erstellt am"
-#: frappe/model/meta.py:56
+#: 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
@@ -5970,14 +5860,14 @@ msgid "Created Custom Field {0} in {1}"
msgstr "benutzerdefiniertes Feld {0} in {1} erstellt"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241
-#: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:51
+#: 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 "Erstellt am"
-#: frappe/public/js/frappe/desk.js:515
+#: frappe/public/js/frappe/desk.js:523
#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
msgstr "Erstellen von {0}"
@@ -6000,7 +5890,7 @@ msgstr "Cron"
msgid "Cron Format"
msgstr "Cron Format"
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:59
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
msgstr "Das Cron-Format ist für Auftragstypen mit Cron-Häufigkeit erforderlich."
@@ -6397,11 +6287,6 @@ msgstr "ENTWURF"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -6410,9 +6295,6 @@ msgstr "ENTWURF"
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:398
#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
@@ -6966,7 +6848,7 @@ msgstr "Verzögert"
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/toolbar.js:461
-#: frappe/public/js/frappe/views/reports/report_view.js:1734
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
@@ -7009,7 +6891,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Registerkarte löschen"
-#: frappe/public/js/frappe/views/reports/query_report.js:932
+#: frappe/public/js/frappe/views/reports/query_report.js:934
msgid "Delete and Generate New"
msgstr "Löschen und neu generieren"
@@ -7018,7 +6900,7 @@ msgctxt "Button text"
msgid "Delete column"
msgstr "Spalte löschen"
-#: frappe/public/js/frappe/form/footer/form_timeline.js:738
+#: frappe/public/js/frappe/form/footer/form_timeline.js:741
msgid "Delete comment?"
msgstr "Kommentar löschen?"
@@ -7104,7 +6986,7 @@ msgstr "Löscht {0}"
msgid "Deleting {0} records..."
msgstr "Lösche {0} Einträge..."
-#: frappe/public/js/frappe/model/model.js:741
+#: frappe/public/js/frappe/model/model.js:692
msgid "Deleting {0}..."
msgstr "Lösche {0}..."
@@ -7150,7 +7032,7 @@ msgstr "Abteilung"
#. 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:310
+#: frappe/public/js/frappe/widgets/widget_dialog.js:323
#: frappe/www/attribution.html:29
msgid "Dependencies"
msgstr "Abhängigkeiten"
@@ -7264,6 +7146,7 @@ msgstr "Schreibtisch-Design"
#: 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
@@ -7561,14 +7444,10 @@ msgstr "Keinen neuen Benutzer erstellen"
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:1189
+#: frappe/public/js/frappe/form/grid.js:1193
msgid "Do not edit headers which are preset in the template"
msgstr "Bearbeiten Sie keine Header, die in der Vorlage voreingestellt sind"
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:69
-msgid "Do not have permission to access bucket {0}."
-msgstr "Sie sind nicht berechtigt, auf Bucket {0} zuzugreifen."
-
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr "Wollen Sie trotzdem fortfahren?"
@@ -7703,7 +7582,7 @@ msgstr "DocType-Status"
#. 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:466
+#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
msgstr "DocType-Ansicht"
@@ -7763,7 +7642,7 @@ msgstr "DocTypes können nicht geändert werden, bitte verwenden Sie stattdessen
#. 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:669
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
msgid "Doctype"
msgstr "DocType"
@@ -7881,7 +7760,7 @@ msgstr "Bedingung für die Benennungsregel für Dokumente"
msgid "Document Naming Settings"
msgstr "Dokumentenbenennungseinstellungen"
-#: frappe/model/document.py:477
+#: frappe/model/document.py:476
msgid "Document Queued"
msgstr "anstehendes Dokument"
@@ -7934,7 +7813,7 @@ msgstr "Dokumentenfreigabebericht"
msgid "Document States"
msgstr "Dokumentenstatus"
-#: frappe/model/meta.py:52 frappe/public/js/frappe/model/meta.js:202
+#: 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 "Dokumentenstatus"
@@ -8005,11 +7884,11 @@ msgstr "Dokumententyp"
msgid "Document Type and Function are required to create a number card"
msgstr "Dokumententyp und Funktion werden benötigt, um eine Nummernkarte zu erstellen"
-#: frappe/permissions.py:148
+#: frappe/permissions.py:149
msgid "Document Type is not importable"
msgstr "Der Dokumenttyp kann nicht importiert werden"
-#: frappe/permissions.py:144
+#: frappe/permissions.py:145
msgid "Document Type is not submittable"
msgstr "Der Dokumenttyp kann nicht übermittelt werden"
@@ -8038,7 +7917,7 @@ msgid "Document Types and Permissions"
msgstr "Dokumenttypen und Berechtigungen"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1943
+#: frappe/model/document.py:1942
msgid "Document Unlocked"
msgstr "Dokument entsperrt"
@@ -8229,7 +8108,7 @@ msgstr "Download-Link"
msgid "Download PDF"
msgstr "PDF Herunterladen"
-#: frappe/public/js/frappe/views/reports/query_report.js:835
+#: frappe/public/js/frappe/views/reports/query_report.js:830
msgid "Download Report"
msgstr "Bericht herunterladen"
@@ -8240,7 +8119,7 @@ msgstr "Vorlage herunterladen"
#: 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:57
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
msgid "Download Your Data"
msgstr "Laden Sie Ihre Daten herunter"
@@ -8296,29 +8175,6 @@ msgstr "Ziehen, um Zustand hinzuzufügen"
msgid "Drop files here"
msgstr "Dateien hier ablegen"
-#. Label of the dropbox_access_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Access Token"
-msgstr "Dropbox-Zugriffs-Token"
-
-#. Label of the dropbox_refresh_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Refresh Token"
-msgstr "Dropbox Refresh Token"
-
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Dropbox Settings"
-msgstr "Dropbox-Einstellungen"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:347
-msgid "Dropbox Setup"
-msgstr "Dropbox-Setup"
-
#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
@@ -8348,7 +8204,7 @@ msgstr "Duplizierter Eintrag"
msgid "Duplicate Filter Name"
msgstr "Doppelter Filtername"
-#: frappe/model/base_document.py:666 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Doppelter Name"
@@ -8447,13 +8303,13 @@ msgstr "ESC"
#: 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:668
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:669
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:883
-#: frappe/public/js/frappe/views/reports/query_report.js:1722
+#: frappe/public/js/frappe/views/reports/query_report.js:878
+#: frappe/public/js/frappe/views/reports/query_report.js:1724
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8616,7 +8472,7 @@ msgstr "Antwort bearbeiten"
msgid "Edit your workflow visually using the Workflow Builder."
msgstr "Bearbeiten Sie Ihren Workflow visuell mit Hilfe des Workflow-Builders."
-#: frappe/public/js/frappe/views/reports/report_view.js:672
+#: frappe/public/js/frappe/views/reports/report_view.js:678
#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
msgstr "Bearbeiten {0}"
@@ -8717,7 +8573,7 @@ msgstr "E-Mail-Konto deaktiviert."
msgid "Email Account Name"
msgstr "E-Mail-Konten-Name"
-#: frappe/core/doctype/user/user.py:736
+#: frappe/core/doctype/user/user.py:738
msgid "Email Account added multiple times"
msgstr "E-Mail-Konto wurde mehrmals hinzugefügt"
@@ -8725,7 +8581,7 @@ msgstr "E-Mail-Konto wurde mehrmals hinzugefügt"
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
msgstr "E-Mail-Konto nicht eingerichtet. Bitte erstellen Sie ein neues E-Mail-Konto unter Einstellungen > E-Mail-Konto"
-#: frappe/email/doctype/email_account/email_account.py:578
+#: frappe/email/doctype/email_account/email_account.py:576
msgid "Email Account {0} Disabled"
msgstr "E-Mail-Konto {0} Deaktiviert"
@@ -8951,7 +8807,7 @@ msgstr "E-Mails"
msgid "Emails Pulled"
msgstr "E-Mails abgerufen"
-#: frappe/email/doctype/email_account/email_account.py:936
+#: frappe/email/doctype/email_account/email_account.py:934
msgid "Emails are already being pulled from this account."
msgstr "Es werden bereits E-Mails von diesem Konto abgerufen."
@@ -8974,11 +8830,9 @@ msgstr "Leere Spalte"
#. 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 Drive'
#. 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_drive/google_drive.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
msgstr "Aktivieren"
@@ -8998,11 +8852,6 @@ msgstr "Aktivieren Sie "Automatische Wiederholung zulassen" für den D
msgid "Enable Auto Reply"
msgstr "Automatische Antwort aktivieren"
-#. Label of the enabled (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Enable Automatic Backup"
-msgstr "Automatische Sicherung aktivieren"
-
#. Label of the enable_automatic_linking (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -9162,7 +9011,6 @@ msgstr "In-App-Website-Tracking aktivieren"
#. 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 'Dropbox Settings'
#. 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'
@@ -9173,7 +9021,6 @@ msgstr "In-App-Website-Tracking aktivieren"
#: 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/dropbox_settings/dropbox_settings.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/public/js/frappe/model/indicator.js:106
@@ -9186,7 +9033,7 @@ msgstr "Aktiviert"
msgid "Enabled Scheduler"
msgstr "Scheduler aktiviert"
-#: frappe/email/doctype/email_account/email_account.py:1012
+#: frappe/email/doctype/email_account/email_account.py:1010
msgid "Enabled email inbox for user {0}"
msgstr "Aktivierter E-Mail-Posteingang für Benutzer {0}"
@@ -9267,11 +9114,6 @@ msgstr "Das Enddatum darf nicht vor dem Startdatum liegen!"
msgid "Ended At"
msgstr "Endete am"
-#. Label of the endpoint_url (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Endpoint URL"
-msgstr "Endpunkt-URL"
-
#. Label of the sb_endpoints_section (Section Break) field in DocType
#. 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -9450,7 +9292,7 @@ msgstr "Fehler in der Benachrichtigung"
msgid "Error in print format on line {0}: {1}"
msgstr "Fehler im Druckformat in Zeile {0}: {1}"
-#: frappe/email/doctype/email_account/email_account.py:672
+#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "Fehler beim Verbinden mit dem E-Mail-Konto {0}"
@@ -9458,15 +9300,15 @@ msgstr "Fehler beim Verbinden mit dem E-Mail-Konto {0}"
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:806
+#: frappe/model/base_document.py:803
msgid "Error: Data missing in table {0}"
msgstr "Fehler: Daten fehlen in Tabelle {0}"
-#: frappe/model/base_document.py:816
+#: frappe/model/base_document.py:813
msgid "Error: Value missing for {0}: {1}"
msgstr "Fehler: Wert fehlt für {0}: {1}"
-#: frappe/model/base_document.py:810
+#: frappe/model/base_document.py:807
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "Fehler: {0} Zeile {1}: Wert fehlt für: {2}"
@@ -9615,7 +9457,7 @@ msgstr "Code wird ausgeführt"
msgid "Executing..."
msgstr "Wird ausgeführt..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2069
+#: frappe/public/js/frappe/views/reports/query_report.js:2071
msgid "Execution Time: {0} sec"
msgstr "Ausführungszeit: {0} Sek"
@@ -9641,7 +9483,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Erweitern"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Alle ausklappen"
@@ -9698,8 +9540,8 @@ 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:1757
-#: frappe/public/js/frappe/views/reports/report_view.js:1621
+#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Exportieren"
@@ -9750,11 +9592,11 @@ msgstr "Exportbericht: {0}"
msgid "Export Type"
msgstr "Exporttyp"
-#: frappe/public/js/frappe/views/reports/report_view.js:1632
+#: frappe/public/js/frappe/views/reports/report_view.js:1638
msgid "Export all matching rows?"
msgstr "Alle übereinstimmenden Zeilen exportieren?"
-#: frappe/public/js/frappe/views/reports/report_view.js:1642
+#: frappe/public/js/frappe/views/reports/report_view.js:1648
msgid "Export all {0} rows?"
msgstr "Alle {0} Zeilen exportieren?"
@@ -10062,8 +9904,8 @@ msgstr "Abrufen von Standarddokumenten der globalen Suche."
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:237
-#: frappe/public/js/frappe/views/reports/query_report.js:1816
+#: frappe/public/js/frappe/views/reports/query_report.js:235
+#: frappe/public/js/frappe/views/reports/query_report.js:1818
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10138,7 +9980,7 @@ msgstr "Feldtyp kann nicht für {0} geändert werden"
msgid "Field {0} does not exist on {1}"
msgstr "Das Feld {0} existiert nicht auf {1}"
-#: frappe/desk/form/meta.py:208
+#: frappe/desk/form/meta.py:184
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr "Das Feld {0} bezieht sich auf einen nicht existierenden Doctype {1}."
@@ -10241,7 +10083,7 @@ msgstr "Felder Multicheck"
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"
-#: frappe/model/db_query.py:144
+#: frappe/model/db_query.py:146
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"
@@ -10290,13 +10132,6 @@ msgstr "Datei \"{0}\" wurde wegen ungültigem Dateityp übersprungen"
msgid "File '{0}' not found"
msgstr "Datei '{0}' nicht gefunden"
-#. Label of the file_backup (Check) field in DocType 'Dropbox Settings'
-#. Label of the file_backup (Check) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "File Backup"
-msgstr "Dateisicherung"
-
#. Label of the private_file_section (Section Break) field in DocType 'Access
#. Log'
#: frappe/core/doctype/access_log/access_log.json
@@ -10497,7 +10332,7 @@ msgstr "Filter sind über filters zugänglich.
Ausgabe als
msgid "Filters {0}"
msgstr "Filter {0}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1421
+#: frappe/public/js/frappe/views/reports/report_view.js:1427
msgid "Filters:"
msgstr "Filter:"
@@ -10644,7 +10479,7 @@ msgstr "Die folgenden Berichtsfilter haben fehlende Werte:"
msgid "Following document {0}"
msgstr "Folge Dokument {0}"
-#: frappe/website/doctype/web_form/web_form.py:111
+#: frappe/website/doctype/web_form/web_form.py:108
msgid "Following fields are missing:"
msgstr "Die folgenden Felder fehlen:"
@@ -10652,7 +10487,7 @@ msgstr "Die folgenden Felder fehlen:"
msgid "Following fields have invalid values:"
msgstr "Folgende Felder haben ungültige Werte:"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:345
+#: frappe/public/js/frappe/widgets/widget_dialog.js:358
msgid "Following fields have missing values"
msgstr "Den folgende Feldern fehlen Werte"
@@ -10795,7 +10630,7 @@ msgstr "Für Dokument"
msgid "For Document Type"
msgstr "Für Dokumenttyp"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:553
+#: frappe/public/js/frappe/widgets/widget_dialog.js:566
msgid "For Example: {} Open"
msgstr "Zum Beispiel: {} Öffnen"
@@ -10825,7 +10660,7 @@ msgstr "Für Benutzer"
msgid "For Value"
msgstr "Für Wert"
-#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/query_report.js:2068
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Verwenden Sie zum Vergleich> 5, <10 oder = 324. Verwenden Sie für Bereiche 5:10 (für Werte zwischen 5 und 10)."
@@ -10978,7 +10813,7 @@ msgstr "Formular URL-verschlüsselt"
#. 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:552
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
msgid "Format"
msgstr "Formatierung"
@@ -11010,7 +10845,7 @@ msgstr "Teileinheiten"
#. 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:149
+#: frappe/www/login.py:153
msgid "Frappe"
msgstr "Frappé"
@@ -11027,7 +10862,7 @@ msgstr "Frappe Hell"
msgid "Frappe Mail"
msgstr "Frappe Mail"
-#: frappe/email/doctype/email_account/email_account.py:549
+#: frappe/email/doctype/email_account/email_account.py:547
msgid "Frappe Mail OAuth Error"
msgstr "Frappe Mail OAuth-Fehler"
@@ -11055,13 +10890,11 @@ msgstr "Frei"
#. 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'
-#. Label of the frequency (Select) field in DocType 'Google Drive'
#: 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/integrations/doctype/google_drive/google_drive.json
#: frappe/public/js/frappe/utils/common.js:395
msgid "Frequency"
msgstr "Häufigkeit"
@@ -11107,7 +10940,7 @@ msgstr "Von-Datum"
msgid "From Date Field"
msgstr "Von-Datum-Feld"
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
+#: frappe/public/js/frappe/views/reports/query_report.js:1779
msgid "From Document Type"
msgstr "Vom Dokumenttyp"
@@ -11158,16 +10991,16 @@ msgstr "Volle Breite"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:247
-#: frappe/public/js/frappe/widgets/widget_dialog.js:686
+#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Funktion"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:693
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
msgstr "Funktion basiert auf"
-#: frappe/__init__.py:670
+#: frappe/__init__.py:677
msgid "Function {0} is not whitelisted."
msgstr "Funktion {0} ist nicht freigegeben."
@@ -11232,7 +11065,7 @@ msgstr "Allgemein"
msgid "Generate Keys"
msgstr "Schlüssel generieren"
-#: frappe/public/js/frappe/views/reports/query_report.js:877
+#: frappe/public/js/frappe/views/reports/query_report.js:872
msgid "Generate New Report"
msgstr "Neuen Bericht erstellen"
@@ -11520,32 +11353,12 @@ msgstr "Google-Kontakte - Kontakt in Google-Kontakten {0} konnte nicht aktualisi
msgid "Google Contacts Id"
msgstr "Google-Kontakt-ID"
-#. Name of a DocType
-#. Label of the google_drive_section (Section Break) field in DocType 'Google
-#. Drive'
#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/google_drive/google_drive.json
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr "Google Drive"
-#: frappe/integrations/doctype/google_drive/google_drive.py:117
-msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}"
-msgstr "Google Drive - Ordner in Google Drive konnte nicht erstellt werden - Fehlercode {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:132
-msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}"
-msgstr "Google Drive - Ordner in Google Drive nicht gefunden - Fehlercode {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:193
-msgid "Google Drive - Could not locate - {0}"
-msgstr "Google Drive - Konnte nicht finden - {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:204
-msgid "Google Drive Backup Successful."
-msgstr "Google Drive Backup erfolgreich."
-
#. Label of the section_break_7 (Section Break) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -11875,6 +11688,10 @@ msgstr "Kopf-/Fußzeilen-Skripte können verwendet werden, um dynamische Verhalt
msgid "Headers"
msgstr "Headers"
+#: 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'
@@ -12198,17 +12015,17 @@ msgstr "Startseite"
msgid "Home Settings"
msgstr "Starteinstellungen"
-#: frappe/core/doctype/file/test_file.py:330
-#: frappe/core/doctype/file/test_file.py:332
-#: frappe/core/doctype/file/test_file.py:396
+#: 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 "Startseite/Test-Ordner 1"
-#: frappe/core/doctype/file/test_file.py:385
+#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
msgstr "Startseite/Test-Ordner 1/Test-Ordner 3"
-#: frappe/core/doctype/file/test_file.py:341
+#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
msgstr "Startseite/Test-Ordner 2"
@@ -12253,7 +12070,7 @@ msgstr "Vermutlich haben Sie noch keinen Zugang zu einem Arbeitsbereich, aber Si
#: frappe/core/doctype/data_import/importer.py:1177
#: frappe/core/doctype/data_import/importer.py:1242
#: frappe/core/doctype/data_import/importer.py:1245
-#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:50
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
#: frappe/public/js/frappe/list/list_settings.js:337
@@ -12265,7 +12082,7 @@ msgid "ID"
msgstr "ID"
#: frappe/desk/reportview.py:491
-#: frappe/public/js/frappe/views/reports/report_view.js:978
+#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
msgstr "ID"
@@ -12449,12 +12266,6 @@ msgstr "Falls aktiviert, werden Benutzer, die sich von einer eingeschränkten IP
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
msgstr "Falls aktiviert, werden die Benutzer bei jeder Anmeldung benachrichtigt. Falls nicht aktiviert, werden die Benutzer nur einmal benachrichtigt."
-#. Description of the 'Backup Path' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "If it's empty, it will backup to the root of the bucket."
-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"
@@ -12585,16 +12396,12 @@ msgstr "Anhänge mit einer Größe über diesem Wert ignorieren"
msgid "Ignored Apps"
msgstr "Ignorierte Apps"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:348
-msgid "Illegal Access Token. Please try again"
-msgstr "Illegal Access-Token. Bitte versuche es erneut"
-
#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
msgstr "Illegaler Dokumentstatus für {0}"
-#: frappe/model/db_query.py:451 frappe/model/db_query.py:454
-#: frappe/model/db_query.py:1128
+#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
+#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
msgstr "Ungültige SQL-Abfrage"
@@ -12943,11 +12750,11 @@ msgstr "Thema aus Apps einschließen"
msgid "Include Web View Link in Email"
msgstr "Dokument Web View Link per E-Mail senden"
-#: frappe/public/js/frappe/views/reports/query_report.js:1592
+#: frappe/public/js/frappe/views/reports/query_report.js:1594
msgid "Include filters"
msgstr "Filter einbeziehen"
-#: frappe/public/js/frappe/views/reports/query_report.js:1584
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Include indentation"
msgstr "Einrückung einschließen"
@@ -13014,11 +12821,11 @@ msgstr "Falscher Benutzer oder Passwort"
msgid "Incorrect Verification code"
msgstr "Falscher Bestätigungscode"
-#: frappe/model/document.py:1542
+#: frappe/model/document.py:1541
msgid "Incorrect value in row {0}:"
msgstr "Falscher Wert in Zeile {0}:"
-#: frappe/model/document.py:1544
+#: frappe/model/document.py:1543
msgid "Incorrect value:"
msgstr "Falscher Wert:"
@@ -13027,10 +12834,10 @@ msgstr "Falscher Wert:"
#. 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:53
+#: 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:999
+#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
msgstr "Pos"
@@ -13105,7 +12912,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:1822
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
msgid "Insert After"
msgstr "Einfügen nach"
@@ -13121,7 +12928,7 @@ msgstr "Dahinter einfügen Feld '{0}' in benutzerdefinierten Feld erwäh
msgid "Insert Below"
msgstr "Darunter einfügen"
-#: frappe/public/js/frappe/views/reports/report_view.js:384
+#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
msgstr "Spalte vor {0} einfügen"
@@ -13170,11 +12977,11 @@ msgstr "Anweisungen"
msgid "Instructions Emailed"
msgstr "Anweisungen per E-Mail gesendet"
-#: frappe/permissions.py:818
+#: frappe/permissions.py:827
msgid "Insufficient Permission Level for {0}"
msgstr "Unzureichende Berechtigungsstufe für {0}"
-#: frappe/database/query.py:376
+#: frappe/database/query.py:383
msgid "Insufficient Permission for {0}"
msgstr "Unzureichende Berechtigung für {0}"
@@ -13292,7 +13099,7 @@ msgstr "Ungültig"
#: frappe/public/js/form_builder/utils.js:221
#: frappe/public/js/frappe/form/grid_row.js:833
#: frappe/public/js/frappe/form/layout.js:811
-#: frappe/public/js/frappe/views/reports/report_view.js:710
+#: frappe/public/js/frappe/views/reports/report_view.js:716
msgid "Invalid \"depends_on\" expression"
msgstr "Ungültiger \"depends_on\" Ausdruck"
@@ -13332,7 +13139,7 @@ msgstr "Ungültiges Datum"
msgid "Invalid DocType"
msgstr "Ungültiger DocType"
-#: frappe/database/query.py:102
+#: frappe/database/query.py:103
msgid "Invalid DocType: {0}"
msgstr "Ungültiger DocType: {0}"
@@ -13377,6 +13184,7 @@ msgid "Invalid Naming Series: {}"
msgstr "Ungültiger Nummernkreis: {}"
#: frappe/core/doctype/rq_job/rq_job.py:113
+#: frappe/core/doctype/rq_job/rq_job.py:122
msgid "Invalid Operation"
msgstr "Ungültige Operation"
@@ -13401,7 +13209,7 @@ msgstr "Ungültige Überschreibung"
msgid "Invalid Parameters."
msgstr "Ungültige Parameter."
-#: frappe/core/doctype/user/user.py:1226 frappe/www/update-password.html:123
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
#: frappe/www/update-password.html:247
msgid "Invalid Password"
@@ -13430,7 +13238,7 @@ msgstr "Ungültiger Übergang"
#: frappe/core/doctype/file/file.py:220
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
-#: frappe/public/js/frappe/widgets/widget_dialog.js:589
+#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
msgstr "Ungültige URL"
@@ -13451,11 +13259,11 @@ msgstr "Ungültiges Webhook Geheimnis"
msgid "Invalid aggregate function"
msgstr "Ungültige Aggregatfunktion"
-#: frappe/public/js/frappe/views/reports/report_view.js:393
+#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "Ungültige Spalte"
-#: frappe/model/document.py:1015 frappe/model/document.py:1029
+#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "Ungültiger Status"
@@ -13479,7 +13287,7 @@ msgstr "Ungültige Feldname '{0}' in auton"
msgid "Invalid file path: {0}"
msgstr "Ungültiger Dateipfad: {0}"
-#: frappe/database/query.py:182
+#: frappe/database/query.py:189
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "Ungültiger Filter: {0}"
@@ -13505,7 +13313,7 @@ msgstr "Ungültiger oder beschädigter Inhalt für den Import"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Ungültige Weiterleitungs-Regex in Zeile #{}: {}"
-#: frappe/app.py:324
+#: frappe/app.py:317
msgid "Invalid request arguments"
msgstr "Ungültige Anfrageargumente"
@@ -13689,7 +13497,7 @@ msgstr "Ist Veröffentlicht Feld muss eine gültige Feldname sein"
#. 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:328
+#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
msgstr "Ist Abfragebericht"
@@ -13904,6 +13712,10 @@ msgstr "Jobstatus"
msgid "Job Stopped Successfully"
msgstr "Job erfolgreich beendet"
+#: 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 "Job läuft nicht."
@@ -13935,7 +13747,7 @@ msgstr "Kanban"
#. 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:498
+#: frappe/public/js/frappe/widgets/widget_dialog.js:511
msgid "Kanban Board"
msgstr "Kanban-Tafel"
@@ -14207,10 +14019,10 @@ msgstr "LDAP-Einstellungen falsch. Validierungsantwort: {0}"
#: 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:300
-#: frappe/public/js/frappe/widgets/widget_dialog.js:453
-#: frappe/public/js/frappe/widgets/widget_dialog.js:630
-#: frappe/public/js/frappe/widgets/widget_dialog.js:663
+#: 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
@@ -14295,11 +14107,6 @@ msgstr "Letzte 90 Tage"
msgid "Last Active"
msgstr "Zuletzt aktiv"
-#. Label of the last_backup_on (Datetime) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Last Backup On"
-msgstr "Letzte Sicherung am"
-
#. 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"
@@ -14384,12 +14191,12 @@ msgstr "Zuletzt synchronisiert am"
msgid "Last Synced On"
msgstr "Zuletzt synchronisiert am"
-#: frappe/model/meta.py:55 frappe/public/js/frappe/model/meta.js:205
+#: 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 "Zuletzt aktualisiert von"
-#: frappe/model/meta.py:54 frappe/public/js/frappe/model/meta.js:204
+#: 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 "Zuletzt aktualisiert am"
@@ -14433,7 +14240,7 @@ msgid "Leave blank to repeat always"
msgstr "Freilassen, um immer zu wiederholen"
#: frappe/core/doctype/communication/mixins.py:207
-#: frappe/email/doctype/email_account/email_account.py:722
+#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
msgstr "Benachrichtigungen abbestellen"
@@ -14652,7 +14459,7 @@ msgstr "„Gefällt mir“ für {0}: {1}"
msgid "Liked"
msgstr "Geliked"
-#: frappe/model/meta.py:58 frappe/public/js/frappe/model/meta.js:208
+#: 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 "Geliked durch"
@@ -14667,11 +14474,6 @@ msgstr "Likes"
msgid "Limit"
msgstr "Limit"
-#. Label of the limit_no_of_backups (Check) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Limit Number of DB Backups"
-msgstr "Anzahl der DB-Sicherungen begrenzen"
-
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14786,11 +14588,11 @@ msgstr "Bezeichnung des Dokuments"
#: 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:414
+#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
msgstr "Link zu"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:350
+#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
msgstr "„Link zu“ in Zeile"
@@ -14803,7 +14605,7 @@ msgstr "„Link zu“ in Zeile"
msgid "Link Type"
msgstr "Linktyp"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:346
+#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
msgstr "„Linktyp“ in Zeile"
@@ -14955,7 +14757,7 @@ msgstr "Mehr laden"
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1085
+#: frappe/public/js/frappe/views/reports/query_report.js:1087
msgid "Loading"
msgstr "Laden"
@@ -15086,7 +14888,7 @@ msgstr "Anmeldemethoden"
msgid "Login Page"
msgstr "Anmeldeseite"
-#: frappe/www/login.py:152
+#: frappe/www/login.py:156
msgid "Login To {0}"
msgstr "Anmelden bei {0}"
@@ -15353,7 +15155,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:473
+#: frappe/website/doctype/web_form/web_form.py:470
msgid "Mandatory Information missing:"
msgstr "Pflichtangaben fehlen:"
@@ -15628,7 +15430,7 @@ msgid "Menu"
msgstr "Menü"
#: frappe/public/js/frappe/form/toolbar.js:242
-#: frappe/public/js/frappe/model/model.js:754
+#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "Mit Existierenden zusammenführen"
@@ -15807,7 +15609,7 @@ msgstr "Metatitel für SEO"
msgid "Method"
msgstr "Methode"
-#: frappe/__init__.py:672
+#: frappe/__init__.py:679
msgid "Method Not Allowed"
msgstr "Methode nicht erlaubt"
@@ -15884,7 +15686,7 @@ msgstr "Falsch konfiguriert"
msgid "Miss"
msgstr "Frau"
-#: frappe/desk/form/meta.py:218
+#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
msgstr "Fehlender DocType"
@@ -15909,7 +15711,7 @@ msgid "Missing Value"
msgstr "Fehlender Wert"
#: frappe/public/js/frappe/ui/field_group.js:124
-#: frappe/public/js/frappe/widgets/widget_dialog.js:361
+#: 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"
@@ -16092,8 +15894,6 @@ msgstr "Monat"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -16101,7 +15901,6 @@ msgstr "Monat"
#: 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/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:400
#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
@@ -16273,7 +16072,7 @@ msgid "Mx"
msgstr "Divers"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:462
+#: frappe/website/doctype/web_form/web_form.py:459
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16441,7 +16240,7 @@ msgstr "Navigationseinstellungen"
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "Sie benötigen die Rolle des Workspace Managers, um den privaten Arbeitsbereich anderer Benutzer zu bearbeiten"
-#: frappe/model/document.py:793
+#: frappe/model/document.py:792
msgid "Negative Value"
msgstr "Negativer Wert"
@@ -16546,7 +16345,7 @@ msgstr "Neue Nachricht von der Webseite Kontaktseite"
#. 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:762
+#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "Neuer Name"
@@ -16580,7 +16379,7 @@ msgstr "Name des neuen Druckformats"
msgid "New Quick List"
msgstr "Neue Schnellliste"
-#: frappe/public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
msgstr "Neuer Berichtsname"
@@ -16636,26 +16435,26 @@ msgstr "Neuer Wert muss gesetzt werden"
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
#: frappe/public/js/frappe/form/toolbar.js:558
-#: frappe/public/js/frappe/model/model.js:661
+#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:379
+#: frappe/website/doctype/web_form/web_form.py:376
msgid "New {0}"
msgstr "Neu {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:394
+#: frappe/public/js/frappe/views/reports/query_report.js:392
msgid "New {0} Created"
msgstr "Neu {0} erstellt"
-#: frappe/public/js/frappe/views/reports/query_report.js:386
+#: frappe/public/js/frappe/views/reports/query_report.js:384
msgid "New {0} {1} added to Dashboard {2}"
msgstr "Neues {0} {1} zum Dashboard hinzugefügt {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:391
+#: frappe/public/js/frappe/views/reports/query_report.js:389
msgid "New {0} {1} created"
msgstr "Neue {0} {1} erstellt"
@@ -16667,7 +16466,7 @@ msgstr "Neu {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "Neue {} Versionen für die folgenden Apps sind verfügbar"
-#: frappe/core/doctype/user/user.py:802
+#: frappe/core/doctype/user/user.py:804
msgid "Newly created user {0} has no roles enabled."
msgstr "Der neu erstellte Benutzer {0} hat keine aktivierten Rollen."
@@ -16829,7 +16628,7 @@ msgstr "Weiter bei Klick"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Nein"
@@ -16970,7 +16769,7 @@ msgstr "Keine Ergebnisse"
msgid "No Results found"
msgstr "Keine Ergebnisse gefunden"
-#: frappe/core/doctype/user/user.py:803
+#: frappe/core/doctype/user/user.py:805
msgid "No Roles Specified"
msgstr "Keine Rollen festgelegt"
@@ -17121,7 +16920,7 @@ msgstr "Keine der Zeilen (Max 500)"
msgid "No of Sent SMS"
msgstr "Anzahl der gesendeten SMS"
-#: frappe/__init__.py:827 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Keine Berechtigung für {0}"
@@ -17130,7 +16929,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "Keine Berechtigung um '{0}' {1}"
-#: frappe/model/db_query.py:949
+#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
msgstr "Keine Berechtigung zum Lesen {0}"
@@ -17214,12 +17013,6 @@ msgstr "Nicht negativ"
msgid "Non-Conforming"
msgstr "Nicht konform"
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "None"
-msgstr "Keine"
-
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr "Kein: Ende des Workflows"
@@ -17234,7 +17027,7 @@ msgstr "Normalisierte Kopien"
msgid "Normalized Query"
msgstr "Normalisierte Abfrage"
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "Nicht Erlaubt"
@@ -17255,7 +17048,7 @@ msgstr "Nicht Nachkommen von"
msgid "Not Equals"
msgstr "Ungleich"
-#: frappe/app.py:374 frappe/www/404.html:3
+#: frappe/app.py:367 frappe/www/404.html:3
msgid "Not Found"
msgstr "Nicht gefunden"
@@ -17281,9 +17074,9 @@ msgstr "Nicht mit jedem Datensatz verknüpft"
msgid "Not Nullable"
msgstr "Nicht nullbar"
-#: frappe/__init__.py:754 frappe/app.py:367 frappe/desk/calendar.py:26
+#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:711
+#: frappe/website/doctype/web_form/web_form.py:708
#: 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
@@ -17304,7 +17097,7 @@ msgstr "Nicht veröffentlicht"
#: frappe/public/js/frappe/form/toolbar.js:813
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
-#: frappe/public/js/frappe/views/reports/report_view.js:197
+#: frappe/public/js/frappe/views/reports/report_view.js:203
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
@@ -17335,7 +17128,7 @@ msgstr "Nicht eingetragen"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "Keine gültige .csv-Datei"
-#: frappe/core/doctype/user/user.py:264
+#: frappe/core/doctype/user/user.py:265
msgid "Not a valid User Image."
msgstr "Kein gültiges Benutzerbild."
@@ -17351,7 +17144,7 @@ msgstr "Kein gültiger Benutzer"
msgid "Not active"
msgstr "Nicht aktiv"
-#: frappe/permissions.py:360
+#: frappe/permissions.py:370
msgid "Not allowed for {0}: {1}"
msgstr "Nicht zulässig für {0}: {1}"
@@ -17371,7 +17164,7 @@ msgstr "Das Drucken von abgebrochen Dokumenten ist nicht erlaubt."
msgid "Not allowed to print draft documents"
msgstr "Das Drucken von Entwürfen ist nicht erlaubt."
-#: frappe/permissions.py:212
+#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
msgstr "Nicht erlaubt über Controller-Berechtigungsprüfung"
@@ -17387,12 +17180,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:214
+#: frappe/core/doctype/system_settings/system_settings.py:215
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:724
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Nicht gestattet"
@@ -17418,15 +17211,6 @@ msgstr "Hinweis gelesen durch"
msgid "Note:"
msgstr "Hinweis:"
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'Dropbox Settings'
-#. Description of the 'Send Email for Successful backup' (Check) field in
-#. DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Note: By default emails for failed backups are sent."
-msgstr "Hinweis: Standardmäßig werden E-Mails für fehlgeschlagene Backups gesendet."
-
#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "Hinweis: Wenn Sie den Seitennamen ändern, wird die vorherige URL auf diese Seite gelegt."
@@ -17486,13 +17270,10 @@ msgstr "Nichts zu aktualisieren"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
#. Name of a DocType
-#. Label of the notification_section (Section Break) field in DocType 'S3
-#. Backup Settings'
#: 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
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Notification"
msgstr "Benachrichtigung"
@@ -17594,7 +17375,7 @@ msgstr "Nummer"
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:615
+#: frappe/public/js/frappe/widgets/widget_dialog.js:628
msgid "Number Card"
msgstr "Zahlenkarte"
@@ -17612,7 +17393,7 @@ msgstr "Kartenname"
#. 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:645
+#: frappe/public/js/frappe/widgets/widget_dialog.js:658
msgid "Number Cards"
msgstr "Zahlenkarten"
@@ -17630,15 +17411,6 @@ msgstr "Zahlenformat"
msgid "Number of Backups"
msgstr "Anzahl der Backups"
-#. Label of the no_of_backups (Int) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Number of DB Backups"
-msgstr "Anzahl der Datenbank-Sicherungen"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:54
-msgid "Number of DB backups cannot be less than 1"
-msgstr "Die Anzahl der DB-Sicherungen darf nicht kleiner als 1 sein"
-
#. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Number of Groups"
@@ -17654,7 +17426,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:169
+#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
msgstr "Anzahl der Backups muss größer als Null sein."
@@ -17883,7 +17655,7 @@ msgstr "Am {0}, schrieb {1}:"
#. 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:322
+#: frappe/public/js/frappe/widgets/widget_dialog.js:335
msgid "Onboard"
msgstr "Für Onboarding hervorheben"
@@ -17979,19 +17751,13 @@ msgstr "Nur der Workspace Manager kann öffentliche Arbeitsbereiche bearbeiten"
msgid "Only allowed to export customizations in developer mode"
msgstr "Anpassungen können nur im Entwicklermodus exportiert werden"
-#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Only change this if you want to use other S3 compatible object storage backends."
-msgstr "Ändern Sie dies nur, wenn Sie andere S3-kompatible Objektspeicher-Backends verwenden möchten."
-
-#: frappe/model/document.py:1232
+#: frappe/model/document.py:1231
msgid "Only draft documents can be discarded"
msgstr "Nur Dokumente im Entwurfsstatus können verworfen werden"
#. 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:315
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
msgstr "Nur für"
@@ -18240,7 +18006,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:870
+#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
msgstr "Optionen nicht für das Verknüpfungs-Feld {0} gesetzt"
@@ -18352,7 +18118,7 @@ msgstr "PATCH"
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1742
+#: frappe/public/js/frappe/views/reports/query_report.js:1744
msgid "PDF"
msgstr "PDF"
@@ -18651,7 +18417,7 @@ msgstr "Parent ist der Name des Dokuments, zu dem die Daten hinzugefügt werden.
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:798
+#: frappe/permissions.py:807
msgid "Parentfield not specified in {0}: {1}"
msgstr "Das übergeordnete Feld wurde in {0}: {1} nicht angegeben"
@@ -18711,11 +18477,11 @@ msgstr "Passiv"
msgid "Password"
msgstr "Passwort"
-#: frappe/core/doctype/user/user.py:1079
+#: frappe/core/doctype/user/user.py:1081
msgid "Password Email Sent"
msgstr "Passwort E-Mail gesendet"
-#: frappe/core/doctype/user/user.py:457
+#: frappe/core/doctype/user/user.py:458
msgid "Password Reset"
msgstr "Passwort zurücksetzen"
@@ -18749,7 +18515,7 @@ msgstr "Passwort fehlt im E-Mail-Konto"
msgid "Password not found for {0} {1} {2}"
msgstr "Passwort für {0} {1} {2} nicht gefunden"
-#: frappe/core/doctype/user/user.py:1078
+#: frappe/core/doctype/user/user.py:1080
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Anweisungen zum Zurücksetzen des Passworts wurden an die E-Mail von {} gesendet"
@@ -18761,7 +18527,7 @@ msgstr "Passwort gesetzt"
msgid "Password size exceeded the maximum allowed size"
msgstr "Passwort überschreitet die maximal zulässige Länge"
-#: frappe/core/doctype/user/user.py:869
+#: frappe/core/doctype/user/user.py:871
msgid "Password size exceeded the maximum allowed size."
msgstr "Passwort überschreitet die maximal zulässige Länge."
@@ -18918,7 +18684,7 @@ msgstr "{0} dauerhaft verwerfen?"
msgid "Permanently Submit {0}?"
msgstr "{0} endgültig übertragen?"
-#: frappe/public/js/frappe/model/model.js:733
+#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
msgstr "{0} endgültig löschen?"
@@ -19079,8 +18845,8 @@ msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Telefonnummer {0} im Feld {1} ist ungültig."
#: frappe/public/js/frappe/form/print_utils.js:40
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
-#: frappe/public/js/frappe/views/reports/report_view.js:1576
+#: frappe/public/js/frappe/views/reports/report_view.js:1579
+#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
msgstr "Spalten auswählen"
@@ -19120,7 +18886,7 @@ msgstr "Einfacher Text"
msgid "Plant"
msgstr "Fabrik"
-#: frappe/email/doctype/email_account/email_account.py:546
+#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
msgstr "Bitte autorisieren Sie OAuth für E-Mail-Konto {0}"
@@ -19136,7 +18902,7 @@ msgstr "Bitte dieses Webseiten-Thema duplizieren um es anzupassen."
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "Bitte installieren Sie die ldap3-Bibliothek via Pip, um die ldap-Funktionalität zu nutzen."
-#: frappe/public/js/frappe/views/reports/query_report.js:309
+#: frappe/public/js/frappe/views/reports/query_report.js:307
msgid "Please Set Chart"
msgstr "Bitte Diagramm einstellen"
@@ -19152,7 +18918,7 @@ msgstr "Bitte füge einen Betreff zu deiner E-Mail hinzu"
msgid "Please add a valid comment."
msgstr "Bitte fügen Sie einen gültigen Kommentar hinzu."
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1063
msgid "Please ask your administrator to verify your sign-up"
msgstr "Bitte fragen Sie Ihren Administrator Ihre Anmeldung bis zum überprüfen"
@@ -19180,11 +18946,11 @@ msgstr "Bitte überprüfen Sie die OpenID-Konfigurations-URL"
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:946
+#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Bitte überprüfen Sie den Wert von "Abrufen von" für Feld {0}"
-#: frappe/core/doctype/user/user.py:1059
+#: frappe/core/doctype/user/user.py:1061
msgid "Please check your email for verification"
msgstr "Bitte überprüfen Sie Ihren Posteingang. Wir haben Ihnen eine E-Mail mit einer Bitte um Bestätigung geschickt."
@@ -19212,10 +18978,6 @@ msgstr "Bitte klicken Sie auf den folgenden Link und folgen Sie den Anweisungen
msgid "Please click on the following link to set your new password"
msgstr "Bitte auf die folgende Verknüpfung klicken um ein neues Passwort zu setzen"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:343
-msgid "Please close this window"
-msgstr "Bitte schließen Sie dieses Fenster"
-
#: frappe/www/confirm_workflow_action.html:4
msgid "Please confirm your action to {0} this document."
msgstr "Bitte bestätigen Sie Ihre Aktion für {0} dieses Dokument."
@@ -19232,7 +18994,7 @@ msgstr "Bitte erstellen Sie zuerst die Karte"
msgid "Please create chart first"
msgstr "Bitte erstellen Sie zuerst ein Diagramm"
-#: frappe/desk/form/meta.py:214
+#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
msgstr "Bitte löschen Sie das Feld von {0} oder fügen Sie den erforderlichen DocType hinzu."
@@ -19244,7 +19006,7 @@ msgstr "Bitte nicht die Vorlagenköpfe ändern."
msgid "Please duplicate this to make changes"
msgstr "Bitte kopieren um Änderungen vorzunehmen"
-#: frappe/core/doctype/system_settings/system_settings.py:162
+#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr "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."
@@ -19262,7 +19024,7 @@ msgstr "Bitte Pop-ups aktivieren"
msgid "Please enable pop-ups in your browser"
msgstr "Bitte aktivieren Sie Popups in Ihrem Browser"
-#: frappe/integrations/google_oauth.py:53
+#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
msgstr "Bitte aktivieren Sie {} bevor Sie fortfahren."
@@ -19339,7 +19101,7 @@ msgstr "Bitte melden Sie sich an, um einen Kommentar zu schreiben."
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "Bitte stellen Sie sicher, dass die Referenzkommunikationsdokumente nicht zirkulär verknüpft sind."
-#: frappe/model/document.py:987
+#: frappe/model/document.py:986
msgid "Please refresh to get the latest document."
msgstr "Bitte aktualisieren, um das neueste Dokument zu erhalten."
@@ -19363,7 +19125,7 @@ msgstr "Bitte das Dokument vor der Zuweisung abspeichern"
msgid "Please save the document before removing assignment"
msgstr "Bitte das Dokument vor dem Entfernen einer Zuordnung abspeichern"
-#: frappe/public/js/frappe/views/reports/report_view.js:1703
+#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
msgstr "Bitte speichern Sie den Bericht zuerst"
@@ -19379,11 +19141,11 @@ msgstr "Bitte zuerst DocType auswählen"
msgid "Please select Entity Type first"
msgstr "Bitte wählen Sie zunächst Entitätstyp"
-#: frappe/core/doctype/system_settings/system_settings.py:112
+#: frappe/core/doctype/system_settings/system_settings.py:113
msgid "Please select Minimum Password Score"
msgstr "Bitte wählen Sie Minimum Password Score"
-#: frappe/public/js/frappe/views/reports/query_report.js:1181
+#: frappe/public/js/frappe/views/reports/query_report.js:1183
msgid "Please select X and Y fields"
msgstr "Bitte wählen Sie X- und Y-Felder aus"
@@ -19411,7 +19173,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:1140
+#: frappe/model/db_query.py:1141
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "Bitte wählen Sie atleast 1 Spalte von {0} sortieren / Gruppe"
@@ -19433,10 +19195,6 @@ msgstr "Bitte wählen Sie das zu verwendende LDAP Verzeichnis"
msgid "Please select {0}"
msgstr "Bitte {0} auswählen"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:305
-msgid "Please set Dropbox access keys in site config or doctype"
-msgstr "Bitte setzen Sie die Dropbox-Zugriffsschlüssel in der Site Config oder im DocType"
-
#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
msgstr "Bitte setzen Sie E-Mail-Adresse"
@@ -19445,7 +19203,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:1404
+#: frappe/public/js/frappe/views/reports/query_report.js:1406
msgid "Please set filters"
msgstr "Bitte Filter einstellen"
@@ -19465,7 +19223,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:125
+#: frappe/core/doctype/system_settings/system_settings.py:126
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"
@@ -19473,19 +19231,19 @@ msgstr "Bitte richten Sie SMS ein, bevor Sie es als Authentifizierungsmethode ü
msgid "Please setup a message first"
msgstr "Bitte richten Sie zuerst eine Nachricht ein"
-#: frappe/core/doctype/user/user.py:422
+#: frappe/core/doctype/user/user.py:423
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "Bitte legen Sie das Standard-E-Mail-Konto unter Einstellungen > E-Mail-Konto fest"
-#: frappe/email/doctype/email_account/email_account.py:434
+#: frappe/email/doctype/email_account/email_account.py:432
msgid "Please setup default outgoing Email Account from Tools > Email Account"
msgstr "Bitte richten Sie das Standardkonto für ausgehende E-Mails unter Extras > E-Mail-Konto ein"
-#: frappe/public/js/frappe/model/model.js:823
+#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
msgstr "Bitte angeben"
-#: frappe/permissions.py:774
+#: frappe/permissions.py:783
msgid "Please specify a valid parent DocType for {0}"
msgstr "Bitte geben Sie einen gültigen übergeordneten DocType für {0} an"
@@ -19514,7 +19272,7 @@ msgstr "Bitte angeben, welches Wertefeld überprüft werden muss"
msgid "Please try again"
msgstr "Bitte versuche es erneut"
-#: frappe/integrations/google_oauth.py:56
+#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
msgstr "Bitte aktualisieren Sie {}, bevor Sie fortfahren."
@@ -19827,8 +19585,8 @@ msgstr "Der Primärschlüssel von doctype {0} kann nicht geändert werden, da es
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1728
-#: frappe/public/js/frappe/views/reports/report_view.js:1531
+#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "Drucken"
@@ -20071,7 +19829,7 @@ msgstr "Tipp: Fügen Sie Referenz: {{ reference_doctype }} {{ reference_na
msgid "Proceed"
msgstr "Fortfahren"
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
msgstr "Fahre dennoch fort"
@@ -20392,7 +20150,7 @@ msgstr "Die Abfrage muss vom Typ SELECT oder Read-Only WITH sein."
msgid "Queue"
msgstr "Warteschlange"
-#: frappe/utils/background_jobs.py:729
+#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
msgstr "Warteschlange überlastet"
@@ -20413,7 +20171,7 @@ msgstr "Warteschlange Typ(en)"
msgid "Queue in Background (BETA)"
msgstr "Warteschlange im Hintergrund (BETA)"
-#: frappe/utils/background_jobs.py:554
+#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
msgstr "Warteschlange sollte eine von {0}"
@@ -20446,12 +20204,6 @@ msgstr "Eingereiht von"
msgid "Queued for Submission. You can track the progress over {0}."
msgstr "In der Warteschlange für die Buchung. Sie können den Fortschritt über {0} verfolgen."
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:65
-#: frappe/integrations/doctype/google_drive/google_drive.py:153
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:86
-msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr "Queued für das Backup. Es kann ein paar Minuten bis zu einer Stunde dauern."
-
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
msgstr "Warteschlange für Backup. Sie erhalten eine E-Mail mit dem Download-Link"
@@ -20587,7 +20339,7 @@ msgstr "Einstellung für Rohdruck"
msgid "Re-Run in Console"
msgstr "Erneut in der Konsole ausführen"
-#: frappe/email/doctype/email_account/email_account.py:728
+#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
msgstr "AW:"
@@ -20689,7 +20441,7 @@ msgstr "Echtzeit (SocketIO)"
msgid "Reason"
msgstr "Grund"
-#: frappe/public/js/frappe/views/reports/query_report.js:889
+#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
msgstr "Wiederaufbau"
@@ -21054,11 +20806,11 @@ msgid "Referrer"
msgstr "Referrer"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:548
+#: frappe/public/js/frappe/desk.js:556
#: 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:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1719
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21077,12 +20829,10 @@ msgstr "Google Sheet aktualisieren"
#. 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 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
@@ -21099,7 +20849,7 @@ msgstr "Aktualisiere"
msgid "Refreshing..."
msgstr "Aktualisiere..."
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
msgstr "Registrierte aber deaktiviert"
@@ -21262,7 +21012,7 @@ msgstr "Entfernt"
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
#: frappe/public/js/frappe/form/toolbar.js:432
-#: frappe/public/js/frappe/model/model.js:772
+#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
msgstr "Umbenennen"
@@ -21272,7 +21022,7 @@ msgstr "Umbenennen"
msgid "Rename Fieldname"
msgstr "Feldname umbenennen"
-#: frappe/public/js/frappe/model/model.js:759
+#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
msgstr "{0} umbenennen"
@@ -21336,7 +21086,7 @@ msgstr "Wiederholt wie "aaa" sind leicht zu erraten"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "Wiederholt wie "abcabcabc" sind nur etwas schwieriger zu erraten als "abc""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:146
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
msgstr "Wiederholt {0}"
@@ -21474,7 +21224,7 @@ msgstr "Berichts-Manager"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1902
+#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
msgstr "Berichtsname"
@@ -21526,7 +21276,7 @@ msgstr "Der Bericht enthält keine Daten. Ändern Sie die Filter oder den Berich
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Der Bericht enthält keine numerischen Felder. Bitte ändern Sie den Berichtsnamen"
-#: frappe/public/js/frappe/views/reports/query_report.js:1009
+#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
msgstr "Bericht initiiert. Klicken Sie hier, um den Status anzuzeigen"
@@ -21542,11 +21292,11 @@ msgstr "Zeitüberschreitung des Berichts."
msgid "Report updated successfully"
msgstr "Bericht erfolgreich aktualisiert"
-#: frappe/public/js/frappe/views/reports/report_view.js:1351
+#: frappe/public/js/frappe/views/reports/report_view.js:1357
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:1940
+#: frappe/public/js/frappe/views/reports/query_report.js:1942
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "Berichte mit mehr als 10 Spalten sehen im Querformat besser aus."
@@ -21582,7 +21332,7 @@ msgstr "Berichte"
msgid "Reports & Masters"
msgstr "Berichte & Stammdaten"
-#: frappe/public/js/frappe/views/reports/query_report.js:925
+#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
msgstr "Berichtet bereits in der Warteschlange"
@@ -22032,7 +21782,7 @@ msgstr "Rollenreplikation"
msgid "Role and Level"
msgstr "Rolle und Ebene"
-#: frappe/core/doctype/user/user.py:363
+#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
msgstr "Die Rolle wurde gemäß Benutzertyp {0} festgelegt"
@@ -22147,7 +21897,7 @@ msgstr "Routenumleitungen"
msgid "Route: Example \"/app\""
msgstr "Route: Beispiel \"/app\""
-#: frappe/model/base_document.py:855 frappe/model/document.py:778
+#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
msgstr "Zeile"
@@ -22160,7 +21910,7 @@ msgstr "Zeile #"
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:977
+#: frappe/model/base_document.py:982
msgid "Row #{0}:"
msgstr "Zeile #{0}:"
@@ -22238,7 +21988,7 @@ msgstr "Regel"
msgid "Rule Conditions"
msgstr "Regelbedingungen"
-#: frappe/permissions.py:653
+#: frappe/permissions.py:662
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Die Regel für diese Kombination aus Doctype, Rolle, Permlevel und if-owner existiert bereits."
@@ -22282,23 +22032,6 @@ msgstr "Laufzeit in Minuten"
msgid "Runtime in Seconds"
msgstr "Laufzeit in Sekunden"
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "S3 Backup Settings"
-msgstr "S3-Sicherungseinstellungen"
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
-msgid "S3 Backup complete!"
-msgstr "S3-Sicherung abgeschlossen!"
-
-#. Label of the s3_bucket_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Bucket Details"
-msgstr "Details zum S3-Bucket"
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
@@ -22439,7 +22172,7 @@ msgstr "Samstag"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/page/print/print.js:858
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/quick_entry.js:185
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
@@ -22449,8 +22182,8 @@ msgstr "Samstag"
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
-#: frappe/public/js/frappe/views/reports/query_report.js:1894
-#: frappe/public/js/frappe/views/reports/report_view.js:1720
+#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
@@ -22467,8 +22200,8 @@ msgstr "API-Geheimnis speichern: {0}"
msgid "Save Anyway"
msgstr "Auf jeden Fall speichern"
-#: frappe/public/js/frappe/views/reports/report_view.js:1382
-#: frappe/public/js/frappe/views/reports/report_view.js:1727
+#: frappe/public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
msgstr "Speichern als"
@@ -22476,7 +22209,7 @@ msgstr "Speichern als"
msgid "Save Customizations"
msgstr "Anpassungen speichern"
-#: frappe/public/js/frappe/views/reports/query_report.js:1897
+#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
msgstr "Bericht speichern"
@@ -22642,7 +22375,7 @@ msgstr "Scheduler Inaktiv"
msgid "Scheduler Status"
msgstr "Planer-Status"
-#: frappe/utils/scheduler.py:249
+#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr "Scheduler kann nicht wieder aktiviert werden, wenn der Wartungsmodus aktiv ist."
@@ -22868,7 +22601,7 @@ msgstr "Sicherheitseinstellungen"
msgid "See all Activity"
msgstr "Alle Aktivitäten anzeigen"
-#: frappe/public/js/frappe/views/reports/query_report.js:858
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "See all past reports."
msgstr "Alle früheren Berichte anzeigen."
@@ -22948,7 +22681,7 @@ msgstr "Anhänge auswählen"
msgid "Select Child Table"
msgstr "Untergeordnete Tabelle auswählen"
-#: frappe/public/js/frappe/views/reports/report_view.js:377
+#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
msgstr "Wählen Sie Spalte"
@@ -23265,31 +22998,11 @@ msgstr "Ausdrucke als E-Mail-Anhang im PDF-Format senden (empfohlen)"
msgid "Send Email To Creator"
msgstr "E-Mail an den Ersteller senden"
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Dropbox Settings'
-#. Label of the send_email_for_successful_backup (Check) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Email for Successful Backup"
-msgstr "E-Mail nach erfolgreicher Sicherung senden"
-
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Email for Successful backup"
-msgstr "E-Mail nach erfolgreicher Sicherung senden"
-
#. 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 "Mir eine Kopie der ausgehenden E-Mails senden"
-#. Label of the email (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Notification To"
-msgstr "Benachrichtigung senden an"
-
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -23306,14 +23019,6 @@ msgstr "Benachrichtigungen für von mir verfolgte Dokumente senden"
msgid "Send Notifications For Email Threads"
msgstr "Benachrichtigungen für E-Mail-Threads senden"
-#. Label of the send_notifications_to (Data) field in DocType 'Dropbox
-#. Settings'
-#. Label of the notify_email (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Notifications To"
-msgstr "Benachrichtigungen senden an"
-
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
msgstr "Jetzt senden"
@@ -23572,7 +23277,7 @@ msgstr "Serie {0} bereits verwendet in {1}"
msgid "Server Action"
msgstr "Serveraktion"
-#: frappe/app.py:383 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Serverfehler"
@@ -23638,7 +23343,7 @@ msgstr "Sitzungsstandards"
msgid "Session Defaults Saved"
msgstr "Sitzungsstandards gespeichert"
-#: frappe/app.py:360
+#: frappe/app.py:353
msgid "Session Expired"
msgstr "Sitzung abgelaufen"
@@ -23647,7 +23352,7 @@ msgstr "Sitzung abgelaufen"
msgid "Session Expiry (idle timeout)"
msgstr "Ablauf der Sitzung (Leerlaufzeit)"
-#: frappe/core/doctype/system_settings/system_settings.py:119
+#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
msgstr "Sitzungsablauf muss im Format {0} sein"
@@ -23670,7 +23375,7 @@ msgstr "Eingetragen"
msgid "Set Banner from Image"
msgstr "Banner aus Bild einrichten"
-#: frappe/public/js/frappe/views/reports/query_report.js:201
+#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
msgstr "Diagramm setzen"
@@ -23696,7 +23401,7 @@ msgstr "Filter setzen"
msgid "Set Filters for {0}"
msgstr "Setze Filter für {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
msgstr "Ebenen einstellen"
@@ -23938,8 +23643,8 @@ msgstr "Einrichtung > Benutzer"
msgid "Setup > User Permissions"
msgstr "Einrichtung > Benutzerberechtigungen"
-#: frappe/public/js/frappe/views/reports/query_report.js:1763
-#: frappe/public/js/frappe/views/reports/report_view.js:1698
+#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Einstellungen Auto E-Mail"
@@ -24035,6 +23740,15 @@ msgstr "Anzeigen"
msgid "Show \"Call to Action\" in Blog"
msgstr "„Aufruf zum Handeln\" im Blog anzeigen"
+#. 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"
@@ -24205,7 +23919,7 @@ msgstr "Titel anzeigen"
msgid "Show Title in Link Fields"
msgstr "Titel in Verknüpfungsfeld anzeigen"
-#: frappe/public/js/frappe/views/reports/report_view.js:1521
+#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
msgstr "Summen anzeigen"
@@ -24315,7 +24029,7 @@ msgstr "Diesen Eintrag im Browser-Fenster als \"Präfix - Titel\" anzeigen"
msgid "Show {0} List"
msgstr "{0} Liste anzeigen"
-#: frappe/public/js/frappe/views/reports/report_view.js:495
+#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
msgstr "Nur numerische Felder aus Bericht anzeigen"
@@ -24350,7 +24064,7 @@ msgstr "Sidebar und Kommentare"
msgid "Sign Up and Confirmation"
msgstr "Registrierung und Bestätigung"
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
msgstr "Die Registrierung ist deaktiviert"
@@ -24995,7 +24709,7 @@ msgstr "Statistik Zeitintervall"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
-#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: frappe/public/js/frappe/views/reports/report_view.js:975
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
@@ -25294,7 +25008,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:1166
+#: frappe/public/js/frappe/form/grid.js:1170
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25391,7 +25105,7 @@ msgstr "Optimierungen vorschlagen"
msgid "Suggested Indexes"
msgstr "Vorgeschlagene Indizes"
-#: frappe/core/doctype/user/user.py:720
+#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
msgstr "Empfohlener Benutzername: {0}"
@@ -25681,11 +25395,9 @@ msgstr "Systemprotokolle"
#: frappe/geo/doctype/country/country.json
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/connected_app/connected_app.json
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.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_drive/google_drive.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
@@ -25694,7 +25406,6 @@ msgstr "Systemprotokolle"
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_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
@@ -25819,11 +25530,11 @@ msgstr "Tabelle MultiSelect"
msgid "Table Trimmed"
msgstr "Tabelle gekürzt"
-#: frappe/public/js/frappe/form/grid.js:1165
+#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
msgstr "Tabelle aktualisiert"
-#: frappe/model/document.py:1565
+#: frappe/model/document.py:1564
msgid "Table {0} cannot be empty"
msgstr "Tabelle {0} darf nicht leer sein"
@@ -25842,7 +25553,7 @@ msgstr "Schlagwort"
msgid "Tag Link"
msgstr "Schlagwortverknüpfung"
-#: frappe/model/meta.py:57
+#: 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
@@ -25854,15 +25565,6 @@ msgstr "Schlagwortverknüpfung"
msgid "Tags"
msgstr "Schlagworte"
-#: frappe/integrations/doctype/google_drive/google_drive.js:29
-msgid "Take Backup"
-msgstr "Backup erstellen"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
-msgid "Take Backup Now"
-msgstr "Jetzt Backup durchführen"
-
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
msgstr "Foto machen"
@@ -25940,12 +25642,12 @@ msgstr "Vorlagenwarnungen"
msgid "Templates"
msgstr "Vorlagen"
-#: frappe/core/doctype/user/user.py:1027
+#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
msgstr "Zeitweise nicht verfügbar"
-#: frappe/core/doctype/translation/test_translation.py:56
-#: frappe/core/doctype/translation/test_translation.py:63
+#: frappe/core/doctype/translation/test_translation.py:47
+#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
msgstr "Testdaten"
@@ -25954,8 +25656,8 @@ msgstr "Testdaten"
msgid "Test Job ID"
msgstr "Test-Auftrags-ID"
-#: frappe/core/doctype/translation/test_translation.py:58
-#: frappe/core/doctype/translation/test_translation.py:66
+#: frappe/core/doctype/translation/test_translation.py:49
+#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
msgstr "Test Spanisch"
@@ -25963,7 +25665,7 @@ msgstr "Test Spanisch"
msgid "Test email sent to {0}"
msgstr "Test-E-Mail an {0} gesendet"
-#: frappe/core/doctype/file/test_file.py:388
+#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Test_Ordner"
@@ -26046,7 +25748,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:1188
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
msgstr "Das CSV-Format unterscheidet zwischen Groß- und Kleinschreibung"
@@ -26220,15 +25922,15 @@ msgstr "Die Projektnummer aus der Google Cloud Console unter "
-#: frappe/core/doctype/user/user.py:987
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
msgstr "Der Link zum Zurücksetzen des Passworts ist abgelaufen"
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:991
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:375 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:368 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"
@@ -26240,7 +25942,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:334
+#: frappe/utils/response.py:331
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."
@@ -26301,7 +26003,7 @@ msgstr "Für Sie stehen keine Veranstaltungen an."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "Es gibt keine {0} für diese {1}, warum starten Sie nicht eine!"
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "There are {0} with the same filters already in the queue:"
msgstr "Es gibt bereits {0} mit denselben Filtern in der Warteschlange:"
@@ -26330,7 +26032,7 @@ msgstr "Es gibt im Moment nichts Neues zu sehen."
msgid "There is some problem with the file url: {0}"
msgstr "Es gibt irgend ein Problem mit der Datei-URL: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:958
+#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
msgstr "In der Warteschlange befindet sich bereits {0} mit denselben Filtern:"
@@ -26417,12 +26119,12 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Diese Aktion ist unumkehrbar. Möchten Sie fortfahren?"
-#: frappe/__init__.py:750
+#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
msgstr "Diese Aktion ist nur für {} zulässig"
#: frappe/public/js/frappe/form/toolbar.js:117
-#: frappe/public/js/frappe/model/model.js:755
+#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "Das kann nicht rückgängig gemacht werden"
@@ -26460,7 +26162,7 @@ msgstr "Dieses Dokument enthält ungespeicherte Änderungen, die möglicherweise
msgid "This document is already amended, you cannot ammend it again"
msgstr "Dieses Dokument wurde bereits geändert. Sie können es nicht erneut ändern"
-#: frappe/model/document.py:474
+#: frappe/model/document.py:473
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr "Dieses Dokument ist derzeit gesperrt und befindet sich in der Warteschlange für die Ausführung. Bitte versuchen Sie es nach einiger Zeit erneut."
@@ -26525,7 +26227,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:2132
+#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Dies ist ein Hintergrundbericht. Bitte setzen Sie die entsprechenden Filter und generieren Sie dann einen neuen."
@@ -26589,7 +26291,7 @@ msgstr "Dieser Newsletter wird voraussichtlich am {0} verschickt"
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
msgstr "Der Versand dieses Newsletters war zu einem späteren Zeitpunkt geplant. Sind Sie sicher, dass Sie es jetzt senden möchten?"
-#: frappe/public/js/frappe/views/reports/query_report.js:1033
+#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Dieser Bericht enthält {0} Zeilen und ist zu groß, um im Browser angezeigt zu werden. Sie können diesen Bericht stattdessen unter {1} aufrufen."
@@ -26597,7 +26299,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:856
+#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
msgstr "Dieser Bericht wurde {0} generiert."
@@ -26663,7 +26365,7 @@ msgstr "Dadurch wird diese Tour zurückgesetzt und für alle Benutzer sichtbar.
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr "Das wird den Auftrag sofort beenden und könnte gefährlich sein, sind Sie sicher? "
-#: frappe/core/doctype/user/user.py:1240
+#: frappe/core/doctype/user/user.py:1242
msgid "Throttled"
msgstr "Gedrosselt"
@@ -27020,7 +26722,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:857
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "To get the updated report, click on {0}."
msgstr "Klicken Sie auf {0}, um den aktualisierten Bericht abzurufen."
@@ -27045,10 +26747,6 @@ msgstr "Aktivieren Sie {0}, um Google Kalender zu verwenden."
msgid "To use Google Contacts, enable {0}."
msgstr "Aktivieren Sie {0}, um Google-Kontakte zu verwenden."
-#: frappe/integrations/doctype/google_drive/google_drive.js:8
-msgid "To use Google Drive, enable {0}."
-msgstr "Aktivieren Sie {0}, um Google Drive zu verwenden."
-
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -27079,7 +26777,7 @@ msgstr "Aufgabe"
msgid "Today"
msgstr "Heute"
-#: frappe/public/js/frappe/views/reports/report_view.js:1564
+#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
msgstr "Diagramm/Grafik(?) umschalten\\nplease verify context!"
@@ -27095,7 +26793,7 @@ msgstr "Rasteransicht wechseln"
#: 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:1568
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
msgstr "Seitenleiste umschalten"
@@ -27151,11 +26849,11 @@ msgstr "Zu viele Anfragen"
msgid "Too many changes to database in single action."
msgstr "Zu viele Änderungen an der Datenbank in einer einzelnen Aktion."
-#: frappe/utils/background_jobs.py:728
+#: frappe/utils/background_jobs.py:730
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr "Zu viele Hintergrundjobs in der Warteschlange ({0}). Bitte versuchen Sie es später erneut."
-#: frappe/core/doctype/user/user.py:1028
+#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "Zu viele Benutzer unterzeichnete vor kurzem, also die Registrierung ist deaktiviert. Bitte versuchen Sie es in einer Stunde zurück"
@@ -27219,8 +26917,8 @@ msgstr "Thema"
#: frappe/desk/query_report.py:533
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1320
-#: frappe/public/js/frappe/views/reports/report_view.js:1545
+#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr "Summe"
@@ -27283,11 +26981,11 @@ msgstr "Gesamtzahl der im ersten Synchronisierungsprozess zu synchronisierenden
msgid "Total:"
msgstr "Summe:"
-#: frappe/public/js/frappe/views/reports/report_view.js:1250
+#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
msgstr "Summen"
-#: frappe/public/js/frappe/views/reports/report_view.js:1225
+#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
msgstr "Summenzeile"
@@ -27402,7 +27100,7 @@ msgstr "Übergänge"
msgid "Translatable"
msgstr "Übersetzbar"
-#: frappe/public/js/frappe/views/reports/query_report.js:2188
+#: frappe/public/js/frappe/views/reports/query_report.js:2183
msgid "Translate Data"
msgstr "Daten übersetzen"
@@ -27413,7 +27111,7 @@ msgstr "Daten übersetzen"
msgid "Translate Link Fields"
msgstr "Verknünpfungsfelder übersetzen"
-#: frappe/public/js/frappe/views/reports/report_view.js:1650
+#: frappe/public/js/frappe/views/reports/report_view.js:1656
msgid "Translate values"
msgstr "Werte übersetzen"
@@ -27561,7 +27259,7 @@ msgstr "Zwei Faktor-Authentifizierungsmethode"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/views/file/file_view.js:337
#: frappe/public/js/frappe/views/workspace/workspace.js:399
-#: frappe/public/js/frappe/widgets/widget_dialog.js:391
+#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
msgid "Type"
@@ -27642,7 +27340,7 @@ msgstr "URIs für den Empfang des Autorisierungscodes, sobald der Benutzer den Z
#: 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:458
+#: 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"
@@ -27704,7 +27402,7 @@ msgstr "DocType {0} kann nicht gefunden werden."
msgid "Unable to load camera."
msgstr "Die Kamera konnte nicht geladen werden."
-#: frappe/public/js/frappe/model/model.js:268
+#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
msgstr "{0} kann nicht geladen werden"
@@ -27733,7 +27431,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:383
+#: frappe/app.py:376
msgid "Uncaught Exception"
msgstr "Nicht abgefangene Ausnahme"
@@ -27966,7 +27664,7 @@ msgstr "Aktualisiert"
msgid "Updated Successfully"
msgstr "Erfolgreich geupdated"
-#: frappe/public/js/frappe/desk.js:444
+#: frappe/public/js/frappe/desk.js:452
msgid "Updated To A New Version 🎉"
msgstr "Auf eine neue Version aktualisiert 🎉"
@@ -27974,7 +27672,7 @@ msgstr "Auf eine neue Version aktualisiert 🎉"
msgid "Updated successfully"
msgstr "Erfolgreich geupdated"
-#: frappe/utils/response.py:333
+#: frappe/utils/response.py:330
msgid "Updating"
msgstr "Aktualisierung läuft"
@@ -28048,18 +27746,6 @@ msgstr "Auf Dropbox hochgeladen"
msgid "Uploaded To Google Drive"
msgstr "Auf Google Drive hochgeladen"
-#: frappe/integrations/doctype/google_drive/google_drive.py:196
-msgid "Uploading backup to Google Drive."
-msgstr "Hochladen der Sicherung zu Google Drive."
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:201
-msgid "Uploading successful."
-msgstr "Hochladen erfolgreich."
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:16
-msgid "Uploading to Google Drive"
-msgstr "Hochladen zu Google Drive"
-
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -28143,11 +27829,11 @@ 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:434
+#: frappe/model/db_query.py:435
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:411
+#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
msgstr "Die Verwendung von Teilabfragen oder Funktionen ist eingeschränkt."
@@ -28264,7 +27950,7 @@ msgstr "Kann nicht von einem Benutzer erstellt werden"
msgid "User Cannot Search"
msgstr "Kann nicht von einem Benutzer gesucht werden"
-#: frappe/public/js/frappe/desk.js:546
+#: frappe/public/js/frappe/desk.js:554
msgid "User Changed"
msgstr "Benutzer geändert"
@@ -28370,8 +28056,8 @@ 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:1881
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "Benutzerberechtigungen"
@@ -28468,7 +28154,7 @@ msgstr "Benutzer muss immer auswählen"
msgid "User permission already exists"
msgstr "Benutzerberechtigung ist bereits vorhanden"
-#: frappe/www/login.py:167
+#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
msgstr "Benutzer mit E-Mail-Adresse {0} existiert nicht"
@@ -28476,23 +28162,23 @@ msgstr "Benutzer mit E-Mail-Adresse {0} existiert nicht"
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr "Ein Benutzer mit der E-Mail-Adresse {0} existiert nicht im System. Bitten Sie den 'Systemadministrator', den Benutzer für Sie anzulegen."
-#: frappe/core/doctype/user/user.py:536
+#: frappe/core/doctype/user/user.py:537
msgid "User {0} cannot be deleted"
msgstr "Benutzer {0} kann nicht gelöscht werden"
-#: frappe/core/doctype/user/user.py:326
+#: frappe/core/doctype/user/user.py:327
msgid "User {0} cannot be disabled"
msgstr "Benutzer {0} kann nicht deaktiviert werden"
-#: frappe/core/doctype/user/user.py:602
+#: frappe/core/doctype/user/user.py:603
msgid "User {0} cannot be renamed"
msgstr "Benutzer {0} kann nicht umbenannt werden"
-#: frappe/permissions.py:138
+#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
msgstr "Benutzer {0} hat keinen Zugriff auf dieses Dokument"
-#: frappe/permissions.py:161
+#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr "Benutzer {0} hat keinen Doctype-Zugriff über die Rollenberechtigung für Dokument {1}."
@@ -28505,7 +28191,7 @@ msgstr "Der Benutzer {0} hat nicht die Berechtigung, einen Arbeitsbereich zu ers
msgid "User {0} has requested for data deletion"
msgstr "Benutzer {0} hat das Löschen von Daten angefordert"
-#: frappe/core/doctype/user/user.py:1369
+#: frappe/core/doctype/user/user.py:1371
msgid "User {0} impersonated as {1}"
msgstr "Benutzer {0} hat sich als {1} ausgegeben"
@@ -28534,7 +28220,7 @@ msgstr "Benutzerinfo URI"
msgid "Username"
msgstr "Benutzername"
-#: frappe/core/doctype/user/user.py:687
+#: frappe/core/doctype/user/user.py:689
msgid "Username {0} already exists"
msgstr "Benutzername {0} ist bereits vorhanden"
@@ -28674,15 +28360,15 @@ msgstr "Wert geändert"
msgid "Value To Be Set"
msgstr "Wert, der gesetzt werden soll"
-#: frappe/model/base_document.py:1049 frappe/model/document.py:834
+#: frappe/model/base_document.py:1054 frappe/model/document.py:833
msgid "Value cannot be changed for {0}"
msgstr "Wert kann für {0} nicht geändert werden"
-#: frappe/model/document.py:780
+#: frappe/model/document.py:779
msgid "Value cannot be negative for"
msgstr "Wert kann nicht negativ sein für"
-#: frappe/model/document.py:784
+#: frappe/model/document.py:783
msgid "Value cannot be negative for {0}: {1}"
msgstr "Der Wert kann für {0} nicht negativ sein: {1}"
@@ -28713,7 +28399,7 @@ msgstr "Wert muss einer von {0} sein"
msgid "Value to Validate"
msgstr "Zu validierender Wert"
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1124
msgid "Value too big"
msgstr "Wert zu groß"
@@ -29314,11 +29000,6 @@ msgstr "Wochentage"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -29327,9 +29008,6 @@ msgstr "Wochentage"
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:399
#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
@@ -29364,11 +29042,11 @@ msgstr "Willkommens-URL"
msgid "Welcome Workspace"
msgstr "Willkommens-Arbeitsbereich"
-#: frappe/core/doctype/user/user.py:414
+#: frappe/core/doctype/user/user.py:415
msgid "Welcome email sent"
msgstr "Willkommens-E-Mail gesendet"
-#: frappe/core/doctype/user/user.py:475
+#: frappe/core/doctype/user/user.py:476
msgid "Welcome to {0}"
msgstr "Willkommen auf {0}"
@@ -29401,7 +29079,7 @@ msgstr "Wenn Sie ein Dokument nach dem Stornieren berichtigen und es speichern,
#. 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:468
+#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
msgstr "Zu welcher Ansicht des zugehörigen DocType sollte diese Verknüpfung führen?"
@@ -29600,7 +29278,7 @@ msgstr "Workflow erfolgreich aktualisiert"
msgid "Workspace"
msgstr "Arbeitsbereich"
-#: frappe/public/js/frappe/router.js:177
+#: frappe/public/js/frappe/router.js:173
msgid "Workspace {0} does not exist"
msgstr "Arbeitsbereich {0} existiert nicht"
@@ -29670,11 +29348,11 @@ msgstr "Arbeitsbereich {0} erstellt"
msgid "Workspaces"
msgstr "Arbeitsbereiche"
-#: frappe/public/js/frappe/form/footer/form_timeline.js:753
+#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
msgstr "Möchten Sie diesen Kommentar veröffentlichen? Das bedeutet, dass er für die Benutzer der Website/des Portals sichtbar wird."
-#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
msgstr "Möchten Sie die Veröffentlichung dieses Kommentars aufheben? Dann ist er für die Benutzer der Website/des Portals nicht mehr sichtbar."
@@ -29693,11 +29371,11 @@ msgstr "Aufwickeln"
msgid "Write"
msgstr "Schreiben"
-#: frappe/model/base_document.py:949
+#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
msgstr "Falscher Abruf vom Wert"
-#: frappe/public/js/frappe/views/reports/report_view.js:484
+#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
msgstr "X-Achsenfeld"
@@ -29716,13 +29394,13 @@ msgstr "XLSX"
msgid "Y Axis"
msgstr "Y-Achse"
-#: frappe/public/js/frappe/views/reports/report_view.js:491
+#: frappe/public/js/frappe/views/reports/report_view.js:497
msgid "Y Axis Fields"
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:1221
+#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
msgstr "Y-Feld"
@@ -29783,7 +29461,7 @@ msgstr "Gelb"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Ja"
@@ -29823,11 +29501,11 @@ msgstr "Sie geben sich als ein anderer Benutzer aus."
msgid "You are not allowed to access this resource"
msgstr "Sie dürfen nicht auf diese Ressource zuzugreifen"
-#: frappe/permissions.py:409
+#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "Sie haben keine Berechtigung, auf diesen Eintrag in {0} zuzugreifen, da dieser in Feld {3} mit {1} '{2}' verknüpft ist"
-#: frappe/permissions.py:398
+#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "Sie können auf diesen Datensatz {0} nicht zugreifen, da er mit {1} '{2}' in Zeile {3}, Feld {4} verknüpft ist"
@@ -29850,7 +29528,7 @@ msgstr "Sie sind nicht berechtigt, den Bericht zu bearbeiten."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:604
+#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
msgstr "Sie dürfen keinen {} Doctype exportieren"
@@ -29862,7 +29540,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:569
+#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
msgstr "Sie sind nicht berechtigt, dieses Web Form-Dokument zu aktualisieren"
@@ -29878,7 +29556,7 @@ msgstr "Sie sind nicht berechtigt, ohne Anmeldung auf diese Seite zuzugreifen."
msgid "You are not permitted to access this page."
msgstr "Sie sind nicht berechtigt auf diese Seite zuzugreifen."
-#: frappe/__init__.py:669
+#: frappe/__init__.py:676
msgid "You are not permitted to access this resource. Login to access"
msgstr "Sie haben keinen Zugriff auf diese Ressource. Melden Sie sich an, um darauf zuzugreifen"
@@ -29886,7 +29564,7 @@ msgstr "Sie haben keinen Zugriff auf diese Ressource. Melden Sie sich an, um dar
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr "Sie folgen nun diesem Dokument. Sie erhalten tägliche Updates per E-Mail. Sie können dies in den Benutzereinstellungen ändern."
-#: frappe/core/doctype/installed_applications/installed_applications.py:82
+#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
msgstr "Sie können nur die Reihenfolge verändern, keine Anwendungen entfernen oder hinzufügen."
@@ -30050,11 +29728,11 @@ msgstr "Sie haben keine Lese- oder Auswahlberechtigung für {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Sie haben nicht genügend Rechte, um auf diese Ressource zuzugreifen. Bitte kontaktieren Sie Ihren Manager um Zugang zu erhalten."
-#: frappe/app.py:368
+#: frappe/app.py:361
msgid "You do not have enough permissions to complete the action"
msgstr "Sie verfügen nicht über genügend Berechtigungen, um die Aktion durchzuführen"
-#: frappe/desk/query_report.py:838
+#: frappe/desk/query_report.py:831
msgid "You do not have permission to access {0}: {1}."
msgstr "Sie haben keine Zugriffsberechtigung für {0}: {1}."
@@ -30066,11 +29744,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:772
+#: frappe/website/doctype/web_form/web_form.py:769
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:286 frappe/utils/response.py:290
+#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
msgstr "Keine Berechtigung für den Zugriff auf diese Datei vorhanden"
@@ -30078,7 +29756,7 @@ msgstr "Keine Berechtigung für den Zugriff auf diese Datei vorhanden"
msgid "You don't have permission to get a report on: {0}"
msgstr "Sie haben keine ausreichenden Benutzerrechte um einen Bericht über: {0} zu erhalten"
-#: frappe/website/doctype/web_form/web_form.py:175
+#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
msgstr "Sie verfügen nicht über die Berechtigungen, um auf dieses Dokument zuzugreifen"
@@ -30131,23 +29809,23 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr "Sie haben die maximale Anzahl an Anfragen erreicht. Bitte versuchen Sie es später noch einmal."
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
msgstr "Zuletzt von Ihnen bearbeitet"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:339
+#: frappe/public/js/frappe/widgets/widget_dialog.js:352
msgid "You must add atleast one link."
msgstr "Sie müssen mindestens einen Link hinzufügen."
-#: frappe/website/doctype/web_form/web_form.py:768
+#: frappe/website/doctype/web_form/web_form.py:765
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:609
+#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
msgstr "Anmeldung erforderlich, um dieses Formular zu übermitteln"
-#: frappe/model/document.py:357
+#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr "Sie benötigen die Berechtigung '{0}' auf {1} {2}, um diese Aktion durchzuführen."
@@ -30163,11 +29841,11 @@ msgstr "Sie müssen Workspace Manager sein, um dieses Dokument zu bearbeiten"
msgid "You need to be a system user to access this page."
msgstr "Sie müssen ein Systembenutzer sein, um auf diese Seite zugreifen zu können."
-#: frappe/website/doctype/web_form/web_form.py:94
+#: frappe/website/doctype/web_form/web_form.py:91
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:275
+#: frappe/utils/response.py:272
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."
@@ -30175,7 +29853,7 @@ msgstr "Sie müssen eingeloggt sein und die Systemmanager-Rolle haben um auf Dat
msgid "You need to be logged in to access this page"
msgstr "Sie müssen angemeldet sein um auf diese Seite zuzugreifen"
-#: frappe/website/doctype/web_form/web_form.py:164
+#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
msgstr "Sie müssen angemeldet sein, um auf {0} zugreifen zu können."
@@ -30250,7 +29928,7 @@ msgstr "Sie haben dieses Dokument nicht mehr verfolgt"
msgid "You viewed this"
msgstr "Von Ihnen angesehen"
-#: frappe/public/js/frappe/desk.js:543
+#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr "Sie haben sich als ein anderer Benutzer über eine andere Registerkarte angemeldet. Aktualisieren Sie diese Seite, um das System weiter zu nutzen."
@@ -30333,7 +30011,7 @@ msgstr "Name und Anschrift Ihrer Firma für die Fußzeile der E-Mail."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Ihre Anfrage ist eingegangen. Wir werden in Kürze antworten. Wenn Sie zusätzliche Informationen haben, antworten Sie bitte auf diese E-Mail."
-#: frappe/app.py:361
+#: frappe/app.py:354
msgid "Your session has expired, please login again to continue."
msgstr "Ihre Sitzung ist abgelaufen, bitte melden Sie sich erneut an, um fortzufahren."
@@ -30564,7 +30242,7 @@ msgstr "E-Mail"
msgid "email inbox"
msgstr "E-Mail-Eingang"
-#: frappe/permissions.py:403 frappe/permissions.py:414
+#: frappe/permissions.py:412 frappe/permissions.py:423
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "leeren"
@@ -31116,7 +30794,7 @@ msgstr "{0} = {1}"
msgid "{0} Calendar"
msgstr "{0} Kalender"
-#: frappe/public/js/frappe/views/reports/report_view.js:564
+#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
msgstr "{0} Diagramm"
@@ -31164,7 +30842,7 @@ msgstr "{0} Karte"
msgid "{0} Name"
msgstr "{0} ID"
-#: frappe/model/base_document.py:1149
+#: frappe/model/base_document.py:1154
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"
@@ -31174,7 +30852,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:952
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
msgstr "{0} Berichte"
@@ -31240,7 +30918,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr "{0} hat {1} angehängt"
-#: frappe/core/doctype/system_settings/system_settings.py:149
+#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
msgstr "{0} darf nicht größer als {1} sein"
@@ -31253,7 +30931,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} dieses Dokument storniert {1}"
-#: frappe/model/document.py:547
+#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr "{0} kann nicht berichtigt werden, da es nicht storniert ist. Bitte stornieren Sie das Dokument, bevor Sie eine Berichtigung erstellen."
@@ -31378,7 +31056,7 @@ msgstr "{0} ist ein ungültiges Datenfeld."
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "{0} ist eine ungültige E-Mail-Adresse in \"Empfänger\""
-#: frappe/public/js/frappe/views/reports/report_view.js:1462
+#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
msgstr "{0} ist zwischen {1} und {2}"
@@ -31387,27 +31065,27 @@ msgstr "{0} ist zwischen {1} und {2}"
msgid "{0} is currently {1}"
msgstr "{0} ist derzeit {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1431
+#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
msgstr "{0} ist gleich {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1451
+#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
msgstr "{0} ist größer oder gleich {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1441
+#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
msgstr "{0} ist größer als {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1456
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
msgstr "{0} ist kleiner oder gleich {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1446
+#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
msgstr "{0} ist kleiner als {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1481
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
msgstr "{0} ist wie {1}"
@@ -31427,7 +31105,7 @@ msgstr "{0} ist kein unformatiertes Druckformat."
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr "{0} ist kein gültiger Kalender. Weiterleitung zum Standard-Kalender."
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:64
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
msgstr "{0} ist kein gültiger Cron-Ausdruck."
@@ -31456,11 +31134,11 @@ msgstr "{0} ist keine gültige Telefonnummer"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} ist kein gültiger Workflow-Status. Bitte aktualisieren Sie Ihren Workflow und versuchen Sie es erneut."
-#: frappe/permissions.py:787
+#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} ist kein gültiger übergeordneter DocType für {1}"
-#: frappe/permissions.py:807
+#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} ist kein gültiges übergeordnetes Feld für {1}"
@@ -31472,27 +31150,27 @@ msgstr "{0} ist kein gültiges Berichtsformat. Berichtsformat sollte eines der f
msgid "{0} is not a zip file"
msgstr "{0} ist keine Zip-Datei"
-#: frappe/public/js/frappe/views/reports/report_view.js:1436
+#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
msgstr "{0} ist ungleich {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1483
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
msgstr "{0} ist nicht wie {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
msgstr "{0} ist keine von {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1487
+#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
msgstr "{0} ist nicht eingetragen"
-#: frappe/printing/doctype/print_format/print_format.py:165
+#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} ist jetzt das Standard-Druckformat für den DocType {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1470
+#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
msgstr "{0} ist eine von {1}"
@@ -31503,11 +31181,11 @@ msgstr "{0} ist eine von {1}"
msgid "{0} is required"
msgstr "{0} ist erforderlich"
-#: frappe/public/js/frappe/views/reports/report_view.js:1486
+#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
msgstr "{0} ist eingetragen"
-#: frappe/public/js/frappe/views/reports/report_view.js:1465
+#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
msgstr "{0} ist innerhalb von {1}"
@@ -31515,12 +31193,12 @@ msgstr "{0} ist innerhalb von {1}"
msgid "{0} items selected"
msgstr "{0} Elemente ausgewählt"
-#: frappe/core/doctype/user/user.py:1378
+#: frappe/core/doctype/user/user.py:1380
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} hat sich gerade als Sie ausgegeben und gab dafür diesen Grund an: {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:104
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
msgstr "Zuletzt von {0} bearbeitet"
@@ -31536,7 +31214,7 @@ msgstr "{0} abgemeldet: {1}"
msgid "{0} m"
msgstr "{0} Min"
-#: frappe/desk/notifications.py:397
+#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
msgstr "{0} hat dich in einem Kommentar in {1} {2} erwähnt"
@@ -31548,35 +31226,35 @@ msgstr "vor {0} Minuten"
msgid "{0} months ago"
msgstr "vor {0} Monaten"
-#: frappe/model/document.py:1792
+#: frappe/model/document.py:1791
msgid "{0} must be after {1}"
msgstr "{0} muss nach {1} liegen"
-#: frappe/model/document.py:1551
+#: frappe/model/document.py:1550
msgid "{0} must be beginning with '{1}'"
msgstr "{0} muss mit '{1}' beginnen"
-#: frappe/model/document.py:1553
+#: frappe/model/document.py:1552
msgid "{0} must be equal to '{1}'"
msgstr "{0} muss gleich '{1}' sein"
-#: frappe/model/document.py:1549
+#: frappe/model/document.py:1548
msgid "{0} must be none of {1}"
msgstr "{0} darf nichts von {1} sein"
-#: frappe/model/document.py:1547 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} muss aus {1} sein"
-#: frappe/model/base_document.py:875
+#: frappe/model/base_document.py:876
msgid "{0} must be set first"
msgstr "{0} muss als erstes gesetzt sein"
-#: frappe/model/base_document.py:732
+#: frappe/model/base_document.py:729
msgid "{0} must be unique"
msgstr "{0} muss einmalig sein"
-#: frappe/model/document.py:1555
+#: frappe/model/document.py:1554
msgid "{0} must be {1} {2}"
msgstr "{0} muss {1} {2} sein"
@@ -31651,7 +31329,7 @@ msgstr "{0} hat seine Zuordnung entfernt."
msgid "{0} role does not have permission on any doctype"
msgstr "{0} Die Rolle hat keine Berechtigung für einen Doctype"
-#: frappe/model/document.py:1785
+#: frappe/model/document.py:1784
msgid "{0} row #{1}: "
msgstr "{0} Zeile #{1}: "
@@ -31747,11 +31425,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:665 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} existiert bereits"
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:987
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} kann nicht \"{2}\" sein . Es sollte aus \"{3}\" sein."
@@ -31767,7 +31445,7 @@ msgstr "{0} {1} existiert nicht. Bitte ein neues Ziel zum Zusammenführen wähle
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} ist mit den folgenden eingereichten Dokumenten verknüpft: {2}"
-#: frappe/model/document.py:260 frappe/permissions.py:558
+#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
msgstr "{0} {1} nicht gefunden"
@@ -31775,7 +31453,7 @@ msgstr "{0} {1} nicht gefunden"
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:1110
+#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
msgstr "{0}, Zeile {1}"
@@ -31783,7 +31461,7 @@ 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:1115
+#: frappe/model/base_document.py:1120
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"
@@ -31884,7 +31562,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:1279
+#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} vs {2}"
diff --git a/frappe/locale/eo.po b/frappe/locale/eo.po
index 176eeb56af..1e68f69943 100644
--- a/frappe/locale/eo.po
+++ b/frappe/locale/eo.po
@@ -2,14 +2,14 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-08 09:34+0000\n"
-"PO-Revision-Date: 2025-06-11 14:05\n"
+"POT-Creation-Date: 2025-06-22 09:34+0000\n"
+"PO-Revision-Date: 2025-06-22 16:41\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Esperanto\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.13.1\n"
+"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"
@@ -140,7 +140,7 @@ msgstr "crwdns90546:0crwdne90546:0"
msgid "1 Google Calendar Event synced."
msgstr "crwdns90548:0crwdne90548:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:951
+#: frappe/public/js/frappe/views/reports/query_report.js:953
msgid "1 Report"
msgstr "crwdns110780:0crwdne110780:0"
@@ -148,7 +148,7 @@ msgstr "crwdns110780:0crwdne110780:0"
msgid "1 comment"
msgstr "crwdns90550:0crwdne90550:0"
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:711
msgid "1 day ago"
msgstr "crwdns90552:0crwdne90552:0"
@@ -157,17 +157,17 @@ msgid "1 hour"
msgstr "crwdns90554:0crwdne90554:0"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:709
msgid "1 hour ago"
msgstr "crwdns90556:0crwdne90556:0"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:707
msgid "1 minute ago"
msgstr "crwdns90558:0crwdne90558:0"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:715
msgid "1 month ago"
msgstr "crwdns90560:0crwdne90560:0"
@@ -179,37 +179,37 @@ msgstr "crwdns142972:0crwdne142972:0"
msgid "1 record will be exported"
msgstr "crwdns90562:0crwdne90562:0"
-#: frappe/tests/test_utils.py:705
+#: frappe/tests/test_utils.py:706
msgid "1 second ago"
msgstr "crwdns90564:0crwdne90564:0"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:713
msgid "1 week ago"
msgstr "crwdns90566:0crwdne90566:0"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:717
msgid "1 year ago"
msgstr "crwdns90568:0crwdne90568:0"
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:710
msgid "2 hours ago"
msgstr "crwdns90570:0crwdne90570:0"
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:716
msgid "2 months ago"
msgstr "crwdns90572:0crwdne90572:0"
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:714
msgid "2 weeks ago"
msgstr "crwdns90574:0crwdne90574:0"
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:718
msgid "2 years ago"
msgstr "crwdns90576:0crwdne90576:0"
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:708
msgid "3 minutes ago"
msgstr "crwdns90578:0crwdne90578:0"
@@ -225,7 +225,7 @@ msgstr "crwdns90582:0crwdne90582:0"
msgid "5 Records"
msgstr "crwdns90584:0crwdne90584:0"
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:712
msgid "5 days ago"
msgstr "crwdns90586:0crwdne90586:0"
@@ -245,7 +245,7 @@ msgstr "crwdns127918:0crwdne127918:0"
msgid "<="
msgstr "crwdns127920:0crwdne127920:0"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:588
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
msgid "{0} is not a valid URL"
msgstr "crwdns90594:0{0}crwdne90594:0"
@@ -656,10 +656,7 @@ msgid "API"
msgstr "crwdns127984:0crwdne127984:0"
#. Label of the api_access (Section Break) field in DocType 'User'
-#. Label of the api_access_section (Section Break) field in DocType 'S3 Backup
-#. Settings'
#: frappe/core/doctype/user/user.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "API Access"
msgstr "crwdns127986:0crwdne127986:0"
@@ -771,17 +768,6 @@ msgstr "crwdns90720:0{0}crwdne90720:0"
msgid "Access Control"
msgstr "crwdns151410:0crwdne151410:0"
-#. Label of the access_key_id (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key ID"
-msgstr "crwdns128004:0crwdne128004:0"
-
-#. Label of the secret_access_key (Password) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key Secret"
-msgstr "crwdns128006:0crwdne128006:0"
-
#. Name of a DocType
#. Label of a Link in the Users Workspace
#: frappe/core/doctype/access_log/access_log.json
@@ -832,6 +818,10 @@ msgstr "crwdns90744:0crwdne90744:0"
msgid "Accounts User"
msgstr "crwdns90746:0crwdne90746:0"
+#: frappe/public/js/frappe/form/dashboard.js:510
+msgid "Accurate count can not be fetched, click here to view all documents"
+msgstr "crwdns155500:0crwdne155500:0"
+
#. Label of the action (Select) field in DocType 'Amended Document Naming
#. Settings'
#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
@@ -862,7 +852,7 @@ msgstr "crwdns128016:0crwdne128016:0"
msgid "Action Complete"
msgstr "crwdns90762:0crwdne90762:0"
-#: frappe/model/document.py:1872
+#: frappe/model/document.py:1871
msgid "Action Failed"
msgstr "crwdns90764:0crwdne90764:0"
@@ -911,10 +901,10 @@ msgstr "crwdns90774:0{0}crwdnd90774:0{1}crwdnd90774:0{2}crwdnd90774:0{3}crwdne90
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:192
-#: frappe/public/js/frappe/views/reports/query_report.js:205
-#: frappe/public/js/frappe/views/reports/query_report.js:215
-#: frappe/public/js/frappe/views/reports/query_report.js:845
+#: frappe/public/js/frappe/views/reports/query_report.js:190
+#: frappe/public/js/frappe/views/reports/query_report.js:203
+#: frappe/public/js/frappe/views/reports/query_report.js:213
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Actions"
msgstr "crwdns90776:0crwdne90776:0"
@@ -976,8 +966,8 @@ msgstr "crwdns90802:0crwdne90802:0"
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:267
-#: frappe/public/js/frappe/views/reports/query_report.js:295
+#: frappe/public/js/frappe/views/reports/query_report.js:265
+#: frappe/public/js/frappe/views/reports/query_report.js:293
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "crwdns90808:0crwdne90808:0"
@@ -1018,7 +1008,7 @@ msgstr "crwdns128034:0crwdne128034:0"
msgid "Add Card to Dashboard"
msgstr "crwdns142868:0crwdne142868:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:211
+#: frappe/public/js/frappe/views/reports/query_report.js:209
msgid "Add Chart to Dashboard"
msgstr "crwdns90824:0crwdne90824:0"
@@ -1027,10 +1017,10 @@ 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:1769
-#: frappe/public/js/frappe/views/reports/query_report.js:1772
-#: frappe/public/js/frappe/views/reports/report_view.js:349
-#: frappe/public/js/frappe/views/reports/report_view.js:374
+#: frappe/public/js/frappe/views/reports/query_report.js:1771
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/report_view.js:355
+#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
msgstr "crwdns90828:0crwdne90828:0"
@@ -1054,7 +1044,7 @@ msgid "Add Custom Tags"
msgstr "crwdns128038:0crwdne128038:0"
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
-#: frappe/public/js/frappe/widgets/widget_dialog.js:703
+#: frappe/public/js/frappe/widgets/widget_dialog.js:716
msgid "Add Filters"
msgstr "crwdns90838:0crwdne90838:0"
@@ -1089,7 +1079,7 @@ msgstr "crwdns90846:0crwdne90846:0"
msgid "Add Query Parameters"
msgstr "crwdns128042:0crwdne128042:0"
-#: frappe/core/doctype/user/user.py:806
+#: frappe/core/doctype/user/user.py:808
msgid "Add Roles"
msgstr "crwdns90852:0crwdne90852:0"
@@ -1234,7 +1224,7 @@ msgid "Add tab"
msgstr "crwdns142986:0crwdne142986:0"
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:253
+#: frappe/public/js/frappe/views/reports/query_report.js:251
msgid "Add to Dashboard"
msgstr "crwdns90894:0crwdne90894:0"
@@ -1389,11 +1379,11 @@ msgstr "crwdns90948:0crwdne90948:0"
msgid "Administrator"
msgstr "crwdns90950:0crwdne90950:0"
-#: frappe/core/doctype/user/user.py:1211
+#: frappe/core/doctype/user/user.py:1213
msgid "Administrator Logged In"
msgstr "crwdns90952:0crwdne90952:0"
-#: frappe/core/doctype/user/user.py:1205
+#: frappe/core/doctype/user/user.py:1207
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "crwdns90954:0{0}crwdnd90954:0{1}crwdnd90954:0{2}crwdne90954:0"
@@ -1626,12 +1616,6 @@ msgstr "crwdns151412:0crwdne151412:0"
msgid "Allow Consecutive Login Attempts "
msgstr "crwdns128114:0crwdne128114:0"
-#. Label of the allow_dropbox_access (Button) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Allow Dropbox Access"
-msgstr "crwdns128118:0crwdne128118:0"
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
msgid "Allow Google Calendar Access"
msgstr "crwdns91054:0crwdne91054:0"
@@ -1640,10 +1624,6 @@ msgstr "crwdns91054:0crwdne91054:0"
msgid "Allow Google Contacts Access"
msgstr "crwdns91056:0crwdne91056:0"
-#: frappe/integrations/doctype/google_drive/google_drive.py:52
-msgid "Allow Google Drive Access"
-msgstr "crwdns91058:0crwdne91058:0"
-
#. Label of the allow_guest (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
@@ -1897,7 +1877,7 @@ msgstr "crwdns151416:0crwdne151416:0"
msgid "Allowing DocType, DocType. Be careful!"
msgstr "crwdns91150:0crwdne91150:0"
-#: frappe/core/doctype/user/user.py:1021
+#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr "crwdns91152:0crwdne91152:0"
@@ -1905,11 +1885,11 @@ msgstr "crwdns91152:0crwdne91152:0"
msgid "Already in the following Users ToDo list:{0}"
msgstr "crwdns91154:0{0}crwdne91154:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:896
+#: frappe/public/js/frappe/views/reports/report_view.js:902
msgid "Also adding the dependent currency field {0}"
msgstr "crwdns91156:0{0}crwdne91156:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:909
+#: frappe/public/js/frappe/views/reports/report_view.js:915
msgid "Also adding the status dependency field {0}"
msgstr "crwdns91158:0{0}crwdne91158:0"
@@ -1988,7 +1968,7 @@ msgstr "crwdns91186:0crwdne91186:0"
msgid "Amendment Naming Override"
msgstr "crwdns128208:0crwdne128208:0"
-#: frappe/model/document.py:550
+#: frappe/model/document.py:549
msgid "Amendment Not Allowed"
msgstr "crwdns151842:0crwdne151842:0"
@@ -2077,15 +2057,6 @@ msgstr "crwdns110802:0crwdne110802:0"
msgid "App"
msgstr "crwdns128226:0crwdne128226:0"
-#. Label of the app_access_key (Data) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Access Key"
-msgstr "crwdns128228:0crwdne128228:0"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:22
-msgid "App Access Key and/or Secret Key are not present."
-msgstr "crwdns91220:0crwdne91220:0"
-
#. Label of the client_id (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client ID"
@@ -2119,16 +2090,11 @@ msgstr "crwdns110804:0crwdne110804:0"
msgid "App Name"
msgstr "crwdns91230:0crwdne91230:0"
-#. Label of the app_secret_key (Password) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Secret Key"
-msgstr "crwdns128236:0crwdne128236:0"
-
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr "crwdns91240:0{0}crwdne91240:0"
-#: frappe/__init__.py:1462
+#: frappe/__init__.py:1465
msgid "App {0} is not installed"
msgstr "crwdns91242:0{0}crwdne91242:0"
@@ -2278,7 +2244,7 @@ msgstr "crwdns91306:0crwdne91306:0"
msgid "Are you sure you want to clear the assignments?"
msgstr "crwdns104470:0crwdne104470:0"
-#: frappe/public/js/frappe/form/grid.js:290
+#: frappe/public/js/frappe/form/grid.js:294
msgid "Are you sure you want to delete all rows?"
msgstr "crwdns91308:0crwdne91308:0"
@@ -2306,7 +2272,7 @@ msgstr "crwdns142994:0crwdne142994:0"
msgid "Are you sure you want to discard the changes?"
msgstr "crwdns91314:0crwdne91314:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:965
+#: frappe/public/js/frappe/views/reports/query_report.js:967
msgid "Are you sure you want to generate a new report?"
msgstr "crwdns110808:0crwdne110808:0"
@@ -2432,7 +2398,7 @@ msgstr "crwdns91364:0crwdne91364:0"
msgid "Assigned By Full Name"
msgstr "crwdns128284:0crwdne128284:0"
-#: frappe/model/meta.py:60
+#: 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
@@ -2702,13 +2668,11 @@ msgstr "crwdns128320:0crwdne128320:0"
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
#. Contacts'
-#. Label of the authorization_code (Data) field in DocType 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
@@ -2746,12 +2710,6 @@ msgstr "crwdns128330:0crwdne128330:0"
msgid "Authorize Google Contacts Access"
msgstr "crwdns128332:0crwdne128332:0"
-#. Label of the authorize_google_drive_access (Button) field in DocType 'Google
-#. Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Authorize Google Drive Access"
-msgstr "crwdns128334:0crwdne128334:0"
-
#. 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"
@@ -2898,11 +2856,11 @@ msgstr "crwdns128362:0crwdne128362:0"
msgid "Automatic"
msgstr "crwdns91588:0crwdne91588:0"
-#: frappe/email/doctype/email_account/email_account.py:774
+#: frappe/email/doctype/email_account/email_account.py:772
msgid "Automatic Linking can be activated only for one Email Account."
msgstr "crwdns91592:0crwdne91592:0"
-#: frappe/email/doctype/email_account/email_account.py:768
+#: frappe/email/doctype/email_account/email_account.py:766
msgid "Automatic Linking can be activated only if Incoming is enabled."
msgstr "crwdns91594:0crwdne91594:0"
@@ -3116,66 +3074,14 @@ msgstr "crwdns143000:0crwdne143000:0"
msgid "Background Workers"
msgstr "crwdns128402:0crwdne128402:0"
-#: frappe/integrations/doctype/google_drive/google_drive.py:170
-msgid "Backing up Data."
-msgstr "crwdns104476:0crwdne104476:0"
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:32
-msgid "Backing up to Google Drive."
-msgstr "crwdns91674:0crwdne91674:0"
-
-#. Label of a Card Break in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Backup"
-msgstr "crwdns91676:0crwdne91676:0"
-
-#. Label of the backup_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Details"
-msgstr "crwdns128404:0crwdne128404:0"
-
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
msgstr "crwdns91680:0crwdne91680:0"
-#. Label of the backup_files (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Files"
-msgstr "crwdns128406:0crwdne128406:0"
-
-#. Label of the backup_folder_id (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder ID"
-msgstr "crwdns128408:0crwdne128408:0"
-
-#. Label of the backup_folder_name (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder Name"
-msgstr "crwdns128410:0crwdne128410:0"
-
-#. Label of the backup_frequency (Select) field in DocType 'Dropbox Settings'
-#. Label of the frequency (Select) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Frequency"
-msgstr "crwdns128412:0crwdne128412:0"
-
-#. Label of the backup_path (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Path"
-msgstr "crwdns154481:0crwdne154481:0"
-
#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
msgstr "crwdns91692:0crwdne91692:0"
-#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup public and private files along with the database."
-msgstr "crwdns128414:0crwdne128414:0"
-
#. 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'
@@ -3189,7 +3095,7 @@ msgstr "crwdns128416:0crwdne128416:0"
msgid "Backups (MB)"
msgstr "crwdns128418:0crwdne128418:0"
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:65
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
msgid "Bad Cron Expression"
msgstr "crwdns111388:0crwdne111388:0"
@@ -3586,15 +3492,6 @@ msgstr "crwdns91866:0crwdne91866:0"
msgid "Brute Force Security"
msgstr "crwdns128520:0crwdne128520:0"
-#. Label of the bucket (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Bucket Name"
-msgstr "crwdns128522:0crwdne128522:0"
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:71
-msgid "Bucket {0} not found."
-msgstr "crwdns91872:0{0}crwdne91872:0"
-
#. 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"
@@ -3631,7 +3528,7 @@ msgstr "crwdns91880:0crwdne91880:0"
msgid "Bulk Edit"
msgstr "crwdns91882:0crwdne91882:0"
-#: frappe/public/js/frappe/form/grid.js:1184
+#: frappe/public/js/frappe/form/grid.js:1188
msgid "Bulk Edit {0}"
msgstr "crwdns91884:0{0}crwdne91884:0"
@@ -3706,12 +3603,6 @@ msgstr "crwdns128536:0crwdne128536:0"
msgid "By default the title is used as meta title, adding a value here will override it."
msgstr "crwdns91914:0crwdne91914:0"
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "By default, emails are only sent for failed backups."
-msgstr "crwdns128538:0crwdne128538:0"
-
#. 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
@@ -4022,7 +3913,7 @@ msgstr "crwdns92056:0crwdne92056:0"
msgid "Cannot Remove"
msgstr "crwdns92058:0crwdne92058:0"
-#: frappe/model/base_document.py:1156
+#: frappe/model/base_document.py:1161
msgid "Cannot Update After Submit"
msgstr "crwdns92060:0crwdne92060:0"
@@ -4042,11 +3933,11 @@ msgstr "crwdns92066:0{0}crwdne92066:0"
msgid "Cannot cancel {0}."
msgstr "crwdns92068:0{0}crwdne92068:0"
-#: frappe/model/document.py:1012
+#: frappe/model/document.py:1011
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr "crwdns92070:0crwdne92070:0"
-#: frappe/model/document.py:1026
+#: frappe/model/document.py:1025
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "crwdns92072:0crwdne92072:0"
@@ -4129,7 +4020,7 @@ msgstr "crwdns92110:0crwdne92110:0"
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "crwdns92112:0crwdne92112:0"
-#: frappe/model/document.py:1032
+#: frappe/model/document.py:1031
msgid "Cannot edit cancelled document"
msgstr "crwdns92114:0crwdne92114:0"
@@ -4162,11 +4053,11 @@ 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:1128
+#: frappe/public/js/frappe/form/grid.js:1132
msgid "Cannot import table with more than 5000 rows."
msgstr "crwdns154588:0crwdne154588:0"
-#: frappe/model/document.py:1100
+#: frappe/model/document.py:1099
msgid "Cannot link cancelled document: {0}"
msgstr "crwdns92128:0{0}crwdne92128:0"
@@ -4182,7 +4073,7 @@ msgstr "crwdns92132:0{0}crwdne92132:0"
msgid "Cannot move row"
msgstr "crwdns92134:0crwdne92134:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:921
+#: frappe/public/js/frappe/views/reports/report_view.js:927
msgid "Cannot remove ID field"
msgstr "crwdns92136:0crwdne92136:0"
@@ -4207,11 +4098,11 @@ msgstr "crwdns92142:0{0}crwdne92142:0"
msgid "Cannot update {0}"
msgstr "crwdns92146:0{0}crwdne92146:0"
-#: frappe/model/db_query.py:1125
+#: frappe/model/db_query.py:1126
msgid "Cannot use sub-query in order by"
msgstr "crwdns92148:0crwdne92148:0"
-#: frappe/model/db_query.py:1144
+#: frappe/model/db_query.py:1145
msgid "Cannot use {0} in order/group by"
msgstr "crwdns92150:0{0}crwdne92150:0"
@@ -4237,7 +4128,7 @@ msgstr "crwdns128586:0crwdne128586:0"
msgid "Card Break"
msgstr "crwdns128588:0crwdne128588:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:261
msgid "Card Label"
msgstr "crwdns92162:0crwdne92162:0"
@@ -4379,7 +4270,7 @@ msgstr "crwdns128610:0crwdne128610:0"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:290
+#: frappe/public/js/frappe/views/reports/query_report.js:288
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "crwdns128612:0crwdne128612:0"
@@ -4399,7 +4290,7 @@ msgstr "crwdns128616:0crwdne128616:0"
#. 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:499
+#: frappe/public/js/frappe/views/reports/report_view.js:505
msgid "Chart Type"
msgstr "crwdns92222:0crwdne92222:0"
@@ -4513,7 +4404,7 @@ msgstr "crwdns92274:0{0}crwdnd92274:0{1}crwdne92274:0"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "crwdns92276:0crwdne92276:0"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:638
+#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "crwdns92280:0crwdne92280:0"
@@ -4606,10 +4497,6 @@ msgstr "crwdns92312:0crwdne92312:0"
msgid "Click here to verify"
msgstr "crwdns92314:0crwdne92314:0"
-#: frappe/integrations/doctype/google_drive/google_drive.js:47
-msgid "Click on Authorize Google Drive Access to authorize Google Drive Access."
-msgstr "crwdns92316:0crwdne92316:0"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "crwdns143008:0crwdne143008:0"
@@ -4636,7 +4523,6 @@ msgstr "crwdns92326:0crwdne92326:0"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
-#: frappe/integrations/doctype/google_drive/google_drive.py:53
#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
msgstr "crwdns92328:0{0}crwdne92328:0"
@@ -4810,7 +4696,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "crwdns92402:0crwdne92402:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "crwdns92404:0crwdne92404:0"
@@ -4865,9 +4751,9 @@ 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:1229
-#: frappe/public/js/frappe/widgets/widget_dialog.js:533
-#: frappe/public/js/frappe/widgets/widget_dialog.js:681
+#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: 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
@@ -5008,7 +4894,7 @@ msgstr "crwdns128692:0crwdne128692:0"
msgid "Comment publicity can only be updated by the original author or a System Manager."
msgstr "crwdns154728:0crwdne154728:0"
-#: frappe/model/meta.py:59 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/model/meta.js:209
#: frappe/public/js/frappe/model/model.js:135
#: frappe/website/doctype/web_form/templates/web_form.html:122
@@ -5115,7 +5001,7 @@ msgstr "crwdns92554:0crwdne92554:0"
msgid "Complete By"
msgstr "crwdns92558:0crwdne92558:0"
-#: frappe/core/doctype/user/user.py:477
+#: frappe/core/doctype/user/user.py:478
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "crwdns92560:0crwdne92560:0"
@@ -5211,7 +5097,7 @@ msgstr "crwdns128718:0crwdne128718:0"
msgid "Configuration"
msgstr "crwdns128720:0crwdne128720:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:481
+#: frappe/public/js/frappe/views/reports/report_view.js:487
msgid "Configure Chart"
msgstr "crwdns92606:0crwdne92606:0"
@@ -5548,7 +5434,7 @@ msgstr "crwdns127608:0crwdne127608:0"
msgid "Could not connect to outgoing email server"
msgstr "crwdns92742:0crwdne92742:0"
-#: frappe/model/document.py:1096
+#: frappe/model/document.py:1095
msgid "Could not find {0}"
msgstr "crwdns92744:0{0}crwdne92744:0"
@@ -5577,7 +5463,7 @@ msgstr "crwdns92748:0crwdne92748:0"
msgid "Count"
msgstr "crwdns92750:0crwdne92750:0"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:527
+#: frappe/public/js/frappe/widgets/widget_dialog.js:540
msgid "Count Customizations"
msgstr "crwdns92756:0crwdne92756:0"
@@ -5585,10 +5471,14 @@ msgstr "crwdns92756:0crwdne92756:0"
#. 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:512
+#: frappe/public/js/frappe/widgets/widget_dialog.js:525
msgid "Count Filter"
msgstr "crwdns92758:0crwdne92758:0"
+#: frappe/public/js/frappe/form/dashboard.js:509
+msgid "Count of linked documents"
+msgstr "crwdns155502:0crwdne155502:0"
+
#. Label of the counter (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Counter"
@@ -5639,7 +5529,7 @@ msgstr "crwdns92780:0crwdne92780:0"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1261
+#: frappe/public/js/frappe/views/reports/query_report.js:1263
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5653,13 +5543,13 @@ msgstr "crwdns92790:0crwdne92790:0"
msgid "Create Address"
msgstr "crwdns148724:0crwdne148724:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:188
-#: frappe/public/js/frappe/views/reports/query_report.js:233
+#: frappe/public/js/frappe/views/reports/query_report.js:186
+#: frappe/public/js/frappe/views/reports/query_report.js:231
msgid "Create Card"
msgstr "crwdns92794:0crwdne92794:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:286
-#: frappe/public/js/frappe/views/reports/query_report.js:1188
+#: frappe/public/js/frappe/views/reports/query_report.js:284
+#: frappe/public/js/frappe/views/reports/query_report.js:1190
msgid "Create Chart"
msgstr "crwdns92796:0crwdne92796:0"
@@ -5770,7 +5660,7 @@ msgstr "crwdns110870:0crwdne110870:0"
msgid "Created At"
msgstr "crwdns128772:0crwdne128772:0"
-#: frappe/model/meta.py:56
+#: 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
@@ -5782,14 +5672,14 @@ msgid "Created Custom Field {0} in {1}"
msgstr "crwdns92844:0{0}crwdnd92844:0{1}crwdne92844:0"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241
-#: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:51
+#: 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 "crwdns92846:0crwdne92846:0"
-#: frappe/public/js/frappe/desk.js:515
+#: frappe/public/js/frappe/desk.js:523
#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
msgstr "crwdns92848:0{0}crwdne92848:0"
@@ -5812,7 +5702,7 @@ msgstr "crwdns128776:0crwdne128776:0"
msgid "Cron Format"
msgstr "crwdns128778:0crwdne128778:0"
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:59
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
msgstr "crwdns111392:0crwdne111392:0"
@@ -6209,11 +6099,6 @@ msgstr "crwdns93050:0crwdne93050:0"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -6222,9 +6107,6 @@ msgstr "crwdns93050:0crwdne93050:0"
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:398
#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
@@ -6778,7 +6660,7 @@ msgstr "crwdns128908:0crwdne128908:0"
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/toolbar.js:461
-#: frappe/public/js/frappe/views/reports/report_view.js:1734
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
@@ -6821,7 +6703,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "crwdns143026:0crwdne143026:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:932
+#: frappe/public/js/frappe/views/reports/query_report.js:934
msgid "Delete and Generate New"
msgstr "crwdns110882:0crwdne110882:0"
@@ -6830,7 +6712,7 @@ msgctxt "Button text"
msgid "Delete column"
msgstr "crwdns143028:0crwdne143028:0"
-#: frappe/public/js/frappe/form/footer/form_timeline.js:738
+#: frappe/public/js/frappe/form/footer/form_timeline.js:741
msgid "Delete comment?"
msgstr "crwdns93354:0crwdne93354:0"
@@ -6916,7 +6798,7 @@ msgstr "crwdns93378:0{0}crwdne93378:0"
msgid "Deleting {0} records..."
msgstr "crwdns93380:0{0}crwdne93380:0"
-#: frappe/public/js/frappe/model/model.js:741
+#: frappe/public/js/frappe/model/model.js:692
msgid "Deleting {0}..."
msgstr "crwdns93382:0{0}crwdne93382:0"
@@ -6962,7 +6844,7 @@ msgstr "crwdns128922:0crwdne128922:0"
#. 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:310
+#: frappe/public/js/frappe/widgets/widget_dialog.js:323
#: frappe/www/attribution.html:29
msgid "Dependencies"
msgstr "crwdns112688:0crwdne112688:0"
@@ -7076,6 +6958,7 @@ msgstr "crwdns128936:0crwdne128936:0"
#: 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
@@ -7373,14 +7256,10 @@ msgstr "crwdns128980:0crwdne128980: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:1189
+#: frappe/public/js/frappe/form/grid.js:1193
msgid "Do not edit headers which are preset in the template"
msgstr "crwdns93560:0crwdne93560:0"
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:69
-msgid "Do not have permission to access bucket {0}."
-msgstr "crwdns93562:0{0}crwdne93562:0"
-
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr "crwdns93564:0crwdne93564:0"
@@ -7513,7 +7392,7 @@ msgstr "crwdns93632:0crwdne93632:0"
#. 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:466
+#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
msgstr "crwdns128992:0crwdne128992:0"
@@ -7573,7 +7452,7 @@ msgstr "crwdns148296:0{0}crwdne148296:0"
#. 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:669
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
msgid "Doctype"
msgstr "crwdns93662:0crwdne93662:0"
@@ -7691,7 +7570,7 @@ msgstr "crwdns93722:0crwdne93722:0"
msgid "Document Naming Settings"
msgstr "crwdns93724:0crwdne93724:0"
-#: frappe/model/document.py:477
+#: frappe/model/document.py:476
msgid "Document Queued"
msgstr "crwdns93726:0crwdne93726:0"
@@ -7744,7 +7623,7 @@ msgstr "crwdns93740:0crwdne93740:0"
msgid "Document States"
msgstr "crwdns129010:0crwdne129010:0"
-#: frappe/model/meta.py:52 frappe/public/js/frappe/model/meta.js:202
+#: 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 "crwdns93748:0crwdne93748:0"
@@ -7815,11 +7694,11 @@ msgstr "crwdns93754:0crwdne93754:0"
msgid "Document Type and Function are required to create a number card"
msgstr "crwdns93796:0crwdne93796:0"
-#: frappe/permissions.py:148
+#: frappe/permissions.py:149
msgid "Document Type is not importable"
msgstr "crwdns93798:0crwdne93798:0"
-#: frappe/permissions.py:144
+#: frappe/permissions.py:145
msgid "Document Type is not submittable"
msgstr "crwdns93800:0crwdne93800:0"
@@ -7848,7 +7727,7 @@ msgid "Document Types and Permissions"
msgstr "crwdns129022:0crwdne129022:0"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1943
+#: frappe/model/document.py:1942
msgid "Document Unlocked"
msgstr "crwdns93812:0crwdne93812:0"
@@ -8039,7 +7918,7 @@ msgstr "crwdns93890:0crwdne93890:0"
msgid "Download PDF"
msgstr "crwdns111456:0crwdne111456:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:835
+#: frappe/public/js/frappe/views/reports/query_report.js:830
msgid "Download Report"
msgstr "crwdns93892:0crwdne93892:0"
@@ -8050,7 +7929,7 @@ msgstr "crwdns129042:0crwdne129042:0"
#: 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:57
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
msgid "Download Your Data"
msgstr "crwdns93896:0crwdne93896:0"
@@ -8106,29 +7985,6 @@ msgstr "crwdns143050:0crwdne143050:0"
msgid "Drop files here"
msgstr "crwdns143052:0crwdne143052:0"
-#. Label of the dropbox_access_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Access Token"
-msgstr "crwdns129044:0crwdne129044:0"
-
-#. Label of the dropbox_refresh_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Refresh Token"
-msgstr "crwdns129046:0crwdne129046:0"
-
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Dropbox Settings"
-msgstr "crwdns93906:0crwdne93906:0"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:347
-msgid "Dropbox Setup"
-msgstr "crwdns93910:0crwdne93910:0"
-
#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
@@ -8158,7 +8014,7 @@ msgstr "crwdns93920:0crwdne93920:0"
msgid "Duplicate Filter Name"
msgstr "crwdns93922:0crwdne93922:0"
-#: frappe/model/base_document.py:666 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "crwdns93924:0crwdne93924:0"
@@ -8257,13 +8113,13 @@ msgstr "crwdns110894:0crwdne110894:0"
#: 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:668
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:669
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:883
-#: frappe/public/js/frappe/views/reports/query_report.js:1722
+#: frappe/public/js/frappe/views/reports/query_report.js:878
+#: frappe/public/js/frappe/views/reports/query_report.js:1724
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8426,7 +8282,7 @@ msgstr "crwdns110918:0crwdne110918:0"
msgid "Edit your workflow visually using the Workflow Builder."
msgstr "crwdns94016:0crwdne94016:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:672
+#: frappe/public/js/frappe/views/reports/report_view.js:678
#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
msgstr "crwdns94018:0{0}crwdne94018:0"
@@ -8527,7 +8383,7 @@ msgstr "crwdns94072:0crwdne94072:0"
msgid "Email Account Name"
msgstr "crwdns129072:0crwdne129072:0"
-#: frappe/core/doctype/user/user.py:736
+#: frappe/core/doctype/user/user.py:738
msgid "Email Account added multiple times"
msgstr "crwdns94076:0crwdne94076:0"
@@ -8535,7 +8391,7 @@ msgstr "crwdns94076:0crwdne94076:0"
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
msgstr "crwdns94078:0crwdne94078:0"
-#: frappe/email/doctype/email_account/email_account.py:578
+#: frappe/email/doctype/email_account/email_account.py:576
msgid "Email Account {0} Disabled"
msgstr "crwdns155328:0{0}crwdne155328:0"
@@ -8761,7 +8617,7 @@ msgstr "crwdns129106:0crwdne129106:0"
msgid "Emails Pulled"
msgstr "crwdns148300:0crwdne148300:0"
-#: frappe/email/doctype/email_account/email_account.py:936
+#: frappe/email/doctype/email_account/email_account.py:934
msgid "Emails are already being pulled from this account."
msgstr "crwdns148302:0crwdne148302:0"
@@ -8784,11 +8640,9 @@ msgstr "crwdns143066:0crwdne143066:0"
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
-#. Label of the enable (Check) field in DocType 'Google Drive'
#. 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_drive/google_drive.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
msgstr "crwdns129110:0crwdne129110:0"
@@ -8808,11 +8662,6 @@ msgstr "crwdns94192:0{0}crwdne94192:0"
msgid "Enable Auto Reply"
msgstr "crwdns129112:0crwdne129112:0"
-#. Label of the enabled (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Enable Automatic Backup"
-msgstr "crwdns129114:0crwdne129114:0"
-
#. Label of the enable_automatic_linking (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -8971,7 +8820,6 @@ msgstr "crwdns129152:0crwdne129152:0"
#. 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 'Dropbox Settings'
#. 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'
@@ -8982,7 +8830,6 @@ msgstr "crwdns129152:0crwdne129152:0"
#: 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/dropbox_settings/dropbox_settings.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/public/js/frappe/model/indicator.js:106
@@ -8995,7 +8842,7 @@ msgstr "crwdns94262:0crwdne94262:0"
msgid "Enabled Scheduler"
msgstr "crwdns94290:0crwdne94290:0"
-#: frappe/email/doctype/email_account/email_account.py:1012
+#: frappe/email/doctype/email_account/email_account.py:1010
msgid "Enabled email inbox for user {0}"
msgstr "crwdns94292:0{0}crwdne94292:0"
@@ -9076,11 +8923,6 @@ msgstr "crwdns94322:0crwdne94322:0"
msgid "Ended At"
msgstr "crwdns129164:0crwdne129164:0"
-#. Label of the endpoint_url (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Endpoint URL"
-msgstr "crwdns129166:0crwdne129166:0"
-
#. Label of the sb_endpoints_section (Section Break) field in DocType
#. 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -9259,7 +9101,7 @@ msgstr "crwdns94424:0crwdne94424:0"
msgid "Error in print format on line {0}: {1}"
msgstr "crwdns94426:0{0}crwdnd94426:0{1}crwdne94426:0"
-#: frappe/email/doctype/email_account/email_account.py:672
+#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "crwdns94428:0{0}crwdne94428:0"
@@ -9267,15 +9109,15 @@ msgstr "crwdns94428:0{0}crwdne94428:0"
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr "crwdns94430:0{0}crwdne94430:0"
-#: frappe/model/base_document.py:806
+#: frappe/model/base_document.py:803
msgid "Error: Data missing in table {0}"
msgstr "crwdns149060:0{0}crwdne149060:0"
-#: frappe/model/base_document.py:816
+#: frappe/model/base_document.py:813
msgid "Error: Value missing for {0}: {1}"
msgstr "crwdns94434:0{0}crwdnd94434:0{1}crwdne94434:0"
-#: frappe/model/base_document.py:810
+#: frappe/model/base_document.py:807
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "crwdns149064:0{0}crwdnd149064:0#{1}crwdnd149064:0{2}crwdne149064:0"
@@ -9424,7 +9266,7 @@ msgstr "crwdns155330:0crwdne155330:0"
msgid "Executing..."
msgstr "crwdns94496:0crwdne94496:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2069
+#: frappe/public/js/frappe/views/reports/query_report.js:2071
msgid "Execution Time: {0} sec"
msgstr "crwdns94498:0{0}crwdne94498:0"
@@ -9450,7 +9292,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "crwdns94504:0crwdne94504:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "crwdns94506:0crwdne94506:0"
@@ -9507,8 +9349,8 @@ 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:1757
-#: frappe/public/js/frappe/views/reports/report_view.js:1621
+#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "crwdns94526:0crwdne94526:0"
@@ -9559,11 +9401,11 @@ msgstr "crwdns94552:0{0}crwdne94552:0"
msgid "Export Type"
msgstr "crwdns94554:0crwdne94554:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1632
+#: frappe/public/js/frappe/views/reports/report_view.js:1638
msgid "Export all matching rows?"
msgstr "crwdns127634:0crwdne127634:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1642
+#: frappe/public/js/frappe/views/reports/report_view.js:1648
msgid "Export all {0} rows?"
msgstr "crwdns127636:0{0}crwdne127636:0"
@@ -9871,8 +9713,8 @@ msgstr "crwdns94660:0crwdne94660:0"
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:237
-#: frappe/public/js/frappe/views/reports/query_report.js:1816
+#: frappe/public/js/frappe/views/reports/query_report.js:235
+#: frappe/public/js/frappe/views/reports/query_report.js:1818
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9947,7 +9789,7 @@ msgstr "crwdns94702:0{0}crwdne94702:0"
msgid "Field {0} does not exist on {1}"
msgstr "crwdns94704:0{0}crwdnd94704:0{1}crwdne94704:0"
-#: frappe/desk/form/meta.py:208
+#: frappe/desk/form/meta.py:184
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr "crwdns94706:0{0}crwdnd94706:0{1}crwdne94706:0"
@@ -10050,7 +9892,7 @@ msgstr "crwdns129288:0crwdne129288:0"
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr "crwdns94760:0crwdne94760:0"
-#: frappe/model/db_query.py:144
+#: frappe/model/db_query.py:146
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "crwdns112694:0crwdne112694:0"
@@ -10099,13 +9941,6 @@ msgstr "crwdns143076:0{0}crwdne143076:0"
msgid "File '{0}' not found"
msgstr "crwdns94786:0{0}crwdne94786:0"
-#. Label of the file_backup (Check) field in DocType 'Dropbox Settings'
-#. Label of the file_backup (Check) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "File Backup"
-msgstr "crwdns129294:0crwdne129294:0"
-
#. Label of the private_file_section (Section Break) field in DocType 'Access
#. Log'
#: frappe/core/doctype/access_log/access_log.json
@@ -10306,7 +10141,7 @@ msgstr "crwdns129328:0crwdne129328:0"
msgid "Filters {0}"
msgstr "crwdns127654:0{0}crwdne127654:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1421
+#: frappe/public/js/frappe/views/reports/report_view.js:1427
msgid "Filters:"
msgstr "crwdns110942:0crwdne110942:0"
@@ -10453,7 +10288,7 @@ msgstr "crwdns94952:0crwdne94952:0"
msgid "Following document {0}"
msgstr "crwdns148304:0{0}crwdne148304:0"
-#: frappe/website/doctype/web_form/web_form.py:111
+#: frappe/website/doctype/web_form/web_form.py:108
msgid "Following fields are missing:"
msgstr "crwdns94954:0crwdne94954:0"
@@ -10461,7 +10296,7 @@ msgstr "crwdns94954:0crwdne94954:0"
msgid "Following fields have invalid values:"
msgstr "crwdns94956:0crwdne94956:0"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:345
+#: frappe/public/js/frappe/widgets/widget_dialog.js:358
msgid "Following fields have missing values"
msgstr "crwdns94958:0crwdne94958:0"
@@ -10604,7 +10439,7 @@ msgstr "crwdns149122:0crwdne149122:0"
msgid "For Document Type"
msgstr "crwdns95016:0crwdne95016:0"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:553
+#: frappe/public/js/frappe/widgets/widget_dialog.js:566
msgid "For Example: {} Open"
msgstr "crwdns95018:0crwdne95018:0"
@@ -10633,7 +10468,7 @@ msgstr "crwdns95024:0crwdne95024:0"
msgid "For Value"
msgstr "crwdns129392:0crwdne129392:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/query_report.js:2068
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "crwdns95034:0crwdne95034:0"
@@ -10786,7 +10621,7 @@ msgstr "crwdns129418:0crwdne129418:0"
#. 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:552
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
msgid "Format"
msgstr "crwdns95102:0crwdne95102:0"
@@ -10818,7 +10653,7 @@ msgstr "crwdns129426:0crwdne129426:0"
#. 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:149
+#: frappe/www/login.py:153
msgid "Frappe"
msgstr "crwdns95118:0crwdne95118:0"
@@ -10835,7 +10670,7 @@ msgstr "crwdns95124:0crwdne95124:0"
msgid "Frappe Mail"
msgstr "crwdns142880:0crwdne142880:0"
-#: frappe/email/doctype/email_account/email_account.py:549
+#: frappe/email/doctype/email_account/email_account.py:547
msgid "Frappe Mail OAuth Error"
msgstr "crwdns142882:0crwdne142882:0"
@@ -10863,13 +10698,11 @@ msgstr "crwdns143080:0crwdne143080:0"
#. 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'
-#. Label of the frequency (Select) field in DocType 'Google Drive'
#: 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/integrations/doctype/google_drive/google_drive.json
#: frappe/public/js/frappe/utils/common.js:395
msgid "Frequency"
msgstr "crwdns95128:0crwdne95128:0"
@@ -10915,7 +10748,7 @@ msgstr "crwdns95156:0crwdne95156:0"
msgid "From Date Field"
msgstr "crwdns129430:0crwdne129430:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
+#: frappe/public/js/frappe/views/reports/query_report.js:1779
msgid "From Document Type"
msgstr "crwdns95162:0crwdne95162:0"
@@ -10966,16 +10799,16 @@ msgstr "crwdns129438:0crwdne129438:0"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:247
-#: frappe/public/js/frappe/widgets/widget_dialog.js:686
+#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "crwdns95188:0crwdne95188:0"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:693
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
msgstr "crwdns95192:0crwdne95192:0"
-#: frappe/__init__.py:670
+#: frappe/__init__.py:677
msgid "Function {0} is not whitelisted."
msgstr "crwdns95194:0{0}crwdne95194:0"
@@ -11040,7 +10873,7 @@ msgstr "crwdns111514:0crwdne111514:0"
msgid "Generate Keys"
msgstr "crwdns129448:0crwdne129448:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:877
+#: frappe/public/js/frappe/views/reports/query_report.js:872
msgid "Generate New Report"
msgstr "crwdns95224:0crwdne95224:0"
@@ -11328,32 +11161,12 @@ msgstr "crwdns95342:0{0}crwdnd95342:0{1}crwdne95342:0"
msgid "Google Contacts Id"
msgstr "crwdns129480:0crwdne129480:0"
-#. Name of a DocType
-#. Label of the google_drive_section (Section Break) field in DocType 'Google
-#. Drive'
#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/google_drive/google_drive.json
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr "crwdns95346:0crwdne95346:0"
-#: frappe/integrations/doctype/google_drive/google_drive.py:117
-msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}"
-msgstr "crwdns95350:0{0}crwdne95350:0"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:132
-msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}"
-msgstr "crwdns95352:0{0}crwdne95352:0"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:193
-msgid "Google Drive - Could not locate - {0}"
-msgstr "crwdns95354:0{0}crwdne95354:0"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:204
-msgid "Google Drive Backup Successful."
-msgstr "crwdns95356:0crwdne95356:0"
-
#. Label of the section_break_7 (Section Break) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -11683,6 +11496,10 @@ msgstr "crwdns110960:0crwdne110960:0"
msgid "Headers"
msgstr "crwdns129540:0crwdne129540:0"
+#: frappe/email/email_body.py:322
+msgid "Headers must be a dictionary"
+msgstr "crwdns155504:0crwdne155504:0"
+
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
@@ -12006,17 +11823,17 @@ msgstr "crwdns129592:0crwdne129592:0"
msgid "Home Settings"
msgstr "crwdns129594:0crwdne129594:0"
-#: frappe/core/doctype/file/test_file.py:330
-#: frappe/core/doctype/file/test_file.py:332
-#: frappe/core/doctype/file/test_file.py:396
+#: 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 "crwdns95654:0crwdne95654:0"
-#: frappe/core/doctype/file/test_file.py:385
+#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
msgstr "crwdns95656:0crwdne95656:0"
-#: frappe/core/doctype/file/test_file.py:341
+#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
msgstr "crwdns95658:0crwdne95658:0"
@@ -12061,7 +11878,7 @@ msgstr "crwdns148656:0crwdne148656:0"
#: frappe/core/doctype/data_import/importer.py:1177
#: frappe/core/doctype/data_import/importer.py:1242
#: frappe/core/doctype/data_import/importer.py:1245
-#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:50
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
#: frappe/public/js/frappe/list/list_settings.js:337
@@ -12073,7 +11890,7 @@ msgid "ID"
msgstr "crwdns95674:0crwdne95674:0"
#: frappe/desk/reportview.py:491
-#: frappe/public/js/frappe/views/reports/report_view.js:978
+#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
msgstr "crwdns95676:0crwdne95676:0"
@@ -12257,12 +12074,6 @@ msgstr "crwdns129644:0crwdne129644:0"
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
msgstr "crwdns129646:0crwdne129646:0"
-#. Description of the 'Backup Path' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "If it's empty, it will backup to the root of the bucket."
-msgstr "crwdns154483:0crwdne154483:0"
-
#. 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"
@@ -12393,16 +12204,12 @@ msgstr "crwdns129678:0crwdne129678:0"
msgid "Ignored Apps"
msgstr "crwdns129680:0crwdne129680:0"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:348
-msgid "Illegal Access Token. Please try again"
-msgstr "crwdns95816:0crwdne95816:0"
-
#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
msgstr "crwdns95818:0{0}crwdne95818:0"
-#: frappe/model/db_query.py:451 frappe/model/db_query.py:454
-#: frappe/model/db_query.py:1128
+#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
+#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
msgstr "crwdns95820:0crwdne95820:0"
@@ -12751,11 +12558,11 @@ msgstr "crwdns95976:0crwdne95976:0"
msgid "Include Web View Link in Email"
msgstr "crwdns129732:0crwdne129732:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1592
+#: frappe/public/js/frappe/views/reports/query_report.js:1594
msgid "Include filters"
msgstr "crwdns95980:0crwdne95980:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1584
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Include indentation"
msgstr "crwdns95982:0crwdne95982:0"
@@ -12822,11 +12629,11 @@ msgstr "crwdns96004:0crwdne96004:0"
msgid "Incorrect Verification code"
msgstr "crwdns96006:0crwdne96006:0"
-#: frappe/model/document.py:1542
+#: frappe/model/document.py:1541
msgid "Incorrect value in row {0}:"
msgstr "crwdns148658:0{0}crwdne148658:0"
-#: frappe/model/document.py:1544
+#: frappe/model/document.py:1543
msgid "Incorrect value:"
msgstr "crwdns148660:0crwdne148660:0"
@@ -12835,10 +12642,10 @@ msgstr "crwdns148660:0crwdne148660:0"
#. 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:53
+#: 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:999
+#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
msgstr "crwdns96012:0crwdne96012:0"
@@ -12913,7 +12720,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:1822
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
msgid "Insert After"
msgstr "crwdns96046:0crwdne96046:0"
@@ -12929,7 +12736,7 @@ msgstr "crwdns96052:0{0}crwdnd96052:0{1}crwdnd96052:0{2}crwdne96052:0"
msgid "Insert Below"
msgstr "crwdns110972:0crwdne110972:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:384
+#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
msgstr "crwdns96054:0{0}crwdne96054:0"
@@ -12978,11 +12785,11 @@ msgstr "crwdns129764:0crwdne129764:0"
msgid "Instructions Emailed"
msgstr "crwdns110976:0crwdne110976:0"
-#: frappe/permissions.py:818
+#: frappe/permissions.py:827
msgid "Insufficient Permission Level for {0}"
msgstr "crwdns96072:0{0}crwdne96072:0"
-#: frappe/database/query.py:376
+#: frappe/database/query.py:383
msgid "Insufficient Permission for {0}"
msgstr "crwdns96074:0{0}crwdne96074:0"
@@ -13100,7 +12907,7 @@ msgstr "crwdns129784:0crwdne129784:0"
#: frappe/public/js/form_builder/utils.js:221
#: frappe/public/js/frappe/form/grid_row.js:833
#: frappe/public/js/frappe/form/layout.js:811
-#: frappe/public/js/frappe/views/reports/report_view.js:710
+#: frappe/public/js/frappe/views/reports/report_view.js:716
msgid "Invalid \"depends_on\" expression"
msgstr "crwdns96130:0crwdne96130:0"
@@ -13140,7 +12947,7 @@ msgstr "crwdns96144:0crwdne96144:0"
msgid "Invalid DocType"
msgstr "crwdns96146:0crwdne96146:0"
-#: frappe/database/query.py:102
+#: frappe/database/query.py:103
msgid "Invalid DocType: {0}"
msgstr "crwdns96148:0{0}crwdne96148:0"
@@ -13185,6 +12992,7 @@ msgid "Invalid Naming Series: {}"
msgstr "crwdns96166:0crwdne96166:0"
#: frappe/core/doctype/rq_job/rq_job.py:113
+#: frappe/core/doctype/rq_job/rq_job.py:122
msgid "Invalid Operation"
msgstr "crwdns96168:0crwdne96168:0"
@@ -13209,7 +13017,7 @@ msgstr "crwdns127664:0crwdne127664:0"
msgid "Invalid Parameters."
msgstr "crwdns96176:0crwdne96176:0"
-#: frappe/core/doctype/user/user.py:1226 frappe/www/update-password.html:123
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
#: frappe/www/update-password.html:247
msgid "Invalid Password"
@@ -13238,7 +13046,7 @@ msgstr "crwdns96188:0crwdne96188:0"
#: frappe/core/doctype/file/file.py:220
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
-#: frappe/public/js/frappe/widgets/widget_dialog.js:589
+#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
msgstr "crwdns96190:0crwdne96190:0"
@@ -13259,11 +13067,11 @@ msgstr "crwdns96194:0crwdne96194:0"
msgid "Invalid aggregate function"
msgstr "crwdns96196:0crwdne96196:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:393
+#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "crwdns96198:0crwdne96198:0"
-#: frappe/model/document.py:1015 frappe/model/document.py:1029
+#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "crwdns96200:0crwdne96200:0"
@@ -13287,7 +13095,7 @@ msgstr "crwdns96208:0{0}crwdne96208:0"
msgid "Invalid file path: {0}"
msgstr "crwdns96210:0{0}crwdne96210:0"
-#: frappe/database/query.py:182
+#: frappe/database/query.py:189
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "crwdns96212:0{0}crwdne96212:0"
@@ -13313,7 +13121,7 @@ msgstr "crwdns96222:0crwdne96222:0"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "crwdns96224:0crwdne96224:0"
-#: frappe/app.py:324
+#: frappe/app.py:317
msgid "Invalid request arguments"
msgstr "crwdns96226:0crwdne96226:0"
@@ -13497,7 +13305,7 @@ msgstr "crwdns96308:0crwdne96308:0"
#. 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:328
+#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
msgstr "crwdns129828:0crwdne129828:0"
@@ -13712,6 +13520,10 @@ msgstr "crwdns129878:0crwdne129878:0"
msgid "Job Stopped Successfully"
msgstr "crwdns96418:0crwdne96418:0"
+#: frappe/core/doctype/rq_job/rq_job.py:121
+msgid "Job is in {0} state and can't be cancelled"
+msgstr "crwdns155506:0{0}crwdne155506:0"
+
#: frappe/core/doctype/rq_job/rq_job.py:113
msgid "Job is not running."
msgstr "crwdns96420:0crwdne96420:0"
@@ -13743,7 +13555,7 @@ msgstr "crwdns129880:0crwdne129880:0"
#. 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:498
+#: frappe/public/js/frappe/widgets/widget_dialog.js:511
msgid "Kanban Board"
msgstr "crwdns96432:0crwdne96432:0"
@@ -14015,10 +13827,10 @@ msgstr "crwdns96524:0{0}crwdne96524:0"
#: 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:300
-#: frappe/public/js/frappe/widgets/widget_dialog.js:453
-#: frappe/public/js/frappe/widgets/widget_dialog.js:630
-#: frappe/public/js/frappe/widgets/widget_dialog.js:663
+#: 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
@@ -14103,11 +13915,6 @@ msgstr "crwdns155032:0crwdne155032:0"
msgid "Last Active"
msgstr "crwdns129938:0crwdne129938:0"
-#. Label of the last_backup_on (Datetime) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Last Backup On"
-msgstr "crwdns129940:0crwdne129940:0"
-
#. 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"
@@ -14192,12 +13999,12 @@ msgstr "crwdns142888:0crwdne142888:0"
msgid "Last Synced On"
msgstr "crwdns129964:0crwdne129964:0"
-#: frappe/model/meta.py:55 frappe/public/js/frappe/model/meta.js:205
+#: 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 "crwdns96626:0crwdne96626:0"
-#: frappe/model/meta.py:54 frappe/public/js/frappe/model/meta.js:204
+#: 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 "crwdns96628:0crwdne96628:0"
@@ -14241,7 +14048,7 @@ msgid "Leave blank to repeat always"
msgstr "crwdns129972:0crwdne129972:0"
#: frappe/core/doctype/communication/mixins.py:207
-#: frappe/email/doctype/email_account/email_account.py:722
+#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
msgstr "crwdns96658:0crwdne96658:0"
@@ -14460,7 +14267,7 @@ msgstr "crwdns96752:0{0}crwdnd96752:0{1}crwdne96752:0"
msgid "Liked"
msgstr "crwdns96754:0crwdne96754:0"
-#: frappe/model/meta.py:58 frappe/public/js/frappe/model/meta.js:208
+#: 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 "crwdns96756:0crwdne96756:0"
@@ -14475,11 +14282,6 @@ msgstr "crwdns130010:0crwdne130010:0"
msgid "Limit"
msgstr "crwdns130012:0crwdne130012:0"
-#. Label of the limit_no_of_backups (Check) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Limit Number of DB Backups"
-msgstr "crwdns130014:0crwdne130014:0"
-
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14594,11 +14396,11 @@ msgstr "crwdns130038:0crwdne130038:0"
#: 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:414
+#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
msgstr "crwdns130040:0crwdne130040:0"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:350
+#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
msgstr "crwdns110990:0crwdne110990:0"
@@ -14611,7 +14413,7 @@ msgstr "crwdns110990:0crwdne110990:0"
msgid "Link Type"
msgstr "crwdns130042:0crwdne130042:0"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:346
+#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
msgstr "crwdns110992:0crwdne110992:0"
@@ -14763,7 +14565,7 @@ msgstr "crwdns143088:0crwdne143088:0"
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1085
+#: frappe/public/js/frappe/views/reports/query_report.js:1087
msgid "Loading"
msgstr "crwdns96892:0crwdne96892:0"
@@ -14894,7 +14696,7 @@ msgstr "crwdns130082:0crwdne130082:0"
msgid "Login Page"
msgstr "crwdns130084:0crwdne130084:0"
-#: frappe/www/login.py:152
+#: frappe/www/login.py:156
msgid "Login To {0}"
msgstr "crwdns96942:0{0}crwdne96942:0"
@@ -15161,7 +14963,7 @@ msgstr "crwdns130120:0crwdne130120:0"
msgid "Mandatory Depends On (JS)"
msgstr "crwdns130122:0crwdne130122:0"
-#: frappe/website/doctype/web_form/web_form.py:473
+#: frappe/website/doctype/web_form/web_form.py:470
msgid "Mandatory Information missing:"
msgstr "crwdns97056:0crwdne97056:0"
@@ -15436,7 +15238,7 @@ msgid "Menu"
msgstr "crwdns97168:0crwdne97168:0"
#: frappe/public/js/frappe/form/toolbar.js:242
-#: frappe/public/js/frappe/model/model.js:754
+#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "crwdns97170:0crwdne97170:0"
@@ -15615,7 +15417,7 @@ msgstr "crwdns97252:0crwdne97252:0"
msgid "Method"
msgstr "crwdns130200:0crwdne130200:0"
-#: frappe/__init__.py:672
+#: frappe/__init__.py:679
msgid "Method Not Allowed"
msgstr "crwdns142858:0crwdne142858:0"
@@ -15692,7 +15494,7 @@ msgstr "crwdns97288:0crwdne97288:0"
msgid "Miss"
msgstr "crwdns148670:0crwdne148670:0"
-#: frappe/desk/form/meta.py:218
+#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
msgstr "crwdns97290:0crwdne97290:0"
@@ -15717,7 +15519,7 @@ msgid "Missing Value"
msgstr "crwdns97300:0crwdne97300:0"
#: frappe/public/js/frappe/ui/field_group.js:124
-#: frappe/public/js/frappe/widgets/widget_dialog.js:361
+#: 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"
@@ -15900,8 +15702,6 @@ msgstr "crwdns97414:0crwdne97414:0"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -15909,7 +15709,6 @@ msgstr "crwdns97414:0crwdne97414:0"
#: 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/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:400
#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
@@ -16081,7 +15880,7 @@ msgid "Mx"
msgstr "crwdns148678:0crwdne148678:0"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:462
+#: frappe/website/doctype/web_form/web_form.py:459
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16247,7 +16046,7 @@ msgstr "crwdns130268:0crwdne130268:0"
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "crwdns97572:0crwdne97572:0"
-#: frappe/model/document.py:793
+#: frappe/model/document.py:792
msgid "Negative Value"
msgstr "crwdns97576:0crwdne97576:0"
@@ -16352,7 +16151,7 @@ msgstr "crwdns97612:0crwdne97612:0"
#. 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:762
+#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "crwdns97614:0crwdne97614:0"
@@ -16386,7 +16185,7 @@ msgstr "crwdns97624:0crwdne97624:0"
msgid "New Quick List"
msgstr "crwdns111026:0crwdne111026:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
msgstr "crwdns97626:0crwdne97626:0"
@@ -16442,26 +16241,26 @@ msgstr "crwdns130276:0crwdne130276:0"
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
#: frappe/public/js/frappe/form/toolbar.js:558
-#: frappe/public/js/frappe/model/model.js:661
+#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:379
+#: frappe/website/doctype/web_form/web_form.py:376
msgid "New {0}"
msgstr "crwdns97640:0{0}crwdne97640:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:394
+#: frappe/public/js/frappe/views/reports/query_report.js:392
msgid "New {0} Created"
msgstr "crwdns97642:0{0}crwdne97642:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:386
+#: frappe/public/js/frappe/views/reports/query_report.js:384
msgid "New {0} {1} added to Dashboard {2}"
msgstr "crwdns97644:0{0}crwdnd97644:0{1}crwdnd97644:0{2}crwdne97644:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:391
+#: frappe/public/js/frappe/views/reports/query_report.js:389
msgid "New {0} {1} created"
msgstr "crwdns97646:0{0}crwdnd97646:0{1}crwdne97646:0"
@@ -16473,7 +16272,7 @@ msgstr "crwdns97648:0{0}crwdnd97648:0{1}crwdne97648:0"
msgid "New {} releases for the following apps are available"
msgstr "crwdns97650:0crwdne97650:0"
-#: frappe/core/doctype/user/user.py:802
+#: frappe/core/doctype/user/user.py:804
msgid "Newly created user {0} has no roles enabled."
msgstr "crwdns97652:0{0}crwdne97652:0"
@@ -16635,7 +16434,7 @@ msgstr "crwdns130294:0crwdne130294:0"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "crwdns97696:0crwdne97696:0"
@@ -16776,7 +16575,7 @@ msgstr "crwdns97750:0crwdne97750:0"
msgid "No Results found"
msgstr "crwdns97752:0crwdne97752:0"
-#: frappe/core/doctype/user/user.py:803
+#: frappe/core/doctype/user/user.py:805
msgid "No Roles Specified"
msgstr "crwdns97754:0crwdne97754:0"
@@ -16927,7 +16726,7 @@ msgstr "crwdns130300:0crwdne130300:0"
msgid "No of Sent SMS"
msgstr "crwdns130302:0crwdne130302:0"
-#: frappe/__init__.py:827 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "crwdns97808:0{0}crwdne97808:0"
@@ -16936,7 +16735,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:949
+#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
msgstr "crwdns97812:0{0}crwdne97812:0"
@@ -17020,12 +16819,6 @@ msgstr "crwdns130304:0crwdne130304:0"
msgid "Non-Conforming"
msgstr "crwdns148684:0crwdne148684:0"
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "None"
-msgstr "crwdns130306:0crwdne130306:0"
-
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr "crwdns97840:0crwdne97840:0"
@@ -17040,7 +16833,7 @@ msgstr "crwdns130308:0crwdne130308:0"
msgid "Normalized Query"
msgstr "crwdns130310:0crwdne130310:0"
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "crwdns97846:0crwdne97846:0"
@@ -17061,7 +16854,7 @@ msgstr "crwdns97850:0crwdne97850:0"
msgid "Not Equals"
msgstr "crwdns97852:0crwdne97852:0"
-#: frappe/app.py:374 frappe/www/404.html:3
+#: frappe/app.py:367 frappe/www/404.html:3
msgid "Not Found"
msgstr "crwdns97854:0crwdne97854:0"
@@ -17087,9 +16880,9 @@ msgstr "crwdns97862:0crwdne97862:0"
msgid "Not Nullable"
msgstr "crwdns130314:0crwdne130314:0"
-#: frappe/__init__.py:754 frappe/app.py:367 frappe/desk/calendar.py:26
+#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:711
+#: frappe/website/doctype/web_form/web_form.py:708
#: 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
@@ -17110,7 +16903,7 @@ msgstr "crwdns97870:0crwdne97870:0"
#: frappe/public/js/frappe/form/toolbar.js:813
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
-#: frappe/public/js/frappe/views/reports/report_view.js:197
+#: frappe/public/js/frappe/views/reports/report_view.js:203
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
@@ -17141,7 +16934,7 @@ msgstr "crwdns97884:0crwdne97884:0"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "crwdns97886:0crwdne97886:0"
-#: frappe/core/doctype/user/user.py:264
+#: frappe/core/doctype/user/user.py:265
msgid "Not a valid User Image."
msgstr "crwdns97888:0crwdne97888:0"
@@ -17157,7 +16950,7 @@ msgstr "crwdns111082:0crwdne111082:0"
msgid "Not active"
msgstr "crwdns97892:0crwdne97892:0"
-#: frappe/permissions.py:360
+#: frappe/permissions.py:370
msgid "Not allowed for {0}: {1}"
msgstr "crwdns97894:0{0}crwdnd97894:0{1}crwdne97894:0"
@@ -17177,7 +16970,7 @@ msgstr "crwdns97900:0crwdne97900:0"
msgid "Not allowed to print draft documents"
msgstr "crwdns97902:0crwdne97902:0"
-#: frappe/permissions.py:212
+#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
msgstr "crwdns97904:0crwdne97904:0"
@@ -17193,12 +16986,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:214
+#: frappe/core/doctype/system_settings/system_settings.py:215
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:724
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "crwdns97912:0crwdne97912:0"
@@ -17224,15 +17017,6 @@ msgstr "crwdns97920:0crwdne97920:0"
msgid "Note:"
msgstr "crwdns97922:0crwdne97922:0"
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'Dropbox Settings'
-#. Description of the 'Send Email for Successful backup' (Check) field in
-#. DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Note: By default emails for failed backups are sent."
-msgstr "crwdns130316:0crwdne130316:0"
-
#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "crwdns97928:0crwdne97928:0"
@@ -17292,13 +17076,10 @@ msgstr "crwdns97946:0crwdne97946:0"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
#. Name of a DocType
-#. Label of the notification_section (Section Break) field in DocType 'S3
-#. Backup Settings'
#: 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
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Notification"
msgstr "crwdns97948:0crwdne97948:0"
@@ -17400,7 +17181,7 @@ msgstr "crwdns130336:0crwdne130336:0"
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:615
+#: frappe/public/js/frappe/widgets/widget_dialog.js:628
msgid "Number Card"
msgstr "crwdns97994:0crwdne97994:0"
@@ -17418,7 +17199,7 @@ msgstr "crwdns130338:0crwdne130338:0"
#. 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:645
+#: frappe/public/js/frappe/widgets/widget_dialog.js:658
msgid "Number Cards"
msgstr "crwdns98000:0crwdne98000:0"
@@ -17436,15 +17217,6 @@ msgstr "crwdns130340:0crwdne130340:0"
msgid "Number of Backups"
msgstr "crwdns130342:0crwdne130342:0"
-#. Label of the no_of_backups (Int) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Number of DB Backups"
-msgstr "crwdns130344:0crwdne130344:0"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:54
-msgid "Number of DB backups cannot be less than 1"
-msgstr "crwdns98012:0crwdne98012:0"
-
#. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Number of Groups"
@@ -17460,7 +17232,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:169
+#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
msgstr "crwdns98020:0crwdne98020:0"
@@ -17689,7 +17461,7 @@ msgstr "crwdns111096:0{0}crwdnd111096:0{1}crwdne111096:0"
#. 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:322
+#: frappe/public/js/frappe/widgets/widget_dialog.js:335
msgid "Onboard"
msgstr "crwdns130402:0crwdne130402:0"
@@ -17785,19 +17557,13 @@ msgstr "crwdns98128:0crwdne98128:0"
msgid "Only allowed to export customizations in developer mode"
msgstr "crwdns98132:0crwdne98132:0"
-#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Only change this if you want to use other S3 compatible object storage backends."
-msgstr "crwdns130410:0crwdne130410:0"
-
-#: frappe/model/document.py:1232
+#: frappe/model/document.py:1231
msgid "Only draft documents can be discarded"
msgstr "crwdns127690:0crwdne127690:0"
#. 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:315
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
msgstr "crwdns130412:0crwdne130412:0"
@@ -18046,7 +17812,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:870
+#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
msgstr "crwdns98244:0{0}crwdne98244:0"
@@ -18158,7 +17924,7 @@ msgstr "crwdns130460:0crwdne130460:0"
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1742
+#: frappe/public/js/frappe/views/reports/query_report.js:1744
msgid "PDF"
msgstr "crwdns98288:0crwdne98288:0"
@@ -18457,7 +18223,7 @@ msgstr "crwdns98416:0crwdne98416:0"
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr "crwdns154732:0crwdne154732:0"
-#: frappe/permissions.py:798
+#: frappe/permissions.py:807
msgid "Parentfield not specified in {0}: {1}"
msgstr "crwdns98418:0{0}crwdnd98418:0{1}crwdne98418:0"
@@ -18517,11 +18283,11 @@ msgstr "crwdns130516:0crwdne130516:0"
msgid "Password"
msgstr "crwdns98434:0crwdne98434:0"
-#: frappe/core/doctype/user/user.py:1079
+#: frappe/core/doctype/user/user.py:1081
msgid "Password Email Sent"
msgstr "crwdns98448:0crwdne98448:0"
-#: frappe/core/doctype/user/user.py:457
+#: frappe/core/doctype/user/user.py:458
msgid "Password Reset"
msgstr "crwdns98450:0crwdne98450:0"
@@ -18555,7 +18321,7 @@ msgstr "crwdns98462:0crwdne98462:0"
msgid "Password not found for {0} {1} {2}"
msgstr "crwdns98464:0{0}crwdnd98464:0{1}crwdnd98464:0{2}crwdne98464:0"
-#: frappe/core/doctype/user/user.py:1078
+#: frappe/core/doctype/user/user.py:1080
msgid "Password reset instructions have been sent to {}'s email"
msgstr "crwdns142862:0crwdne142862:0"
@@ -18567,7 +18333,7 @@ msgstr "crwdns98468:0crwdne98468:0"
msgid "Password size exceeded the maximum allowed size"
msgstr "crwdns98470:0crwdne98470:0"
-#: frappe/core/doctype/user/user.py:869
+#: frappe/core/doctype/user/user.py:871
msgid "Password size exceeded the maximum allowed size."
msgstr "crwdns98472:0crwdne98472:0"
@@ -18724,7 +18490,7 @@ msgstr "crwdns127706:0{0}crwdne127706:0"
msgid "Permanently Submit {0}?"
msgstr "crwdns98536:0{0}crwdne98536:0"
-#: frappe/public/js/frappe/model/model.js:733
+#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
msgstr "crwdns98538:0{0}crwdne98538:0"
@@ -18885,8 +18651,8 @@ msgid "Phone Number {0} set in field {1} is not valid."
msgstr "crwdns98606:0{0}crwdnd98606:0{1}crwdne98606:0"
#: frappe/public/js/frappe/form/print_utils.js:40
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
-#: frappe/public/js/frappe/views/reports/report_view.js:1576
+#: frappe/public/js/frappe/views/reports/report_view.js:1579
+#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
msgstr "crwdns98608:0crwdne98608:0"
@@ -18926,7 +18692,7 @@ msgstr "crwdns130572:0crwdne130572:0"
msgid "Plant"
msgstr "crwdns130574:0crwdne130574:0"
-#: frappe/email/doctype/email_account/email_account.py:546
+#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
msgstr "crwdns142892:0{0}crwdne142892:0"
@@ -18942,7 +18708,7 @@ msgstr "crwdns98624:0crwdne98624:0"
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "crwdns98626:0crwdne98626:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:309
+#: frappe/public/js/frappe/views/reports/query_report.js:307
msgid "Please Set Chart"
msgstr "crwdns98628:0crwdne98628:0"
@@ -18958,7 +18724,7 @@ msgstr "crwdns98632:0crwdne98632:0"
msgid "Please add a valid comment."
msgstr "crwdns98634:0crwdne98634:0"
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1063
msgid "Please ask your administrator to verify your sign-up"
msgstr "crwdns98636:0crwdne98636:0"
@@ -18986,11 +18752,11 @@ msgstr "crwdns98646:0crwdne98646:0"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "crwdns98648:0crwdne98648:0"
-#: frappe/model/base_document.py:946
+#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "crwdns98650:0{0}crwdne98650:0"
-#: frappe/core/doctype/user/user.py:1059
+#: frappe/core/doctype/user/user.py:1061
msgid "Please check your email for verification"
msgstr "crwdns98652:0crwdne98652:0"
@@ -19018,10 +18784,6 @@ msgstr "crwdns98658:0{0}crwdne98658:0"
msgid "Please click on the following link to set your new password"
msgstr "crwdns98660:0crwdne98660:0"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:343
-msgid "Please close this window"
-msgstr "crwdns98662:0crwdne98662:0"
-
#: frappe/www/confirm_workflow_action.html:4
msgid "Please confirm your action to {0} this document."
msgstr "crwdns98664:0{0}crwdne98664:0"
@@ -19038,7 +18800,7 @@ msgstr "crwdns98668:0crwdne98668:0"
msgid "Please create chart first"
msgstr "crwdns98670:0crwdne98670:0"
-#: frappe/desk/form/meta.py:214
+#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
msgstr "crwdns98672:0{0}crwdne98672:0"
@@ -19050,7 +18812,7 @@ msgstr "crwdns98674:0crwdne98674:0"
msgid "Please duplicate this to make changes"
msgstr "crwdns98676:0crwdne98676:0"
-#: frappe/core/doctype/system_settings/system_settings.py:162
+#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr "crwdns98678:0crwdne98678:0"
@@ -19068,7 +18830,7 @@ msgstr "crwdns98680:0crwdne98680:0"
msgid "Please enable pop-ups in your browser"
msgstr "crwdns98682:0crwdne98682:0"
-#: frappe/integrations/google_oauth.py:53
+#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
msgstr "crwdns98684:0crwdne98684:0"
@@ -19145,7 +18907,7 @@ msgstr "crwdns98718:0crwdne98718:0"
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "crwdns98720:0crwdne98720:0"
-#: frappe/model/document.py:987
+#: frappe/model/document.py:986
msgid "Please refresh to get the latest document."
msgstr "crwdns98722:0crwdne98722:0"
@@ -19169,7 +18931,7 @@ msgstr "crwdns98730:0crwdne98730:0"
msgid "Please save the document before removing assignment"
msgstr "crwdns98732:0crwdne98732:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1703
+#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
msgstr "crwdns98734:0crwdne98734:0"
@@ -19185,11 +18947,11 @@ msgstr "crwdns98740:0crwdne98740:0"
msgid "Please select Entity Type first"
msgstr "crwdns98742:0crwdne98742:0"
-#: frappe/core/doctype/system_settings/system_settings.py:112
+#: frappe/core/doctype/system_settings/system_settings.py:113
msgid "Please select Minimum Password Score"
msgstr "crwdns98744:0crwdne98744:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1181
+#: frappe/public/js/frappe/views/reports/query_report.js:1183
msgid "Please select X and Y fields"
msgstr "crwdns111128:0crwdne111128:0"
@@ -19217,7 +18979,7 @@ msgstr "crwdns98752:0crwdne98752:0"
msgid "Please select applicable Doctypes"
msgstr "crwdns98754:0crwdne98754:0"
-#: frappe/model/db_query.py:1140
+#: frappe/model/db_query.py:1141
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "crwdns98756:0{0}crwdne98756:0"
@@ -19239,10 +19001,6 @@ msgstr "crwdns130576:0crwdne130576:0"
msgid "Please select {0}"
msgstr "crwdns98764:0{0}crwdne98764:0"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:305
-msgid "Please set Dropbox access keys in site config or doctype"
-msgstr "crwdns98766:0crwdne98766:0"
-
#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
msgstr "crwdns98768:0crwdne98768:0"
@@ -19251,7 +19009,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:1404
+#: frappe/public/js/frappe/views/reports/query_report.js:1406
msgid "Please set filters"
msgstr "crwdns98772:0crwdne98772:0"
@@ -19271,7 +19029,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:125
+#: frappe/core/doctype/system_settings/system_settings.py:126
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr "crwdns98782:0crwdne98782:0"
@@ -19279,19 +19037,19 @@ msgstr "crwdns98782:0crwdne98782:0"
msgid "Please setup a message first"
msgstr "crwdns98784:0crwdne98784:0"
-#: frappe/core/doctype/user/user.py:422
+#: frappe/core/doctype/user/user.py:423
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "crwdns98788:0crwdne98788:0"
-#: frappe/email/doctype/email_account/email_account.py:434
+#: frappe/email/doctype/email_account/email_account.py:432
msgid "Please setup default outgoing Email Account from Tools > Email Account"
msgstr "crwdns154306:0crwdne154306:0"
-#: frappe/public/js/frappe/model/model.js:823
+#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
msgstr "crwdns98790:0crwdne98790:0"
-#: frappe/permissions.py:774
+#: frappe/permissions.py:783
msgid "Please specify a valid parent DocType for {0}"
msgstr "crwdns98792:0{0}crwdne98792:0"
@@ -19320,7 +19078,7 @@ msgstr "crwdns98796:0crwdne98796:0"
msgid "Please try again"
msgstr "crwdns98798:0crwdne98798:0"
-#: frappe/integrations/google_oauth.py:56
+#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
msgstr "crwdns98800:0crwdne98800:0"
@@ -19633,8 +19391,8 @@ msgstr "crwdns112704:0{0}crwdne112704:0"
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1728
-#: frappe/public/js/frappe/views/reports/report_view.js:1531
+#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "crwdns98924:0crwdne98924:0"
@@ -19877,7 +19635,7 @@ msgstr "crwdns130648:0{{ reference_doctype }}crwdnd130648:0{{ reference_name }}c
msgid "Proceed"
msgstr "crwdns99050:0crwdne99050:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
msgstr "crwdns99052:0crwdne99052:0"
@@ -20198,7 +19956,7 @@ msgstr "crwdns99182:0crwdne99182:0"
msgid "Queue"
msgstr "crwdns130692:0crwdne130692:0"
-#: frappe/utils/background_jobs.py:729
+#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
msgstr "crwdns154310:0crwdne154310:0"
@@ -20219,7 +19977,7 @@ msgstr "crwdns130696:0crwdne130696:0"
msgid "Queue in Background (BETA)"
msgstr "crwdns130698:0crwdne130698:0"
-#: frappe/utils/background_jobs.py:554
+#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
msgstr "crwdns99192:0{0}crwdne99192:0"
@@ -20252,12 +20010,6 @@ msgstr "crwdns130704:0crwdne130704:0"
msgid "Queued for Submission. You can track the progress over {0}."
msgstr "crwdns99208:0{0}crwdne99208:0"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:65
-#: frappe/integrations/doctype/google_drive/google_drive.py:153
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:86
-msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr "crwdns99210:0crwdne99210:0"
-
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
msgstr "crwdns99212:0crwdne99212:0"
@@ -20393,7 +20145,7 @@ msgstr "crwdns111152:0crwdne111152:0"
msgid "Re-Run in Console"
msgstr "crwdns99268:0crwdne99268:0"
-#: frappe/email/doctype/email_account/email_account.py:728
+#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
msgstr "crwdns99270:0crwdne99270:0"
@@ -20495,7 +20247,7 @@ msgstr "crwdns130740:0crwdne130740:0"
msgid "Reason"
msgstr "crwdns99322:0crwdne99322:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:889
+#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
msgstr "crwdns99328:0crwdne99328:0"
@@ -20860,11 +20612,11 @@ msgid "Referrer"
msgstr "crwdns99526:0crwdne99526:0"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:548
+#: frappe/public/js/frappe/desk.js:556
#: 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:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1719
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20883,12 +20635,10 @@ msgstr "crwdns130796:0crwdne130796:0"
#. 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 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
@@ -20905,7 +20655,7 @@ msgstr "crwdns111160:0crwdne111160:0"
msgid "Refreshing..."
msgstr "crwdns99546:0crwdne99546:0"
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
msgstr "crwdns99548:0crwdne99548:0"
@@ -21068,7 +20818,7 @@ msgstr "crwdns149130:0crwdne149130:0"
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
#: frappe/public/js/frappe/form/toolbar.js:432
-#: frappe/public/js/frappe/model/model.js:772
+#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
msgstr "crwdns99602:0crwdne99602:0"
@@ -21078,7 +20828,7 @@ msgstr "crwdns99602:0crwdne99602:0"
msgid "Rename Fieldname"
msgstr "crwdns99604:0crwdne99604:0"
-#: frappe/public/js/frappe/model/model.js:759
+#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
msgstr "crwdns99606:0{0}crwdne99606:0"
@@ -21142,7 +20892,7 @@ msgstr "crwdns99628:0crwdne99628:0"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "crwdns99630:0crwdne99630:0"
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:146
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
msgstr "crwdns99632:0{0}crwdne99632:0"
@@ -21280,7 +21030,7 @@ msgstr "crwdns99694:0crwdne99694:0"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1902
+#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
msgstr "crwdns99696:0crwdne99696:0"
@@ -21332,7 +21082,7 @@ msgstr "crwdns99720:0crwdne99720:0"
msgid "Report has no numeric fields, please change the Report Name"
msgstr "crwdns99722:0crwdne99722:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1009
+#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
msgstr "crwdns99724:0crwdne99724:0"
@@ -21348,11 +21098,11 @@ msgstr "crwdns99728:0crwdne99728:0"
msgid "Report updated successfully"
msgstr "crwdns99730:0crwdne99730:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1351
+#: frappe/public/js/frappe/views/reports/report_view.js:1357
msgid "Report was not saved (there were errors)"
msgstr "crwdns99732:0crwdne99732:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1940
+#: frappe/public/js/frappe/views/reports/query_report.js:1942
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "crwdns99734:0crwdne99734:0"
@@ -21388,7 +21138,7 @@ msgstr "crwdns99746:0crwdne99746:0"
msgid "Reports & Masters"
msgstr "crwdns99750:0crwdne99750:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:925
+#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
msgstr "crwdns99752:0crwdne99752:0"
@@ -21838,7 +21588,7 @@ msgstr "crwdns148702:0crwdne148702:0"
msgid "Role and Level"
msgstr "crwdns130914:0crwdne130914:0"
-#: frappe/core/doctype/user/user.py:363
+#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
msgstr "crwdns99982:0{0}crwdne99982:0"
@@ -21953,7 +21703,7 @@ msgstr "crwdns130930:0crwdne130930:0"
msgid "Route: Example \"/app\""
msgstr "crwdns130932:0crwdne130932:0"
-#: frappe/model/base_document.py:855 frappe/model/document.py:778
+#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
msgstr "crwdns100054:0crwdne100054:0"
@@ -21966,7 +21716,7 @@ msgstr "crwdns111178:0crwdne111178:0"
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:977
+#: frappe/model/base_document.py:982
msgid "Row #{0}:"
msgstr "crwdns100058:0#{0}crwdne100058:0"
@@ -22044,7 +21794,7 @@ msgstr "crwdns130940:0crwdne130940:0"
msgid "Rule Conditions"
msgstr "crwdns130942:0crwdne130942:0"
-#: frappe/permissions.py:653
+#: frappe/permissions.py:662
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "crwdns100084:0crwdne100084:0"
@@ -22088,23 +21838,6 @@ msgstr "crwdns154312:0crwdne154312:0"
msgid "Runtime in Seconds"
msgstr "crwdns154314:0crwdne154314:0"
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "S3 Backup Settings"
-msgstr "crwdns100098:0crwdne100098:0"
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
-msgid "S3 Backup complete!"
-msgstr "crwdns100102:0crwdne100102:0"
-
-#. Label of the s3_bucket_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Bucket Details"
-msgstr "crwdns130958:0crwdne130958:0"
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
@@ -22245,7 +21978,7 @@ msgstr "crwdns130978:0crwdne130978:0"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/page/print/print.js:858
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/quick_entry.js:185
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
@@ -22255,8 +21988,8 @@ msgstr "crwdns130978:0crwdne130978:0"
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
-#: frappe/public/js/frappe/views/reports/query_report.js:1894
-#: frappe/public/js/frappe/views/reports/report_view.js:1720
+#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
@@ -22273,8 +22006,8 @@ msgstr "crwdns100174:0{0}crwdne100174:0"
msgid "Save Anyway"
msgstr "crwdns100176:0crwdne100176:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1382
-#: frappe/public/js/frappe/views/reports/report_view.js:1727
+#: frappe/public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
msgstr "crwdns100178:0crwdne100178:0"
@@ -22282,7 +22015,7 @@ msgstr "crwdns100178:0crwdne100178:0"
msgid "Save Customizations"
msgstr "crwdns100180:0crwdne100180:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1897
+#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
msgstr "crwdns100182:0crwdne100182:0"
@@ -22448,7 +22181,7 @@ msgstr "crwdns100246:0crwdne100246:0"
msgid "Scheduler Status"
msgstr "crwdns130994:0crwdne130994:0"
-#: frappe/utils/scheduler.py:249
+#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr "crwdns100248:0crwdne100248:0"
@@ -22674,7 +22407,7 @@ msgstr "crwdns131022:0crwdne131022:0"
msgid "See all Activity"
msgstr "crwdns111200:0crwdne111200:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:858
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "See all past reports."
msgstr "crwdns100338:0crwdne100338:0"
@@ -22754,7 +22487,7 @@ msgstr "crwdns100382:0crwdne100382:0"
msgid "Select Child Table"
msgstr "crwdns100384:0crwdne100384:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:377
+#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
msgstr "crwdns100386:0crwdne100386:0"
@@ -23071,31 +22804,11 @@ msgstr "crwdns131056:0crwdne131056:0"
msgid "Send Email To Creator"
msgstr "crwdns154375:0crwdne154375:0"
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Dropbox Settings'
-#. Label of the send_email_for_successful_backup (Check) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Email for Successful Backup"
-msgstr "crwdns131058:0crwdne131058:0"
-
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Email for Successful backup"
-msgstr "crwdns131060:0crwdne131060:0"
-
#. 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 "crwdns131062:0crwdne131062:0"
-#. Label of the email (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Notification To"
-msgstr "crwdns131064:0crwdne131064:0"
-
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -23112,14 +22825,6 @@ msgstr "crwdns131068:0crwdne131068:0"
msgid "Send Notifications For Email Threads"
msgstr "crwdns131070:0crwdne131070:0"
-#. Label of the send_notifications_to (Data) field in DocType 'Dropbox
-#. Settings'
-#. Label of the notify_email (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Notifications To"
-msgstr "crwdns131072:0crwdne131072:0"
-
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
msgstr "crwdns100528:0crwdne100528:0"
@@ -23378,7 +23083,7 @@ msgstr "crwdns100642:0{0}crwdnd100642:0{1}crwdne100642:0"
msgid "Server Action"
msgstr "crwdns131128:0crwdne131128:0"
-#: frappe/app.py:383 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "crwdns100646:0crwdne100646:0"
@@ -23444,7 +23149,7 @@ msgstr "crwdns100674:0crwdne100674:0"
msgid "Session Defaults Saved"
msgstr "crwdns100678:0crwdne100678:0"
-#: frappe/app.py:360
+#: frappe/app.py:353
msgid "Session Expired"
msgstr "crwdns100680:0crwdne100680:0"
@@ -23453,7 +23158,7 @@ msgstr "crwdns100680:0crwdne100680:0"
msgid "Session Expiry (idle timeout)"
msgstr "crwdns131134:0crwdne131134:0"
-#: frappe/core/doctype/system_settings/system_settings.py:119
+#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
msgstr "crwdns100684:0{0}crwdne100684:0"
@@ -23476,7 +23181,7 @@ msgstr "crwdns100686:0crwdne100686:0"
msgid "Set Banner from Image"
msgstr "crwdns131136:0crwdne131136:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:201
+#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
msgstr "crwdns100690:0crwdne100690:0"
@@ -23502,7 +23207,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:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
msgstr "crwdns148706:0crwdne148706:0"
@@ -23720,8 +23425,8 @@ msgstr "crwdns111216:0crwdne111216:0"
msgid "Setup > User Permissions"
msgstr "crwdns111218:0crwdne111218:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1763
-#: frappe/public/js/frappe/views/reports/report_view.js:1698
+#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "crwdns100774:0crwdne100774:0"
@@ -23817,6 +23522,15 @@ msgstr "crwdns100814:0crwdne100814:0"
msgid "Show \"Call to Action\" in Blog"
msgstr "crwdns131172:0crwdne131172:0"
+#. 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 "crwdns155508:0crwdne155508:0"
+
#. Label of the absolute_value (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Absolute Values"
@@ -23987,7 +23701,7 @@ msgstr "crwdns131208:0crwdne131208:0"
msgid "Show Title in Link Fields"
msgstr "crwdns131210:0crwdne131210:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1521
+#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
msgstr "crwdns100894:0crwdne100894:0"
@@ -24097,7 +23811,7 @@ msgstr "crwdns131228:0crwdne131228:0"
msgid "Show {0} List"
msgstr "crwdns111238:0{0}crwdne111238:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:495
+#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
msgstr "crwdns100926:0crwdne100926:0"
@@ -24132,7 +23846,7 @@ msgstr "crwdns131236:0crwdne131236:0"
msgid "Sign Up and Confirmation"
msgstr "crwdns131238:0crwdne131238:0"
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
msgstr "crwdns100938:0crwdne100938:0"
@@ -24777,7 +24491,7 @@ msgstr "crwdns131324:0crwdne131324:0"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
-#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: frappe/public/js/frappe/views/reports/report_view.js:975
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
@@ -25076,7 +24790,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:1166
+#: frappe/public/js/frappe/form/grid.js:1170
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25173,7 +24887,7 @@ msgstr "crwdns127884:0crwdne127884:0"
msgid "Suggested Indexes"
msgstr "crwdns131380:0crwdne131380:0"
-#: frappe/core/doctype/user/user.py:720
+#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
msgstr "crwdns101420:0{0}crwdne101420:0"
@@ -25463,11 +25177,9 @@ msgstr "crwdns101486:0crwdne101486:0"
#: frappe/geo/doctype/country/country.json
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/connected_app/connected_app.json
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.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_drive/google_drive.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
@@ -25476,7 +25188,6 @@ msgstr "crwdns101486:0crwdne101486:0"
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_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
@@ -25601,11 +25312,11 @@ msgstr "crwdns131410:0crwdne131410:0"
msgid "Table Trimmed"
msgstr "crwdns112742:0crwdne112742:0"
-#: frappe/public/js/frappe/form/grid.js:1165
+#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
msgstr "crwdns101536:0crwdne101536:0"
-#: frappe/model/document.py:1565
+#: frappe/model/document.py:1564
msgid "Table {0} cannot be empty"
msgstr "crwdns101538:0{0}crwdne101538:0"
@@ -25624,7 +25335,7 @@ msgstr "crwdns101542:0crwdne101542:0"
msgid "Tag Link"
msgstr "crwdns101544:0crwdne101544:0"
-#: frappe/model/meta.py:57
+#: 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
@@ -25636,15 +25347,6 @@ msgstr "crwdns101544:0crwdne101544:0"
msgid "Tags"
msgstr "crwdns101546:0crwdne101546:0"
-#: frappe/integrations/doctype/google_drive/google_drive.js:29
-msgid "Take Backup"
-msgstr "crwdns101548:0crwdne101548:0"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
-msgid "Take Backup Now"
-msgstr "crwdns101550:0crwdne101550:0"
-
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
msgstr "crwdns101552:0crwdne101552:0"
@@ -25722,12 +25424,12 @@ msgstr "crwdns131428:0crwdne131428:0"
msgid "Templates"
msgstr "crwdns101586:0crwdne101586:0"
-#: frappe/core/doctype/user/user.py:1027
+#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
msgstr "crwdns101588:0crwdne101588:0"
-#: frappe/core/doctype/translation/test_translation.py:56
-#: frappe/core/doctype/translation/test_translation.py:63
+#: frappe/core/doctype/translation/test_translation.py:47
+#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
msgstr "crwdns149014:0crwdne149014:0"
@@ -25736,8 +25438,8 @@ msgstr "crwdns149014:0crwdne149014:0"
msgid "Test Job ID"
msgstr "crwdns131430:0crwdne131430:0"
-#: frappe/core/doctype/translation/test_translation.py:58
-#: frappe/core/doctype/translation/test_translation.py:66
+#: frappe/core/doctype/translation/test_translation.py:49
+#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
msgstr "crwdns149016:0crwdne149016:0"
@@ -25745,7 +25447,7 @@ msgstr "crwdns149016:0crwdne149016:0"
msgid "Test email sent to {0}"
msgstr "crwdns101590:0{0}crwdne101590:0"
-#: frappe/core/doctype/file/test_file.py:388
+#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "crwdns101592:0crwdne101592:0"
@@ -25826,7 +25528,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:1188
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
msgstr "crwdns101632:0crwdne101632:0"
@@ -25994,15 +25696,15 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr "crwdns131456:0crwdne131456:0"
-#: frappe/core/doctype/user/user.py:987
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
msgstr "crwdns101696:0crwdne101696:0"
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:991
msgid "The reset password link has either been used before or is invalid"
msgstr "crwdns101698:0crwdne101698:0"
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "crwdns101700:0crwdne101700:0"
@@ -26014,7 +25716,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:334
+#: frappe/utils/response.py:331
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "crwdns101706:0crwdne101706:0"
@@ -26075,7 +25777,7 @@ msgstr "crwdns111276:0crwdne111276:0"
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "crwdns101730:0{0}crwdnd101730:0{1}crwdne101730:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "There are {0} with the same filters already in the queue:"
msgstr "crwdns111278:0{0}crwdne111278:0"
@@ -26104,7 +25806,7 @@ msgstr "crwdns112744:0crwdne112744:0"
msgid "There is some problem with the file url: {0}"
msgstr "crwdns101740:0{0}crwdne101740:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:958
+#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
msgstr "crwdns111280:0{0}crwdne111280:0"
@@ -26191,12 +25893,12 @@ msgstr "crwdns155058:0crwdne155058:0"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "crwdns112746:0crwdne112746:0"
-#: frappe/__init__.py:750
+#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
msgstr "crwdns101776:0crwdne101776:0"
#: frappe/public/js/frappe/form/toolbar.js:117
-#: frappe/public/js/frappe/model/model.js:755
+#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "crwdns101778:0crwdne101778:0"
@@ -26234,7 +25936,7 @@ msgstr "crwdns127762:0crwdne127762:0"
msgid "This document is already amended, you cannot ammend it again"
msgstr "crwdns101792:0crwdne101792:0"
-#: frappe/model/document.py:474
+#: frappe/model/document.py:473
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr "crwdns111282:0crwdne111282:0"
@@ -26295,7 +25997,7 @@ msgstr "crwdns148744:0crwdne148744:0"
msgid "This goes above the slideshow."
msgstr "crwdns131484:0crwdne131484:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2132
+#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "crwdns101812:0crwdne101812:0"
@@ -26359,7 +26061,7 @@ msgstr "crwdns101838:0{0}crwdne101838:0"
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
msgstr "crwdns101840:0crwdne101840:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:1033
+#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "crwdns111474:0{0}crwdnd111474:0{1}crwdne111474:0"
@@ -26367,7 +26069,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:856
+#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
msgstr "crwdns101844:0{0}crwdne101844:0"
@@ -26433,7 +26135,7 @@ msgstr "crwdns101866:0crwdne101866:0"
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr "crwdns101868:0crwdne101868:0"
-#: frappe/core/doctype/user/user.py:1240
+#: frappe/core/doctype/user/user.py:1242
msgid "Throttled"
msgstr "crwdns101870:0crwdne101870:0"
@@ -26784,7 +26486,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:857
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "To get the updated report, click on {0}."
msgstr "crwdns102050:0{0}crwdne102050:0"
@@ -26809,10 +26511,6 @@ msgstr "crwdns102058:0{0}crwdne102058:0"
msgid "To use Google Contacts, enable {0}."
msgstr "crwdns102060:0{0}crwdne102060:0"
-#: frappe/integrations/doctype/google_drive/google_drive.js:8
-msgid "To use Google Drive, enable {0}."
-msgstr "crwdns102062:0{0}crwdne102062:0"
-
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -26843,7 +26541,7 @@ msgstr "crwdns102070:0crwdne102070:0"
msgid "Today"
msgstr "crwdns102076:0crwdne102076:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1564
+#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
msgstr "crwdns102080:0crwdne102080:0"
@@ -26859,7 +26557,7 @@ msgstr "crwdns102084:0crwdne102084:0"
#: 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:1568
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
msgstr "crwdns102086:0crwdne102086:0"
@@ -26915,11 +26613,11 @@ msgstr "crwdns102108:0crwdne102108:0"
msgid "Too many changes to database in single action."
msgstr "crwdns102110:0crwdne102110:0"
-#: frappe/utils/background_jobs.py:728
+#: frappe/utils/background_jobs.py:730
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr "crwdns154316:0{0}crwdne154316:0"
-#: frappe/core/doctype/user/user.py:1028
+#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "crwdns102112:0crwdne102112:0"
@@ -26983,8 +26681,8 @@ msgstr "crwdns131574:0crwdne131574:0"
#: frappe/desk/query_report.py:533
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1320
-#: frappe/public/js/frappe/views/reports/report_view.js:1545
+#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr "crwdns102140:0crwdne102140:0"
@@ -27047,11 +26745,11 @@ msgstr "crwdns131592:0crwdne131592:0"
msgid "Total:"
msgstr "crwdns143152:0crwdne143152:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1250
+#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
msgstr "crwdns102154:0crwdne102154:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1225
+#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
msgstr "crwdns102156:0crwdne102156:0"
@@ -27164,7 +26862,7 @@ msgstr "crwdns131616:0crwdne131616:0"
msgid "Translatable"
msgstr "crwdns131618:0crwdne131618:0"
-#: frappe/public/js/frappe/views/reports/query_report.js:2188
+#: frappe/public/js/frappe/views/reports/query_report.js:2183
msgid "Translate Data"
msgstr "crwdns154320:0crwdne154320:0"
@@ -27175,7 +26873,7 @@ msgstr "crwdns154320:0crwdne154320:0"
msgid "Translate Link Fields"
msgstr "crwdns131620:0crwdne131620:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1650
+#: frappe/public/js/frappe/views/reports/report_view.js:1656
msgid "Translate values"
msgstr "crwdns148954:0crwdne148954:0"
@@ -27323,7 +27021,7 @@ msgstr "crwdns131640:0crwdne131640:0"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/views/file/file_view.js:337
#: frappe/public/js/frappe/views/workspace/workspace.js:399
-#: frappe/public/js/frappe/widgets/widget_dialog.js:391
+#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
msgid "Type"
@@ -27403,7 +27101,7 @@ msgstr "crwdns131652:0crwdne131652:0"
#: 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:458
+#: 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"
@@ -27465,7 +27163,7 @@ msgstr "crwdns102328:0{0}crwdne102328:0"
msgid "Unable to load camera."
msgstr "crwdns102330:0crwdne102330:0"
-#: frappe/public/js/frappe/model/model.js:268
+#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
msgstr "crwdns102332:0{0}crwdne102332:0"
@@ -27494,7 +27192,7 @@ msgstr "crwdns102342:0{0}crwdne102342:0"
msgid "Unassign Condition"
msgstr "crwdns131662:0crwdne131662:0"
-#: frappe/app.py:383
+#: frappe/app.py:376
msgid "Uncaught Exception"
msgstr "crwdns151458:0crwdne151458:0"
@@ -27727,7 +27425,7 @@ msgstr "crwdns102442:0crwdne102442:0"
msgid "Updated Successfully"
msgstr "crwdns102448:0crwdne102448:0"
-#: frappe/public/js/frappe/desk.js:444
+#: frappe/public/js/frappe/desk.js:452
msgid "Updated To A New Version 🎉"
msgstr "crwdns102450:0crwdne102450:0"
@@ -27735,7 +27433,7 @@ msgstr "crwdns102450:0crwdne102450:0"
msgid "Updated successfully"
msgstr "crwdns102452:0crwdne102452:0"
-#: frappe/utils/response.py:333
+#: frappe/utils/response.py:330
msgid "Updating"
msgstr "crwdns102456:0crwdne102456:0"
@@ -27809,18 +27507,6 @@ msgstr "crwdns131694:0crwdne131694:0"
msgid "Uploaded To Google Drive"
msgstr "crwdns131696:0crwdne131696:0"
-#: frappe/integrations/doctype/google_drive/google_drive.py:196
-msgid "Uploading backup to Google Drive."
-msgstr "crwdns104494:0crwdne104494:0"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:201
-msgid "Uploading successful."
-msgstr "crwdns104496:0crwdne104496:0"
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:16
-msgid "Uploading to Google Drive"
-msgstr "crwdns104498:0crwdne104498:0"
-
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -27904,11 +27590,11 @@ 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:434
+#: frappe/model/db_query.py:435
msgid "Use of function {0} in field is restricted"
msgstr "crwdns102510:0{0}crwdne102510:0"
-#: frappe/model/db_query.py:411
+#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
msgstr "crwdns102512:0crwdne102512:0"
@@ -28025,7 +27711,7 @@ msgstr "crwdns131728:0crwdne131728:0"
msgid "User Cannot Search"
msgstr "crwdns131730:0crwdne131730:0"
-#: frappe/public/js/frappe/desk.js:546
+#: frappe/public/js/frappe/desk.js:554
msgid "User Changed"
msgstr "crwdns127780:0crwdne127780:0"
@@ -28131,8 +27817,8 @@ 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:1881
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "crwdns102628:0crwdne102628:0"
@@ -28229,7 +27915,7 @@ msgstr "crwdns131762:0crwdne131762:0"
msgid "User permission already exists"
msgstr "crwdns102670:0crwdne102670:0"
-#: frappe/www/login.py:167
+#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
msgstr "crwdns102672:0{0}crwdne102672:0"
@@ -28237,23 +27923,23 @@ msgstr "crwdns102672:0{0}crwdne102672:0"
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr "crwdns102674:0{0}crwdne102674:0"
-#: frappe/core/doctype/user/user.py:536
+#: frappe/core/doctype/user/user.py:537
msgid "User {0} cannot be deleted"
msgstr "crwdns102676:0{0}crwdne102676:0"
-#: frappe/core/doctype/user/user.py:326
+#: frappe/core/doctype/user/user.py:327
msgid "User {0} cannot be disabled"
msgstr "crwdns102678:0{0}crwdne102678:0"
-#: frappe/core/doctype/user/user.py:602
+#: frappe/core/doctype/user/user.py:603
msgid "User {0} cannot be renamed"
msgstr "crwdns102680:0{0}crwdne102680:0"
-#: frappe/permissions.py:138
+#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
msgstr "crwdns102682:0{0}crwdne102682:0"
-#: frappe/permissions.py:161
+#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr "crwdns102684:0{0}crwdnd102684:0{1}crwdne102684:0"
@@ -28266,7 +27952,7 @@ msgstr "crwdns127898:0{0}crwdne127898:0"
msgid "User {0} has requested for data deletion"
msgstr "crwdns102686:0{0}crwdne102686:0"
-#: frappe/core/doctype/user/user.py:1369
+#: frappe/core/doctype/user/user.py:1371
msgid "User {0} impersonated as {1}"
msgstr "crwdns111442:0{0}crwdnd111442:0{1}crwdne111442:0"
@@ -28295,7 +27981,7 @@ msgstr "crwdns131764:0crwdne131764:0"
msgid "Username"
msgstr "crwdns102694:0crwdne102694:0"
-#: frappe/core/doctype/user/user.py:687
+#: frappe/core/doctype/user/user.py:689
msgid "Username {0} already exists"
msgstr "crwdns102700:0{0}crwdne102700:0"
@@ -28435,15 +28121,15 @@ msgstr "crwdns131784:0crwdne131784:0"
msgid "Value To Be Set"
msgstr "crwdns131786:0crwdne131786:0"
-#: frappe/model/base_document.py:1049 frappe/model/document.py:834
+#: frappe/model/base_document.py:1054 frappe/model/document.py:833
msgid "Value cannot be changed for {0}"
msgstr "crwdns102750:0{0}crwdne102750:0"
-#: frappe/model/document.py:780
+#: frappe/model/document.py:779
msgid "Value cannot be negative for"
msgstr "crwdns102752:0crwdne102752:0"
-#: frappe/model/document.py:784
+#: frappe/model/document.py:783
msgid "Value cannot be negative for {0}: {1}"
msgstr "crwdns102754:0{0}crwdnd102754:0{1}crwdne102754:0"
@@ -28474,7 +28160,7 @@ msgstr "crwdns102766:0{0}crwdne102766:0"
msgid "Value to Validate"
msgstr "crwdns131790:0crwdne131790:0"
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1124
msgid "Value too big"
msgstr "crwdns102770:0crwdne102770:0"
@@ -29075,11 +28761,6 @@ msgstr "crwdns131854:0crwdne131854:0"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -29088,9 +28769,6 @@ msgstr "crwdns131854:0crwdne131854:0"
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:399
#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
@@ -29125,11 +28803,11 @@ msgstr "crwdns131860:0crwdne131860:0"
msgid "Welcome Workspace"
msgstr "crwdns103062:0crwdne103062:0"
-#: frappe/core/doctype/user/user.py:414
+#: frappe/core/doctype/user/user.py:415
msgid "Welcome email sent"
msgstr "crwdns103064:0crwdne103064:0"
-#: frappe/core/doctype/user/user.py:475
+#: frappe/core/doctype/user/user.py:476
msgid "Welcome to {0}"
msgstr "crwdns103066:0{0}crwdne103066:0"
@@ -29162,7 +28840,7 @@ msgstr "crwdns111330:0crwdne111330:0"
#. 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:468
+#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
msgstr "crwdns103072:0crwdne103072:0"
@@ -29361,7 +29039,7 @@ msgstr "crwdns112760:0crwdne112760:0"
msgid "Workspace"
msgstr "crwdns103156:0crwdne103156:0"
-#: frappe/public/js/frappe/router.js:177
+#: frappe/public/js/frappe/router.js:173
msgid "Workspace {0} does not exist"
msgstr "crwdns103162:0{0}crwdne103162:0"
@@ -29431,11 +29109,11 @@ msgstr "crwdns148712:0{0}crwdne148712:0"
msgid "Workspaces"
msgstr "crwdns131892:0crwdne131892:0"
-#: frappe/public/js/frappe/form/footer/form_timeline.js:753
+#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
msgstr "crwdns154738:0crwdne154738:0"
-#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
msgstr "crwdns154740:0crwdne154740:0"
@@ -29454,11 +29132,11 @@ msgstr "crwdns127790:0crwdne127790:0"
msgid "Write"
msgstr "crwdns131894:0crwdne131894:0"
-#: frappe/model/base_document.py:949
+#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
msgstr "crwdns103194:0crwdne103194:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:484
+#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
msgstr "crwdns103196:0crwdne103196:0"
@@ -29477,13 +29155,13 @@ msgstr "crwdns131898:0crwdne131898:0"
msgid "Y Axis"
msgstr "crwdns131900:0crwdne131900:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:491
+#: frappe/public/js/frappe/views/reports/report_view.js:497
msgid "Y Axis Fields"
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:1221
+#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
msgstr "crwdns103206:0crwdne103206:0"
@@ -29544,7 +29222,7 @@ msgstr "crwdns131908:0crwdne131908:0"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "crwdns103238:0crwdne103238:0"
@@ -29584,11 +29262,11 @@ msgstr "crwdns111444:0crwdne111444:0"
msgid "You are not allowed to access this resource"
msgstr "crwdns151618:0crwdne151618:0"
-#: frappe/permissions.py:409
+#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "crwdns103258:0{0}crwdnd103258:0{1}crwdnd103258:0{2}crwdnd103258:0{3}crwdne103258:0"
-#: frappe/permissions.py:398
+#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "crwdns103260:0{0}crwdnd103260:0{1}crwdnd103260:0{2}crwdnd103260:0{3}crwdnd103260:0{4}crwdne103260:0"
@@ -29611,7 +29289,7 @@ msgstr "crwdns103268:0crwdne103268:0"
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:604
+#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
msgstr "crwdns103270:0crwdne103270:0"
@@ -29623,7 +29301,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:569
+#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
msgstr "crwdns103276:0crwdne103276:0"
@@ -29639,7 +29317,7 @@ msgstr "crwdns103280:0crwdne103280:0"
msgid "You are not permitted to access this page."
msgstr "crwdns103282:0crwdne103282:0"
-#: frappe/__init__.py:669
+#: frappe/__init__.py:676
msgid "You are not permitted to access this resource. Login to access"
msgstr "crwdns155350:0crwdne155350:0"
@@ -29647,7 +29325,7 @@ msgstr "crwdns155350:0crwdne155350:0"
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr "crwdns103286:0crwdne103286:0"
-#: frappe/core/doctype/installed_applications/installed_applications.py:82
+#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
msgstr "crwdns103288:0crwdne103288:0"
@@ -29811,11 +29489,11 @@ msgstr "crwdns103348:0crwdne103348:0"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "crwdns103350:0crwdne103350:0"
-#: frappe/app.py:368
+#: frappe/app.py:361
msgid "You do not have enough permissions to complete the action"
msgstr "crwdns103352:0crwdne103352:0"
-#: frappe/desk/query_report.py:838
+#: frappe/desk/query_report.py:831
msgid "You do not have permission to access {0}: {1}."
msgstr "crwdns149134:0{0}crwdnd149134:0{1}crwdne149134:0"
@@ -29827,11 +29505,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:772
+#: frappe/website/doctype/web_form/web_form.py:769
msgid "You don't have permission to access the {0} DocType."
msgstr "crwdns103364:0{0}crwdne103364:0"
-#: frappe/utils/response.py:286 frappe/utils/response.py:290
+#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
msgstr "crwdns103366:0crwdne103366:0"
@@ -29839,7 +29517,7 @@ msgstr "crwdns103366:0crwdne103366:0"
msgid "You don't have permission to get a report on: {0}"
msgstr "crwdns103368:0{0}crwdne103368:0"
-#: frappe/website/doctype/web_form/web_form.py:175
+#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
msgstr "crwdns103370:0crwdne103370:0"
@@ -29892,23 +29570,23 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr "crwdns103394:0crwdne103394:0"
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
msgstr "crwdns103396:0crwdne103396:0"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:339
+#: frappe/public/js/frappe/widgets/widget_dialog.js:352
msgid "You must add atleast one link."
msgstr "crwdns103398:0crwdne103398:0"
-#: frappe/website/doctype/web_form/web_form.py:768
+#: frappe/website/doctype/web_form/web_form.py:765
msgid "You must be logged in to use this form."
msgstr "crwdns103400:0crwdne103400:0"
-#: frappe/website/doctype/web_form/web_form.py:609
+#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
msgstr "crwdns103402:0crwdne103402:0"
-#: frappe/model/document.py:357
+#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr "crwdns151578:0{0}crwdnd151578:0{1}crwdnd151578:0{2}crwdne151578:0"
@@ -29924,11 +29602,11 @@ msgstr "crwdns103404:0crwdne103404:0"
msgid "You need to be a system user to access this page."
msgstr "crwdns112716:0crwdne112716:0"
-#: frappe/website/doctype/web_form/web_form.py:94
+#: frappe/website/doctype/web_form/web_form.py:91
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "crwdns103406:0crwdne103406:0"
-#: frappe/utils/response.py:275
+#: frappe/utils/response.py:272
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "crwdns103408:0crwdne103408:0"
@@ -29936,7 +29614,7 @@ msgstr "crwdns103408:0crwdne103408:0"
msgid "You need to be logged in to access this page"
msgstr "crwdns103410:0crwdne103410:0"
-#: frappe/website/doctype/web_form/web_form.py:164
+#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
msgstr "crwdns103412:0{0}crwdne103412:0"
@@ -30011,7 +29689,7 @@ msgstr "crwdns103436:0crwdne103436:0"
msgid "You viewed this"
msgstr "crwdns103438:0crwdne103438:0"
-#: frappe/public/js/frappe/desk.js:543
+#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr "crwdns127792:0crwdne127792:0"
@@ -30094,7 +29772,7 @@ msgstr "crwdns131910:0crwdne131910:0"
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "crwdns103468:0crwdne103468:0"
-#: frappe/app.py:361
+#: frappe/app.py:354
msgid "Your session has expired, please login again to continue."
msgstr "crwdns103470:0crwdne103470:0"
@@ -30325,7 +30003,7 @@ msgstr "crwdns131958:0crwdne131958:0"
msgid "email inbox"
msgstr "crwdns103630:0crwdne103630:0"
-#: frappe/permissions.py:403 frappe/permissions.py:414
+#: frappe/permissions.py:412 frappe/permissions.py:423
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "crwdns103632:0crwdne103632:0"
@@ -30877,7 +30555,7 @@ msgstr "crwdns104058:0{0}crwdnd104058:0{1}crwdne104058:0"
msgid "{0} Calendar"
msgstr "crwdns104060:0{0}crwdne104060:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:564
+#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
msgstr "crwdns104062:0{0}crwdne104062:0"
@@ -30925,7 +30603,7 @@ msgstr "crwdns104078:0{0}crwdne104078:0"
msgid "{0} Name"
msgstr "crwdns104082:0{0}crwdne104082:0"
-#: frappe/model/base_document.py:1149
+#: frappe/model/base_document.py:1154
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"
@@ -30935,7 +30613,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:952
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
msgstr "crwdns111368:0{0}crwdne111368:0"
@@ -31001,7 +30679,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:149
+#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
msgstr "crwdns104508:0{0}crwdnd104508:0{1}crwdne104508:0"
@@ -31014,7 +30692,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "crwdns104130:0{0}crwdnd104130:0{1}crwdne104130:0"
-#: frappe/model/document.py:547
+#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr "crwdns151848:0{0}crwdne151848:0"
@@ -31139,7 +30817,7 @@ msgstr "crwdns104204:0{0}crwdne104204:0"
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "crwdns104206:0{0}crwdne104206:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1462
+#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
msgstr "crwdns104208:0{0}crwdnd104208:0{1}crwdnd104208:0{2}crwdne104208:0"
@@ -31148,27 +30826,27 @@ msgstr "crwdns104208:0{0}crwdnd104208:0{1}crwdnd104208:0{2}crwdne104208:0"
msgid "{0} is currently {1}"
msgstr "crwdns104210:0{0}crwdnd104210:0{1}crwdne104210:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1431
+#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
msgstr "crwdns104212:0{0}crwdnd104212:0{1}crwdne104212:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1451
+#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
msgstr "crwdns104214:0{0}crwdnd104214:0{1}crwdne104214:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1441
+#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
msgstr "crwdns104216:0{0}crwdnd104216:0{1}crwdne104216:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1456
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
msgstr "crwdns104218:0{0}crwdnd104218:0{1}crwdne104218:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1446
+#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
msgstr "crwdns104220:0{0}crwdnd104220:0{1}crwdne104220:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1481
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
msgstr "crwdns104222:0{0}crwdnd104222:0{1}crwdne104222:0"
@@ -31188,7 +30866,7 @@ msgstr "crwdns104228:0{0}crwdne104228:0"
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr "crwdns104230:0{0}crwdne104230:0"
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:64
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
msgstr "crwdns111446:0{0}crwdne111446:0"
@@ -31217,11 +30895,11 @@ msgstr "crwdns104238:0{0}crwdne104238:0"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "crwdns104240:0{0}crwdne104240:0"
-#: frappe/permissions.py:787
+#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
msgstr "crwdns104242:0{0}crwdnd104242:0{1}crwdne104242:0"
-#: frappe/permissions.py:807
+#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
msgstr "crwdns104244:0{0}crwdnd104244:0{1}crwdne104244:0"
@@ -31233,27 +30911,27 @@ msgstr "crwdns104246:0{0}crwdnd104246:0{1}crwdne104246:0"
msgid "{0} is not a zip file"
msgstr "crwdns104248:0{0}crwdne104248:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1436
+#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
msgstr "crwdns104250:0{0}crwdnd104250:0{1}crwdne104250:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1483
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
msgstr "crwdns104252:0{0}crwdnd104252:0{1}crwdne104252:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
msgstr "crwdns104254:0{0}crwdnd104254:0{1}crwdne104254:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1487
+#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
msgstr "crwdns104256:0{0}crwdne104256:0"
-#: frappe/printing/doctype/print_format/print_format.py:165
+#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
msgstr "crwdns104258:0{0}crwdnd104258:0{1}crwdne104258:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1470
+#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
msgstr "crwdns104260:0{0}crwdnd104260:0{1}crwdne104260:0"
@@ -31264,11 +30942,11 @@ msgstr "crwdns104260:0{0}crwdnd104260:0{1}crwdne104260:0"
msgid "{0} is required"
msgstr "crwdns104262:0{0}crwdne104262:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1486
+#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
msgstr "crwdns104264:0{0}crwdne104264:0"
-#: frappe/public/js/frappe/views/reports/report_view.js:1465
+#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
msgstr "crwdns104266:0{0}crwdnd104266:0{1}crwdne104266:0"
@@ -31276,12 +30954,12 @@ msgstr "crwdns104266:0{0}crwdnd104266:0{1}crwdne104266:0"
msgid "{0} items selected"
msgstr "crwdns104268:0{0}crwdne104268:0"
-#: frappe/core/doctype/user/user.py:1378
+#: frappe/core/doctype/user/user.py:1380
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "crwdns111448:0{0}crwdnd111448:0{1}crwdne111448:0"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:104
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
msgstr "crwdns104270:0{0}crwdne104270:0"
@@ -31297,7 +30975,7 @@ msgstr "crwdns104274:0{0}crwdnd104274:0{1}crwdne104274:0"
msgid "{0} m"
msgstr "crwdns104276:0{0}crwdne104276:0"
-#: frappe/desk/notifications.py:397
+#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
msgstr "crwdns104278:0{0}crwdnd104278:0{1}crwdnd104278:0{2}crwdne104278:0"
@@ -31309,35 +30987,35 @@ msgstr "crwdns104280:0{0}crwdne104280:0"
msgid "{0} months ago"
msgstr "crwdns104282:0{0}crwdne104282:0"
-#: frappe/model/document.py:1792
+#: frappe/model/document.py:1791
msgid "{0} must be after {1}"
msgstr "crwdns104284:0{0}crwdnd104284:0{1}crwdne104284:0"
-#: frappe/model/document.py:1551
+#: frappe/model/document.py:1550
msgid "{0} must be beginning with '{1}'"
msgstr "crwdns148714:0{0}crwdnd148714:0{1}crwdne148714:0"
-#: frappe/model/document.py:1553
+#: frappe/model/document.py:1552
msgid "{0} must be equal to '{1}'"
msgstr "crwdns148716:0{0}crwdnd148716:0{1}crwdne148716:0"
-#: frappe/model/document.py:1549
+#: frappe/model/document.py:1548
msgid "{0} must be none of {1}"
msgstr "crwdns148718:0{0}crwdnd148718:0{1}crwdne148718:0"
-#: frappe/model/document.py:1547 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "crwdns104286:0{0}crwdnd104286:0{1}crwdne104286:0"
-#: frappe/model/base_document.py:875
+#: frappe/model/base_document.py:876
msgid "{0} must be set first"
msgstr "crwdns104288:0{0}crwdne104288:0"
-#: frappe/model/base_document.py:732
+#: frappe/model/base_document.py:729
msgid "{0} must be unique"
msgstr "crwdns104290:0{0}crwdne104290:0"
-#: frappe/model/document.py:1555
+#: frappe/model/document.py:1554
msgid "{0} must be {1} {2}"
msgstr "crwdns148720:0{0}crwdnd148720:0{1}crwdnd148720:0{2}crwdne148720:0"
@@ -31412,7 +31090,7 @@ msgstr "crwdns104320:0{0}crwdne104320:0"
msgid "{0} role does not have permission on any doctype"
msgstr "crwdns111370:0{0}crwdne111370:0"
-#: frappe/model/document.py:1785
+#: frappe/model/document.py:1784
msgid "{0} row #{1}: "
msgstr "crwdns152018:0{0}crwdnd152018:0#{1}crwdne152018:0"
@@ -31508,11 +31186,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:665 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:662 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:982
+#: frappe/model/base_document.py:987
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"
@@ -31528,7 +31206,7 @@ msgstr "crwdns104378:0{0}crwdnd104378:0{1}crwdne104378:0"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "crwdns104380:0{0}crwdnd104380:0{1}crwdnd104380:0{2}crwdne104380:0"
-#: frappe/model/document.py:260 frappe/permissions.py:558
+#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
msgstr "crwdns104382:0{0}crwdnd104382:0{1}crwdne104382:0"
@@ -31536,7 +31214,7 @@ msgstr "crwdns104382:0{0}crwdnd104382:0{1}crwdne104382:0"
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:1110
+#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
msgstr "crwdns104386:0{0}crwdnd104386:0{1}crwdne104386:0"
@@ -31544,7 +31222,7 @@ 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:1115
+#: frappe/model/base_document.py:1120
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"
@@ -31645,7 +31323,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:1279
+#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
msgstr "crwdns104436:0{0}crwdnd104436:0{1}crwdnd104436:0{2}crwdne104436:0"
diff --git a/frappe/locale/es.po b/frappe/locale/es.po
index fe8d715b07..b44ca7bbac 100644
--- a/frappe/locale/es.po
+++ b/frappe/locale/es.po
@@ -2,14 +2,14 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-08 09:34+0000\n"
-"PO-Revision-Date: 2025-06-16 15:29\n"
+"POT-Creation-Date: 2025-06-22 09:34+0000\n"
+"PO-Revision-Date: 2025-06-22 16:40\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Spanish\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.13.1\n"
+"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"
@@ -141,7 +141,7 @@ msgstr "1 Día"
msgid "1 Google Calendar Event synced."
msgstr "1 evento de Google Calendar sincronizado."
-#: frappe/public/js/frappe/views/reports/query_report.js:951
+#: frappe/public/js/frappe/views/reports/query_report.js:953
msgid "1 Report"
msgstr "1 Informe"
@@ -149,7 +149,7 @@ msgstr "1 Informe"
msgid "1 comment"
msgstr "1 comentario"
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:711
msgid "1 day ago"
msgstr "Hace 1 día"
@@ -158,17 +158,17 @@ msgid "1 hour"
msgstr "1 hora"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:709
msgid "1 hour ago"
msgstr "Hace una hora"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:707
msgid "1 minute ago"
msgstr "Hace un minuto"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:715
msgid "1 month ago"
msgstr "Hace 1 mes"
@@ -180,37 +180,37 @@ msgstr "1 de 2"
msgid "1 record will be exported"
msgstr "Se exportará 1 registro"
-#: frappe/tests/test_utils.py:705
+#: frappe/tests/test_utils.py:706
msgid "1 second ago"
msgstr "Hace 1 segundo"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:713
msgid "1 week ago"
msgstr "Hace 1 semana"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:717
msgid "1 year ago"
msgstr "Hace 1 año"
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:710
msgid "2 hours ago"
msgstr "Hace 2 horas"
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:716
msgid "2 months ago"
msgstr "Hace 2 meses"
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:714
msgid "2 weeks ago"
msgstr "Hace 2 semanas"
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:718
msgid "2 years ago"
msgstr "Hace 2 años"
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:708
msgid "3 minutes ago"
msgstr "Hace 3 minutos"
@@ -226,7 +226,7 @@ msgstr "4 horas"
msgid "5 Records"
msgstr "5 registros"
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:712
msgid "5 days ago"
msgstr "Hace 5 días"
@@ -246,7 +246,7 @@ msgstr "<"
msgid "<="
msgstr "<="
-#: frappe/public/js/frappe/widgets/widget_dialog.js:588
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
msgid "{0} is not a valid URL"
msgstr "{0} no es una URL válida"
@@ -790,10 +790,7 @@ msgid "API"
msgstr "API"
#. Label of the api_access (Section Break) field in DocType 'User'
-#. Label of the api_access_section (Section Break) field in DocType 'S3 Backup
-#. Settings'
#: frappe/core/doctype/user/user.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "API Access"
msgstr "Acceso API"
@@ -905,17 +902,6 @@ msgstr "Quedan aproximadamente {0} segundos"
msgid "Access Control"
msgstr "Control de acceso"
-#. Label of the access_key_id (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key ID"
-msgstr "ID de Clave de Acceso"
-
-#. Label of the secret_access_key (Password) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key Secret"
-msgstr "Secreto de clave de acceso"
-
#. Name of a DocType
#. Label of a Link in the Users Workspace
#: frappe/core/doctype/access_log/access_log.json
@@ -966,6 +952,10 @@ msgstr "Gerente de Cuentas"
msgid "Accounts User"
msgstr "Usuario de Cuentas"
+#: 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'
@@ -996,7 +986,7 @@ msgstr "Acción / Ruta"
msgid "Action Complete"
msgstr "Acción completada"
-#: frappe/model/document.py:1872
+#: frappe/model/document.py:1871
msgid "Action Failed"
msgstr "Acción Fallida"
@@ -1045,10 +1035,10 @@ msgstr "La acción {0} falló en {1} {2}. Véalo en {3}"
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:192
-#: frappe/public/js/frappe/views/reports/query_report.js:205
-#: frappe/public/js/frappe/views/reports/query_report.js:215
-#: frappe/public/js/frappe/views/reports/query_report.js:845
+#: frappe/public/js/frappe/views/reports/query_report.js:190
+#: frappe/public/js/frappe/views/reports/query_report.js:203
+#: frappe/public/js/frappe/views/reports/query_report.js:213
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Actions"
msgstr "Acciones"
@@ -1110,8 +1100,8 @@ msgstr "Registro de Actividad"
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:267
-#: frappe/public/js/frappe/views/reports/query_report.js:295
+#: frappe/public/js/frappe/views/reports/query_report.js:265
+#: frappe/public/js/frappe/views/reports/query_report.js:293
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Agregar"
@@ -1152,7 +1142,7 @@ msgstr "Añadir borde al principio"
msgid "Add Card to Dashboard"
msgstr "Agregar Tarjeta al tablero"
-#: frappe/public/js/frappe/views/reports/query_report.js:211
+#: frappe/public/js/frappe/views/reports/query_report.js:209
msgid "Add Chart to Dashboard"
msgstr "Agregar gráfico al tablero"
@@ -1161,10 +1151,10 @@ 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:1769
-#: frappe/public/js/frappe/views/reports/query_report.js:1772
-#: frappe/public/js/frappe/views/reports/report_view.js:349
-#: frappe/public/js/frappe/views/reports/report_view.js:374
+#: frappe/public/js/frappe/views/reports/query_report.js:1771
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/report_view.js:355
+#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
msgstr "Añadir Columna"
@@ -1188,7 +1178,7 @@ msgid "Add Custom Tags"
msgstr "Agregar etiquetas personalizadas"
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
-#: frappe/public/js/frappe/widgets/widget_dialog.js:703
+#: frappe/public/js/frappe/widgets/widget_dialog.js:716
msgid "Add Filters"
msgstr "Agregar filtros"
@@ -1223,7 +1213,7 @@ msgstr "Agregar Participantes"
msgid "Add Query Parameters"
msgstr "Agregar parámetros de consulta"
-#: frappe/core/doctype/user/user.py:806
+#: frappe/core/doctype/user/user.py:808
msgid "Add Roles"
msgstr "Añadir Roles"
@@ -1368,7 +1358,7 @@ msgid "Add tab"
msgstr "Agregar pestaña"
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:253
+#: frappe/public/js/frappe/views/reports/query_report.js:251
msgid "Add to Dashboard"
msgstr "Agregar al tablero"
@@ -1523,11 +1513,11 @@ msgstr "Administración"
msgid "Administrator"
msgstr "Administrador"
-#: frappe/core/doctype/user/user.py:1211
+#: frappe/core/doctype/user/user.py:1213
msgid "Administrator Logged In"
msgstr "Administrador logeado"
-#: frappe/core/doctype/user/user.py:1205
+#: frappe/core/doctype/user/user.py:1207
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "Acceso de Administrador {0} en {1} a través de la dirección IP {2}."
@@ -1760,12 +1750,6 @@ msgstr "Permitir edición masiva"
msgid "Allow Consecutive Login Attempts "
msgstr "Permitir intentos de inicio de sesión consecutivos "
-#. Label of the allow_dropbox_access (Button) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Allow Dropbox Access"
-msgstr "Permitir Acceso a Dropbox"
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
msgid "Allow Google Calendar Access"
msgstr "Permitir acceso a Google Calendar"
@@ -1774,10 +1758,6 @@ msgstr "Permitir acceso a Google Calendar"
msgid "Allow Google Contacts Access"
msgstr "Permitir acceso a contactos de Google"
-#: frappe/integrations/doctype/google_drive/google_drive.py:52
-msgid "Allow Google Drive Access"
-msgstr "Permitir Acceso a Google Drive"
-
#. Label of the allow_guest (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
@@ -2032,7 +2012,7 @@ msgstr "Dominios integrados permitidos"
msgid "Allowing DocType, DocType. Be careful!"
msgstr "Precaución, autorizando 'DocType'"
-#: frappe/core/doctype/user/user.py:1021
+#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr "Ya está Registrado"
@@ -2040,11 +2020,11 @@ msgstr "Ya está Registrado"
msgid "Already in the following Users ToDo list:{0}"
msgstr "Ya en la siguiente lista de tareas pendientes de los usuarios: {0}"
-#: frappe/public/js/frappe/views/reports/report_view.js:896
+#: frappe/public/js/frappe/views/reports/report_view.js:902
msgid "Also adding the dependent currency field {0}"
msgstr "También se agrega el campo de moneda dependiente {0}"
-#: frappe/public/js/frappe/views/reports/report_view.js:909
+#: frappe/public/js/frappe/views/reports/report_view.js:915
msgid "Also adding the status dependency field {0}"
msgstr "También se agrega el campo de dependencia de estado {0}"
@@ -2123,7 +2103,7 @@ msgstr "Corrigiento"
msgid "Amendment Naming Override"
msgstr "Sobrescribir la nomenclatura rectificada"
-#: frappe/model/document.py:550
+#: frappe/model/document.py:549
msgid "Amendment Not Allowed"
msgstr "Enmienda no permitida"
@@ -2212,15 +2192,6 @@ msgstr "Además del Administrador del sistema, los roles con el derecho \"Establ
msgid "App"
msgstr "App"
-#. Label of the app_access_key (Data) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Access Key"
-msgstr "Clave de Acceso de Aplicación"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:22
-msgid "App Access Key and/or Secret Key are not present."
-msgstr "La clave de acceso a la aplicación y/o la clave secreta no están presentes."
-
#. Label of the client_id (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client ID"
@@ -2254,16 +2225,11 @@ msgstr "Logo de la App"
msgid "App Name"
msgstr "Nombre de la Aplicación"
-#. Label of the app_secret_key (Password) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Secret Key"
-msgstr "Clave Secreta de Aplicación"
-
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr "App no encontrada para el módulo: {0}"
-#: frappe/__init__.py:1462
+#: frappe/__init__.py:1465
msgid "App {0} is not installed"
msgstr "Aplicación {0} no está instalada"
@@ -2413,7 +2379,7 @@ msgstr "Columnas archivados"
msgid "Are you sure you want to clear the assignments?"
msgstr "¿Está seguro de que desea borrar las asignaciones?"
-#: frappe/public/js/frappe/form/grid.js:290
+#: frappe/public/js/frappe/form/grid.js:294
msgid "Are you sure you want to delete all rows?"
msgstr "¿Seguro que quieres eliminar todas las filas?"
@@ -2441,7 +2407,7 @@ msgstr "¿Está seguro de que desea eliminar la sección? Todas las columnas y l
msgid "Are you sure you want to discard the changes?"
msgstr "¿Realmente quieres descartar los cambios?"
-#: frappe/public/js/frappe/views/reports/query_report.js:965
+#: frappe/public/js/frappe/views/reports/query_report.js:967
msgid "Are you sure you want to generate a new report?"
msgstr "¿Está seguro de que desea generar un nuevo informe?"
@@ -2567,7 +2533,7 @@ msgstr "Asignado por"
msgid "Assigned By Full Name"
msgstr "Asignado por Nombre Completo"
-#: frappe/model/meta.py:60
+#: 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
@@ -2837,13 +2803,11 @@ msgstr "Autor"
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
#. Contacts'
-#. Label of the authorization_code (Data) field in DocType 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
@@ -2881,12 +2845,6 @@ msgstr "Autorizar acceso a Google Calendar"
msgid "Authorize Google Contacts Access"
msgstr "Autorizar acceso a contactos de Google"
-#. Label of the authorize_google_drive_access (Button) field in DocType 'Google
-#. Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Authorize Google Drive Access"
-msgstr "Autorizar acceso a Google Drive"
-
#. 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"
@@ -3033,11 +2991,11 @@ msgstr "Mensaje automático"
msgid "Automatic"
msgstr "Automático"
-#: frappe/email/doctype/email_account/email_account.py:774
+#: frappe/email/doctype/email_account/email_account.py:772
msgid "Automatic Linking can be activated only for one Email Account."
msgstr "La vinculación automática solo se puede activar para una cuenta de correo electrónico."
-#: frappe/email/doctype/email_account/email_account.py:768
+#: frappe/email/doctype/email_account/email_account.py:766
msgid "Automatic Linking can be activated only if Incoming is enabled."
msgstr "La vinculación automática solo se puede activar si está entrante habilitado."
@@ -3251,66 +3209,14 @@ msgstr "Impresión en segundo plano (requerida para >25 documentos)"
msgid "Background Workers"
msgstr "Procesos en segundo plano"
-#: frappe/integrations/doctype/google_drive/google_drive.py:170
-msgid "Backing up Data."
-msgstr "Respaldando datos."
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:32
-msgid "Backing up to Google Drive."
-msgstr "Copia de seguridad en Google Drive."
-
-#. Label of a Card Break in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Backup"
-msgstr "Copia de Seguridad"
-
-#. Label of the backup_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Details"
-msgstr "Detalles de la copia de seguridad"
-
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
msgstr "Clave de Cifrado de Copia de Seguridad"
-#. Label of the backup_files (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Files"
-msgstr "Archivos de respaldo"
-
-#. Label of the backup_folder_id (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder ID"
-msgstr "ID de carpeta de respaldo"
-
-#. Label of the backup_folder_name (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder Name"
-msgstr "Nombre de la carpeta de respaldo"
-
-#. Label of the backup_frequency (Select) field in DocType 'Dropbox Settings'
-#. Label of the frequency (Select) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Frequency"
-msgstr "Frecuencia de copia de seguridad"
-
-#. Label of the backup_path (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Path"
-msgstr ""
-
#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
msgstr "El trabajo de copia de seguridad ya está en cola. Recibirá un correo electrónico con el enlace de descarga"
-#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup public and private files along with the database."
-msgstr "Copia de seguridad de archivos públicos y privados junto con la base de datos."
-
#. 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'
@@ -3324,7 +3230,7 @@ msgstr "Copias de seguridad"
msgid "Backups (MB)"
msgstr "Copias de seguridad (MB)"
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:65
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
msgid "Bad Cron Expression"
msgstr "Mala expresión de Cron"
@@ -3722,15 +3628,6 @@ msgstr "Navegador no compatible"
msgid "Brute Force Security"
msgstr "Fuerza Bruta de Seguridad"
-#. Label of the bucket (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Bucket Name"
-msgstr "Nombre del depósito"
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:71
-msgid "Bucket {0} not found."
-msgstr "Cesta {0} no encontrada."
-
#. 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"
@@ -3767,7 +3664,7 @@ msgstr "Eliminar a granel"
msgid "Bulk Edit"
msgstr "Edición masiva"
-#: frappe/public/js/frappe/form/grid.js:1184
+#: frappe/public/js/frappe/form/grid.js:1188
msgid "Bulk Edit {0}"
msgstr "Editar en masa {0}"
@@ -3842,12 +3739,6 @@ msgstr "Por el campo \"Serie de nombres\""
msgid "By default the title is used as meta title, adding a value here will override it."
msgstr "Por defecto, el título se usa como meta título, agregar un valor aquí lo anulará."
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "By default, emails are only sent for failed backups."
-msgstr "Por defecto, sólo se envían correos electrónicos en caso de copias de seguridad fallidas."
-
#. 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
@@ -4158,7 +4049,7 @@ msgstr "No se pueden recuperar valores"
msgid "Cannot Remove"
msgstr "No se puede quitar"
-#: frappe/model/base_document.py:1156
+#: frappe/model/base_document.py:1161
msgid "Cannot Update After Submit"
msgstr "No se puede Actualizar Después de Validar"
@@ -4178,11 +4069,11 @@ msgstr "No se puede cancelar antes de validar. Ver Transición {0}"
msgid "Cannot cancel {0}."
msgstr "No se puede cancelar {0}."
-#: frappe/model/document.py:1012
+#: frappe/model/document.py:1011
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr "No se puede cambiar el estado del documento de 0 (Borrador) a 2 (Cancelado)"
-#: frappe/model/document.py:1026
+#: frappe/model/document.py:1025
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "No se puede cambiar el estado del documento de 1 (Validado) a 0 (Borrador)"
@@ -4265,7 +4156,7 @@ msgstr "No se puede editar gráficos estándar"
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "No se puede editar un informe estándar. Por favor, duplicar y crear un nuevo informe"
-#: frappe/model/document.py:1032
+#: frappe/model/document.py:1031
msgid "Cannot edit cancelled document"
msgstr "No se puede editar un documento cancelado"
@@ -4298,11 +4189,11 @@ 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:1128
+#: frappe/public/js/frappe/form/grid.js:1132
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1100
+#: frappe/model/document.py:1099
msgid "Cannot link cancelled document: {0}"
msgstr "No se puede vincular al documento anulado: {0}"
@@ -4318,7 +4209,7 @@ msgstr "No se puede hacer coincidir la columna {0} con ningún campo"
msgid "Cannot move row"
msgstr "No se puede mover la fila"
-#: frappe/public/js/frappe/views/reports/report_view.js:921
+#: frappe/public/js/frappe/views/reports/report_view.js:927
msgid "Cannot remove ID field"
msgstr "No se puede eliminar el campo ID"
@@ -4343,11 +4234,11 @@ msgstr "No se puede validar {0}."
msgid "Cannot update {0}"
msgstr "No se puede Actualizar {0}"
-#: frappe/model/db_query.py:1125
+#: frappe/model/db_query.py:1126
msgid "Cannot use sub-query in order by"
msgstr "No se puede utilizar sub-query en order by"
-#: frappe/model/db_query.py:1144
+#: frappe/model/db_query.py:1145
msgid "Cannot use {0} in order/group by"
msgstr "No se puede utilizar {0} en ordenar/agrupar por"
@@ -4373,7 +4264,7 @@ msgstr "Tarjeta"
msgid "Card Break"
msgstr "Salto de tarjeta"
-#: frappe/public/js/frappe/views/reports/query_report.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:261
msgid "Card Label"
msgstr "Etiqueta de tarjeta"
@@ -4516,7 +4407,7 @@ msgstr "Configuración de gráfico"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:290
+#: frappe/public/js/frappe/views/reports/query_report.js:288
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Nombre del Gráfico"
@@ -4536,7 +4427,7 @@ msgstr "Fuente del gráfico"
#. 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:499
+#: frappe/public/js/frappe/views/reports/report_view.js:505
msgid "Chart Type"
msgstr "Tipo de Gráfico"
@@ -4650,7 +4541,7 @@ msgstr "Tabla secundaria {0} para el campo {1}"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Las tablas secundarias se muestran como una cuadrícula en otros DocTypes"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:638
+#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "Elija una tarjeta existente o cree una nueva tarjeta"
@@ -4743,10 +4634,6 @@ msgstr "Click aquí"
msgid "Click here to verify"
msgstr "Haga clic aquí para verificar"
-#: frappe/integrations/doctype/google_drive/google_drive.js:47
-msgid "Click on Authorize Google Drive Access to authorize Google Drive Access."
-msgstr "Haga clic en Autorizar acceso a Google Drive para autorizar el acceso a Google Drive."
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "Haga clic en un archivo para seleccionarlo."
@@ -4773,7 +4660,6 @@ msgstr "Haga clic en el enlace a continuación para verificar su solicitud"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
-#: frappe/integrations/doctype/google_drive/google_drive.py:53
#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
msgstr "Haga clic en {0} para generar el token de actualización."
@@ -4947,7 +4833,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Colapso"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Desplegar todo"
@@ -5002,9 +4888,9 @@ 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:1229
-#: frappe/public/js/frappe/widgets/widget_dialog.js:533
-#: frappe/public/js/frappe/widgets/widget_dialog.js:681
+#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: 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
@@ -5145,7 +5031,7 @@ msgstr "Límite de Comentarios por hora"
msgid "Comment publicity can only be updated by the original author or a System Manager."
msgstr ""
-#: frappe/model/meta.py:59 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/model/meta.js:209
#: frappe/public/js/frappe/model/model.js:135
#: frappe/website/doctype/web_form/templates/web_form.html:122
@@ -5252,7 +5138,7 @@ msgstr "Completar"
msgid "Complete By"
msgstr "Completado por"
-#: frappe/core/doctype/user/user.py:477
+#: frappe/core/doctype/user/user.py:478
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Registro completo"
@@ -5348,7 +5234,7 @@ msgstr "Condiciones"
msgid "Configuration"
msgstr "Configuración"
-#: frappe/public/js/frappe/views/reports/report_view.js:481
+#: frappe/public/js/frappe/views/reports/report_view.js:487
msgid "Configure Chart"
msgstr "Configurar el Gráfico"
@@ -5687,7 +5573,7 @@ msgstr "Versión correcta:"
msgid "Could not connect to outgoing email server"
msgstr "No se pudo conectar con el servidor de correo electrónico saliente"
-#: frappe/model/document.py:1096
+#: frappe/model/document.py:1095
msgid "Could not find {0}"
msgstr "No se pudo encontrar {0}"
@@ -5716,7 +5602,7 @@ msgstr "No se pudo guardar, verifique los datos que ingresó"
msgid "Count"
msgstr "Contar"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:527
+#: frappe/public/js/frappe/widgets/widget_dialog.js:540
msgid "Count Customizations"
msgstr "Contar personalizaciones"
@@ -5724,10 +5610,14 @@ msgstr "Contar personalizaciones"
#. 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:512
+#: frappe/public/js/frappe/widgets/widget_dialog.js:525
msgid "Count Filter"
msgstr "Filtro de recuento"
+#: 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"
@@ -5778,7 +5668,7 @@ msgstr "Cr"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1261
+#: frappe/public/js/frappe/views/reports/query_report.js:1263
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5792,13 +5682,13 @@ msgstr "Crear y Continuar"
msgid "Create Address"
msgstr "Crear dirección"
-#: frappe/public/js/frappe/views/reports/query_report.js:188
-#: frappe/public/js/frappe/views/reports/query_report.js:233
+#: frappe/public/js/frappe/views/reports/query_report.js:186
+#: frappe/public/js/frappe/views/reports/query_report.js:231
msgid "Create Card"
msgstr "Crear tarjeta"
-#: frappe/public/js/frappe/views/reports/query_report.js:286
-#: frappe/public/js/frappe/views/reports/query_report.js:1188
+#: frappe/public/js/frappe/views/reports/query_report.js:284
+#: frappe/public/js/frappe/views/reports/query_report.js:1190
msgid "Create Chart"
msgstr "Crear gráfico"
@@ -5909,7 +5799,7 @@ msgstr "Creado"
msgid "Created At"
msgstr "Creado el"
-#: frappe/model/meta.py:56
+#: 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
@@ -5921,14 +5811,14 @@ msgid "Created Custom Field {0} in {1}"
msgstr "Creado campo personalizado {0} en {1}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241
-#: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:51
+#: 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 "Creado el"
-#: frappe/public/js/frappe/desk.js:515
+#: frappe/public/js/frappe/desk.js:523
#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
msgstr "Creando {0}"
@@ -5951,7 +5841,7 @@ msgstr "Cron"
msgid "Cron Format"
msgstr "Formato Cron"
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:59
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
msgstr "El formato Cron es necesario para los tipos de trabajo con frecuencia Cron."
@@ -6348,11 +6238,6 @@ msgstr "BORRADOR"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -6361,9 +6246,6 @@ msgstr "BORRADOR"
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:398
#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
@@ -6917,7 +6799,7 @@ msgstr "Retrasado"
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/toolbar.js:461
-#: frappe/public/js/frappe/views/reports/report_view.js:1734
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
@@ -6960,7 +6842,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Eliminar pestaña"
-#: frappe/public/js/frappe/views/reports/query_report.js:932
+#: frappe/public/js/frappe/views/reports/query_report.js:934
msgid "Delete and Generate New"
msgstr "Eliminar y Generar Nuevo"
@@ -6969,7 +6851,7 @@ msgctxt "Button text"
msgid "Delete column"
msgstr "Eliminar columna"
-#: frappe/public/js/frappe/form/footer/form_timeline.js:738
+#: frappe/public/js/frappe/form/footer/form_timeline.js:741
msgid "Delete comment?"
msgstr "¿Eliminar comentario?"
@@ -7055,7 +6937,7 @@ msgstr "Eliminando {0}"
msgid "Deleting {0} records..."
msgstr "Eliminando {0} registros..."
-#: frappe/public/js/frappe/model/model.js:741
+#: frappe/public/js/frappe/model/model.js:692
msgid "Deleting {0}..."
msgstr "Eliminando {0}..."
@@ -7101,7 +6983,7 @@ msgstr "Departamento"
#. 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:310
+#: frappe/public/js/frappe/widgets/widget_dialog.js:323
#: frappe/www/attribution.html:29
msgid "Dependencies"
msgstr "Dependencias"
@@ -7215,6 +7097,7 @@ msgstr "Tema de Escritorio"
#: 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
@@ -7512,14 +7395,10 @@ 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:1189
+#: frappe/public/js/frappe/form/grid.js:1193
msgid "Do not edit headers which are preset in the template"
msgstr "No edite los encabezados que están preestablecidos en la plantilla"
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:69
-msgid "Do not have permission to access bucket {0}."
-msgstr "No tienes permiso para acceder al bucket {0}."
-
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr "¿Aún quiere continuar?"
@@ -7655,7 +7534,7 @@ msgstr "DocType Estado"
#. 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:466
+#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
msgstr "Vista DocType"
@@ -7715,7 +7594,7 @@ msgstr "Los DocTypes no se pueden modificar, utilice {0} en su lugar"
#. 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:669
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
msgid "Doctype"
msgstr "Doctype"
@@ -7833,7 +7712,7 @@ msgstr "Condición de la regla de nomenclatura de documentos"
msgid "Document Naming Settings"
msgstr "Configuración de Nombres de documentos"
-#: frappe/model/document.py:477
+#: frappe/model/document.py:476
msgid "Document Queued"
msgstr "Documento en Cola"
@@ -7886,7 +7765,7 @@ msgstr "Reporte de documentos compartidos"
msgid "Document States"
msgstr "Estados del Documento"
-#: frappe/model/meta.py:52 frappe/public/js/frappe/model/meta.js:202
+#: 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 "Estado del Documento"
@@ -7957,11 +7836,11 @@ msgstr "Tipo de Documento"
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"
-#: frappe/permissions.py:148
+#: frappe/permissions.py:149
msgid "Document Type is not importable"
msgstr "El tipo de documento no es importable"
-#: frappe/permissions.py:144
+#: frappe/permissions.py:145
msgid "Document Type is not submittable"
msgstr "El tipo de documento no se puede ser validado"
@@ -7990,7 +7869,7 @@ msgid "Document Types and Permissions"
msgstr "Tipos de documentos y permisos"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1943
+#: frappe/model/document.py:1942
msgid "Document Unlocked"
msgstr "Documento desbloqueado"
@@ -8181,7 +8060,7 @@ msgstr "Enlace de descarga"
msgid "Download PDF"
msgstr "Descargar PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:835
+#: frappe/public/js/frappe/views/reports/query_report.js:830
msgid "Download Report"
msgstr "Descargar Informe"
@@ -8192,7 +8071,7 @@ msgstr "Descargar plantilla"
#: 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:57
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
msgid "Download Your Data"
msgstr "Descargue sus datos"
@@ -8248,29 +8127,6 @@ msgstr "Arrastrar para añadir estado"
msgid "Drop files here"
msgstr "Soltar archivos aquí"
-#. Label of the dropbox_access_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Access Token"
-msgstr "Token de Acceso de Dropbox"
-
-#. Label of the dropbox_refresh_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Refresh Token"
-msgstr "Token de Actualización de Dropbox"
-
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Dropbox Settings"
-msgstr "Ajustes de Dropbox"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:347
-msgid "Dropbox Setup"
-msgstr "Configuración de Dropbox"
-
#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
@@ -8300,7 +8156,7 @@ msgstr "Entrada duplicada"
msgid "Duplicate Filter Name"
msgstr "Nombre de Fltro Duplicado"
-#: frappe/model/base_document.py:666 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Nombre duplicado"
@@ -8399,13 +8255,13 @@ msgstr "ESC"
#: 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:668
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:669
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:883
-#: frappe/public/js/frappe/views/reports/query_report.js:1722
+#: frappe/public/js/frappe/views/reports/query_report.js:878
+#: frappe/public/js/frappe/views/reports/query_report.js:1724
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8568,7 +8424,7 @@ msgstr "Editar su respuesta"
msgid "Edit your workflow visually using the Workflow Builder."
msgstr "Cree su flujo de trabajo visualmente utilizando el Constructor de Flujo de Trabajo."
-#: frappe/public/js/frappe/views/reports/report_view.js:672
+#: frappe/public/js/frappe/views/reports/report_view.js:678
#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
msgstr "Editar {0}"
@@ -8669,7 +8525,7 @@ msgstr "Cuenta de correo desactivada."
msgid "Email Account Name"
msgstr "Cuenta de correo electrónico"
-#: frappe/core/doctype/user/user.py:736
+#: frappe/core/doctype/user/user.py:738
msgid "Email Account added multiple times"
msgstr "Cuenta de correo electrónico añadida varias veces"
@@ -8677,7 +8533,7 @@ msgstr "Cuenta de correo electrónico añadida varias veces"
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
msgstr "Cuenta de correo electrónico no configurada. Por favor, cree una nueva cuenta de correo electrónico desde Configuración > Cuenta de correo electrónico"
-#: frappe/email/doctype/email_account/email_account.py:578
+#: frappe/email/doctype/email_account/email_account.py:576
msgid "Email Account {0} Disabled"
msgstr ""
@@ -8903,7 +8759,7 @@ msgstr "Correos"
msgid "Emails Pulled"
msgstr "Correos electrónicos descargados"
-#: frappe/email/doctype/email_account/email_account.py:936
+#: frappe/email/doctype/email_account/email_account.py:934
msgid "Emails are already being pulled from this account."
msgstr "Ya se están descargando los correos electrónicos de esta cuenta."
@@ -8926,11 +8782,9 @@ msgstr "Columna vacía"
#. 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 Drive'
#. 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_drive/google_drive.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
msgstr "Habilitar"
@@ -8950,11 +8804,6 @@ msgstr "Habilite Permitir repetición automática para el doctype {0} en Persona
msgid "Enable Auto Reply"
msgstr "Habilitar Respuesta Automática"
-#. Label of the enabled (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Enable Automatic Backup"
-msgstr "Activar Copia de Seguridad Automática"
-
#. Label of the enable_automatic_linking (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -9114,7 +8963,6 @@ msgstr "Activar seguimiento de sitios web en la aplicación"
#. 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 'Dropbox Settings'
#. 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'
@@ -9125,7 +8973,6 @@ msgstr "Activar seguimiento de sitios web en la aplicación"
#: 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/dropbox_settings/dropbox_settings.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/public/js/frappe/model/indicator.js:106
@@ -9138,7 +8985,7 @@ msgstr "Habilitado"
msgid "Enabled Scheduler"
msgstr "Programador habilitado"
-#: frappe/email/doctype/email_account/email_account.py:1012
+#: frappe/email/doctype/email_account/email_account.py:1010
msgid "Enabled email inbox for user {0}"
msgstr "Bandeja de entrada de correo electrónico habilitada para el usuario {0}"
@@ -9219,11 +9066,6 @@ msgstr "¡La Fecha de Finalización no puede ser anterior a la Fecha de Inicio!"
msgid "Ended At"
msgstr "Terminado a las"
-#. Label of the endpoint_url (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Endpoint URL"
-msgstr "URL de Endpoint"
-
#. Label of the sb_endpoints_section (Section Break) field in DocType
#. 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -9402,7 +9244,7 @@ msgstr "Error en la Notificación"
msgid "Error in print format on line {0}: {1}"
msgstr "Error en formato de impresión en línea {0}: {1}"
-#: frappe/email/doctype/email_account/email_account.py:672
+#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "Error al conectarte a la cuenta de correo electrónico {0}"
@@ -9410,15 +9252,15 @@ msgstr "Error al conectarte a la cuenta de correo electrónico {0}"
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:806
+#: frappe/model/base_document.py:803
msgid "Error: Data missing in table {0}"
msgstr "Error: Faltan datos en la tabla {0}"
-#: frappe/model/base_document.py:816
+#: frappe/model/base_document.py:813
msgid "Error: Value missing for {0}: {1}"
msgstr "Error: falta el valor para {0}: {1}"
-#: frappe/model/base_document.py:810
+#: frappe/model/base_document.py:807
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "Error: {0} Fila #{1}: Valor faltante para: {2}"
@@ -9567,7 +9409,7 @@ msgstr ""
msgid "Executing..."
msgstr "Ejecutando..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2069
+#: frappe/public/js/frappe/views/reports/query_report.js:2071
msgid "Execution Time: {0} sec"
msgstr "Tiempo de ejecución: {0} segundos"
@@ -9593,7 +9435,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Expandir"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Expandir todo"
@@ -9650,8 +9492,8 @@ 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:1757
-#: frappe/public/js/frappe/views/reports/report_view.js:1621
+#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Exportar"
@@ -9702,11 +9544,11 @@ msgstr "Exportar Reporte: {0}"
msgid "Export Type"
msgstr "Tipo de Exportación"
-#: frappe/public/js/frappe/views/reports/report_view.js:1632
+#: frappe/public/js/frappe/views/reports/report_view.js:1638
msgid "Export all matching rows?"
msgstr "¿Exportar todas las filas coincidentes?"
-#: frappe/public/js/frappe/views/reports/report_view.js:1642
+#: frappe/public/js/frappe/views/reports/report_view.js:1648
msgid "Export all {0} rows?"
msgstr "¿Exportar todas las {0} filas?"
@@ -10014,8 +9856,8 @@ msgstr "Obteniendo documentos predeterminados de Global Search."
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:237
-#: frappe/public/js/frappe/views/reports/query_report.js:1816
+#: frappe/public/js/frappe/views/reports/query_report.js:235
+#: frappe/public/js/frappe/views/reports/query_report.js:1818
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10090,7 +9932,7 @@ msgstr "El Tipo de Campo no se puede cambiar para {0}"
msgid "Field {0} does not exist on {1}"
msgstr "El campo {0} no existe en {1}"
-#: frappe/desk/form/meta.py:208
+#: frappe/desk/form/meta.py:184
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr "El campo {0} se refiere a un doctype inexistente {1}."
@@ -10193,7 +10035,7 @@ msgstr "Campos Multicheck"
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr "Los campos `file_name` o `file_url` deben establecerse para Archivo"
-#: frappe/model/db_query.py:144
+#: frappe/model/db_query.py:146
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"
@@ -10242,13 +10084,6 @@ msgstr "Se ha omitido el archivo \"{0}\" debido a un tipo de archivo no válido"
msgid "File '{0}' not found"
msgstr "Archivo '{0}' no encontrado"
-#. Label of the file_backup (Check) field in DocType 'Dropbox Settings'
-#. Label of the file_backup (Check) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "File Backup"
-msgstr "Archivo de Respaldo"
-
#. Label of the private_file_section (Section Break) field in DocType 'Access
#. Log'
#: frappe/core/doctype/access_log/access_log.json
@@ -10449,7 +10284,7 @@ msgstr "Los filtros serán accesibles a través de filters.
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)."
@@ -10930,7 +10765,7 @@ msgstr "Formulario codificado en URL"
#. 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:552
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
msgid "Format"
msgstr "Formato"
@@ -10962,7 +10797,7 @@ msgstr "Fracción de unidades"
#. 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:149
+#: frappe/www/login.py:153
msgid "Frappe"
msgstr "Frapé"
@@ -10979,7 +10814,7 @@ msgstr "Frappe claro"
msgid "Frappe Mail"
msgstr "Frappe Mail"
-#: frappe/email/doctype/email_account/email_account.py:549
+#: frappe/email/doctype/email_account/email_account.py:547
msgid "Frappe Mail OAuth Error"
msgstr "Error OAuth Frappe Mail"
@@ -11007,13 +10842,11 @@ msgstr "Gratis"
#. 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'
-#. Label of the frequency (Select) field in DocType 'Google Drive'
#: 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/integrations/doctype/google_drive/google_drive.json
#: frappe/public/js/frappe/utils/common.js:395
msgid "Frequency"
msgstr "Frecuencia"
@@ -11059,7 +10892,7 @@ msgstr "Desde la fecha"
msgid "From Date Field"
msgstr "Desde campo de fecha"
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
+#: frappe/public/js/frappe/views/reports/query_report.js:1779
msgid "From Document Type"
msgstr "Desde tipo de documento"
@@ -11110,16 +10943,16 @@ msgstr "Ancho completo"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:247
-#: frappe/public/js/frappe/widgets/widget_dialog.js:686
+#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Función"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:693
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
msgstr "Función basada en"
-#: frappe/__init__.py:670
+#: frappe/__init__.py:677
msgid "Function {0} is not whitelisted."
msgstr "La función {0} no está en la lista blanca."
@@ -11184,7 +11017,7 @@ msgstr "General"
msgid "Generate Keys"
msgstr "Generar Llaves"
-#: frappe/public/js/frappe/views/reports/query_report.js:877
+#: frappe/public/js/frappe/views/reports/query_report.js:872
msgid "Generate New Report"
msgstr "Generar Nuevo Informe"
@@ -11472,32 +11305,12 @@ msgstr "Contactos de Google: no se pudo actualizar el contacto en Contactos de G
msgid "Google Contacts Id"
msgstr "Id de contactos de Google"
-#. Name of a DocType
-#. Label of the google_drive_section (Section Break) field in DocType 'Google
-#. Drive'
#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/google_drive/google_drive.json
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr "Google Drive"
-#: frappe/integrations/doctype/google_drive/google_drive.py:117
-msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}"
-msgstr "Google Drive: no se pudo crear la carpeta en Google Drive: código de error {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:132
-msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}"
-msgstr "Google Drive - No se pudo encontrar la carpeta en Google Drive - Código de error {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:193
-msgid "Google Drive - Could not locate - {0}"
-msgstr "Google Drive: no se pudo localizar: {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:204
-msgid "Google Drive Backup Successful."
-msgstr "Copia de seguridad de Google Drive exitosa."
-
#. Label of the section_break_7 (Section Break) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -11827,6 +11640,10 @@ msgstr "Los scripts de encabezado y pie de página se pueden utilizar para agreg
msgid "Headers"
msgstr "Encabezados"
+#: 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'
@@ -12150,17 +11967,17 @@ msgstr "Página de inicio"
msgid "Home Settings"
msgstr "Configuraciones de inicio"
-#: frappe/core/doctype/file/test_file.py:330
-#: frappe/core/doctype/file/test_file.py:332
-#: frappe/core/doctype/file/test_file.py:396
+#: 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 "Inicio / Carpeta Prueba 1"
-#: frappe/core/doctype/file/test_file.py:385
+#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
msgstr "Carpeta Inicio / Test 1 / Carpeta Prueba 3"
-#: frappe/core/doctype/file/test_file.py:341
+#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
msgstr "Inicio / Carpeta de Prueba 2"
@@ -12205,7 +12022,7 @@ msgstr "Supongo que aún no tiene acceso a ningún espacio de trabajo, pero pued
#: frappe/core/doctype/data_import/importer.py:1177
#: frappe/core/doctype/data_import/importer.py:1242
#: frappe/core/doctype/data_import/importer.py:1245
-#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:50
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
#: frappe/public/js/frappe/list/list_settings.js:337
@@ -12217,7 +12034,7 @@ msgid "ID"
msgstr "Identificador"
#: frappe/desk/reportview.py:491
-#: frappe/public/js/frappe/views/reports/report_view.js:978
+#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
msgstr "Identificador"
@@ -12401,12 +12218,6 @@ msgstr "Si está habilitado, a los usuarios que inicien sesión desde la Direcci
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
msgstr "Si está activado, los usuarios serán notificados cada vez que inicien sesión. Si no está habilitado, los usuarios solo serán notificados una vez."
-#. Description of the 'Backup Path' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "If it's empty, it will backup to the root of the bucket."
-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"
@@ -12537,16 +12348,12 @@ msgstr "Ignorar los adjuntos mayores que este tamaño"
msgid "Ignored Apps"
msgstr "Aplicaciones ignoradas"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:348
-msgid "Illegal Access Token. Please try again"
-msgstr "Código de acceso ilegal. Por favor, inténtelo de nuevo"
-
#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
msgstr "Estado del Documento ilegal para {0}"
-#: frappe/model/db_query.py:451 frappe/model/db_query.py:454
-#: frappe/model/db_query.py:1128
+#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
+#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
msgstr "Consulta SQL ilegal"
@@ -12895,11 +12702,11 @@ msgstr "Incluir tema de aplicaciones"
msgid "Include Web View Link in Email"
msgstr "Enviar el enlace de la vista web del documento por correo electrónico"
-#: frappe/public/js/frappe/views/reports/query_report.js:1592
+#: frappe/public/js/frappe/views/reports/query_report.js:1594
msgid "Include filters"
msgstr "Incluir filtros"
-#: frappe/public/js/frappe/views/reports/query_report.js:1584
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Include indentation"
msgstr "Incluir sangría"
@@ -12966,11 +12773,11 @@ msgstr "Usuario o Contraseña Incorrecta"
msgid "Incorrect Verification code"
msgstr "Código de Verificación incorrecto"
-#: frappe/model/document.py:1542
+#: frappe/model/document.py:1541
msgid "Incorrect value in row {0}:"
msgstr "Valor incorrecto en la fila {0}:"
-#: frappe/model/document.py:1544
+#: frappe/model/document.py:1543
msgid "Incorrect value:"
msgstr "Valor incorrecto:"
@@ -12979,10 +12786,10 @@ msgstr "Valor incorrecto:"
#. 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:53
+#: 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:999
+#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
msgstr "Índice"
@@ -13057,7 +12864,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:1822
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
msgid "Insert After"
msgstr "Insertar Después"
@@ -13073,7 +12880,7 @@ msgstr "Inserción luego del campo '{0}' mencionado en el campo personalizado '{
msgid "Insert Below"
msgstr "Insertar Debajo"
-#: frappe/public/js/frappe/views/reports/report_view.js:384
+#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
msgstr "Insertar Columna Antes de {0}"
@@ -13122,11 +12929,11 @@ msgstr "Instrucciones"
msgid "Instructions Emailed"
msgstr "Instrucciones enviadas por correo electrónico"
-#: frappe/permissions.py:818
+#: frappe/permissions.py:827
msgid "Insufficient Permission Level for {0}"
msgstr "Nivel de permiso insuficiente para {0}"
-#: frappe/database/query.py:376
+#: frappe/database/query.py:383
msgid "Insufficient Permission for {0}"
msgstr "Permiso insuficiente para {0}"
@@ -13244,7 +13051,7 @@ msgstr "Inválido"
#: frappe/public/js/form_builder/utils.js:221
#: frappe/public/js/frappe/form/grid_row.js:833
#: frappe/public/js/frappe/form/layout.js:811
-#: frappe/public/js/frappe/views/reports/report_view.js:710
+#: frappe/public/js/frappe/views/reports/report_view.js:716
msgid "Invalid \"depends_on\" expression"
msgstr "Expresión \"depende_on\" no válida"
@@ -13284,7 +13091,7 @@ msgstr "Fecha invalida"
msgid "Invalid DocType"
msgstr "DocType inválido"
-#: frappe/database/query.py:102
+#: frappe/database/query.py:103
msgid "Invalid DocType: {0}"
msgstr "DocType no válido: {0}"
@@ -13329,6 +13136,7 @@ msgid "Invalid Naming Series: {}"
msgstr "Serie de nombres no válida: {}"
#: frappe/core/doctype/rq_job/rq_job.py:113
+#: frappe/core/doctype/rq_job/rq_job.py:122
msgid "Invalid Operation"
msgstr "Operación inválida"
@@ -13353,7 +13161,7 @@ msgstr "Anulación no válida"
msgid "Invalid Parameters."
msgstr "Parámetros Inválidos."
-#: frappe/core/doctype/user/user.py:1226 frappe/www/update-password.html:123
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
#: frappe/www/update-password.html:247
msgid "Invalid Password"
@@ -13382,7 +13190,7 @@ msgstr "Transición inválida"
#: frappe/core/doctype/file/file.py:220
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
-#: frappe/public/js/frappe/widgets/widget_dialog.js:589
+#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
msgstr "URL invalida"
@@ -13403,11 +13211,11 @@ msgstr "Secreto de Webhook inválido"
msgid "Invalid aggregate function"
msgstr "Función de agregación inválida"
-#: frappe/public/js/frappe/views/reports/report_view.js:393
+#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "Columna inválida"
-#: frappe/model/document.py:1015 frappe/model/document.py:1029
+#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "Estado del documento no válido"
@@ -13431,7 +13239,7 @@ 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:182
+#: frappe/database/query.py:189
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "Filtro no válido: {0}"
@@ -13457,7 +13265,7 @@ msgstr "Contenido no válido o dañado para importar"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Regex de redirección no válida en la fila #{}: {}"
-#: frappe/app.py:324
+#: frappe/app.py:317
msgid "Invalid request arguments"
msgstr "Argumentos de solicitud inválidos"
@@ -13641,7 +13449,7 @@ msgstr "Es Campo Publicable debe ser un nombre de campo válido"
#. 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:328
+#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
msgstr "Es Informe de Consulta"
@@ -13856,6 +13664,10 @@ msgstr "Estado del Trabajo"
msgid "Job Stopped Successfully"
msgstr "Trabajo detenido exitosamente"
+#: 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 "El trabajo no se está ejecutando."
@@ -13887,7 +13699,7 @@ msgstr "Kanban"
#. 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:498
+#: frappe/public/js/frappe/widgets/widget_dialog.js:511
msgid "Kanban Board"
msgstr "Tablero Kanban"
@@ -14159,10 +13971,10 @@ msgstr "Configuración LDAP incorrecta. La respuesta de la validación fue: {0}"
#: 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:300
-#: frappe/public/js/frappe/widgets/widget_dialog.js:453
-#: frappe/public/js/frappe/widgets/widget_dialog.js:630
-#: frappe/public/js/frappe/widgets/widget_dialog.js:663
+#: 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
@@ -14247,11 +14059,6 @@ msgstr ""
msgid "Last Active"
msgstr "Último Activo"
-#. Label of the last_backup_on (Datetime) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Last Backup On"
-msgstr "Última copia de seguridad activada"
-
#. 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"
@@ -14336,12 +14143,12 @@ msgstr "Última sincronización a las"
msgid "Last Synced On"
msgstr "Última sincronización en"
-#: frappe/model/meta.py:55 frappe/public/js/frappe/model/meta.js:205
+#: 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 "Última actualización por"
-#: frappe/model/meta.py:54 frappe/public/js/frappe/model/meta.js:204
+#: 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 "Última actualización el"
@@ -14385,7 +14192,7 @@ msgid "Leave blank to repeat always"
msgstr "Dejar en blanco para repetir siempre"
#: frappe/core/doctype/communication/mixins.py:207
-#: frappe/email/doctype/email_account/email_account.py:722
+#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
msgstr "Abandonar esta conversación"
@@ -14604,7 +14411,7 @@ msgstr "Me gusta en {0}: {1}"
msgid "Liked"
msgstr "Gustó"
-#: frappe/model/meta.py:58 frappe/public/js/frappe/model/meta.js:208
+#: 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 "Gustado por"
@@ -14619,11 +14426,6 @@ msgstr "Me Gustas"
msgid "Limit"
msgstr "Límite"
-#. Label of the limit_no_of_backups (Check) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Limit Number of DB Backups"
-msgstr "Número límite de copias de seguridad de base de datos"
-
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14738,11 +14540,11 @@ msgstr "Título del Hipervínculo"
#: 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:414
+#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
msgstr "Enlace a"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:350
+#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
msgstr "Enlace a en fila"
@@ -14755,7 +14557,7 @@ msgstr "Enlace a en fila"
msgid "Link Type"
msgstr "Tipo de enlace"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:346
+#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
msgstr "Tipo de enlace en la fila"
@@ -14907,7 +14709,7 @@ msgstr "Cargar más"
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1085
+#: frappe/public/js/frappe/views/reports/query_report.js:1087
msgid "Loading"
msgstr "Cargando"
@@ -15038,7 +14840,7 @@ msgstr "Método de inicio de sesión"
msgid "Login Page"
msgstr "Página de inicio de sesión"
-#: frappe/www/login.py:152
+#: frappe/www/login.py:156
msgid "Login To {0}"
msgstr "Iniciar sesión en {0}"
@@ -15305,7 +15107,7 @@ msgstr "Obligatorio depende de"
msgid "Mandatory Depends On (JS)"
msgstr "Obligatorio Depende de (JS)"
-#: frappe/website/doctype/web_form/web_form.py:473
+#: frappe/website/doctype/web_form/web_form.py:470
msgid "Mandatory Information missing:"
msgstr "Información obligatoria faltante:"
@@ -15580,7 +15382,7 @@ msgid "Menu"
msgstr "Menú"
#: frappe/public/js/frappe/form/toolbar.js:242
-#: frappe/public/js/frappe/model/model.js:754
+#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "Combinar con existente"
@@ -15759,7 +15561,7 @@ msgstr "Meta título para SEO"
msgid "Method"
msgstr "Método"
-#: frappe/__init__.py:672
+#: frappe/__init__.py:679
msgid "Method Not Allowed"
msgstr "Método no permitido"
@@ -15836,7 +15638,7 @@ msgstr "Mal configurado"
msgid "Miss"
msgstr "Srta."
-#: frappe/desk/form/meta.py:218
+#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
msgstr "Falta DocType"
@@ -15861,7 +15663,7 @@ msgid "Missing Value"
msgstr "Falta un valor"
#: frappe/public/js/frappe/ui/field_group.js:124
-#: frappe/public/js/frappe/widgets/widget_dialog.js:361
+#: 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"
@@ -16044,8 +15846,6 @@ msgstr "Mes"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -16053,7 +15853,6 @@ msgstr "Mes"
#: 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/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:400
#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
@@ -16225,7 +16024,7 @@ msgid "Mx"
msgstr "Mx"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:462
+#: frappe/website/doctype/web_form/web_form.py:459
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16393,7 +16192,7 @@ msgstr "Configuración de Navegación"
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "Necesita el rol de Administrador del Área de Trabajo para editar el área de trabajo privada de otros usuarios"
-#: frappe/model/document.py:793
+#: frappe/model/document.py:792
msgid "Negative Value"
msgstr "Valor negativo"
@@ -16498,7 +16297,7 @@ msgstr "Nuevo mensaje desde la página de contacto del sitio web"
#. 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:762
+#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "Nuevo Nombre"
@@ -16532,7 +16331,7 @@ msgstr "Nuevo nombre de formato de impresión"
msgid "New Quick List"
msgstr "Nueva Lista Rápida"
-#: frappe/public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
msgstr "Nuevo nombre de Informe"
@@ -16588,26 +16387,26 @@ msgstr "Nuevo valor a establecer"
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
#: frappe/public/js/frappe/form/toolbar.js:558
-#: frappe/public/js/frappe/model/model.js:661
+#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:379
+#: frappe/website/doctype/web_form/web_form.py:376
msgid "New {0}"
msgstr "Nuevo/a: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:394
+#: frappe/public/js/frappe/views/reports/query_report.js:392
msgid "New {0} Created"
msgstr "Nuevo {0} creado"
-#: frappe/public/js/frappe/views/reports/query_report.js:386
+#: frappe/public/js/frappe/views/reports/query_report.js:384
msgid "New {0} {1} added to Dashboard {2}"
msgstr "Nuevo {0} {1} agregado al panel {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:391
+#: frappe/public/js/frappe/views/reports/query_report.js:389
msgid "New {0} {1} created"
msgstr "Nuevo {0} {1} creado"
@@ -16619,7 +16418,7 @@ msgstr "Nuevo {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "Las nuevas {} versiones para las siguientes aplicaciones están disponibles"
-#: frappe/core/doctype/user/user.py:802
+#: frappe/core/doctype/user/user.py:804
msgid "Newly created user {0} has no roles enabled."
msgstr "El usuario recién creado {0} no tiene ningún rol habilitado."
@@ -16781,7 +16580,7 @@ msgstr "Siguiente al hacer clic"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "No"
@@ -16922,7 +16721,7 @@ msgstr "No hay resultados"
msgid "No Results found"
msgstr "No se encontraron resultados"
-#: frappe/core/doctype/user/user.py:803
+#: frappe/core/doctype/user/user.py:805
msgid "No Roles Specified"
msgstr "No hay Roles especificados"
@@ -17073,7 +16872,7 @@ msgstr "No se de filas (máx 500)"
msgid "No of Sent SMS"
msgstr "Nº de SMS enviados"
-#: frappe/__init__.py:827 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Sin permiso para {0}"
@@ -17082,7 +16881,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "No tiene permiso para '{0} ' {1}"
-#: frappe/model/db_query.py:949
+#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
msgstr "No tiene permiso para leer {0}"
@@ -17166,12 +16965,6 @@ msgstr "No negativo"
msgid "Non-Conforming"
msgstr "No Conforme"
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "None"
-msgstr "Ninguna"
-
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr "Ninguno: Fin del flujo de trabajo"
@@ -17186,7 +16979,7 @@ msgstr "Copias normalizadas"
msgid "Normalized Query"
msgstr "Consulta normalizada"
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "No permitido"
@@ -17207,7 +17000,7 @@ msgstr "No son Descendientes de"
msgid "Not Equals"
msgstr "No es igual"
-#: frappe/app.py:374 frappe/www/404.html:3
+#: frappe/app.py:367 frappe/www/404.html:3
msgid "Not Found"
msgstr "No encontrado"
@@ -17233,9 +17026,9 @@ msgstr "No está vinculado a ningún registro"
msgid "Not Nullable"
msgstr "No nulo"
-#: frappe/__init__.py:754 frappe/app.py:367 frappe/desk/calendar.py:26
+#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:711
+#: frappe/website/doctype/web_form/web_form.py:708
#: 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
@@ -17256,7 +17049,7 @@ msgstr "No publicado"
#: frappe/public/js/frappe/form/toolbar.js:813
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
-#: frappe/public/js/frappe/views/reports/report_view.js:197
+#: frappe/public/js/frappe/views/reports/report_view.js:203
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
@@ -17287,7 +17080,7 @@ msgstr "No especificado"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "No es un archivo separado por comas válido (archivo CSV)"
-#: frappe/core/doctype/user/user.py:264
+#: frappe/core/doctype/user/user.py:265
msgid "Not a valid User Image."
msgstr "No es una Imagen de Usuario Válida."
@@ -17303,7 +17096,7 @@ msgstr "Usuario no válido"
msgid "Not active"
msgstr "No activo"
-#: frappe/permissions.py:360
+#: frappe/permissions.py:370
msgid "Not allowed for {0}: {1}"
msgstr "No permitido para {0}: {1}"
@@ -17323,7 +17116,7 @@ msgstr "No se permite imprimir documentos cancelados"
msgid "Not allowed to print draft documents"
msgstr "No se puede imprimir documentos en borrador"
-#: frappe/permissions.py:212
+#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
msgstr "No permitido mediante el controlador de comprobación de permisos"
@@ -17339,12 +17132,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:214
+#: frappe/core/doctype/system_settings/system_settings.py:215
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:724
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "No permitido"
@@ -17370,15 +17163,6 @@ msgstr "Nota vista por"
msgid "Note:"
msgstr "Nota:"
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'Dropbox Settings'
-#. Description of the 'Send Email for Successful backup' (Check) field in
-#. DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Note: By default emails for failed backups are sent."
-msgstr "Nota: Por correo electrónico predeterminado se envían copias de seguridad fallidas."
-
#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "Nota: Cambiar el nombre de la página romperá la URL anterior a esta página."
@@ -17438,13 +17222,10 @@ msgstr "Nada que actualizar"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
#. Name of a DocType
-#. Label of the notification_section (Section Break) field in DocType 'S3
-#. Backup Settings'
#: 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
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Notification"
msgstr "Notificación"
@@ -17546,7 +17327,7 @@ msgstr "Número"
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:615
+#: frappe/public/js/frappe/widgets/widget_dialog.js:628
msgid "Number Card"
msgstr "Tarjeta de número"
@@ -17564,7 +17345,7 @@ msgstr "Nombre del Widget numérico"
#. 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:645
+#: frappe/public/js/frappe/widgets/widget_dialog.js:658
msgid "Number Cards"
msgstr "Tarjetas de números"
@@ -17582,15 +17363,6 @@ msgstr "Formato de Número"
msgid "Number of Backups"
msgstr "Número de copias de seguridad"
-#. Label of the no_of_backups (Int) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Number of DB Backups"
-msgstr "Número de copias de seguridad de base de datos"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:54
-msgid "Number of DB backups cannot be less than 1"
-msgstr "Número de copias de seguridad de base de datos no puede ser inferior a 1"
-
#. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Number of Groups"
@@ -17606,7 +17378,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:169
+#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
msgstr "El número de copias de seguridad debe ser superior a cero."
@@ -17835,7 +17607,7 @@ msgstr "El {0}, {1} escribió:"
#. 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:322
+#: frappe/public/js/frappe/widgets/widget_dialog.js:335
msgid "Onboard"
msgstr "Incorporación"
@@ -17931,19 +17703,13 @@ msgstr "Solo el Administrador del Área de Trabajo puede editar Áreas de Trabaj
msgid "Only allowed to export customizations in developer mode"
msgstr "Solo se permite exportar personalizaciones en modo desarrollador"
-#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Only change this if you want to use other S3 compatible object storage backends."
-msgstr "Cambie esto sólo si desea utilizar otros sistemas de almacenamiento de objetos compatibles con S3."
-
-#: frappe/model/document.py:1232
+#: frappe/model/document.py:1231
msgid "Only draft documents can be discarded"
msgstr "Solo pueden descartarse los borradores de documentos"
#. 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:315
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
msgstr "Solo para"
@@ -18192,7 +17958,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:870
+#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
msgstr "Las opciones no establecidas para el campo enlazado {0}"
@@ -18304,7 +18070,7 @@ msgstr "PATCH"
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1742
+#: frappe/public/js/frappe/views/reports/query_report.js:1744
msgid "PDF"
msgstr "PDF"
@@ -18603,7 +18369,7 @@ msgstr "Parent es el nombre del documento al que se agregarán los datos."
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:798
+#: frappe/permissions.py:807
msgid "Parentfield not specified in {0}: {1}"
msgstr "Campo padre no especificado en {0}: {1}"
@@ -18663,11 +18429,11 @@ msgstr "Pasivo"
msgid "Password"
msgstr "Contraseña"
-#: frappe/core/doctype/user/user.py:1079
+#: frappe/core/doctype/user/user.py:1081
msgid "Password Email Sent"
msgstr "Correo de Contraseña enviado"
-#: frappe/core/doctype/user/user.py:457
+#: frappe/core/doctype/user/user.py:458
msgid "Password Reset"
msgstr "Restablecer contraseña"
@@ -18701,7 +18467,7 @@ msgstr "Falta contraseña en la cuenta de correo"
msgid "Password not found for {0} {1} {2}"
msgstr "Contraseña no encontrada para {0} {1} {2}"
-#: frappe/core/doctype/user/user.py:1078
+#: frappe/core/doctype/user/user.py:1080
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Se han enviado instrucciones para restablecer la contraseña al correo electrónico de {}."
@@ -18713,7 +18479,7 @@ msgstr "Contraseña establecida"
msgid "Password size exceeded the maximum allowed size"
msgstr "El tamaño de la contraseña excedió el tamaño máximo permitido"
-#: frappe/core/doctype/user/user.py:869
+#: frappe/core/doctype/user/user.py:871
msgid "Password size exceeded the maximum allowed size."
msgstr "El tamaño de la contraseña superó el tamaño máximo permitido."
@@ -18870,7 +18636,7 @@ msgstr "¿Descartar permanentemente {0}?"
msgid "Permanently Submit {0}?"
msgstr "¿Validar permanentemente {0}?"
-#: frappe/public/js/frappe/model/model.js:733
+#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
msgstr "¿Eliminar permanentemente \"{0}\"?"
@@ -19031,8 +18797,8 @@ msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Número de teléfono {0} establecido en el campo {1} no es válido."
#: frappe/public/js/frappe/form/print_utils.js:40
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
-#: frappe/public/js/frappe/views/reports/report_view.js:1576
+#: frappe/public/js/frappe/views/reports/report_view.js:1579
+#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
msgstr "Seleccionar columnas"
@@ -19072,7 +18838,7 @@ msgstr "Texto sin formato"
msgid "Plant"
msgstr "Planta"
-#: frappe/email/doctype/email_account/email_account.py:546
+#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
msgstr "Por favor, autorice OAuth para la cuenta de correo electrónico {0}"
@@ -19088,7 +18854,7 @@ msgstr "Por favor, duplicar este tema de la página Web para personalizarlo."
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "Instale la biblioteca ldap3 a través de pip para usar la funcionalidad ldap."
-#: frappe/public/js/frappe/views/reports/query_report.js:309
+#: frappe/public/js/frappe/views/reports/query_report.js:307
msgid "Please Set Chart"
msgstr "Por favor, establezca el gráfico"
@@ -19104,7 +18870,7 @@ msgstr "Por favor agregue un asunto a su correo electrónico"
msgid "Please add a valid comment."
msgstr "Agregue un comentario válido."
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1063
msgid "Please ask your administrator to verify your sign-up"
msgstr "Por favor, consulte a su administrador para verificar su registro"
@@ -19132,11 +18898,11 @@ msgstr "Por favor verifique la URL de configuración de OpenID"
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:946
+#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Por favor, compruebe el valor de \"Obtener desde\" establecido para el campo {0}"
-#: frappe/core/doctype/user/user.py:1059
+#: frappe/core/doctype/user/user.py:1061
msgid "Please check your email for verification"
msgstr "Por favor, consultar su correo electrónico para la verificación"
@@ -19164,10 +18930,6 @@ msgstr "Haga clic en el siguiente enlace y siga las instrucciones de la página.
msgid "Please click on the following link to set your new password"
msgstr "Por favor, haga clic en el siguiente enlace para configurar su nueva contraseña"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:343
-msgid "Please close this window"
-msgstr "Por favor, cierre esta ventana"
-
#: frappe/www/confirm_workflow_action.html:4
msgid "Please confirm your action to {0} this document."
msgstr "Confirma tu acción a {0} este documento."
@@ -19184,7 +18946,7 @@ msgstr "Primero crea la tarjeta"
msgid "Please create chart first"
msgstr "Por favor cree el cuadro primero"
-#: frappe/desk/form/meta.py:214
+#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
msgstr "Por favor, elimine el campo de {0} o añada el doctype requerido."
@@ -19196,7 +18958,7 @@ msgstr "Por favor, no cambie los encabezados de la plantilla."
msgid "Please duplicate this to make changes"
msgstr "Por favor, duplicar esto para realizar los cambios"
-#: frappe/core/doctype/system_settings/system_settings.py:162
+#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr "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."
@@ -19214,7 +18976,7 @@ msgstr "Por favor, active los pop-ups"
msgid "Please enable pop-ups in your browser"
msgstr "Habilite las ventanas emergentes en su navegador"
-#: frappe/integrations/google_oauth.py:53
+#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
msgstr "Habilite {} antes de continuar."
@@ -19291,7 +19053,7 @@ msgstr "Por favor, inicie sesión para enviar un comentario."
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "Asegúrese de que los documentos de comunicación de referencia no estén vinculados circularmente."
-#: frappe/model/document.py:987
+#: frappe/model/document.py:986
msgid "Please refresh to get the latest document."
msgstr "Por favor, actualice para obtener el último documento."
@@ -19315,7 +19077,7 @@ msgstr "Por favor, guarde el documento antes de la asignación"
msgid "Please save the document before removing assignment"
msgstr "Por favor, guarde el documento antes de remover la asignación"
-#: frappe/public/js/frappe/views/reports/report_view.js:1703
+#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
msgstr "Por favor, guarde el informe primero"
@@ -19331,11 +19093,11 @@ msgstr "Por favor, seleccione 'DocType' primero"
msgid "Please select Entity Type first"
msgstr "Por favor, seleccione Tipo de entidad primero"
-#: frappe/core/doctype/system_settings/system_settings.py:112
+#: frappe/core/doctype/system_settings/system_settings.py:113
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:1181
+#: frappe/public/js/frappe/views/reports/query_report.js:1183
msgid "Please select X and Y fields"
msgstr "Por favor, seleccione campos X e Y"
@@ -19363,7 +19125,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:1140
+#: frappe/model/db_query.py:1141
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "Por favor, seleccione al menos 1 columna de {0} para ordenar / agrupar"
@@ -19385,10 +19147,6 @@ msgstr "Por favor, seleccione el Directorio LDAP que se está utilizando"
msgid "Please select {0}"
msgstr "Por favor, seleccione {0}"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:305
-msgid "Please set Dropbox access keys in site config or doctype"
-msgstr "Por favor, establezca las claves de acceso a Dropbox en la configuración del sitio o doctype"
-
#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
msgstr "Por favor, establece Dirección de correo electrónico"
@@ -19397,7 +19155,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:1404
+#: frappe/public/js/frappe/views/reports/query_report.js:1406
msgid "Please set filters"
msgstr "Por favor, defina los filtros"
@@ -19417,7 +19175,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:125
+#: frappe/core/doctype/system_settings/system_settings.py:126
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"
@@ -19425,19 +19183,19 @@ msgstr "Configure SMS antes de configurarlo como un método de autenticación, a
msgid "Please setup a message first"
msgstr "Configura un mensaje primero"
-#: frappe/core/doctype/user/user.py:422
+#: frappe/core/doctype/user/user.py:423
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "Por favor, configure la cuenta de correo saliente por defecto desde Ajustes > Cuenta de Correo"
-#: frappe/email/doctype/email_account/email_account.py:434
+#: 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:823
+#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
msgstr "Por favor, especifique"
-#: frappe/permissions.py:774
+#: frappe/permissions.py:783
msgid "Please specify a valid parent DocType for {0}"
msgstr "Por favor, especifique un DocType padre válido para {0}"
@@ -19466,7 +19224,7 @@ msgstr "Por favor, especifique qué campo debe ser revisado"
msgid "Please try again"
msgstr "Por favor, inténtelo de nuevo"
-#: frappe/integrations/google_oauth.py:56
+#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
msgstr "Por favor, actualice {} antes de continuar."
@@ -19779,8 +19537,8 @@ msgstr "La clave primaria del doctype {0} no puede modificarse, ya que existen v
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1728
-#: frappe/public/js/frappe/views/reports/report_view.js:1531
+#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "Impresión"
@@ -20023,7 +19781,7 @@ msgstr "Protip: Agregar Reference: {{ reference_doctype }} {{ reference_na
msgid "Proceed"
msgstr "Proceder"
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
msgstr "Procede de todas maneras"
@@ -20344,7 +20102,7 @@ msgstr "La consulta debe ser de tipo SELECT o WITH de sólo lectura."
msgid "Queue"
msgstr "Cola"
-#: frappe/utils/background_jobs.py:729
+#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
msgstr ""
@@ -20365,7 +20123,7 @@ msgstr "Tipo(s) de Cola"
msgid "Queue in Background (BETA)"
msgstr "Cola en segundo plano (BETA)"
-#: frappe/utils/background_jobs.py:554
+#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
msgstr "Cola debe ser una de {0}"
@@ -20398,12 +20156,6 @@ msgstr "En cola por"
msgid "Queued for Submission. You can track the progress over {0}."
msgstr "En cola para envío. Puedes seguir el progreso durante {0}."
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:65
-#: frappe/integrations/doctype/google_drive/google_drive.py:153
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:86
-msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr "En cola para copia de seguridad. Se puede tomar un par de minutos a una hora."
-
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
msgstr "En cola para la copia de seguridad. Recibirá un correo electrónico con el enlace de descarga"
@@ -20539,7 +20291,7 @@ msgstr "Configuración de Impresión sin formato"
msgid "Re-Run in Console"
msgstr "Volver a ejecutar en la consola"
-#: frappe/email/doctype/email_account/email_account.py:728
+#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
msgstr "Re:"
@@ -20641,7 +20393,7 @@ msgstr "Tiempo real (SocketIO)"
msgid "Reason"
msgstr "Razón"
-#: frappe/public/js/frappe/views/reports/query_report.js:889
+#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
msgstr "Reconstruir"
@@ -21006,11 +20758,11 @@ msgid "Referrer"
msgstr "Referente"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:548
+#: frappe/public/js/frappe/desk.js:556
#: 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:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1719
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21029,12 +20781,10 @@ msgstr "Actualizar hoja de Google"
#. 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 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
@@ -21051,7 +20801,7 @@ msgstr "Refrescando"
msgid "Refreshing..."
msgstr "Refrescando..."
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
msgstr "Registrado pero discapacitados"
@@ -21214,7 +20964,7 @@ msgstr "Eliminado"
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
#: frappe/public/js/frappe/form/toolbar.js:432
-#: frappe/public/js/frappe/model/model.js:772
+#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
msgstr "Renombrar"
@@ -21224,7 +20974,7 @@ msgstr "Renombrar"
msgid "Rename Fieldname"
msgstr "Renombrar Nombre de Campo"
-#: frappe/public/js/frappe/model/model.js:759
+#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
msgstr "Cambiar el nombre {0}"
@@ -21288,7 +21038,7 @@ msgstr "Repeticiones como \"aaa\" son fáciles de adivinar"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "Repeticiones como \"abcabcabc\" son sólo un poco más difícil de adivinar que el \"abc\""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:146
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
msgstr "Se repite {0}"
@@ -21426,7 +21176,7 @@ msgstr "Administrador de reportes"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1902
+#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
msgstr "Nombre del reporte"
@@ -21478,7 +21228,7 @@ msgstr "El informe no tiene datos, modifique los filtros o cambie el Nombre del
msgid "Report has no numeric fields, please change the Report Name"
msgstr "El informe no tiene campos numéricos, cambie el nombre del informe"
-#: frappe/public/js/frappe/views/reports/query_report.js:1009
+#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
msgstr "Informe iniciado, haga clic para ver el estado"
@@ -21494,11 +21244,11 @@ msgstr "Se agotó el tiempo de espera para reportar."
msgid "Report updated successfully"
msgstr "Informe actualizado con éxito"
-#: frappe/public/js/frappe/views/reports/report_view.js:1351
+#: frappe/public/js/frappe/views/reports/report_view.js:1357
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:1940
+#: frappe/public/js/frappe/views/reports/query_report.js:1942
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."
@@ -21534,7 +21284,7 @@ msgstr "Informes"
msgid "Reports & Masters"
msgstr "Informes y Maestros"
-#: frappe/public/js/frappe/views/reports/query_report.js:925
+#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
msgstr "Informes ya en cola"
@@ -21984,7 +21734,7 @@ msgstr "Replicación de roles"
msgid "Role and Level"
msgstr "Rol y nivel"
-#: frappe/core/doctype/user/user.py:363
+#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
msgstr "Se ha establecido el rol según el tipo de usuario {0}"
@@ -22099,7 +21849,7 @@ msgstr "Redirecciones de ruta"
msgid "Route: Example \"/app\""
msgstr "Ruta: Ejemplo \"/app\""
-#: frappe/model/base_document.py:855 frappe/model/document.py:778
+#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
msgstr "Línea"
@@ -22112,7 +21862,7 @@ msgstr "Fila #"
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:977
+#: frappe/model/base_document.py:982
msgid "Row #{0}:"
msgstr "Fila #{0}:"
@@ -22190,7 +21940,7 @@ msgstr "Regla"
msgid "Rule Conditions"
msgstr "Condiciones de la regla"
-#: frappe/permissions.py:653
+#: frappe/permissions.py:662
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Ya existe una regla para este DocType, Rol, Permlevel y la combinación if-owner."
@@ -22234,23 +21984,6 @@ msgstr ""
msgid "Runtime in Seconds"
msgstr ""
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "S3 Backup Settings"
-msgstr "Configuración de Copia de Seguridad S3"
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
-msgid "S3 Backup complete!"
-msgstr "¡S3 Backup completo!"
-
-#. Label of the s3_bucket_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Bucket Details"
-msgstr "Detalles del cucharón S3"
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
@@ -22391,7 +22124,7 @@ msgstr "Sábado"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/page/print/print.js:858
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/quick_entry.js:185
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
@@ -22401,8 +22134,8 @@ msgstr "Sábado"
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
-#: frappe/public/js/frappe/views/reports/query_report.js:1894
-#: frappe/public/js/frappe/views/reports/report_view.js:1720
+#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
@@ -22419,8 +22152,8 @@ msgstr "Guardar secreto de API: {0}"
msgid "Save Anyway"
msgstr "Guardar de todos modos"
-#: frappe/public/js/frappe/views/reports/report_view.js:1382
-#: frappe/public/js/frappe/views/reports/report_view.js:1727
+#: frappe/public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
msgstr "Guardar como"
@@ -22428,7 +22161,7 @@ msgstr "Guardar como"
msgid "Save Customizations"
msgstr "Guardar Personalización"
-#: frappe/public/js/frappe/views/reports/query_report.js:1897
+#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
msgstr "Guardar reporte"
@@ -22594,7 +22327,7 @@ msgstr "Programador inactivo"
msgid "Scheduler Status"
msgstr "Estado del planificador"
-#: frappe/utils/scheduler.py:249
+#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr "El programador no puede ser reactivado cuando el modo de mantenimiento está activo."
@@ -22820,7 +22553,7 @@ msgstr "Configuración de seguridad"
msgid "See all Activity"
msgstr "Ver todas las actividades"
-#: frappe/public/js/frappe/views/reports/query_report.js:858
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "See all past reports."
msgstr "Ver todos los reportes pasados."
@@ -22900,7 +22633,7 @@ msgstr "Seleccione adjuntos"
msgid "Select Child Table"
msgstr "Seleccionar tabla secundaria"
-#: frappe/public/js/frappe/views/reports/report_view.js:377
+#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
msgstr "Seleccionar Columna"
@@ -23217,31 +22950,11 @@ msgstr "Enviar correo electrónico con adjuntos en formato PDF (recomendado)"
msgid "Send Email To Creator"
msgstr ""
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Dropbox Settings'
-#. Label of the send_email_for_successful_backup (Check) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Email for Successful Backup"
-msgstr "Enviar correo electrónico para una copia de seguridad exitosa"
-
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Email for Successful backup"
-msgstr "Enviar correo electrónico para una Copia de Seguridad exitosa"
-
#. 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 "Envíame una copia de los correos electrónicos salientes"
-#. Label of the email (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Notification To"
-msgstr "Enviar notificación a"
-
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -23258,14 +22971,6 @@ msgstr "Enviar notificaciones de documentos seguidos por mí"
msgid "Send Notifications For Email Threads"
msgstr "Enviar notificaciones para hilos de correo electrónico"
-#. Label of the send_notifications_to (Data) field in DocType 'Dropbox
-#. Settings'
-#. Label of the notify_email (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Notifications To"
-msgstr "Enviar notificaciones a"
-
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
msgstr "Enviar ahora"
@@ -23524,7 +23229,7 @@ msgstr "Secuencia {0} ya utilizada en {1}"
msgid "Server Action"
msgstr "Acción del servidor"
-#: frappe/app.py:383 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Error del Servidor"
@@ -23590,7 +23295,7 @@ msgstr "Valores predeterminados de sesión"
msgid "Session Defaults Saved"
msgstr "Valores predeterminados de sesión guardados"
-#: frappe/app.py:360
+#: frappe/app.py:353
msgid "Session Expired"
msgstr "Sesión expirada"
@@ -23599,7 +23304,7 @@ msgstr "Sesión expirada"
msgid "Session Expiry (idle timeout)"
msgstr "Expiración de la sesión (tiempo de inactivad)"
-#: frappe/core/doctype/system_settings/system_settings.py:119
+#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
msgstr "El vencimiento de sesión debe estar en formato {0}"
@@ -23622,7 +23327,7 @@ msgstr "Establecer"
msgid "Set Banner from Image"
msgstr "Establecer banner desde imagen"
-#: frappe/public/js/frappe/views/reports/query_report.js:201
+#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
msgstr "Establecer Gráfico"
@@ -23648,7 +23353,7 @@ msgstr "Establecer filtros"
msgid "Set Filters for {0}"
msgstr "Establecer filtros para {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
msgstr "Establecer Nivel"
@@ -23890,8 +23595,8 @@ msgstr "Configuración > Usuario"
msgid "Setup > User Permissions"
msgstr "Configurar > Permisos del Usuario"
-#: frappe/public/js/frappe/views/reports/query_report.js:1763
-#: frappe/public/js/frappe/views/reports/report_view.js:1698
+#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Configuración automática de correo electrónico"
@@ -23987,6 +23692,15 @@ msgstr "Mostrar"
msgid "Show \"Call to Action\" in Blog"
msgstr "Mostrar \"Llamada a la acción\" en el blog"
+#. 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"
@@ -24157,7 +23871,7 @@ msgstr "Mostrar título"
msgid "Show Title in Link Fields"
msgstr "Mostrar Título en Campos de Enlace"
-#: frappe/public/js/frappe/views/reports/report_view.js:1521
+#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
msgstr "Mostrar totales"
@@ -24267,7 +23981,7 @@ msgstr "Mostrar título en la ventana del navegador como \"Prefijo - título\""
msgid "Show {0} List"
msgstr "Mostrar Lista {0}"
-#: frappe/public/js/frappe/views/reports/report_view.js:495
+#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
msgstr "Mostrando solo Campos Numéricos del Informe"
@@ -24302,7 +24016,7 @@ msgstr "Barra lateral y Comentarios"
msgid "Sign Up and Confirmation"
msgstr "Registro y confirmación"
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
msgstr "El registro está desactivado"
@@ -24947,7 +24661,7 @@ msgstr "Intervalo de tiempo de estadísticas"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
-#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: frappe/public/js/frappe/views/reports/report_view.js:975
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
@@ -25246,7 +24960,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:1166
+#: frappe/public/js/frappe/form/grid.js:1170
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25343,7 +25057,7 @@ msgstr "Sugerir optimizaciones"
msgid "Suggested Indexes"
msgstr "Índices sugeridos"
-#: frappe/core/doctype/user/user.py:720
+#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
msgstr "Nombre de usuario sugerido: {0}"
@@ -25633,11 +25347,9 @@ msgstr "Registros del sistema"
#: frappe/geo/doctype/country/country.json
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/connected_app/connected_app.json
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.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_drive/google_drive.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
@@ -25646,7 +25358,6 @@ msgstr "Registros del sistema"
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_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
@@ -25771,11 +25482,11 @@ msgstr "Tabla Multi-selección"
msgid "Table Trimmed"
msgstr "Tabla recortada"
-#: frappe/public/js/frappe/form/grid.js:1165
+#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
msgstr "Tabla actualiza"
-#: frappe/model/document.py:1565
+#: frappe/model/document.py:1564
msgid "Table {0} cannot be empty"
msgstr "La tabla {0} no puede estar vacía"
@@ -25794,7 +25505,7 @@ msgstr "Etiqueta"
msgid "Tag Link"
msgstr "Enlace de etiqueta"
-#: frappe/model/meta.py:57
+#: 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
@@ -25806,15 +25517,6 @@ msgstr "Enlace de etiqueta"
msgid "Tags"
msgstr "Etiquetas"
-#: frappe/integrations/doctype/google_drive/google_drive.js:29
-msgid "Take Backup"
-msgstr "Tomar copia de seguridad"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
-msgid "Take Backup Now"
-msgstr "Tome copia de seguridad ahora"
-
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
msgstr "Tomar Foto"
@@ -25892,12 +25594,12 @@ msgstr "Advertencias de plantilla"
msgid "Templates"
msgstr "Plantillas"
-#: frappe/core/doctype/user/user.py:1027
+#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
msgstr "Desactivado temporalmente"
-#: frappe/core/doctype/translation/test_translation.py:56
-#: frappe/core/doctype/translation/test_translation.py:63
+#: frappe/core/doctype/translation/test_translation.py:47
+#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
msgstr "Datos de prueba"
@@ -25906,8 +25608,8 @@ msgstr "Datos de prueba"
msgid "Test Job ID"
msgstr "ID del trabajo de prueba"
-#: frappe/core/doctype/translation/test_translation.py:58
-#: frappe/core/doctype/translation/test_translation.py:66
+#: frappe/core/doctype/translation/test_translation.py:49
+#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
msgstr "Probar español"
@@ -25915,7 +25617,7 @@ msgstr "Probar español"
msgid "Test email sent to {0}"
msgstr "Correo electrónico de prueba enviado a {0}"
-#: frappe/core/doctype/file/test_file.py:388
+#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Carpeta_Prueba"
@@ -25998,7 +25700,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:1188
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
msgstr "El formato CSV es sensible a mayúsculas y minúsculas"
@@ -26172,15 +25874,15 @@ msgstr "El número de proyecto obtenido de Google Cloud Console en "
-#: frappe/core/doctype/user/user.py:987
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
msgstr "El enlace para restablecer la contraseña ha caducado"
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:991
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:375 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:368 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"
@@ -26192,7 +25894,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:334
+#: frappe/utils/response.py:331
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."
@@ -26253,7 +25955,7 @@ msgstr "No hay próximos eventos para usted."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "No hay {0} para este {1}, ¿Por qué no empiezas uno?"
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "There are {0} with the same filters already in the queue:"
msgstr "Ya hay {0} con los mismos filtros en la cola:"
@@ -26282,7 +25984,7 @@ msgstr "No hay nada nuevo que mostrarle en este momento."
msgid "There is some problem with the file url: {0}"
msgstr "Hay un poco de problema con la url del archivo: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:958
+#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
msgstr "Ya hay {0} con los mismos filtros en la cola:"
@@ -26355,7 +26057,7 @@ msgstr "Este mes"
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
-msgstr "Este cuarto"
+msgstr "Este trimestre"
#: frappe/public/js/frappe/ui/filters/filter.js:662
msgid "This Week"
@@ -26369,12 +26071,12 @@ msgstr "Este año"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Esta acción es irreversible. ¿Desea continuar?"
-#: frappe/__init__.py:750
+#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
msgstr "Esta acción solo está permitida para {}"
#: frappe/public/js/frappe/form/toolbar.js:117
-#: frappe/public/js/frappe/model/model.js:755
+#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "Esto no se puede deshacer"
@@ -26412,7 +26114,7 @@ msgstr "Este documento tiene cambios sin guardar que podrían no aparecer en el
msgid "This document is already amended, you cannot ammend it again"
msgstr "Este documento ya está enmendado, no puede enmendarlo nuevamente"
-#: frappe/model/document.py:474
+#: frappe/model/document.py:473
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr "Este documento está actualmente bloqueado y en cola de ejecución. Por favor, inténtelo de nuevo pasado un tiempo."
@@ -26477,7 +26179,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:2132
+#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Esto es un reporte predeterminado. Por favor seleccione los filtros apropiados y genere uno nuevo."
@@ -26541,7 +26243,7 @@ msgstr "El envío de este boletín está previsto en {0}."
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
msgstr "Este boletín estaba programado para enviarse en una fecha posterior. ¿Está seguro de que desea enviarlo ahora?"
-#: frappe/public/js/frappe/views/reports/query_report.js:1033
+#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Este informe contiene {0} filas y es demasiado grande para mostrarse en el navegador, puede {1} este informe en su lugar."
@@ -26549,7 +26251,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:856
+#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
msgstr "Este reporte fue generado {0}."
@@ -26615,7 +26317,7 @@ msgstr "Esto restablecerá este tour y lo mostrará a todos los usuarios. ¿Est
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr "Esto terminará el trabajo inmediatamente y podría ser peligroso, ¿está seguro? "
-#: frappe/core/doctype/user/user.py:1240
+#: frappe/core/doctype/user/user.py:1242
msgid "Throttled"
msgstr "Limitar"
@@ -26972,7 +26674,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:857
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "To get the updated report, click on {0}."
msgstr "Para obtener el reporte actualizado, hacer clic en {0}."
@@ -26997,10 +26699,6 @@ msgstr "Para usar Google Calendar, habilite {0}."
msgid "To use Google Contacts, enable {0}."
msgstr "Para usar Contactos de Google, habilite {0}."
-#: frappe/integrations/doctype/google_drive/google_drive.js:8
-msgid "To use Google Drive, enable {0}."
-msgstr "Para usar Google Drive, habilite {0}."
-
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -27031,7 +26729,7 @@ msgstr "Tareas"
msgid "Today"
msgstr "Hoy"
-#: frappe/public/js/frappe/views/reports/report_view.js:1564
+#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
msgstr "Alternar Gráfico"
@@ -27047,7 +26745,7 @@ msgstr "Alternar Vista de Cuadrícula"
#: 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:1568
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
msgstr "Alternar Barra Lateral"
@@ -27103,11 +26801,11 @@ msgstr "Demasiadas solicitudes"
msgid "Too many changes to database in single action."
msgstr "Demasiados cambios en la base de datos en una sola acción."
-#: frappe/utils/background_jobs.py:728
+#: 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:1028
+#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "Hay demasiados usuarios se inscribieron recientemente, por lo que el registro está desactivado. Por favor, intente volver en una hora"
@@ -27171,8 +26869,8 @@ msgstr "Tema"
#: frappe/desk/query_report.py:533
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1320
-#: frappe/public/js/frappe/views/reports/report_view.js:1545
+#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr "Total"
@@ -27235,11 +26933,11 @@ msgstr "Número total de mensajes de correo electrónico para sincronizar en el
msgid "Total:"
msgstr "Monto:"
-#: frappe/public/js/frappe/views/reports/report_view.js:1250
+#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
msgstr "Totales"
-#: frappe/public/js/frappe/views/reports/report_view.js:1225
+#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
msgstr "Fila de Totales"
@@ -27354,7 +27052,7 @@ msgstr "Transiciones"
msgid "Translatable"
msgstr "Traducible"
-#: frappe/public/js/frappe/views/reports/query_report.js:2188
+#: frappe/public/js/frappe/views/reports/query_report.js:2183
msgid "Translate Data"
msgstr ""
@@ -27365,7 +27063,7 @@ msgstr ""
msgid "Translate Link Fields"
msgstr "Traducir Campos de Enlace"
-#: frappe/public/js/frappe/views/reports/report_view.js:1650
+#: frappe/public/js/frappe/views/reports/report_view.js:1656
msgid "Translate values"
msgstr "Traducir valores"
@@ -27513,7 +27211,7 @@ msgstr "Método de autenticación de dos factores"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/views/file/file_view.js:337
#: frappe/public/js/frappe/views/workspace/workspace.js:399
-#: frappe/public/js/frappe/widgets/widget_dialog.js:391
+#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
msgid "Type"
@@ -27594,7 +27292,7 @@ msgstr "URI para recibir el código de autorización una vez que el usuario perm
#: 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:458
+#: 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"
@@ -27656,7 +27354,7 @@ msgstr "No se puede encontrar DocType {0}"
msgid "Unable to load camera."
msgstr "No se puede cargar la cámara."
-#: frappe/public/js/frappe/model/model.js:268
+#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
msgstr "No se puede cargar: {0}"
@@ -27685,7 +27383,7 @@ msgstr "Incapaz de escribir el formato de archivo para {0}"
msgid "Unassign Condition"
msgstr "Desasignar condición"
-#: frappe/app.py:383
+#: frappe/app.py:376
msgid "Uncaught Exception"
msgstr "Excepción no controlada"
@@ -27918,7 +27616,7 @@ msgstr "Actualizado"
msgid "Updated Successfully"
msgstr "Actualizado exitosamente"
-#: frappe/public/js/frappe/desk.js:444
+#: frappe/public/js/frappe/desk.js:452
msgid "Updated To A New Version 🎉"
msgstr "Actualizado a una nueva versión 🎉"
@@ -27926,7 +27624,7 @@ msgstr "Actualizado a una nueva versión 🎉"
msgid "Updated successfully"
msgstr "Actualizado exitosamente"
-#: frappe/utils/response.py:333
+#: frappe/utils/response.py:330
msgid "Updating"
msgstr "Actualización"
@@ -28000,18 +27698,6 @@ msgstr "Subido a Dropbox"
msgid "Uploaded To Google Drive"
msgstr "Subido a Google Drive"
-#: frappe/integrations/doctype/google_drive/google_drive.py:196
-msgid "Uploading backup to Google Drive."
-msgstr "Subiendo copia de seguridad a Google Drive."
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:201
-msgid "Uploading successful."
-msgstr "Subido correctamente"
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:16
-msgid "Uploading to Google Drive"
-msgstr "Subiendo a Google Drive"
-
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -28095,11 +27781,11 @@ 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:434
+#: frappe/model/db_query.py:435
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:411
+#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
msgstr "El uso de la sub-query o función está restringido"
@@ -28216,7 +27902,7 @@ msgstr "El usuario no puede crear"
msgid "User Cannot Search"
msgstr "El usuario no puede buscar"
-#: frappe/public/js/frappe/desk.js:546
+#: frappe/public/js/frappe/desk.js:554
msgid "User Changed"
msgstr "Usuario modificado"
@@ -28322,8 +28008,8 @@ 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:1881
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "Permisos de Usuario"
@@ -28420,7 +28106,7 @@ msgstr "El usuario deberá elegir siempre"
msgid "User permission already exists"
msgstr "El permiso de Usuario ya existe"
-#: frappe/www/login.py:167
+#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
msgstr "No existe un usuario con dirección de correo electrónico {0}"
@@ -28428,23 +28114,23 @@ msgstr "No existe un usuario con dirección de correo electrónico {0}"
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr "Usuario con correo electrónico: {0} no existe en el sistema. Solicite al 'Administrador del sistema' que cree el usuario por usted."
-#: frappe/core/doctype/user/user.py:536
+#: frappe/core/doctype/user/user.py:537
msgid "User {0} cannot be deleted"
msgstr "El usuario {0} no se puede eliminar"
-#: frappe/core/doctype/user/user.py:326
+#: frappe/core/doctype/user/user.py:327
msgid "User {0} cannot be disabled"
msgstr "El usuario {0} no se puede deshabilitar"
-#: frappe/core/doctype/user/user.py:602
+#: frappe/core/doctype/user/user.py:603
msgid "User {0} cannot be renamed"
msgstr "El usuario {0} no puede ser renombrado"
-#: frappe/permissions.py:138
+#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
msgstr "El usuario {0} no tiene acceso a este documento"
-#: frappe/permissions.py:161
+#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr "El usuario {0} no tiene acceso a doctype a través del permiso de rol para el documento {1}"
@@ -28457,7 +28143,7 @@ msgstr "El usuario {0} no tiene permiso para crear un espacio de trabajo."
msgid "User {0} has requested for data deletion"
msgstr "El usuario {0} ha solicitado la eliminación de datos"
-#: frappe/core/doctype/user/user.py:1369
+#: frappe/core/doctype/user/user.py:1371
msgid "User {0} impersonated as {1}"
msgstr "Usuario {0} suplantado como {1}"
@@ -28486,7 +28172,7 @@ msgstr "URI de Información de Usuario"
msgid "Username"
msgstr "Nombre de usuario"
-#: frappe/core/doctype/user/user.py:687
+#: frappe/core/doctype/user/user.py:689
msgid "Username {0} already exists"
msgstr "Nombre de usuario {0} ya existe"
@@ -28626,15 +28312,15 @@ msgstr "Valor Cambiado"
msgid "Value To Be Set"
msgstr "Valor a Establecer"
-#: frappe/model/base_document.py:1049 frappe/model/document.py:834
+#: frappe/model/base_document.py:1054 frappe/model/document.py:833
msgid "Value cannot be changed for {0}"
msgstr "El valor no puede ser cambiado para {0}"
-#: frappe/model/document.py:780
+#: frappe/model/document.py:779
msgid "Value cannot be negative for"
msgstr "El valor no puede ser negativo para"
-#: frappe/model/document.py:784
+#: frappe/model/document.py:783
msgid "Value cannot be negative for {0}: {1}"
msgstr "El valor no puede ser negativo para {0}: {1}"
@@ -28665,7 +28351,7 @@ msgstr "El valor debe ser uno de {0}"
msgid "Value to Validate"
msgstr "Valor para validar"
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1124
msgid "Value too big"
msgstr "Valor demasiado grande"
@@ -29266,11 +28952,6 @@ msgstr "Días de la Semana"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -29279,9 +28960,6 @@ msgstr "Días de la Semana"
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:399
#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
@@ -29316,11 +28994,11 @@ msgstr "URL de bienvenida"
msgid "Welcome Workspace"
msgstr "Área de Trabajo de Bienvenida"
-#: frappe/core/doctype/user/user.py:414
+#: frappe/core/doctype/user/user.py:415
msgid "Welcome email sent"
msgstr "Correo electrónico de bienvenida enviado"
-#: frappe/core/doctype/user/user.py:475
+#: frappe/core/doctype/user/user.py:476
msgid "Welcome to {0}"
msgstr "Bienvenido a {0}"
@@ -29353,7 +29031,7 @@ msgstr "Cuando modifique un documento después de cancelarlo y lo guarde, obtend
#. 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:468
+#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
msgstr "¿A qué vista del DocType asociado debería llevarle este acceso directo?"
@@ -29552,7 +29230,7 @@ msgstr "Flujo de trabajo actualizado correctamente"
msgid "Workspace"
msgstr "Área de Trabajo"
-#: frappe/public/js/frappe/router.js:177
+#: frappe/public/js/frappe/router.js:173
msgid "Workspace {0} does not exist"
msgstr "El Área de Trabajo {0} no existe"
@@ -29622,11 +29300,11 @@ msgstr "Espacio de trabajo {0} creado"
msgid "Workspaces"
msgstr "Áreas de Trabajo"
-#: frappe/public/js/frappe/form/footer/form_timeline.js:753
+#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
msgstr ""
@@ -29645,11 +29323,11 @@ msgstr "Terminando"
msgid "Write"
msgstr "Escribir"
-#: frappe/model/base_document.py:949
+#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
msgstr "Valor incorrecto de recuperación"
-#: frappe/public/js/frappe/views/reports/report_view.js:484
+#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
msgstr "Campo Eje X"
@@ -29668,13 +29346,13 @@ msgstr "XLSX"
msgid "Y Axis"
msgstr "Eje Y"
-#: frappe/public/js/frappe/views/reports/report_view.js:491
+#: frappe/public/js/frappe/views/reports/report_view.js:497
msgid "Y Axis Fields"
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:1221
+#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
msgstr "Campo Y"
@@ -29735,7 +29413,7 @@ msgstr "Amarillo"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Si"
@@ -29775,11 +29453,11 @@ msgstr "Estás accediendo a la cuenta de otro usuario."
msgid "You are not allowed to access this resource"
msgstr "No tiene permiso para acceder a este recurso"
-#: frappe/permissions.py:409
+#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "No tiene permiso para acceder a este registro {0} porque está vinculado a {1} '{2}' en el campo {3}"
-#: frappe/permissions.py:398
+#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "No tiene permiso para acceder a este registro {0} porque está vinculado a {1} '{2}' en el campo {3}"
@@ -29802,7 +29480,7 @@ msgstr "No tiene permiso para editar el informe."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:604
+#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
msgstr "No está permitido exportar {} doctype"
@@ -29814,7 +29492,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:569
+#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
msgstr "Usted no está autorizado para modificar este formulario web"
@@ -29830,7 +29508,7 @@ msgstr "No está autorizado a acceder a esta página sin iniciar sesión."
msgid "You are not permitted to access this page."
msgstr "Usted no está autorizado a acceder a esta página."
-#: frappe/__init__.py:669
+#: frappe/__init__.py:676
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29838,7 +29516,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr "Ahora estás siguiendo este documento. Recibirá actualizaciones diarias por correo electrónico. Puede cambiar esto en la Configuración de usuario."
-#: frappe/core/doctype/installed_applications/installed_applications.py:82
+#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
msgstr "Solo se le permite actualizar el pedido, no eliminar ni añadir aplicaciones."
@@ -30002,11 +29680,11 @@ msgstr "No tienes permisos de lectura o selección para {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Usted no tiene permisos suficientes para acceder a este apartado. Por favor, póngase en contacto con su administrador para obtener acceso."
-#: frappe/app.py:368
+#: frappe/app.py:361
msgid "You do not have enough permissions to complete the action"
msgstr "Usted no tiene suficientes permisos para completar la acción"
-#: frappe/desk/query_report.py:838
+#: frappe/desk/query_report.py:831
msgid "You do not have permission to access {0}: {1}."
msgstr "No tienes permiso para acceder a {0}: {1}."
@@ -30018,11 +29696,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:772
+#: frappe/website/doctype/web_form/web_form.py:769
msgid "You don't have permission to access the {0} DocType."
msgstr "No tienes permiso para acceder al DocType {0} ."
-#: frappe/utils/response.py:286 frappe/utils/response.py:290
+#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
msgstr "Usted no tiene permiso para acceder a este archivo"
@@ -30030,7 +29708,7 @@ msgstr "Usted no tiene permiso para acceder a este archivo"
msgid "You don't have permission to get a report on: {0}"
msgstr "Usted no tiene permiso para obtener un informe sobre: {0}"
-#: frappe/website/doctype/web_form/web_form.py:175
+#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
msgstr "Usted no está autorizado para acceder a este documento"
@@ -30083,23 +29761,23 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr "Alcanzaste el límite debido a demasiadas solicitudes. Inténtalo más tarde."
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
msgstr "Usted editó esto por última vez"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:339
+#: frappe/public/js/frappe/widgets/widget_dialog.js:352
msgid "You must add atleast one link."
msgstr "Debe añadir al menos un enlace."
-#: frappe/website/doctype/web_form/web_form.py:768
+#: frappe/website/doctype/web_form/web_form.py:765
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:609
+#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
msgstr "Debes iniciar sesión para enviar este formulario"
-#: frappe/model/document.py:357
+#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr "Necesita el permiso '{0}' en {1} {2} para realizar esta acción."
@@ -30115,11 +29793,11 @@ msgstr "Necesita ser Administrador del Área de Trabajo para editar este documen
msgid "You need to be a system user to access this page."
msgstr "Tiene que estar registrado para acceder a esta página."
-#: frappe/website/doctype/web_form/web_form.py:94
+#: frappe/website/doctype/web_form/web_form.py:91
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:275
+#: frappe/utils/response.py:272
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."
@@ -30127,7 +29805,7 @@ msgstr "Debe haber iniciado sesión y tener la función de administrador del sis
msgid "You need to be logged in to access this page"
msgstr "Tiene que estar registrado para acceder a esta página"
-#: frappe/website/doctype/web_form/web_form.py:164
+#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
msgstr "Debe haber iniciado sesión para acceder a {0}."
@@ -30202,7 +29880,7 @@ msgstr "Has dejado de seguir este documento"
msgid "You viewed this"
msgstr "Ya has visto esto"
-#: frappe/public/js/frappe/desk.js:543
+#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr "Has iniciado sesión como otro usuario desde otra pestaña. Actualiza esta página para seguir usando el sistema."
@@ -30285,7 +29963,7 @@ msgstr "El nombre de la organización y dirección para el pie de página del co
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Su consulta ha sido recibida. Responderemos a la mayor brevedad posible. Si usted tiene alguna información adicional, puede responder a este correo."
-#: frappe/app.py:361
+#: frappe/app.py:354
msgid "Your session has expired, please login again to continue."
msgstr "Tu sesión ha caducado, vuelve a iniciar sesión para continuar."
@@ -30516,7 +30194,7 @@ msgstr "correo electrónico"
msgid "email inbox"
msgstr "bandeja de entrada de email"
-#: frappe/permissions.py:403 frappe/permissions.py:414
+#: frappe/permissions.py:412 frappe/permissions.py:423
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "vacío"
@@ -31068,7 +30746,7 @@ msgstr "{0} = {1}"
msgid "{0} Calendar"
msgstr "{0} Calendario"
-#: frappe/public/js/frappe/views/reports/report_view.js:564
+#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
msgstr "{0} Gráfico"
@@ -31116,7 +30794,7 @@ msgstr "{0} Mapa"
msgid "{0} Name"
msgstr "{0} Nombre"
-#: frappe/model/base_document.py:1149
+#: frappe/model/base_document.py:1154
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}"
@@ -31126,7 +30804,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:952
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
msgstr "{0} Informes"
@@ -31192,7 +30870,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr "{0} adjunto {1}"
-#: frappe/core/doctype/system_settings/system_settings.py:149
+#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
msgstr "{0} no puede ser más de {1}"
@@ -31205,7 +30883,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} canceló este documento {1}"
-#: frappe/model/document.py:547
+#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -31330,7 +31008,7 @@ msgstr "{0} es un campo de datos no válido."
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "{0} es una dirección de correo electrónico no válida en "Destinatarios""
-#: frappe/public/js/frappe/views/reports/report_view.js:1462
+#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
msgstr "{0} está entre {1} y {2}"
@@ -31339,27 +31017,27 @@ msgstr "{0} está entre {1} y {2}"
msgid "{0} is currently {1}"
msgstr "{0} es actualmente {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1431
+#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
msgstr "{0} es igual a {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1451
+#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
msgstr "{0} es mayor o igual a {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1441
+#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
msgstr "{0} es mayor que {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1456
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
msgstr "{0} es menor o igual que {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1446
+#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
msgstr "{0} es menor que {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1481
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
msgstr "{0} es como {1}"
@@ -31379,7 +31057,7 @@ msgstr "{0} no es un formato de impresión sin formato."
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr "{0} no es un Calendario válido. Redirigiendo al Calendario por defecto."
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:64
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
msgstr "{0} no es una expresión Cron válida."
@@ -31408,11 +31086,11 @@ msgstr "{0} no es un número de teléfono válido"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} no es un estado de flujo de trabajo válido. Actualice su flujo de trabajo y vuelva a intentarlo."
-#: frappe/permissions.py:787
+#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} no es un DocType padre válido para {1}"
-#: frappe/permissions.py:807
+#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} no es un campo padre válido para {1}"
@@ -31424,27 +31102,27 @@ msgstr "{0} no es un formato de informe válido. El formato del informe debe ser
msgid "{0} is not a zip file"
msgstr "{0} no es un archivo zip"
-#: frappe/public/js/frappe/views/reports/report_view.js:1436
+#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
msgstr "{0} no es igual a {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1483
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
msgstr "{0} no es como {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
msgstr "{0} no es uno de {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1487
+#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
msgstr "{0} no está establecido"
-#: frappe/printing/doctype/print_format/print_format.py:165
+#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} ahora es el formato de impresión predeterminado para el doctype {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1470
+#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
msgstr "{0} es uno de {1}"
@@ -31455,11 +31133,11 @@ msgstr "{0} es uno de {1}"
msgid "{0} is required"
msgstr "{0} es requerido"
-#: frappe/public/js/frappe/views/reports/report_view.js:1486
+#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
msgstr "{0} está establecido"
-#: frappe/public/js/frappe/views/reports/report_view.js:1465
+#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
msgstr "{0} está dentro de {1}"
@@ -31467,12 +31145,12 @@ msgstr "{0} está dentro de {1}"
msgid "{0} items selected"
msgstr "{0} elementos seleccionados"
-#: frappe/core/doctype/user/user.py:1378
+#: frappe/core/doctype/user/user.py:1380
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} se hizo pasar por usted. Dieron esta razón: {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:104
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
msgstr "{0} editó esto por última vez"
@@ -31488,7 +31166,7 @@ msgstr "{0} desconectado: {1}"
msgid "{0} m"
msgstr "{0} m"
-#: frappe/desk/notifications.py:397
+#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
msgstr "{0} te mencionó en un comentario en {1} {2}"
@@ -31500,35 +31178,35 @@ msgstr "Hace {0} minutos"
msgid "{0} months ago"
msgstr "Hace {0} meses"
-#: frappe/model/document.py:1792
+#: frappe/model/document.py:1791
msgid "{0} must be after {1}"
msgstr "{0} debe ser después de {1}"
-#: frappe/model/document.py:1551
+#: frappe/model/document.py:1550
msgid "{0} must be beginning with '{1}'"
msgstr "{0} debe comenzar con '{1}'"
-#: frappe/model/document.py:1553
+#: frappe/model/document.py:1552
msgid "{0} must be equal to '{1}'"
msgstr "{0} debe ser igual a '{1}'"
-#: frappe/model/document.py:1549
+#: frappe/model/document.py:1548
msgid "{0} must be none of {1}"
msgstr "{0} debe ser uno de {1}"
-#: frappe/model/document.py:1547 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} debe ser uno de {1}"
-#: frappe/model/base_document.py:875
+#: frappe/model/base_document.py:876
msgid "{0} must be set first"
msgstr "{0} debe establecerse primero"
-#: frappe/model/base_document.py:732
+#: frappe/model/base_document.py:729
msgid "{0} must be unique"
msgstr "{0} debe ser único"
-#: frappe/model/document.py:1555
+#: frappe/model/document.py:1554
msgid "{0} must be {1} {2}"
msgstr "{0} debe ser {1} {2}"
@@ -31603,7 +31281,7 @@ msgstr "{0} eliminado su asignación."
msgid "{0} role does not have permission on any doctype"
msgstr "{0} el rol no tiene permiso sobre ningún doctype"
-#: frappe/model/document.py:1785
+#: frappe/model/document.py:1784
msgid "{0} row #{1}: "
msgstr "{0} fila #{1}: "
@@ -31699,11 +31377,11 @@ msgstr "{0} {1} agregado"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0} {1} agregado al panel {2}"
-#: frappe/model/base_document.py:665 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} ya existe"
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:987
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} no puede ser \"{2}\". Debe ser uno de \"{3}\""
@@ -31719,7 +31397,7 @@ msgstr "{0} {1} no existe, seleccione un nuevo objetivo para fusionar"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} está vinculado con los siguientes documentos enviados: {2}"
-#: frappe/model/document.py:260 frappe/permissions.py:558
+#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
msgstr "{0} {1} no encontrado"
@@ -31727,7 +31405,7 @@ msgstr "{0} {1} no encontrado"
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:1110
+#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
msgstr "{0}, Fila {1}"
@@ -31735,7 +31413,7 @@ 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:1115
+#: frappe/model/base_document.py:1120
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}"
@@ -31836,7 +31514,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:1279
+#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} vs {2}"
diff --git a/frappe/locale/fa.po b/frappe/locale/fa.po
index 7ba41fcef0..263157b495 100644
--- a/frappe/locale/fa.po
+++ b/frappe/locale/fa.po
@@ -2,14 +2,14 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-08 09:34+0000\n"
-"PO-Revision-Date: 2025-06-16 15:30\n"
+"POT-Creation-Date: 2025-06-22 09:34+0000\n"
+"PO-Revision-Date: 2025-06-22 16:40\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Persian\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.13.1\n"
+"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"
@@ -141,7 +141,7 @@ msgstr "1 روز"
msgid "1 Google Calendar Event synced."
msgstr "1 رویداد تقویم Google همگامسازی شد."
-#: frappe/public/js/frappe/views/reports/query_report.js:951
+#: frappe/public/js/frappe/views/reports/query_report.js:953
msgid "1 Report"
msgstr "1 گزارش"
@@ -149,7 +149,7 @@ msgstr "1 گزارش"
msgid "1 comment"
msgstr "1 نظر"
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:711
msgid "1 day ago"
msgstr "1 روز پیش"
@@ -158,17 +158,17 @@ msgid "1 hour"
msgstr "1 ساعت"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:709
msgid "1 hour ago"
msgstr "1 ساعت پیش"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:707
msgid "1 minute ago"
msgstr "1 دقیقه پیش"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:715
msgid "1 month ago"
msgstr "1 ماه پیش"
@@ -180,37 +180,37 @@ msgstr "1 از 2"
msgid "1 record will be exported"
msgstr "1 رکورد صادر خواهد شد"
-#: frappe/tests/test_utils.py:705
+#: frappe/tests/test_utils.py:706
msgid "1 second ago"
msgstr "1 ثانیه پیش"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:713
msgid "1 week ago"
msgstr "1 هفته قبل"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:717
msgid "1 year ago"
msgstr "1 سال پیش"
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:710
msgid "2 hours ago"
msgstr "2 ساعت پیش"
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:716
msgid "2 months ago"
msgstr "2 ماه پیش"
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:714
msgid "2 weeks ago"
msgstr "2 هفته پیش"
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:718
msgid "2 years ago"
msgstr "2 سال پیش"
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:708
msgid "3 minutes ago"
msgstr "3 دقیقه پیش"
@@ -226,7 +226,7 @@ msgstr "4 ساعت"
msgid "5 Records"
msgstr "5 رکورد"
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:712
msgid "5 days ago"
msgstr "5 روز پیش"
@@ -246,7 +246,7 @@ msgstr "<"
msgid "<="
msgstr "<="
-#: frappe/public/js/frappe/widgets/widget_dialog.js:588
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
msgid "{0} is not a valid URL"
msgstr "{0} یک URL معتبر نیست"
@@ -655,10 +655,7 @@ msgid "API"
msgstr "API"
#. Label of the api_access (Section Break) field in DocType 'User'
-#. Label of the api_access_section (Section Break) field in DocType 'S3 Backup
-#. Settings'
#: frappe/core/doctype/user/user.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "API Access"
msgstr "دسترسی به API"
@@ -770,17 +767,6 @@ msgstr "حدود {0} ثانیه باقی مانده است"
msgid "Access Control"
msgstr "کنترل دسترسی"
-#. Label of the access_key_id (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key ID"
-msgstr "دسترسی به شناسه کلید"
-
-#. Label of the secret_access_key (Password) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key Secret"
-msgstr "دسترسی به رمز کلید"
-
#. Name of a DocType
#. Label of a Link in the Users Workspace
#: frappe/core/doctype/access_log/access_log.json
@@ -831,6 +817,10 @@ msgstr "مدیر حسابداری"
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'
@@ -861,7 +851,7 @@ msgstr "اقدام / مسیر"
msgid "Action Complete"
msgstr "اقدام کامل شد"
-#: frappe/model/document.py:1872
+#: frappe/model/document.py:1871
msgid "Action Failed"
msgstr "اقدام ناموفق بود"
@@ -910,10 +900,10 @@ msgstr "عمل {0} در {1} {2} ناموفق بود. مشاهده آن {3}"
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:192
-#: frappe/public/js/frappe/views/reports/query_report.js:205
-#: frappe/public/js/frappe/views/reports/query_report.js:215
-#: frappe/public/js/frappe/views/reports/query_report.js:845
+#: frappe/public/js/frappe/views/reports/query_report.js:190
+#: frappe/public/js/frappe/views/reports/query_report.js:203
+#: frappe/public/js/frappe/views/reports/query_report.js:213
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Actions"
msgstr "اقدامات"
@@ -975,8 +965,8 @@ msgstr "لاگ فعالیت"
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:267
-#: frappe/public/js/frappe/views/reports/query_report.js:295
+#: frappe/public/js/frappe/views/reports/query_report.js:265
+#: frappe/public/js/frappe/views/reports/query_report.js:293
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "افزودن"
@@ -1017,7 +1007,7 @@ msgstr "افزودن حاشیه در بالا"
msgid "Add Card to Dashboard"
msgstr "افزودن کارت به داشبورد"
-#: frappe/public/js/frappe/views/reports/query_report.js:211
+#: frappe/public/js/frappe/views/reports/query_report.js:209
msgid "Add Chart to Dashboard"
msgstr "افزودن نمودار به داشبورد"
@@ -1026,10 +1016,10 @@ msgid "Add Child"
msgstr "افزودن فرزند"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1769
-#: frappe/public/js/frappe/views/reports/query_report.js:1772
-#: frappe/public/js/frappe/views/reports/report_view.js:349
-#: frappe/public/js/frappe/views/reports/report_view.js:374
+#: frappe/public/js/frappe/views/reports/query_report.js:1771
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/report_view.js:355
+#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
msgstr "افزودن ستون"
@@ -1053,7 +1043,7 @@ msgid "Add Custom Tags"
msgstr "افزودن تگهای سفارشی"
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
-#: frappe/public/js/frappe/widgets/widget_dialog.js:703
+#: frappe/public/js/frappe/widgets/widget_dialog.js:716
msgid "Add Filters"
msgstr "افزودن فیلترها"
@@ -1088,7 +1078,7 @@ msgstr "افزودن شرکت کنندگان"
msgid "Add Query Parameters"
msgstr "افزودن پارامترهای پرسمان"
-#: frappe/core/doctype/user/user.py:806
+#: frappe/core/doctype/user/user.py:808
msgid "Add Roles"
msgstr "افزودن نقش ها"
@@ -1233,7 +1223,7 @@ msgid "Add tab"
msgstr "افزودن تب"
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:253
+#: frappe/public/js/frappe/views/reports/query_report.js:251
msgid "Add to Dashboard"
msgstr "افزودن به داشبورد"
@@ -1388,11 +1378,11 @@ msgstr "مدیریت"
msgid "Administrator"
msgstr "ادمین"
-#: frappe/core/doctype/user/user.py:1211
+#: frappe/core/doctype/user/user.py:1213
msgid "Administrator Logged In"
msgstr "مدیر وارد شده است"
-#: frappe/core/doctype/user/user.py:1205
+#: frappe/core/doctype/user/user.py:1207
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "ادمین از طریق آدرس IP {2} به {0} در {1} دسترسی پیدا کرد."
@@ -1625,12 +1615,6 @@ msgstr "اجازه ویرایش انبوه"
msgid "Allow Consecutive Login Attempts "
msgstr "اجازه تلاش های متوالی برای ورود به سیستم "
-#. Label of the allow_dropbox_access (Button) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Allow Dropbox Access"
-msgstr "اجازه دسترسی به Dropbox را بدهید"
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
msgid "Allow Google Calendar Access"
msgstr "اجازه دسترسی به Google Calendar"
@@ -1639,10 +1623,6 @@ msgstr "اجازه دسترسی به Google Calendar"
msgid "Allow Google Contacts Access"
msgstr "اجازه دسترسی به Google Contacts"
-#: frappe/integrations/doctype/google_drive/google_drive.py:52
-msgid "Allow Google Drive Access"
-msgstr "اجازه دسترسی به Google Drive"
-
#. Label of the allow_guest (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
@@ -1896,7 +1876,7 @@ msgstr ""
msgid "Allowing DocType, DocType. Be careful!"
msgstr "اجازه دادن به DocType، DocType. مراقب باش!"
-#: frappe/core/doctype/user/user.py:1021
+#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr "قبلا ثبت شده است"
@@ -1904,11 +1884,11 @@ msgstr "قبلا ثبت شده است"
msgid "Already in the following Users ToDo list:{0}"
msgstr "در حال حاضر در لیست انجام کارهای کاربران زیر:{0}"
-#: frappe/public/js/frappe/views/reports/report_view.js:896
+#: frappe/public/js/frappe/views/reports/report_view.js:902
msgid "Also adding the dependent currency field {0}"
msgstr "همچنین افزودن فیلد ارز وابسته {0}"
-#: frappe/public/js/frappe/views/reports/report_view.js:909
+#: frappe/public/js/frappe/views/reports/report_view.js:915
msgid "Also adding the status dependency field {0}"
msgstr "همچنین افزودن فیلد وابستگی به وضعیت {0}"
@@ -1987,7 +1967,7 @@ msgstr "اصلاح کننده"
msgid "Amendment Naming Override"
msgstr "اصلاح نامگذاری لغو"
-#: frappe/model/document.py:550
+#: frappe/model/document.py:549
msgid "Amendment Not Allowed"
msgstr "اصلاحیه مجاز نیست"
@@ -2076,15 +2056,6 @@ msgstr "به غیر از System Manager، نقشهایی با Set User Permis
msgid "App"
msgstr "برنامه"
-#. Label of the app_access_key (Data) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Access Key"
-msgstr "کلید دسترسی به برنامه"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:22
-msgid "App Access Key and/or Secret Key are not present."
-msgstr "کلید دسترسی برنامه و/یا کلید مخفی وجود ندارد."
-
#. Label of the client_id (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client ID"
@@ -2118,16 +2089,11 @@ msgstr "لوگوی برنامه"
msgid "App Name"
msgstr "نام برنامه"
-#. Label of the app_secret_key (Password) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Secret Key"
-msgstr "کلید مخفی برنامه"
-
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr "برنامه برای ماژول یافت نشد: {0}"
-#: frappe/__init__.py:1462
+#: frappe/__init__.py:1465
msgid "App {0} is not installed"
msgstr "برنامه {0} نصب نشده است"
@@ -2277,7 +2243,7 @@ msgstr "ستون های بایگانی شده"
msgid "Are you sure you want to clear the assignments?"
msgstr "آیا مطمئن هستید که میخواهید واگذاری ها را پاک کنید؟"
-#: frappe/public/js/frappe/form/grid.js:290
+#: frappe/public/js/frappe/form/grid.js:294
msgid "Are you sure you want to delete all rows?"
msgstr "آیا مطمئن هستید که میخواهید همه ردیف ها را حذف کنید؟"
@@ -2305,7 +2271,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr "آیا مطمئن هستید که میخواهید تغییرات را نادیده بگیرید؟"
-#: frappe/public/js/frappe/views/reports/query_report.js:965
+#: frappe/public/js/frappe/views/reports/query_report.js:967
msgid "Are you sure you want to generate a new report?"
msgstr "آیا مطمئن هستید که میخواهید یک گزارش جدید ایجاد کنید؟"
@@ -2431,7 +2397,7 @@ msgstr "اختصاص داده شده توسط"
msgid "Assigned By Full Name"
msgstr "نام کامل اختصاص دهنده"
-#: frappe/model/meta.py:60
+#: 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
@@ -2701,13 +2667,11 @@ msgstr "نویسنده"
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
#. Contacts'
-#. Label of the authorization_code (Data) field in DocType 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
@@ -2745,12 +2709,6 @@ msgstr "مجوز دسترسی به تقویم Google"
msgid "Authorize Google Contacts Access"
msgstr "مجوز دسترسی به Google Contacts"
-#. Label of the authorize_google_drive_access (Button) field in DocType 'Google
-#. Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Authorize Google Drive Access"
-msgstr "مجوز دسترسی به Google Drive"
-
#. 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"
@@ -2897,11 +2855,11 @@ msgstr "پیام خودکار"
msgid "Automatic"
msgstr "خودکار"
-#: frappe/email/doctype/email_account/email_account.py:774
+#: 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:768
+#: frappe/email/doctype/email_account/email_account.py:766
msgid "Automatic Linking can be activated only if Incoming is enabled."
msgstr "پیوند خودکار فقط در صورتی فعال میشود که Incoming فعال باشد."
@@ -3115,66 +3073,14 @@ msgstr ""
msgid "Background Workers"
msgstr "کارگران پیشینه"
-#: frappe/integrations/doctype/google_drive/google_drive.py:170
-msgid "Backing up Data."
-msgstr "پشتیبان گیری از داده ها"
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:32
-msgid "Backing up to Google Drive."
-msgstr "پشتیبان گیری در Google Drive."
-
-#. Label of a Card Break in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Backup"
-msgstr "پشتیبان گیری"
-
-#. Label of the backup_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Details"
-msgstr "جزئیات پشتیبان"
-
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
msgstr "کلید رمزگذاری پشتیبان"
-#. Label of the backup_files (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Files"
-msgstr "فایل های پشتیبان"
-
-#. Label of the backup_folder_id (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder ID"
-msgstr "شناسه پوشه پشتیبان"
-
-#. Label of the backup_folder_name (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder Name"
-msgstr "نام پوشه پشتیبان"
-
-#. Label of the backup_frequency (Select) field in DocType 'Dropbox Settings'
-#. Label of the frequency (Select) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Frequency"
-msgstr "فرکانس پشتیبان گیری"
-
-#. Label of the backup_path (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Path"
-msgstr "مسیر پشتیبان"
-
#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
msgstr "کار پشتیبان گیری از قبل در صف است. یک ایمیل با لینک دانلود دریافت خواهید کرد"
-#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup public and private files along with the database."
-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'
@@ -3188,7 +3094,7 @@ msgstr "پشتیبان گیری"
msgid "Backups (MB)"
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:65
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
msgid "Bad Cron Expression"
msgstr "عبارت Cron بد"
@@ -3586,15 +3492,6 @@ msgstr "مرورگر پشتیبانی نمیشود"
msgid "Brute Force Security"
msgstr "Brute Force Security"
-#. Label of the bucket (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Bucket Name"
-msgstr "نام باکت"
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:71
-msgid "Bucket {0} not found."
-msgstr "باکت {0} یافت نشد."
-
#. 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"
@@ -3631,7 +3528,7 @@ msgstr "حذف انبوه"
msgid "Bulk Edit"
msgstr "ویرایش انبوه"
-#: frappe/public/js/frappe/form/grid.js:1184
+#: frappe/public/js/frappe/form/grid.js:1188
msgid "Bulk Edit {0}"
msgstr "ویرایش انبوه {0}"
@@ -3706,12 +3603,6 @@ msgstr "با فیلد «سری نامگذاری»"
msgid "By default the title is used as meta title, adding a value here will override it."
msgstr "به طور پیشفرض عنوان به عنوان عنوان متا استفاده میشود، افزودن یک مقدار در اینجا آن را لغو میکند."
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "By default, emails are only sent for failed backups."
-msgstr "به طور پیشفرض، ایمیل ها فقط برای پشتیبان گیری ناموفق ارسال میشوند."
-
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
@@ -4022,7 +3913,7 @@ msgstr "نمیتوان مقادیر را واکشی کرد"
msgid "Cannot Remove"
msgstr "نمیتوان حذف کرد"
-#: frappe/model/base_document.py:1156
+#: frappe/model/base_document.py:1161
msgid "Cannot Update After Submit"
msgstr "پس از ارسال امکان به روز رسانی وجود ندارد"
@@ -4042,11 +3933,11 @@ msgstr "قبل از ارسال نمیتوان لغو کرد. انتقال {0}
msgid "Cannot cancel {0}."
msgstr "نمیتوان {0} را لغو کرد."
-#: frappe/model/document.py:1012
+#: frappe/model/document.py:1011
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr "نمیتوان وضعیت docstatus را از 0 (پیشنویس) به 2 (لغو) تغییر داد"
-#: frappe/model/document.py:1026
+#: frappe/model/document.py:1025
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "نمیتوان وضعیت docstatus را از 1 (ارائه شده) به 0 (پیشنویس) تغییر داد"
@@ -4129,7 +4020,7 @@ msgstr "نمودارهای استاندارد را نمیتوان ویرای
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "نمیتوان یک گزارش استاندارد را ویرایش کرد. لطفا کپی کنید و یک گزارش جدید ایجاد کنید"
-#: frappe/model/document.py:1032
+#: frappe/model/document.py:1031
msgid "Cannot edit cancelled document"
msgstr "نمیتوان سند لغو شده را ویرایش کرد"
@@ -4162,11 +4053,11 @@ msgstr "محتویات فایل یک پوشه را نمیتوان دریاف
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "نمیتوان چندین چاپگر را به یک قالب چاپی نگاشت کرد."
-#: frappe/public/js/frappe/form/grid.js:1128
+#: frappe/public/js/frappe/form/grid.js:1132
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1100
+#: frappe/model/document.py:1099
msgid "Cannot link cancelled document: {0}"
msgstr "پیوند سند لغو شده امکان پذیر نیست: {0}"
@@ -4182,7 +4073,7 @@ msgstr "ستون {0} با هیچ فیلدی مطابقت ندارد"
msgid "Cannot move row"
msgstr "نمیتوان ردیف را جابجا کرد"
-#: frappe/public/js/frappe/views/reports/report_view.js:921
+#: frappe/public/js/frappe/views/reports/report_view.js:927
msgid "Cannot remove ID field"
msgstr "نمیتوان فیلد ID را حذف کرد"
@@ -4207,11 +4098,11 @@ msgstr "نمیتوان {0} را ارسال کرد."
msgid "Cannot update {0}"
msgstr "نمیتوان {0} را به روز کرد"
-#: frappe/model/db_query.py:1125
+#: frappe/model/db_query.py:1126
msgid "Cannot use sub-query in order by"
msgstr "نمیتوان از پرسمان فرعی به ترتیب استفاده کرد"
-#: frappe/model/db_query.py:1144
+#: frappe/model/db_query.py:1145
msgid "Cannot use {0} in order/group by"
msgstr "نمیتوان از {0} به ترتیب/گروه بندی بر اساس استفاده کرد"
@@ -4237,7 +4128,7 @@ msgstr "کارت"
msgid "Card Break"
msgstr "کارت شکستن"
-#: frappe/public/js/frappe/views/reports/query_report.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:261
msgid "Card Label"
msgstr "برچسب کارت"
@@ -4379,7 +4270,7 @@ msgstr "پیکربندی نمودار"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:290
+#: frappe/public/js/frappe/views/reports/query_report.js:288
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "نام نمودار"
@@ -4399,7 +4290,7 @@ 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:499
+#: frappe/public/js/frappe/views/reports/report_view.js:505
msgid "Chart Type"
msgstr "نوع نمودار"
@@ -4513,7 +4404,7 @@ msgstr "جدول فرزند {0} برای فیلد {1}"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "جداول Child به صورت Grid در سایر DocType ها نشان داده میشوند"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:638
+#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "انتخاب کارت موجود یا ایجاد کارت جدید"
@@ -4606,10 +4497,6 @@ msgstr "اینجا کلیک کنید"
msgid "Click here to verify"
msgstr "برای تایید اینجا را کلیک کنید"
-#: frappe/integrations/doctype/google_drive/google_drive.js:47
-msgid "Click on Authorize Google Drive Access to authorize Google Drive Access."
-msgstr "برای تأیید دسترسی به Google Drive، روی Authorize Google Drive Access کلیک کنید."
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4636,7 +4523,6 @@ msgstr "برای تایید درخواست خود روی لینک زیر کلی
#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
-#: frappe/integrations/doctype/google_drive/google_drive.py:53
#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
msgstr "برای ایجاد Refresh Token روی {0} کلیک کنید."
@@ -4810,7 +4696,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "جمع شدن"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "جمع کردن همه"
@@ -4865,9 +4751,9 @@ 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:1229
-#: frappe/public/js/frappe/widgets/widget_dialog.js:533
-#: frappe/public/js/frappe/widgets/widget_dialog.js:681
+#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: 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
@@ -5008,7 +4894,7 @@ msgstr "محدودیت نظر در ساعت"
msgid "Comment publicity can only be updated by the original author or a System Manager."
msgstr ""
-#: frappe/model/meta.py:59 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/model/meta.js:209
#: frappe/public/js/frappe/model/model.js:135
#: frappe/website/doctype/web_form/templates/web_form.html:122
@@ -5115,7 +5001,7 @@ msgstr "کامل"
msgid "Complete By"
msgstr "تکمیل توسط"
-#: frappe/core/doctype/user/user.py:477
+#: frappe/core/doctype/user/user.py:478
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "ثبت نام کامل"
@@ -5211,7 +5097,7 @@ msgstr "شرایط"
msgid "Configuration"
msgstr "پیکربندی"
-#: frappe/public/js/frappe/views/reports/report_view.js:481
+#: frappe/public/js/frappe/views/reports/report_view.js:487
msgid "Configure Chart"
msgstr "نمودار را پیکربندی کنید"
@@ -5548,7 +5434,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr "به سرور ایمیل خروجی متصل نشد"
-#: frappe/model/document.py:1096
+#: frappe/model/document.py:1095
msgid "Could not find {0}"
msgstr "{0} پیدا نشد"
@@ -5577,7 +5463,7 @@ msgstr "ذخیره نشد، لطفاً دادههایی را که وارد ک
msgid "Count"
msgstr "شمردن"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:527
+#: frappe/public/js/frappe/widgets/widget_dialog.js:540
msgid "Count Customizations"
msgstr "تعداد سفارشی سازی ها"
@@ -5585,10 +5471,14 @@ msgstr "تعداد سفارشی سازی ها"
#. 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:512
+#: 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"
@@ -5639,7 +5529,7 @@ msgstr "بس"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1261
+#: frappe/public/js/frappe/views/reports/query_report.js:1263
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5653,13 +5543,13 @@ msgstr "ایجاد و ادامه"
msgid "Create Address"
msgstr "ایجاد آدرس"
-#: frappe/public/js/frappe/views/reports/query_report.js:188
-#: frappe/public/js/frappe/views/reports/query_report.js:233
+#: frappe/public/js/frappe/views/reports/query_report.js:186
+#: frappe/public/js/frappe/views/reports/query_report.js:231
msgid "Create Card"
msgstr "ایجاد کارت"
-#: frappe/public/js/frappe/views/reports/query_report.js:286
-#: frappe/public/js/frappe/views/reports/query_report.js:1188
+#: frappe/public/js/frappe/views/reports/query_report.js:284
+#: frappe/public/js/frappe/views/reports/query_report.js:1190
msgid "Create Chart"
msgstr "نمودار ایجاد کنید"
@@ -5770,7 +5660,7 @@ msgstr "ایجاد شده"
msgid "Created At"
msgstr "ایجاد شده در"
-#: frappe/model/meta.py:56
+#: 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
@@ -5782,14 +5672,14 @@ msgid "Created Custom Field {0} in {1}"
msgstr "فیلد سفارشی {0} در {1} ایجاد شد"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241
-#: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:51
+#: 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:515
+#: frappe/public/js/frappe/desk.js:523
#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
msgstr "ایجاد {0}"
@@ -5812,7 +5702,7 @@ msgstr "کرون"
msgid "Cron Format"
msgstr "فرمت Cron"
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:59
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
msgstr ""
@@ -6209,11 +6099,6 @@ msgstr "پیشنویس"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -6222,9 +6107,6 @@ msgstr "پیشنویس"
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:398
#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
@@ -6778,7 +6660,7 @@ msgstr "با تاخیر"
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/toolbar.js:461
-#: frappe/public/js/frappe/views/reports/report_view.js:1734
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
@@ -6821,7 +6703,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "حذف تب"
-#: frappe/public/js/frappe/views/reports/query_report.js:932
+#: frappe/public/js/frappe/views/reports/query_report.js:934
msgid "Delete and Generate New"
msgstr "حذف و ایجاد جدید"
@@ -6830,7 +6712,7 @@ msgctxt "Button text"
msgid "Delete column"
msgstr "حذف ستون"
-#: frappe/public/js/frappe/form/footer/form_timeline.js:738
+#: frappe/public/js/frappe/form/footer/form_timeline.js:741
msgid "Delete comment?"
msgstr "نظر حذف شود؟"
@@ -6916,7 +6798,7 @@ msgstr "در حال حذف {0}"
msgid "Deleting {0} records..."
msgstr "در حال حذف {0} رکورد..."
-#: frappe/public/js/frappe/model/model.js:741
+#: frappe/public/js/frappe/model/model.js:692
msgid "Deleting {0}..."
msgstr "در حال حذف {0}..."
@@ -6962,7 +6844,7 @@ 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:310
+#: frappe/public/js/frappe/widgets/widget_dialog.js:323
#: frappe/www/attribution.html:29
msgid "Dependencies"
msgstr "وابستگی ها"
@@ -7076,6 +6958,7 @@ msgstr "تم پیشخوان"
#: 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
@@ -7373,14 +7256,10 @@ 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:1189
+#: frappe/public/js/frappe/form/grid.js:1193
msgid "Do not edit headers which are preset in the template"
msgstr "سرصفحه هایی را که در قالب از پیش تنظیم شده اند ویرایش نکنید"
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:69
-msgid "Do not have permission to access bucket {0}."
-msgstr "اجازه دسترسی به باکت {0} را ندارید."
-
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr "آیا هنوز میخواهید ادامه دهید؟"
@@ -7513,7 +7392,7 @@ msgstr "حالت 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:466
+#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
msgstr "نمای DocType"
@@ -7573,7 +7452,7 @@ 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:669
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
msgid "Doctype"
msgstr "Doctype"
@@ -7691,7 +7570,7 @@ msgstr "شرایط قانون نامگذاری سند"
msgid "Document Naming Settings"
msgstr "تنظیمات نامگذاری سند"
-#: frappe/model/document.py:477
+#: frappe/model/document.py:476
msgid "Document Queued"
msgstr "سند در صف قرار گرفت"
@@ -7744,7 +7623,7 @@ msgstr "گزارش اشتراک سند"
msgid "Document States"
msgstr "وضعیتهای سند"
-#: frappe/model/meta.py:52 frappe/public/js/frappe/model/meta.js:202
+#: 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 "وضعیت سند"
@@ -7815,11 +7694,11 @@ msgstr "نوع سند"
msgid "Document Type and Function are required to create a number card"
msgstr "نوع و عملکرد سند برای ایجاد کارت شماره مورد نیاز است"
-#: frappe/permissions.py:148
+#: frappe/permissions.py:149
msgid "Document Type is not importable"
msgstr "نوع سند قابل درونبُرد نیست"
-#: frappe/permissions.py:144
+#: frappe/permissions.py:145
msgid "Document Type is not submittable"
msgstr "نوع سند قابل ارسال نیست"
@@ -7848,7 +7727,7 @@ msgid "Document Types and Permissions"
msgstr "انواع اسناد و مجوزها"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1943
+#: frappe/model/document.py:1942
msgid "Document Unlocked"
msgstr "قفل سند باز شد"
@@ -8039,7 +7918,7 @@ msgstr "لینک دانلود"
msgid "Download PDF"
msgstr "دانلود PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:835
+#: frappe/public/js/frappe/views/reports/query_report.js:830
msgid "Download Report"
msgstr "دانلود گزارش"
@@ -8050,7 +7929,7 @@ 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:57
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
msgid "Download Your Data"
msgstr "داده های خود را دانلود کنید"
@@ -8106,29 +7985,6 @@ msgstr ""
msgid "Drop files here"
msgstr ""
-#. Label of the dropbox_access_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Access Token"
-msgstr "توکن دسترسی دراپ باکس"
-
-#. Label of the dropbox_refresh_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Refresh Token"
-msgstr "Dropbox Refresh Token"
-
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Dropbox Settings"
-msgstr "تنظیمات دراپ باکس"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:347
-msgid "Dropbox Setup"
-msgstr "راهاندازی دراپ باکس"
-
#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
@@ -8158,7 +8014,7 @@ msgstr "ورود تکراری"
msgid "Duplicate Filter Name"
msgstr "نام فیلتر تکراری"
-#: frappe/model/base_document.py:666 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "نام تکراری"
@@ -8257,13 +8113,13 @@ msgstr "خروج"
#: 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:668
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:669
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:883
-#: frappe/public/js/frappe/views/reports/query_report.js:1722
+#: frappe/public/js/frappe/views/reports/query_report.js:878
+#: frappe/public/js/frappe/views/reports/query_report.js:1724
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8426,7 +8282,7 @@ msgstr "پاسخ خود را ویرایش کنید"
msgid "Edit your workflow visually using the Workflow Builder."
msgstr "با استفاده از Workflow Builder گردش کار خود را به صورت بصری ویرایش کنید."
-#: frappe/public/js/frappe/views/reports/report_view.js:672
+#: frappe/public/js/frappe/views/reports/report_view.js:678
#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
msgstr "ویرایش {0}"
@@ -8527,7 +8383,7 @@ msgstr "حساب ایمیل غیرفعال شد."
msgid "Email Account Name"
msgstr "نام حساب ایمیل"
-#: frappe/core/doctype/user/user.py:736
+#: frappe/core/doctype/user/user.py:738
msgid "Email Account added multiple times"
msgstr "حساب ایمیل چندین بار اضافه شده است"
@@ -8535,7 +8391,7 @@ msgstr "حساب ایمیل چندین بار اضافه شده است"
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
msgstr "حساب ایمیل تنظیم نشده است. لطفاً یک حساب ایمیل جدید از تنظیمات > حساب ایمیل ایجاد کنید"
-#: frappe/email/doctype/email_account/email_account.py:578
+#: frappe/email/doctype/email_account/email_account.py:576
msgid "Email Account {0} Disabled"
msgstr ""
@@ -8761,7 +8617,7 @@ msgstr "ایمیل ها"
msgid "Emails Pulled"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:936
+#: frappe/email/doctype/email_account/email_account.py:934
msgid "Emails are already being pulled from this account."
msgstr ""
@@ -8784,11 +8640,9 @@ 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 Drive'
#. 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_drive/google_drive.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
msgstr "فعال کردن"
@@ -8808,11 +8662,6 @@ msgstr "Allow Auto Repeat را برای doctype {0} در سفارشیسازی
msgid "Enable Auto Reply"
msgstr "پاسخ خودکار را فعال کنید"
-#. Label of the enabled (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Enable Automatic Backup"
-msgstr "پشتیبان گیری خودکار را فعال کنید"
-
#. Label of the enable_automatic_linking (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -8971,7 +8820,6 @@ msgstr "ردیابی وب سایت درون برنامه ای را فعال کن
#. 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 'Dropbox Settings'
#. 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'
@@ -8982,7 +8830,6 @@ msgstr "ردیابی وب سایت درون برنامه ای را فعال کن
#: 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/dropbox_settings/dropbox_settings.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/public/js/frappe/model/indicator.js:106
@@ -8995,7 +8842,7 @@ msgstr "فعال"
msgid "Enabled Scheduler"
msgstr "زمانبندی فعال شد"
-#: frappe/email/doctype/email_account/email_account.py:1012
+#: frappe/email/doctype/email_account/email_account.py:1010
msgid "Enabled email inbox for user {0}"
msgstr "صندوق ورودی ایمیل برای کاربر {0} فعال شد"
@@ -9076,11 +8923,6 @@ msgstr "تاریخ پایان نمیتواند قبل از تاریخ شرو
msgid "Ended At"
msgstr "پایان یافت در"
-#. Label of the endpoint_url (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Endpoint URL"
-msgstr "نشانی وب نقطه پایانی"
-
#. Label of the sb_endpoints_section (Section Break) field in DocType
#. 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -9259,7 +9101,7 @@ msgstr "خطا در اعلان"
msgid "Error in print format on line {0}: {1}"
msgstr "خطا در قالب چاپ در خط {0}: {1}"
-#: frappe/email/doctype/email_account/email_account.py:672
+#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "خطا هنگام اتصال به حساب ایمیل {0}"
@@ -9267,15 +9109,15 @@ msgstr "خطا هنگام اتصال به حساب ایمیل {0}"
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr "خطا هنگام ارزیابی اعلان {0}. لطفا قالب خود را اصلاح کنید."
-#: frappe/model/base_document.py:806
+#: frappe/model/base_document.py:803
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:816
+#: frappe/model/base_document.py:813
msgid "Error: Value missing for {0}: {1}"
msgstr "خطا: مقدار از دست رفته برای {0}: {1}"
-#: frappe/model/base_document.py:810
+#: frappe/model/base_document.py:807
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9424,7 +9266,7 @@ msgstr ""
msgid "Executing..."
msgstr "در حال اجرا..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2069
+#: frappe/public/js/frappe/views/reports/query_report.js:2071
msgid "Execution Time: {0} sec"
msgstr "زمان اجرا: {0} ثانیه"
@@ -9450,7 +9292,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "بسط دادن"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "گسترش همه"
@@ -9507,8 +9349,8 @@ 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:1757
-#: frappe/public/js/frappe/views/reports/report_view.js:1621
+#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "برونبُرد"
@@ -9559,11 +9401,11 @@ msgstr "گزارش برونبُرد: {0}"
msgid "Export Type"
msgstr "نوع برونبُرد"
-#: frappe/public/js/frappe/views/reports/report_view.js:1632
+#: frappe/public/js/frappe/views/reports/report_view.js:1638
msgid "Export all matching rows?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1642
+#: frappe/public/js/frappe/views/reports/report_view.js:1648
msgid "Export all {0} rows?"
msgstr ""
@@ -9871,8 +9713,8 @@ msgstr "در حال واکشی اسناد جستجوی سراسری پیشف
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:237
-#: frappe/public/js/frappe/views/reports/query_report.js:1816
+#: frappe/public/js/frappe/views/reports/query_report.js:235
+#: frappe/public/js/frappe/views/reports/query_report.js:1818
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9947,7 +9789,7 @@ msgstr "نوع فیلد برای {0} قابل تغییر نیست"
msgid "Field {0} does not exist on {1}"
msgstr "فیلد {0} در {1} وجود ندارد"
-#: frappe/desk/form/meta.py:208
+#: frappe/desk/form/meta.py:184
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr "فیلد {0} به نوع سند موجود {1} اشاره دارد."
@@ -10050,7 +9892,7 @@ msgstr "چند بررسی فیلدها"
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr "فیلدهای \"file_name\" یا \"file_url\" باید برای File تنظیم شوند"
-#: frappe/model/db_query.py:144
+#: frappe/model/db_query.py:146
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "وقتی as_list فعال است، فیلدها باید یک لیست یا تاپل باشند"
@@ -10099,13 +9941,6 @@ msgstr ""
msgid "File '{0}' not found"
msgstr "فایل \"{0}\" یافت نشد"
-#. Label of the file_backup (Check) field in DocType 'Dropbox Settings'
-#. Label of the file_backup (Check) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "File Backup"
-msgstr "پشتیبان گیری از فایل"
-
#. Label of the private_file_section (Section Break) field in DocType 'Access
#. Log'
#: frappe/core/doctype/access_log/access_log.json
@@ -10306,7 +10141,7 @@ msgstr "فیلترها از طریق فیلترها قابل دست
msgid "Filters {0}"
msgstr "فیلترها {0}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1421
+#: frappe/public/js/frappe/views/reports/report_view.js:1427
msgid "Filters:"
msgstr "فیلترها:"
@@ -10453,7 +10288,7 @@ msgstr "فیلترهای گزارش زیر دارای مقادیر گمشده ه
msgid "Following document {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:111
+#: frappe/website/doctype/web_form/web_form.py:108
msgid "Following fields are missing:"
msgstr "فیلدهای زیر وجود ندارد:"
@@ -10461,7 +10296,7 @@ msgstr "فیلدهای زیر وجود ندارد:"
msgid "Following fields have invalid values:"
msgstr "فیلدهای زیر دارای مقادیر نامعتبر هستند:"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:345
+#: frappe/public/js/frappe/widgets/widget_dialog.js:358
msgid "Following fields have missing values"
msgstr "فیلدهای زیر دارای مقادیر جا افتاده هستند"
@@ -10604,7 +10439,7 @@ msgstr "برای سند"
msgid "For Document Type"
msgstr "برای نوع سند"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:553
+#: frappe/public/js/frappe/widgets/widget_dialog.js:566
msgid "For Example: {} Open"
msgstr "به عنوان مثال: {} باز"
@@ -10633,7 +10468,7 @@ msgstr "برای کاربر"
msgid "For Value"
msgstr "برای مقدار"
-#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/query_report.js:2068
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "برای مقایسه، از >5، <10 یا =324 استفاده کنید. برای محدوده ها، از 5:10 (برای مقادیر بین 5 و 10) استفاده کنید."
@@ -10786,7 +10621,7 @@ msgstr "فرم URL-Encoded"
#. 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:552
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
msgid "Format"
msgstr "قالب"
@@ -10818,7 +10653,7 @@ msgstr "واحدهای کسری"
#. 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:149
+#: frappe/www/login.py:153
msgid "Frappe"
msgstr "Frappe"
@@ -10835,7 +10670,7 @@ msgstr "نور Frappe"
msgid "Frappe Mail"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:549
+#: frappe/email/doctype/email_account/email_account.py:547
msgid "Frappe Mail OAuth Error"
msgstr ""
@@ -10863,13 +10698,11 @@ msgstr "آزاد"
#. 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'
-#. Label of the frequency (Select) field in DocType 'Google Drive'
#: 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/integrations/doctype/google_drive/google_drive.json
#: frappe/public/js/frappe/utils/common.js:395
msgid "Frequency"
msgstr "فرکانس"
@@ -10915,7 +10748,7 @@ msgstr "از تاریخ"
msgid "From Date Field"
msgstr "از فیلد تاریخ"
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
+#: frappe/public/js/frappe/views/reports/query_report.js:1779
msgid "From Document Type"
msgstr "از نوع سند"
@@ -10966,16 +10799,16 @@ 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:247
-#: frappe/public/js/frappe/widgets/widget_dialog.js:686
+#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "تابع"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:693
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
msgstr "عملکرد بر اساس"
-#: frappe/__init__.py:670
+#: frappe/__init__.py:677
msgid "Function {0} is not whitelisted."
msgstr "تابع {0} در لیست سفید قرار ندارد."
@@ -11040,7 +10873,7 @@ msgstr "عمومی"
msgid "Generate Keys"
msgstr "ایجاد کلیدها"
-#: frappe/public/js/frappe/views/reports/query_report.js:877
+#: frappe/public/js/frappe/views/reports/query_report.js:872
msgid "Generate New Report"
msgstr "ایجاد گزارش جدید"
@@ -11328,32 +11161,12 @@ msgstr "Google Contacts - مخاطب در Google Contacts {0} بهروزرس
msgid "Google Contacts Id"
msgstr "شناسه مخاطبین Google"
-#. Name of a DocType
-#. Label of the google_drive_section (Section Break) field in DocType 'Google
-#. Drive'
#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/google_drive/google_drive.json
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr "درایو گوگل"
-#: frappe/integrations/doctype/google_drive/google_drive.py:117
-msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}"
-msgstr "Google Drive - پوشه در Google Drive ایجاد نشد - کد خطا {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:132
-msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}"
-msgstr "Google Drive - پوشه در Google Drive یافت نشد - کد خطا {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:193
-msgid "Google Drive - Could not locate - {0}"
-msgstr "Google Drive - پیدا نشد - {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:204
-msgid "Google Drive Backup Successful."
-msgstr "پشتیبانگیری Google Drive با موفقیت انجام شد."
-
#. Label of the section_break_7 (Section Break) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -11683,6 +11496,10 @@ msgstr "برای افزودن رفتارهای پویا میتوان از ا
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'
@@ -12006,17 +11823,17 @@ msgstr "صفحه نخست"
msgid "Home Settings"
msgstr "تنظیمات صفحه اصلی"
-#: frappe/core/doctype/file/test_file.py:330
-#: frappe/core/doctype/file/test_file.py:332
-#: frappe/core/doctype/file/test_file.py:396
+#: 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 "صفحه اصلی/پوشه آزمایشی 1"
-#: frappe/core/doctype/file/test_file.py:385
+#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
msgstr "صفحه اصلی / پوشه آزمایشی 1 / پوشه آزمایشی 3"
-#: frappe/core/doctype/file/test_file.py:341
+#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
msgstr "Home/Test Folder 2"
@@ -12061,7 +11878,7 @@ msgstr ""
#: frappe/core/doctype/data_import/importer.py:1177
#: frappe/core/doctype/data_import/importer.py:1242
#: frappe/core/doctype/data_import/importer.py:1245
-#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:50
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
#: frappe/public/js/frappe/list/list_settings.js:337
@@ -12073,7 +11890,7 @@ msgid "ID"
msgstr "شناسه"
#: frappe/desk/reportview.py:491
-#: frappe/public/js/frappe/views/reports/report_view.js:978
+#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
msgstr "شناسه"
@@ -12257,12 +12074,6 @@ msgstr "اگر فعال باشد، از کاربرانی که از آدرس IP
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
msgstr "در صورت فعال بودن، هر بار که کاربران وارد سیستم میشوند، از آن مطلع میشوند. در صورت فعال نشدن، فقط یک بار به کاربران اطلاع داده میشود."
-#. Description of the 'Backup Path' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "If it's empty, it will backup to the root of the bucket."
-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"
@@ -12393,16 +12204,12 @@ msgstr "پیوست های بیش از این اندازه را نادیده بگ
msgid "Ignored Apps"
msgstr "برنامه های نادیده گرفته شده"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:348
-msgid "Illegal Access Token. Please try again"
-msgstr "توکن دسترسی غیر قانونی لطفا دوباره تلاش کنید"
-
#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
msgstr "وضعیت سند غیرقانونی برای {0}"
-#: frappe/model/db_query.py:451 frappe/model/db_query.py:454
-#: frappe/model/db_query.py:1128
+#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
+#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
msgstr "پرسمان SQL غیر قانونی"
@@ -12751,11 +12558,11 @@ msgstr "شامل تم از برنامه ها"
msgid "Include Web View Link in Email"
msgstr "پیوند مشاهده وب را در ایمیل اضافه کنید"
-#: frappe/public/js/frappe/views/reports/query_report.js:1592
+#: frappe/public/js/frappe/views/reports/query_report.js:1594
msgid "Include filters"
msgstr "شامل فیلترها"
-#: frappe/public/js/frappe/views/reports/query_report.js:1584
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Include indentation"
msgstr "شامل تورفتگی"
@@ -12822,11 +12629,11 @@ msgstr "کاربر یا گذرواژه نادرست"
msgid "Incorrect Verification code"
msgstr "کد تأیید نادرست"
-#: frappe/model/document.py:1542
+#: frappe/model/document.py:1541
msgid "Incorrect value in row {0}:"
msgstr "مقدار نادرست در ردیف {0}:"
-#: frappe/model/document.py:1544
+#: frappe/model/document.py:1543
msgid "Incorrect value:"
msgstr "مقدار نادرست:"
@@ -12835,10 +12642,10 @@ msgstr "مقدار نادرست:"
#. 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:53
+#: 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:999
+#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
msgstr "فهرست مطالب"
@@ -12913,7 +12720,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:1822
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
msgid "Insert After"
msgstr "درج بعد"
@@ -12929,7 +12736,7 @@ msgstr "درج بعد از فیلد «{0}» ذکر شده در فیلد سفار
msgid "Insert Below"
msgstr "در زیر درج کنید"
-#: frappe/public/js/frappe/views/reports/report_view.js:384
+#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
msgstr "درج ستون قبل از {0}"
@@ -12978,11 +12785,11 @@ msgstr "دستورالعمل ها"
msgid "Instructions Emailed"
msgstr "دستورالعمل ها ایمیل شد"
-#: frappe/permissions.py:818
+#: frappe/permissions.py:827
msgid "Insufficient Permission Level for {0}"
msgstr "سطح مجوز ناکافی برای {0}"
-#: frappe/database/query.py:376
+#: frappe/database/query.py:383
msgid "Insufficient Permission for {0}"
msgstr "مجوز ناکافی برای {0}"
@@ -13100,7 +12907,7 @@ msgstr "بی اعتبار"
#: frappe/public/js/form_builder/utils.js:221
#: frappe/public/js/frappe/form/grid_row.js:833
#: frappe/public/js/frappe/form/layout.js:811
-#: frappe/public/js/frappe/views/reports/report_view.js:710
+#: frappe/public/js/frappe/views/reports/report_view.js:716
msgid "Invalid \"depends_on\" expression"
msgstr "عبارت \"depends_on\" نامعتبر است"
@@ -13140,7 +12947,7 @@ msgstr "تاریخ نامعتبر است"
msgid "Invalid DocType"
msgstr "DocType نامعتبر است"
-#: frappe/database/query.py:102
+#: frappe/database/query.py:103
msgid "Invalid DocType: {0}"
msgstr "DocType نامعتبر: {0}"
@@ -13185,6 +12992,7 @@ 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 "عملیات نامعتبر"
@@ -13209,7 +13017,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr "پارامترهای نامعتبر"
-#: frappe/core/doctype/user/user.py:1226 frappe/www/update-password.html:123
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
#: frappe/www/update-password.html:247
msgid "Invalid Password"
@@ -13238,7 +13046,7 @@ msgstr "انتقال نامعتبر است"
#: frappe/core/doctype/file/file.py:220
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
-#: frappe/public/js/frappe/widgets/widget_dialog.js:589
+#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
msgstr "URL نامعتبر است"
@@ -13259,11 +13067,11 @@ msgstr "راز Webhook نامعتبر است"
msgid "Invalid aggregate function"
msgstr "تابع تجمیع نامعتبر است"
-#: frappe/public/js/frappe/views/reports/report_view.js:393
+#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "ستون نامعتبر است"
-#: frappe/model/document.py:1015 frappe/model/document.py:1029
+#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "docstatus نامعتبر است"
@@ -13287,7 +13095,7 @@ msgstr "نام فیلد \"{0}\" در نام خودکار نامعتبر است"
msgid "Invalid file path: {0}"
msgstr "مسیر فایل نامعتبر: {0}"
-#: frappe/database/query.py:182
+#: frappe/database/query.py:189
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "فیلتر نامعتبر: {0}"
@@ -13313,7 +13121,7 @@ msgstr "محتوای نامعتبر یا خراب برای درونبُرد"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Regex تغییر مسیر نامعتبر در ردیف #{}: {}"
-#: frappe/app.py:324
+#: frappe/app.py:317
msgid "Invalid request arguments"
msgstr "آرگومان های درخواست نامعتبر"
@@ -13497,7 +13305,7 @@ 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:328
+#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
msgstr "گزارش پرسمان است"
@@ -13712,6 +13520,10 @@ msgstr "وضعیت شغلی"
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 "کار در حال اجرا نیست"
@@ -13743,7 +13555,7 @@ msgstr "کانبان"
#. 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:498
+#: frappe/public/js/frappe/widgets/widget_dialog.js:511
msgid "Kanban Board"
msgstr "نمودار کانبان"
@@ -14015,10 +13827,10 @@ msgstr "تنظیمات LDAP نادرست است. پاسخ اعتبارسنجی
#: 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:300
-#: frappe/public/js/frappe/widgets/widget_dialog.js:453
-#: frappe/public/js/frappe/widgets/widget_dialog.js:630
-#: frappe/public/js/frappe/widgets/widget_dialog.js:663
+#: 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
@@ -14103,11 +13915,6 @@ msgstr "۹۰ روز گذشته"
msgid "Last Active"
msgstr "آخرین فعالیت"
-#. Label of the last_backup_on (Datetime) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Last Backup On"
-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"
@@ -14192,12 +13999,12 @@ msgstr "آخرین همگام سازی در"
msgid "Last Synced On"
msgstr "آخرین همگام سازی شد"
-#: frappe/model/meta.py:55 frappe/public/js/frappe/model/meta.js:205
+#: 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:54 frappe/public/js/frappe/model/meta.js:204
+#: 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 "آخرین بروز رسانی در تاریخ"
@@ -14241,7 +14048,7 @@ msgid "Leave blank to repeat always"
msgstr "برای تکرار همیشه خالی بگذارید"
#: frappe/core/doctype/communication/mixins.py:207
-#: frappe/email/doctype/email_account/email_account.py:722
+#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
msgstr "این گفتگو را ترک کنید"
@@ -14460,7 +14267,7 @@ msgstr "پسندیدن در {0}: {1}"
msgid "Liked"
msgstr "دوست داشت"
-#: frappe/model/meta.py:58 frappe/public/js/frappe/model/meta.js:208
+#: 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 "پسندیده شده توسط"
@@ -14475,11 +14282,6 @@ msgstr "دوست دارد"
msgid "Limit"
msgstr "حد"
-#. Label of the limit_no_of_backups (Check) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Limit Number of DB Backups"
-msgstr "تعداد محدود پشتیبانگیری از DB"
-
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14594,11 +14396,11 @@ msgstr "عنوان پیوند"
#: 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:414
+#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
msgstr "پیوند به"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:350
+#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
msgstr "پیوند به ردیف"
@@ -14611,7 +14413,7 @@ msgstr "پیوند به ردیف"
msgid "Link Type"
msgstr "نوع پیوند"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:346
+#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
msgstr "نوع لینک در ردیف"
@@ -14763,7 +14565,7 @@ msgstr "بارگذاری بیشتر"
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1085
+#: frappe/public/js/frappe/views/reports/query_report.js:1087
msgid "Loading"
msgstr "بارگذاری"
@@ -14894,7 +14696,7 @@ msgstr "روش های ورود"
msgid "Login Page"
msgstr "صفحه ورود"
-#: frappe/www/login.py:152
+#: frappe/www/login.py:156
msgid "Login To {0}"
msgstr "ورود به {0}"
@@ -15161,7 +14963,7 @@ msgstr "اجباری بستگی دارد"
msgid "Mandatory Depends On (JS)"
msgstr "اجباری وابسته به (JS)"
-#: frappe/website/doctype/web_form/web_form.py:473
+#: frappe/website/doctype/web_form/web_form.py:470
msgid "Mandatory Information missing:"
msgstr "اطلاعات اجباری از دست رفته:"
@@ -15436,7 +15238,7 @@ msgid "Menu"
msgstr "منو"
#: frappe/public/js/frappe/form/toolbar.js:242
-#: frappe/public/js/frappe/model/model.js:754
+#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "ادغام با موجود"
@@ -15615,7 +15417,7 @@ msgstr "عنوان متا برای سئو"
msgid "Method"
msgstr "روش"
-#: frappe/__init__.py:672
+#: frappe/__init__.py:679
msgid "Method Not Allowed"
msgstr ""
@@ -15692,7 +15494,7 @@ msgstr "اشتباه پیکربندی شده است"
msgid "Miss"
msgstr ""
-#: frappe/desk/form/meta.py:218
+#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
msgstr "DocType وجود ندارد"
@@ -15717,7 +15519,7 @@ msgid "Missing Value"
msgstr "مقدار از دست رفته"
#: frappe/public/js/frappe/ui/field_group.js:124
-#: frappe/public/js/frappe/widgets/widget_dialog.js:361
+#: 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"
@@ -15900,8 +15702,6 @@ msgstr "ماه"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -15909,7 +15709,6 @@ msgstr "ماه"
#: 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/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:400
#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
@@ -16081,7 +15880,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:462
+#: frappe/website/doctype/web_form/web_form.py:459
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16247,7 +16046,7 @@ msgstr "تنظیمات ناوبری"
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "برای ویرایش محیط کار خصوصی سایر کاربران به نقش مدیر محیط کار نیاز دارید"
-#: frappe/model/document.py:793
+#: frappe/model/document.py:792
msgid "Negative Value"
msgstr "مقدار منفی"
@@ -16352,7 +16151,7 @@ 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:762
+#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "نام جدید"
@@ -16386,7 +16185,7 @@ msgstr "نام قالب چاپ جدید"
msgid "New Quick List"
msgstr "لیست سریع جدید"
-#: frappe/public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
msgstr "نام گزارش جدید"
@@ -16442,26 +16241,26 @@ msgstr "مقدار جدیدی که باید تنظیم شود"
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
#: frappe/public/js/frappe/form/toolbar.js:558
-#: frappe/public/js/frappe/model/model.js:661
+#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:379
+#: frappe/website/doctype/web_form/web_form.py:376
msgid "New {0}"
msgstr "{0} جدید"
-#: frappe/public/js/frappe/views/reports/query_report.js:394
+#: frappe/public/js/frappe/views/reports/query_report.js:392
msgid "New {0} Created"
msgstr "{0} جدید ایجاد شد"
-#: frappe/public/js/frappe/views/reports/query_report.js:386
+#: frappe/public/js/frappe/views/reports/query_report.js:384
msgid "New {0} {1} added to Dashboard {2}"
msgstr "{0} {1} جدید به داشبورد {2} اضافه شد"
-#: frappe/public/js/frappe/views/reports/query_report.js:391
+#: frappe/public/js/frappe/views/reports/query_report.js:389
msgid "New {0} {1} created"
msgstr "{0} {1} جدید ایجاد شد"
@@ -16473,7 +16272,7 @@ msgstr "{0} جدید: {1}"
msgid "New {} releases for the following apps are available"
msgstr "نسخههای جدید {} برای برنامههای زیر در دسترس هستند"
-#: frappe/core/doctype/user/user.py:802
+#: frappe/core/doctype/user/user.py:804
msgid "Newly created user {0} has no roles enabled."
msgstr "کاربر تازه ایجاد شده {0} هیچ نقشی فعال ندارد."
@@ -16635,7 +16434,7 @@ msgstr "بعد روی کلیک کنید"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "خیر"
@@ -16776,7 +16575,7 @@ msgstr "هیچ نتیجه ای"
msgid "No Results found"
msgstr "نتیجه ای پیدا نشد"
-#: frappe/core/doctype/user/user.py:803
+#: frappe/core/doctype/user/user.py:805
msgid "No Roles Specified"
msgstr "هیچ نقشی مشخص نشده است"
@@ -16927,7 +16726,7 @@ msgstr "تعداد ردیف (حداکثر 500)"
msgid "No of Sent SMS"
msgstr "شماره پیامک ارسالی"
-#: frappe/__init__.py:827 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "بدون مجوز برای {0}"
@@ -16936,7 +16735,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "بدون مجوز برای \"{0}\" {1}"
-#: frappe/model/db_query.py:949
+#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
msgstr "بدون اجازه خواندن {0}"
@@ -17020,12 +16819,6 @@ msgstr "غیر منفی"
msgid "Non-Conforming"
msgstr "ناسازگار"
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "None"
-msgstr "هیچ کدام"
-
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr "هیچ: پایان گردش کار"
@@ -17040,7 +16833,7 @@ msgstr "کپی های عادی شده"
msgid "Normalized Query"
msgstr "پرسمان عادی شده"
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "مجاز نیست"
@@ -17061,7 +16854,7 @@ msgstr "نه فرزندان"
msgid "Not Equals"
msgstr "برابر نیست"
-#: frappe/app.py:374 frappe/www/404.html:3
+#: frappe/app.py:367 frappe/www/404.html:3
msgid "Not Found"
msgstr "پیدا نشد"
@@ -17087,9 +16880,9 @@ msgstr "به هیچ رکوردی مرتبط نیست"
msgid "Not Nullable"
msgstr "غیرقابل تهی"
-#: frappe/__init__.py:754 frappe/app.py:367 frappe/desk/calendar.py:26
+#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:711
+#: frappe/website/doctype/web_form/web_form.py:708
#: 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
@@ -17110,7 +16903,7 @@ msgstr "منتشر نشده"
#: frappe/public/js/frappe/form/toolbar.js:813
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
-#: frappe/public/js/frappe/views/reports/report_view.js:197
+#: frappe/public/js/frappe/views/reports/report_view.js:203
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
@@ -17141,7 +16934,7 @@ msgstr "تنظیم نشده"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "یک مقدار جدا شده با کاما معتبر نیست (فایل CSV)"
-#: frappe/core/doctype/user/user.py:264
+#: frappe/core/doctype/user/user.py:265
msgid "Not a valid User Image."
msgstr "تصویر کاربر معتبری نیست."
@@ -17157,7 +16950,7 @@ msgstr "کاربر معتبری نیست"
msgid "Not active"
msgstr "غیر فعال"
-#: frappe/permissions.py:360
+#: frappe/permissions.py:370
msgid "Not allowed for {0}: {1}"
msgstr "برای {0} مجاز نیست: {1}"
@@ -17177,7 +16970,7 @@ msgstr "چاپ اسناد لغو شده مجاز نیست"
msgid "Not allowed to print draft documents"
msgstr "چاپ اسناد پیشنویس مجاز نیست"
-#: frappe/permissions.py:212
+#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
msgstr "از طریق بررسی مجوز کنترلر مجاز نیست"
@@ -17193,12 +16986,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:214
+#: frappe/core/doctype/system_settings/system_settings.py:215
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:724
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "غیر مجاز"
@@ -17224,15 +17017,6 @@ msgstr "یادداشت دیده شده توسط"
msgid "Note:"
msgstr "یادداشت:"
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'Dropbox Settings'
-#. Description of the 'Send Email for Successful backup' (Check) field in
-#. DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Note: By default emails for failed backups are sent."
-msgstr "توجه: به طور پیشفرض ایمیل برای پشتیبان گیری ناموفق ارسال میشود."
-
#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "توجه: تغییر نام صفحه URL قبلی را به این صفحه تبدیل میکند."
@@ -17292,13 +17076,10 @@ msgstr "چیزی برای به روز رسانی نیست"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
#. Name of a DocType
-#. Label of the notification_section (Section Break) field in DocType 'S3
-#. Backup Settings'
#: 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
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Notification"
msgstr "اعلان"
@@ -17400,7 +17181,7 @@ msgstr "شماره"
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:615
+#: frappe/public/js/frappe/widgets/widget_dialog.js:628
msgid "Number Card"
msgstr "کارت شماره"
@@ -17418,7 +17199,7 @@ 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:645
+#: frappe/public/js/frappe/widgets/widget_dialog.js:658
msgid "Number Cards"
msgstr "کارت های اعداد"
@@ -17436,15 +17217,6 @@ msgstr "فرمت شماره"
msgid "Number of Backups"
msgstr "تعداد پشتیبان گیری"
-#. Label of the no_of_backups (Int) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Number of DB Backups"
-msgstr "تعداد بک آپ های DB"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:54
-msgid "Number of DB backups cannot be less than 1"
-msgstr "تعداد بک آپ های DB نمیتواند کمتر از 1 باشد"
-
#. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Number of Groups"
@@ -17460,7 +17232,7 @@ msgstr "تعداد پرسمانها"
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr "تعداد فیلدهای پیوست بیش از {} است، محدودیت به {} به روز شده است."
-#: frappe/core/doctype/system_settings/system_settings.py:169
+#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
msgstr "تعداد نسخه های پشتیبان باید بیشتر از صفر باشد."
@@ -17689,7 +17461,7 @@ msgstr "در {0}، {1} نوشت:"
#. 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:322
+#: frappe/public/js/frappe/widgets/widget_dialog.js:335
msgid "Onboard"
msgstr "سوار"
@@ -17785,19 +17557,13 @@ msgstr "فقط Workspace Manager میتواند فضاهای کاری عمو
msgid "Only allowed to export customizations in developer mode"
msgstr "فقط مجاز به صدور سفارشی سازی در حالت برنامه نویس است"
-#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Only change this if you want to use other S3 compatible object storage backends."
-msgstr "فقط در صورتی این مورد را تغییر دهید که میخواهید از سایر پشتیبانهای ذخیرهسازی اشیاء سازگار با S3 استفاده کنید."
-
-#: frappe/model/document.py:1232
+#: frappe/model/document.py:1231
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:315
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
msgstr "فقط برای"
@@ -18046,7 +17812,7 @@ msgstr "گزینههای {0} باید قبل از تنظیم مقدار پی
msgid "Options is required for field {0} of type {1}"
msgstr "گزینهها برای فیلد {0} از نوع {1} لازم است"
-#: frappe/model/base_document.py:870
+#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
msgstr "گزینهها برای فیلد پیوند {0} تنظیم نشده است"
@@ -18158,7 +17924,7 @@ msgstr "پچ"
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1742
+#: frappe/public/js/frappe/views/reports/query_report.js:1744
msgid "PDF"
msgstr "PDF"
@@ -18457,7 +18223,7 @@ msgstr "والد نام سندی است که داده ها به آن اضافه
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:798
+#: frappe/permissions.py:807
msgid "Parentfield not specified in {0}: {1}"
msgstr "فیلد والد در {0} مشخص نشده است: {1}"
@@ -18517,11 +18283,11 @@ msgstr "منفعل"
msgid "Password"
msgstr "گذرواژه"
-#: frappe/core/doctype/user/user.py:1079
+#: frappe/core/doctype/user/user.py:1081
msgid "Password Email Sent"
msgstr "گذرواژه ایمیل ارسال شد"
-#: frappe/core/doctype/user/user.py:457
+#: frappe/core/doctype/user/user.py:458
msgid "Password Reset"
msgstr "بازنشانی گذرواژه"
@@ -18555,7 +18321,7 @@ msgstr "گذرواژه در حساب ایمیل جا افتاده است"
msgid "Password not found for {0} {1} {2}"
msgstr "گذرواژه برای {0} {1} {2} یافت نشد"
-#: frappe/core/doctype/user/user.py:1078
+#: frappe/core/doctype/user/user.py:1080
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18567,7 +18333,7 @@ msgstr "تنظیم گذرواژه"
msgid "Password size exceeded the maximum allowed size"
msgstr "اندازه گذرواژه از حداکثر اندازه مجاز بیشتر است"
-#: frappe/core/doctype/user/user.py:869
+#: frappe/core/doctype/user/user.py:871
msgid "Password size exceeded the maximum allowed size."
msgstr "اندازه گذرواژه از حداکثر اندازه مجاز بیشتر است."
@@ -18724,7 +18490,7 @@ msgstr ""
msgid "Permanently Submit {0}?"
msgstr "برای همیشه {0} ارسال شود؟"
-#: frappe/public/js/frappe/model/model.js:733
+#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
msgstr "{0} برای همیشه حذف شود؟"
@@ -18885,8 +18651,8 @@ msgid "Phone Number {0} set in field {1} is not valid."
msgstr "شماره تلفن {0} تنظیم شده در فیلد {1} معتبر نیست."
#: frappe/public/js/frappe/form/print_utils.js:40
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
-#: frappe/public/js/frappe/views/reports/report_view.js:1576
+#: frappe/public/js/frappe/views/reports/report_view.js:1579
+#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
msgstr "ستون ها را انتخاب کنید"
@@ -18926,7 +18692,7 @@ msgstr "متن ساده"
msgid "Plant"
msgstr "کارخانه"
-#: frappe/email/doctype/email_account/email_account.py:546
+#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
msgstr ""
@@ -18942,7 +18708,7 @@ msgstr "لطفاً این تم وب سایت را برای سفارشی سازی
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "لطفاً برای استفاده از قابلیت ldap کتابخانه ldap3 را از طریق پیپ نصب کنید."
-#: frappe/public/js/frappe/views/reports/query_report.js:309
+#: frappe/public/js/frappe/views/reports/query_report.js:307
msgid "Please Set Chart"
msgstr "لطفا نمودار را تنظیم کنید"
@@ -18958,7 +18724,7 @@ msgstr "لطفا یک موضوع به ایمیل خود اضافه کنید"
msgid "Please add a valid comment."
msgstr "لطفا یک نظر معتبر اضافه کنید."
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1063
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -18986,11 +18752,11 @@ msgstr "لطفاً URL پیکربندی OpenID را بررسی کنید"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "لطفاً مقادیر فیلتر تنظیم شده برای نمودار داشبورد را بررسی کنید: {}"
-#: frappe/model/base_document.py:946
+#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "لطفاً مقدار تنظیم شده \"Fetch From\" را برای فیلد {0} بررسی کنید"
-#: frappe/core/doctype/user/user.py:1059
+#: frappe/core/doctype/user/user.py:1061
msgid "Please check your email for verification"
msgstr "لطفا ایمیل خود را برای تایید بررسی کنید"
@@ -19018,10 +18784,6 @@ msgstr "لطفا روی لینک زیر کلیک کنید و دستورالعم
msgid "Please click on the following link to set your new password"
msgstr "لطفا روی لینک زیر کلیک کنید تا گذرواژه جدید خود را تنظیم کنید"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:343
-msgid "Please close this window"
-msgstr "لطفا این پنجره را ببندید"
-
#: frappe/www/confirm_workflow_action.html:4
msgid "Please confirm your action to {0} this document."
msgstr "لطفاً اقدام خود را در {0} این سند تأیید کنید."
@@ -19038,7 +18800,7 @@ msgstr "لطفا ابتدا کارت ایجاد کنید"
msgid "Please create chart first"
msgstr "لطفا ابتدا نمودار ایجاد کنید"
-#: frappe/desk/form/meta.py:214
+#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
msgstr "لطفاً فیلد را از {0} حذف کنید یا نوع doctype مورد نیاز را اضافه کنید."
@@ -19050,7 +18812,7 @@ msgstr "لطفا عناوین قالب را تغییر ندهید."
msgid "Please duplicate this to make changes"
msgstr "لطفاً برای ایجاد تغییرات این را کپی کنید"
-#: frappe/core/doctype/system_settings/system_settings.py:162
+#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr "لطفاً حداقل یک کلید ورود به سیستم اجتماعی یا LDAP یا ورود با پیوند ایمیل را قبل از غیرفعال کردن ورود مبتنی بر نام کاربری/گذرواژه فعال کنید."
@@ -19068,7 +18830,7 @@ msgstr "لطفا پنجره های بازشو را فعال کنید"
msgid "Please enable pop-ups in your browser"
msgstr "لطفا پنجره های پاپ آپ را در مرورگر خود فعال کنید"
-#: frappe/integrations/google_oauth.py:53
+#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
msgstr "لطفاً قبل از ادامه {} را فعال کنید."
@@ -19145,7 +18907,7 @@ msgstr "لطفا برای ارسال نظر وارد شوید."
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "لطفاً مطمئن شوید که اسناد ارتباطی مرجع به صورت دایره ای پیوند داده نشده اند."
-#: frappe/model/document.py:987
+#: frappe/model/document.py:986
msgid "Please refresh to get the latest document."
msgstr "لطفاً برای دریافت آخرین سند، بازخوانی کنید."
@@ -19169,7 +18931,7 @@ msgstr "لطفاً سند را قبل از تخصیص ذخیره کنید"
msgid "Please save the document before removing assignment"
msgstr "لطفاً سند را قبل از حذف تخصیص ذخیره کنید"
-#: frappe/public/js/frappe/views/reports/report_view.js:1703
+#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
msgstr "لطفا ابتدا گزارش را ذخیره کنید"
@@ -19185,11 +18947,11 @@ msgstr "لطفا ابتدا DocType را انتخاب کنید"
msgid "Please select Entity Type first"
msgstr "لطفا ابتدا Entity Type را انتخاب کنید"
-#: frappe/core/doctype/system_settings/system_settings.py:112
+#: frappe/core/doctype/system_settings/system_settings.py:113
msgid "Please select Minimum Password Score"
msgstr "لطفا حداقل امتیاز گذرواژه را انتخاب کنید"
-#: frappe/public/js/frappe/views/reports/query_report.js:1181
+#: frappe/public/js/frappe/views/reports/query_report.js:1183
msgid "Please select X and Y fields"
msgstr "لطفاً فیلدهای X و Y را انتخاب کنید"
@@ -19217,7 +18979,7 @@ msgstr "لطفاً یک فیلتر تاریخ معتبر انتخاب کنید"
msgid "Please select applicable Doctypes"
msgstr "لطفاً Doctypes قابل اجرا را انتخاب کنید"
-#: frappe/model/db_query.py:1140
+#: frappe/model/db_query.py:1141
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "لطفاً حداقل 1 ستون از {0} برای مرتبسازی/گروهبندی انتخاب کنید"
@@ -19239,10 +19001,6 @@ msgstr "لطفاً فهرست LDAP مورد استفاده را انتخاب ک
msgid "Please select {0}"
msgstr "لطفاً {0} را انتخاب کنید"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:305
-msgid "Please set Dropbox access keys in site config or doctype"
-msgstr "لطفاً کلیدهای دسترسی Dropbox را در پیکربندی یا doctype سایت تنظیم کنید"
-
#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
msgstr "لطفا آدرس ایمیل را تنظیم کنید"
@@ -19251,7 +19009,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:1404
+#: frappe/public/js/frappe/views/reports/query_report.js:1406
msgid "Please set filters"
msgstr "لطفا فیلترها را تنظیم کنید"
@@ -19271,7 +19029,7 @@ msgstr "لطفاً ابتدا اسناد زیر را در این داشبورد
msgid "Please set the series to be used."
msgstr "لطفاً سریال مورد استفاده را تنظیم کنید."
-#: frappe/core/doctype/system_settings/system_settings.py:125
+#: frappe/core/doctype/system_settings/system_settings.py:126
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr "لطفاً SMS را قبل از تنظیم آن به عنوان یک روش احراز هویت، از طریق تنظیمات پیامک تنظیم کنید"
@@ -19279,19 +19037,19 @@ msgstr "لطفاً SMS را قبل از تنظیم آن به عنوان یک ر
msgid "Please setup a message first"
msgstr "لطفا ابتدا یک پیام تنظیم کنید"
-#: frappe/core/doctype/user/user.py:422
+#: frappe/core/doctype/user/user.py:423
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "لطفاً حساب ایمیل خروجی پیشفرض را از تنظیمات > حساب ایمیل تنظیم کنید"
-#: frappe/email/doctype/email_account/email_account.py:434
+#: 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:823
+#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
msgstr "لطفا مشخص کنید"
-#: frappe/permissions.py:774
+#: frappe/permissions.py:783
msgid "Please specify a valid parent DocType for {0}"
msgstr "لطفاً یک DocType والد معتبر برای {0} مشخص کنید"
@@ -19320,7 +19078,7 @@ msgstr "لطفاً مشخص کنید که کدام قسمت مقدار باید
msgid "Please try again"
msgstr "لطفا دوباره تلاش کنید"
-#: frappe/integrations/google_oauth.py:56
+#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
msgstr "لطفاً قبل از ادامه {} را به روز کنید."
@@ -19633,8 +19391,8 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1728
-#: frappe/public/js/frappe/views/reports/report_view.js:1531
+#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "چاپ"
@@ -19877,7 +19635,7 @@ msgstr "نکته پیشنهادی: برای ارسال مرجع سند،
msgid "Proceed"
msgstr "ادامه دهید"
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
msgstr "در هر صورت انجام شود"
@@ -20198,7 +19956,7 @@ msgstr "پرسمان باید از نوع SELECT یا فقط خواندنی WITH
msgid "Queue"
msgstr "صف"
-#: frappe/utils/background_jobs.py:729
+#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
msgstr ""
@@ -20219,7 +19977,7 @@ msgstr "نوع(های) صف"
msgid "Queue in Background (BETA)"
msgstr "صف در پسزمینه (BETA)"
-#: frappe/utils/background_jobs.py:554
+#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
msgstr "صف باید یکی از {0} باشد"
@@ -20252,12 +20010,6 @@ msgstr "در صف"
msgid "Queued for Submission. You can track the progress over {0}."
msgstr "در صف ارسال میتوانید پیشرفت را در {0} دنبال کنید."
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:65
-#: frappe/integrations/doctype/google_drive/google_drive.py:153
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:86
-msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr "در صف پشتیبان گیری ممکن است چند دقیقه تا یک ساعت طول بکشد."
-
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
msgstr "در صف پشتیبان گیری یک ایمیل با لینک دانلود دریافت خواهید کرد"
@@ -20393,7 +20145,7 @@ msgstr "تنظیمات چاپ خام"
msgid "Re-Run in Console"
msgstr "دوباره در کنسول اجرا کنید"
-#: frappe/email/doctype/email_account/email_account.py:728
+#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
msgstr "پاسخ:"
@@ -20495,7 +20247,7 @@ msgstr ""
msgid "Reason"
msgstr "دلیل"
-#: frappe/public/js/frappe/views/reports/query_report.js:889
+#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
msgstr "بازسازی"
@@ -20860,11 +20612,11 @@ msgid "Referrer"
msgstr "ارجاع دهنده"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:548
+#: frappe/public/js/frappe/desk.js:556
#: 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:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1719
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20883,12 +20635,10 @@ msgstr "برگه Google را بازخوانی کنید"
#. 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 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
@@ -20905,7 +20655,7 @@ msgstr "تازه کردن"
msgid "Refreshing..."
msgstr "تازه کردن..."
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
msgstr "ثبت شده اما غیرفعال است"
@@ -21068,7 +20818,7 @@ msgstr "حذف شد"
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
#: frappe/public/js/frappe/form/toolbar.js:432
-#: frappe/public/js/frappe/model/model.js:772
+#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
msgstr "تغییر نام"
@@ -21078,7 +20828,7 @@ msgstr "تغییر نام"
msgid "Rename Fieldname"
msgstr "تغییر نام فیلد"
-#: frappe/public/js/frappe/model/model.js:759
+#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
msgstr "تغییر نام {0}"
@@ -21142,7 +20892,7 @@ msgstr "حدس زدن تکرارهایی مانند \"aaa\" آسان است"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "حدس زدن تکرارهایی مانند \"abcabcabc\" کمی سخت تر از \"abc\" است."
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:146
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
msgstr "تکرار میشود {0}"
@@ -21280,7 +21030,7 @@ msgstr "مدیر گزارش"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1902
+#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
msgstr "نام گزارش"
@@ -21332,7 +21082,7 @@ msgstr "گزارش داده ای ندارد، لطفاً فیلترها را ت
msgid "Report has no numeric fields, please change the Report Name"
msgstr "گزارش هیچ فیلد عددی ندارد، لطفاً نام گزارش را تغییر دهید"
-#: frappe/public/js/frappe/views/reports/query_report.js:1009
+#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
msgstr "گزارش شروع شد، برای مشاهده وضعیت کلیک کنید"
@@ -21348,11 +21098,11 @@ msgstr "زمان گزارش تمام شد."
msgid "Report updated successfully"
msgstr "گزارش با موفقیت به روز شد"
-#: frappe/public/js/frappe/views/reports/report_view.js:1351
+#: frappe/public/js/frappe/views/reports/report_view.js:1357
msgid "Report was not saved (there were errors)"
msgstr "گزارش ذخیره نشد (خطاهایی وجود داشت)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1940
+#: frappe/public/js/frappe/views/reports/query_report.js:1942
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "گزارش با بیش از 10 ستون در حالت افقی بهتر به نظر می رسد."
@@ -21388,7 +21138,7 @@ msgstr "گزارش ها"
msgid "Reports & Masters"
msgstr "گزارش ها و مستندات"
-#: frappe/public/js/frappe/views/reports/query_report.js:925
+#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
msgstr "گزارشها از قبل در صف هستند"
@@ -21838,7 +21588,7 @@ msgstr ""
msgid "Role and Level"
msgstr "نقش و سطح"
-#: frappe/core/doctype/user/user.py:363
+#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
msgstr "نقش بر اساس نوع کاربری {0} تنظیم شده است"
@@ -21953,7 +21703,7 @@ msgstr "تغییر مسیرها"
msgid "Route: Example \"/app\""
msgstr "مسیر: مثال \"/app\""
-#: frappe/model/base_document.py:855 frappe/model/document.py:778
+#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
msgstr "ردیف"
@@ -21966,7 +21716,7 @@ msgstr "ردیف #"
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:977
+#: frappe/model/base_document.py:982
msgid "Row #{0}:"
msgstr "ردیف #{0}:"
@@ -22044,7 +21794,7 @@ msgstr "قانون"
msgid "Rule Conditions"
msgstr "شرایط قانون"
-#: frappe/permissions.py:653
+#: frappe/permissions.py:662
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "قانون برای این ترکیب doctype، role، permlevel و if-owner از قبل وجود دارد."
@@ -22088,23 +21838,6 @@ msgstr "زمان اجرا به دقیقه"
msgid "Runtime in Seconds"
msgstr "زمان اجرا به ثانیه"
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "S3 Backup Settings"
-msgstr "تنظیمات پشتیبان گیری S3"
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
-msgid "S3 Backup complete!"
-msgstr "پشتیبان گیری S3 کامل شد!"
-
-#. Label of the s3_bucket_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Bucket Details"
-msgstr "جزئیات باکت S3"
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
@@ -22245,7 +21978,7 @@ msgstr "شنبه"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/page/print/print.js:858
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/quick_entry.js:185
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
@@ -22255,8 +21988,8 @@ msgstr "شنبه"
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
-#: frappe/public/js/frappe/views/reports/query_report.js:1894
-#: frappe/public/js/frappe/views/reports/report_view.js:1720
+#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
@@ -22273,8 +22006,8 @@ msgstr "Save Secret API: {0}"
msgid "Save Anyway"
msgstr "ذخیره به هر حال"
-#: frappe/public/js/frappe/views/reports/report_view.js:1382
-#: frappe/public/js/frappe/views/reports/report_view.js:1727
+#: frappe/public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
msgstr "ذخیره به عنوان"
@@ -22282,7 +22015,7 @@ msgstr "ذخیره به عنوان"
msgid "Save Customizations"
msgstr "سفارشی سازی ها را ذخیره کنید"
-#: frappe/public/js/frappe/views/reports/query_report.js:1897
+#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
msgstr "ذخیره گزارش"
@@ -22448,7 +22181,7 @@ msgstr "زمانبند غیرفعال"
msgid "Scheduler Status"
msgstr "وضعیت زمانبند"
-#: frappe/utils/scheduler.py:249
+#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr "وقتی حالت تعمیر و نگهداری فعال است، زمانبند را نمیتوان دوباره فعال کرد."
@@ -22674,7 +22407,7 @@ msgstr "تنظیمات امنیتی"
msgid "See all Activity"
msgstr "مشاهده تمام فعالیت ها"
-#: frappe/public/js/frappe/views/reports/query_report.js:858
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "See all past reports."
msgstr "مشاهده تمام گزارش های گذشته"
@@ -22754,7 +22487,7 @@ msgstr "پیوست ها را انتخاب کنید"
msgid "Select Child Table"
msgstr "Child Table را انتخاب کنید"
-#: frappe/public/js/frappe/views/reports/report_view.js:377
+#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
msgstr "ستون را انتخاب کنید"
@@ -23071,31 +22804,11 @@ msgstr "ارسال ایمیل چاپ پیوست ها به صورت PDF (توصی
msgid "Send Email To Creator"
msgstr "ارسال ایمیل به ایجاد کننده"
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Dropbox Settings'
-#. Label of the send_email_for_successful_backup (Check) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Email for Successful Backup"
-msgstr "برای پشتیبان گیری موفقیت آمیز ایمیل ارسال کنید"
-
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Email for Successful backup"
-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 email (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Notification To"
-msgstr "ارسال اعلان به"
-
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -23112,14 +22825,6 @@ msgstr "ارسال اعلان برای اسناد دنبال شده توسط م
msgid "Send Notifications For Email Threads"
msgstr "ارسال اعلان برای موضوعات ایمیل"
-#. Label of the send_notifications_to (Data) field in DocType 'Dropbox
-#. Settings'
-#. Label of the notify_email (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Notifications To"
-msgstr "ارسال اعلان ها به"
-
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
msgstr "در حال حاضر ارسال"
@@ -23378,7 +23083,7 @@ msgstr "سری {0} قبلاً در {1} استفاده شده است"
msgid "Server Action"
msgstr "اقدام سرور"
-#: frappe/app.py:383 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "خطای سرور"
@@ -23444,7 +23149,7 @@ msgstr "پیشفرضهای نشست"
msgid "Session Defaults Saved"
msgstr "پیشفرضهای نشست ذخیره شد"
-#: frappe/app.py:360
+#: frappe/app.py:353
msgid "Session Expired"
msgstr "نشست منقضی شده"
@@ -23453,7 +23158,7 @@ msgstr "نشست منقضی شده"
msgid "Session Expiry (idle timeout)"
msgstr "انقضای نشست (تایم بیکار)"
-#: frappe/core/doctype/system_settings/system_settings.py:119
+#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
msgstr "انقضای نشست باید در قالب {0} باشد"
@@ -23476,7 +23181,7 @@ msgstr "تنظیم"
msgid "Set Banner from Image"
msgstr "تنظیم بنر از تصویر"
-#: frappe/public/js/frappe/views/reports/query_report.js:201
+#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
msgstr "تنظیم نمودار"
@@ -23502,7 +23207,7 @@ msgstr "فیلترها را تنظیم کنید"
msgid "Set Filters for {0}"
msgstr "تنظیم فیلترها برای {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
msgstr ""
@@ -23720,8 +23425,8 @@ msgstr "راهاندازی > کاربر"
msgid "Setup > User Permissions"
msgstr "راهاندازی > مجوزهای کاربر"
-#: frappe/public/js/frappe/views/reports/query_report.js:1763
-#: frappe/public/js/frappe/views/reports/report_view.js:1698
+#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "تنظیم ایمیل خودکار"
@@ -23817,6 +23522,15 @@ msgstr "نمایش دهید"
msgid "Show \"Call to Action\" in Blog"
msgstr "نمایش \"Call to Action\" در وبلاگ"
+#. 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"
@@ -23987,7 +23701,7 @@ msgstr "نمایش عنوان"
msgid "Show Title in Link Fields"
msgstr "نمایش عنوان در فیلدهای پیوند"
-#: frappe/public/js/frappe/views/reports/report_view.js:1521
+#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
msgstr "نمایش مجموع"
@@ -24097,7 +23811,7 @@ msgstr "نمایش عنوان در پنجره مرورگر به عنوان \"پ
msgid "Show {0} List"
msgstr "نمایش فهرست {0}"
-#: frappe/public/js/frappe/views/reports/report_view.js:495
+#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
msgstr "نمایش فقط فیلدهای عددی از گزارش"
@@ -24132,7 +23846,7 @@ msgstr "نوار کناری و نظرات"
msgid "Sign Up and Confirmation"
msgstr "ثبت نام و تایید"
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
msgstr "ثبت نام غیرفعال است"
@@ -24777,7 +24491,7 @@ msgstr "فاصله زمانی آمار"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
-#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: frappe/public/js/frappe/views/reports/report_view.js:975
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
@@ -25076,7 +24790,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:1166
+#: frappe/public/js/frappe/form/grid.js:1170
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25173,7 +24887,7 @@ msgstr "پیشنهاد بهینهسازی"
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:720
+#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
msgstr "نام کاربری پیشنهادی: {0}"
@@ -25463,11 +25177,9 @@ msgstr "لاگ های سیستم"
#: frappe/geo/doctype/country/country.json
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/connected_app/connected_app.json
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.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_drive/google_drive.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
@@ -25476,7 +25188,6 @@ msgstr "لاگ های سیستم"
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_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
@@ -25601,11 +25312,11 @@ msgstr "جدول MultiSelect"
msgid "Table Trimmed"
msgstr "جدول بریده شده"
-#: frappe/public/js/frappe/form/grid.js:1165
+#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
msgstr "جدول به روز شد"
-#: frappe/model/document.py:1565
+#: frappe/model/document.py:1564
msgid "Table {0} cannot be empty"
msgstr "جدول {0} نمیتواند خالی باشد"
@@ -25624,7 +25335,7 @@ msgstr "تگ"
msgid "Tag Link"
msgstr "لینک را تگ کنید"
-#: frappe/model/meta.py:57
+#: 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
@@ -25636,15 +25347,6 @@ msgstr "لینک را تگ کنید"
msgid "Tags"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:29
-msgid "Take Backup"
-msgstr "بک آپ بگیرید"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
-msgid "Take Backup Now"
-msgstr "اکنون نسخه پشتیبان تهیه کنید"
-
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
msgstr "عکس گرفتن"
@@ -25722,12 +25424,12 @@ msgstr "هشدارهای الگو"
msgid "Templates"
msgstr "قالب ها"
-#: frappe/core/doctype/user/user.py:1027
+#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
msgstr "موقتا غیر فعال می باشد"
-#: frappe/core/doctype/translation/test_translation.py:56
-#: frappe/core/doctype/translation/test_translation.py:63
+#: frappe/core/doctype/translation/test_translation.py:47
+#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
msgstr ""
@@ -25736,8 +25438,8 @@ msgstr ""
msgid "Test Job ID"
msgstr ""
-#: frappe/core/doctype/translation/test_translation.py:58
-#: frappe/core/doctype/translation/test_translation.py:66
+#: frappe/core/doctype/translation/test_translation.py:49
+#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
msgstr ""
@@ -25745,7 +25447,7 @@ msgstr ""
msgid "Test email sent to {0}"
msgstr "ایمیل آزمایشی به {0} ارسال شد"
-#: frappe/core/doctype/file/test_file.py:388
+#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Test_Folder"
@@ -25826,7 +25528,7 @@ msgstr "با تشکر"
msgid "The Auto Repeat for this document has been disabled."
msgstr "تکرار خودکار برای این سند غیرفعال شده است."
-#: frappe/public/js/frappe/form/grid.js:1188
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
msgstr "قالب CSV به حروف بزرگ و کوچک حساس است"
@@ -25994,15 +25696,15 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:987
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
msgstr "پیوند بازنشانی گذرواژه منقضی شده است"
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:991
msgid "The reset password link has either been used before or is invalid"
msgstr "پیوند بازنشانی گذرواژه یا قبلا استفاده شده است یا نامعتبر است"
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "منبع مورد نظر شما در دسترس نیست"
@@ -26014,7 +25716,7 @@ msgstr "نقش {0} باید یک نقش سفارشی باشد."
msgid "The selected document {0} is not a {1}."
msgstr "سند انتخاب شده {0} یک {1} نیست."
-#: frappe/utils/response.py:334
+#: frappe/utils/response.py:331
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "سیستم در حال به روز رسانی است. لطفاً پس از چند لحظه دوباره بازخوانی کنید."
@@ -26075,7 +25777,7 @@ msgstr "هیچ رویداد پیش رویی برای شما وجود ندارد.
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "هیچ {0} برای این {1} وجود ندارد، چرا یکی را شروع نمیکنید!"
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "There are {0} with the same filters already in the queue:"
msgstr "{0} با فیلترهای مشابه از قبل در صف وجود دارد:"
@@ -26104,7 +25806,7 @@ msgstr "در حال حاضر چیز جدیدی برای نشان دادن شما
msgid "There is some problem with the file url: {0}"
msgstr "آدرس فایل مشکلی دارد: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:958
+#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
msgstr "{0} با فیلترهای مشابه از قبل در صف وجود دارد:"
@@ -26191,12 +25893,12 @@ msgstr "امسال"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "این عمل برگشتناپذیر است. آیا مایل هستید ادامه دهید؟"
-#: frappe/__init__.py:750
+#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
msgstr "این عمل فقط برای {} مجاز است"
#: frappe/public/js/frappe/form/toolbar.js:117
-#: frappe/public/js/frappe/model/model.js:755
+#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "این قابل بازگشت نیست"
@@ -26234,7 +25936,7 @@ msgstr ""
msgid "This document is already amended, you cannot ammend it again"
msgstr "این سند قبلاً اصلاح شده است، شما نمیتوانید دوباره آن را اصلاح کنید"
-#: frappe/model/document.py:474
+#: frappe/model/document.py:473
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr "این سند در حال حاضر قفل شده و در صف اجرا قرار دارد. لطفا بعد از مدتی دوباره امتحان کنید."
@@ -26295,7 +25997,7 @@ msgstr "این ارائه دهنده موقعیت جغرافیایی هنوز پ
msgid "This goes above the slideshow."
msgstr "این بالاتر از نمایش اسلاید است."
-#: frappe/public/js/frappe/views/reports/query_report.js:2132
+#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "این یک گزارش پس زمینه است. لطفا فیلترهای مناسب را تنظیم کنید و سپس گزارش جدیدی ایجاد کنید."
@@ -26359,7 +26061,7 @@ msgstr "این خبرنامه قرار است در تاریخ {0} ارسال ش
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
msgstr "این خبرنامه قرار بود در تاریخ بعدی ارسال شود. آیا مطمئن هستید که میخواهید آن را اکنون ارسال کنید؟"
-#: frappe/public/js/frappe/views/reports/query_report.js:1033
+#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26367,7 +26069,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr "این گزارش در {0} ایجاد شد"
-#: frappe/public/js/frappe/views/reports/query_report.js:856
+#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
msgstr "این گزارش در {0} ایجاد شد."
@@ -26433,7 +26135,7 @@ msgstr "با این کار این تور بازنشانی میشود و به
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr " این کار بلافاصله کار را خاتمه می دهد و ممکن است خطرناک باشد، مطمئن هستید؟"
-#: frappe/core/doctype/user/user.py:1240
+#: frappe/core/doctype/user/user.py:1242
msgid "Throttled"
msgstr "گاز گرفت"
@@ -26784,7 +26486,7 @@ msgstr "برای صادر کردن این مرحله به عنوان JSON، آن
msgid "To generate password click {0}"
msgstr "برای ایجاد رمز عبور، روی {0} کلیک کنید"
-#: frappe/public/js/frappe/views/reports/query_report.js:857
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "To get the updated report, click on {0}."
msgstr "برای دریافت گزارش به روز شده، روی {0} کلیک کنید."
@@ -26809,10 +26511,6 @@ msgstr "برای استفاده از Google Calendar، {0} را فعال کنی
msgid "To use Google Contacts, enable {0}."
msgstr "برای استفاده از Google Contacts، {0} را فعال کنید."
-#: frappe/integrations/doctype/google_drive/google_drive.js:8
-msgid "To use Google Drive, enable {0}."
-msgstr "برای استفاده از Google Drive، {0} را فعال کنید."
-
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -26843,7 +26541,7 @@ msgstr "لیست انجام کار"
msgid "Today"
msgstr "امروز"
-#: frappe/public/js/frappe/views/reports/report_view.js:1564
+#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
msgstr "تغییر نمودار"
@@ -26859,7 +26557,7 @@ 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:1568
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
msgstr "تغییر وضعیت نوار کناری"
@@ -26915,11 +26613,11 @@ msgstr "درخواست های خیلی زیاد"
msgid "Too many changes to database in single action."
msgstr "تغییرات بسیار زیادی در پایگاه داده در یک اقدام واحد."
-#: frappe/utils/background_jobs.py:728
+#: 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:1028
+#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "کاربران زیادی اخیرا ثبت نام کرده اند، بنابراین ثبت نام غیرفعال است. لطفا یک ساعت دیگر دوباره امتحان کنید"
@@ -26983,8 +26681,8 @@ msgstr "موضوع"
#: frappe/desk/query_report.py:533
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1320
-#: frappe/public/js/frappe/views/reports/report_view.js:1545
+#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr "جمع"
@@ -27047,11 +26745,11 @@ msgstr "تعداد کل ایمیل هایی که در فرآیند همگام س
msgid "Total:"
msgstr "جمع:"
-#: frappe/public/js/frappe/views/reports/report_view.js:1250
+#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
msgstr "جمع"
-#: frappe/public/js/frappe/views/reports/report_view.js:1225
+#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
msgstr "ردیف کل"
@@ -27166,7 +26864,7 @@ msgstr "انتقال ها"
msgid "Translatable"
msgstr "قابل ترجمه"
-#: frappe/public/js/frappe/views/reports/query_report.js:2188
+#: frappe/public/js/frappe/views/reports/query_report.js:2183
msgid "Translate Data"
msgstr ""
@@ -27177,7 +26875,7 @@ msgstr ""
msgid "Translate Link Fields"
msgstr "ترجمه فیلدهای پیوند"
-#: frappe/public/js/frappe/views/reports/report_view.js:1650
+#: frappe/public/js/frappe/views/reports/report_view.js:1656
msgid "Translate values"
msgstr "ترجمه مقادیر"
@@ -27325,7 +27023,7 @@ msgstr "روش احراز هویت دو عاملی"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/views/file/file_view.js:337
#: frappe/public/js/frappe/views/workspace/workspace.js:399
-#: frappe/public/js/frappe/widgets/widget_dialog.js:391
+#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
msgid "Type"
@@ -27405,7 +27103,7 @@ msgstr ""
#: 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:458
+#: 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"
@@ -27467,7 +27165,7 @@ msgstr "نمیتوان DocType {0} را پیدا کرد"
msgid "Unable to load camera."
msgstr "بارگیری دوربین ممکن نیست."
-#: frappe/public/js/frappe/model/model.js:268
+#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
msgstr "بارگیری نشد: {0}"
@@ -27496,7 +27194,7 @@ msgstr "امکان نوشتن فرمت فایل برای {0} وجود ندارد
msgid "Unassign Condition"
msgstr "شرط لغو اختصاص"
-#: frappe/app.py:383
+#: frappe/app.py:376
msgid "Uncaught Exception"
msgstr ""
@@ -27729,7 +27427,7 @@ msgstr "به روز شد"
msgid "Updated Successfully"
msgstr "با موفقیت به روز شد"
-#: frappe/public/js/frappe/desk.js:444
+#: frappe/public/js/frappe/desk.js:452
msgid "Updated To A New Version 🎉"
msgstr "بهروزرسانی به نسخه جدید 🎉"
@@ -27737,7 +27435,7 @@ msgstr "بهروزرسانی به نسخه جدید 🎉"
msgid "Updated successfully"
msgstr "با موفقیت به روز شد"
-#: frappe/utils/response.py:333
+#: frappe/utils/response.py:330
msgid "Updating"
msgstr "در حال بروز رسانی"
@@ -27811,18 +27509,6 @@ msgstr "در Dropbox آپلود شد"
msgid "Uploaded To Google Drive"
msgstr "در Google Drive آپلود شد"
-#: frappe/integrations/doctype/google_drive/google_drive.py:196
-msgid "Uploading backup to Google Drive."
-msgstr "در حال آپلود پشتیبان در Google Drive."
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:201
-msgid "Uploading successful."
-msgstr "آپلود با موفقیت انجام شد."
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:16
-msgid "Uploading to Google Drive"
-msgstr "در حال آپلود در Google Drive"
-
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -27906,11 +27592,11 @@ msgstr "از شناسه ایمیل متفاوت استفاده کنید"
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr "استفاده کنید اگر تنظیمات پیشفرض به درستی دادههای شما را شناسایی نمیکنند"
-#: frappe/model/db_query.py:434
+#: frappe/model/db_query.py:435
msgid "Use of function {0} in field is restricted"
msgstr "استفاده از تابع {0} در فیلد محدود شده است"
-#: frappe/model/db_query.py:411
+#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
msgstr "استفاده از زیرپرسمان یا تابع محدود شده است"
@@ -28027,7 +27713,7 @@ msgstr "کاربر نمیتواند ایجاد کند"
msgid "User Cannot Search"
msgstr "کاربر نمیتواند جستجو کند"
-#: frappe/public/js/frappe/desk.js:546
+#: frappe/public/js/frappe/desk.js:554
msgid "User Changed"
msgstr ""
@@ -28133,8 +27819,8 @@ 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:1881
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "مجوزهای کاربر"
@@ -28231,7 +27917,7 @@ msgstr "کاربر همیشه باید انتخاب کند"
msgid "User permission already exists"
msgstr "مجوز کاربر از قبل وجود دارد"
-#: frappe/www/login.py:167
+#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
msgstr "کاربری با آدرس ایمیل {0} وجود ندارد"
@@ -28239,23 +27925,23 @@ msgstr "کاربری با آدرس ایمیل {0} وجود ندارد"
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr "کاربر با ایمیل: {0} در سیستم وجود ندارد. لطفاً از «ادمین سیستم» بخواهید که کاربر را برای شما ایجاد کند."
-#: frappe/core/doctype/user/user.py:536
+#: frappe/core/doctype/user/user.py:537
msgid "User {0} cannot be deleted"
msgstr "کاربر {0} قابل حذف نیست"
-#: frappe/core/doctype/user/user.py:326
+#: frappe/core/doctype/user/user.py:327
msgid "User {0} cannot be disabled"
msgstr "کاربر {0} را نمیتوان غیرفعال کرد"
-#: frappe/core/doctype/user/user.py:602
+#: frappe/core/doctype/user/user.py:603
msgid "User {0} cannot be renamed"
msgstr "کاربر {0} را نمیتوان تغییر نام داد"
-#: frappe/permissions.py:138
+#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
msgstr "کاربر {0} به این سند دسترسی ندارد"
-#: frappe/permissions.py:161
+#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr "کاربر {0} دسترسی doctype از طریق مجوز نقش برای سند {1} ندارد"
@@ -28268,7 +27954,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr "کاربر {0} درخواست حذف داده ها را داده است"
-#: frappe/core/doctype/user/user.py:1369
+#: frappe/core/doctype/user/user.py:1371
msgid "User {0} impersonated as {1}"
msgstr "کاربر {0} جعل هویت به عنوان {1}"
@@ -28297,7 +27983,7 @@ msgstr "URI اطلاعات کاربر"
msgid "Username"
msgstr "نام کاربری"
-#: frappe/core/doctype/user/user.py:687
+#: frappe/core/doctype/user/user.py:689
msgid "Username {0} already exists"
msgstr "نام کاربری {0} از قبل وجود دارد"
@@ -28437,15 +28123,15 @@ msgstr "ارزش تغییر کرد"
msgid "Value To Be Set"
msgstr "ارزش تنظیم شود"
-#: frappe/model/base_document.py:1049 frappe/model/document.py:834
+#: frappe/model/base_document.py:1054 frappe/model/document.py:833
msgid "Value cannot be changed for {0}"
msgstr "مقدار برای {0} قابل تغییر نیست"
-#: frappe/model/document.py:780
+#: frappe/model/document.py:779
msgid "Value cannot be negative for"
msgstr "ارزش نمیتواند منفی باشد"
-#: frappe/model/document.py:784
+#: frappe/model/document.py:783
msgid "Value cannot be negative for {0}: {1}"
msgstr "مقدار نمیتواند برای {0} منفی باشد: {1}"
@@ -28476,7 +28162,7 @@ msgstr "مقدار باید یکی از {0} باشد"
msgid "Value to Validate"
msgstr "ارزش برای اعتبارسنجی"
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1124
msgid "Value too big"
msgstr "ارزش خیلی بزرگ است"
@@ -29077,11 +28763,6 @@ msgstr "روزهای هفته"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -29090,9 +28771,6 @@ msgstr "روزهای هفته"
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:399
#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
@@ -29127,11 +28805,11 @@ msgstr "URL خوش آمدید"
msgid "Welcome Workspace"
msgstr "محیط کار خوش آمدید"
-#: frappe/core/doctype/user/user.py:414
+#: frappe/core/doctype/user/user.py:415
msgid "Welcome email sent"
msgstr "ایمیل خوش آمدگویی ارسال شد"
-#: frappe/core/doctype/user/user.py:475
+#: frappe/core/doctype/user/user.py:476
msgid "Welcome to {0}"
msgstr "به {0} خوش آمدید"
@@ -29164,7 +28842,7 @@ 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:468
+#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
msgstr "این میانبر باید شما را به کدام نمای DocType مرتبط کند؟"
@@ -29363,7 +29041,7 @@ msgstr "گردش کار با موفقیت به روز شد"
msgid "Workspace"
msgstr "فضای کار"
-#: frappe/public/js/frappe/router.js:177
+#: frappe/public/js/frappe/router.js:173
msgid "Workspace {0} does not exist"
msgstr "محیط کار {0} وجود ندارد"
@@ -29433,11 +29111,11 @@ msgstr "محیط کار {0} ایجاد شد"
msgid "Workspaces"
msgstr "محیطهای کار"
-#: frappe/public/js/frappe/form/footer/form_timeline.js:753
+#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
msgstr ""
@@ -29456,11 +29134,11 @@ msgstr "بسته شدن"
msgid "Write"
msgstr "نوشتن"
-#: frappe/model/base_document.py:949
+#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
msgstr "واکشی اشتباه از مقدار"
-#: frappe/public/js/frappe/views/reports/report_view.js:484
+#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
msgstr "فیلد محور X"
@@ -29479,13 +29157,13 @@ msgstr "XLSX"
msgid "Y Axis"
msgstr "محور Y"
-#: frappe/public/js/frappe/views/reports/report_view.js:491
+#: frappe/public/js/frappe/views/reports/report_view.js:497
msgid "Y Axis Fields"
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:1221
+#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
msgstr "فیلد Y"
@@ -29546,7 +29224,7 @@ msgstr "زرد"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "بله"
@@ -29586,11 +29264,11 @@ msgstr "شما در حال جعل هویت به عنوان کاربر دیگری
msgid "You are not allowed to access this resource"
msgstr "شما اجازه دسترسی به این منبع را ندارید"
-#: frappe/permissions.py:409
+#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "شما مجاز به دسترسی به این رکورد {0} نیستید زیرا به {1} '{2}' در فیلد {3} پیوند داده شده است."
-#: frappe/permissions.py:398
+#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "شما مجاز به دسترسی به این رکورد {0} نیستید زیرا به {1} \"{2}\" در ردیف {3}، فیلد {4} پیوند داده شده است."
@@ -29613,7 +29291,7 @@ msgstr "شما مجاز به ویرایش گزارش نیستید."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:604
+#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
msgstr "شما مجاز به برونبُرد {} doctype نیستید"
@@ -29625,7 +29303,7 @@ msgstr "شما مجاز به چاپ این گزارش نیستید"
msgid "You are not allowed to send emails related to this document"
msgstr "شما مجاز به ارسال ایمیل های مرتبط با این سند نیستید"
-#: frappe/website/doctype/web_form/web_form.py:569
+#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
msgstr "شما مجاز به به روز رسانی این سند فرم وب نیستید"
@@ -29641,7 +29319,7 @@ msgstr "بدون ورود به سیستم اجازه دسترسی به این ص
msgid "You are not permitted to access this page."
msgstr "شما اجازه دسترسی به این صفحه را ندارید."
-#: frappe/__init__.py:669
+#: frappe/__init__.py:676
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29649,7 +29327,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr "شما اکنون این سند را دنبال میکنید. به روز رسانی های روزانه را از طریق ایمیل دریافت خواهید کرد. میتوانید این مورد را در تنظیمات کاربر تغییر دهید."
-#: frappe/core/doctype/installed_applications/installed_applications.py:82
+#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
msgstr "شما فقط مجاز به بهروزرسانی سفارش هستید، برنامهها را حذف یا اضافه نکنید."
@@ -29813,11 +29491,11 @@ msgstr "شما مجوزهای خواندن یا انتخاب برای {} را ن
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "شما مجوز کافی برای دسترسی به این منبع را ندارید. لطفاً برای دسترسی با مدیر خود تماس بگیرید."
-#: frappe/app.py:368
+#: frappe/app.py:361
msgid "You do not have enough permissions to complete the action"
msgstr "شما مجوز کافی برای تکمیل عمل را ندارید"
-#: frappe/desk/query_report.py:838
+#: frappe/desk/query_report.py:831
msgid "You do not have permission to access {0}: {1}."
msgstr "شما اجازه دسترسی به {0}: {1} را ندارید."
@@ -29829,11 +29507,11 @@ msgstr "شما مجوز لغو همه اسناد مرتبط را ندارید."
msgid "You don't have access to Report: {0}"
msgstr "شما به گزارش دسترسی ندارید: {0}"
-#: frappe/website/doctype/web_form/web_form.py:772
+#: frappe/website/doctype/web_form/web_form.py:769
msgid "You don't have permission to access the {0} DocType."
msgstr "شما اجازه دسترسی به {0} DocType را ندارید."
-#: frappe/utils/response.py:286 frappe/utils/response.py:290
+#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
msgstr "شما اجازه دسترسی به این فایل را ندارید"
@@ -29841,7 +29519,7 @@ msgstr "شما اجازه دسترسی به این فایل را ندارید"
msgid "You don't have permission to get a report on: {0}"
msgstr "شما مجوز دریافت گزارش در مورد: {0} را ندارید"
-#: frappe/website/doctype/web_form/web_form.py:175
+#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
msgstr "شما مجوز دسترسی به این سند را ندارید"
@@ -29894,23 +29572,23 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr "شما به دلیل درخواست های زیاد به سقف نرخ رسیده اید. لطفا دقایقی دیگر تلاش نمائید."
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
msgstr "شما آخرین بار این را ویرایش کردید"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:339
+#: 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:768
+#: frappe/website/doctype/web_form/web_form.py:765
msgid "You must be logged in to use this form."
msgstr "برای استفاده از این فرم باید وارد سیستم شوید."
-#: frappe/website/doctype/web_form/web_form.py:609
+#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
msgstr "برای ارسال این فرم باید وارد شوید"
-#: frappe/model/document.py:357
+#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr "برای انجام این عمل به مجوز \"{0}\" در {1} {2} نیاز دارید."
@@ -29926,11 +29604,11 @@ msgstr "برای ویرایش این سند باید مدیر محیط کار ب
msgid "You need to be a system user to access this page."
msgstr "برای دسترسی به این صفحه باید کاربر سیستم باشید."
-#: frappe/website/doctype/web_form/web_form.py:94
+#: 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:275
+#: frappe/utils/response.py:272
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "برای اینکه بتوانید به نسخههای پشتیبان دسترسی داشته باشید، باید وارد سیستم شوید و نقش مدیر سیستم را داشته باشید."
@@ -29938,7 +29616,7 @@ msgstr "برای اینکه بتوانید به نسخههای پشتیبان
msgid "You need to be logged in to access this page"
msgstr "برای دسترسی به این صفحه باید وارد شوید"
-#: frappe/website/doctype/web_form/web_form.py:164
+#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
msgstr "برای دسترسی به این {0} باید وارد سیستم شوید."
@@ -30013,7 +29691,7 @@ msgstr "شما این سند را لغو دنبال کردید"
msgid "You viewed this"
msgstr "شما این را مشاهده کردید"
-#: frappe/public/js/frappe/desk.js:543
+#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -30096,7 +29774,7 @@ msgstr "نام و آدرس سازمان شما برای پاورقی ایمیل.
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "پرسمان شما دریافت شد. ما به زودی پاسخ خواهیم داد. اگر اطلاعات بیشتری دارید، لطفا به این ایمیل پاسخ دهید."
-#: frappe/app.py:361
+#: frappe/app.py:354
msgid "Your session has expired, please login again to continue."
msgstr "نشست شما منقضی شده است، لطفا برای ادامه دوباره وارد شوید."
@@ -30327,7 +30005,7 @@ msgstr "ایمیل"
msgid "email inbox"
msgstr "صندوق ورودی ایمیل"
-#: frappe/permissions.py:403 frappe/permissions.py:414
+#: frappe/permissions.py:412 frappe/permissions.py:423
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "خالی"
@@ -30879,7 +30557,7 @@ msgstr "{0}: {1}"
msgid "{0} Calendar"
msgstr "{0} تقویم"
-#: frappe/public/js/frappe/views/reports/report_view.js:564
+#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
msgstr "{0} نمودار"
@@ -30927,7 +30605,7 @@ msgstr "{0} نقشه"
msgid "{0} Name"
msgstr "{0} نام"
-#: frappe/model/base_document.py:1149
+#: frappe/model/base_document.py:1154
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr "{0} مجاز به تغییر {1} پس از ارسال از {2} به {3} نیست"
@@ -30937,7 +30615,7 @@ msgstr "{0} مجاز به تغییر {1} پس از ارسال از {2} به {3}
msgid "{0} Report"
msgstr "گزارش {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:952
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
msgstr "{0} گزارش ها"
@@ -31003,7 +30681,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr "{0} پیوست {1}"
-#: frappe/core/doctype/system_settings/system_settings.py:149
+#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
msgstr "{0} نمیتواند بیشتر از {1} باشد"
@@ -31016,7 +30694,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} این سند را لغو کرد {1}"
-#: frappe/model/document.py:547
+#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -31141,7 +30819,7 @@ msgstr "{0} یک فیلد داده نامعتبر است."
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "{0} یک آدرس ایمیل نامعتبر در \"گیرندگان\" است"
-#: frappe/public/js/frappe/views/reports/report_view.js:1462
+#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
msgstr "{0} بین {1} و {2} است"
@@ -31150,27 +30828,27 @@ msgstr "{0} بین {1} و {2} است"
msgid "{0} is currently {1}"
msgstr "{0} در حال حاضر {1} است"
-#: frappe/public/js/frappe/views/reports/report_view.js:1431
+#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
msgstr "{0} برابر است با {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1451
+#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
msgstr "{0} بزرگتر یا مساوی با {1} است"
-#: frappe/public/js/frappe/views/reports/report_view.js:1441
+#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
msgstr "{0} بزرگتر از {1} است"
-#: frappe/public/js/frappe/views/reports/report_view.js:1456
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
msgstr "{0} کمتر یا مساوی با {1} است"
-#: frappe/public/js/frappe/views/reports/report_view.js:1446
+#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
msgstr "{0} کمتر از {1} است"
-#: frappe/public/js/frappe/views/reports/report_view.js:1481
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
msgstr "{0} مانند {1} است"
@@ -31190,7 +30868,7 @@ msgstr "{0} یک قالب چاپ خام نیست."
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr "{0} یک تقویم معتبر نیست. تغییر مسیر به تقویم پیشفرض"
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:64
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
msgstr "{0} یک عبارت Cron معتبر نیست."
@@ -31219,11 +30897,11 @@ msgstr "{0} یک شماره تلفن معتبر نیست"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} یک وضعیت گردش کار معتبر نیست. لطفاً گردش کار خود را به روز کنید و دوباره امتحان کنید."
-#: frappe/permissions.py:787
+#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} یک DocType والد معتبر برای {1} نیست"
-#: frappe/permissions.py:807
+#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} یک فیلد والد معتبر برای {1} نیست"
@@ -31235,27 +30913,27 @@ msgstr "{0} قالب گزارش معتبری نیست. قالب گزارش با
msgid "{0} is not a zip file"
msgstr "{0} یک فایل فشرده نیست"
-#: frappe/public/js/frappe/views/reports/report_view.js:1436
+#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
msgstr "{0} برابر با {1} نیست"
-#: frappe/public/js/frappe/views/reports/report_view.js:1483
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
msgstr "{0} مانند {1} نیست"
-#: frappe/public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
msgstr "{0} یکی از {1} نیست"
-#: frappe/public/js/frappe/views/reports/report_view.js:1487
+#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
msgstr "{0} تنظیم نشده است"
-#: frappe/printing/doctype/print_format/print_format.py:165
+#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} اکنون قالب چاپ پیشفرض برای {1} doctype است"
-#: frappe/public/js/frappe/views/reports/report_view.js:1470
+#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
msgstr "{0} یکی از {1} است"
@@ -31266,11 +30944,11 @@ msgstr "{0} یکی از {1} است"
msgid "{0} is required"
msgstr "{0} مورد نیاز است"
-#: frappe/public/js/frappe/views/reports/report_view.js:1486
+#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
msgstr "{0} تنظیم شده است"
-#: frappe/public/js/frappe/views/reports/report_view.js:1465
+#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
msgstr "{0} در محدوده {1} است"
@@ -31278,12 +30956,12 @@ msgstr "{0} در محدوده {1} است"
msgid "{0} items selected"
msgstr "{0} مورد انتخاب شد"
-#: frappe/core/doctype/user/user.py:1378
+#: frappe/core/doctype/user/user.py:1380
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} به عنوان شما جعل شده است. این دلیل را آوردند: {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:104
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
msgstr "{0} آخرین بار این را ویرایش کرد"
@@ -31299,7 +30977,7 @@ msgstr "{0} از سیستم خارج شد: {1}"
msgid "{0} m"
msgstr "{0} دقیقه"
-#: frappe/desk/notifications.py:397
+#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
msgstr "{0} از شما در نظری در {1} {2} نام برد"
@@ -31311,35 +30989,35 @@ msgstr "{0} دقیقه قبل"
msgid "{0} months ago"
msgstr "{0} ماه پیش"
-#: frappe/model/document.py:1792
+#: frappe/model/document.py:1791
msgid "{0} must be after {1}"
msgstr "{0} باید بعد از {1} باشد"
-#: frappe/model/document.py:1551
+#: frappe/model/document.py:1550
msgid "{0} must be beginning with '{1}'"
msgstr "{0} باید با '{1}' شروع شود"
-#: frappe/model/document.py:1553
+#: frappe/model/document.py:1552
msgid "{0} must be equal to '{1}'"
msgstr "{0} باید برابر با '{1}' باشد"
-#: frappe/model/document.py:1549
+#: frappe/model/document.py:1548
msgid "{0} must be none of {1}"
msgstr "{0} نباید هیچ یک از {1} باشد"
-#: frappe/model/document.py:1547 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} باید یکی از {1} باشد"
-#: frappe/model/base_document.py:875
+#: frappe/model/base_document.py:876
msgid "{0} must be set first"
msgstr "ابتدا باید {0} تنظیم شود"
-#: frappe/model/base_document.py:732
+#: frappe/model/base_document.py:729
msgid "{0} must be unique"
msgstr "{0} باید منحصر به فرد باشد"
-#: frappe/model/document.py:1555
+#: frappe/model/document.py:1554
msgid "{0} must be {1} {2}"
msgstr "{0} باید {1} {2} باشد"
@@ -31414,7 +31092,7 @@ msgstr "{0} تخصیص خود را حذف کرد."
msgid "{0} role does not have permission on any doctype"
msgstr "نقش {0} اجازه هیچ نوع doctype را ندارد"
-#: frappe/model/document.py:1785
+#: frappe/model/document.py:1784
msgid "{0} row #{1}: "
msgstr "{0} ردیف #{1}: "
@@ -31510,11 +31188,11 @@ msgstr "{0} {1} اضافه شد"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0} {1} به داشبورد اضافه شد {2}"
-#: frappe/model/base_document.py:665 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} از قبل وجود دارد"
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:987
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1} نمیتواند \"{2}\" باشد. باید یکی از \"{3}\" باشد"
@@ -31530,7 +31208,7 @@ msgstr "{0} {1} وجود ندارد، یک هدف جدید را برای ادغ
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} با اسناد ارسالی زیر پیوند داده شده است: {2}"
-#: frappe/model/document.py:260 frappe/permissions.py:558
+#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
msgstr "{0} {1} یافت نشد"
@@ -31538,7 +31216,7 @@ msgstr "{0} {1} یافت نشد"
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:1110
+#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
msgstr "{0}، ردیف {1}"
@@ -31546,7 +31224,7 @@ msgstr "{0}، ردیف {1}"
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1115
+#: frappe/model/base_document.py:1120
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}: «{1}» ({3}) کوتاه میشود، زیرا حداکثر کاراکتر مجاز {2} است."
@@ -31647,7 +31325,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:1279
+#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} در مقابل {2}"
diff --git a/frappe/locale/fr.po b/frappe/locale/fr.po
index 88bae3bafd..4f16dfb066 100644
--- a/frappe/locale/fr.po
+++ b/frappe/locale/fr.po
@@ -2,14 +2,14 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-08 09:34+0000\n"
-"PO-Revision-Date: 2025-06-16 15:29\n"
+"POT-Creation-Date: 2025-06-22 09:34+0000\n"
+"PO-Revision-Date: 2025-06-22 16:40\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: French\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.13.1\n"
+"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"
@@ -141,7 +141,7 @@ msgstr "1 jour"
msgid "1 Google Calendar Event synced."
msgstr "1 événement Google Agenda synchronisé."
-#: frappe/public/js/frappe/views/reports/query_report.js:951
+#: frappe/public/js/frappe/views/reports/query_report.js:953
msgid "1 Report"
msgstr ""
@@ -149,7 +149,7 @@ msgstr ""
msgid "1 comment"
msgstr "1 commentaire"
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:711
msgid "1 day ago"
msgstr "Il y a 1 jour"
@@ -158,17 +158,17 @@ msgid "1 hour"
msgstr "1 heure"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:709
msgid "1 hour ago"
msgstr "Il y a 1 heure"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:707
msgid "1 minute ago"
msgstr "Il y a 1 minute"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:715
msgid "1 month ago"
msgstr "Il y a 1 mois"
@@ -180,37 +180,37 @@ msgstr ""
msgid "1 record will be exported"
msgstr "1 enregistrement sera exporté"
-#: frappe/tests/test_utils.py:705
+#: frappe/tests/test_utils.py:706
msgid "1 second ago"
msgstr "Il y a 1 seconde"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:713
msgid "1 week ago"
msgstr "Il ya 1 semaine"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:717
msgid "1 year ago"
msgstr "Il y a 1 an"
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:710
msgid "2 hours ago"
msgstr "Il y a 2 heures"
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:716
msgid "2 months ago"
msgstr "Il y a 2 mois"
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:714
msgid "2 weeks ago"
msgstr "Il y a 2 semaines"
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:718
msgid "2 years ago"
msgstr "Il y a 2 ans"
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:708
msgid "3 minutes ago"
msgstr "Il y a 3 minutes"
@@ -226,7 +226,7 @@ msgstr "4 heures"
msgid "5 Records"
msgstr "5 enregistrements"
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:712
msgid "5 days ago"
msgstr ""
@@ -246,7 +246,7 @@ msgstr ""
msgid "<="
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:588
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
msgid "{0} is not a valid URL"
msgstr ""
@@ -757,10 +757,7 @@ msgid "API"
msgstr "API"
#. Label of the api_access (Section Break) field in DocType 'User'
-#. Label of the api_access_section (Section Break) field in DocType 'S3 Backup
-#. Settings'
#: frappe/core/doctype/user/user.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "API Access"
msgstr "Accès API"
@@ -872,17 +869,6 @@ msgstr "Il reste environ {0} secondes"
msgid "Access Control"
msgstr ""
-#. Label of the access_key_id (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key ID"
-msgstr "ID de Clé d'Accès"
-
-#. Label of the secret_access_key (Password) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key Secret"
-msgstr "Clé d'accès secrète"
-
#. Name of a DocType
#. Label of a Link in the Users Workspace
#: frappe/core/doctype/access_log/access_log.json
@@ -933,6 +919,10 @@ msgstr "Responsable de la comptabilité"
msgid "Accounts User"
msgstr "Comptable"
+#: 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'
@@ -963,7 +953,7 @@ msgstr "Action / Route"
msgid "Action Complete"
msgstr "Action terminée"
-#: frappe/model/document.py:1872
+#: frappe/model/document.py:1871
msgid "Action Failed"
msgstr "Échec de l'action"
@@ -1012,10 +1002,10 @@ msgstr "L'action {0} a échoué sur {1} {2}. Voir {3}"
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:192
-#: frappe/public/js/frappe/views/reports/query_report.js:205
-#: frappe/public/js/frappe/views/reports/query_report.js:215
-#: frappe/public/js/frappe/views/reports/query_report.js:845
+#: frappe/public/js/frappe/views/reports/query_report.js:190
+#: frappe/public/js/frappe/views/reports/query_report.js:203
+#: frappe/public/js/frappe/views/reports/query_report.js:213
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Actions"
msgstr "Actions"
@@ -1077,8 +1067,8 @@ msgstr "Historique d'activité"
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:267
-#: frappe/public/js/frappe/views/reports/query_report.js:295
+#: frappe/public/js/frappe/views/reports/query_report.js:265
+#: frappe/public/js/frappe/views/reports/query_report.js:293
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Ajouter"
@@ -1119,7 +1109,7 @@ msgstr "Ajouter une bordure en haut"
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:211
+#: frappe/public/js/frappe/views/reports/query_report.js:209
msgid "Add Chart to Dashboard"
msgstr "Ajouter un graphique au tableau de bord"
@@ -1128,10 +1118,10 @@ 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:1769
-#: frappe/public/js/frappe/views/reports/query_report.js:1772
-#: frappe/public/js/frappe/views/reports/report_view.js:349
-#: frappe/public/js/frappe/views/reports/report_view.js:374
+#: frappe/public/js/frappe/views/reports/query_report.js:1771
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/report_view.js:355
+#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
msgstr "Ajouter une Colonne"
@@ -1155,7 +1145,7 @@ msgid "Add Custom Tags"
msgstr "Ajouter des balises personnalisées"
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
-#: frappe/public/js/frappe/widgets/widget_dialog.js:703
+#: frappe/public/js/frappe/widgets/widget_dialog.js:716
msgid "Add Filters"
msgstr "Ajouter des filtres"
@@ -1190,7 +1180,7 @@ msgstr "Ajouter des participants"
msgid "Add Query Parameters"
msgstr "Ajouter des paramètres de requête"
-#: frappe/core/doctype/user/user.py:806
+#: frappe/core/doctype/user/user.py:808
msgid "Add Roles"
msgstr ""
@@ -1335,7 +1325,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:253
+#: frappe/public/js/frappe/views/reports/query_report.js:251
msgid "Add to Dashboard"
msgstr "Ajouter au tableau de bord"
@@ -1490,11 +1480,11 @@ msgstr "Administration"
msgid "Administrator"
msgstr "Administrateur"
-#: frappe/core/doctype/user/user.py:1211
+#: frappe/core/doctype/user/user.py:1213
msgid "Administrator Logged In"
msgstr "Administrateur Connecté"
-#: frappe/core/doctype/user/user.py:1205
+#: frappe/core/doctype/user/user.py:1207
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "L'administrateur a accedé à {0} sur {1} avec l'Adresse IP {2}."
@@ -1727,12 +1717,6 @@ msgstr "Autoriser l'édition en masse"
msgid "Allow Consecutive Login Attempts "
msgstr "Autoriser des tentatives de connexion consécutives"
-#. Label of the allow_dropbox_access (Button) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Allow Dropbox Access"
-msgstr "Autoriser l'Accès à Dropbox"
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
msgid "Allow Google Calendar Access"
msgstr "Autoriser l'accès à Google Agenda"
@@ -1741,10 +1725,6 @@ msgstr "Autoriser l'accès à Google Agenda"
msgid "Allow Google Contacts Access"
msgstr "Autoriser l'accès aux contacts Google"
-#: frappe/integrations/doctype/google_drive/google_drive.py:52
-msgid "Allow Google Drive Access"
-msgstr "Autoriser l'accès à Google Drive"
-
#. Label of the allow_guest (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
@@ -1999,7 +1979,7 @@ msgstr ""
msgid "Allowing DocType, DocType. Be careful!"
msgstr "Autorisation de DocType, DocType. Soyez prudent !"
-#: frappe/core/doctype/user/user.py:1021
+#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr "Déjà Inscrit"
@@ -2007,11 +1987,11 @@ msgstr "Déjà Inscrit"
msgid "Already in the following Users ToDo list:{0}"
msgstr "Déjà dans la liste des tâches des utilisateurs suivante: {0}"
-#: frappe/public/js/frappe/views/reports/report_view.js:896
+#: frappe/public/js/frappe/views/reports/report_view.js:902
msgid "Also adding the dependent currency field {0}"
msgstr "Ajout également du champ de devise dépendante {0}"
-#: frappe/public/js/frappe/views/reports/report_view.js:909
+#: frappe/public/js/frappe/views/reports/report_view.js:915
msgid "Also adding the status dependency field {0}"
msgstr "Ajout également du champ de dépendance de statut {0}"
@@ -2090,7 +2070,7 @@ msgstr "Nouv. version en cours"
msgid "Amendment Naming Override"
msgstr "Surcharge de nommage de l'amendement"
-#: frappe/model/document.py:550
+#: frappe/model/document.py:549
msgid "Amendment Not Allowed"
msgstr ""
@@ -2179,15 +2159,6 @@ msgstr ""
msgid "App"
msgstr "Application"
-#. Label of the app_access_key (Data) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Access Key"
-msgstr "Clé d'Accès de l'App"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:22
-msgid "App Access Key and/or Secret Key are not present."
-msgstr "La clé d'accès de l'application et/ou la clé secrète ne sont pas présentes."
-
#. Label of the client_id (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client ID"
@@ -2221,16 +2192,11 @@ msgstr "Logo de l'application"
msgid "App Name"
msgstr "Nom de l'App"
-#. Label of the app_secret_key (Password) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Secret Key"
-msgstr "Clé Secrète de l'App"
-
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr "Application introuvable pour le module : {0}"
-#: frappe/__init__.py:1462
+#: frappe/__init__.py:1465
msgid "App {0} is not installed"
msgstr "App {0} n'est pas installée"
@@ -2380,7 +2346,7 @@ msgstr "Colonnes Archivées"
msgid "Are you sure you want to clear the assignments?"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:290
+#: frappe/public/js/frappe/form/grid.js:294
msgid "Are you sure you want to delete all rows?"
msgstr "Voulez-vous vraiment supprimer toutes les lignes?"
@@ -2408,7 +2374,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:965
+#: frappe/public/js/frappe/views/reports/query_report.js:967
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2534,7 +2500,7 @@ msgstr "Attribué Par"
msgid "Assigned By Full Name"
msgstr "Assigné Par Nom complet"
-#: frappe/model/meta.py:60
+#: 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
@@ -2804,13 +2770,11 @@ msgstr "Auteur"
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
#. Contacts'
-#. Label of the authorization_code (Data) field in DocType 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
@@ -2848,12 +2812,6 @@ msgstr "Autoriser l'accès à Google Agenda"
msgid "Authorize Google Contacts Access"
msgstr "Autoriser l'accès à Google Contacts"
-#. Label of the authorize_google_drive_access (Button) field in DocType 'Google
-#. Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Authorize Google Drive Access"
-msgstr "Autoriser l'accès à Google Drive"
-
#. 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"
@@ -3000,11 +2958,11 @@ msgstr "Message automatique"
msgid "Automatic"
msgstr "Automatique"
-#: frappe/email/doctype/email_account/email_account.py:774
+#: frappe/email/doctype/email_account/email_account.py:772
msgid "Automatic Linking can be activated only for one Email Account."
msgstr "La liaison automatique ne peut être activée que pour un seul compte de messagerie."
-#: frappe/email/doctype/email_account/email_account.py:768
+#: frappe/email/doctype/email_account/email_account.py:766
msgid "Automatic Linking can be activated only if Incoming is enabled."
msgstr "La liaison automatique ne peut être activée que si l'option Entrant est activée."
@@ -3218,66 +3176,14 @@ msgstr "Impression en tache d'arrière-plan (obligatoire pour > 25 documents)"
msgid "Background Workers"
msgstr "Exécution d'Opérations en Arrière-Plan"
-#: frappe/integrations/doctype/google_drive/google_drive.py:170
-msgid "Backing up Data."
-msgstr "Sauvegarde des données."
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:32
-msgid "Backing up to Google Drive."
-msgstr "Sauvegarde sur Google Drive."
-
-#. Label of a Card Break in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Backup"
-msgstr "Sauvegarde"
-
-#. Label of the backup_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Details"
-msgstr "Détails de la sauvegarde"
-
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
msgstr "Clé de chiffrement de sauvegarde"
-#. Label of the backup_files (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Files"
-msgstr "Fichiers de sauvegarde"
-
-#. Label of the backup_folder_id (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder ID"
-msgstr "ID du dossier de sauvegarde"
-
-#. Label of the backup_folder_name (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder Name"
-msgstr "Nom du dossier de sauvegarde"
-
-#. Label of the backup_frequency (Select) field in DocType 'Dropbox Settings'
-#. Label of the frequency (Select) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Frequency"
-msgstr "Fréquence de Sauvegarde"
-
-#. Label of the backup_path (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Path"
-msgstr "Chemin de sauvegarde"
-
#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
msgstr "La sauvegarde est déjà mise en file d'attente. Vous recevrez un email avec le lien de téléchargement"
-#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup public and private files along with the database."
-msgstr "Sauvegardez les fichiers publics et privés avec la base de données."
-
#. 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'
@@ -3291,7 +3197,7 @@ msgstr "Sauvegardes"
msgid "Backups (MB)"
msgstr "Sauvegardes (MB)"
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:65
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
msgid "Bad Cron Expression"
msgstr "Expression cron incorrecte"
@@ -3688,15 +3594,6 @@ msgstr "Navigateur non pris en charge"
msgid "Brute Force Security"
msgstr "Sécurité contre les attaques de type \"force brute\""
-#. Label of the bucket (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Bucket Name"
-msgstr "Nom du bucket"
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:71
-msgid "Bucket {0} not found."
-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"
@@ -3733,7 +3630,7 @@ msgstr "Suppression en masse"
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1184
+#: frappe/public/js/frappe/form/grid.js:1188
msgid "Bulk Edit {0}"
msgstr "Modifier en Masse {0}"
@@ -3808,12 +3705,6 @@ msgstr ""
msgid "By default the title is used as meta title, adding a value here will override it."
msgstr "Par défaut, le titre est utilisé comme méta-titre, l'ajout d'une valeur ici la remplacera."
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "By default, emails are only sent for failed backups."
-msgstr ""
-
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
@@ -4124,7 +4015,7 @@ msgstr ""
msgid "Cannot Remove"
msgstr "Ne peut être retiré"
-#: frappe/model/base_document.py:1156
+#: frappe/model/base_document.py:1161
msgid "Cannot Update After Submit"
msgstr ""
@@ -4144,11 +4035,11 @@ msgstr "Impossible d'annuler avant de valider. Voir Transition {0}"
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1012
+#: frappe/model/document.py:1011
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1026
+#: frappe/model/document.py:1025
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -4231,7 +4122,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "Modification du rapport standard impossible. Veuillez le dupliquer et créer un nouveau rapport"
-#: frappe/model/document.py:1032
+#: frappe/model/document.py:1031
msgid "Cannot edit cancelled document"
msgstr "Impossible de modifier un document annulé"
@@ -4264,11 +4155,11 @@ 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:1128
+#: frappe/public/js/frappe/form/grid.js:1132
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1100
+#: frappe/model/document.py:1099
msgid "Cannot link cancelled document: {0}"
msgstr "Impossible de lier le document annulé : {0}"
@@ -4284,7 +4175,7 @@ msgstr "Impossible de faire correspondre la colonne {0} avec un champ"
msgid "Cannot move row"
msgstr "Impossible de déplacer la ligne"
-#: frappe/public/js/frappe/views/reports/report_view.js:921
+#: frappe/public/js/frappe/views/reports/report_view.js:927
msgid "Cannot remove ID field"
msgstr "Impossible de supprimer le champ ID"
@@ -4309,11 +4200,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr "Impossible de mettre à jour {0}"
-#: frappe/model/db_query.py:1125
+#: frappe/model/db_query.py:1126
msgid "Cannot use sub-query in order by"
msgstr "Impossible d'utiliser la sous-requête dans l'ordre demandé"
-#: frappe/model/db_query.py:1144
+#: frappe/model/db_query.py:1145
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4339,7 +4230,7 @@ msgstr "Carte"
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:261
msgid "Card Label"
msgstr "Étiquette de la carte"
@@ -4482,7 +4373,7 @@ msgstr "Configuration du graphique"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:290
+#: frappe/public/js/frappe/views/reports/query_report.js:288
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Nom du graphique"
@@ -4502,7 +4393,7 @@ msgstr "Source graphique"
#. 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:499
+#: frappe/public/js/frappe/views/reports/report_view.js:505
msgid "Chart Type"
msgstr "Type de graphique"
@@ -4616,7 +4507,7 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Les tables enfants sont affichées sous forme de grille dans d'autres DocTypes"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:638
+#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "Choisissez une carte existante ou créez une nouvelle carte"
@@ -4709,10 +4600,6 @@ msgstr "Cliquez ici"
msgid "Click here to verify"
msgstr "Cliquez ici pour vérifier"
-#: frappe/integrations/doctype/google_drive/google_drive.js:47
-msgid "Click on Authorize Google Drive Access to authorize Google Drive Access."
-msgstr "Cliquez sur Autoriser l'accès à Google Drive pour autoriser l' accès à Google Drive."
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4739,7 +4626,6 @@ msgstr "Cliquez sur le lien ci-dessous pour vérifier votre demande."
#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
-#: frappe/integrations/doctype/google_drive/google_drive.py:53
#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
msgstr "Cliquez sur {0} pour générer le jeton d'actualisation."
@@ -4913,7 +4799,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Réduire"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Tout réduire"
@@ -4968,9 +4854,9 @@ 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:1229
-#: frappe/public/js/frappe/widgets/widget_dialog.js:533
-#: frappe/public/js/frappe/widgets/widget_dialog.js:681
+#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: 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
@@ -5111,7 +4997,7 @@ msgstr ""
msgid "Comment publicity can only be updated by the original author or a System Manager."
msgstr ""
-#: frappe/model/meta.py:59 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/model/meta.js:209
#: frappe/public/js/frappe/model/model.js:135
#: frappe/website/doctype/web_form/templates/web_form.html:122
@@ -5218,7 +5104,7 @@ msgstr "Terminé"
msgid "Complete By"
msgstr "Terminé par"
-#: frappe/core/doctype/user/user.py:477
+#: frappe/core/doctype/user/user.py:478
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Terminer l'Inscription"
@@ -5314,7 +5200,7 @@ msgstr ""
msgid "Configuration"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:481
+#: frappe/public/js/frappe/views/reports/report_view.js:487
msgid "Configure Chart"
msgstr "Configurer le graphique"
@@ -5653,7 +5539,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr "Impossible de se connecter au serveur de messagerie sortant"
-#: frappe/model/document.py:1096
+#: frappe/model/document.py:1095
msgid "Could not find {0}"
msgstr "Impossible de trouver {0}"
@@ -5682,7 +5568,7 @@ msgstr "Impossible d'enregistrer, veuillez vérifier les données que vous a
msgid "Count"
msgstr "Compter"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:527
+#: frappe/public/js/frappe/widgets/widget_dialog.js:540
msgid "Count Customizations"
msgstr "Comptage des personnalisations"
@@ -5690,10 +5576,14 @@ msgstr "Comptage des personnalisations"
#. 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:512
+#: frappe/public/js/frappe/widgets/widget_dialog.js:525
msgid "Count Filter"
msgstr "Filtre de comptage"
+#: 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"
@@ -5744,7 +5634,7 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1261
+#: frappe/public/js/frappe/views/reports/query_report.js:1263
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5758,13 +5648,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:188
-#: frappe/public/js/frappe/views/reports/query_report.js:233
+#: frappe/public/js/frappe/views/reports/query_report.js:186
+#: frappe/public/js/frappe/views/reports/query_report.js:231
msgid "Create Card"
msgstr "Créer une carte"
-#: frappe/public/js/frappe/views/reports/query_report.js:286
-#: frappe/public/js/frappe/views/reports/query_report.js:1188
+#: frappe/public/js/frappe/views/reports/query_report.js:284
+#: frappe/public/js/frappe/views/reports/query_report.js:1190
msgid "Create Chart"
msgstr "Créer un graphique"
@@ -5875,7 +5765,7 @@ msgstr "Créé"
msgid "Created At"
msgstr ""
-#: frappe/model/meta.py:56
+#: 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
@@ -5887,14 +5777,14 @@ msgid "Created Custom Field {0} in {1}"
msgstr "Crée un Champ Personnalisé {0} dans {1}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241
-#: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:51
+#: 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 "Créé Le"
-#: frappe/public/js/frappe/desk.js:515
+#: frappe/public/js/frappe/desk.js:523
#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
msgstr "Création de {0}"
@@ -5917,7 +5807,7 @@ msgstr "Cron"
msgid "Cron Format"
msgstr "Format Cron"
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:59
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
msgstr "Le format Cron est requis pour les types de tâches avec fréquence Cron."
@@ -6314,11 +6204,6 @@ msgstr "BROUILLON"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -6327,9 +6212,6 @@ msgstr "BROUILLON"
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:398
#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
@@ -6883,7 +6765,7 @@ msgstr "Différé"
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/toolbar.js:461
-#: frappe/public/js/frappe/views/reports/report_view.js:1734
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
@@ -6926,7 +6808,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:932
+#: frappe/public/js/frappe/views/reports/query_report.js:934
msgid "Delete and Generate New"
msgstr ""
@@ -6935,7 +6817,7 @@ msgctxt "Button text"
msgid "Delete column"
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:738
+#: frappe/public/js/frappe/form/footer/form_timeline.js:741
msgid "Delete comment?"
msgstr "Supprimer le commentaire ?"
@@ -7021,7 +6903,7 @@ msgstr "Suppression de {0}"
msgid "Deleting {0} records..."
msgstr ""
-#: frappe/public/js/frappe/model/model.js:741
+#: frappe/public/js/frappe/model/model.js:692
msgid "Deleting {0}..."
msgstr ""
@@ -7067,7 +6949,7 @@ msgstr "Département"
#. 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:310
+#: frappe/public/js/frappe/widgets/widget_dialog.js:323
#: frappe/www/attribution.html:29
msgid "Dependencies"
msgstr ""
@@ -7181,6 +7063,7 @@ msgstr ""
#: 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
@@ -7478,14 +7361,10 @@ 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:1189
+#: frappe/public/js/frappe/form/grid.js:1193
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/integrations/doctype/s3_backup_settings/s3_backup_settings.py:69
-msgid "Do not have permission to access bucket {0}."
-msgstr ""
-
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
@@ -7618,7 +7497,7 @@ 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:466
+#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
msgstr "Vue DocType"
@@ -7678,7 +7557,7 @@ 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:669
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
msgid "Doctype"
msgstr ""
@@ -7796,7 +7675,7 @@ msgstr "Condition de règle de dénomination de document"
msgid "Document Naming Settings"
msgstr "Masque de numérotation des documents"
-#: frappe/model/document.py:477
+#: frappe/model/document.py:476
msgid "Document Queued"
msgstr "Document en Attente"
@@ -7849,7 +7728,7 @@ msgstr "Rapport de Partage de Document"
msgid "Document States"
msgstr "États du Document"
-#: frappe/model/meta.py:52 frappe/public/js/frappe/model/meta.js:202
+#: 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 "Statut du document"
@@ -7920,11 +7799,11 @@ msgstr "Type de Document"
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: frappe/permissions.py:148
+#: frappe/permissions.py:149
msgid "Document Type is not importable"
msgstr "Le type de document n'est pas importable"
-#: frappe/permissions.py:144
+#: frappe/permissions.py:145
msgid "Document Type is not submittable"
msgstr "Le type de document n'est pas valider"
@@ -7953,7 +7832,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1943
+#: frappe/model/document.py:1942
msgid "Document Unlocked"
msgstr ""
@@ -8144,7 +8023,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:835
+#: frappe/public/js/frappe/views/reports/query_report.js:830
msgid "Download Report"
msgstr "Télécharger le rapport"
@@ -8155,7 +8034,7 @@ msgstr "Télécharger le Modèle"
#: 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:57
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
msgid "Download Your Data"
msgstr "Téléchargez vos données"
@@ -8211,29 +8090,6 @@ msgstr ""
msgid "Drop files here"
msgstr ""
-#. Label of the dropbox_access_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Access Token"
-msgstr "Jeton d'Accès Dropbox"
-
-#. Label of the dropbox_refresh_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Refresh Token"
-msgstr ""
-
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Dropbox Settings"
-msgstr "Paramètres Dropbox"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:347
-msgid "Dropbox Setup"
-msgstr "Paramétrage Dropbox"
-
#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
@@ -8263,7 +8119,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr "Nom du filtre en double"
-#: frappe/model/base_document.py:666 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Nom en double"
@@ -8362,13 +8218,13 @@ msgstr ""
#: 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:668
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:669
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:883
-#: frappe/public/js/frappe/views/reports/query_report.js:1722
+#: frappe/public/js/frappe/views/reports/query_report.js:878
+#: frappe/public/js/frappe/views/reports/query_report.js:1724
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8531,7 +8387,7 @@ msgstr ""
msgid "Edit your workflow visually using the Workflow Builder."
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:672
+#: frappe/public/js/frappe/views/reports/report_view.js:678
#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
msgstr "Modifier {0}"
@@ -8632,7 +8488,7 @@ msgstr ""
msgid "Email Account Name"
msgstr "Nom du Compte Email"
-#: frappe/core/doctype/user/user.py:736
+#: frappe/core/doctype/user/user.py:738
msgid "Email Account added multiple times"
msgstr "Compte Email ajouté plusieurs fois"
@@ -8640,7 +8496,7 @@ msgstr "Compte Email ajouté plusieurs fois"
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:578
+#: frappe/email/doctype/email_account/email_account.py:576
msgid "Email Account {0} Disabled"
msgstr ""
@@ -8866,7 +8722,7 @@ msgstr ""
msgid "Emails Pulled"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:936
+#: frappe/email/doctype/email_account/email_account.py:934
msgid "Emails are already being pulled from this account."
msgstr ""
@@ -8889,11 +8745,9 @@ 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 Drive'
#. 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_drive/google_drive.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
msgstr "Activer"
@@ -8913,11 +8767,6 @@ msgstr "Activez Autoriser la répétition automatique pour le type de document {
msgid "Enable Auto Reply"
msgstr "Activer la Réponse Automatique"
-#. Label of the enabled (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Enable Automatic Backup"
-msgstr "Activer la sauvegarde automatique"
-
#. Label of the enable_automatic_linking (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -9076,7 +8925,6 @@ msgstr ""
#. 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 'Dropbox Settings'
#. 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'
@@ -9087,7 +8935,6 @@ msgstr ""
#: 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/dropbox_settings/dropbox_settings.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/public/js/frappe/model/indicator.js:106
@@ -9100,7 +8947,7 @@ msgstr "Activé"
msgid "Enabled Scheduler"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:1012
+#: frappe/email/doctype/email_account/email_account.py:1010
msgid "Enabled email inbox for user {0}"
msgstr "Activé la boîte de réception électronique pour l'utilisateur {0}"
@@ -9181,11 +9028,6 @@ msgstr "La date de fin ne peut pas être antérieure à la date de début!"
msgid "Ended At"
msgstr ""
-#. Label of the endpoint_url (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Endpoint URL"
-msgstr "URL du noeud final"
-
#. Label of the sb_endpoints_section (Section Break) field in DocType
#. 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -9364,7 +9206,7 @@ msgstr "Erreur dans la notification"
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:672
+#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "Erreur lors de la connexion au compte Email {0}"
@@ -9372,15 +9214,15 @@ msgstr "Erreur lors de la connexion au compte Email {0}"
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:806
+#: frappe/model/base_document.py:803
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:816
+#: frappe/model/base_document.py:813
msgid "Error: Value missing for {0}: {1}"
msgstr "Erreur: Valeur absente pour {0}: {1}"
-#: frappe/model/base_document.py:810
+#: frappe/model/base_document.py:807
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9529,7 +9371,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2069
+#: frappe/public/js/frappe/views/reports/query_report.js:2071
msgid "Execution Time: {0} sec"
msgstr "Temps d'exécution: {0} s"
@@ -9555,7 +9397,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Développer"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Développer Tout"
@@ -9612,8 +9454,8 @@ 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:1757
-#: frappe/public/js/frappe/views/reports/report_view.js:1621
+#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Exporter"
@@ -9664,11 +9506,11 @@ msgstr "Rapport d'Export: {0}"
msgid "Export Type"
msgstr "Type d'Exportation"
-#: frappe/public/js/frappe/views/reports/report_view.js:1632
+#: frappe/public/js/frappe/views/reports/report_view.js:1638
msgid "Export all matching rows?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1642
+#: frappe/public/js/frappe/views/reports/report_view.js:1648
msgid "Export all {0} rows?"
msgstr ""
@@ -9976,8 +9818,8 @@ msgstr "Récupération des documents de recherche globale par défaut."
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:237
-#: frappe/public/js/frappe/views/reports/query_report.js:1816
+#: frappe/public/js/frappe/views/reports/query_report.js:235
+#: frappe/public/js/frappe/views/reports/query_report.js:1818
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10052,7 +9894,7 @@ msgstr "Le type de champ ne peut pas être modifié pour {0}"
msgid "Field {0} does not exist on {1}"
msgstr ""
-#: frappe/desk/form/meta.py:208
+#: frappe/desk/form/meta.py:184
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
@@ -10155,7 +9997,7 @@ msgstr "Champs à choix multiples"
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
-#: frappe/model/db_query.py:144
+#: frappe/model/db_query.py:146
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
@@ -10204,13 +10046,6 @@ msgstr ""
msgid "File '{0}' not found"
msgstr "Fichier '{0}' introuvable"
-#. Label of the file_backup (Check) field in DocType 'Dropbox Settings'
-#. Label of the file_backup (Check) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "File Backup"
-msgstr "Sauvegarde de fichier"
-
#. Label of the private_file_section (Section Break) field in DocType 'Access
#. Log'
#: frappe/core/doctype/access_log/access_log.json
@@ -10411,7 +10246,7 @@ msgstr "Les filtres seront accessibles via des filters .
En
msgid "Filters {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1421
+#: frappe/public/js/frappe/views/reports/report_view.js:1427
msgid "Filters:"
msgstr ""
@@ -10558,7 +10393,7 @@ msgstr ""
msgid "Following document {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:111
+#: frappe/website/doctype/web_form/web_form.py:108
msgid "Following fields are missing:"
msgstr "Les champs suivants sont manquants :"
@@ -10566,7 +10401,7 @@ msgstr "Les champs suivants sont manquants :"
msgid "Following fields have invalid values:"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:345
+#: frappe/public/js/frappe/widgets/widget_dialog.js:358
msgid "Following fields have missing values"
msgstr ""
@@ -10709,7 +10544,7 @@ msgstr ""
msgid "For Document Type"
msgstr "Pour le type de document"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:553
+#: frappe/public/js/frappe/widgets/widget_dialog.js:566
msgid "For Example: {} Open"
msgstr "Par exemple: {} Ouvrir"
@@ -10738,7 +10573,7 @@ msgstr "Pour l\\'Utilisateur"
msgid "For Value"
msgstr "Pour la Valeur"
-#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/query_report.js:2068
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Pour comparaison, utilisez> 5, <10 ou = 324. Pour les plages, utilisez 5:10 (pour les valeurs comprises entre 5 et 10)."
@@ -10891,7 +10726,7 @@ msgstr "Formulaire encodé en URL"
#. 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:552
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
msgid "Format"
msgstr ""
@@ -10923,7 +10758,7 @@ msgstr "Fractions d’Unités"
#. 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:149
+#: frappe/www/login.py:153
msgid "Frappe"
msgstr ""
@@ -10940,7 +10775,7 @@ msgstr ""
msgid "Frappe Mail"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:549
+#: frappe/email/doctype/email_account/email_account.py:547
msgid "Frappe Mail OAuth Error"
msgstr ""
@@ -10968,13 +10803,11 @@ msgstr ""
#. 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'
-#. Label of the frequency (Select) field in DocType 'Google Drive'
#: 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/integrations/doctype/google_drive/google_drive.json
#: frappe/public/js/frappe/utils/common.js:395
msgid "Frequency"
msgstr "Fréquence"
@@ -11020,7 +10853,7 @@ msgstr "A partir du"
msgid "From Date Field"
msgstr "Champ date"
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
+#: frappe/public/js/frappe/views/reports/query_report.js:1779
msgid "From Document Type"
msgstr "De type de document"
@@ -11071,16 +10904,16 @@ msgstr "Pleine largeur"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:247
-#: frappe/public/js/frappe/widgets/widget_dialog.js:686
+#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Une fonction"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:693
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
msgstr "Fonction basée sur"
-#: frappe/__init__.py:670
+#: frappe/__init__.py:677
msgid "Function {0} is not whitelisted."
msgstr ""
@@ -11145,7 +10978,7 @@ msgstr "Général"
msgid "Generate Keys"
msgstr "Générer des clés"
-#: frappe/public/js/frappe/views/reports/query_report.js:877
+#: frappe/public/js/frappe/views/reports/query_report.js:872
msgid "Generate New Report"
msgstr "Générer un nouveau rapport"
@@ -11433,32 +11266,12 @@ msgstr "Google Contacts - Impossible de mettre à jour le contact dans Google Co
msgid "Google Contacts Id"
msgstr "Identifiant Google Contacts"
-#. Name of a DocType
-#. Label of the google_drive_section (Section Break) field in DocType 'Google
-#. Drive'
#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/google_drive/google_drive.json
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:117
-msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}"
-msgstr "Google Drive - Impossible de créer un dossier dans Google Drive - Code d'erreur {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:132
-msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}"
-msgstr "Google Drive - Dossier introuvable dans Google Drive - Code d'erreur {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:193
-msgid "Google Drive - Could not locate - {0}"
-msgstr "Google Drive - Impossible de localiser - {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:204
-msgid "Google Drive Backup Successful."
-msgstr "Sauvegarde de Google Drive réussie."
-
#. Label of the section_break_7 (Section Break) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -11788,6 +11601,10 @@ msgstr ""
msgid "Headers"
msgstr "En-Têtes"
+#: 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'
@@ -12111,17 +11928,17 @@ msgstr "Page d’Accueil"
msgid "Home Settings"
msgstr "Paramètres d'accueil"
-#: frappe/core/doctype/file/test_file.py:330
-#: frappe/core/doctype/file/test_file.py:332
-#: frappe/core/doctype/file/test_file.py:396
+#: 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 "Accueil / Dossier Test 1"
-#: frappe/core/doctype/file/test_file.py:385
+#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
msgstr "Accueil / Dossier Test 1 / Dossier Test 3"
-#: frappe/core/doctype/file/test_file.py:341
+#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
msgstr "Accueil / Dossier Test 2"
@@ -12166,7 +11983,7 @@ msgstr ""
#: frappe/core/doctype/data_import/importer.py:1177
#: frappe/core/doctype/data_import/importer.py:1242
#: frappe/core/doctype/data_import/importer.py:1245
-#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:50
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
#: frappe/public/js/frappe/list/list_settings.js:337
@@ -12178,7 +11995,7 @@ msgid "ID"
msgstr ""
#: frappe/desk/reportview.py:491
-#: frappe/public/js/frappe/views/reports/report_view.js:978
+#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
msgstr ""
@@ -12362,12 +12179,6 @@ msgstr "Si cette option est activée, les utilisateurs qui se connectent à part
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
msgstr "Si activé, les utilisateurs seront informés chaque fois qu'ils se connectent. Si ce n'est pas activé, les utilisateurs ne seront informés qu'une seule fois."
-#. Description of the 'Backup Path' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "If it's empty, it will backup to the root of the bucket."
-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"
@@ -12498,16 +12309,12 @@ msgstr "Ignorer les pièces jointes supérieures à cette taille"
msgid "Ignored Apps"
msgstr "Applications ignorées"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:348
-msgid "Illegal Access Token. Please try again"
-msgstr "Jeton d'Accès Invalide. Veuillez réessayer"
-
#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
msgstr "Statut de document non autorisé pour {0}"
-#: frappe/model/db_query.py:451 frappe/model/db_query.py:454
-#: frappe/model/db_query.py:1128
+#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
+#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
msgstr "Requête SQL illégale"
@@ -12856,11 +12663,11 @@ msgstr "Inclure le thème des applications"
msgid "Include Web View Link in Email"
msgstr "Envoyer le lien de la vue Web du document par e-mail"
-#: frappe/public/js/frappe/views/reports/query_report.js:1592
+#: frappe/public/js/frappe/views/reports/query_report.js:1594
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1584
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Include indentation"
msgstr "Inclure l'indentation"
@@ -12927,11 +12734,11 @@ msgstr "Utilisateur ou mot de passe incorrect"
msgid "Incorrect Verification code"
msgstr "Code de Vérification incorrect"
-#: frappe/model/document.py:1542
+#: frappe/model/document.py:1541
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1544
+#: frappe/model/document.py:1543
msgid "Incorrect value:"
msgstr ""
@@ -12940,10 +12747,10 @@ msgstr ""
#. 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:53
+#: 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:999
+#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
msgstr ""
@@ -13018,7 +12825,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:1822
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
msgid "Insert After"
msgstr "Insérer Après"
@@ -13034,7 +12841,7 @@ msgstr "Insérer Après le champ '{0}' mentionné dans un Champ Personnalisé '{
msgid "Insert Below"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:384
+#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
msgstr "Insérer une colonne avant {0}"
@@ -13083,11 +12890,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:818
+#: frappe/permissions.py:827
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:376
+#: frappe/database/query.py:383
msgid "Insufficient Permission for {0}"
msgstr "Autorisation Insuffisante Pour {0}"
@@ -13205,7 +13012,7 @@ msgstr "Invalide"
#: frappe/public/js/form_builder/utils.js:221
#: frappe/public/js/frappe/form/grid_row.js:833
#: frappe/public/js/frappe/form/layout.js:811
-#: frappe/public/js/frappe/views/reports/report_view.js:710
+#: frappe/public/js/frappe/views/reports/report_view.js:716
msgid "Invalid \"depends_on\" expression"
msgstr "Expression \"depends_on\" non valide"
@@ -13245,7 +13052,7 @@ msgstr "Date invalide"
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:102
+#: frappe/database/query.py:103
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13290,6 +13097,7 @@ 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 ""
@@ -13314,7 +13122,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1226 frappe/www/update-password.html:123
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
#: frappe/www/update-password.html:247
msgid "Invalid Password"
@@ -13343,7 +13151,7 @@ msgstr ""
#: frappe/core/doctype/file/file.py:220
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
-#: frappe/public/js/frappe/widgets/widget_dialog.js:589
+#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
msgstr "URL invalide"
@@ -13364,11 +13172,11 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:393
+#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "Colonne incorrecte"
-#: frappe/model/document.py:1015 frappe/model/document.py:1029
+#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13392,7 +13200,7 @@ msgstr "Champ invalide '{0}' dans nom automatique"
msgid "Invalid file path: {0}"
msgstr "Chemin de fichier invalide : {0}"
-#: frappe/database/query.py:182
+#: frappe/database/query.py:189
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "Filtre non valide: {0}"
@@ -13418,7 +13226,7 @@ msgstr "Contenu non valide ou corrompu pour l'importation"
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:324
+#: frappe/app.py:317
msgid "Invalid request arguments"
msgstr ""
@@ -13602,7 +13410,7 @@ msgstr "Le Champ Publié doit-il être un nom de champ valide"
#. 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:328
+#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
msgstr ""
@@ -13817,6 +13625,10 @@ msgstr ""
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 ""
@@ -13848,7 +13660,7 @@ msgstr ""
#. 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:498
+#: frappe/public/js/frappe/widgets/widget_dialog.js:511
msgid "Kanban Board"
msgstr "Tableau Kanban"
@@ -14120,10 +13932,10 @@ msgstr ""
#: 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:300
-#: frappe/public/js/frappe/widgets/widget_dialog.js:453
-#: frappe/public/js/frappe/widgets/widget_dialog.js:630
-#: frappe/public/js/frappe/widgets/widget_dialog.js:663
+#: 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
@@ -14208,11 +14020,6 @@ msgstr ""
msgid "Last Active"
msgstr "Dernière Activité"
-#. Label of the last_backup_on (Datetime) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Last Backup On"
-msgstr "Dernière sauvegarde activée"
-
#. 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"
@@ -14297,12 +14104,12 @@ msgstr ""
msgid "Last Synced On"
msgstr "Dernière synchronisation sur"
-#: frappe/model/meta.py:55 frappe/public/js/frappe/model/meta.js:205
+#: 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 "Dernière Mise à Jour Par"
-#: frappe/model/meta.py:54 frappe/public/js/frappe/model/meta.js:204
+#: 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 "Dernière Mise à Jour"
@@ -14346,7 +14153,7 @@ msgid "Leave blank to repeat always"
msgstr "Laissez vide pour répéter sans fin"
#: frappe/core/doctype/communication/mixins.py:207
-#: frappe/email/doctype/email_account/email_account.py:722
+#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
msgstr "Se désinscrire"
@@ -14565,7 +14372,7 @@ msgstr ""
msgid "Liked"
msgstr "Aimé"
-#: frappe/model/meta.py:58 frappe/public/js/frappe/model/meta.js:208
+#: 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 "Aimé par"
@@ -14580,11 +14387,6 @@ msgstr "Aime"
msgid "Limit"
msgstr "Limite"
-#. Label of the limit_no_of_backups (Check) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Limit Number of DB Backups"
-msgstr "Nombre limite de sauvegardes de base de données"
-
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14699,11 +14501,11 @@ msgstr "Titre du Lien"
#: 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:414
+#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
msgstr "Lié à"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:350
+#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
msgstr ""
@@ -14716,7 +14518,7 @@ msgstr ""
msgid "Link Type"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:346
+#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
msgstr ""
@@ -14868,7 +14670,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1085
+#: frappe/public/js/frappe/views/reports/query_report.js:1087
msgid "Loading"
msgstr "Chargement"
@@ -14999,7 +14801,7 @@ msgstr ""
msgid "Login Page"
msgstr ""
-#: frappe/www/login.py:152
+#: frappe/www/login.py:156
msgid "Login To {0}"
msgstr ""
@@ -15266,7 +15068,7 @@ msgstr "Obligatoire dépend de"
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:473
+#: frappe/website/doctype/web_form/web_form.py:470
msgid "Mandatory Information missing:"
msgstr "Renseignements Obligatoires manquants :"
@@ -15541,7 +15343,7 @@ msgid "Menu"
msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:242
-#: frappe/public/js/frappe/model/model.js:754
+#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "Fusionner avec existant"
@@ -15720,7 +15522,7 @@ msgstr "Meta title pour le référencement"
msgid "Method"
msgstr "Méthode"
-#: frappe/__init__.py:672
+#: frappe/__init__.py:679
msgid "Method Not Allowed"
msgstr ""
@@ -15797,7 +15599,7 @@ msgstr ""
msgid "Miss"
msgstr ""
-#: frappe/desk/form/meta.py:218
+#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
msgstr ""
@@ -15822,7 +15624,7 @@ msgid "Missing Value"
msgstr ""
#: frappe/public/js/frappe/ui/field_group.js:124
-#: frappe/public/js/frappe/widgets/widget_dialog.js:361
+#: 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"
@@ -16005,8 +15807,6 @@ msgstr "Mois"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -16014,7 +15814,6 @@ msgstr "Mois"
#: 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/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:400
#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
@@ -16186,7 +15985,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:462
+#: frappe/website/doctype/web_form/web_form.py:459
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16352,7 +16151,7 @@ msgstr ""
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:793
+#: frappe/model/document.py:792
msgid "Negative Value"
msgstr "Valeur négative"
@@ -16457,7 +16256,7 @@ msgstr "Nouveau Message depuis la Page Contact du Site Web"
#. 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:762
+#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "Nouveau Nom"
@@ -16491,7 +16290,7 @@ msgstr "Nouveau nom du format d'impression"
msgid "New Quick List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
msgstr "Nouveau Nom de Rapport"
@@ -16547,26 +16346,26 @@ msgstr "Nouvelle valeur à définir"
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
#: frappe/public/js/frappe/form/toolbar.js:558
-#: frappe/public/js/frappe/model/model.js:661
+#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:379
+#: frappe/website/doctype/web_form/web_form.py:376
msgid "New {0}"
msgstr "Nouveau(elle) {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:394
+#: frappe/public/js/frappe/views/reports/query_report.js:392
msgid "New {0} Created"
msgstr "Nouveau {0} créé"
-#: frappe/public/js/frappe/views/reports/query_report.js:386
+#: frappe/public/js/frappe/views/reports/query_report.js:384
msgid "New {0} {1} added to Dashboard {2}"
msgstr "Nouveau {0} {1} ajouté au tableau de bord {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:391
+#: frappe/public/js/frappe/views/reports/query_report.js:389
msgid "New {0} {1} created"
msgstr "Nouveau {0} {1} créé"
@@ -16578,7 +16377,7 @@ msgstr "Nouveau {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "De nouvelles {} versions pour les applications suivantes sont disponibles"
-#: frappe/core/doctype/user/user.py:802
+#: frappe/core/doctype/user/user.py:804
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16740,7 +16539,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Non"
@@ -16881,7 +16680,7 @@ msgstr "Aucun résultat"
msgid "No Results found"
msgstr "Aucun résultat trouvs"
-#: frappe/core/doctype/user/user.py:803
+#: frappe/core/doctype/user/user.py:805
msgid "No Roles Specified"
msgstr ""
@@ -17032,7 +16831,7 @@ msgstr "Nb de lignes (Max 500)"
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:827 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Pas d'autorisation pour {0}"
@@ -17041,7 +16840,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "Pas d'autorisation pour '{0}' {1}"
-#: frappe/model/db_query.py:949
+#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
msgstr "Pas d'autorisation pour lire {0}"
@@ -17125,12 +16924,6 @@ msgstr "Non négatif"
msgid "Non-Conforming"
msgstr ""
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "None"
-msgstr "Aucun"
-
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr "Rien: Fin du Workflow"
@@ -17145,7 +16938,7 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "Non Autorisé"
@@ -17166,7 +16959,7 @@ msgstr "Pas des descendants de"
msgid "Not Equals"
msgstr "Non égaux"
-#: frappe/app.py:374 frappe/www/404.html:3
+#: frappe/app.py:367 frappe/www/404.html:3
msgid "Not Found"
msgstr "Non Trouvé"
@@ -17192,9 +16985,9 @@ msgstr "Lié à aucun enregistrement"
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:754 frappe/app.py:367 frappe/desk/calendar.py:26
+#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:711
+#: frappe/website/doctype/web_form/web_form.py:708
#: 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
@@ -17215,7 +17008,7 @@ msgstr "Non Publié"
#: frappe/public/js/frappe/form/toolbar.js:813
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
-#: frappe/public/js/frappe/views/reports/report_view.js:197
+#: frappe/public/js/frappe/views/reports/report_view.js:203
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
@@ -17246,7 +17039,7 @@ msgstr "Non Défini"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "Valeurs Séparées par des Virgules non valides (Fichier CSV)"
-#: frappe/core/doctype/user/user.py:264
+#: frappe/core/doctype/user/user.py:265
msgid "Not a valid User Image."
msgstr "Image utilisateur non valide."
@@ -17262,7 +17055,7 @@ msgstr ""
msgid "Not active"
msgstr "Non actif"
-#: frappe/permissions.py:360
+#: frappe/permissions.py:370
msgid "Not allowed for {0}: {1}"
msgstr "Non autorisé pour {0}: {1}"
@@ -17282,7 +17075,7 @@ msgstr "Non autorisé à imprimer des documents annulés"
msgid "Not allowed to print draft documents"
msgstr "Non autorisé à imprimer des brouillons de documents"
-#: frappe/permissions.py:212
+#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
msgstr ""
@@ -17298,12 +17091,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:214
+#: frappe/core/doctype/system_settings/system_settings.py:215
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:724
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Pas permis"
@@ -17329,15 +17122,6 @@ msgstr "Note Vue Par"
msgid "Note:"
msgstr "Remarque:"
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'Dropbox Settings'
-#. Description of the 'Send Email for Successful backup' (Check) field in
-#. DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Note: By default emails for failed backups are sent."
-msgstr "Remarque: par défaut, les e-mails pour les sauvegardes ayant échoué sont envoyés."
-
#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "Remarque : Changer le Nom de la Page va détruire le précédent lien URL vers cette page."
@@ -17397,13 +17181,10 @@ msgstr "Rien à mettre à jour"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
#. Name of a DocType
-#. Label of the notification_section (Section Break) field in DocType 'S3
-#. Backup Settings'
#: 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
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Notification"
msgstr ""
@@ -17505,7 +17286,7 @@ msgstr "Nombre"
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:615
+#: frappe/public/js/frappe/widgets/widget_dialog.js:628
msgid "Number Card"
msgstr "Carte numérique"
@@ -17523,7 +17304,7 @@ 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:645
+#: frappe/public/js/frappe/widgets/widget_dialog.js:658
msgid "Number Cards"
msgstr "Cartes numériques"
@@ -17541,15 +17322,6 @@ msgstr "Format Numérique"
msgid "Number of Backups"
msgstr "Nombre de Sauvegardes"
-#. Label of the no_of_backups (Int) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Number of DB Backups"
-msgstr "Nombre de sauvegardes de la base de données"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:54
-msgid "Number of DB backups cannot be less than 1"
-msgstr "Le nombre de sauvegardes de base de données ne peut pas être inférieur à 1"
-
#. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Number of Groups"
@@ -17565,7 +17337,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:169
+#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17794,7 +17566,7 @@ 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:322
+#: frappe/public/js/frappe/widgets/widget_dialog.js:335
msgid "Onboard"
msgstr ""
@@ -17890,19 +17662,13 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Only change this if you want to use other S3 compatible object storage backends."
-msgstr ""
-
-#: frappe/model/document.py:1232
+#: frappe/model/document.py:1231
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:315
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
msgstr ""
@@ -18151,7 +17917,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:870
+#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
msgstr "Options non définis pour le champ lié {0}"
@@ -18263,7 +18029,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1742
+#: frappe/public/js/frappe/views/reports/query_report.js:1744
msgid "PDF"
msgstr ""
@@ -18562,7 +18328,7 @@ msgstr "Parent est le nom du document auquel les données seront ajoutées."
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:798
+#: frappe/permissions.py:807
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18622,11 +18388,11 @@ msgstr "Passif"
msgid "Password"
msgstr "Mot de Passe"
-#: frappe/core/doctype/user/user.py:1079
+#: frappe/core/doctype/user/user.py:1081
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:457
+#: frappe/core/doctype/user/user.py:458
msgid "Password Reset"
msgstr "Réinitialisation du Mot de Passe"
@@ -18660,7 +18426,7 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1078
+#: frappe/core/doctype/user/user.py:1080
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18672,7 +18438,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:869
+#: frappe/core/doctype/user/user.py:871
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18829,7 +18595,7 @@ msgstr ""
msgid "Permanently Submit {0}?"
msgstr "Valider de Manière Permanente {0} ?"
-#: frappe/public/js/frappe/model/model.js:733
+#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
msgstr "Supprimer de Manière Permanente {0} ?"
@@ -18990,8 +18756,8 @@ msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:40
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
-#: frappe/public/js/frappe/views/reports/report_view.js:1576
+#: frappe/public/js/frappe/views/reports/report_view.js:1579
+#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
msgstr "Choisir des Colonnes"
@@ -19031,7 +18797,7 @@ msgstr ""
msgid "Plant"
msgstr "Usine"
-#: frappe/email/doctype/email_account/email_account.py:546
+#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
msgstr ""
@@ -19047,7 +18813,7 @@ msgstr "Veuillez Dupliquer le thème de ce site Web pour le personnaliser."
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "Veuillez installer la bibliothèque ldap3 via pip pour utiliser la fonctionnalité ldap."
-#: frappe/public/js/frappe/views/reports/query_report.js:309
+#: frappe/public/js/frappe/views/reports/query_report.js:307
msgid "Please Set Chart"
msgstr "Veuillez définir le graphique"
@@ -19063,7 +18829,7 @@ msgstr "S'il vous plaît ajouter un sujet à votre email"
msgid "Please add a valid comment."
msgstr "Veuillez ajouter un commentaire valide."
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1063
msgid "Please ask your administrator to verify your sign-up"
msgstr "Veuillez demander à votre administrateur de vérifier votre inscription"
@@ -19091,11 +18857,11 @@ 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:946
+#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Veuillez vérifier la valeur de "Extraire depuis" définie pour le champ {0}"
-#: frappe/core/doctype/user/user.py:1059
+#: frappe/core/doctype/user/user.py:1061
msgid "Please check your email for verification"
msgstr "Veuillez vérifier votre email pour validation"
@@ -19123,10 +18889,6 @@ msgstr ""
msgid "Please click on the following link to set your new password"
msgstr "Veuillez cliquer sur le lien suivant pour définir votre nouveau mot de passe"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:343
-msgid "Please close this window"
-msgstr "Veuillez fermer cette fenêtre"
-
#: frappe/www/confirm_workflow_action.html:4
msgid "Please confirm your action to {0} this document."
msgstr "Veuillez confirmer votre action sur {0} ce document."
@@ -19143,7 +18905,7 @@ msgstr "Veuillez d'abord créer la carte"
msgid "Please create chart first"
msgstr "Veuillez d'abord créer un graphique"
-#: frappe/desk/form/meta.py:214
+#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
msgstr ""
@@ -19155,7 +18917,7 @@ msgstr "Veuillez ne pas modifier les sections du modèle."
msgid "Please duplicate this to make changes"
msgstr "Veuillez créer un duplicata pour faire des changements"
-#: frappe/core/doctype/system_settings/system_settings.py:162
+#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19173,7 +18935,7 @@ msgstr "Veuillez autoriser les pop-ups"
msgid "Please enable pop-ups in your browser"
msgstr "S'il vous plaît activer les pop-ups dans votre navigateur"
-#: frappe/integrations/google_oauth.py:53
+#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
msgstr ""
@@ -19250,7 +19012,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "Assurez-vous que les documents de communication de référence ne sont pas liés de manière circulaire."
-#: frappe/model/document.py:987
+#: frappe/model/document.py:986
msgid "Please refresh to get the latest document."
msgstr "Veuillez actualiser pour obtenir la dernière version du document."
@@ -19274,7 +19036,7 @@ msgstr "Veuillez enregistrer le document avant l'affectation"
msgid "Please save the document before removing assignment"
msgstr "Veuillez enregistrer le document avant de retirer l’affectation"
-#: frappe/public/js/frappe/views/reports/report_view.js:1703
+#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
msgstr "Veuillez d’abord enregistrer le rapport"
@@ -19290,11 +19052,11 @@ msgstr "Veuillez d’abord sélectionner un DocType"
msgid "Please select Entity Type first"
msgstr "Veuillez d'abord sélectionner le type d'entité"
-#: frappe/core/doctype/system_settings/system_settings.py:112
+#: frappe/core/doctype/system_settings/system_settings.py:113
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:1181
+#: frappe/public/js/frappe/views/reports/query_report.js:1183
msgid "Please select X and Y fields"
msgstr ""
@@ -19322,7 +19084,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:1140
+#: frappe/model/db_query.py:1141
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "Veuillez sélectionner au moins 1 colonne de {0} pour trier / grouper"
@@ -19344,10 +19106,6 @@ msgstr ""
msgid "Please select {0}"
msgstr "Veuillez sélectionner {0}"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:305
-msgid "Please set Dropbox access keys in site config or doctype"
-msgstr ""
-
#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
msgstr "Veuillez définir une Adresse Email"
@@ -19356,7 +19114,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:1404
+#: frappe/public/js/frappe/views/reports/query_report.js:1406
msgid "Please set filters"
msgstr "Veuillez définir des filtres"
@@ -19376,7 +19134,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:125
+#: frappe/core/doctype/system_settings/system_settings.py:126
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"
@@ -19384,19 +19142,19 @@ msgstr "Veuillez configurer les SMS avant de les choisir comme méthode d'authen
msgid "Please setup a message first"
msgstr "Veuillez d'abord configurer un message"
-#: frappe/core/doctype/user/user.py:422
+#: frappe/core/doctype/user/user.py:423
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:434
+#: 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:823
+#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
msgstr "Veuillez spécifier"
-#: frappe/permissions.py:774
+#: frappe/permissions.py:783
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19425,7 +19183,7 @@ msgstr "Veuillez indiquer quel champ de valeur doit être vérifiée"
msgid "Please try again"
msgstr "Veuillez réessayer"
-#: frappe/integrations/google_oauth.py:56
+#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
msgstr ""
@@ -19738,8 +19496,8 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1728
-#: frappe/public/js/frappe/views/reports/report_view.js:1531
+#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "Impression"
@@ -19982,7 +19740,7 @@ msgstr "ProTip: Ajouter Reference: {{ reference_doctype }} {{ reference_na
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
msgstr "Continuer malgré tout"
@@ -20303,7 +20061,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:729
+#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
msgstr ""
@@ -20324,7 +20082,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:554
+#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
msgstr "La Queue doit être parmi {0}"
@@ -20357,12 +20115,6 @@ msgstr ""
msgid "Queued for Submission. You can track the progress over {0}."
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:65
-#: frappe/integrations/doctype/google_drive/google_drive.py:153
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:86
-msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr "Mis en File d'Attente pour la sauvegarde. Cela peut prendre de quelques minutes jusqu'à une heure."
-
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
msgstr "En file d'attente pour la sauvegarde. Vous recevrez un courriel avec le lien de téléchargement"
@@ -20498,7 +20250,7 @@ msgstr ""
msgid "Re-Run in Console"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:728
+#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
msgstr ""
@@ -20600,7 +20352,7 @@ msgstr ""
msgid "Reason"
msgstr "Raison"
-#: frappe/public/js/frappe/views/reports/query_report.js:889
+#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
msgstr "Reconstruire"
@@ -20965,11 +20717,11 @@ msgid "Referrer"
msgstr "Référent"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:548
+#: frappe/public/js/frappe/desk.js:556
#: 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:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1719
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20988,12 +20740,10 @@ msgstr "Actualiser Google Sheet"
#. 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 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
@@ -21010,7 +20760,7 @@ msgstr ""
msgid "Refreshing..."
msgstr "Actualisation..."
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
msgstr "Enregistré mais Désactivé"
@@ -21173,7 +20923,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
#: frappe/public/js/frappe/form/toolbar.js:432
-#: frappe/public/js/frappe/model/model.js:772
+#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
msgstr "Renommer"
@@ -21183,7 +20933,7 @@ msgstr "Renommer"
msgid "Rename Fieldname"
msgstr ""
-#: frappe/public/js/frappe/model/model.js:759
+#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
msgstr "Renommer {0}"
@@ -21247,7 +20997,7 @@ msgstr "Les répétitions comme \"aaa\" sont faciles à deviner"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "Les répétitions comme \"ABCABCABC\" sont seulement un peu plus difficiles à deviner que \"abc\""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:146
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
msgstr "Répète {0}"
@@ -21385,7 +21135,7 @@ msgstr "Gestionnaire de Rapports"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1902
+#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
msgstr "Nom du Rapport"
@@ -21437,7 +21187,7 @@ msgstr "Le rapport ne contient aucune donnée, veuillez modifier les filtres ou
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Le rapport n'a pas de champs numériques, veuillez changer le nom du rapport"
-#: frappe/public/js/frappe/views/reports/query_report.js:1009
+#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
msgstr ""
@@ -21453,11 +21203,11 @@ msgstr ""
msgid "Report updated successfully"
msgstr "Rapport mis à jour avec succès"
-#: frappe/public/js/frappe/views/reports/report_view.js:1351
+#: frappe/public/js/frappe/views/reports/report_view.js:1357
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:1940
+#: frappe/public/js/frappe/views/reports/query_report.js:1942
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."
@@ -21493,7 +21243,7 @@ msgstr "Rapports"
msgid "Reports & Masters"
msgstr "Ecrans principaux et Rapports"
-#: frappe/public/js/frappe/views/reports/query_report.js:925
+#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
msgstr "Rapports déjà en file d'attente"
@@ -21943,7 +21693,7 @@ msgstr ""
msgid "Role and Level"
msgstr "Rôle et Niveau"
-#: frappe/core/doctype/user/user.py:363
+#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22058,7 +21808,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:855 frappe/model/document.py:778
+#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
msgstr "Ligne"
@@ -22071,7 +21821,7 @@ msgstr ""
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:982
msgid "Row #{0}:"
msgstr "Ligne # {0} :"
@@ -22149,7 +21899,7 @@ msgstr "Règle"
msgid "Rule Conditions"
msgstr "Conditions de règle"
-#: frappe/permissions.py:653
+#: frappe/permissions.py:662
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22193,23 +21943,6 @@ msgstr ""
msgid "Runtime in Seconds"
msgstr ""
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "S3 Backup Settings"
-msgstr "Paramètres de sauvegarde S3"
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
-msgid "S3 Backup complete!"
-msgstr "S3 Sauvegarde terminée!"
-
-#. Label of the s3_bucket_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Bucket Details"
-msgstr "Détails du compartiment S3"
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
@@ -22350,7 +22083,7 @@ msgstr "Samedi"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/page/print/print.js:858
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/quick_entry.js:185
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
@@ -22360,8 +22093,8 @@ msgstr "Samedi"
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
-#: frappe/public/js/frappe/views/reports/query_report.js:1894
-#: frappe/public/js/frappe/views/reports/report_view.js:1720
+#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
@@ -22378,8 +22111,8 @@ msgstr ""
msgid "Save Anyway"
msgstr "Économisez quand même"
-#: frappe/public/js/frappe/views/reports/report_view.js:1382
-#: frappe/public/js/frappe/views/reports/report_view.js:1727
+#: frappe/public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
msgstr "Enregistrer Sous"
@@ -22387,7 +22120,7 @@ msgstr "Enregistrer Sous"
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1897
+#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
msgstr "Enregistrer le rapport"
@@ -22553,7 +22286,7 @@ msgstr "Planificateur inactif"
msgid "Scheduler Status"
msgstr ""
-#: frappe/utils/scheduler.py:249
+#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr ""
@@ -22779,7 +22512,7 @@ msgstr "Paramètres de Sécurité"
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:858
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "See all past reports."
msgstr "Voir tous les rapports passés."
@@ -22859,7 +22592,7 @@ msgstr "Sélectionner Pièces Jointes"
msgid "Select Child Table"
msgstr "Sélectionnez la table des enfants"
-#: frappe/public/js/frappe/views/reports/report_view.js:377
+#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
msgstr "Sélectionner la colonne"
@@ -23176,31 +22909,11 @@ msgstr "Envoyer les Pièces Jointes Imprimées de l'Email au format PDF (recomma
msgid "Send Email To Creator"
msgstr ""
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Dropbox Settings'
-#. Label of the send_email_for_successful_backup (Check) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Email for Successful Backup"
-msgstr "Envoyer un email pour une sauvegarde réussie"
-
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Email for Successful backup"
-msgstr "Envoyer un courrier électronique pour une sauvegarde réussie"
-
#. 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 "M'envoyer une Copie des E-mails Sortants"
-#. Label of the email (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Notification To"
-msgstr "Envoyer une Notification à"
-
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -23217,14 +22930,6 @@ msgstr "Envoyer des notifications pour les documents suivis par moi"
msgid "Send Notifications For Email Threads"
msgstr "Envoyer des notifications pour les fils de discussion"
-#. Label of the send_notifications_to (Data) field in DocType 'Dropbox
-#. Settings'
-#. Label of the notify_email (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Notifications To"
-msgstr "Envoyer des Notifications À"
-
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
msgstr "Envoyer Maintenant"
@@ -23483,7 +23188,7 @@ msgstr "Séries {0} déjà utilisé dans {1}"
msgid "Server Action"
msgstr "Action du serveur"
-#: frappe/app.py:383 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Erreur du Serveur"
@@ -23549,7 +23254,7 @@ msgstr "Session par défaut"
msgid "Session Defaults Saved"
msgstr "Session par défaut enregistrée"
-#: frappe/app.py:360
+#: frappe/app.py:353
msgid "Session Expired"
msgstr "La Session a Expiré"
@@ -23558,7 +23263,7 @@ msgstr "La Session a Expiré"
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:119
+#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
msgstr "Expiration de Session doit être au format {0}"
@@ -23581,7 +23286,7 @@ msgstr "Définir"
msgid "Set Banner from Image"
msgstr "Définir la Bannière depuis l'Image"
-#: frappe/public/js/frappe/views/reports/query_report.js:201
+#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
msgstr ""
@@ -23607,7 +23312,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:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
msgstr ""
@@ -23825,8 +23530,8 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1763
-#: frappe/public/js/frappe/views/reports/report_view.js:1698
+#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Configuration Auto Email"
@@ -23922,6 +23627,15 @@ msgstr "Afficher"
msgid "Show \"Call to Action\" in Blog"
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"
@@ -24092,7 +23806,7 @@ msgstr "Afficher le Titre"
msgid "Show Title in Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1521
+#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
msgstr "Afficher les Totaux"
@@ -24202,7 +23916,7 @@ msgstr "Afficher le titre dans la fenêtre du navigateur comme "Prefix - ti
msgid "Show {0} List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:495
+#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
msgstr "Afficher uniquement les champs numériques du rapport"
@@ -24237,7 +23951,7 @@ msgstr "Barre Latérale et Commentaires"
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
msgstr "L'inscription est désactivée"
@@ -24882,7 +24596,7 @@ msgstr "Intervalle de temps des statistiques"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
-#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: frappe/public/js/frappe/views/reports/report_view.js:975
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
@@ -25181,7 +24895,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:1166
+#: frappe/public/js/frappe/form/grid.js:1170
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25278,7 +24992,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:720
+#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
msgstr "Nom d'Utilisateur Suggérée : {0}"
@@ -25568,11 +25282,9 @@ msgstr ""
#: frappe/geo/doctype/country/country.json
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/connected_app/connected_app.json
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.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_drive/google_drive.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
@@ -25581,7 +25293,6 @@ msgstr ""
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_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
@@ -25706,11 +25417,11 @@ msgstr "Tableau MultiSelect"
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1165
+#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
msgstr "Table Mise à Jour"
-#: frappe/model/document.py:1565
+#: frappe/model/document.py:1564
msgid "Table {0} cannot be empty"
msgstr "La Table {0} ne peut pas être vide"
@@ -25729,7 +25440,7 @@ msgstr "Étiquette"
msgid "Tag Link"
msgstr "Lien tag"
-#: frappe/model/meta.py:57
+#: 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
@@ -25741,15 +25452,6 @@ msgstr "Lien tag"
msgid "Tags"
msgstr "Balises"
-#: frappe/integrations/doctype/google_drive/google_drive.js:29
-msgid "Take Backup"
-msgstr "Faire une sauvegarde"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
-msgid "Take Backup Now"
-msgstr "Faites une Sauvegarde Maintenant"
-
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
msgstr "Prendre une photo"
@@ -25827,12 +25529,12 @@ msgstr "Avertissements de modèles"
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1027
+#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
msgstr "Temporairement désactivé"
-#: frappe/core/doctype/translation/test_translation.py:56
-#: frappe/core/doctype/translation/test_translation.py:63
+#: frappe/core/doctype/translation/test_translation.py:47
+#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
msgstr ""
@@ -25841,8 +25543,8 @@ msgstr ""
msgid "Test Job ID"
msgstr ""
-#: frappe/core/doctype/translation/test_translation.py:58
-#: frappe/core/doctype/translation/test_translation.py:66
+#: frappe/core/doctype/translation/test_translation.py:49
+#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
msgstr ""
@@ -25850,7 +25552,7 @@ msgstr ""
msgid "Test email sent to {0}"
msgstr "E-mail de test envoyé à {0}"
-#: frappe/core/doctype/file/test_file.py:388
+#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Dossier_Test"
@@ -25931,7 +25633,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:1188
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
msgstr "Le format CSV est sensible à la casse"
@@ -26099,15 +25801,15 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:987
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:991
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:368 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"
@@ -26119,7 +25821,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:334
+#: frappe/utils/response.py:331
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26180,7 +25882,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26209,7 +25911,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr "Il y a un problème avec l'url du fichier : {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:958
+#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26296,12 +25998,12 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:750
+#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
msgstr "Cette action n'est autorisée que pour {}"
#: frappe/public/js/frappe/form/toolbar.js:117
-#: frappe/public/js/frappe/model/model.js:755
+#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "Ça ne peut pas être annulé"
@@ -26339,7 +26041,7 @@ msgstr ""
msgid "This document is already amended, you cannot ammend it again"
msgstr "Ce document est déjà obsoléte (une nouvelle version existe), vous ne pouvez plus le modifier"
-#: frappe/model/document.py:474
+#: frappe/model/document.py:473
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -26400,7 +26102,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr "Ceci va au-dessus du diaporama."
-#: frappe/public/js/frappe/views/reports/query_report.js:2132
+#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Ceci est un rapport de fond. Veuillez définir les filtres appropriés, puis en générer un nouveau."
@@ -26464,7 +26166,7 @@ msgstr ""
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1033
+#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26472,7 +26174,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:856
+#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
msgstr "Ce rapport a été généré {0}."
@@ -26538,7 +26240,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1240
+#: frappe/core/doctype/user/user.py:1242
msgid "Throttled"
msgstr "Étranglé"
@@ -26891,7 +26593,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:857
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "To get the updated report, click on {0}."
msgstr "Pour obtenir le rapport mis à jour, cliquez sur {0}."
@@ -26916,10 +26618,6 @@ msgstr "Pour utiliser Google Agenda, activez {0}."
msgid "To use Google Contacts, enable {0}."
msgstr "Pour utiliser Google Contacts, activez {0}."
-#: frappe/integrations/doctype/google_drive/google_drive.js:8
-msgid "To use Google Drive, enable {0}."
-msgstr "Pour utiliser Google Drive, activez {0}."
-
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -26950,7 +26648,7 @@ msgstr "Tâche à faire"
msgid "Today"
msgstr "Aujourd'hui"
-#: frappe/public/js/frappe/views/reports/report_view.js:1564
+#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
msgstr "Afficher/Cacher le graphique"
@@ -26966,7 +26664,7 @@ msgstr "Afficher/Cacher la vue en grille"
#: 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:1568
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
msgstr "Afficher/Cacher la barre latérale"
@@ -27022,11 +26720,11 @@ msgstr "Trop de demandes"
msgid "Too many changes to database in single action."
msgstr ""
-#: frappe/utils/background_jobs.py:728
+#: 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:1028
+#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "Trop d'utilisateurs se sont inscrits récemment, du coup l’inscription est désactivée. Veuillez essayer à nouveau dans une heure"
@@ -27090,8 +26788,8 @@ msgstr "Sujet"
#: frappe/desk/query_report.py:533
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1320
-#: frappe/public/js/frappe/views/reports/report_view.js:1545
+#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr ""
@@ -27154,11 +26852,11 @@ msgstr "Nombre total d'emails à synchroniser dans le processus de synchronisati
msgid "Total:"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1250
+#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
msgstr "Totaux"
-#: frappe/public/js/frappe/views/reports/report_view.js:1225
+#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
msgstr "Ligne de totaux"
@@ -27271,7 +26969,7 @@ msgstr ""
msgid "Translatable"
msgstr "Traduisible"
-#: frappe/public/js/frappe/views/reports/query_report.js:2188
+#: frappe/public/js/frappe/views/reports/query_report.js:2183
msgid "Translate Data"
msgstr ""
@@ -27282,7 +26980,7 @@ msgstr ""
msgid "Translate Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1650
+#: frappe/public/js/frappe/views/reports/report_view.js:1656
msgid "Translate values"
msgstr ""
@@ -27430,7 +27128,7 @@ msgstr "Méthode d'Authentification à Double Facteur"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/views/file/file_view.js:337
#: frappe/public/js/frappe/views/workspace/workspace.js:399
-#: frappe/public/js/frappe/widgets/widget_dialog.js:391
+#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
msgid "Type"
@@ -27510,7 +27208,7 @@ msgstr ""
#: 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:458
+#: 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"
@@ -27572,7 +27270,7 @@ msgstr "Impossible de trouver le DocType {0}"
msgid "Unable to load camera."
msgstr "Impossible de charger la caméra."
-#: frappe/public/js/frappe/model/model.js:268
+#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
msgstr "Impossible de charger : {0}"
@@ -27601,7 +27299,7 @@ msgstr "Impossible d'écrire le format de fichier pour {0}"
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:383
+#: frappe/app.py:376
msgid "Uncaught Exception"
msgstr ""
@@ -27834,7 +27532,7 @@ msgstr "Mis à Jour"
msgid "Updated Successfully"
msgstr "Mis à jour avec succés"
-#: frappe/public/js/frappe/desk.js:444
+#: frappe/public/js/frappe/desk.js:452
msgid "Updated To A New Version 🎉"
msgstr "Mise à jour vers une nouvelle version 🎉"
@@ -27842,7 +27540,7 @@ msgstr "Mise à jour vers une nouvelle version 🎉"
msgid "Updated successfully"
msgstr "Mis à jour avec succés"
-#: frappe/utils/response.py:333
+#: frappe/utils/response.py:330
msgid "Updating"
msgstr "Réactualisation"
@@ -27916,18 +27614,6 @@ msgstr "Téléchargé sur Dropbox"
msgid "Uploaded To Google Drive"
msgstr "Téléchargé sur Google Drive"
-#: frappe/integrations/doctype/google_drive/google_drive.py:196
-msgid "Uploading backup to Google Drive."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:201
-msgid "Uploading successful."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:16
-msgid "Uploading to Google Drive"
-msgstr ""
-
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -28011,11 +27697,11 @@ 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:434
+#: frappe/model/db_query.py:435
msgid "Use of function {0} in field is restricted"
msgstr ""
-#: frappe/model/db_query.py:411
+#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
msgstr "L'utilisation de la sous-requête ou de la fonction est restreinte"
@@ -28132,7 +27818,7 @@ msgstr "L'utilisateur ne peut pas Créer"
msgid "User Cannot Search"
msgstr "L'utilisateur ne peut pas Rechercher"
-#: frappe/public/js/frappe/desk.js:546
+#: frappe/public/js/frappe/desk.js:554
msgid "User Changed"
msgstr ""
@@ -28238,8 +27924,8 @@ 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:1881
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "Autorisations des Utilisateurs"
@@ -28336,7 +28022,7 @@ msgstr "L'utilisateur doit toujours sélectionner"
msgid "User permission already exists"
msgstr "L'autorisation de l'utilisateur existe déjà"
-#: frappe/www/login.py:167
+#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
msgstr ""
@@ -28344,23 +28030,23 @@ msgstr ""
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: frappe/core/doctype/user/user.py:536
+#: frappe/core/doctype/user/user.py:537
msgid "User {0} cannot be deleted"
msgstr "Utilisateur {0} ne peut pas être supprimé"
-#: frappe/core/doctype/user/user.py:326
+#: frappe/core/doctype/user/user.py:327
msgid "User {0} cannot be disabled"
msgstr "Utilisateur {0} ne peut pas être désactivé"
-#: frappe/core/doctype/user/user.py:602
+#: frappe/core/doctype/user/user.py:603
msgid "User {0} cannot be renamed"
msgstr "Utilisateur {0} ne peut pas être renommé"
-#: frappe/permissions.py:138
+#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
msgstr "L'utilisateur {0} n'a pas accès à ce document."
-#: frappe/permissions.py:161
+#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr "L'utilisateur {0} n'a pas d'accès au type de document via l'autorisation de rôle pour le document {1}."
@@ -28373,7 +28059,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr "L'utilisateur {0} a demandé la suppression des données."
-#: frappe/core/doctype/user/user.py:1369
+#: frappe/core/doctype/user/user.py:1371
msgid "User {0} impersonated as {1}"
msgstr ""
@@ -28402,7 +28088,7 @@ msgstr ""
msgid "Username"
msgstr "Nom d'Utilisateur"
-#: frappe/core/doctype/user/user.py:687
+#: frappe/core/doctype/user/user.py:689
msgid "Username {0} already exists"
msgstr "Nom d'Utilisateur {0} existe déjà"
@@ -28542,15 +28228,15 @@ msgstr "Valeur Modifiée"
msgid "Value To Be Set"
msgstr "Valeur à Définir"
-#: frappe/model/base_document.py:1049 frappe/model/document.py:834
+#: frappe/model/base_document.py:1054 frappe/model/document.py:833
msgid "Value cannot be changed for {0}"
msgstr "Valeur ne peut pas être modifiée pour {0}"
-#: frappe/model/document.py:780
+#: frappe/model/document.py:779
msgid "Value cannot be negative for"
msgstr "La valeur ne peut pas être négative pour"
-#: frappe/model/document.py:784
+#: frappe/model/document.py:783
msgid "Value cannot be negative for {0}: {1}"
msgstr "La valeur ne peut pas être négative pour {0}: {1}"
@@ -28581,7 +28267,7 @@ msgstr "La valeur doit être l'une des {0}"
msgid "Value to Validate"
msgstr "Valeur à valider"
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1124
msgid "Value too big"
msgstr "Valeur trop grande"
@@ -29182,11 +28868,6 @@ msgstr "Jours de la semaine"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -29195,9 +28876,6 @@ msgstr "Jours de la semaine"
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:399
#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
@@ -29232,11 +28910,11 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:414
+#: frappe/core/doctype/user/user.py:415
msgid "Welcome email sent"
msgstr "Email de bienvenue envoyé"
-#: frappe/core/doctype/user/user.py:475
+#: frappe/core/doctype/user/user.py:476
msgid "Welcome to {0}"
msgstr "Bienvenue sur {0}"
@@ -29269,7 +28947,7 @@ 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:468
+#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
msgstr "À quelle vue du DocType associé ce raccourci doit-il vous amener?"
@@ -29468,7 +29146,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:177
+#: frappe/public/js/frappe/router.js:173
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29538,11 +29216,11 @@ msgstr ""
msgid "Workspaces"
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:753
+#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
msgstr ""
@@ -29561,11 +29239,11 @@ msgstr "Emballer"
msgid "Write"
msgstr "Écrire"
-#: frappe/model/base_document.py:949
+#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
msgstr "Valeur d'extraction incorrecte"
-#: frappe/public/js/frappe/views/reports/report_view.js:484
+#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
msgstr "Champ de l'Axe X"
@@ -29584,13 +29262,13 @@ msgstr ""
msgid "Y Axis"
msgstr "Axe Y"
-#: frappe/public/js/frappe/views/reports/report_view.js:491
+#: frappe/public/js/frappe/views/reports/report_view.js:497
msgid "Y Axis Fields"
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:1221
+#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
msgstr "Champ Y"
@@ -29651,7 +29329,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Oui"
@@ -29691,11 +29369,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:409
+#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "Vous n'êtes pas autorisé à accéder à cet enregistrement {0} car il est lié à {1} '{2}' dans le champ {3}"
-#: frappe/permissions.py:398
+#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29718,7 +29396,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:604
+#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
msgstr "Vous n'êtes pas autorisé à exporter {} doctype"
@@ -29730,7 +29408,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:569
+#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
msgstr "Vous n'êtes pas autorisé à mettre à jour ce formulaire Web"
@@ -29746,7 +29424,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr "Vous n'êtes pas autorisé à accéder à cette page."
-#: frappe/__init__.py:669
+#: frappe/__init__.py:676
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29754,7 +29432,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr "Vous suivez maintenant ce document. Vous recevrez des mises à jour quotidiennes par courrier électronique. Vous pouvez modifier cela dans les paramètres de l'utilisateur."
-#: frappe/core/doctype/installed_applications/installed_applications.py:82
+#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -29918,11 +29596,11 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Vous ne disposez pas de suffisamment d'autorisations pour accéder à cette ressource. Veuillez contacter votre responsable pour obtenir l'accès."
-#: frappe/app.py:368
+#: frappe/app.py:361
msgid "You do not have enough permissions to complete the action"
msgstr "Vous ne disposez pas de suffisamment d'autorisations pour compléter l'action"
-#: frappe/desk/query_report.py:838
+#: frappe/desk/query_report.py:831
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29934,11 +29612,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:772
+#: frappe/website/doctype/web_form/web_form.py:769
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:286 frappe/utils/response.py:290
+#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
msgstr "Vous n'avez pas l'autorisation d'accéder à ce fichier"
@@ -29946,7 +29624,7 @@ msgstr "Vous n'avez pas l'autorisation d'accéder à ce fichier"
msgid "You don't have permission to get a report on: {0}"
msgstr "Vous n'avez pas l'autorisation d'obtenir un rapport sur : {0}"
-#: frappe/website/doctype/web_form/web_form.py:175
+#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
msgstr "Vous n'avez pas l'autorisation d'accéder à ce document"
@@ -29999,23 +29677,23 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
msgstr "Vous avez édité ceci pour la dernière fois"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:339
+#: 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:768
+#: frappe/website/doctype/web_form/web_form.py:765
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:609
+#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
msgstr "Vous devez vous connecter pour valider ce formulaire"
-#: frappe/model/document.py:357
+#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
@@ -30031,11 +29709,11 @@ msgstr ""
msgid "You need to be a system user to access this page."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:94
+#: frappe/website/doctype/web_form/web_form.py:91
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:275
+#: frappe/utils/response.py:272
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."
@@ -30043,7 +29721,7 @@ msgstr "Vous devez être connecté et avoir le Role Responsable Système pour po
msgid "You need to be logged in to access this page"
msgstr "Vous devez être connecté pour pouvoir accéder à cette page"
-#: frappe/website/doctype/web_form/web_form.py:164
+#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
msgstr "Vous devez être connecté pour accéder à ce(tte) {0}."
@@ -30118,7 +29796,7 @@ msgstr "Vous avez non suivi ce document"
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/desk.js:543
+#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -30201,7 +29879,7 @@ msgstr "Le nom de votre société et l'adresse pour le pied de l'email."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Votre requête a été reçue. Nous vous répondrons au plus vite. Si vous avez des informations supplémentaires, veuillez répondre à cet email."
-#: frappe/app.py:361
+#: frappe/app.py:354
msgid "Your session has expired, please login again to continue."
msgstr "Votre session a expiré, connectez-vous à nouveau pour continuer."
@@ -30432,7 +30110,7 @@ msgstr ""
msgid "email inbox"
msgstr "Boîte de réception e-mail"
-#: frappe/permissions.py:403 frappe/permissions.py:414
+#: frappe/permissions.py:412 frappe/permissions.py:423
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "vide"
@@ -30984,7 +30662,7 @@ msgstr ""
msgid "{0} Calendar"
msgstr "{0} Calendrier"
-#: frappe/public/js/frappe/views/reports/report_view.js:564
+#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
msgstr "Graphique {0}"
@@ -31032,7 +30710,7 @@ msgstr ""
msgid "{0} Name"
msgstr "{0} Nom"
-#: frappe/model/base_document.py:1149
+#: frappe/model/base_document.py:1154
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -31042,7 +30720,7 @@ msgstr ""
msgid "{0} Report"
msgstr "Rapport {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:952
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
msgstr ""
@@ -31108,7 +30786,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:149
+#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
msgstr ""
@@ -31121,7 +30799,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:547
+#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -31246,7 +30924,7 @@ msgstr "{0} est un champ de données non valide."
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "{0} est une adresse e-mail invalide dans 'Destinataires'"
-#: frappe/public/js/frappe/views/reports/report_view.js:1462
+#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
msgstr ""
@@ -31255,27 +30933,27 @@ msgstr ""
msgid "{0} is currently {1}"
msgstr "{0} est actuellement {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1431
+#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1451
+#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1441
+#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1456
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1446
+#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1481
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
msgstr ""
@@ -31295,7 +30973,7 @@ msgstr "{0} n'est pas un format d'impression brut."
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:64
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
msgstr "{0} n'est pas une expression Cron valide."
@@ -31324,11 +31002,11 @@ msgstr "{0} n'est pas un numéro de téléphone valide"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} n'est pas un état de Workflow valide. Veuillez mettre à jour votre Workflow et réessayer."
-#: frappe/permissions.py:787
+#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31340,27 +31018,27 @@ msgstr "{0} n'est pas un format de rapport valide. Le format du rapport doit
msgid "{0} is not a zip file"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1436
+#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1483
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1487
+#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:165
+#: frappe/printing/doctype/print_format/print_format.py:164
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}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1470
+#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
msgstr ""
@@ -31371,11 +31049,11 @@ msgstr ""
msgid "{0} is required"
msgstr "{0} est nécessaire"
-#: frappe/public/js/frappe/views/reports/report_view.js:1486
+#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1465
+#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
msgstr ""
@@ -31383,12 +31061,12 @@ msgstr ""
msgid "{0} items selected"
msgstr "{0} articles sélectionnés"
-#: frappe/core/doctype/user/user.py:1378
+#: frappe/core/doctype/user/user.py:1380
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:104
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
msgstr "{0} a édité ceci pour la dernière fois"
@@ -31404,7 +31082,7 @@ msgstr "{0} déconnecté: {1}"
msgid "{0} m"
msgstr ""
-#: frappe/desk/notifications.py:397
+#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
msgstr "{0} vous a mentionné dans un commentaire dans {1} {2}"
@@ -31416,35 +31094,35 @@ msgstr "Il y a {0} minutes"
msgid "{0} months ago"
msgstr "Il y a {0} mois"
-#: frappe/model/document.py:1792
+#: frappe/model/document.py:1791
msgid "{0} must be after {1}"
msgstr "{0} doit être après {1}"
-#: frappe/model/document.py:1551
+#: frappe/model/document.py:1550
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1553
+#: frappe/model/document.py:1552
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1549
+#: frappe/model/document.py:1548
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1547 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} doit être l'un des {1}"
-#: frappe/model/base_document.py:875
+#: frappe/model/base_document.py:876
msgid "{0} must be set first"
msgstr "{0} doit être défini en premier"
-#: frappe/model/base_document.py:732
+#: frappe/model/base_document.py:729
msgid "{0} must be unique"
msgstr "{0} doit être unique"
-#: frappe/model/document.py:1555
+#: frappe/model/document.py:1554
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31519,7 +31197,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1785
+#: frappe/model/document.py:1784
msgid "{0} row #{1}: "
msgstr ""
@@ -31615,11 +31293,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:665 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} existe déjà"
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:987
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}\""
@@ -31635,7 +31313,7 @@ msgstr "{0} {1} n'existe pas, veuillez sélectionner une nouvelle cible à fusio
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} est lié aux documents validés suivants: {2}"
-#: frappe/model/document.py:260 frappe/permissions.py:558
+#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
msgstr "{0} {1} introuvable"
@@ -31643,7 +31321,7 @@ msgstr "{0} {1} introuvable"
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:1110
+#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
msgstr "{0}, Ligne {1}"
@@ -31651,7 +31329,7 @@ msgstr "{0}, Ligne {1}"
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1115
+#: frappe/model/base_document.py:1120
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}"
@@ -31752,7 +31430,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:1279
+#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} contre {2}"
diff --git a/frappe/locale/hr.po b/frappe/locale/hr.po
index 398edb9b19..b3911f912b 100644
--- a/frappe/locale/hr.po
+++ b/frappe/locale/hr.po
@@ -2,14 +2,14 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-08 09:34+0000\n"
-"PO-Revision-Date: 2025-06-11 14:05\n"
+"POT-Creation-Date: 2025-06-22 09:34+0000\n"
+"PO-Revision-Date: 2025-06-22 16:41\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Croatian\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.13.1\n"
+"Generated-By: Babel 2.16.0\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Crowdin-Project: frappe\n"
"X-Crowdin-Project-ID: 639578\n"
@@ -141,7 +141,7 @@ msgstr "1 Dan"
msgid "1 Google Calendar Event synced."
msgstr "Sinkroniziran je 1 događaj Google Kalendara."
-#: frappe/public/js/frappe/views/reports/query_report.js:951
+#: frappe/public/js/frappe/views/reports/query_report.js:953
msgid "1 Report"
msgstr "1 Izvješće"
@@ -149,7 +149,7 @@ msgstr "1 Izvješće"
msgid "1 comment"
msgstr "1 komentar"
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:711
msgid "1 day ago"
msgstr "prije 1 dan"
@@ -158,17 +158,17 @@ msgid "1 hour"
msgstr "1 sat"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:709
msgid "1 hour ago"
msgstr "prije 1 sat"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:707
msgid "1 minute ago"
msgstr "prije 1 minutu"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:715
msgid "1 month ago"
msgstr "prije 1 mjesec"
@@ -180,37 +180,37 @@ msgstr "1 od 2"
msgid "1 record will be exported"
msgstr "Izvest će se 1 zapis"
-#: frappe/tests/test_utils.py:705
+#: frappe/tests/test_utils.py:706
msgid "1 second ago"
msgstr "prije 1 sekundu"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:713
msgid "1 week ago"
msgstr "prije 1 tjedan"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:717
msgid "1 year ago"
msgstr "prije 1 godinu"
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:710
msgid "2 hours ago"
msgstr "prije 2 sata"
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:716
msgid "2 months ago"
msgstr "prije 2 mjeseca"
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:714
msgid "2 weeks ago"
msgstr "prije 2 tjedna"
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:718
msgid "2 years ago"
msgstr "prije 2 godine"
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:708
msgid "3 minutes ago"
msgstr "prije 3 minute"
@@ -226,7 +226,7 @@ msgstr "4 sata"
msgid "5 Records"
msgstr "5 Zapisa"
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:712
msgid "5 days ago"
msgstr "prije 5 dana"
@@ -246,7 +246,7 @@ msgstr "<"
msgid "<="
msgstr "<="
-#: frappe/public/js/frappe/widgets/widget_dialog.js:588
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
msgid "{0} is not a valid URL"
msgstr "{0} nije važeći URL"
@@ -838,10 +838,7 @@ msgid "API"
msgstr "API"
#. Label of the api_access (Section Break) field in DocType 'User'
-#. Label of the api_access_section (Section Break) field in DocType 'S3 Backup
-#. Settings'
#: frappe/core/doctype/user/user.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "API Access"
msgstr "API Pristup"
@@ -953,17 +950,6 @@ msgstr "Preostalo je oko {0} sekundi"
msgid "Access Control"
msgstr "Kontrola Pristupa"
-#. Label of the access_key_id (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key ID"
-msgstr "ID Pristupnog Ključa"
-
-#. Label of the secret_access_key (Password) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key Secret"
-msgstr "Tajna Pristupnog Ključa"
-
#. Name of a DocType
#. Label of a Link in the Users Workspace
#: frappe/core/doctype/access_log/access_log.json
@@ -1014,6 +1000,10 @@ msgstr "Upravitelj Knjigovodstva"
msgid "Accounts User"
msgstr "Korisnik Knjigovodstva"
+#: 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'
@@ -1044,7 +1034,7 @@ msgstr "Radnja / Ruta"
msgid "Action Complete"
msgstr "Radnja Završena"
-#: frappe/model/document.py:1872
+#: frappe/model/document.py:1871
msgid "Action Failed"
msgstr "Radnja Neuspješna"
@@ -1093,10 +1083,10 @@ msgstr "Radnja {0} nije uspjela {1} {2}. Pogledaj {3}"
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:192
-#: frappe/public/js/frappe/views/reports/query_report.js:205
-#: frappe/public/js/frappe/views/reports/query_report.js:215
-#: frappe/public/js/frappe/views/reports/query_report.js:845
+#: frappe/public/js/frappe/views/reports/query_report.js:190
+#: frappe/public/js/frappe/views/reports/query_report.js:203
+#: frappe/public/js/frappe/views/reports/query_report.js:213
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Actions"
msgstr "Radnje"
@@ -1158,8 +1148,8 @@ msgstr "Zapisnik Aktivnosti"
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:267
-#: frappe/public/js/frappe/views/reports/query_report.js:295
+#: frappe/public/js/frappe/views/reports/query_report.js:265
+#: frappe/public/js/frappe/views/reports/query_report.js:293
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Dodaj"
@@ -1200,7 +1190,7 @@ msgstr "Dodaj Obrub na Vrh"
msgid "Add Card to Dashboard"
msgstr "Dodaj Karticu na Nadzornu Ploču"
-#: frappe/public/js/frappe/views/reports/query_report.js:211
+#: frappe/public/js/frappe/views/reports/query_report.js:209
msgid "Add Chart to Dashboard"
msgstr "Dodaj Grafikon na Nadzornu Ploču"
@@ -1209,10 +1199,10 @@ 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:1769
-#: frappe/public/js/frappe/views/reports/query_report.js:1772
-#: frappe/public/js/frappe/views/reports/report_view.js:349
-#: frappe/public/js/frappe/views/reports/report_view.js:374
+#: frappe/public/js/frappe/views/reports/query_report.js:1771
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/report_view.js:355
+#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
msgstr "Dodaj Stupac"
@@ -1236,7 +1226,7 @@ msgid "Add Custom Tags"
msgstr "Dodaj Prilagođene Oznake"
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
-#: frappe/public/js/frappe/widgets/widget_dialog.js:703
+#: frappe/public/js/frappe/widgets/widget_dialog.js:716
msgid "Add Filters"
msgstr "Dodaj Filtre"
@@ -1271,7 +1261,7 @@ msgstr "Dodajte Sudionike"
msgid "Add Query Parameters"
msgstr "Dodaj Parametre Upita"
-#: frappe/core/doctype/user/user.py:806
+#: frappe/core/doctype/user/user.py:808
msgid "Add Roles"
msgstr "Dodaj Uloge"
@@ -1416,7 +1406,7 @@ msgid "Add tab"
msgstr "Dodaj karticu"
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:253
+#: frappe/public/js/frappe/views/reports/query_report.js:251
msgid "Add to Dashboard"
msgstr "Dodaj na Nadzornu Ploču"
@@ -1571,11 +1561,11 @@ msgstr "Administracija"
msgid "Administrator"
msgstr "Administrator"
-#: frappe/core/doctype/user/user.py:1211
+#: frappe/core/doctype/user/user.py:1213
msgid "Administrator Logged In"
msgstr "Administrator je prijavljen"
-#: frappe/core/doctype/user/user.py:1205
+#: frappe/core/doctype/user/user.py:1207
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "Administrator je pristupio {0} {1} putem IP adrese {2}."
@@ -1808,12 +1798,6 @@ msgstr ""
msgid "Allow Consecutive Login Attempts "
msgstr ""
-#. Label of the allow_dropbox_access (Button) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Allow Dropbox Access"
-msgstr ""
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
msgid "Allow Google Calendar Access"
msgstr ""
@@ -1822,10 +1806,6 @@ msgstr ""
msgid "Allow Google Contacts Access"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:52
-msgid "Allow Google Drive Access"
-msgstr ""
-
#. Label of the allow_guest (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
@@ -2079,7 +2059,7 @@ msgstr ""
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
-#: frappe/core/doctype/user/user.py:1021
+#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr ""
@@ -2087,11 +2067,11 @@ msgstr ""
msgid "Already in the following Users ToDo list:{0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:896
+#: frappe/public/js/frappe/views/reports/report_view.js:902
msgid "Also adding the dependent currency field {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:909
+#: frappe/public/js/frappe/views/reports/report_view.js:915
msgid "Also adding the status dependency field {0}"
msgstr ""
@@ -2170,7 +2150,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:550
+#: frappe/model/document.py:549
msgid "Amendment Not Allowed"
msgstr ""
@@ -2259,15 +2239,6 @@ msgstr ""
msgid "App"
msgstr ""
-#. Label of the app_access_key (Data) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Access Key"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:22
-msgid "App Access Key and/or Secret Key are not present."
-msgstr ""
-
#. Label of the client_id (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client ID"
@@ -2301,16 +2272,11 @@ msgstr ""
msgid "App Name"
msgstr ""
-#. Label of the app_secret_key (Password) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Secret Key"
-msgstr ""
-
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1462
+#: frappe/__init__.py:1465
msgid "App {0} is not installed"
msgstr ""
@@ -2460,7 +2426,7 @@ msgstr ""
msgid "Are you sure you want to clear the assignments?"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:290
+#: frappe/public/js/frappe/form/grid.js:294
msgid "Are you sure you want to delete all rows?"
msgstr ""
@@ -2488,7 +2454,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:965
+#: frappe/public/js/frappe/views/reports/query_report.js:967
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2614,7 +2580,7 @@ msgstr ""
msgid "Assigned By Full Name"
msgstr ""
-#: frappe/model/meta.py:60
+#: 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
@@ -2884,13 +2850,11 @@ msgstr ""
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
#. Contacts'
-#. Label of the authorization_code (Data) field in DocType 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
@@ -2928,12 +2892,6 @@ msgstr ""
msgid "Authorize Google Contacts Access"
msgstr ""
-#. Label of the authorize_google_drive_access (Button) field in DocType 'Google
-#. Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Authorize Google Drive 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"
@@ -3080,11 +3038,11 @@ msgstr ""
msgid "Automatic"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:774
+#: 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:768
+#: frappe/email/doctype/email_account/email_account.py:766
msgid "Automatic Linking can be activated only if Incoming is enabled."
msgstr ""
@@ -3298,66 +3256,14 @@ msgstr ""
msgid "Background Workers"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:170
-msgid "Backing up Data."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:32
-msgid "Backing up to Google Drive."
-msgstr ""
-
-#. Label of a Card Break in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Backup"
-msgstr ""
-
-#. Label of the backup_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Details"
-msgstr ""
-
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
msgstr ""
-#. Label of the backup_files (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Files"
-msgstr ""
-
-#. Label of the backup_folder_id (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder ID"
-msgstr ""
-
-#. Label of the backup_folder_name (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder Name"
-msgstr ""
-
-#. Label of the backup_frequency (Select) field in DocType 'Dropbox Settings'
-#. Label of the frequency (Select) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Frequency"
-msgstr ""
-
-#. Label of the backup_path (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Path"
-msgstr ""
-
#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
msgstr ""
-#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup public and private files along with the database."
-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'
@@ -3371,7 +3277,7 @@ msgstr ""
msgid "Backups (MB)"
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:65
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
msgid "Bad Cron Expression"
msgstr ""
@@ -3768,15 +3674,6 @@ msgstr ""
msgid "Brute Force Security"
msgstr ""
-#. Label of the bucket (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Bucket Name"
-msgstr ""
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:71
-msgid "Bucket {0} not found."
-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"
@@ -3813,7 +3710,7 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1184
+#: frappe/public/js/frappe/form/grid.js:1188
msgid "Bulk Edit {0}"
msgstr ""
@@ -3888,12 +3785,6 @@ msgstr ""
msgid "By default the title is used as meta title, adding a value here will override it."
msgstr ""
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "By default, emails are only sent for failed backups."
-msgstr ""
-
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
@@ -4204,7 +4095,7 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1156
+#: frappe/model/base_document.py:1161
msgid "Cannot Update After Submit"
msgstr ""
@@ -4224,11 +4115,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1012
+#: frappe/model/document.py:1011
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1026
+#: frappe/model/document.py:1025
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -4311,7 +4202,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1032
+#: frappe/model/document.py:1031
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4344,11 +4235,11 @@ msgstr ""
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1128
+#: frappe/public/js/frappe/form/grid.js:1132
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1100
+#: frappe/model/document.py:1099
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4364,7 +4255,7 @@ msgstr ""
msgid "Cannot move row"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:921
+#: frappe/public/js/frappe/views/reports/report_view.js:927
msgid "Cannot remove ID field"
msgstr ""
@@ -4389,11 +4280,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr ""
-#: frappe/model/db_query.py:1125
+#: frappe/model/db_query.py:1126
msgid "Cannot use sub-query in order by"
msgstr ""
-#: frappe/model/db_query.py:1144
+#: frappe/model/db_query.py:1145
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4419,7 +4310,7 @@ msgstr ""
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:261
msgid "Card Label"
msgstr ""
@@ -4561,7 +4452,7 @@ msgstr ""
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:290
+#: frappe/public/js/frappe/views/reports/query_report.js:288
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4581,7 +4472,7 @@ 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:499
+#: frappe/public/js/frappe/views/reports/report_view.js:505
msgid "Chart Type"
msgstr ""
@@ -4695,7 +4586,7 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:638
+#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4788,10 +4679,6 @@ msgstr ""
msgid "Click here to verify"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:47
-msgid "Click on Authorize Google Drive Access to authorize Google Drive Access."
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4818,7 +4705,6 @@ msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
-#: frappe/integrations/doctype/google_drive/google_drive.py:53
#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
msgstr ""
@@ -4992,7 +4878,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Sklopi"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -5047,9 +4933,9 @@ 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:1229
-#: frappe/public/js/frappe/widgets/widget_dialog.js:533
-#: frappe/public/js/frappe/widgets/widget_dialog.js:681
+#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: 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
@@ -5190,7 +5076,7 @@ msgstr ""
msgid "Comment publicity can only be updated by the original author or a System Manager."
msgstr ""
-#: frappe/model/meta.py:59 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/model/meta.js:209
#: frappe/public/js/frappe/model/model.js:135
#: frappe/website/doctype/web_form/templates/web_form.html:122
@@ -5297,7 +5183,7 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:477
+#: frappe/core/doctype/user/user.py:478
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
@@ -5393,7 +5279,7 @@ msgstr ""
msgid "Configuration"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:481
+#: frappe/public/js/frappe/views/reports/report_view.js:487
msgid "Configure Chart"
msgstr ""
@@ -5730,7 +5616,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1096
+#: frappe/model/document.py:1095
msgid "Could not find {0}"
msgstr ""
@@ -5759,7 +5645,7 @@ msgstr ""
msgid "Count"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:527
+#: frappe/public/js/frappe/widgets/widget_dialog.js:540
msgid "Count Customizations"
msgstr ""
@@ -5767,10 +5653,14 @@ msgstr ""
#. 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:512
+#: 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"
@@ -5821,7 +5711,7 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1261
+#: frappe/public/js/frappe/views/reports/query_report.js:1263
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5835,13 +5725,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:188
-#: frappe/public/js/frappe/views/reports/query_report.js:233
+#: frappe/public/js/frappe/views/reports/query_report.js:186
+#: frappe/public/js/frappe/views/reports/query_report.js:231
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:286
-#: frappe/public/js/frappe/views/reports/query_report.js:1188
+#: frappe/public/js/frappe/views/reports/query_report.js:284
+#: frappe/public/js/frappe/views/reports/query_report.js:1190
msgid "Create Chart"
msgstr ""
@@ -5952,7 +5842,7 @@ msgstr ""
msgid "Created At"
msgstr ""
-#: frappe/model/meta.py:56
+#: 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
@@ -5964,14 +5854,14 @@ 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:51
+#: 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:515
+#: frappe/public/js/frappe/desk.js:523
#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
msgstr ""
@@ -5994,7 +5884,7 @@ msgstr ""
msgid "Cron Format"
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:59
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
msgstr ""
@@ -6391,11 +6281,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -6404,9 +6289,6 @@ msgstr ""
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:398
#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
@@ -6960,7 +6842,7 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/toolbar.js:461
-#: frappe/public/js/frappe/views/reports/report_view.js:1734
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
@@ -7003,7 +6885,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:932
+#: frappe/public/js/frappe/views/reports/query_report.js:934
msgid "Delete and Generate New"
msgstr ""
@@ -7012,7 +6894,7 @@ msgctxt "Button text"
msgid "Delete column"
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:738
+#: frappe/public/js/frappe/form/footer/form_timeline.js:741
msgid "Delete comment?"
msgstr ""
@@ -7098,7 +6980,7 @@ msgstr ""
msgid "Deleting {0} records..."
msgstr ""
-#: frappe/public/js/frappe/model/model.js:741
+#: frappe/public/js/frappe/model/model.js:692
msgid "Deleting {0}..."
msgstr ""
@@ -7144,7 +7026,7 @@ 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:310
+#: frappe/public/js/frappe/widgets/widget_dialog.js:323
#: frappe/www/attribution.html:29
msgid "Dependencies"
msgstr ""
@@ -7258,6 +7140,7 @@ msgstr ""
#: 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
@@ -7555,14 +7438,10 @@ 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:1189
+#: frappe/public/js/frappe/form/grid.js:1193
msgid "Do not edit headers which are preset in the template"
msgstr ""
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:69
-msgid "Do not have permission to access bucket {0}."
-msgstr ""
-
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
@@ -7695,7 +7574,7 @@ 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:466
+#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
msgstr ""
@@ -7755,7 +7634,7 @@ 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:669
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
msgid "Doctype"
msgstr "DocType"
@@ -7873,7 +7752,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:477
+#: frappe/model/document.py:476
msgid "Document Queued"
msgstr ""
@@ -7926,7 +7805,7 @@ msgstr ""
msgid "Document States"
msgstr ""
-#: frappe/model/meta.py:52 frappe/public/js/frappe/model/meta.js:202
+#: 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 ""
@@ -7997,11 +7876,11 @@ msgstr ""
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: frappe/permissions.py:148
+#: frappe/permissions.py:149
msgid "Document Type is not importable"
msgstr ""
-#: frappe/permissions.py:144
+#: frappe/permissions.py:145
msgid "Document Type is not submittable"
msgstr ""
@@ -8030,7 +7909,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1943
+#: frappe/model/document.py:1942
msgid "Document Unlocked"
msgstr ""
@@ -8221,7 +8100,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:835
+#: frappe/public/js/frappe/views/reports/query_report.js:830
msgid "Download Report"
msgstr ""
@@ -8232,7 +8111,7 @@ 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:57
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
msgid "Download Your Data"
msgstr ""
@@ -8288,29 +8167,6 @@ msgstr ""
msgid "Drop files here"
msgstr ""
-#. Label of the dropbox_access_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Access Token"
-msgstr ""
-
-#. Label of the dropbox_refresh_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Refresh Token"
-msgstr ""
-
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Dropbox Settings"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:347
-msgid "Dropbox Setup"
-msgstr ""
-
#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
@@ -8340,7 +8196,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:666 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
@@ -8439,13 +8295,13 @@ msgstr ""
#: 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:668
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:669
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:883
-#: frappe/public/js/frappe/views/reports/query_report.js:1722
+#: frappe/public/js/frappe/views/reports/query_report.js:878
+#: frappe/public/js/frappe/views/reports/query_report.js:1724
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8608,7 +8464,7 @@ msgstr ""
msgid "Edit your workflow visually using the Workflow Builder."
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:672
+#: frappe/public/js/frappe/views/reports/report_view.js:678
#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
msgstr ""
@@ -8709,7 +8565,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:736
+#: frappe/core/doctype/user/user.py:738
msgid "Email Account added multiple times"
msgstr ""
@@ -8717,7 +8573,7 @@ msgstr ""
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:578
+#: frappe/email/doctype/email_account/email_account.py:576
msgid "Email Account {0} Disabled"
msgstr ""
@@ -8943,7 +8799,7 @@ msgstr ""
msgid "Emails Pulled"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:936
+#: frappe/email/doctype/email_account/email_account.py:934
msgid "Emails are already being pulled from this account."
msgstr ""
@@ -8966,11 +8822,9 @@ 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 Drive'
#. 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_drive/google_drive.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
msgstr ""
@@ -8990,11 +8844,6 @@ msgstr ""
msgid "Enable Auto Reply"
msgstr ""
-#. Label of the enabled (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Enable Automatic Backup"
-msgstr ""
-
#. Label of the enable_automatic_linking (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -9153,7 +9002,6 @@ msgstr ""
#. 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 'Dropbox Settings'
#. 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'
@@ -9164,7 +9012,6 @@ msgstr ""
#: 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/dropbox_settings/dropbox_settings.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/public/js/frappe/model/indicator.js:106
@@ -9177,7 +9024,7 @@ msgstr ""
msgid "Enabled Scheduler"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:1012
+#: frappe/email/doctype/email_account/email_account.py:1010
msgid "Enabled email inbox for user {0}"
msgstr ""
@@ -9258,11 +9105,6 @@ msgstr ""
msgid "Ended At"
msgstr ""
-#. Label of the endpoint_url (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Endpoint URL"
-msgstr ""
-
#. Label of the sb_endpoints_section (Section Break) field in DocType
#. 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -9441,7 +9283,7 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:672
+#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9449,15 +9291,15 @@ msgstr ""
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr ""
-#: frappe/model/base_document.py:806
+#: frappe/model/base_document.py:803
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:816
+#: frappe/model/base_document.py:813
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:810
+#: frappe/model/base_document.py:807
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9606,7 +9448,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2069
+#: frappe/public/js/frappe/views/reports/query_report.js:2071
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9632,7 +9474,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9689,8 +9531,8 @@ 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:1757
-#: frappe/public/js/frappe/views/reports/report_view.js:1621
+#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
@@ -9741,11 +9583,11 @@ msgstr ""
msgid "Export Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1632
+#: frappe/public/js/frappe/views/reports/report_view.js:1638
msgid "Export all matching rows?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1642
+#: frappe/public/js/frappe/views/reports/report_view.js:1648
msgid "Export all {0} rows?"
msgstr ""
@@ -10053,8 +9895,8 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:237
-#: frappe/public/js/frappe/views/reports/query_report.js:1816
+#: frappe/public/js/frappe/views/reports/query_report.js:235
+#: frappe/public/js/frappe/views/reports/query_report.js:1818
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10129,7 +9971,7 @@ msgstr ""
msgid "Field {0} does not exist on {1}"
msgstr ""
-#: frappe/desk/form/meta.py:208
+#: frappe/desk/form/meta.py:184
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
@@ -10232,7 +10074,7 @@ msgstr ""
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
-#: frappe/model/db_query.py:144
+#: frappe/model/db_query.py:146
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
@@ -10281,13 +10123,6 @@ msgstr ""
msgid "File '{0}' not found"
msgstr ""
-#. Label of the file_backup (Check) field in DocType 'Dropbox Settings'
-#. Label of the file_backup (Check) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "File Backup"
-msgstr ""
-
#. Label of the private_file_section (Section Break) field in DocType 'Access
#. Log'
#: frappe/core/doctype/access_log/access_log.json
@@ -10488,7 +10323,7 @@ msgstr ""
msgid "Filters {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1421
+#: frappe/public/js/frappe/views/reports/report_view.js:1427
msgid "Filters:"
msgstr ""
@@ -10635,7 +10470,7 @@ msgstr ""
msgid "Following document {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:111
+#: frappe/website/doctype/web_form/web_form.py:108
msgid "Following fields are missing:"
msgstr ""
@@ -10643,7 +10478,7 @@ msgstr ""
msgid "Following fields have invalid values:"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:345
+#: frappe/public/js/frappe/widgets/widget_dialog.js:358
msgid "Following fields have missing values"
msgstr ""
@@ -10786,7 +10621,7 @@ msgstr ""
msgid "For Document Type"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:553
+#: frappe/public/js/frappe/widgets/widget_dialog.js:566
msgid "For Example: {} Open"
msgstr ""
@@ -10815,7 +10650,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/query_report.js:2068
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10968,7 +10803,7 @@ msgstr ""
#. 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:552
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
msgid "Format"
msgstr ""
@@ -11000,7 +10835,7 @@ msgstr ""
#. 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:149
+#: frappe/www/login.py:153
msgid "Frappe"
msgstr ""
@@ -11017,7 +10852,7 @@ msgstr ""
msgid "Frappe Mail"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:549
+#: frappe/email/doctype/email_account/email_account.py:547
msgid "Frappe Mail OAuth Error"
msgstr ""
@@ -11045,13 +10880,11 @@ msgstr ""
#. 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'
-#. Label of the frequency (Select) field in DocType 'Google Drive'
#: 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/integrations/doctype/google_drive/google_drive.json
#: frappe/public/js/frappe/utils/common.js:395
msgid "Frequency"
msgstr ""
@@ -11097,7 +10930,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
+#: frappe/public/js/frappe/views/reports/query_report.js:1779
msgid "From Document Type"
msgstr ""
@@ -11148,16 +10981,16 @@ 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:247
-#: frappe/public/js/frappe/widgets/widget_dialog.js:686
+#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:693
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:670
+#: frappe/__init__.py:677
msgid "Function {0} is not whitelisted."
msgstr ""
@@ -11222,7 +11055,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:877
+#: frappe/public/js/frappe/views/reports/query_report.js:872
msgid "Generate New Report"
msgstr ""
@@ -11510,32 +11343,12 @@ msgstr ""
msgid "Google Contacts Id"
msgstr ""
-#. Name of a DocType
-#. Label of the google_drive_section (Section Break) field in DocType 'Google
-#. Drive'
#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/google_drive/google_drive.json
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:117
-msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:132
-msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:193
-msgid "Google Drive - Could not locate - {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:204
-msgid "Google Drive Backup Successful."
-msgstr ""
-
#. Label of the section_break_7 (Section Break) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -11865,6 +11678,10 @@ msgstr ""
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'
@@ -12188,17 +12005,17 @@ msgstr ""
msgid "Home Settings"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:330
-#: frappe/core/doctype/file/test_file.py:332
-#: frappe/core/doctype/file/test_file.py:396
+#: 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:385
+#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:341
+#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
msgstr ""
@@ -12243,7 +12060,7 @@ msgstr ""
#: frappe/core/doctype/data_import/importer.py:1177
#: frappe/core/doctype/data_import/importer.py:1242
#: frappe/core/doctype/data_import/importer.py:1245
-#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:50
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
#: frappe/public/js/frappe/list/list_settings.js:337
@@ -12255,7 +12072,7 @@ msgid "ID"
msgstr ""
#: frappe/desk/reportview.py:491
-#: frappe/public/js/frappe/views/reports/report_view.js:978
+#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
msgstr ""
@@ -12439,12 +12256,6 @@ msgstr ""
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
msgstr ""
-#. Description of the 'Backup Path' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "If it's empty, it will backup to the root of the bucket."
-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"
@@ -12575,16 +12386,12 @@ msgstr ""
msgid "Ignored Apps"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:348
-msgid "Illegal Access Token. Please try again"
-msgstr ""
-
#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
msgstr ""
-#: frappe/model/db_query.py:451 frappe/model/db_query.py:454
-#: frappe/model/db_query.py:1128
+#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
+#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
msgstr ""
@@ -12933,11 +12740,11 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1592
+#: frappe/public/js/frappe/views/reports/query_report.js:1594
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1584
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Include indentation"
msgstr ""
@@ -13004,11 +12811,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1542
+#: frappe/model/document.py:1541
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1544
+#: frappe/model/document.py:1543
msgid "Incorrect value:"
msgstr ""
@@ -13017,10 +12824,10 @@ msgstr ""
#. 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:53
+#: 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:999
+#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
msgstr ""
@@ -13095,7 +12902,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:1822
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
msgid "Insert After"
msgstr ""
@@ -13111,7 +12918,7 @@ msgstr ""
msgid "Insert Below"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:384
+#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
msgstr ""
@@ -13160,11 +12967,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:818
+#: frappe/permissions.py:827
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:376
+#: frappe/database/query.py:383
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -13282,7 +13089,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:221
#: frappe/public/js/frappe/form/grid_row.js:833
#: frappe/public/js/frappe/form/layout.js:811
-#: frappe/public/js/frappe/views/reports/report_view.js:710
+#: frappe/public/js/frappe/views/reports/report_view.js:716
msgid "Invalid \"depends_on\" expression"
msgstr ""
@@ -13322,7 +13129,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:102
+#: frappe/database/query.py:103
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13367,6 +13174,7 @@ 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 ""
@@ -13391,7 +13199,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1226 frappe/www/update-password.html:123
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
#: frappe/www/update-password.html:247
msgid "Invalid Password"
@@ -13420,7 +13228,7 @@ msgstr ""
#: frappe/core/doctype/file/file.py:220
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
-#: frappe/public/js/frappe/widgets/widget_dialog.js:589
+#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
msgstr ""
@@ -13441,11 +13249,11 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:393
+#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
-#: frappe/model/document.py:1015 frappe/model/document.py:1029
+#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13469,7 +13277,7 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:182
+#: frappe/database/query.py:189
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
@@ -13495,7 +13303,7 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:324
+#: frappe/app.py:317
msgid "Invalid request arguments"
msgstr ""
@@ -13679,7 +13487,7 @@ 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:328
+#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
msgstr ""
@@ -13894,6 +13702,10 @@ msgstr ""
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 ""
@@ -13925,7 +13737,7 @@ msgstr ""
#. 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:498
+#: frappe/public/js/frappe/widgets/widget_dialog.js:511
msgid "Kanban Board"
msgstr ""
@@ -14197,10 +14009,10 @@ msgstr ""
#: 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:300
-#: frappe/public/js/frappe/widgets/widget_dialog.js:453
-#: frappe/public/js/frappe/widgets/widget_dialog.js:630
-#: frappe/public/js/frappe/widgets/widget_dialog.js:663
+#: 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
@@ -14285,11 +14097,6 @@ msgstr ""
msgid "Last Active"
msgstr ""
-#. Label of the last_backup_on (Datetime) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Last Backup On"
-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"
@@ -14374,12 +14181,12 @@ msgstr ""
msgid "Last Synced On"
msgstr ""
-#: frappe/model/meta.py:55 frappe/public/js/frappe/model/meta.js:205
+#: 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:54 frappe/public/js/frappe/model/meta.js:204
+#: 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 ""
@@ -14423,7 +14230,7 @@ msgid "Leave blank to repeat always"
msgstr ""
#: frappe/core/doctype/communication/mixins.py:207
-#: frappe/email/doctype/email_account/email_account.py:722
+#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
msgstr ""
@@ -14642,7 +14449,7 @@ msgstr ""
msgid "Liked"
msgstr ""
-#: frappe/model/meta.py:58 frappe/public/js/frappe/model/meta.js:208
+#: 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 ""
@@ -14657,11 +14464,6 @@ msgstr ""
msgid "Limit"
msgstr ""
-#. Label of the limit_no_of_backups (Check) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Limit Number of DB Backups"
-msgstr ""
-
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14776,11 +14578,11 @@ msgstr ""
#: 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:414
+#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:350
+#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
msgstr ""
@@ -14793,7 +14595,7 @@ msgstr ""
msgid "Link Type"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:346
+#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
msgstr ""
@@ -14945,7 +14747,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1085
+#: frappe/public/js/frappe/views/reports/query_report.js:1087
msgid "Loading"
msgstr ""
@@ -15076,7 +14878,7 @@ msgstr ""
msgid "Login Page"
msgstr ""
-#: frappe/www/login.py:152
+#: frappe/www/login.py:156
msgid "Login To {0}"
msgstr ""
@@ -15343,7 +15145,7 @@ msgstr ""
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:473
+#: frappe/website/doctype/web_form/web_form.py:470
msgid "Mandatory Information missing:"
msgstr ""
@@ -15618,7 +15420,7 @@ msgid "Menu"
msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:242
-#: frappe/public/js/frappe/model/model.js:754
+#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr ""
@@ -15797,7 +15599,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:672
+#: frappe/__init__.py:679
msgid "Method Not Allowed"
msgstr ""
@@ -15874,7 +15676,7 @@ msgstr ""
msgid "Miss"
msgstr ""
-#: frappe/desk/form/meta.py:218
+#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
msgstr ""
@@ -15899,7 +15701,7 @@ msgid "Missing Value"
msgstr ""
#: frappe/public/js/frappe/ui/field_group.js:124
-#: frappe/public/js/frappe/widgets/widget_dialog.js:361
+#: 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"
@@ -16082,8 +15884,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -16091,7 +15891,6 @@ msgstr ""
#: 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/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:400
#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
@@ -16263,7 +16062,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:462
+#: frappe/website/doctype/web_form/web_form.py:459
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16429,7 +16228,7 @@ msgstr ""
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:793
+#: frappe/model/document.py:792
msgid "Negative Value"
msgstr ""
@@ -16534,7 +16333,7 @@ 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:762
+#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr ""
@@ -16568,7 +16367,7 @@ msgstr ""
msgid "New Quick List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
msgstr ""
@@ -16624,26 +16423,26 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
#: frappe/public/js/frappe/form/toolbar.js:558
-#: frappe/public/js/frappe/model/model.js:661
+#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:379
+#: frappe/website/doctype/web_form/web_form.py:376
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:394
+#: frappe/public/js/frappe/views/reports/query_report.js:392
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:386
+#: frappe/public/js/frappe/views/reports/query_report.js:384
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:391
+#: frappe/public/js/frappe/views/reports/query_report.js:389
msgid "New {0} {1} created"
msgstr ""
@@ -16655,7 +16454,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:802
+#: frappe/core/doctype/user/user.py:804
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16817,7 +16616,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16958,7 +16757,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:803
+#: frappe/core/doctype/user/user.py:805
msgid "No Roles Specified"
msgstr ""
@@ -17109,7 +16908,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:827 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -17118,7 +16917,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
-#: frappe/model/db_query.py:949
+#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
msgstr ""
@@ -17202,12 +17001,6 @@ msgstr ""
msgid "Non-Conforming"
msgstr ""
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "None"
-msgstr ""
-
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr ""
@@ -17222,7 +17015,7 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr ""
@@ -17243,7 +17036,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:374 frappe/www/404.html:3
+#: frappe/app.py:367 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -17269,9 +17062,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:754 frappe/app.py:367 frappe/desk/calendar.py:26
+#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:711
+#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
@@ -17292,7 +17085,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:813
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
-#: frappe/public/js/frappe/views/reports/report_view.js:197
+#: frappe/public/js/frappe/views/reports/report_view.js:203
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
@@ -17323,7 +17116,7 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:264
+#: frappe/core/doctype/user/user.py:265
msgid "Not a valid User Image."
msgstr ""
@@ -17339,7 +17132,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:360
+#: frappe/permissions.py:370
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17359,7 +17152,7 @@ msgstr ""
msgid "Not allowed to print draft documents"
msgstr ""
-#: frappe/permissions.py:212
+#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
msgstr ""
@@ -17375,12 +17168,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:214
+#: frappe/core/doctype/system_settings/system_settings.py:215
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:724
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17406,15 +17199,6 @@ msgstr ""
msgid "Note:"
msgstr ""
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'Dropbox Settings'
-#. Description of the 'Send Email for Successful backup' (Check) field in
-#. DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Note: By default emails for failed backups are sent."
-msgstr ""
-
#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr ""
@@ -17474,13 +17258,10 @@ msgstr ""
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
#. Name of a DocType
-#. Label of the notification_section (Section Break) field in DocType 'S3
-#. Backup Settings'
#: 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
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Notification"
msgstr ""
@@ -17582,7 +17363,7 @@ msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:615
+#: frappe/public/js/frappe/widgets/widget_dialog.js:628
msgid "Number Card"
msgstr ""
@@ -17600,7 +17381,7 @@ 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:645
+#: frappe/public/js/frappe/widgets/widget_dialog.js:658
msgid "Number Cards"
msgstr ""
@@ -17618,15 +17399,6 @@ msgstr ""
msgid "Number of Backups"
msgstr ""
-#. Label of the no_of_backups (Int) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Number of DB Backups"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:54
-msgid "Number of DB backups cannot be less than 1"
-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"
@@ -17642,7 +17414,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:169
+#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17871,7 +17643,7 @@ 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:322
+#: frappe/public/js/frappe/widgets/widget_dialog.js:335
msgid "Onboard"
msgstr ""
@@ -17967,19 +17739,13 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Only change this if you want to use other S3 compatible object storage backends."
-msgstr ""
-
-#: frappe/model/document.py:1232
+#: frappe/model/document.py:1231
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:315
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
msgstr ""
@@ -18228,7 +17994,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:870
+#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
msgstr ""
@@ -18340,7 +18106,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1742
+#: frappe/public/js/frappe/views/reports/query_report.js:1744
msgid "PDF"
msgstr ""
@@ -18639,7 +18405,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:798
+#: frappe/permissions.py:807
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18699,11 +18465,11 @@ msgstr ""
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1079
+#: frappe/core/doctype/user/user.py:1081
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:457
+#: frappe/core/doctype/user/user.py:458
msgid "Password Reset"
msgstr ""
@@ -18737,7 +18503,7 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1078
+#: frappe/core/doctype/user/user.py:1080
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18749,7 +18515,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:869
+#: frappe/core/doctype/user/user.py:871
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18906,7 +18672,7 @@ msgstr ""
msgid "Permanently Submit {0}?"
msgstr ""
-#: frappe/public/js/frappe/model/model.js:733
+#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
msgstr ""
@@ -19067,8 +18833,8 @@ msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:40
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
-#: frappe/public/js/frappe/views/reports/report_view.js:1576
+#: frappe/public/js/frappe/views/reports/report_view.js:1579
+#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
msgstr ""
@@ -19108,7 +18874,7 @@ msgstr ""
msgid "Plant"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:546
+#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
msgstr ""
@@ -19124,7 +18890,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:309
+#: frappe/public/js/frappe/views/reports/query_report.js:307
msgid "Please Set Chart"
msgstr ""
@@ -19140,7 +18906,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1063
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -19168,11 +18934,11 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:946
+#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1059
+#: frappe/core/doctype/user/user.py:1061
msgid "Please check your email for verification"
msgstr ""
@@ -19200,10 +18966,6 @@ msgstr ""
msgid "Please click on the following link to set your new password"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:343
-msgid "Please close this window"
-msgstr ""
-
#: frappe/www/confirm_workflow_action.html:4
msgid "Please confirm your action to {0} this document."
msgstr ""
@@ -19220,7 +18982,7 @@ msgstr ""
msgid "Please create chart first"
msgstr ""
-#: frappe/desk/form/meta.py:214
+#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
msgstr ""
@@ -19232,7 +18994,7 @@ msgstr "Ne mijenjaj Naslove Predložaka."
msgid "Please duplicate this to make changes"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:162
+#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19250,7 +19012,7 @@ msgstr ""
msgid "Please enable pop-ups in your browser"
msgstr ""
-#: frappe/integrations/google_oauth.py:53
+#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
msgstr ""
@@ -19327,7 +19089,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:987
+#: frappe/model/document.py:986
msgid "Please refresh to get the latest document."
msgstr ""
@@ -19351,7 +19113,7 @@ msgstr ""
msgid "Please save the document before removing assignment"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1703
+#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
msgstr ""
@@ -19367,11 +19129,11 @@ msgstr ""
msgid "Please select Entity Type first"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:112
+#: frappe/core/doctype/system_settings/system_settings.py:113
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1181
+#: frappe/public/js/frappe/views/reports/query_report.js:1183
msgid "Please select X and Y fields"
msgstr ""
@@ -19399,7 +19161,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1140
+#: frappe/model/db_query.py:1141
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19421,10 +19183,6 @@ msgstr ""
msgid "Please select {0}"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:305
-msgid "Please set Dropbox access keys in site config or doctype"
-msgstr ""
-
#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
msgstr ""
@@ -19433,7 +19191,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:1404
+#: frappe/public/js/frappe/views/reports/query_report.js:1406
msgid "Please set filters"
msgstr ""
@@ -19453,7 +19211,7 @@ msgstr ""
msgid "Please set the series to be used."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:125
+#: frappe/core/doctype/system_settings/system_settings.py:126
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr ""
@@ -19461,19 +19219,19 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:422
+#: frappe/core/doctype/user/user.py:423
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:434
+#: frappe/email/doctype/email_account/email_account.py:432
msgid "Please setup default outgoing Email Account from Tools > Email Account"
msgstr "Postavi zadani račun odlazne e-pošte iz Alati > Račun e-pošte"
-#: frappe/public/js/frappe/model/model.js:823
+#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:774
+#: frappe/permissions.py:783
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19502,7 +19260,7 @@ msgstr ""
msgid "Please try again"
msgstr ""
-#: frappe/integrations/google_oauth.py:56
+#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
msgstr ""
@@ -19815,8 +19573,8 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1728
-#: frappe/public/js/frappe/views/reports/report_view.js:1531
+#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr ""
@@ -20059,7 +19817,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
msgstr ""
@@ -20380,7 +20138,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:729
+#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
msgstr "Red Čekanja Preopterećen"
@@ -20401,7 +20159,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:554
+#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
msgstr ""
@@ -20434,12 +20192,6 @@ msgstr ""
msgid "Queued for Submission. You can track the progress over {0}."
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:65
-#: frappe/integrations/doctype/google_drive/google_drive.py:153
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:86
-msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr ""
-
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
@@ -20575,7 +20327,7 @@ msgstr ""
msgid "Re-Run in Console"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:728
+#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
msgstr ""
@@ -20677,7 +20429,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:889
+#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
msgstr ""
@@ -21042,11 +20794,11 @@ msgid "Referrer"
msgstr ""
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:548
+#: frappe/public/js/frappe/desk.js:556
#: 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:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1719
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21065,12 +20817,10 @@ 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 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
@@ -21087,7 +20837,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
msgstr ""
@@ -21250,7 +21000,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
#: frappe/public/js/frappe/form/toolbar.js:432
-#: frappe/public/js/frappe/model/model.js:772
+#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
msgstr ""
@@ -21260,7 +21010,7 @@ msgstr ""
msgid "Rename Fieldname"
msgstr ""
-#: frappe/public/js/frappe/model/model.js:759
+#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
msgstr ""
@@ -21324,7 +21074,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:146
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
msgstr ""
@@ -21462,7 +21212,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1902
+#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
msgstr ""
@@ -21514,7 +21264,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1009
+#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
msgstr ""
@@ -21530,11 +21280,11 @@ msgstr ""
msgid "Report updated successfully"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1351
+#: frappe/public/js/frappe/views/reports/report_view.js:1357
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1940
+#: frappe/public/js/frappe/views/reports/query_report.js:1942
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21570,7 +21320,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:925
+#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
msgstr ""
@@ -22020,7 +21770,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:363
+#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -22135,7 +21885,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:855 frappe/model/document.py:778
+#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
msgstr ""
@@ -22148,7 +21898,7 @@ msgstr ""
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:982
msgid "Row #{0}:"
msgstr ""
@@ -22226,7 +21976,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:653
+#: frappe/permissions.py:662
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22270,23 +22020,6 @@ msgstr "Vrijeme izvođenja u Minutama"
msgid "Runtime in Seconds"
msgstr "Vrijeme izvođenja u Sekundama"
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "S3 Backup Settings"
-msgstr ""
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
-msgid "S3 Backup complete!"
-msgstr ""
-
-#. Label of the s3_bucket_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Bucket Details"
-msgstr ""
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
@@ -22427,7 +22160,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/page/print/print.js:858
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/quick_entry.js:185
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
@@ -22437,8 +22170,8 @@ msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
-#: frappe/public/js/frappe/views/reports/query_report.js:1894
-#: frappe/public/js/frappe/views/reports/report_view.js:1720
+#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
@@ -22455,8 +22188,8 @@ msgstr ""
msgid "Save Anyway"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1382
-#: frappe/public/js/frappe/views/reports/report_view.js:1727
+#: frappe/public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
msgstr ""
@@ -22464,7 +22197,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1897
+#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
msgstr ""
@@ -22630,7 +22363,7 @@ msgstr ""
msgid "Scheduler Status"
msgstr ""
-#: frappe/utils/scheduler.py:249
+#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr ""
@@ -22856,7 +22589,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:858
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "See all past reports."
msgstr ""
@@ -22936,7 +22669,7 @@ msgstr ""
msgid "Select Child Table"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:377
+#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
msgstr ""
@@ -23253,31 +22986,11 @@ msgstr ""
msgid "Send Email To Creator"
msgstr "Pošalji e-poštu Stvaraocu"
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Dropbox Settings'
-#. Label of the send_email_for_successful_backup (Check) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Email for Successful Backup"
-msgstr ""
-
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Email for Successful backup"
-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 email (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Notification To"
-msgstr ""
-
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -23294,14 +23007,6 @@ msgstr ""
msgid "Send Notifications For Email Threads"
msgstr ""
-#. Label of the send_notifications_to (Data) field in DocType 'Dropbox
-#. Settings'
-#. Label of the notify_email (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Notifications To"
-msgstr ""
-
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
msgstr ""
@@ -23560,7 +23265,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:383 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23626,7 +23331,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:360
+#: frappe/app.py:353
msgid "Session Expired"
msgstr ""
@@ -23635,7 +23340,7 @@ msgstr ""
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:119
+#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
msgstr ""
@@ -23658,7 +23363,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:201
+#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
msgstr ""
@@ -23684,7 +23389,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
msgstr ""
@@ -23902,8 +23607,8 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1763
-#: frappe/public/js/frappe/views/reports/report_view.js:1698
+#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23999,6 +23704,15 @@ msgstr ""
msgid "Show \"Call to Action\" in Blog"
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"
@@ -24169,7 +23883,7 @@ msgstr ""
msgid "Show Title in Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1521
+#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
msgstr ""
@@ -24279,7 +23993,7 @@ msgstr ""
msgid "Show {0} List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:495
+#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
msgstr ""
@@ -24314,7 +24028,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
msgstr ""
@@ -24959,7 +24673,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
-#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: frappe/public/js/frappe/views/reports/report_view.js:975
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
@@ -25258,7 +24972,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:1166
+#: frappe/public/js/frappe/form/grid.js:1170
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25355,7 +25069,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:720
+#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
msgstr ""
@@ -25645,11 +25359,9 @@ msgstr ""
#: frappe/geo/doctype/country/country.json
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/connected_app/connected_app.json
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.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_drive/google_drive.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
@@ -25658,7 +25370,6 @@ msgstr ""
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_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
@@ -25783,11 +25494,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1165
+#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1565
+#: frappe/model/document.py:1564
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25806,7 +25517,7 @@ msgstr ""
msgid "Tag Link"
msgstr ""
-#: frappe/model/meta.py:57
+#: 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
@@ -25818,15 +25529,6 @@ msgstr ""
msgid "Tags"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:29
-msgid "Take Backup"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
-msgid "Take Backup Now"
-msgstr ""
-
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
msgstr ""
@@ -25904,12 +25606,12 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1027
+#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
msgstr ""
-#: frappe/core/doctype/translation/test_translation.py:56
-#: frappe/core/doctype/translation/test_translation.py:63
+#: frappe/core/doctype/translation/test_translation.py:47
+#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
msgstr ""
@@ -25918,8 +25620,8 @@ msgstr ""
msgid "Test Job ID"
msgstr ""
-#: frappe/core/doctype/translation/test_translation.py:58
-#: frappe/core/doctype/translation/test_translation.py:66
+#: frappe/core/doctype/translation/test_translation.py:49
+#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
msgstr ""
@@ -25927,7 +25629,7 @@ msgstr ""
msgid "Test email sent to {0}"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:388
+#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -26008,7 +25710,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1188
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
msgstr ""
@@ -26176,15 +25878,15 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:987
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:991
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -26196,7 +25898,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:334
+#: frappe/utils/response.py:331
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26257,7 +25959,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26286,7 +25988,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:958
+#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26373,12 +26075,12 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:750
+#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:117
-#: frappe/public/js/frappe/model/model.js:755
+#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr ""
@@ -26416,7 +26118,7 @@ msgstr ""
msgid "This document is already amended, you cannot ammend it again"
msgstr ""
-#: frappe/model/document.py:474
+#: frappe/model/document.py:473
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -26477,7 +26179,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2132
+#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26541,7 +26243,7 @@ msgstr ""
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1033
+#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26549,7 +26251,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:856
+#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
msgstr ""
@@ -26615,7 +26317,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1240
+#: frappe/core/doctype/user/user.py:1242
msgid "Throttled"
msgstr ""
@@ -26966,7 +26668,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:857
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26991,10 +26693,6 @@ msgstr ""
msgid "To use Google Contacts, enable {0}."
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:8
-msgid "To use Google Drive, enable {0}."
-msgstr ""
-
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -27025,7 +26723,7 @@ msgstr ""
msgid "Today"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1564
+#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
msgstr ""
@@ -27041,7 +26739,7 @@ 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:1568
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
msgstr ""
@@ -27097,11 +26795,11 @@ msgstr ""
msgid "Too many changes to database in single action."
msgstr ""
-#: frappe/utils/background_jobs.py:728
+#: frappe/utils/background_jobs.py:730
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr "Previše pozadinskih poslova u čekanju ({0}). Pokušaj ponovno nakon nekog vremena."
-#: frappe/core/doctype/user/user.py:1028
+#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -27165,8 +26863,8 @@ msgstr ""
#: frappe/desk/query_report.py:533
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1320
-#: frappe/public/js/frappe/views/reports/report_view.js:1545
+#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr ""
@@ -27229,11 +26927,11 @@ msgstr ""
msgid "Total:"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1250
+#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1225
+#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
msgstr ""
@@ -27346,7 +27044,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2188
+#: frappe/public/js/frappe/views/reports/query_report.js:2183
msgid "Translate Data"
msgstr "Prevedi Podatke"
@@ -27357,7 +27055,7 @@ msgstr "Prevedi Podatke"
msgid "Translate Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1650
+#: frappe/public/js/frappe/views/reports/report_view.js:1656
msgid "Translate values"
msgstr ""
@@ -27505,7 +27203,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/views/file/file_view.js:337
#: frappe/public/js/frappe/views/workspace/workspace.js:399
-#: frappe/public/js/frappe/widgets/widget_dialog.js:391
+#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
msgid "Type"
@@ -27585,7 +27283,7 @@ msgstr ""
#: 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:458
+#: 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"
@@ -27647,7 +27345,7 @@ msgstr ""
msgid "Unable to load camera."
msgstr ""
-#: frappe/public/js/frappe/model/model.js:268
+#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
msgstr ""
@@ -27676,7 +27374,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:383
+#: frappe/app.py:376
msgid "Uncaught Exception"
msgstr ""
@@ -27909,7 +27607,7 @@ msgstr ""
msgid "Updated Successfully"
msgstr ""
-#: frappe/public/js/frappe/desk.js:444
+#: frappe/public/js/frappe/desk.js:452
msgid "Updated To A New Version 🎉"
msgstr ""
@@ -27917,7 +27615,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:333
+#: frappe/utils/response.py:330
msgid "Updating"
msgstr ""
@@ -27991,18 +27689,6 @@ msgstr ""
msgid "Uploaded To Google Drive"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:196
-msgid "Uploading backup to Google Drive."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:201
-msgid "Uploading successful."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:16
-msgid "Uploading to Google Drive"
-msgstr ""
-
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -28086,11 +27772,11 @@ msgstr ""
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:434
+#: frappe/model/db_query.py:435
msgid "Use of function {0} in field is restricted"
msgstr ""
-#: frappe/model/db_query.py:411
+#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
msgstr ""
@@ -28207,7 +27893,7 @@ msgstr ""
msgid "User Cannot Search"
msgstr ""
-#: frappe/public/js/frappe/desk.js:546
+#: frappe/public/js/frappe/desk.js:554
msgid "User Changed"
msgstr ""
@@ -28313,8 +27999,8 @@ 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:1881
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
@@ -28411,7 +28097,7 @@ msgstr ""
msgid "User permission already exists"
msgstr ""
-#: frappe/www/login.py:167
+#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
msgstr ""
@@ -28419,23 +28105,23 @@ msgstr ""
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: frappe/core/doctype/user/user.py:536
+#: frappe/core/doctype/user/user.py:537
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:326
+#: frappe/core/doctype/user/user.py:327
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:602
+#: frappe/core/doctype/user/user.py:603
msgid "User {0} cannot be renamed"
msgstr ""
-#: frappe/permissions.py:138
+#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
msgstr ""
-#: frappe/permissions.py:161
+#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr ""
@@ -28448,7 +28134,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1369
+#: frappe/core/doctype/user/user.py:1371
msgid "User {0} impersonated as {1}"
msgstr ""
@@ -28477,7 +28163,7 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:687
+#: frappe/core/doctype/user/user.py:689
msgid "Username {0} already exists"
msgstr ""
@@ -28617,15 +28303,15 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1049 frappe/model/document.py:834
+#: frappe/model/base_document.py:1054 frappe/model/document.py:833
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:780
+#: frappe/model/document.py:779
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:784
+#: frappe/model/document.py:783
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28656,7 +28342,7 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1124
msgid "Value too big"
msgstr ""
@@ -29257,11 +28943,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -29270,9 +28951,6 @@ msgstr ""
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:399
#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
@@ -29307,11 +28985,11 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:414
+#: frappe/core/doctype/user/user.py:415
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:475
+#: frappe/core/doctype/user/user.py:476
msgid "Welcome to {0}"
msgstr ""
@@ -29344,7 +29022,7 @@ 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:468
+#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
msgstr ""
@@ -29543,7 +29221,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:177
+#: frappe/public/js/frappe/router.js:173
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29613,11 +29291,11 @@ msgstr ""
msgid "Workspaces"
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:753
+#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
msgstr ""
@@ -29636,11 +29314,11 @@ msgstr ""
msgid "Write"
msgstr ""
-#: frappe/model/base_document.py:949
+#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:484
+#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
msgstr ""
@@ -29659,13 +29337,13 @@ msgstr ""
msgid "Y Axis"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:491
+#: frappe/public/js/frappe/views/reports/report_view.js:497
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:1221
+#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
msgstr ""
@@ -29726,7 +29404,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29766,11 +29444,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:409
+#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:398
+#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29793,7 +29471,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:604
+#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29805,7 +29483,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:569
+#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29821,7 +29499,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:669
+#: frappe/__init__.py:676
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29829,7 +29507,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr ""
-#: frappe/core/doctype/installed_applications/installed_applications.py:82
+#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -29993,11 +29671,11 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:368
+#: frappe/app.py:361
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:838
+#: frappe/desk/query_report.py:831
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -30009,11 +29687,11 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:772
+#: frappe/website/doctype/web_form/web_form.py:769
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:286 frappe/utils/response.py:290
+#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
msgstr ""
@@ -30021,7 +29699,7 @@ msgstr ""
msgid "You don't have permission to get a report on: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:175
+#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
msgstr ""
@@ -30074,23 +29752,23 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:339
+#: 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:768
+#: frappe/website/doctype/web_form/web_form.py:765
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:609
+#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:357
+#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
@@ -30106,11 +29784,11 @@ msgstr ""
msgid "You need to be a system user to access this page."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:94
+#: 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:275
+#: frappe/utils/response.py:272
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -30118,7 +29796,7 @@ msgstr ""
msgid "You need to be logged in to access this page"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:164
+#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
msgstr ""
@@ -30193,7 +29871,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/desk.js:543
+#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -30276,7 +29954,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:354
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -30507,7 +30185,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:403 frappe/permissions.py:414
+#: frappe/permissions.py:412 frappe/permissions.py:423
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -31059,7 +30737,7 @@ msgstr ""
msgid "{0} Calendar"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:564
+#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
msgstr ""
@@ -31107,7 +30785,7 @@ msgstr ""
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1149
+#: frappe/model/base_document.py:1154
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -31117,7 +30795,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:952
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
msgstr ""
@@ -31183,7 +30861,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:149
+#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
msgstr ""
@@ -31196,7 +30874,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:547
+#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -31321,7 +30999,7 @@ msgstr ""
msgid "{0} is an invalid email address in 'Recipients'"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1462
+#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
msgstr ""
@@ -31330,27 +31008,27 @@ msgstr ""
msgid "{0} is currently {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1431
+#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1451
+#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1441
+#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1456
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1446
+#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1481
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
msgstr ""
@@ -31370,7 +31048,7 @@ msgstr ""
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:64
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
msgstr ""
@@ -31399,11 +31077,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:787
+#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31415,27 +31093,27 @@ msgstr ""
msgid "{0} is not a zip file"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1436
+#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1483
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1487
+#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:165
+#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1470
+#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
msgstr ""
@@ -31446,11 +31124,11 @@ msgstr ""
msgid "{0} is required"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1486
+#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1465
+#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
msgstr ""
@@ -31458,12 +31136,12 @@ msgstr ""
msgid "{0} items selected"
msgstr ""
-#: frappe/core/doctype/user/user.py:1378
+#: frappe/core/doctype/user/user.py:1380
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:104
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
msgstr ""
@@ -31479,7 +31157,7 @@ msgstr ""
msgid "{0} m"
msgstr ""
-#: frappe/desk/notifications.py:397
+#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
msgstr ""
@@ -31491,35 +31169,35 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1792
+#: frappe/model/document.py:1791
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1551
+#: frappe/model/document.py:1550
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1553
+#: frappe/model/document.py:1552
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1549
+#: frappe/model/document.py:1548
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1547 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:875
+#: frappe/model/base_document.py:876
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:732
+#: frappe/model/base_document.py:729
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1555
+#: frappe/model/document.py:1554
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31594,7 +31272,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1785
+#: frappe/model/document.py:1784
msgid "{0} row #{1}: "
msgstr ""
@@ -31690,11 +31368,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:665 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:987
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -31710,7 +31388,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:260 frappe/permissions.py:558
+#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
msgstr ""
@@ -31718,7 +31396,7 @@ msgstr ""
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1110
+#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
msgstr ""
@@ -31726,7 +31404,7 @@ msgstr ""
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1115
+#: frappe/model/base_document.py:1120
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
@@ -31827,7 +31505,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1279
+#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
msgstr ""
diff --git a/frappe/locale/hu.po b/frappe/locale/hu.po
index 1c3c741251..5a063ebaf7 100644
--- a/frappe/locale/hu.po
+++ b/frappe/locale/hu.po
@@ -2,14 +2,14 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-08 09:34+0000\n"
-"PO-Revision-Date: 2025-06-16 15:29\n"
+"POT-Creation-Date: 2025-06-22 09:34+0000\n"
+"PO-Revision-Date: 2025-06-22 16:40\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.13.1\n"
+"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"
@@ -140,7 +140,7 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:951
+#: frappe/public/js/frappe/views/reports/query_report.js:953
msgid "1 Report"
msgstr ""
@@ -148,7 +148,7 @@ msgstr ""
msgid "1 comment"
msgstr ""
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:711
msgid "1 day ago"
msgstr ""
@@ -157,17 +157,17 @@ msgid "1 hour"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:709
msgid "1 hour ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:707
msgid "1 minute ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:715
msgid "1 month ago"
msgstr ""
@@ -179,37 +179,37 @@ msgstr ""
msgid "1 record will be exported"
msgstr ""
-#: frappe/tests/test_utils.py:705
+#: frappe/tests/test_utils.py:706
msgid "1 second ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:713
msgid "1 week ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:717
msgid "1 year ago"
msgstr ""
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:710
msgid "2 hours ago"
msgstr ""
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:716
msgid "2 months ago"
msgstr ""
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:714
msgid "2 weeks ago"
msgstr ""
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:718
msgid "2 years ago"
msgstr ""
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:708
msgid "3 minutes ago"
msgstr ""
@@ -225,7 +225,7 @@ msgstr ""
msgid "5 Records"
msgstr ""
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:712
msgid "5 days ago"
msgstr ""
@@ -245,7 +245,7 @@ msgstr ""
msgid "<="
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:588
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
msgid "{0} is not a valid URL"
msgstr ""
@@ -654,10 +654,7 @@ msgid "API"
msgstr ""
#. Label of the api_access (Section Break) field in DocType 'User'
-#. Label of the api_access_section (Section Break) field in DocType 'S3 Backup
-#. Settings'
#: frappe/core/doctype/user/user.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "API Access"
msgstr ""
@@ -769,17 +766,6 @@ msgstr ""
msgid "Access Control"
msgstr ""
-#. Label of the access_key_id (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key ID"
-msgstr ""
-
-#. Label of the secret_access_key (Password) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key Secret"
-msgstr ""
-
#. Name of a DocType
#. Label of a Link in the Users Workspace
#: frappe/core/doctype/access_log/access_log.json
@@ -830,6 +816,10 @@ msgstr ""
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'
@@ -860,7 +850,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1872
+#: frappe/model/document.py:1871
msgid "Action Failed"
msgstr ""
@@ -909,10 +899,10 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:192
-#: frappe/public/js/frappe/views/reports/query_report.js:205
-#: frappe/public/js/frappe/views/reports/query_report.js:215
-#: frappe/public/js/frappe/views/reports/query_report.js:845
+#: frappe/public/js/frappe/views/reports/query_report.js:190
+#: frappe/public/js/frappe/views/reports/query_report.js:203
+#: frappe/public/js/frappe/views/reports/query_report.js:213
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Actions"
msgstr ""
@@ -974,8 +964,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:267
-#: frappe/public/js/frappe/views/reports/query_report.js:295
+#: frappe/public/js/frappe/views/reports/query_report.js:265
+#: frappe/public/js/frappe/views/reports/query_report.js:293
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr ""
@@ -1016,7 +1006,7 @@ msgstr ""
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:211
+#: frappe/public/js/frappe/views/reports/query_report.js:209
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1025,10 +1015,10 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1769
-#: frappe/public/js/frappe/views/reports/query_report.js:1772
-#: frappe/public/js/frappe/views/reports/report_view.js:349
-#: frappe/public/js/frappe/views/reports/report_view.js:374
+#: frappe/public/js/frappe/views/reports/query_report.js:1771
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/report_view.js:355
+#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
msgstr ""
@@ -1052,7 +1042,7 @@ msgid "Add Custom Tags"
msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
-#: frappe/public/js/frappe/widgets/widget_dialog.js:703
+#: frappe/public/js/frappe/widgets/widget_dialog.js:716
msgid "Add Filters"
msgstr ""
@@ -1087,7 +1077,7 @@ msgstr ""
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:806
+#: frappe/core/doctype/user/user.py:808
msgid "Add Roles"
msgstr ""
@@ -1232,7 +1222,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:253
+#: frappe/public/js/frappe/views/reports/query_report.js:251
msgid "Add to Dashboard"
msgstr ""
@@ -1387,11 +1377,11 @@ msgstr ""
msgid "Administrator"
msgstr ""
-#: frappe/core/doctype/user/user.py:1211
+#: frappe/core/doctype/user/user.py:1213
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1205
+#: frappe/core/doctype/user/user.py:1207
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
@@ -1624,12 +1614,6 @@ msgstr ""
msgid "Allow Consecutive Login Attempts "
msgstr ""
-#. Label of the allow_dropbox_access (Button) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Allow Dropbox Access"
-msgstr ""
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
msgid "Allow Google Calendar Access"
msgstr ""
@@ -1638,10 +1622,6 @@ msgstr ""
msgid "Allow Google Contacts Access"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:52
-msgid "Allow Google Drive Access"
-msgstr ""
-
#. Label of the allow_guest (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
@@ -1895,7 +1875,7 @@ msgstr ""
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
-#: frappe/core/doctype/user/user.py:1021
+#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr ""
@@ -1903,11 +1883,11 @@ msgstr ""
msgid "Already in the following Users ToDo list:{0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:896
+#: frappe/public/js/frappe/views/reports/report_view.js:902
msgid "Also adding the dependent currency field {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:909
+#: frappe/public/js/frappe/views/reports/report_view.js:915
msgid "Also adding the status dependency field {0}"
msgstr ""
@@ -1986,7 +1966,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:550
+#: frappe/model/document.py:549
msgid "Amendment Not Allowed"
msgstr "Módosítás nem engedélyezett"
@@ -2075,15 +2055,6 @@ msgstr ""
msgid "App"
msgstr ""
-#. Label of the app_access_key (Data) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Access Key"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:22
-msgid "App Access Key and/or Secret Key are not present."
-msgstr ""
-
#. Label of the client_id (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client ID"
@@ -2117,16 +2088,11 @@ msgstr ""
msgid "App Name"
msgstr ""
-#. Label of the app_secret_key (Password) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Secret Key"
-msgstr ""
-
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1462
+#: frappe/__init__.py:1465
msgid "App {0} is not installed"
msgstr ""
@@ -2276,7 +2242,7 @@ msgstr ""
msgid "Are you sure you want to clear the assignments?"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:290
+#: frappe/public/js/frappe/form/grid.js:294
msgid "Are you sure you want to delete all rows?"
msgstr ""
@@ -2304,7 +2270,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:965
+#: frappe/public/js/frappe/views/reports/query_report.js:967
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2430,7 +2396,7 @@ msgstr ""
msgid "Assigned By Full Name"
msgstr ""
-#: frappe/model/meta.py:60
+#: 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
@@ -2700,13 +2666,11 @@ msgstr ""
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
#. Contacts'
-#. Label of the authorization_code (Data) field in DocType 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
@@ -2744,12 +2708,6 @@ msgstr ""
msgid "Authorize Google Contacts Access"
msgstr ""
-#. Label of the authorize_google_drive_access (Button) field in DocType 'Google
-#. Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Authorize Google Drive 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"
@@ -2896,11 +2854,11 @@ msgstr ""
msgid "Automatic"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:774
+#: 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:768
+#: frappe/email/doctype/email_account/email_account.py:766
msgid "Automatic Linking can be activated only if Incoming is enabled."
msgstr ""
@@ -3114,66 +3072,14 @@ msgstr ""
msgid "Background Workers"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:170
-msgid "Backing up Data."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:32
-msgid "Backing up to Google Drive."
-msgstr ""
-
-#. Label of a Card Break in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Backup"
-msgstr ""
-
-#. Label of the backup_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Details"
-msgstr ""
-
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
msgstr ""
-#. Label of the backup_files (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Files"
-msgstr ""
-
-#. Label of the backup_folder_id (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder ID"
-msgstr ""
-
-#. Label of the backup_folder_name (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder Name"
-msgstr ""
-
-#. Label of the backup_frequency (Select) field in DocType 'Dropbox Settings'
-#. Label of the frequency (Select) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Frequency"
-msgstr ""
-
-#. Label of the backup_path (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Path"
-msgstr ""
-
#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
msgstr ""
-#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup public and private files along with the database."
-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'
@@ -3187,7 +3093,7 @@ msgstr ""
msgid "Backups (MB)"
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:65
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
msgid "Bad Cron Expression"
msgstr ""
@@ -3584,15 +3490,6 @@ msgstr ""
msgid "Brute Force Security"
msgstr ""
-#. Label of the bucket (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Bucket Name"
-msgstr ""
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:71
-msgid "Bucket {0} not found."
-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"
@@ -3629,7 +3526,7 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1184
+#: frappe/public/js/frappe/form/grid.js:1188
msgid "Bulk Edit {0}"
msgstr ""
@@ -3704,12 +3601,6 @@ msgstr ""
msgid "By default the title is used as meta title, adding a value here will override it."
msgstr ""
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "By default, emails are only sent for failed backups."
-msgstr ""
-
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
@@ -4020,7 +3911,7 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1156
+#: frappe/model/base_document.py:1161
msgid "Cannot Update After Submit"
msgstr ""
@@ -4040,11 +3931,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1012
+#: frappe/model/document.py:1011
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1026
+#: frappe/model/document.py:1025
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -4127,7 +4018,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1032
+#: frappe/model/document.py:1031
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4160,11 +4051,11 @@ msgstr ""
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1128
+#: frappe/public/js/frappe/form/grid.js:1132
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1100
+#: frappe/model/document.py:1099
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4180,7 +4071,7 @@ msgstr ""
msgid "Cannot move row"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:921
+#: frappe/public/js/frappe/views/reports/report_view.js:927
msgid "Cannot remove ID field"
msgstr ""
@@ -4205,11 +4096,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr ""
-#: frappe/model/db_query.py:1125
+#: frappe/model/db_query.py:1126
msgid "Cannot use sub-query in order by"
msgstr ""
-#: frappe/model/db_query.py:1144
+#: frappe/model/db_query.py:1145
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4235,7 +4126,7 @@ msgstr ""
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:261
msgid "Card Label"
msgstr ""
@@ -4377,7 +4268,7 @@ msgstr ""
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:290
+#: frappe/public/js/frappe/views/reports/query_report.js:288
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4397,7 +4288,7 @@ 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:499
+#: frappe/public/js/frappe/views/reports/report_view.js:505
msgid "Chart Type"
msgstr ""
@@ -4511,7 +4402,7 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:638
+#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4604,10 +4495,6 @@ msgstr ""
msgid "Click here to verify"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:47
-msgid "Click on Authorize Google Drive Access to authorize Google Drive Access."
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4634,7 +4521,6 @@ msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
-#: frappe/integrations/doctype/google_drive/google_drive.py:53
#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
msgstr ""
@@ -4808,7 +4694,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4863,9 +4749,9 @@ 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:1229
-#: frappe/public/js/frappe/widgets/widget_dialog.js:533
-#: frappe/public/js/frappe/widgets/widget_dialog.js:681
+#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: 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
@@ -5006,7 +4892,7 @@ msgstr ""
msgid "Comment publicity can only be updated by the original author or a System Manager."
msgstr ""
-#: frappe/model/meta.py:59 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/model/meta.js:209
#: frappe/public/js/frappe/model/model.js:135
#: frappe/website/doctype/web_form/templates/web_form.html:122
@@ -5113,7 +4999,7 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:477
+#: frappe/core/doctype/user/user.py:478
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
@@ -5209,7 +5095,7 @@ msgstr ""
msgid "Configuration"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:481
+#: frappe/public/js/frappe/views/reports/report_view.js:487
msgid "Configure Chart"
msgstr ""
@@ -5546,7 +5432,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1096
+#: frappe/model/document.py:1095
msgid "Could not find {0}"
msgstr ""
@@ -5575,7 +5461,7 @@ msgstr ""
msgid "Count"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:527
+#: frappe/public/js/frappe/widgets/widget_dialog.js:540
msgid "Count Customizations"
msgstr ""
@@ -5583,10 +5469,14 @@ msgstr ""
#. 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:512
+#: 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"
@@ -5637,7 +5527,7 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1261
+#: frappe/public/js/frappe/views/reports/query_report.js:1263
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5651,13 +5541,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:188
-#: frappe/public/js/frappe/views/reports/query_report.js:233
+#: frappe/public/js/frappe/views/reports/query_report.js:186
+#: frappe/public/js/frappe/views/reports/query_report.js:231
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:286
-#: frappe/public/js/frappe/views/reports/query_report.js:1188
+#: frappe/public/js/frappe/views/reports/query_report.js:284
+#: frappe/public/js/frappe/views/reports/query_report.js:1190
msgid "Create Chart"
msgstr ""
@@ -5768,7 +5658,7 @@ msgstr ""
msgid "Created At"
msgstr ""
-#: frappe/model/meta.py:56
+#: 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
@@ -5780,14 +5670,14 @@ 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:51
+#: 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:515
+#: frappe/public/js/frappe/desk.js:523
#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
msgstr ""
@@ -5810,7 +5700,7 @@ msgstr ""
msgid "Cron Format"
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:59
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
msgstr ""
@@ -6207,11 +6097,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -6220,9 +6105,6 @@ msgstr ""
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:398
#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
@@ -6776,7 +6658,7 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/toolbar.js:461
-#: frappe/public/js/frappe/views/reports/report_view.js:1734
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
@@ -6819,7 +6701,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:932
+#: frappe/public/js/frappe/views/reports/query_report.js:934
msgid "Delete and Generate New"
msgstr ""
@@ -6828,7 +6710,7 @@ msgctxt "Button text"
msgid "Delete column"
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:738
+#: frappe/public/js/frappe/form/footer/form_timeline.js:741
msgid "Delete comment?"
msgstr ""
@@ -6914,7 +6796,7 @@ msgstr ""
msgid "Deleting {0} records..."
msgstr ""
-#: frappe/public/js/frappe/model/model.js:741
+#: frappe/public/js/frappe/model/model.js:692
msgid "Deleting {0}..."
msgstr ""
@@ -6960,7 +6842,7 @@ 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:310
+#: frappe/public/js/frappe/widgets/widget_dialog.js:323
#: frappe/www/attribution.html:29
msgid "Dependencies"
msgstr ""
@@ -7074,6 +6956,7 @@ msgstr ""
#: 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
@@ -7371,14 +7254,10 @@ 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:1189
+#: frappe/public/js/frappe/form/grid.js:1193
msgid "Do not edit headers which are preset in the template"
msgstr ""
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:69
-msgid "Do not have permission to access bucket {0}."
-msgstr ""
-
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
@@ -7511,7 +7390,7 @@ 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:466
+#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
msgstr ""
@@ -7571,7 +7450,7 @@ 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:669
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
msgid "Doctype"
msgstr ""
@@ -7689,7 +7568,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:477
+#: frappe/model/document.py:476
msgid "Document Queued"
msgstr ""
@@ -7742,7 +7621,7 @@ msgstr ""
msgid "Document States"
msgstr ""
-#: frappe/model/meta.py:52 frappe/public/js/frappe/model/meta.js:202
+#: 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 ""
@@ -7813,11 +7692,11 @@ msgstr ""
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: frappe/permissions.py:148
+#: frappe/permissions.py:149
msgid "Document Type is not importable"
msgstr ""
-#: frappe/permissions.py:144
+#: frappe/permissions.py:145
msgid "Document Type is not submittable"
msgstr ""
@@ -7846,7 +7725,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1943
+#: frappe/model/document.py:1942
msgid "Document Unlocked"
msgstr ""
@@ -8037,7 +7916,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:835
+#: frappe/public/js/frappe/views/reports/query_report.js:830
msgid "Download Report"
msgstr ""
@@ -8048,7 +7927,7 @@ 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:57
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
msgid "Download Your Data"
msgstr ""
@@ -8104,29 +7983,6 @@ msgstr ""
msgid "Drop files here"
msgstr ""
-#. Label of the dropbox_access_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Access Token"
-msgstr ""
-
-#. Label of the dropbox_refresh_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Refresh Token"
-msgstr ""
-
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Dropbox Settings"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:347
-msgid "Dropbox Setup"
-msgstr ""
-
#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
@@ -8156,7 +8012,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:666 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
@@ -8255,13 +8111,13 @@ msgstr ""
#: 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:668
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:669
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:883
-#: frappe/public/js/frappe/views/reports/query_report.js:1722
+#: frappe/public/js/frappe/views/reports/query_report.js:878
+#: frappe/public/js/frappe/views/reports/query_report.js:1724
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8424,7 +8280,7 @@ msgstr ""
msgid "Edit your workflow visually using the Workflow Builder."
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:672
+#: frappe/public/js/frappe/views/reports/report_view.js:678
#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
msgstr ""
@@ -8525,7 +8381,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:736
+#: frappe/core/doctype/user/user.py:738
msgid "Email Account added multiple times"
msgstr ""
@@ -8533,7 +8389,7 @@ msgstr ""
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:578
+#: frappe/email/doctype/email_account/email_account.py:576
msgid "Email Account {0} Disabled"
msgstr ""
@@ -8759,7 +8615,7 @@ msgstr ""
msgid "Emails Pulled"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:936
+#: frappe/email/doctype/email_account/email_account.py:934
msgid "Emails are already being pulled from this account."
msgstr ""
@@ -8782,11 +8638,9 @@ 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 Drive'
#. 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_drive/google_drive.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
msgstr ""
@@ -8806,11 +8660,6 @@ msgstr ""
msgid "Enable Auto Reply"
msgstr ""
-#. Label of the enabled (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Enable Automatic Backup"
-msgstr ""
-
#. Label of the enable_automatic_linking (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -8969,7 +8818,6 @@ msgstr ""
#. 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 'Dropbox Settings'
#. 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'
@@ -8980,7 +8828,6 @@ msgstr ""
#: 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/dropbox_settings/dropbox_settings.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/public/js/frappe/model/indicator.js:106
@@ -8993,7 +8840,7 @@ msgstr ""
msgid "Enabled Scheduler"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:1012
+#: frappe/email/doctype/email_account/email_account.py:1010
msgid "Enabled email inbox for user {0}"
msgstr ""
@@ -9074,11 +8921,6 @@ msgstr ""
msgid "Ended At"
msgstr ""
-#. Label of the endpoint_url (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Endpoint URL"
-msgstr ""
-
#. Label of the sb_endpoints_section (Section Break) field in DocType
#. 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -9257,7 +9099,7 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:672
+#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9265,15 +9107,15 @@ msgstr ""
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr ""
-#: frappe/model/base_document.py:806
+#: frappe/model/base_document.py:803
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:816
+#: frappe/model/base_document.py:813
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:810
+#: frappe/model/base_document.py:807
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9422,7 +9264,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2069
+#: frappe/public/js/frappe/views/reports/query_report.js:2071
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9448,7 +9290,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9505,8 +9347,8 @@ 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:1757
-#: frappe/public/js/frappe/views/reports/report_view.js:1621
+#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
@@ -9557,11 +9399,11 @@ msgstr ""
msgid "Export Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1632
+#: frappe/public/js/frappe/views/reports/report_view.js:1638
msgid "Export all matching rows?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1642
+#: frappe/public/js/frappe/views/reports/report_view.js:1648
msgid "Export all {0} rows?"
msgstr ""
@@ -9869,8 +9711,8 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:237
-#: frappe/public/js/frappe/views/reports/query_report.js:1816
+#: frappe/public/js/frappe/views/reports/query_report.js:235
+#: frappe/public/js/frappe/views/reports/query_report.js:1818
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9945,7 +9787,7 @@ msgstr ""
msgid "Field {0} does not exist on {1}"
msgstr ""
-#: frappe/desk/form/meta.py:208
+#: frappe/desk/form/meta.py:184
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
@@ -10048,7 +9890,7 @@ msgstr ""
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
-#: frappe/model/db_query.py:144
+#: frappe/model/db_query.py:146
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
@@ -10097,13 +9939,6 @@ msgstr ""
msgid "File '{0}' not found"
msgstr ""
-#. Label of the file_backup (Check) field in DocType 'Dropbox Settings'
-#. Label of the file_backup (Check) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "File Backup"
-msgstr ""
-
#. Label of the private_file_section (Section Break) field in DocType 'Access
#. Log'
#: frappe/core/doctype/access_log/access_log.json
@@ -10304,7 +10139,7 @@ msgstr ""
msgid "Filters {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1421
+#: frappe/public/js/frappe/views/reports/report_view.js:1427
msgid "Filters:"
msgstr ""
@@ -10451,7 +10286,7 @@ msgstr ""
msgid "Following document {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:111
+#: frappe/website/doctype/web_form/web_form.py:108
msgid "Following fields are missing:"
msgstr ""
@@ -10459,7 +10294,7 @@ msgstr ""
msgid "Following fields have invalid values:"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:345
+#: frappe/public/js/frappe/widgets/widget_dialog.js:358
msgid "Following fields have missing values"
msgstr ""
@@ -10602,7 +10437,7 @@ msgstr ""
msgid "For Document Type"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:553
+#: frappe/public/js/frappe/widgets/widget_dialog.js:566
msgid "For Example: {} Open"
msgstr ""
@@ -10631,7 +10466,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/query_report.js:2068
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10784,7 +10619,7 @@ msgstr ""
#. 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:552
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
msgid "Format"
msgstr ""
@@ -10816,7 +10651,7 @@ msgstr ""
#. 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:149
+#: frappe/www/login.py:153
msgid "Frappe"
msgstr ""
@@ -10833,7 +10668,7 @@ msgstr ""
msgid "Frappe Mail"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:549
+#: frappe/email/doctype/email_account/email_account.py:547
msgid "Frappe Mail OAuth Error"
msgstr ""
@@ -10861,13 +10696,11 @@ msgstr ""
#. 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'
-#. Label of the frequency (Select) field in DocType 'Google Drive'
#: 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/integrations/doctype/google_drive/google_drive.json
#: frappe/public/js/frappe/utils/common.js:395
msgid "Frequency"
msgstr ""
@@ -10913,7 +10746,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
+#: frappe/public/js/frappe/views/reports/query_report.js:1779
msgid "From Document Type"
msgstr ""
@@ -10964,16 +10797,16 @@ 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:247
-#: frappe/public/js/frappe/widgets/widget_dialog.js:686
+#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:693
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:670
+#: frappe/__init__.py:677
msgid "Function {0} is not whitelisted."
msgstr ""
@@ -11038,7 +10871,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:877
+#: frappe/public/js/frappe/views/reports/query_report.js:872
msgid "Generate New Report"
msgstr ""
@@ -11326,32 +11159,12 @@ msgstr ""
msgid "Google Contacts Id"
msgstr ""
-#. Name of a DocType
-#. Label of the google_drive_section (Section Break) field in DocType 'Google
-#. Drive'
#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/google_drive/google_drive.json
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:117
-msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:132
-msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:193
-msgid "Google Drive - Could not locate - {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:204
-msgid "Google Drive Backup Successful."
-msgstr ""
-
#. Label of the section_break_7 (Section Break) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -11681,6 +11494,10 @@ msgstr ""
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'
@@ -12004,17 +11821,17 @@ msgstr ""
msgid "Home Settings"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:330
-#: frappe/core/doctype/file/test_file.py:332
-#: frappe/core/doctype/file/test_file.py:396
+#: 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:385
+#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:341
+#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
msgstr ""
@@ -12059,7 +11876,7 @@ msgstr ""
#: frappe/core/doctype/data_import/importer.py:1177
#: frappe/core/doctype/data_import/importer.py:1242
#: frappe/core/doctype/data_import/importer.py:1245
-#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:50
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
#: frappe/public/js/frappe/list/list_settings.js:337
@@ -12071,7 +11888,7 @@ msgid "ID"
msgstr ""
#: frappe/desk/reportview.py:491
-#: frappe/public/js/frappe/views/reports/report_view.js:978
+#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
msgstr ""
@@ -12255,12 +12072,6 @@ msgstr ""
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
msgstr ""
-#. Description of the 'Backup Path' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "If it's empty, it will backup to the root of the bucket."
-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"
@@ -12391,16 +12202,12 @@ msgstr ""
msgid "Ignored Apps"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:348
-msgid "Illegal Access Token. Please try again"
-msgstr ""
-
#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
msgstr ""
-#: frappe/model/db_query.py:451 frappe/model/db_query.py:454
-#: frappe/model/db_query.py:1128
+#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
+#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
msgstr ""
@@ -12749,11 +12556,11 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1592
+#: frappe/public/js/frappe/views/reports/query_report.js:1594
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1584
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Include indentation"
msgstr ""
@@ -12820,11 +12627,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1542
+#: frappe/model/document.py:1541
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1544
+#: frappe/model/document.py:1543
msgid "Incorrect value:"
msgstr ""
@@ -12833,10 +12640,10 @@ msgstr ""
#. 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:53
+#: 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:999
+#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
msgstr ""
@@ -12911,7 +12718,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:1822
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
msgid "Insert After"
msgstr ""
@@ -12927,7 +12734,7 @@ msgstr ""
msgid "Insert Below"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:384
+#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
msgstr ""
@@ -12976,11 +12783,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:818
+#: frappe/permissions.py:827
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:376
+#: frappe/database/query.py:383
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -13098,7 +12905,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:221
#: frappe/public/js/frappe/form/grid_row.js:833
#: frappe/public/js/frappe/form/layout.js:811
-#: frappe/public/js/frappe/views/reports/report_view.js:710
+#: frappe/public/js/frappe/views/reports/report_view.js:716
msgid "Invalid \"depends_on\" expression"
msgstr ""
@@ -13138,7 +12945,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:102
+#: frappe/database/query.py:103
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13183,6 +12990,7 @@ 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 ""
@@ -13207,7 +13015,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1226 frappe/www/update-password.html:123
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
#: frappe/www/update-password.html:247
msgid "Invalid Password"
@@ -13236,7 +13044,7 @@ msgstr ""
#: frappe/core/doctype/file/file.py:220
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
-#: frappe/public/js/frappe/widgets/widget_dialog.js:589
+#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
msgstr ""
@@ -13257,11 +13065,11 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:393
+#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
-#: frappe/model/document.py:1015 frappe/model/document.py:1029
+#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13285,7 +13093,7 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:182
+#: frappe/database/query.py:189
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
@@ -13311,7 +13119,7 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:324
+#: frappe/app.py:317
msgid "Invalid request arguments"
msgstr ""
@@ -13495,7 +13303,7 @@ 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:328
+#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
msgstr ""
@@ -13710,6 +13518,10 @@ msgstr ""
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 ""
@@ -13741,7 +13553,7 @@ msgstr ""
#. 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:498
+#: frappe/public/js/frappe/widgets/widget_dialog.js:511
msgid "Kanban Board"
msgstr ""
@@ -14013,10 +13825,10 @@ msgstr ""
#: 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:300
-#: frappe/public/js/frappe/widgets/widget_dialog.js:453
-#: frappe/public/js/frappe/widgets/widget_dialog.js:630
-#: frappe/public/js/frappe/widgets/widget_dialog.js:663
+#: 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
@@ -14101,11 +13913,6 @@ msgstr ""
msgid "Last Active"
msgstr ""
-#. Label of the last_backup_on (Datetime) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Last Backup On"
-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"
@@ -14190,12 +13997,12 @@ msgstr ""
msgid "Last Synced On"
msgstr ""
-#: frappe/model/meta.py:55 frappe/public/js/frappe/model/meta.js:205
+#: 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:54 frappe/public/js/frappe/model/meta.js:204
+#: 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 ""
@@ -14239,7 +14046,7 @@ msgid "Leave blank to repeat always"
msgstr ""
#: frappe/core/doctype/communication/mixins.py:207
-#: frappe/email/doctype/email_account/email_account.py:722
+#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
msgstr ""
@@ -14458,7 +14265,7 @@ msgstr ""
msgid "Liked"
msgstr ""
-#: frappe/model/meta.py:58 frappe/public/js/frappe/model/meta.js:208
+#: 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 ""
@@ -14473,11 +14280,6 @@ msgstr ""
msgid "Limit"
msgstr ""
-#. Label of the limit_no_of_backups (Check) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Limit Number of DB Backups"
-msgstr ""
-
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14592,11 +14394,11 @@ msgstr ""
#: 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:414
+#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:350
+#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
msgstr ""
@@ -14609,7 +14411,7 @@ msgstr ""
msgid "Link Type"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:346
+#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
msgstr ""
@@ -14761,7 +14563,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1085
+#: frappe/public/js/frappe/views/reports/query_report.js:1087
msgid "Loading"
msgstr ""
@@ -14892,7 +14694,7 @@ msgstr ""
msgid "Login Page"
msgstr ""
-#: frappe/www/login.py:152
+#: frappe/www/login.py:156
msgid "Login To {0}"
msgstr ""
@@ -15159,7 +14961,7 @@ msgstr ""
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:473
+#: frappe/website/doctype/web_form/web_form.py:470
msgid "Mandatory Information missing:"
msgstr ""
@@ -15434,7 +15236,7 @@ msgid "Menu"
msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:242
-#: frappe/public/js/frappe/model/model.js:754
+#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr ""
@@ -15613,7 +15415,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:672
+#: frappe/__init__.py:679
msgid "Method Not Allowed"
msgstr ""
@@ -15690,7 +15492,7 @@ msgstr ""
msgid "Miss"
msgstr ""
-#: frappe/desk/form/meta.py:218
+#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
msgstr ""
@@ -15715,7 +15517,7 @@ msgid "Missing Value"
msgstr ""
#: frappe/public/js/frappe/ui/field_group.js:124
-#: frappe/public/js/frappe/widgets/widget_dialog.js:361
+#: 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"
@@ -15898,8 +15700,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -15907,7 +15707,6 @@ msgstr ""
#: 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/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:400
#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
@@ -16079,7 +15878,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:462
+#: frappe/website/doctype/web_form/web_form.py:459
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16245,7 +16044,7 @@ msgstr ""
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:793
+#: frappe/model/document.py:792
msgid "Negative Value"
msgstr ""
@@ -16350,7 +16149,7 @@ 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:762
+#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr ""
@@ -16384,7 +16183,7 @@ msgstr ""
msgid "New Quick List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
msgstr ""
@@ -16440,26 +16239,26 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
#: frappe/public/js/frappe/form/toolbar.js:558
-#: frappe/public/js/frappe/model/model.js:661
+#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:379
+#: frappe/website/doctype/web_form/web_form.py:376
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:394
+#: frappe/public/js/frappe/views/reports/query_report.js:392
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:386
+#: frappe/public/js/frappe/views/reports/query_report.js:384
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:391
+#: frappe/public/js/frappe/views/reports/query_report.js:389
msgid "New {0} {1} created"
msgstr ""
@@ -16471,7 +16270,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:802
+#: frappe/core/doctype/user/user.py:804
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16633,7 +16432,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16774,7 +16573,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:803
+#: frappe/core/doctype/user/user.py:805
msgid "No Roles Specified"
msgstr ""
@@ -16925,7 +16724,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:827 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16934,7 +16733,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
-#: frappe/model/db_query.py:949
+#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
msgstr ""
@@ -17018,12 +16817,6 @@ msgstr ""
msgid "Non-Conforming"
msgstr ""
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "None"
-msgstr ""
-
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr ""
@@ -17038,7 +16831,7 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr ""
@@ -17059,7 +16852,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:374 frappe/www/404.html:3
+#: frappe/app.py:367 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -17085,9 +16878,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:754 frappe/app.py:367 frappe/desk/calendar.py:26
+#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:711
+#: frappe/website/doctype/web_form/web_form.py:708
#: 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
@@ -17108,7 +16901,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:813
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
-#: frappe/public/js/frappe/views/reports/report_view.js:197
+#: frappe/public/js/frappe/views/reports/report_view.js:203
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
@@ -17139,7 +16932,7 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:264
+#: frappe/core/doctype/user/user.py:265
msgid "Not a valid User Image."
msgstr ""
@@ -17155,7 +16948,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:360
+#: frappe/permissions.py:370
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17175,7 +16968,7 @@ msgstr ""
msgid "Not allowed to print draft documents"
msgstr ""
-#: frappe/permissions.py:212
+#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
msgstr ""
@@ -17191,12 +16984,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:214
+#: frappe/core/doctype/system_settings/system_settings.py:215
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:724
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17222,15 +17015,6 @@ msgstr ""
msgid "Note:"
msgstr ""
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'Dropbox Settings'
-#. Description of the 'Send Email for Successful backup' (Check) field in
-#. DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Note: By default emails for failed backups are sent."
-msgstr ""
-
#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr ""
@@ -17290,13 +17074,10 @@ msgstr ""
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
#. Name of a DocType
-#. Label of the notification_section (Section Break) field in DocType 'S3
-#. Backup Settings'
#: 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
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Notification"
msgstr ""
@@ -17398,7 +17179,7 @@ msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:615
+#: frappe/public/js/frappe/widgets/widget_dialog.js:628
msgid "Number Card"
msgstr ""
@@ -17416,7 +17197,7 @@ 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:645
+#: frappe/public/js/frappe/widgets/widget_dialog.js:658
msgid "Number Cards"
msgstr ""
@@ -17434,15 +17215,6 @@ msgstr ""
msgid "Number of Backups"
msgstr ""
-#. Label of the no_of_backups (Int) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Number of DB Backups"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:54
-msgid "Number of DB backups cannot be less than 1"
-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"
@@ -17458,7 +17230,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:169
+#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17687,7 +17459,7 @@ 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:322
+#: frappe/public/js/frappe/widgets/widget_dialog.js:335
msgid "Onboard"
msgstr ""
@@ -17783,19 +17555,13 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Only change this if you want to use other S3 compatible object storage backends."
-msgstr ""
-
-#: frappe/model/document.py:1232
+#: frappe/model/document.py:1231
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:315
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
msgstr ""
@@ -18044,7 +17810,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:870
+#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
msgstr ""
@@ -18156,7 +17922,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1742
+#: frappe/public/js/frappe/views/reports/query_report.js:1744
msgid "PDF"
msgstr ""
@@ -18455,7 +18221,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:798
+#: frappe/permissions.py:807
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18515,11 +18281,11 @@ msgstr ""
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1079
+#: frappe/core/doctype/user/user.py:1081
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:457
+#: frappe/core/doctype/user/user.py:458
msgid "Password Reset"
msgstr ""
@@ -18553,7 +18319,7 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1078
+#: frappe/core/doctype/user/user.py:1080
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18565,7 +18331,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:869
+#: frappe/core/doctype/user/user.py:871
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18722,7 +18488,7 @@ msgstr ""
msgid "Permanently Submit {0}?"
msgstr ""
-#: frappe/public/js/frappe/model/model.js:733
+#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
msgstr ""
@@ -18883,8 +18649,8 @@ msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:40
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
-#: frappe/public/js/frappe/views/reports/report_view.js:1576
+#: frappe/public/js/frappe/views/reports/report_view.js:1579
+#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
msgstr ""
@@ -18924,7 +18690,7 @@ msgstr ""
msgid "Plant"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:546
+#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
msgstr ""
@@ -18940,7 +18706,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:309
+#: frappe/public/js/frappe/views/reports/query_report.js:307
msgid "Please Set Chart"
msgstr ""
@@ -18956,7 +18722,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1063
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -18984,11 +18750,11 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:946
+#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1059
+#: frappe/core/doctype/user/user.py:1061
msgid "Please check your email for verification"
msgstr ""
@@ -19016,10 +18782,6 @@ msgstr ""
msgid "Please click on the following link to set your new password"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:343
-msgid "Please close this window"
-msgstr ""
-
#: frappe/www/confirm_workflow_action.html:4
msgid "Please confirm your action to {0} this document."
msgstr ""
@@ -19036,7 +18798,7 @@ msgstr ""
msgid "Please create chart first"
msgstr ""
-#: frappe/desk/form/meta.py:214
+#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
msgstr ""
@@ -19048,7 +18810,7 @@ msgstr ""
msgid "Please duplicate this to make changes"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:162
+#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19066,7 +18828,7 @@ msgstr ""
msgid "Please enable pop-ups in your browser"
msgstr ""
-#: frappe/integrations/google_oauth.py:53
+#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
msgstr ""
@@ -19143,7 +18905,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:987
+#: frappe/model/document.py:986
msgid "Please refresh to get the latest document."
msgstr ""
@@ -19167,7 +18929,7 @@ msgstr ""
msgid "Please save the document before removing assignment"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1703
+#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
msgstr ""
@@ -19183,11 +18945,11 @@ msgstr ""
msgid "Please select Entity Type first"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:112
+#: frappe/core/doctype/system_settings/system_settings.py:113
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1181
+#: frappe/public/js/frappe/views/reports/query_report.js:1183
msgid "Please select X and Y fields"
msgstr ""
@@ -19215,7 +18977,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1140
+#: frappe/model/db_query.py:1141
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19237,10 +18999,6 @@ msgstr ""
msgid "Please select {0}"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:305
-msgid "Please set Dropbox access keys in site config or doctype"
-msgstr ""
-
#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
msgstr ""
@@ -19249,7 +19007,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:1404
+#: frappe/public/js/frappe/views/reports/query_report.js:1406
msgid "Please set filters"
msgstr ""
@@ -19269,7 +19027,7 @@ msgstr ""
msgid "Please set the series to be used."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:125
+#: frappe/core/doctype/system_settings/system_settings.py:126
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr ""
@@ -19277,19 +19035,19 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:422
+#: frappe/core/doctype/user/user.py:423
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:434
+#: 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:823
+#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:774
+#: frappe/permissions.py:783
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19318,7 +19076,7 @@ msgstr ""
msgid "Please try again"
msgstr ""
-#: frappe/integrations/google_oauth.py:56
+#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
msgstr ""
@@ -19631,8 +19389,8 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1728
-#: frappe/public/js/frappe/views/reports/report_view.js:1531
+#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr ""
@@ -19875,7 +19633,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
msgstr ""
@@ -20196,7 +19954,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:729
+#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
msgstr ""
@@ -20217,7 +19975,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:554
+#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
msgstr ""
@@ -20250,12 +20008,6 @@ msgstr ""
msgid "Queued for Submission. You can track the progress over {0}."
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:65
-#: frappe/integrations/doctype/google_drive/google_drive.py:153
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:86
-msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr ""
-
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
@@ -20391,7 +20143,7 @@ msgstr ""
msgid "Re-Run in Console"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:728
+#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
msgstr ""
@@ -20493,7 +20245,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:889
+#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
msgstr ""
@@ -20858,11 +20610,11 @@ msgid "Referrer"
msgstr ""
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:548
+#: frappe/public/js/frappe/desk.js:556
#: 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:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1719
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20881,12 +20633,10 @@ 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 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
@@ -20903,7 +20653,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
msgstr ""
@@ -21066,7 +20816,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
#: frappe/public/js/frappe/form/toolbar.js:432
-#: frappe/public/js/frappe/model/model.js:772
+#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
msgstr ""
@@ -21076,7 +20826,7 @@ msgstr ""
msgid "Rename Fieldname"
msgstr ""
-#: frappe/public/js/frappe/model/model.js:759
+#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
msgstr ""
@@ -21140,7 +20890,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:146
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
msgstr ""
@@ -21278,7 +21028,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1902
+#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
msgstr ""
@@ -21330,7 +21080,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1009
+#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
msgstr ""
@@ -21346,11 +21096,11 @@ msgstr ""
msgid "Report updated successfully"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1351
+#: frappe/public/js/frappe/views/reports/report_view.js:1357
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1940
+#: frappe/public/js/frappe/views/reports/query_report.js:1942
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21386,7 +21136,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:925
+#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
msgstr ""
@@ -21836,7 +21586,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:363
+#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -21951,7 +21701,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:855 frappe/model/document.py:778
+#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
msgstr ""
@@ -21964,7 +21714,7 @@ msgstr ""
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:982
msgid "Row #{0}:"
msgstr ""
@@ -22042,7 +21792,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:653
+#: frappe/permissions.py:662
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22086,23 +21836,6 @@ msgstr ""
msgid "Runtime in Seconds"
msgstr ""
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "S3 Backup Settings"
-msgstr ""
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
-msgid "S3 Backup complete!"
-msgstr ""
-
-#. Label of the s3_bucket_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Bucket Details"
-msgstr ""
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
@@ -22243,7 +21976,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/page/print/print.js:858
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/quick_entry.js:185
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
@@ -22253,8 +21986,8 @@ msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
-#: frappe/public/js/frappe/views/reports/query_report.js:1894
-#: frappe/public/js/frappe/views/reports/report_view.js:1720
+#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
@@ -22271,8 +22004,8 @@ msgstr ""
msgid "Save Anyway"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1382
-#: frappe/public/js/frappe/views/reports/report_view.js:1727
+#: frappe/public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
msgstr ""
@@ -22280,7 +22013,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1897
+#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
msgstr ""
@@ -22446,7 +22179,7 @@ msgstr ""
msgid "Scheduler Status"
msgstr ""
-#: frappe/utils/scheduler.py:249
+#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr ""
@@ -22672,7 +22405,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:858
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "See all past reports."
msgstr ""
@@ -22752,7 +22485,7 @@ msgstr ""
msgid "Select Child Table"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:377
+#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
msgstr ""
@@ -23069,31 +22802,11 @@ msgstr ""
msgid "Send Email To Creator"
msgstr ""
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Dropbox Settings'
-#. Label of the send_email_for_successful_backup (Check) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Email for Successful Backup"
-msgstr ""
-
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Email for Successful backup"
-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 email (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Notification To"
-msgstr ""
-
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -23110,14 +22823,6 @@ msgstr ""
msgid "Send Notifications For Email Threads"
msgstr ""
-#. Label of the send_notifications_to (Data) field in DocType 'Dropbox
-#. Settings'
-#. Label of the notify_email (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Notifications To"
-msgstr ""
-
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
msgstr ""
@@ -23376,7 +23081,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:383 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23442,7 +23147,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:360
+#: frappe/app.py:353
msgid "Session Expired"
msgstr ""
@@ -23451,7 +23156,7 @@ msgstr ""
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:119
+#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
msgstr ""
@@ -23474,7 +23179,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:201
+#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
msgstr ""
@@ -23500,7 +23205,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
msgstr ""
@@ -23718,8 +23423,8 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1763
-#: frappe/public/js/frappe/views/reports/report_view.js:1698
+#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23815,6 +23520,15 @@ msgstr ""
msgid "Show \"Call to Action\" in Blog"
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"
@@ -23985,7 +23699,7 @@ msgstr ""
msgid "Show Title in Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1521
+#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
msgstr ""
@@ -24095,7 +23809,7 @@ msgstr ""
msgid "Show {0} List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:495
+#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
msgstr ""
@@ -24130,7 +23844,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
msgstr ""
@@ -24775,7 +24489,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
-#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: frappe/public/js/frappe/views/reports/report_view.js:975
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
@@ -25074,7 +24788,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:1166
+#: frappe/public/js/frappe/form/grid.js:1170
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25171,7 +24885,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:720
+#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
msgstr ""
@@ -25461,11 +25175,9 @@ msgstr ""
#: frappe/geo/doctype/country/country.json
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/connected_app/connected_app.json
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.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_drive/google_drive.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
@@ -25474,7 +25186,6 @@ msgstr ""
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_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
@@ -25599,11 +25310,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1165
+#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1565
+#: frappe/model/document.py:1564
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25622,7 +25333,7 @@ msgstr ""
msgid "Tag Link"
msgstr ""
-#: frappe/model/meta.py:57
+#: 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
@@ -25634,15 +25345,6 @@ msgstr ""
msgid "Tags"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:29
-msgid "Take Backup"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
-msgid "Take Backup Now"
-msgstr ""
-
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
msgstr ""
@@ -25720,12 +25422,12 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1027
+#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
msgstr ""
-#: frappe/core/doctype/translation/test_translation.py:56
-#: frappe/core/doctype/translation/test_translation.py:63
+#: frappe/core/doctype/translation/test_translation.py:47
+#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
msgstr ""
@@ -25734,8 +25436,8 @@ msgstr ""
msgid "Test Job ID"
msgstr ""
-#: frappe/core/doctype/translation/test_translation.py:58
-#: frappe/core/doctype/translation/test_translation.py:66
+#: frappe/core/doctype/translation/test_translation.py:49
+#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
msgstr ""
@@ -25743,7 +25445,7 @@ msgstr ""
msgid "Test email sent to {0}"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:388
+#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25824,7 +25526,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1188
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
msgstr ""
@@ -25992,15 +25694,15 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:987
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:991
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -26012,7 +25714,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:334
+#: frappe/utils/response.py:331
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26073,7 +25775,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26102,7 +25804,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:958
+#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26189,12 +25891,12 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:750
+#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:117
-#: frappe/public/js/frappe/model/model.js:755
+#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr ""
@@ -26232,7 +25934,7 @@ msgstr ""
msgid "This document is already amended, you cannot ammend it again"
msgstr ""
-#: frappe/model/document.py:474
+#: frappe/model/document.py:473
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -26293,7 +25995,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2132
+#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26357,7 +26059,7 @@ msgstr ""
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1033
+#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26365,7 +26067,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:856
+#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
msgstr ""
@@ -26431,7 +26133,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1240
+#: frappe/core/doctype/user/user.py:1242
msgid "Throttled"
msgstr ""
@@ -26782,7 +26484,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:857
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26807,10 +26509,6 @@ msgstr ""
msgid "To use Google Contacts, enable {0}."
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:8
-msgid "To use Google Drive, enable {0}."
-msgstr ""
-
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -26841,7 +26539,7 @@ msgstr ""
msgid "Today"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1564
+#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
msgstr ""
@@ -26857,7 +26555,7 @@ 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:1568
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
msgstr ""
@@ -26913,11 +26611,11 @@ msgstr ""
msgid "Too many changes to database in single action."
msgstr ""
-#: frappe/utils/background_jobs.py:728
+#: 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:1028
+#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -26981,8 +26679,8 @@ msgstr ""
#: frappe/desk/query_report.py:533
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1320
-#: frappe/public/js/frappe/views/reports/report_view.js:1545
+#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr ""
@@ -27045,11 +26743,11 @@ msgstr ""
msgid "Total:"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1250
+#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1225
+#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
msgstr ""
@@ -27162,7 +26860,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2188
+#: frappe/public/js/frappe/views/reports/query_report.js:2183
msgid "Translate Data"
msgstr ""
@@ -27173,7 +26871,7 @@ msgstr ""
msgid "Translate Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1650
+#: frappe/public/js/frappe/views/reports/report_view.js:1656
msgid "Translate values"
msgstr ""
@@ -27321,7 +27019,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/views/file/file_view.js:337
#: frappe/public/js/frappe/views/workspace/workspace.js:399
-#: frappe/public/js/frappe/widgets/widget_dialog.js:391
+#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
msgid "Type"
@@ -27401,7 +27099,7 @@ msgstr ""
#: 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:458
+#: 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"
@@ -27463,7 +27161,7 @@ msgstr ""
msgid "Unable to load camera."
msgstr ""
-#: frappe/public/js/frappe/model/model.js:268
+#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
msgstr ""
@@ -27492,7 +27190,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:383
+#: frappe/app.py:376
msgid "Uncaught Exception"
msgstr ""
@@ -27725,7 +27423,7 @@ msgstr ""
msgid "Updated Successfully"
msgstr ""
-#: frappe/public/js/frappe/desk.js:444
+#: frappe/public/js/frappe/desk.js:452
msgid "Updated To A New Version 🎉"
msgstr ""
@@ -27733,7 +27431,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:333
+#: frappe/utils/response.py:330
msgid "Updating"
msgstr ""
@@ -27807,18 +27505,6 @@ msgstr ""
msgid "Uploaded To Google Drive"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:196
-msgid "Uploading backup to Google Drive."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:201
-msgid "Uploading successful."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:16
-msgid "Uploading to Google Drive"
-msgstr ""
-
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -27902,11 +27588,11 @@ msgstr ""
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:434
+#: frappe/model/db_query.py:435
msgid "Use of function {0} in field is restricted"
msgstr ""
-#: frappe/model/db_query.py:411
+#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
msgstr ""
@@ -28023,7 +27709,7 @@ msgstr ""
msgid "User Cannot Search"
msgstr ""
-#: frappe/public/js/frappe/desk.js:546
+#: frappe/public/js/frappe/desk.js:554
msgid "User Changed"
msgstr ""
@@ -28129,8 +27815,8 @@ 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:1881
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
@@ -28227,7 +27913,7 @@ msgstr ""
msgid "User permission already exists"
msgstr ""
-#: frappe/www/login.py:167
+#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
msgstr ""
@@ -28235,23 +27921,23 @@ msgstr ""
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: frappe/core/doctype/user/user.py:536
+#: frappe/core/doctype/user/user.py:537
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:326
+#: frappe/core/doctype/user/user.py:327
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:602
+#: frappe/core/doctype/user/user.py:603
msgid "User {0} cannot be renamed"
msgstr ""
-#: frappe/permissions.py:138
+#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
msgstr ""
-#: frappe/permissions.py:161
+#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr ""
@@ -28264,7 +27950,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1369
+#: frappe/core/doctype/user/user.py:1371
msgid "User {0} impersonated as {1}"
msgstr ""
@@ -28293,7 +27979,7 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:687
+#: frappe/core/doctype/user/user.py:689
msgid "Username {0} already exists"
msgstr ""
@@ -28433,15 +28119,15 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1049 frappe/model/document.py:834
+#: frappe/model/base_document.py:1054 frappe/model/document.py:833
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:780
+#: frappe/model/document.py:779
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:784
+#: frappe/model/document.py:783
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28472,7 +28158,7 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1124
msgid "Value too big"
msgstr ""
@@ -29073,11 +28759,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -29086,9 +28767,6 @@ msgstr ""
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:399
#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
@@ -29123,11 +28801,11 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:414
+#: frappe/core/doctype/user/user.py:415
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:475
+#: frappe/core/doctype/user/user.py:476
msgid "Welcome to {0}"
msgstr ""
@@ -29160,7 +28838,7 @@ 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:468
+#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
msgstr ""
@@ -29359,7 +29037,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:177
+#: frappe/public/js/frappe/router.js:173
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29429,11 +29107,11 @@ msgstr ""
msgid "Workspaces"
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:753
+#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
msgstr ""
@@ -29452,11 +29130,11 @@ msgstr ""
msgid "Write"
msgstr ""
-#: frappe/model/base_document.py:949
+#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:484
+#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
msgstr ""
@@ -29475,13 +29153,13 @@ msgstr ""
msgid "Y Axis"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:491
+#: frappe/public/js/frappe/views/reports/report_view.js:497
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:1221
+#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
msgstr ""
@@ -29542,7 +29220,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29582,11 +29260,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:409
+#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:398
+#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29609,7 +29287,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:604
+#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29621,7 +29299,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:569
+#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29637,7 +29315,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:669
+#: frappe/__init__.py:676
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29645,7 +29323,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr ""
-#: frappe/core/doctype/installed_applications/installed_applications.py:82
+#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -29809,11 +29487,11 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:368
+#: frappe/app.py:361
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:838
+#: frappe/desk/query_report.py:831
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29825,11 +29503,11 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:772
+#: frappe/website/doctype/web_form/web_form.py:769
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:286 frappe/utils/response.py:290
+#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
msgstr ""
@@ -29837,7 +29515,7 @@ msgstr ""
msgid "You don't have permission to get a report on: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:175
+#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
msgstr ""
@@ -29890,23 +29568,23 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:339
+#: 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:768
+#: frappe/website/doctype/web_form/web_form.py:765
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:609
+#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:357
+#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
@@ -29922,11 +29600,11 @@ msgstr ""
msgid "You need to be a system user to access this page."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:94
+#: 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:275
+#: frappe/utils/response.py:272
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29934,7 +29612,7 @@ msgstr ""
msgid "You need to be logged in to access this page"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:164
+#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
msgstr ""
@@ -30009,7 +29687,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/desk.js:543
+#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -30092,7 +29770,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:354
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -30323,7 +30001,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:403 frappe/permissions.py:414
+#: frappe/permissions.py:412 frappe/permissions.py:423
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30875,7 +30553,7 @@ msgstr ""
msgid "{0} Calendar"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:564
+#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
msgstr ""
@@ -30923,7 +30601,7 @@ msgstr ""
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1149
+#: frappe/model/base_document.py:1154
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -30933,7 +30611,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:952
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
msgstr ""
@@ -30999,7 +30677,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:149
+#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
msgstr ""
@@ -31012,7 +30690,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:547
+#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -31137,7 +30815,7 @@ msgstr ""
msgid "{0} is an invalid email address in 'Recipients'"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1462
+#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
msgstr ""
@@ -31146,27 +30824,27 @@ msgstr ""
msgid "{0} is currently {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1431
+#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1451
+#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1441
+#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1456
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1446
+#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1481
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
msgstr ""
@@ -31186,7 +30864,7 @@ msgstr ""
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:64
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
msgstr ""
@@ -31215,11 +30893,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:787
+#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31231,27 +30909,27 @@ msgstr ""
msgid "{0} is not a zip file"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1436
+#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1483
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1487
+#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:165
+#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1470
+#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
msgstr ""
@@ -31262,11 +30940,11 @@ msgstr ""
msgid "{0} is required"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1486
+#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1465
+#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
msgstr ""
@@ -31274,12 +30952,12 @@ msgstr ""
msgid "{0} items selected"
msgstr ""
-#: frappe/core/doctype/user/user.py:1378
+#: frappe/core/doctype/user/user.py:1380
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:104
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
msgstr ""
@@ -31295,7 +30973,7 @@ msgstr ""
msgid "{0} m"
msgstr ""
-#: frappe/desk/notifications.py:397
+#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
msgstr ""
@@ -31307,35 +30985,35 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1792
+#: frappe/model/document.py:1791
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1551
+#: frappe/model/document.py:1550
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1553
+#: frappe/model/document.py:1552
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1549
+#: frappe/model/document.py:1548
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1547 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:875
+#: frappe/model/base_document.py:876
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:732
+#: frappe/model/base_document.py:729
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1555
+#: frappe/model/document.py:1554
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31410,7 +31088,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1785
+#: frappe/model/document.py:1784
msgid "{0} row #{1}: "
msgstr ""
@@ -31506,11 +31184,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:665 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:987
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -31526,7 +31204,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:260 frappe/permissions.py:558
+#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
msgstr ""
@@ -31534,7 +31212,7 @@ msgstr ""
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1110
+#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
msgstr ""
@@ -31542,7 +31220,7 @@ msgstr ""
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1115
+#: frappe/model/base_document.py:1120
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
@@ -31643,7 +31321,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1279
+#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
msgstr ""
diff --git a/frappe/locale/it.po b/frappe/locale/it.po
index 067acf3b00..0628d32a08 100644
--- a/frappe/locale/it.po
+++ b/frappe/locale/it.po
@@ -1,365 +1,263 @@
-# Translations template for Frappe Framework.
-# Copyright (C) 2024 Frappe Technologies
-# This file is distributed under the same license as the Frappe Framework
-# project.
-# FIRST AUTHOR , 2024.
-#
msgid ""
msgstr ""
-"Project-Id-Version: Frappe Framework VERSION\n"
+"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2024-01-12 01:53+0053\n"
-"PO-Revision-Date: 2024-01-10 16:34+0553\n"
+"POT-Creation-Date: 2025-06-22 09:34+0000\n"
+"PO-Revision-Date: 2025-06-22 16:41\n"
"Last-Translator: developers@frappe.io\n"
-"Language-Team: developers@frappe.io\n"
+"Language-Team: Italian\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.13.1\n"
+"Generated-By: Babel 2.16.0\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Crowdin-Project: frappe\n"
+"X-Crowdin-Project-ID: 639578\n"
+"X-Crowdin-Language: it\n"
+"X-Crowdin-File: /[frappe.frappe] develop/frappe/locale/main.pot\n"
+"X-Crowdin-File-ID: 52\n"
+"Language: it_IT\n"
-#: templates/emails/download_data.html:9
+#: frappe/templates/emails/download_data.html:9
msgid " to your browser"
-msgstr "al tuo browser"
+msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "!="
msgstr ""
#. Description of the 'Org History Heading' (Data) field in DocType 'About Us
#. Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "\"Company History\""
-msgstr ""La storia della società""
+msgstr ""
-#: core/doctype/data_export/exporter.py:204
+#: frappe/core/doctype/data_export/exporter.py:202
msgid "\"Parent\" signifies the parent table in which this row must be added"
-msgstr "\"Padre\" indica la tabella padre in cui si deve aggiungere la riga"
+msgstr ""
#. Description of the 'Team Members Heading' (Data) field in DocType 'About Us
#. Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "\"Team Members\" or \"Management\""
-msgstr ""Membri del team" o "gestione""
+msgstr ""
-#: public/js/frappe/form/form.js:1063
+#: frappe/public/js/frappe/form/form.js:1090
msgid "\"amended_from\" field must be present to do an amendment."
-msgstr "Per poter apportare un emendamento è necessario che sia presente il campo "modificato_da""
+msgstr ""
-#: utils/csvutils.py:219
+#: frappe/utils/csvutils.py:246
msgid "\"{0}\" is not a valid Google Sheets URL"
-msgstr ""{0}" non è un URL di Fogli Google valido"
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "# ###,##"
msgstr ""
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "# ###,##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "# ###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "# ###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#'###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#'###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#, ###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#, ###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#,###"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#,###"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#,###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#,###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#,###.###"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#,###.###"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#,##,###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#,##,###.##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#.###"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#.###"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "#.###,##"
-msgstr ""
-
-#. Option for the 'Number Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "#.###,##"
-msgstr ""
-
-#: public/js/frappe/ui/toolbar/tag_utils.js:21
-#: public/js/frappe/ui/toolbar/tag_utils.js:22
+#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:21
+#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:22
msgid "#{0}"
msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "<head> HTML"
-msgstr "<head> HTML"
+#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:36
+msgid "${values.doctype_name} has been added to queue for optimization"
+msgstr ""
-#: public/js/form_builder/store.js:201
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
+msgid "© Frappe Technologies Pvt. Ltd. and contributors"
+msgstr ""
+
+#. Label of the head_html (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "<head> HTML"
+msgstr ""
+
+#: frappe/public/js/form_builder/store.js:206
msgid "'In Global Search' is not allowed for field {0} of type {1}"
msgstr ""
-#: core/doctype/doctype/doctype.py:1305
+#: frappe/core/doctype/doctype/doctype.py:1354
msgid "'In Global Search' not allowed for type {0} in row {1}"
-msgstr "'In ricerca globale' non consentito per il tipo {0} nella riga {1}"
+msgstr ""
-#: public/js/form_builder/store.js:193
+#: frappe/public/js/form_builder/store.js:198
msgid "'In List View' is not allowed for field {0} of type {1}"
msgstr ""
-#: custom/doctype/customize_form/customize_form.py:360
+#: frappe/custom/doctype/customize_form/customize_form.py:362
msgid "'In List View' not allowed for type {0} in row {1}"
-msgstr "'Modalità Lista' non consentito per il tipo {0} in riga {1}"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:149
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156
msgid "'Recipients' not specified"
-msgstr "'Destinatari' non specificati"
+msgstr ""
-#: utils/__init__.py:240
+#: frappe/utils/__init__.py:255
msgid "'{0}' is not a valid URL"
msgstr ""
-#: core/doctype/doctype/doctype.py:1299
+#: frappe/core/doctype/doctype/doctype.py:1348
msgid "'{0}' not allowed for type {1} in row {2}"
-msgstr ""{0}" non consentito per il tipo {1} nella riga {2}"
+msgstr ""
-#: model/rename_doc.py:689
+#: frappe/public/js/frappe/data_import/data_exporter.js:302
+msgid "(Mandatory)"
+msgstr ""
+
+#: frappe/model/rename_doc.py:704
msgid "** Failed: {0} to {1}: {2}"
-msgstr "** Non riuscita: {0} a {1}: {2}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_settings.js:135
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111
+msgid "+ Add / Remove Fields"
+msgstr ""
#. Description of the 'Doc Status' (Select) field in DocType 'Workflow Document
#. State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "0 - Draft; 1 - Submitted; 2 - Cancelled"
-msgstr "0 - Bozza; 1 - Presentato; 2 - Annullato"
+msgstr ""
#. Description of the 'Priority' (Int) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/website/doctype/web_page/web_page.json
msgid "0 is highest"
-msgstr "0 è il più alto"
+msgstr ""
-#: public/js/frappe/form/grid_row.js:786
+#: frappe/public/js/frappe/form/grid_row.js:876
msgid "1 = True & 0 = False"
msgstr ""
#. Description of the 'Fraction Units' (Int) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid ""
-"1 Currency = [?] Fraction\n"
+#: frappe/geo/doctype/currency/currency.json
+msgid "1 Currency = [?] Fraction\n"
"For e.g. 1 USD = 100 Cent"
msgstr ""
-#: public/js/frappe/form/reminders.js:19
+#: frappe/public/js/frappe/form/reminders.js:19
msgid "1 Day"
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:358
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:374
msgid "1 Google Calendar Event synced."
-msgstr "1 evento di Google Calendar sincronizzato."
+msgstr ""
-#: website/doctype/blog_post/blog_post.py:378
+#: frappe/public/js/frappe/views/reports/query_report.js:953
+msgid "1 Report"
+msgstr ""
+
+#: frappe/website/doctype/blog_post/blog_post.py:380
msgid "1 comment"
-msgstr "1 commento"
+msgstr ""
-#: tests/test_utils.py:647
+#: frappe/tests/test_utils.py:711
msgid "1 day ago"
msgstr ""
-#: public/js/frappe/form/reminders.js:17
+#: frappe/public/js/frappe/form/reminders.js:17
msgid "1 hour"
msgstr ""
-#: public/js/frappe/utils/pretty_date.js:52 tests/test_utils.py:645
+#: frappe/public/js/frappe/utils/pretty_date.js:52
+#: frappe/tests/test_utils.py:709
msgid "1 hour ago"
-msgstr "1 ora fa"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:48 tests/test_utils.py:643
+#: frappe/public/js/frappe/utils/pretty_date.js:48
+#: frappe/tests/test_utils.py:707
msgid "1 minute ago"
-msgstr "1 giorno fa"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:66 tests/test_utils.py:651
+#: frappe/public/js/frappe/utils/pretty_date.js:66
+#: frappe/tests/test_utils.py:715
msgid "1 month ago"
-msgstr "1 mese fa"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:223
+#: frappe/public/js/print_format_builder/PrintFormat.vue:3
+msgid "1 of 2"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:227
msgid "1 record will be exported"
-msgstr "Verrà esportato 1 record"
+msgstr ""
-#: tests/test_utils.py:642
+#: frappe/tests/test_utils.py:706
msgid "1 second ago"
msgstr ""
-#: public/js/frappe/utils/pretty_date.js:62 tests/test_utils.py:649
+#: frappe/public/js/frappe/utils/pretty_date.js:62
+#: frappe/tests/test_utils.py:713
msgid "1 week ago"
-msgstr "1 settimana fa"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:70 tests/test_utils.py:653
+#: frappe/public/js/frappe/utils/pretty_date.js:70
+#: frappe/tests/test_utils.py:717
msgid "1 year ago"
-msgstr "1 anno fa"
+msgstr ""
-#: tests/test_utils.py:646
+#: frappe/tests/test_utils.py:710
msgid "2 hours ago"
msgstr ""
-#: tests/test_utils.py:652
+#: frappe/tests/test_utils.py:716
msgid "2 months ago"
msgstr ""
-#: tests/test_utils.py:650
+#: frappe/tests/test_utils.py:714
msgid "2 weeks ago"
msgstr ""
-#: tests/test_utils.py:654
+#: frappe/tests/test_utils.py:718
msgid "2 years ago"
msgstr ""
-#: tests/test_utils.py:644
+#: frappe/tests/test_utils.py:708
msgid "3 minutes ago"
msgstr ""
-#: public/js/frappe/form/reminders.js:16
+#: frappe/public/js/frappe/form/reminders.js:16
msgid "30 minutes"
msgstr ""
-#: public/js/frappe/form/reminders.js:18
+#: frappe/public/js/frappe/form/reminders.js:18
msgid "4 hours"
msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:37
+#: frappe/public/js/frappe/data_import/data_exporter.js:37
msgid "5 Records"
-msgstr "5 registrazioni"
+msgstr ""
-#: tests/test_utils.py:648
+#: frappe/tests/test_utils.py:712
msgid "5 days ago"
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.py:37
+#: frappe/desk/doctype/bulk_update/bulk_update.py:36
msgid "; not allowed in condition"
-msgstr "; Non ammesso nella condizione"
+msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "<"
msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "<="
msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:564
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
msgid "{0} is not a valid URL"
msgstr ""
#. Content of the 'Help' (HTML) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!"
msgstr ""
#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming
#. Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
-msgid ""
-"\n"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "\n"
" Edit list of Series in the box. Rules:\n"
" \n"
" - Each Series Prefix on a new line.
\n"
@@ -380,11 +278,12 @@ msgid ""
" .MM. - Month \n"
" .DD. - Day of month \n"
" .WW. - Week of the year \n"
-" .FY. - Fiscal Year \n"
" - \n"
"
.{fieldname}. - fieldname on the document e.g.\n"
" branch\n"
" \n"
+" .FY. - Fiscal Year (requires ERPNext to be installed) \n"
+" .ABBR. - Company Abbreviation (requires ERPNext to be installed) \n"
"
\n"
" \n"
" \n"
@@ -400,38 +299,27 @@ msgid ""
msgstr ""
#. Content of the 'Custom HTML Help' (HTML) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid ""
-"Custom CSS Help
\n"
-"\n"
-"Notes:
\n"
-"\n"
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Custom CSS Help
\n\n"
+"Notes:
\n\n"
"\n"
"- All field groups (label + value) are set attributes
data-fieldtype and data-fieldname \n"
"- All values are given class
value \n"
"- All Section Breaks are given class
section-break \n"
"- All Column Breaks are given class
column-break \n"
-"
\n"
-"\n"
-"Examples
\n"
-"\n"
-"1. Left align integers
\n"
-"\n"
-"[data-fieldtype=\"Int\"] .value { text-align: left; }
\n"
-"\n"
-"1. Add border to sections except the last section
\n"
-"\n"
+"\n\n"
+"Examples
\n\n"
+"1. Left align integers
\n\n"
+"[data-fieldtype=\"Int\"] .value { text-align: left; }
\n\n"
+"1. Add border to sections except the last section
\n\n"
".section-break { padding: 30px 0px; border-bottom: 1px solid #eee; }\n"
".section-break:last-child { padding-bottom: 0px; border-bottom: 0px; }
\n"
msgstr ""
#. Content of the 'Print Format Help' (HTML) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.json
#, python-format
-msgctxt "Print Format"
-msgid ""
-"Print Format Help
\n"
+msgid "Print Format Help
\n"
"
\n"
"Introduction
\n"
"Print Formats are rendered on the server side using the Jinja Templating Language. All forms have access to the doc object which contains information about the document that is being formatted. You can also access common utilities via the frappe module.
\n"
@@ -500,11 +388,9 @@ msgid ""
msgstr ""
#. Description of the 'Template' (Code) field in DocType 'Address Template'
-#: contacts/doctype/address_template/address_template.json
+#: frappe/contacts/doctype/address_template/address_template.json
#, python-format
-msgctxt "Address Template"
-msgid ""
-"Default Template
\n"
+msgid "Default Template
\n"
"Uses Jinja Templating and all the fields of Address (including Custom Fields if any) will be available
\n"
"{{ address_line1 }}<br>\n"
"{% if address_line2 %}{{ address_line2 }}<br>{% endif -%}\n"
@@ -519,54 +405,36 @@ msgid ""
msgstr ""
#. Content of the 'Email Reply Help' (HTML) field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
-msgid ""
-"Email Reply Example
\n"
-"\n"
-"Order Overdue\n"
-"\n"
-"Transaction {{ name }} has exceeded Due Date. Please take necessary action.\n"
-"\n"
-"Details\n"
-"\n"
+#: frappe/email/doctype/email_template/email_template.json
+msgid "Email Reply Example
\n\n"
+"Order Overdue\n\n"
+"Transaction {{ name }} has exceeded Due Date. Please take necessary action.\n\n"
+"Details\n\n"
"- Customer: {{ customer }}\n"
"- Amount: {{ grand_total }}\n"
-"\n"
-"\n"
-"How to get fieldnames
\n"
-"\n"
-"The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)
\n"
-"\n"
-"Templating
\n"
-"\n"
+"\n\n"
+"How to get fieldnames
\n\n"
+"The fieldnames you can use in your email template are the fields in the document from which you are sending the email. You can find out the fields of any documents via Setup > Customize Form View and selecting the document type (e.g. Sales Invoice)
\n\n"
+"Templating
\n\n"
"Templates are compiled using the Jinja Templating Language. To learn more about Jinja, read this documentation.
\n"
msgstr ""
#. Content of the 'html_5' (HTML) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/core/doctype/data_import/data_import.json
msgid "Or
"
msgstr ""
#. Content of the 'Message Examples' (HTML) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
+#: frappe/email/doctype/notification/notification.json
#, python-format
-msgctxt "Notification"
-msgid ""
-"Message Example
\n"
-"\n"
-"<h3>Order Overdue</h3>\n"
-"\n"
-"<p>Transaction {{ doc.name }} has exceeded Due Date. Please take necessary action.</p>\n"
-"\n"
+msgid "Message Example
\n\n"
+"<h3>Order Overdue</h3>\n\n"
+"<p>Transaction {{ doc.name }} has exceeded Due Date. Please take necessary action.</p>\n\n"
"<!-- show last comment -->\n"
"{% if comments %}\n"
"Last comment: {{ comments[-1].comment }} by {{ comments[-1].by }}\n"
-"{% endif %}\n"
-"\n"
-"<h4>Details</h4>\n"
-"\n"
+"{% endif %}\n\n"
+"<h4>Details</h4>\n\n"
"<ul>\n"
"<li>Customer: {{ doc.customer }}\n"
"<li>Amount: {{ doc.grand_total }}\n"
@@ -575,103 +443,68 @@ msgid ""
msgstr ""
#. Content of the 'html_condition' (HTML) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid ""
-"Condition Examples:
\n"
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Condition Examples:
\n"
"doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n"
"
"
msgstr ""
#. Content of the 'html_7' (HTML) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid ""
-"Condition Examples:
\n"
+#: frappe/email/doctype/notification/notification.json
+msgid "Condition Examples:
\n"
"doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n"
"
\n"
msgstr ""
-#. Content of the 'Condition Description' (HTML) field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid ""
-"Multiple webforms can be created for a single doctype. Add filters specific to this webform to display correct record after submission.
For Example:
\n"
+#. Content of the 'Condition description' (HTML) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Multiple webforms can be created for a single doctype. Add filters specific to this webform to display correct record after submission.
For Example:
\n"
"If you create a separate webform every year to capture feedback from employees add a \n"
" field named year in doctype and add a filter year = 2023
\n"
msgstr ""
#. Description of the 'Context Script' (Code) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid ""
-"Set context before rendering a template. Example:
\n"
+#: frappe/website/doctype/web_page/web_page.json
+msgid "
Set context before rendering a template. Example:
\n"
"
\n"
"context.project = frappe.get_doc(\"Project\", frappe.form_dict.name)\n"
"
"
msgstr ""
#. Content of the 'JS Message' (HTML) field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
-msgid ""
-"To interact with above HTML you will have to use `root_element` as a parent selector.
For example:
// here root_element is provided by default\n"
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+msgid "To interact with above HTML you will have to use `root_element` as a parent selector.
For example:
// here root_element is provided by default\n"
"let some_class_element = root_element.querySelector('.some-class');\n"
"some_class_element.textContent = \"New content\";\n"
"
"
msgstr ""
-#: twofactor.py:469
+#: frappe/twofactor.py:446
msgid "Your OTP secret on {0} has been reset. If you did not perform this reset and did not request it, please contact your System Administrator immediately.
"
msgstr ""
#. Description of the 'Cron Format' (Data) field in DocType 'Scheduled Job
#. Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid ""
-"* * * * *\n"
-"┬ ┬ ┬ ┬ ┬\n"
-"│ │ │ │ │\n"
-"│ │ │ │ └ day of week (0 - 6) (0 is Sunday)\n"
-"│ │ │ └───── month (1 - 12)\n"
-"│ │ └────────── day of month (1 - 31)\n"
-"│ └─────────────── hour (0 - 23)\n"
-"└──────────────────── minute (0 - 59)\n"
-"\n"
-"---\n"
-"\n"
-"* - Any value\n"
-"/ - Step values\n"
-"
\n"
-msgstr ""
-
#. Description of the 'Cron Format' (Data) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid ""
-"* * * * *\n"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+msgid "* * * * *\n"
"┬ ┬ ┬ ┬ ┬\n"
"│ │ │ │ │\n"
"│ │ │ │ └ day of week (0 - 6) (0 is Sunday)\n"
"│ │ │ └───── month (1 - 12)\n"
"│ │ └────────── day of month (1 - 31)\n"
"│ └─────────────── hour (0 - 23)\n"
-"└──────────────────── minute (0 - 59)\n"
-"\n"
-"---\n"
-"\n"
+"└──────────────────── minute (0 - 59)\n\n"
+"---\n\n"
"* - Any value\n"
"/ - Step values\n"
"
\n"
msgstr ""
#. Content of the 'Example' (HTML) field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
-msgid ""
-"doc.grand_total > 0
\n"
-"\n"
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "doc.grand_total > 0
\n\n"
"Conditions should be written in simple Python. Please use properties available in the form only.
\n"
"Allowed functions:\n"
"
\n"
@@ -686,27369 +519,22810 @@ msgid ""
"Example:
doc.creation > frappe.utils.add_to_date(frappe.utils.now_datetime(), days=-5, as_string=True, as_datetime=True)
"
msgstr ""
-#: custom/doctype/custom_field/custom_field.js:39
+#. Header text in the Welcome Workspace Workspace
+#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
+msgid "Hi,"
+msgstr ""
+
+#. Header text in the Integrations Workspace
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Reports & Masters"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.js:39
msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "="
msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid ">"
msgstr ""
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid ">="
msgstr ""
-#. Description of the Onboarding Step 'Custom Document Types'
-#: custom/onboarding_step/custom_doctype/custom_doctype.json
-msgid "A DocType (Document Type) is used to insert forms in ERPNext. Forms such as Customer, Orders, and Invoices are Doctypes in the backend. You can also create new DocTypes to create new forms in ERPNext as per your business needs."
-msgstr ""
-
-#: core/doctype/doctype/doctype.py:1015
+#: frappe/core/doctype/doctype/doctype.py:1034
msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
msgstr ""
-#: website/doctype/blog_post/blog_post.py:93
+#: frappe/website/doctype/blog_post/blog_post.py:92
msgid "A featured post must have a cover image"
-msgstr "Un post in primo piano deve avere un'immagine di copertina"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.py:171
+#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
msgstr ""
-#: core/doctype/file/file.py:254
+#: frappe/core/doctype/file/file.py:257
msgid "A file with same name {} already exists"
msgstr ""
#. Description of the 'Scopes' (Text) field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "A list of resources which the Client App will have access to after the user allows it.
e.g. project"
-msgstr "Un elenco di risorse che l'applicazione client avrà accesso a dopo che l'utente lo permette.
ad esempio, del progetto"
+msgstr ""
-#: templates/emails/new_user.html:5
+#: frappe/templates/emails/new_user.html:5
msgid "A new account has been created for you at {0}"
-msgstr "Un nuovo account è stato creato per te su: {0}"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:388
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400
msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}."
-msgstr "{0} {1} ricorrente è stato creato per te tramite la ripetizione automatica {2}."
+msgstr ""
#. Description of the 'Symbol' (Data) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#: frappe/geo/doctype/currency/currency.json
msgid "A symbol for this currency. For e.g. $"
-msgstr "Un simbolo per questa valuta. Per esempio $"
+msgstr ""
-#: printing/doctype/print_format_field_template/print_format_field_template.py:48
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:49
msgid "A template already exists for field {0} of {1}"
msgstr ""
-#: utils/password_strength.py:173
+#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
-msgstr "Una parola di per sé è facile da indovinare."
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A0"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A1"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A2"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A3"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A4"
-msgstr "A4"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A5"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A6"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A7"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A8"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "A9"
msgstr ""
#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "ALL"
-msgstr "Tutto"
+msgstr ""
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "API"
-msgstr "API"
+msgstr ""
-#. Label of a Section Break field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
+#. Label of the api_access (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "API Access"
-msgstr "Accesso API"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "API Access"
-msgstr "Accesso API"
-
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the api_endpoint (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "API Endpoint"
-msgstr "Endpoint API"
+msgstr ""
-#. Label of a Code field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the api_endpoint_args (Code) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "API Endpoint Args"
-msgstr "Argomenti dell'endpoint API"
+msgstr ""
-#. Label of a Data field in DocType 'Google Settings'
-#. Label of a Section Break field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
+#. Label of the api_key (Data) field in DocType 'User'
+#. Label of the api_key (Data) field in DocType 'Email Account'
+#. Label of the api_key (Password) field in DocType 'Geolocation Settings'
+#. Label of the api_key (Data) field in DocType 'Google Settings'
+#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
+#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Key"
-msgstr "API Key"
+msgstr ""
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "API Key"
-msgstr "API Key"
+#. Description of the 'Authentication' (Section Break) field in DocType 'Push
+#. Notification Settings'
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "API Key and Secret to interact with the relay server. These will be auto-generated when the first push notification is sent from any of the apps installed on this site."
+msgstr ""
#. Description of the 'API Key' (Data) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "API Key cannot be regenerated"
msgstr ""
-#. Label of a Data field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the api_logging_section (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "API Logging"
+msgstr ""
+
+#. Label of the api_method (Data) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "API Method"
-msgstr "Metodo API"
+msgstr ""
-#. Label of a Password field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Name of a DocType
+#: frappe/core/doctype/api_request_log/api_request_log.json
+msgid "API Request Log"
+msgstr ""
+
+#. Label of the api_secret (Password) field in DocType 'User'
+#. Label of the api_secret (Password) field in DocType 'Email Account'
+#. Label of the api_secret (Password) field in DocType 'Push Notification
+#. Settings'
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "API Secret"
-msgstr "API Secret"
-
-#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "ASC"
-msgstr "ASC"
+msgstr ""
#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "ASC"
-msgstr "ASC"
+msgstr ""
#. Label of a standard help item
#. Type: Action
-#: hooks.py
+#: frappe/hooks.py
msgid "About"
msgstr ""
-#: www/about.html:11 www/about.html:18
+#: frappe/www/about.html:11 frappe/www/about.html:18
msgid "About Us"
msgstr ""
#. Name of a DocType
-#: website/doctype/about_us_settings/about_us_settings.json
-msgid "About Us Settings"
-msgstr "Chi siamo Impostazioni"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "About Us Settings"
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+#: frappe/website/workspace/website/website.json
msgid "About Us Settings"
-msgstr "Chi siamo Impostazioni"
+msgstr ""
#. Name of a DocType
-#: website/doctype/about_us_team_member/about_us_team_member.json
+#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
msgid "About Us Team Member"
-msgstr "Chi siamo Membri Team"
+msgstr ""
-#: core/doctype/data_import/data_import.js:27
+#: frappe/core/doctype/data_import/data_import.js:27
msgid "About {0} minute remaining"
-msgstr "Circa {0} minuti rimanenti"
+msgstr ""
-#: core/doctype/data_import/data_import.js:28
+#: frappe/core/doctype/data_import/data_import.js:28
msgid "About {0} minutes remaining"
-msgstr "Circa {0} minuti rimanenti"
+msgstr ""
-#: core/doctype/data_import/data_import.js:25
+#: frappe/core/doctype/data_import/data_import.js:25
msgid "About {0} seconds remaining"
-msgstr "Circa {0} secondi rimanenti"
+msgstr ""
-#. Label of a Data field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Access Key ID"
-msgstr "ID Chiave di accesso"
-
-#. Label of a Password field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Access Key Secret"
-msgstr "Accesso segreto chiave"
+#. Label of the access_control_section (Section Break) field in DocType 'Web
+#. Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Access Control"
+msgstr ""
#. Name of a DocType
-#: core/doctype/access_log/access_log.json
-msgid "Access Log"
-msgstr "Accedi al registro"
-
#. Label of a Link in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "Access Log"
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/workspace/users/users.json
msgid "Access Log"
-msgstr "Accedi al registro"
+msgstr ""
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Access Log"
-msgstr "Accedi al registro"
-
-#. Label of a Data field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
+#. Label of the access_token (Data) field in DocType 'OAuth Bearer Token'
+#. Label of the access_token (Password) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Access Token"
-msgstr "Token di accesso"
+msgstr ""
-#. Label of a Password field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "Access Token"
-msgstr "Token di accesso"
-
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the access_token_url (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Access Token URL"
-msgstr "URL del token di accesso"
+msgstr ""
-#: auth.py:444
+#: frappe/auth.py:491
msgid "Access not allowed from this IP Address"
-msgstr "Accesso non consentito da questo indirizzo IP"
+msgstr ""
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the account_section (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Account"
-msgstr "account"
+msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the account_deletion_settings_section (Section Break) field in
+#. DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Account Deletion Settings"
msgstr ""
#. Name of a role
-#: automation/doctype/auto_repeat/auto_repeat.json
-#: contacts/doctype/contact/contact.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/geo/doctype/currency/currency.json
msgid "Accounts Manager"
-msgstr "Accounts Manager"
+msgstr ""
#. Name of a role
-#: automation/doctype/auto_repeat/auto_repeat.json
-#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json
-#: geo/doctype/currency/currency.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/geo/doctype/currency/currency.json
msgid "Accounts User"
-msgstr "Accounts User"
+msgstr ""
-#: email/doctype/email_group/email_group.js:34
-#: email/doctype/email_group/email_group.js:63
-#: email/doctype/email_group/email_group.js:72
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:37
-#: public/js/frappe/form/sidebar/review.js:59
-#: workflow/page/workflow_builder/workflow_builder.js:37
-msgid "Action"
-msgstr "Azione"
-
-#. Label of a Select field in DocType 'Amended Document Naming Settings'
-#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
-msgctxt "Amended Document Naming Settings"
-msgid "Action"
-msgstr "Azione"
-
-#. Label of a Select field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
-msgid "Action"
-msgstr "Azione"
+#: frappe/public/js/frappe/form/dashboard.js:510
+msgid "Accurate count can not be fetched, click here to view all documents"
+msgstr ""
+#. Label of the action (Select) field in DocType 'Amended Document Naming
+#. Settings'
#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
-#. Label of a Data field in DocType 'Navbar Item'
-#: core/doctype/navbar_item/navbar_item.json
-msgctxt "Navbar Item"
+#. Label of the action (Data) field in DocType 'Navbar Item'
+#. Label of the action (Select) field in DocType 'Onboarding Step'
+#. Label of the action (Select) field in DocType 'Email Flag Queue'
+#. Label of the action (Link) field in DocType 'Workflow Transition'
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/navbar_item/navbar_item.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_group/email_group.js:34
+#: frappe/email/doctype/email_group/email_group.js:63
+#: frappe/email/doctype/email_group/email_group.js:72
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
msgid "Action"
-msgstr "Azione"
+msgstr ""
-#. Label of a Select field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Action"
-msgstr "Azione"
-
-#. Label of a Link field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
-msgid "Action"
-msgstr "Azione"
-
-#. Label of a Small Text field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
+#. Label of the action (Small Text) field in DocType 'DocType Action'
+#: frappe/core/doctype/doctype_action/doctype_action.json
msgid "Action / Route"
-msgstr "Azione / percorso"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:310
-#: public/js/frappe/widgets/onboarding_widget.js:381
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:305
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:376
msgid "Action Complete"
msgstr ""
-#: model/document.py:1648
+#: frappe/model/document.py:1871
msgid "Action Failed"
-msgstr "Azione Fallita"
+msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the action_label (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Action Label"
msgstr ""
-#. Label of a Int field in DocType 'Success Action'
-#: core/doctype/success_action/success_action.json
-msgctxt "Success Action"
+#. Label of the action_timeout (Int) field in DocType 'Success Action'
+#: frappe/core/doctype/success_action/success_action.json
msgid "Action Timeout (Seconds)"
-msgstr "Scadenza azione (secondi)"
+msgstr ""
-#. Label of a Select field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
+#. Label of the action_type (Select) field in DocType 'DocType Action'
+#: frappe/core/doctype/doctype_action/doctype_action.json
msgid "Action Type"
-msgstr "Tipo di azione"
+msgstr ""
-#: core/doctype/submission_queue/submission_queue.py:119
+#: frappe/core/doctype/submission_queue/submission_queue.py:120
msgid "Action {0} completed successfully on {1} {2}. View it {3}"
msgstr ""
-#: core/doctype/submission_queue/submission_queue.py:115
+#: frappe/core/doctype/submission_queue/submission_queue.py:116
msgid "Action {0} failed on {1} {2}. View it {3}"
msgstr ""
-#: core/doctype/communication/communication.js:66
-#: core/doctype/communication/communication.js:74
-#: core/doctype/communication/communication.js:82
-#: core/doctype/communication/communication.js:90
-#: core/doctype/communication/communication.js:99
-#: core/doctype/communication/communication.js:108
-#: core/doctype/communication/communication.js:131
-#: core/doctype/rq_job/rq_job_list.js:14 core/doctype/rq_job/rq_job_list.js:39
-#: custom/doctype/customize_form/customize_form.js:108
-#: custom/doctype/customize_form/customize_form.js:116
-#: custom/doctype/customize_form/customize_form.js:124
-#: custom/doctype/customize_form/customize_form.js:132
-#: custom/doctype/customize_form/customize_form.js:140
-#: custom/doctype/customize_form/customize_form.js:238
-#: public/js/frappe/views/reports/query_report.js:190
-#: public/js/frappe/views/reports/query_report.js:203
-#: public/js/frappe/views/reports/query_report.js:213
+#. Label of the actions_section (Tab Break) field in DocType 'DocType'
+#. Label of the actions (Table) field in DocType 'Customize Form'
+#: frappe/core/doctype/communication/communication.js:66
+#: frappe/core/doctype/communication/communication.js:74
+#: frappe/core/doctype/communication/communication.js:82
+#: frappe/core/doctype/communication/communication.js:90
+#: frappe/core/doctype/communication/communication.js:99
+#: frappe/core/doctype/communication/communication.js:108
+#: frappe/core/doctype/communication/communication.js:131
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/rq_job/rq_job_list.js:14
+#: frappe/core/doctype/rq_job/rq_job_list.js:39
+#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:48
+#: frappe/custom/doctype/customize_form/customize_form.js:108
+#: frappe/custom/doctype/customize_form/customize_form.js:116
+#: frappe/custom/doctype/customize_form/customize_form.js:124
+#: frappe/custom/doctype/customize_form/customize_form.js:132
+#: frappe/custom/doctype/customize_form/customize_form.js:140
+#: frappe/custom/doctype/customize_form/customize_form.js:148
+#: frappe/custom/doctype/customize_form/customize_form.js:283
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/public/js/frappe/ui/page.html:57
+#: frappe/public/js/frappe/views/reports/query_report.js:190
+#: frappe/public/js/frappe/views/reports/query_report.js:203
+#: frappe/public/js/frappe/views/reports/query_report.js:213
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Actions"
-msgstr "Azioni"
+msgstr ""
-#. Label of a Table field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Actions"
-msgstr "Azioni"
-
-#. Label of a Section Break field in DocType 'DocType'
-#. Label of a Table field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Actions"
-msgstr "Azioni"
-
-#. Label of a Check field in DocType 'Package Import'
-#: core/doctype/package_import/package_import.json
-msgctxt "Package Import"
+#. Label of the activate (Check) field in DocType 'Package Import'
+#: frappe/core/doctype/package_import/package_import.json
msgid "Activate"
msgstr ""
-#: core/doctype/recorder/recorder_list.js:105 core/doctype/user/user_list.js:12
-#: workflow/doctype/workflow/workflow_list.js:5
-msgid "Active"
-msgstr "Attivo"
-
#. Option for the 'Status' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Active"
-msgstr "Attivo"
-
#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
-msgid "Active"
-msgstr "Attivo"
-
#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/recorder/recorder_list.js:207
+#: frappe/core/doctype/user/user_list.js:12
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/workflow/doctype/workflow/workflow_list.js:5
msgid "Active"
-msgstr "Attivo"
+msgstr ""
#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Active Directory"
msgstr ""
-#. Label of a Section Break field in DocType 'Domain Settings'
-#. Label of a Table field in DocType 'Domain Settings'
-#: core/doctype/domain_settings/domain_settings.json
-msgctxt "Domain Settings"
+#. Label of the active_domains_sb (Section Break) field in DocType 'Domain
+#. Settings'
+#. Label of the active_domains (Table) field in DocType 'Domain Settings'
+#: frappe/core/doctype/domain_settings/domain_settings.json
msgid "Active Domains"
-msgstr "Domini attivi"
+msgstr ""
-#: www/third_party_apps.html:32
+#. Label of the active_sessions (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+#: frappe/www/third_party_apps.html:34
msgid "Active Sessions"
-msgstr "Sessioni Attive"
-
-#: public/js/frappe/form/dashboard.js:22
-msgid "Activity"
-msgstr "Attività"
+msgstr ""
#. Group in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
+#: frappe/public/js/frappe/form/dashboard.js:22
+#: frappe/public/js/frappe/form/footer/form_timeline.js:60
msgid "Activity"
-msgstr "Attività"
+msgstr ""
#. Name of a DocType
-#: core/doctype/activity_log/activity_log.json
-msgid "Activity Log"
-msgstr "Registro attività"
-
#. Label of a Link in the Build Workspace
#. Label of a Link in the Users Workspace
-#: core/workspace/build/build.json core/workspace/users/users.json
-msgctxt "Activity Log"
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/workspace/build/build.json
+#: frappe/core/workspace/users/users.json
msgid "Activity Log"
-msgstr "Registro attività"
+msgstr ""
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Activity Log"
-msgstr "Registro attività"
-
-#: core/page/permission_manager/permission_manager.js:465
-#: email/doctype/email_group/email_group.js:60
-#: public/js/frappe/form/grid_row.js:468
-#: public/js/frappe/form/sidebar/assign_to.js:100
-#: public/js/frappe/list/bulk_operations.js:372
-#: public/js/frappe/views/dashboard/dashboard_view.js:440
-#: public/js/frappe/views/reports/query_report.js:265
-#: public/js/frappe/views/reports/query_report.js:293
-#: public/js/frappe/widgets/widget_dialog.js:30
+#: frappe/core/page/permission_manager/permission_manager.js:482
+#: frappe/email/doctype/email_group/email_group.js:60
+#: frappe/public/js/frappe/form/grid_row.js:485
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
+#: frappe/public/js/frappe/form/templates/set_sharing.html:68
+#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
+#: frappe/public/js/frappe/views/reports/query_report.js:265
+#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
-msgstr "Aggiungi"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:4
+#: frappe/public/js/frappe/form/grid_row.js:438
+msgid "Add / Remove Columns"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:4
msgid "Add / Update"
-msgstr "Aggiungi / Aggiorna"
+msgstr ""
-#: core/page/permission_manager/permission_manager.js:425
+#: frappe/core/page/permission_manager/permission_manager.js:442
msgid "Add A New Rule"
-msgstr "Aggiunge una nuova regola"
+msgstr ""
-#: public/js/frappe/views/interaction.js:159
+#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
-msgstr "Aggiungi allegato"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_background_image (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Background Image"
msgstr ""
-#. Title of an Onboarding Step
-#: website/onboarding_step/add_blog_category/add_blog_category.json
-msgid "Add Blog Category"
-msgstr ""
-
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_border_at_bottom (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Border at Bottom"
msgstr ""
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_border_at_top (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Border at Top"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:209
+#: frappe/desk/doctype/number_card/number_card.js:36
+msgid "Add Card to Dashboard"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:209
msgid "Add Chart to Dashboard"
-msgstr "Aggiungi grafico alla dashboard"
+msgstr ""
-#: public/js/frappe/views/treeview.js:285
+#: frappe/public/js/frappe/views/treeview.js:301
msgid "Add Child"
-msgstr "Aggiungi una sottovoce"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1664
-#: public/js/frappe/views/reports/query_report.js:1667
-#: public/js/frappe/views/reports/report_view.js:329
-#: public/js/frappe/views/reports/report_view.js:354
+#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
+#: frappe/public/js/frappe/views/reports/query_report.js:1771
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/report_view.js:355
+#: frappe/public/js/frappe/views/reports/report_view.js:380
+#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
-msgstr "Aggiungi colonna"
+msgstr ""
-#: core/doctype/communication/communication.js:127
+#: frappe/core/doctype/communication/communication.js:127
msgid "Add Contact"
-msgstr "Aggiungi contatto"
+msgstr ""
-#: desk/doctype/event/event.js:38
+#: frappe/desk/doctype/event/event.js:38
msgid "Add Contacts"
-msgstr "Aggiungi contatti"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_container (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Container"
-msgstr "Aggiungi contenitore"
+msgstr ""
-#. Label of a Button field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the set_meta_tags (Button) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Add Custom Tags"
-msgstr "Aggiungi tag personalizzati"
+msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:159
-#: public/js/frappe/widgets/widget_dialog.js:683
+#: frappe/public/js/frappe/widgets/widget_dialog.js:188
+#: frappe/public/js/frappe/widgets/widget_dialog.js:716
msgid "Add Filters"
-msgstr "Aggiungi filtri"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_shade (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Gray Background"
-msgstr "Aggiungi sfondo grigio"
+msgstr ""
-#: public/js/frappe/ui/group_by/group_by.js:417
+#: frappe/public/js/frappe/ui/group_by/group_by.js:230
+#: frappe/public/js/frappe/ui/group_by/group_by.js:427
msgid "Add Group"
-msgstr "Aggiungere gruppo"
+msgstr ""
-#: core/page/permission_manager/permission_manager.js:428
+#: frappe/core/doctype/recorder/recorder.js:30
+msgid "Add Indexes"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add Multiple"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager.js:445
msgid "Add New Permission Rule"
-msgstr "Aggiungi Nuova Regola di Autorizzazione"
+msgstr ""
-#: desk/doctype/event/event.js:35 desk/doctype/event/event.js:42
+#: frappe/desk/doctype/event/event.js:35 frappe/desk/doctype/event/event.js:42
msgid "Add Participants"
-msgstr "Aggiungi partecipanti"
+msgstr ""
-#. Label of a Check field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#. Label of the add_query_parameters (Check) field in DocType 'Email Group'
+#: frappe/email/doctype/email_group/email_group.json
msgid "Add Query Parameters"
msgstr ""
-#: public/js/frappe/form/sidebar/review.js:45
-msgid "Add Review"
-msgstr "Aggiungi recensione"
-
-#: core/doctype/user/user.py:768
+#: frappe/core/doctype/user/user.py:808
msgid "Add Roles"
msgstr ""
-#: public/js/frappe/views/communication.js:117
-msgid "Add Signature"
-msgstr "Aggiungi Firma"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Add Row"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the add_signature (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/public/js/frappe/views/communication.js:130
msgid "Add Signature"
-msgstr "Aggiungi Firma"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_bottom_padding (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Space at Bottom"
msgstr ""
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the add_top_padding (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Add Space at Top"
msgstr ""
-#: email/doctype/email_group/email_group.js:38
-#: email/doctype/email_group/email_group.js:59
+#: frappe/email/doctype/email_group/email_group.js:38
+#: frappe/email/doctype/email_group/email_group.js:59
msgid "Add Subscribers"
-msgstr "Aggiungi Abbonati"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:360
+#: frappe/public/js/frappe/list/bulk_operations.js:425
msgid "Add Tags"
msgstr ""
-#: public/js/frappe/list/list_view.js:1834
+#: frappe/public/js/frappe/list/list_view.js:2004
msgctxt "Button in list view actions menu"
msgid "Add Tags"
msgstr ""
-#: public/js/frappe/views/communication.js:320
+#: frappe/public/js/frappe/views/communication.js:427
msgid "Add Template"
msgstr ""
-#. Label of a Check field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#. Label of the add_total_row (Check) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
msgid "Add Total Row"
-msgstr "Aggiungi Totale Riga"
+msgstr ""
-#. Label of a Check field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#. Label of the add_translate_data (Check) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Add Translate Data"
+msgstr ""
+
+#. Label of the add_unsubscribe_link (Check) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Add Unsubscribe Link"
-msgstr "Aggiungi Link Annulla l'iscrizione"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:6
+#: frappe/core/doctype/user_permission/user_permission_list.js:6
msgid "Add User Permissions"
-msgstr "Aggiungi autorizzazioni utente"
+msgstr ""
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the add_video_conferencing (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Add Video Conferencing"
msgstr ""
-#: public/js/frappe/form/form_tour.js:203
+#: frappe/public/js/frappe/ui/filters/filter_list.js:299
+msgid "Add a Filter"
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:9
+msgid "Add a New Role"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_tour.js:211
msgid "Add a Row"
msgstr ""
-#: templates/includes/comments/comments.html:30
-#: templates/includes/comments/comments.html:47
+#: frappe/templates/includes/comments/comments.html:30
+#: frappe/templates/includes/comments/comments.html:47
msgid "Add a comment"
-msgstr "Aggiungi un commento"
+msgstr ""
-#: public/js/frappe/form/form.js:192
+#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:28
+#: frappe/public/js/form_builder/components/Tabs.vue:192
+msgid "Add a new section"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:193
msgid "Add a row above the current row"
msgstr ""
-#: public/js/frappe/form/form.js:204
+#: frappe/public/js/frappe/form/form.js:205
msgid "Add a row at the bottom"
msgstr ""
-#: public/js/frappe/form/form.js:200
+#: frappe/public/js/frappe/form/form.js:201
msgid "Add a row at the top"
msgstr ""
-#: public/js/frappe/form/form.js:196
+#: frappe/public/js/frappe/form/form.js:197
msgid "Add a row below the current row"
msgstr ""
-#: public/js/frappe/views/dashboard/dashboard_view.js:285
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:286
msgid "Add a {0} Chart"
-msgstr "Aggiungi un {0} grafico"
+msgstr ""
-#: custom/doctype/client_script/client_script.js:16
+#: frappe/public/js/form_builder/components/Section.vue:271
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:115
+msgid "Add column"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/AddFieldButton.vue:9
+#: frappe/public/js/form_builder/components/AddFieldButton.vue:48
+msgid "Add field"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Sidebar.vue:49
+#: frappe/public/js/form_builder/components/Tabs.vue:153
+msgid "Add new tab"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:125
+msgid "Add page break"
+msgstr ""
+
+#: frappe/custom/doctype/client_script/client_script.js:16
msgid "Add script for Child Table"
-msgstr "Aggiungi script per tabella figlio"
+msgstr ""
-#: public/js/frappe/utils/dashboard_utils.js:263
-#: public/js/frappe/views/reports/query_report.js:251
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:111
+msgid "Add section above"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:265
+msgid "Add section below"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Sidebar.vue:52
+#: frappe/public/js/form_builder/components/Tabs.vue:157
+msgid "Add tab"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/dashboard_utils.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:251
msgid "Add to Dashboard"
-msgstr "Aggiungi a Dashboard"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:98
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:99
msgid "Add to ToDo"
-msgstr "Aggiungi a ToDo"
+msgstr ""
-#: website/doctype/website_slideshow/website_slideshow.js:32
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:32
msgid "Add to table"
-msgstr "Aggiungi alla tabella"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:97
+#: frappe/public/js/frappe/form/footer/form_timeline.js:99
msgid "Add to this activity by mailing to {0}"
msgstr ""
+#: frappe/public/js/frappe/views/kanban/kanban_column.html:20
+msgid "Add {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:286
+msgctxt "Primary action in list view"
+msgid "Add {0}"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Added"
+msgstr ""
+
#. Description of the '<head> HTML' (Code) field in DocType 'Website
#. Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Added HTML in the <head> section of the web page, primarily used for website verification and SEO"
-msgstr "HTML Aggiunto nella sezione <head> della pagina web, utilizzato principalmente per la verifica sito web e SEO"
+msgstr ""
-#: core/doctype/log_settings/log_settings.py:82
+#: frappe/core/doctype/log_settings/log_settings.py:81
msgid "Added default log doctypes: {}"
msgstr ""
-#: core/doctype/file/file.py:720
-msgid "Added {0}"
-msgstr "Aggiunto {0}"
-
-#: public/js/frappe/form/link_selector.js:180
-#: public/js/frappe/form/link_selector.js:202
+#: frappe/public/js/frappe/form/link_selector.js:180
+#: frappe/public/js/frappe/form/link_selector.js:202
msgid "Added {0} ({1})"
-msgstr "Aggiunti {0} ({1})"
+msgstr ""
-#: core/doctype/user/user.py:271
-msgid "Adding System Manager to this User as there must be atleast one System Manager"
-msgstr "Verrà aggiunto anche il ruolo di Responsabile di Sistema a questo Utente, poiché deve esistere almeno un Responsabile di Sistema"
-
-#. Label of a Section Break field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
+#. Label of the additional_permissions (Section Break) field in DocType 'Custom
+#. DocPerm'
+#. Label of the additional_permissions (Section Break) field in DocType
+#. 'DocPerm'
+#. Label of the additional_permissions_section (Section Break) field in DocType
+#. 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Additional Permissions"
-msgstr "Autorizzazioni aggiuntive"
-
-#. Label of a Section Break field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Additional Permissions"
-msgstr "Autorizzazioni aggiuntive"
+msgstr ""
#. Name of a DocType
-#: contacts/doctype/address/address.json
+#. Label of the address (Link) field in DocType 'Contact'
+#. Label of the address (Section Break) field in DocType 'Contact Us Settings'
+#. Label of the address (Small Text) field in DocType 'Website Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address"
-msgstr "Indirizzo"
+msgstr ""
-#. Label of a Link field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Address"
-msgstr "Indirizzo"
-
-#. Label of a Section Break field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Address"
-msgstr "Indirizzo"
-
-#. Label of a Small Text field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Address"
-msgstr "Indirizzo"
-
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the address_line1 (Data) field in DocType 'Address'
+#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 1"
-msgstr "Indirizzo"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Address Line 1"
-msgstr "Indirizzo"
-
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the address_line2 (Data) field in DocType 'Address'
+#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Line 2"
-msgstr "Indirizzo 2"
-
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Address Line 2"
-msgstr "Indirizzo 2"
+msgstr ""
#. Name of a DocType
-#: contacts/doctype/address_template/address_template.json
+#: frappe/contacts/doctype/address_template/address_template.json
msgid "Address Template"
-msgstr "Indirizzo Template"
+msgstr ""
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the address_title (Data) field in DocType 'Address'
+#. Label of the address_title (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Address Title"
-msgstr "Titolo indirizzo"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Address Title"
-msgstr "Titolo indirizzo"
-
-#: contacts/doctype/address/address.py:71
+#: frappe/contacts/doctype/address/address.py:72
msgid "Address Title is mandatory."
-msgstr "Il titolo dell'indirizzo è obbligatorio."
+msgstr ""
-#. Label of a Select field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the address_type (Select) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "Address Type"
-msgstr "Tipo di indirizzo"
+msgstr ""
#. Description of the 'Address' (Small Text) field in DocType 'Website
#. Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Address and other legal information you may want to put in the footer."
-msgstr "Indirizzo e altre informazioni legali che si intende visualizzare nel piè di pagina."
+msgstr ""
-#: contacts/doctype/address/address.py:208
+#: frappe/contacts/doctype/address/address.py:206
msgid "Addresses"
-msgstr "Indirizzi"
+msgstr ""
#. Name of a report
-#: contacts/report/addresses_and_contacts/addresses_and_contacts.json
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.json
msgid "Addresses And Contacts"
-msgstr "Indirizzi e contatti"
+msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:536
+#. Description of a DocType
+#: frappe/custom/doctype/client_script/client_script.json
+msgid "Adds a custom client script to a DocType"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/custom/doctype/custom_field/custom_field.json
+msgid "Adds a custom field to a DocType"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552
msgid "Administration"
-msgstr "Amministrazione"
+msgstr ""
#. Name of a role
-#: contacts/doctype/salutation/salutation.json
-#: core/doctype/doctype/doctype.json core/doctype/domain/domain.json
-#: core/doctype/module_def/module_def.json core/doctype/page/page.json
-#: core/doctype/patch_log/patch_log.json core/doctype/recorder/recorder.json
-#: core/doctype/report/report.json core/doctype/rq_job/rq_job.json
-#: core/doctype/transaction_log/transaction_log.json
-#: core/doctype/user_type/user_type.json core/doctype/version/version.json
-#: custom/doctype/client_script/client_script.json
-#: custom/doctype/custom_field/custom_field.json
-#: custom/doctype/property_setter/property_setter.json
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
-#: desk/doctype/onboarding_step/onboarding_step.json
-#: website/doctype/website_theme/website_theme.json
+#: frappe/contacts/doctype/salutation/salutation.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/domain/domain.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/page/page.json
+#: frappe/core/doctype/patch_log/patch_log.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/core/doctype/version/version.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/system_console/system_console.json
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Administrator"
-msgstr "Amministratore"
+msgstr ""
-#: core/doctype/user/user.py:1180
+#: frappe/core/doctype/user/user.py:1213
msgid "Administrator Logged In"
-msgstr "Amministratore connesso"
+msgstr ""
-#: core/doctype/user/user.py:1174
+#: frappe/core/doctype/user/user.py:1207
msgid "Administrator accessed {0} on {1} via IP Address {2}."
-msgstr "Accesso amministratore {0} il {1} tramite indirizzo IP {2}."
+msgstr ""
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: 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 "Avanzato"
+msgstr ""
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Advanced"
-msgstr "Avanzato"
-
-#. Label of a Section Break field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
+#. Label of the advanced_control_section (Section Break) field in DocType 'User
+#. Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
msgid "Advanced Control"
-msgstr "Controllo avanzato"
+msgstr ""
-#: public/js/frappe/form/controls/link.js:315
-#: public/js/frappe/form/controls/link.js:317
+#: frappe/public/js/frappe/form/controls/link.js:335
+#: frappe/public/js/frappe/form/controls/link.js:337
msgid "Advanced Search"
-msgstr "Ricerca Avanzata"
+msgstr ""
-#. Label of a Section Break field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the sb_advanced (Section Break) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Advanced Settings"
-msgstr "Impostazioni avanzate"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:64
+#: frappe/public/js/frappe/ui/filters/filter.js:70
+msgid "After"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "After Cancel"
-msgstr "Dopo Annulla"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "After Delete"
-msgstr "Dopo Elimina"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Discard"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "After Insert"
msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "After Save"
-msgstr "Dopo il salvataggio"
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Rename"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "After Save (Submitted Document)"
-msgstr "Dopo il salvataggio (documento inviato)"
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Save"
+msgstr ""
-#. Label of a Section Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "After Save (Submitted Document)"
+msgstr ""
+
+#. Label of the section_break_5 (Section Break) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "After Submission"
msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "After Submit"
-msgstr "Dopo inviare"
+msgstr ""
-#: desk/doctype/number_card/number_card.py:58
+#: frappe/desk/doctype/number_card/number_card.py:62
msgid "Aggregate Field is required to create a number card"
msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the aggregate_function_based_on (Select) field in DocType
+#. 'Dashboard Chart'
+#. Label of the aggregate_function_based_on (Select) field in DocType 'Number
+#. Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Aggregate Function Based On"
-msgstr "Funzione aggregata basata su"
+msgstr ""
-#. Label of a Select field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Aggregate Function Based On"
-msgstr "Funzione aggregata basata su"
-
-#: desk/doctype/dashboard_chart/dashboard_chart.py:410
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:410
msgid "Aggregate Function field is required to create a dashboard chart"
-msgstr "Il campo Funzione aggregata è obbligatorio per creare un grafico dashboard"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Alert"
-msgstr "Mettere in guardia"
+msgstr ""
#. Label of a Card Break in the Tools Workspace
-#: automation/workspace/tools/tools.json
+#: frappe/automation/workspace/tools/tools.json
msgid "Alerts and Notifications"
msgstr ""
-#. Label of a Select field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the align (Select) field in DocType 'Letter Head'
+#. Label of the footer_align (Select) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Align"
msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the align_labels_right (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Align Labels to the Right"
-msgstr "Allinea le etichette a destra"
+msgstr ""
-#. Label of a Check field in DocType 'Top Bar Item'
-#: website/doctype/top_bar_item/top_bar_item.json
-msgctxt "Top Bar Item"
+#. Label of the right (Check) field in DocType 'Top Bar Item'
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Align Right"
-msgstr "Allinea a destra"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:479
+#: frappe/printing/page/print_format_builder/print_format_builder.js:479
msgid "Align Value"
-msgstr "Allinea Valore"
+msgstr ""
#. Name of a role
-#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json
-#: contacts/doctype/gender/gender.json
-#: contacts/doctype/salutation/salutation.json
-#: core/doctype/communication/communication.json core/doctype/file/file.json
-#: core/doctype/language/language.json core/doctype/module_def/module_def.json
-#: core/doctype/user/user.json desk/doctype/event/event.json
-#: desk/doctype/notification_log/notification_log.json
-#: desk/doctype/notification_settings/notification_settings.json
-#: desk/doctype/tag/tag.json desk/doctype/tag_link/tag_link.json
-#: desk/doctype/todo/todo.json geo/doctype/country/country.json
-#: integrations/doctype/connected_app/connected_app.json
-#: integrations/doctype/token_cache/token_cache.json
-#: printing/doctype/print_heading/print_heading.json
-#: website/doctype/personal_data_download_request/personal_data_download_request.json
-#: website/doctype/website_settings/website_settings.json
-msgid "All"
-msgstr "Tutti"
-
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "All"
-msgstr "Tutti"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/gender/gender.json
+#: frappe/contacts/doctype/salutation/salutation.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/file/file.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+#: frappe/printing/doctype/print_heading/print_heading.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
-msgstr "Tutti"
+msgstr ""
-#: public/js/frappe/ui/notifications/notifications.js:394
+#. Label of the all_day (Check) field in DocType 'Calendar View'
+#. Label of the all_day (Check) field in DocType 'Event'
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:408
msgid "All Day"
-msgstr "Intera giornata"
+msgstr ""
-#. Label of a Check field in DocType 'Calendar View'
-#: desk/doctype/calendar_view/calendar_view.json
-msgctxt "Calendar View"
-msgid "All Day"
-msgstr "Intera giornata"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "All Day"
-msgstr "Intera giornata"
-
-#: website/doctype/website_slideshow/website_slideshow.py:42
+#: frappe/website/doctype/website_slideshow/website_slideshow.py:43
msgid "All Images attached to Website Slideshow should be public"
-msgstr "Tutte le immagini allegate alla presentazione del sito web devono essere pubbliche"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:29
+#: frappe/public/js/frappe/data_import/data_exporter.js:29
msgid "All Records"
-msgstr "Tutti i record"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:384
+#: frappe/public/js/frappe/form/form.js:2222
+msgid "All Submissions"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:452
msgid "All customizations will be removed. Please confirm."
-msgstr "Tutte le personalizzazioni saranno rimosse. Si prega di confermare."
+msgstr ""
-#: templates/includes/comments/comments.html:158
+#: frappe/templates/includes/comments/comments.html:158
msgid "All fields are necessary to submit the comment."
msgstr ""
#. Description of the 'Document States' (Table) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "All possible Workflow States and roles of the workflow. Docstatus Options: 0 is \"Saved\", 1 is \"Submitted\" and 2 is \"Cancelled\""
msgstr ""
-#: utils/password_strength.py:187
+#: frappe/utils/password_strength.py:183
msgid "All-uppercase is almost as easy to guess as all-lowercase."
-msgstr "All-maiuscolo è quasi altrettanto facile intuire come tutto in minuscolo."
-
-#. Label of a Link field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Allocated To"
-msgstr "Assegnato a"
-
-#. Label of a Check field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Allot Points To Assigned Users"
-msgstr "Assegnare punti agli utenti assegnati"
-
-#: templates/includes/oauth_confirmation.html:15
-msgid "Allow"
-msgstr "Consenti"
-
-#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Allow"
-msgstr "Consenti"
-
-#. Label of a Link field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
-msgid "Allow"
-msgstr "Consenti"
-
-#: website/doctype/website_settings/website_settings.py:160
-msgid "Allow API Indexing Access"
-msgstr "Consenti accesso indicizzazione API"
-
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Allow Auto Repeat"
-msgstr "Consenti ripetizione automatica"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Allow Auto Repeat"
-msgstr "Consenti ripetizione automatica"
-
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Allow Bulk Edit"
-msgstr "Consenti la modifica bulk"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Allow Bulk Edit"
-msgstr "Consenti la modifica bulk"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Comments"
-msgstr "Consenti commenti"
-
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Allow Consecutive Login Attempts "
-msgstr "Tentativi di accesso consecutivi consentiti"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Delete"
-msgstr "Consenti Elimina"
-
-#. Label of a Button field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Allow Dropbox Access"
-msgstr "Consentire Accesso DropBox"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Editing After Submit"
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:100
-#: integrations/doctype/google_calendar/google_calendar.py:114
+#. Label of the 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 "Consenti l'accesso a Google Calendar"
+msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.py:39
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:40
msgid "Allow Google Contacts Access"
-msgstr "Consenti l'accesso ai contatti di Google"
+msgstr ""
-#: integrations/doctype/google_drive/google_drive.py:51
-msgid "Allow Google Drive Access"
-msgstr "Consentire Accesso Google Drive"
-
-#. Label of a Check field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the allow_guest (Check) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
-msgstr "Consenti Ospite"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the allow_guest_to_view (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Allow Guest to View"
-msgstr "Consenti all'ospite di Visualizzare"
+msgstr ""
-#. Label of a Check field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Allow Guest to comment"
msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the allow_guests_to_upload_files (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow Guests to Upload Files"
-msgstr "Consenti agli ospiti di caricare file"
-
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Allow Import (via Data Import Tool)"
-msgstr "Consentire l'importazione (tramite Data Import Tool)"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Allow Import (via Data Import Tool)"
-msgstr "Consentire l'importazione (tramite Data Import Tool)"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Incomplete Forms"
-msgstr "Consenti moduli incompleti"
-
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Allow Login After Fail"
-msgstr "Permetti Login dopo un Errore"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Allow Login using Mobile Number"
-msgstr "Consenti l'accesso utilizzando il numero di cellulare"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Allow Login using User Name"
-msgstr "Consenti l'accesso utilizzando il nome utente"
-
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Allow Modules"
-msgstr "Consenti moduli"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Multiple Responses"
msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the allow_import (Check) field in DocType 'DocType'
+#. Label of the allow_import (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Allow Import (via Data Import Tool)"
+msgstr ""
+
+#. Label of the allow_login_after_fail (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Login After Fail"
+msgstr ""
+
+#. Label of the allow_login_using_mobile_number (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Login using Mobile Number"
+msgstr ""
+
+#. Label of the allow_login_using_user_name (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Allow Login using User Name"
+msgstr ""
+
+#. Label of the sb_allow_modules (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Allow Modules"
+msgstr ""
+
+#. Label of the allow_older_web_view_links (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow Older Web View Links (Insecure)"
msgstr ""
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Allow Print"
-msgstr "Consenti la stampa"
-
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the allow_print_for_cancelled (Check) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Allow Print for Cancelled"
-msgstr "Consenti la stampa per gli Annullati"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:395
+#. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Allow Print for Draft"
-msgstr "Consentire la stampa per le Bozze"
+msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Allow Print for Draft"
-msgstr "Consentire la stampa per le Bozze"
-
-#. Label of a Check field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the allow_read_on_all_link_options (Check) field in DocType 'Web
+#. Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Allow Read On All Link Options"
-msgstr "Consenti lettura su tutte le opzioni di collegamento"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the allow_rename (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Allow Rename"
-msgstr "Consenti Rinomina"
+msgstr ""
-#. Label of a Table MultiSelect field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
+#. Label of the roles_permission (Section Break) field in DocType 'Role
+#. Permission for Page and Report'
+#. Label of the allow_roles (Table MultiSelect) field in DocType 'Module
+#. Onboarding'
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Allow Roles"
-msgstr "Consenti ruoli"
+msgstr ""
-#. Label of a Section Break field in DocType 'Role Permission for Page and
-#. Report'
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgctxt "Role Permission for Page and Report"
-msgid "Allow Roles"
-msgstr "Consenti ruoli"
-
-#. Label of a Check field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
+#. Label of the allow_self_approval (Check) field in DocType 'Workflow
+#. Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Allow Self Approval"
-msgstr "Consenti auto approvazione"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the enable_telemetry (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow Sending Usage Data for Improving Applications"
msgstr ""
#. Description of the 'Allow Self Approval' (Check) field in DocType 'Workflow
#. Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Allow approval for creator of the document"
-msgstr "Consenti l'approvazione per il creatore del documento"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the allow_comments (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow comments"
+msgstr ""
+
+#. Label of the allow_delete (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow delete"
+msgstr ""
+
+#. Label of the email_append_to (Check) field in DocType 'DocType'
+#. Label of the email_append_to (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Allow document creation via Email"
-msgstr "Consenti la creazione di documenti tramite e-mail"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Allow document creation via Email"
-msgstr "Consenti la creazione di documenti tramite e-mail"
+#. Label of the allow_edit (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow editing after submit"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Description of the 'Allow Bulk Editing' (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Allow editing even if the doctype has a workflow set up.\n\n"
+"Does nothing if a workflow isn't set up."
+msgstr ""
+
+#. Label of the allow_events_in_timeline (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Allow events in timeline"
-msgstr "Consenti eventi nella timeline"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the allow_in_quick_entry (Check) field in DocType 'DocField'
+#. Label of the allow_in_quick_entry (Check) field in DocType 'Custom Field'
+#. Label of the allow_in_quick_entry (Check) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Allow in Quick Entry"
-msgstr "Consenti inserimento rapido"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Allow in Quick Entry"
-msgstr "Consenti inserimento rapido"
+#. Label of the allow_incomplete (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow incomplete forms"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Allow in Quick Entry"
-msgstr "Consenti inserimento rapido"
+#. Label of the allow_multiple (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow multiple responses"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the allow_on_submit (Check) field in DocType 'DocField'
+#. Label of the allow_on_submit (Check) field in DocType 'Custom Field'
+#. Label of the allow_on_submit (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Allow on Submit"
-msgstr "Consenti se Confermato"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Allow on Submit"
-msgstr "Consenti se Confermato"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Allow on Submit"
-msgstr "Consenti se Confermato"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the deny_multiple_sessions (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow only one session per user"
-msgstr "Consenti solo una sessione per utente"
+msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the allow_page_break_inside_tables (Check) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Allow page break inside tables"
-msgstr "Consenti interruzione di pagina all'interno delle tabelle"
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:420
+#. Label of the allow_print (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Allow print"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:431
msgid "Allow recording my first session to improve user experience"
msgstr ""
-#. Description of the 'Allow Incomplete Forms' (Check) field in DocType 'Web
+#. Description of the 'Allow incomplete forms' (Check) field in DocType 'Web
#. Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#: frappe/website/doctype/web_form/web_form.json
msgid "Allow saving if mandatory fields are not filled"
-msgstr "Consentire il salvataggio se i campi obbligatori non vengono compilati"
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:413
+#: frappe/desk/page/setup_wizard/setup_wizard.js:424
msgid "Allow sending usage data for improving applications"
msgstr ""
#. Description of the 'Login After' (Int) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Allow user to login only after this hour (0-24)"
-msgstr "Consentire Login Utente solo dopo questo orario (0-24)"
+msgstr ""
#. Description of the 'Login Before' (Int) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Allow user to login only before this hour (0-24)"
-msgstr "Consentire Login Utente solo prima di questo orario (0-24)"
+msgstr ""
#. Description of the 'Login with email link' (Check) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allow users to log in without a password, using a login link sent to their email"
msgstr ""
-#. Label of a Link field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
+#. Label of the allowed (Link) field in DocType 'Workflow Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Allowed"
-msgstr "Consentito"
+msgstr ""
-#. Label of a Small Text field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the allowed_file_extensions (Small Text) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Allowed File Extensions"
msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the allowed_in_mentions (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Allowed In Mentions"
-msgstr "Permesso nelle Menzioni"
+msgstr ""
-#. Label of a Section Break field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the allowed_modules_section (Section Break) field in DocType 'User
+#. Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "Allowed Modules"
msgstr ""
-#: public/js/frappe/form/form.js:1229
+#. Label of the allowed_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 "Permettere DocType, DocType. Fai attenzione!"
+msgstr ""
-#: core/doctype/user/user.py:977
+#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
-msgstr "Già Registrato"
+msgstr ""
-#: desk/form/assign_to.py:132
+#: frappe/desk/form/assign_to.py:137
msgid "Already in the following Users ToDo list:{0}"
-msgstr "Già nel seguente elenco di attività da fare per gli utenti: {0}"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:840
+#: frappe/public/js/frappe/views/reports/report_view.js:902
msgid "Also adding the dependent currency field {0}"
-msgstr "Aggiunta anche del campo valuta dipendente {0}"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:853
+#: frappe/public/js/frappe/views/reports/report_view.js:915
msgid "Also adding the status dependency field {0}"
-msgstr "Aggiunta anche del campo di dipendenza dello stato {0}"
+msgstr ""
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the login_id (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Alternative Email ID"
msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Always add \"Draft\" Heading for printing draft documents"
-msgstr "Aggiungere sempre \"Bozza\" nell'intestazione per la stampa dei documenti"
+#. Label of the always_bcc (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Always BCC Address"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the add_draft_heading (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Always add \"Draft\" Heading for printing draft documents"
+msgstr ""
+
+#. Label of the always_use_account_email_id_as_sender (Check) field in DocType
+#. 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Always use this email address as sender address"
msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the always_use_account_name_as_sender_name (Check) field in DocType
+#. 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Always use this name as sender name"
msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
+#. Label of the amend (Check) field in DocType 'Custom DocPerm'
+#. Label of the amend (Check) field in DocType 'DocPerm'
+#. Label of the amend (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Amend"
-msgstr "Correggi"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Amend"
-msgstr "Correggi"
-
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Amend"
-msgstr "Correggi"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming
#. Settings'
-#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
-msgctxt "Amended Document Naming Settings"
-msgid "Amend Counter"
-msgstr ""
-
#. Option for the 'Default Amendment Naming' (Select) field in DocType
#. 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Amend Counter"
msgstr ""
#. Name of a DocType
-#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
msgid "Amended Document Naming Settings"
msgstr ""
-#. Label of a Section Break field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the amended_documents_section (Section Break) field in DocType
+#. 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Amended Documents"
msgstr ""
-#. Label of a Link field in DocType 'Personal Data Download Request'
-#: website/doctype/personal_data_download_request/personal_data_download_request.json
-msgctxt "Personal Data Download Request"
+#. Label of the amended_from (Link) field in DocType 'Transaction Log'
+#. Label of the amended_from (Link) field in DocType 'Personal Data Download
+#. Request'
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
msgid "Amended From"
-msgstr "Corretto da"
+msgstr ""
-#. Label of a Link field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Amended From"
-msgstr "Corretto da"
-
-#: public/js/frappe/form/save.js:12
+#: frappe/public/js/frappe/form/save.js:12
msgctxt "Freeze message while amending a document"
msgid "Amending"
-msgstr "Rettificativo"
+msgstr ""
-#. Label of a Table field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the amend_naming_override (Table) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Amendment Naming Override"
msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.py:208
+#: frappe/model/document.py:549
+msgid "Amendment Not Allowed"
+msgstr ""
+
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:207
msgid "Amendment naming rules updated."
msgstr ""
-#: public/js/frappe/ui/toolbar/toolbar.js:287
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
msgid "An error occurred while setting Session Defaults"
-msgstr "Si è verificato un errore durante l'impostazione dei valori predefiniti della sessione"
+msgstr ""
#. Description of the 'FavIcon' (Attach) field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]"
-msgstr "Un file icona con estensione .ico. Dovrebbe essere 16 x 16 px. Generato usando un generatore di favicon. [favicon-generator.org]"
+msgstr ""
-#: templates/includes/oauth_confirmation.html:35
+#: frappe/templates/includes/oauth_confirmation.html:38
msgid "An unexpected error occurred while authorizing {}."
msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the analytics_section (Section Break) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Analytics"
-msgstr "Analisi dei dati"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:35
+#: frappe/public/js/frappe/ui/filters/filter.js:35
msgid "Ancestors Of"
-msgstr "Antenati di"
+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'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Annual"
-msgstr "Annuale"
+msgstr ""
-#. Label of a Code field in DocType 'Personal Data Deletion Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
+#. Label of the anonymization_matrix (Code) field in DocType 'Personal Data
+#. Deletion Request'
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Anonymization Matrix"
msgstr ""
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Anonymous"
-msgstr "Anonimo"
-
-#: public/js/frappe/request.js:186
-msgid "Another transaction is blocking this one. Please try again in a few seconds."
-msgstr "Un'altra operazione sta bloccando questo. Riprova in pochi secondi."
-
-#: model/rename_doc.py:380
-msgid "Another {0} with name {1} exists, select another name"
-msgstr "Un altro {0} con il nome {1} esiste , selezionare un altro nome"
-
-#. Description of the 'Raw Commands' (Code) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language."
-msgstr "È possibile utilizzare qualsiasi linguaggio di stampa basato su stringhe. La scrittura di comandi non elaborati richiede la conoscenza della lingua madre della stampante fornita dal produttore della stampante. Fare riferimento al manuale dello sviluppatore fornito dal produttore della stampante su come scrivere i loro comandi nativi. Questi comandi vengono resi sul lato server usando il linguaggio di template Jinja."
-
-#. Label of a Data field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "App"
-msgstr "App"
-
-#. Label of a Data field in DocType 'Website Theme Ignore App'
-#: website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
-msgctxt "Website Theme Ignore App"
-msgid "App"
-msgstr "App"
-
-#. Label of a Data field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "App Access Key"
-msgstr "App Access Key"
-
-#: integrations/doctype/dropbox_settings/dropbox_settings.js:22
-msgid "App Access Key and/or Secret Key are not present."
+#. Label of the anonymous (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Anonymous responses"
msgstr ""
-#. Label of a Data field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#: 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 client_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client ID"
-msgstr "App Client ID"
+msgstr ""
-#. Label of a Data field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client Secret"
-msgstr "App client Secret"
+msgstr ""
-#. Label of a Data field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
+#. Label of the app_id (Data) field in DocType 'Google Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "App ID"
msgstr ""
-#. Label of a Attach Image field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the app_logo (Attach Image) field in DocType 'Website Settings'
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:8
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Logo"
msgstr ""
-#: core/doctype/installed_applications/installed_applications.js:27
+#. Label of the app_name (Select) field in DocType 'Module Def'
+#. Label of the app_name (Data) field in DocType 'Changelog Feed'
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#. Label of the app_name (Data) field in DocType 'Website Settings'
+#: frappe/core/doctype/installed_applications/installed_applications.js:27
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
-msgstr "App Name"
+msgstr ""
-#. Label of a Select field in DocType 'Module Def'
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "App Name"
-msgstr "App Name"
-
-#. Label of a Data field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
-msgid "App Name"
-msgstr "App Name"
-
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "App Name"
-msgstr "App Name"
-
-#. Label of a Password field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "App Secret Key"
-msgstr "App Secret Key"
-
-#: modules/utils.py:268
+#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: __init__.py:1677
+#: frappe/__init__.py:1465
msgid "App {0} is not installed"
-msgstr "App {0} non è installata"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email
+#. Account'
+#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email
+#. Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Append Emails to Sent Folder"
-msgstr "Aggiungi e-mail alla cartella inviata"
+msgstr ""
-#. Label of a Check field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Append Emails to Sent Folder"
-msgstr "Aggiungi e-mail alla cartella inviata"
-
-#. Label of a Link field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the append_to (Link) field in DocType 'Email Account'
+#. Label of the append_to (Link) field in DocType 'IMAP Folder'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "Append To"
-msgstr "Aggiungere a"
+msgstr ""
-#. Label of a Link field in DocType 'IMAP Folder'
-#: email/doctype/imap_folder/imap_folder.json
-msgctxt "IMAP Folder"
-msgid "Append To"
-msgstr "Aggiungere a"
-
-#: email/doctype/email_account/email_account.py:178
+#: frappe/email/doctype/email_account/email_account.py:202
msgid "Append To can be one of {0}"
-msgstr "Aggiungere a può essere uno dei {0}"
+msgstr ""
#. Description of the 'Append To' (Link) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Append as communication against this DocType (must have fields: \"Sender\" and \"Subject\"). These fields can be defined in the email settings section of the appended doctype."
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:105
+#: frappe/core/doctype/user_permission/user_permission_list.js:105
msgid "Applicable Document Types"
-msgstr "Tipi di documenti applicabili"
+msgstr ""
-#. Label of a Link field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
+#. Label of the applicable_for (Link) field in DocType 'User Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
msgid "Applicable For"
-msgstr "Valido per"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Navbar Settings'
-#. Label of a Section Break field in DocType 'Navbar Settings'
-#: core/doctype/navbar_settings/navbar_settings.json
-msgctxt "Navbar Settings"
+#. Label of the app_logo (Attach Image) field in DocType 'Navbar Settings'
+#. Label of the logo_section (Section Break) field in DocType 'Navbar Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Application Logo"
-msgstr "Logo dell'applicazione"
+msgstr ""
-#. Label of a Data field in DocType 'Installed Application'
-#: core/doctype/installed_application/installed_application.json
-msgctxt "Installed Application"
+#. Label of the app_name (Data) field in DocType 'Installed Application'
+#. Label of the app_name (Data) field in DocType 'System Settings'
+#: frappe/core/doctype/installed_application/installed_application.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Application Name"
-msgstr "Nome dell'applicazione"
+msgstr ""
-#. Label of a Data field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Application Name"
-msgstr "Nome dell'applicazione"
-
-#. Label of a Data field in DocType 'Installed Application'
-#: core/doctype/installed_application/installed_application.json
-msgctxt "Installed Application"
+#. Label of the app_version (Data) field in DocType 'Installed Application'
+#: frappe/core/doctype/installed_application/installed_application.json
msgid "Application Version"
-msgstr "Versione dell'applicazione"
+msgstr ""
-#. Label of a Select field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#. Label of the doctype_or_field (Select) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Applied On"
-msgstr "Applicato su"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1819
+#: frappe/public/js/form_builder/components/Field.vue:103
+msgid "Apply"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1989
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
-msgstr "Applica regola di assegnazione"
+msgstr ""
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Apply Document Permissions"
-msgstr "Applica autorizzazioni documento"
-
-#: public/js/frappe/ui/filters/filter_list.js:315
+#: frappe/public/js/frappe/ui/filters/filter_list.js:318
msgid "Apply Filters"
msgstr ""
-#. Label of a Check field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Apply Only Once"
-msgstr "Applicare una sola volta"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the apply_strict_user_permissions (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Apply Strict User Permissions"
-msgstr "Applicare autorizzazioni utente rigorose"
+msgstr ""
-#. Label of a Select field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
+#. Label of the view (Select) field in DocType 'Client Script'
+#: frappe/custom/doctype/client_script/client_script.json
msgid "Apply To"
msgstr ""
-#. Label of a Check field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
+#. Label of the apply_to_all_doctypes (Check) field in DocType 'User
+#. Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
msgid "Apply To All Document Types"
-msgstr "Applica a tutti i tipi di documento"
+msgstr ""
-#. Label of a Link field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the apply_user_permission_on (Link) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "Apply User Permission On"
msgstr ""
+#. Label of the apply_document_permissions (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Apply document permissions"
+msgstr ""
+
#. Description of the 'If user is the owner' (Check) field in DocType 'Custom
#. DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Apply this rule if the User is the Owner"
-msgstr "Applicare questa regola se l'utente è il proprietario"
-
#. Description of the 'If user is the owner' (Check) field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
msgid "Apply this rule if the User is the Owner"
-msgstr "Applicare questa regola se l'utente è il proprietario"
+msgstr ""
-#. Description of the 'Apply Only Once' (Check) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Apply this rule only once per document"
-msgstr "Applicare questa regola una sola volta per documento"
-
-#: core/doctype/user_permission/user_permission_list.js:75
+#: frappe/core/doctype/user_permission/user_permission_list.js:75
msgid "Apply to all Documents Types"
-msgstr "Applica a tutti i tipi di documenti"
+msgstr ""
-#: model/workflow.py:265
+#: frappe/model/workflow.py:266
msgid "Applying: {0}"
-msgstr "Applicazione: {0}"
+msgstr ""
-#: public/js/frappe/form/sidebar/review.js:62
-msgid "Appreciate"
-msgstr "Apprezzare"
-
-#. Option for the 'Type' (Select) field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Appreciation"
-msgstr "Apprezzamento"
-
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:111
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:115
msgid "Approval Required"
-msgstr "Approvazione richiesta"
+msgstr ""
-#: public/js/frappe/utils/number_systems.js:41
+#. Label of a standard navbar item
+#. Type: Route
+#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18
+#: frappe/website/js/website.js:619 frappe/www/me.html:80
+msgid "Apps"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/number_systems.js:41
msgctxt "Number system"
msgid "Ar"
msgstr ""
-#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
-msgid "Archived"
-msgstr "Archiviato"
-
-#: public/js/frappe/views/kanban/kanban_board.bundle.js:490
-msgid "Archived Columns"
-msgstr "Colonne archiviati"
-
-#: public/js/frappe/form/grid.js:269
-msgid "Are you sure you want to delete all rows?"
-msgstr "Sei sicuro di voler eliminare tutte le righe?"
-
-#: public/js/frappe/views/workspace/workspace.js:885
-msgid "Are you sure you want to delete page {0}?"
+#: frappe/public/js/frappe/views/kanban/kanban_column.html:14
+msgid "Archive"
msgstr ""
-#: public/js/frappe/form/sidebar/attachments.js:135
-msgid "Are you sure you want to delete the attachment?"
-msgstr "Sei sicuro di voler eliminare questo allegato?"
+#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column'
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+msgid "Archived"
+msgstr ""
-#: public/js/frappe/web_form/web_form.js:185
+#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:494
+msgid "Archived Columns"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1968
+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:185
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: public/js/frappe/form/toolbar.js:110
-msgid "Are you sure you want to merge {0} with {1}?"
-msgstr "Sei sicuro di voler unire {0} con {1}?"
+#: frappe/public/js/frappe/views/reports/query_report.js:967
+msgid "Are you sure you want to generate a new report?"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:105
+#: 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:108
msgid "Are you sure you want to proceed?"
msgstr ""
-#: core/doctype/rq_job/rq_job_list.js:25
+#: frappe/core/doctype/rq_job/rq_job_list.js:25
msgid "Are you sure you want to re-enable scheduler?"
msgstr ""
-#: core/doctype/communication/communication.js:163
+#: frappe/core/doctype/communication/communication.js:163
msgid "Are you sure you want to relink this communication to {0}?"
-msgstr "Sei sicuro di voler ricollegare questa comunicazione a {0}?"
+msgstr ""
-#: core/doctype/rq_job/rq_job_list.js:10
+#: frappe/core/doctype/rq_job/rq_job_list.js:10
msgid "Are you sure you want to remove all failed jobs?"
msgstr ""
-#: public/js/frappe/list/list_filter.js:109
+#: frappe/public/js/frappe/list/list_filter.js:116
msgid "Are you sure you want to remove the {0} filter?"
msgstr ""
-#: public/js/frappe/views/dashboard/dashboard_view.js:267
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:268
msgid "Are you sure you want to reset all customizations?"
-msgstr "Sei sicuro di voler ripristinare tutte le personalizzazioni?"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:60
+#: frappe/workflow/doctype/workflow/workflow.js:125
+msgid "Are you sure you want to save this document?"
+msgstr ""
+
+#: frappe/email/doctype/newsletter/newsletter.js:60
msgid "Are you sure you want to send this newsletter now?"
msgstr ""
-#: core/doctype/document_naming_rule/document_naming_rule.js:16
-#: core/doctype/user_permission/user_permission_list.js:165
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
+#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
-msgstr "Sei sicuro?"
+msgstr ""
-#. Label of a Code field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the arguments (Code) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Arguments"
msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Arial"
-msgstr "Arial"
+msgstr ""
-#: desk/form/assign_to.py:102
+#: frappe/core/page/permission_manager/permission_manager_help.html:11
+msgid "As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User."
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:107
msgid "As document sharing is disabled, please give them the required permissions before assigning."
msgstr ""
-#: templates/emails/account_deletion_notification.html:3
+#: frappe/templates/emails/account_deletion_notification.html:3
msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted"
msgstr ""
-#. Label of a Code field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assign Condition"
-msgstr "Assegna condizione"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:163
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
msgid "Assign To"
-msgstr "Assegna a"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1804
+#: frappe/public/js/frappe/list/list_view.js:1950
msgctxt "Button in list view actions menu"
msgid "Assign To"
-msgstr "Assegna a"
+msgstr ""
-#. Label of a Section Break field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+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 "Assegna agli utenti"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:232
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:260
msgid "Assign a user"
msgstr ""
-#: automation/doctype/assignment_rule/assignment_rule.js:52
+#: frappe/automation/doctype/assignment_rule/assignment_rule.js:52
msgid "Assign one by one, in sequence"
-msgstr "Assegna uno per uno, in sequenza"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:154
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:174
msgid "Assign to me"
-msgstr "Assegna a me"
+msgstr ""
-#: automation/doctype/assignment_rule/assignment_rule.js:53
+#: frappe/automation/doctype/assignment_rule/assignment_rule.js:53
msgid "Assign to the one who has the least assignments"
-msgstr "Assegna a colui che ha il minor numero di incarichi"
+msgstr ""
-#: automation/doctype/assignment_rule/assignment_rule.js:54
+#: frappe/automation/doctype/assignment_rule/assignment_rule.js:54
msgid "Assign to the user set in this field"
-msgstr "Assegna all'utente impostato in questo campo"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Assigned"
-msgstr "addetto"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Assigned"
-msgstr "addetto"
-
-#: desk/report/todo/todo.py:41
+#. Label of the assigned_by (Link) field in DocType 'ToDo'
+#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:41
msgid "Assigned By"
-msgstr "Assegnato da"
+msgstr ""
-#. Label of a Link field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Assigned By"
-msgstr "Assegnato da"
-
-#. Label of a Read Only field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#. Label of the assigned_by_full_name (Read Only) field in DocType 'ToDo'
+#: frappe/desk/doctype/todo/todo.json
msgid "Assigned By Full Name"
-msgstr "Assegnato da Nome completo"
+msgstr ""
-#: desk/doctype/todo/todo_list.js:35
-msgid "Assigned By Me"
-msgstr "Assegnato da me"
-
-#: model/__init__.py:151 model/meta.py:55
-#: public/js/frappe/list/list_sidebar_group_by.js:71
-#: public/js/frappe/model/meta.js:207 public/js/frappe/model/model.js:126
-#: public/js/frappe/views/interaction.js:82
+#: frappe/model/meta.py:62
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:49
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:71
+#: frappe/public/js/frappe/model/meta.js:210
+#: frappe/public/js/frappe/model/model.js:136
+#: frappe/public/js/frappe/views/interaction.js:82
msgid "Assigned To"
-msgstr "Assegnato a"
+msgstr ""
-#: desk/report/todo/todo.py:40
+#: frappe/desk/report/todo/todo.py:40
msgid "Assigned To/Owner"
-msgstr "Assegnato a/proprietario"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:241
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:269
msgid "Assigning..."
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Assignment"
-msgstr "assegnazione"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Assignment Completed"
-msgstr "Assegnazione Completato"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Assignment Completed"
-msgstr "Assegnazione Completato"
-
-#. Label of a Section Break field in DocType 'Assignment Rule'
-#. Label of a Table field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the sb (Section Break) field in DocType 'Assignment Rule'
+#. Label of the assignment_days (Table) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Assignment Days"
-msgstr "Giorni di assegnazione"
-
-#: automation/doctype/assignment_rule/assignment_rule.py:64
-msgid "Assignment Day{0} {1} has been repeated."
msgstr ""
#. Name of a DocType
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgid "Assignment Rule"
-msgstr "Regola di assegnazione"
-
#. Label of a Link in the Tools Workspace
#. Label of a shortcut in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Assignment Rule"
+#. 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 "Regola di assegnazione"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Assignment Rule"
-msgstr "Regola di assegnazione"
-
-#. Label of a Link field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Assignment Rule"
-msgstr "Regola di assegnazione"
-
-#. Name of a DocType
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgid "Assignment Rule Day"
-msgstr "Giorno delle regole di assegnazione"
-
-#. Name of a DocType
-#: automation/doctype/assignment_rule_user/assignment_rule_user.json
-msgid "Assignment Rule User"
-msgstr "Utente regola assegnazione"
-
-#: automation/doctype/assignment_rule/assignment_rule.py:53
-msgid "Assignment Rule is not allowed on {0} document type"
msgstr ""
-#. Label of a Section Break field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. 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 "Regole di assegnazione"
+msgstr ""
-#: desk/doctype/notification_log/notification_log.py:157
+#: frappe/desk/doctype/notification_log/notification_log.py:153
msgid "Assignment Update on {0}"
-msgstr "Aggiornamento del compito su {0}"
+msgstr ""
-#: desk/form/assign_to.py:75
+#: frappe/desk/form/assign_to.py:78
msgid "Assignment for {0} {1}"
-msgstr "Assegnazione per {0} {1}"
+msgstr ""
-#: desk/doctype/todo/todo.py:62
+#: frappe/desk/doctype/todo/todo.py:62
msgid "Assignment of {0} removed by {1}"
msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:227
+#. Label of the enable_email_assignment (Check) field in DocType 'Notification
+#. Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:255
msgid "Assignments"
-msgstr "Compiti"
+msgstr ""
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "Assignments"
-msgstr "Compiti"
-
-#: public/js/frappe/form/grid_row.js:629
+#: frappe/public/js/frappe/form/grid_row.js:680
msgid "At least one column is required to show in the grid."
msgstr ""
-#: website/doctype/web_form/web_form.js:64
-msgid "Atleast one field is required in Web Form Fields Table"
+#: frappe/website/doctype/web_form/web_form.js:73
+msgid "At least one field is required in Web Form Fields Table"
msgstr ""
-#: core/doctype/data_export/data_export.js:44
-msgid "Atleast one field of Parent Document Type is mandatory"
-msgstr "Almeno un campo di tipo Documento principale è obbligatorio"
-
-#: public/js/frappe/form/controls/attach.js:5
-msgid "Attach"
-msgstr "Allega"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Attach"
-msgstr "Allega"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Attach"
-msgstr "Allega"
+#: frappe/core/doctype/data_export/data_export.js:44
+msgid "At least one field of Parent Document Type is mandatory"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Attach"
-msgstr "Allega"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/public/js/form_builder/components/controls/AttachControl.vue:15
+#: frappe/public/js/frappe/form/controls/attach.js:5
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Attach"
-msgstr "Allega"
+msgstr ""
-#: public/js/frappe/views/communication.js:139
+#: frappe/public/js/frappe/views/communication.js:152
msgid "Attach Document Print"
-msgstr "Allega documento di stampa"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Attach Image"
-msgstr "Allega immagine"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Attach Image"
-msgstr "Allega immagine"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Attach Image"
-msgstr "Allega immagine"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Attach Image"
-msgstr "Allega immagine"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Attach Image"
-msgstr "Allega immagine"
+msgstr ""
-#. Label of a Attach field in DocType 'Package Import'
-#: core/doctype/package_import/package_import.json
-msgctxt "Package Import"
+#. Label of the attach_package (Attach) field in DocType 'Package Import'
+#: frappe/core/doctype/package_import/package_import.json
msgid "Attach Package"
msgstr ""
-#. Label of a Check field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the attach_print (Check) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Attach Print"
-msgstr "Allega Stampa"
+msgstr ""
-#: website/doctype/website_slideshow/website_slideshow.js:8
+#: frappe/public/js/frappe/file_uploader/WebLink.vue:10
+msgid "Attach a web link"
+msgstr ""
+
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:8
msgid "Attach files / urls and add in table."
-msgstr "Allega file / URL e aggiungi in tabella."
+msgstr ""
-#. Label of a Code field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#. Label of the attached_file (Code) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Attached File"
-msgstr "File allegato"
+msgstr ""
-#. Label of a Link field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the attached_to_doctype (Link) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Attached To DocType"
-msgstr "Allegato al DocType"
+msgstr ""
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the attached_to_field (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Attached To Field"
-msgstr "Allecato al campo"
+msgstr ""
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the attached_to_name (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Attached To Name"
-msgstr "Allegato al Nome"
+msgstr ""
-#: core/doctype/file/file.py:140
+#: frappe/core/doctype/file/file.py:142
msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
-msgstr "Allegato"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Attachment"
-msgstr "Allegato"
-
-#. Label of a Attach field in DocType 'Newsletter Attachment'
-#: email/doctype/newsletter_attachment/newsletter_attachment.json
-msgctxt "Newsletter Attachment"
-msgid "Attachment"
-msgstr "Allegato"
-
-#. Label of a Int field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the attachment_limit (Int) field in DocType 'Email Account'
+#. Label of the attachment_limit (Int) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Attachment Limit (MB)"
-msgstr "Limite Allegato (MB)"
+msgstr ""
-#. Label of a Int field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Attachment Limit (MB)"
-msgstr "Limite Allegato (MB)"
-
-#: core/doctype/file/file.py:321
-#: public/js/frappe/form/sidebar/attachments.js:36
+#: frappe/core/doctype/file/file.py:324
+#: frappe/public/js/frappe/form/sidebar/attachments.js:36
msgid "Attachment Limit Reached"
msgstr ""
-#. Label of a HTML field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#. Label of the attachment_link (HTML) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Attachment Link"
-msgstr "Link allegato"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Attachment Removed"
-msgstr "Allegato Rimosso"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Attachment Removed"
-msgstr "Allegato Rimosso"
-
-#: core/doctype/file/utils.py:40
-#: email/doctype/newsletter/templates/newsletter.html:47
-#: website/doctype/web_form/templates/web_form.html:103
+#. Label of the attachments (Code) field in DocType 'Email Queue'
+#. Label of the attachments (Table) field in DocType 'Newsletter'
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/email/doctype/newsletter/templates/newsletter.html:47
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
+#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
-msgstr "Allegati"
+msgstr ""
-#. Label of a Code field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Attachments"
-msgstr "Allegati"
-
-#. Label of a Table field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Attachments"
-msgstr "Allegati"
-
-#: public/js/frappe/form/print_utils.js:89
+#: frappe/public/js/frappe/form/print_utils.js:91
msgid "Attempting Connection to QZ Tray..."
-msgstr "Tentativo di connessione al vassoio QZ ..."
+msgstr ""
-#: public/js/frappe/form/print_utils.js:105
+#: frappe/public/js/frappe/form/print_utils.js:107
msgid "Attempting to launch QZ Tray..."
-msgstr "Tentativo di avviare il vassoio QZ ..."
+msgstr ""
-#. Label of a Table field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#: frappe/www/attribution.html:9
+msgid "Attribution"
+msgstr ""
+
+#. Label of the email_group (Table) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Audience"
msgstr ""
#. Name of a report
-#: custom/report/audit_system_hooks/audit_system_hooks.json
+#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
msgstr ""
#. Name of a DocType
-#: core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/audit_trail/audit_trail.json
msgid "Audit Trail"
msgstr ""
-#. Label of a Code field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the auth_url_data (Code) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Auth URL Data"
-msgstr "URL per Autenticazione Dati"
+msgstr ""
+#. Label of the backend_app_flow (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Authenticate as Service Principal"
+msgstr ""
+
+#. Label of the authentication_column (Section Break) field in DocType 'Email
+#. Account'
+#. Label of the authentication_credential_section (Section Break) field in
+#. DocType 'Push Notification Settings'
#. Label of a Card Break in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Authentication"
-msgstr "Autenticazione"
+msgstr ""
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Authentication"
-msgstr "Autenticazione"
-
-#: www/qrcode.html:19
+#: frappe/www/qrcode.html:19
msgid "Authentication Apps you can use are: "
-msgstr "Le applicazioni di autenticazione utilizzabili sono:"
+msgstr ""
-#: email/doctype/email_account/email_account.py:294
+#: frappe/email/doctype/email_account/email_account.py:339
msgid "Authentication failed while receiving emails from Email Account: {0}."
-msgstr "Autenticazione non riuscita durante la ricezione di e-mail dall'account e-mail: {0}."
+msgstr ""
-#. Label of a Data field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
+#. Label of the author (Data) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
msgid "Author"
-msgstr "Autore"
-
-#. Label of a Password field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
-msgid "Authorization Code"
-msgstr "Codice di autorizzazione"
-
-#. Label of a Password field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
-msgid "Authorization Code"
-msgstr "Codice di autorizzazione"
-
-#. Label of a Data field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Authorization Code"
-msgstr "Codice di autorizzazione"
-
-#. Label of a Data field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
-msgid "Authorization Code"
-msgstr "Codice di autorizzazione"
+msgstr ""
+#. Label of the authorization_code (Password) field in DocType 'Google
+#. Calendar'
+#. Label of the authorization_code (Password) field in DocType 'Google
+#. Contacts'
+#. Label of the authorization_code (Data) field in DocType 'OAuth Authorization
+#. Code'
#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
-msgstr "Codice di autorizzazione"
+msgstr ""
-#. Label of a Small Text field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the authorization_uri (Small Text) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Authorization URI"
msgstr ""
-#: templates/includes/oauth_confirmation.html:32
+#: frappe/templates/includes/oauth_confirmation.html:35
msgid "Authorization error for {}."
msgstr ""
-#. Label of a Button field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the authorize_api_access (Button) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Authorize API Access"
msgstr ""
-#. Label of a Button field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the authorize_api_indexing_access (Button) field in DocType
+#. 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Authorize API Indexing Access"
-msgstr "Autorizza l'accesso all'indicizzazione dell'API"
+msgstr ""
-#. Label of a Button field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Label of the authorize_google_calendar_access (Button) field in DocType
+#. 'Google Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Authorize Google Calendar Access"
-msgstr "Autorizza l'accesso a Google Calendar"
+msgstr ""
-#. Label of a Button field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
+#. Label of the authorize_google_contacts_access (Button) field in DocType
+#. 'Google Contacts'
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Authorize Google Contacts Access"
-msgstr "Autorizza l'accesso ai contatti di Google"
+msgstr ""
-#. Label of a Button field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Authorize Google Drive Access"
-msgstr "Autorizza l'accesso a Google Drive"
-
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the authorize_url (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Authorize URL"
-msgstr "Autorizza URL"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Authorized"
-msgstr "Autorizzato"
+msgstr ""
-#. Option for the 'Type' (Select) field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Auto"
-msgstr "Auto"
+#: frappe/www/attribution.html:20
+msgid "Authors"
+msgstr ""
+
+#: frappe/www/attribution.html:37
+msgid "Authors / Maintainers"
+msgstr ""
#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth
#. Provider Settings'
-#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
-msgctxt "OAuth Provider Settings"
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
msgid "Auto"
-msgstr "Auto"
-
-#. Name of a DocType
-#: email/doctype/auto_email_report/auto_email_report.json
-msgid "Auto Email Report"
-msgstr "Invio Automatico Email Report"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Auto Email Report"
+#. 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 "Invio Automatico Email Report"
+msgstr ""
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the autoname (Data) field in DocType 'DocType'
+#. Label of the autoname (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Auto Name"
-msgstr "Nome Automatico"
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Auto Name"
-msgstr "Nome Automatico"
+msgstr ""
#. Name of a DocType
-#: automation/doctype/auto_repeat/auto_repeat.json
-#: public/js/frappe/utils/common.js:442
-msgid "Auto Repeat"
-msgstr "Ripetizione automatica"
-
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Auto Repeat"
+#: 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 "Ripetizione automatica"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Auto Repeat"
-msgstr "Ripetizione automatica"
+msgstr ""
#. Name of a DocType
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
msgid "Auto Repeat Day"
msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:158
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165
msgid "Auto Repeat Day{0} {1} has been repeated."
msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:436
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448
msgid "Auto Repeat Document Creation Failed"
-msgstr "Ripetizione automatica della creazione del documento non riuscita"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.js:115
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:117
msgid "Auto Repeat Schedule"
msgstr ""
-#: public/js/frappe/utils/common.js:434
+#: frappe/public/js/frappe/utils/common.js:434
msgid "Auto Repeat created for this document"
-msgstr "Ripetizione automatica creata per questo documento"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:439
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451
msgid "Auto Repeat failed for {0}"
-msgstr "Ripetizione automatica non riuscita per {0}"
+msgstr ""
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the auto_reply (Section Break) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Auto Reply"
msgstr ""
-#. Label of a Text Editor field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the auto_reply_message (Text Editor) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Auto Reply Message"
-msgstr "Messaggio di Risposta Automatico"
+msgstr ""
-#: automation/doctype/assignment_rule/assignment_rule.py:179
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:177
msgid "Auto assignment failed: {0}"
-msgstr "Assegnazione automatica non riuscita: {0}"
+msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the follow_assigned_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that are assigned to you"
msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the follow_shared_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that are shared with you"
msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the follow_liked_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that you Like"
msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the follow_commented_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that you comment on"
msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the follow_created_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Auto follow documents that you create"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Autocomplete"
-msgstr ""
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Autocomplete"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227
+msgid "Auto repeat failed. Please enable auto repeat after fixing the issues."
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Autocomplete"
msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "Autoincrement"
msgstr ""
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Automate processes and extend standard functionality using scripts and background jobs"
+msgstr ""
+
#. Option for the 'Communication Type' (Select) field in DocType
#. 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Automated Message"
msgstr ""
-#: public/js/frappe/ui/theme_switcher.js:69
-msgid "Automatic"
-msgstr ""
-
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
+#: frappe/public/js/frappe/ui/theme_switcher.js:69
msgid "Automatic"
msgstr ""
-#: email/doctype/email_account/email_account.py:675
+#: frappe/email/doctype/email_account/email_account.py:772
msgid "Automatic Linking can be activated only for one Email Account."
-msgstr "Il collegamento automatico può essere attivato solo per un account e-mail."
+msgstr ""
-#: email/doctype/email_account/email_account.py:670
+#: frappe/email/doctype/email_account/email_account.py:766
msgid "Automatic Linking can be activated only if Incoming is enabled."
-msgstr "Il collegamento automatico può essere attivato solo se In entrata è abilitato."
+msgstr ""
-#. Label of a Int field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Description of a DocType
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Automatically Assign Documents to Users"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:128
+msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings."
+msgstr ""
+
+#. Label of the auto_account_deletion (Int) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Automatically delete account within (hours)"
msgstr ""
#. Label of a Card Break in the Tools Workspace
-#: automation/workspace/tools/tools.json
+#: frappe/automation/workspace/tools/tools.json
msgid "Automation"
-msgstr "Automazione"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
+#. Label of the avatar (Attach Image) field in DocType 'Blogger'
+#: frappe/website/doctype/blogger/blogger.json
msgid "Avatar"
-msgstr "Avatar"
-
-#: public/js/frappe/form/controls/password.js:89
-#: public/js/frappe/ui/group_by/group_by.js:21
-msgid "Average"
-msgstr "Media"
+msgstr ""
#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Average"
-msgstr "Media"
-
#. Option for the 'Function' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/form/controls/password.js:88
+#: frappe/public/js/frappe/ui/group_by/group_by.js:21
msgid "Average"
-msgstr "Media"
+msgstr ""
-#: public/js/frappe/ui/group_by/group_by.js:332
+#: frappe/public/js/frappe/ui/group_by/group_by.js:342
msgid "Average of {0}"
-msgstr "Media di {0}"
+msgstr ""
-#: utils/password_strength.py:132
+#: frappe/utils/password_strength.py:130
msgid "Avoid dates and years that are associated with you."
-msgstr "Evitare le date e gli anni che sono associati con voi."
+msgstr ""
-#: utils/password_strength.py:126
+#: frappe/utils/password_strength.py:124
msgid "Avoid recent years."
-msgstr "Evitare questi ultimi anni."
+msgstr ""
-#: utils/password_strength.py:119
+#: frappe/utils/password_strength.py:117
msgid "Avoid sequences like abc or 6543 as they are easy to guess"
-msgstr "Evitare sequenze come ABC o 6543 in quanto sono facili da indovinare"
+msgstr ""
-#: utils/password_strength.py:126
+#: frappe/utils/password_strength.py:124
msgid "Avoid years that are associated with you."
-msgstr "Evita gli anni che sono associati a te."
+msgstr ""
-#. Label of a Check field in DocType 'User Email'
-#: core/doctype/user_email/user_email.json
-msgctxt "User Email"
+#. Label of the awaiting_password (Check) field in DocType 'User Email'
+#: frappe/core/doctype/user_email/user_email.json
msgid "Awaiting Password"
-msgstr "In attesa di password"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the awaiting_password (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Awaiting password"
-msgstr "In attesa di password"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:200
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:195
msgid "Awesome Work"
msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:358
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:353
msgid "Awesome, now try making an entry yourself"
msgstr ""
-#: public/js/frappe/utils/number_systems.js:9
+#: frappe/public/js/frappe/utils/number_systems.js:9
msgctxt "Number system"
msgid "B"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B0"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B1"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B10"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B2"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B3"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B4"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B5"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B6"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B7"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B8"
msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "B9"
msgstr ""
-#: public/js/frappe/views/communication.js:76
+#. Label of the bcc (Code) field in DocType 'Communication'
+#. Label of the bcc (Code) field in DocType 'Notification Recipient'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "BCC"
-msgstr "BCC"
+msgstr ""
-#. Label of a Code field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/public/js/frappe/views/communication.js:85
+msgctxt "Email Recipients"
msgid "BCC"
-msgstr "BCC"
+msgstr ""
-#. Label of a Code field in DocType 'Notification Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
-msgid "BCC"
-msgstr "BCC"
+#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:181
+msgid "Back"
+msgstr ""
-#: templates/pages/integrations/gcalendar-success.html:13
+#: frappe/templates/pages/integrations/gcalendar-success.html:13
msgid "Back to Desk"
-msgstr "Ritorna alla scrivania"
+msgstr ""
-#: www/404.html:20
+#: frappe/www/404.html:26
msgid "Back to Home"
-msgstr "Tornare a casa"
+msgstr ""
-#: www/login.html:181 www/login.html:212
+#: frappe/www/login.html:201 frappe/www/login.html:232
msgid "Back to Login"
-msgstr "Torna al login"
+msgstr ""
-#. Label of a Color field in DocType 'Social Link Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#. Label of the background_color (Color) field in DocType 'Number Card'
+#. Label of the background_color (Color) field in DocType 'Social Link
+#. Settings'
+#. Label of the background_color (Link) field in DocType 'Website Theme'
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Background Color"
-msgstr "Colore Sfondo"
+msgstr ""
-#. Label of a Link field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Background Color"
-msgstr "Colore Sfondo"
-
-#. Label of a Attach Image field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the background_image (Attach Image) field in DocType 'Web Page
+#. Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Background Image"
msgstr ""
-#: public/js/frappe/ui/toolbar/toolbar.js:143
-msgid "Background Jobs"
-msgstr "Processi in background"
-
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "RQ Job"
+#. Label of the background_jobs_section (Section Break) field in DocType
+#. 'System Health Report'
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
msgid "Background Jobs"
-msgstr "Processi in background"
+msgstr ""
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the background_jobs_check (Data) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Background Jobs Check"
+msgstr ""
+
+#. Label of the background_jobs_queue (Autocomplete) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "Background Jobs Queue"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:87
+msgid "Background Print (required for >25 documents)"
+msgstr ""
+
+#. Label of the background_workers (Section Break) field in DocType 'System
+#. Settings'
+#. Label of the background_workers (Table) field in DocType 'System Health
+#. Report'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Background Workers"
-msgstr "Servizi in background"
+msgstr ""
-#: integrations/doctype/google_drive/google_drive.js:31
-msgid "Backing up to Google Drive."
-msgstr "Backup su Google Drive."
-
-#. Label of a Card Break in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgid "Backup"
-msgstr "Backup"
-
-#. Label of a Section Break field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Backup Details"
-msgstr "Dettagli del backup"
-
-#: desk/page/backups/backups.js:26
+#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
msgstr ""
-#. Label of a Check field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Backup Files"
-msgstr "File di backup"
-
-#. Label of a Data field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Backup Folder ID"
-msgstr "ID cartella di backup"
-
-#. Label of a Data field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Backup Folder Name"
-msgstr "Nome cartella di backup"
-
-#. Label of a Select field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Backup Frequency"
-msgstr "Frequenza di backup"
-
-#. Label of a Select field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Backup Frequency"
-msgstr "Frequenza di backup"
-
-#: desk/page/backups/backups.py:99
+#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
-msgstr "Il processo di backup è già in coda. Riceverai un'e-mail con il link per il download"
+msgstr ""
-#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup
-#. Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Backup public and private files along with the database."
-msgstr "Backup di file pubblici e privati insieme al database."
-
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the backups_tab (Tab Break) field in DocType 'System Settings'
+#. Label of the backups_section (Section Break) field in DocType 'System Health
+#. Report'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Backups"
-msgstr "Backup"
+msgstr ""
+
+#. Label of the backups_size (Float) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Backups (MB)"
+msgstr ""
+
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
+msgid "Bad Cron Expression"
+msgstr ""
#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Banker's Rounding"
msgstr ""
#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Banker's Rounding (legacy)"
msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the banner (Section Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Banner"
-msgstr "Banner"
+msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the banner_html (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Banner HTML"
-msgstr "Banner HTML"
+msgstr ""
-#. Label of a Attach Image field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the banner_image (Attach Image) field in DocType 'User'
+#. Label of the banner_image (Attach Image) field in DocType 'Web Form'
+#: frappe/core/doctype/user/user.json
+#: frappe/website/doctype/web_form/web_form.json
msgid "Banner Image"
-msgstr "Immagine Banner"
-
-#. Label of a Attach Image field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Banner Image"
-msgstr "Immagine Banner"
+msgstr ""
#. Description of the 'Banner HTML' (Code) field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Banner is above the Top Menu Bar."
-msgstr "Il Banner è sopra la Barra Menu"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Bar"
-msgstr "Bar"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Barcode"
-msgstr "Codice a barre"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Barcode"
-msgstr "Codice a barre"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Barcode"
-msgstr "Codice a barre"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the base_dn (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Base Distinguished Name (DN)"
-msgstr "Base Distinguished Name (DN)"
+msgstr ""
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the base_url (Data) field in DocType 'Geolocation Settings'
+#. Label of the base_url (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Base URL"
-msgstr "URL di base"
+msgstr ""
-#: printing/page/print/print.js:266 printing/page/print/print.js:320
+#. Label of the based_on (Link) field in DocType 'Language'
+#: frappe/core/doctype/language/language.json
+#: frappe/printing/page/print/print.js:273
+#: frappe/printing/page/print/print.js:327
msgid "Based On"
-msgstr "Basato su"
-
-#. Label of a Link field in DocType 'Language'
-#: core/doctype/language/language.json
-msgctxt "Language"
-msgid "Based On"
-msgstr "Basato su"
+msgstr ""
#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Based on Field"
-msgstr "Basato su Field"
+msgstr ""
-#. Label of a Link field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the user (Link) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Based on Permissions For User"
-msgstr "Sulla base di autorizzazioni per l'utente"
+msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Basic"
-msgstr "Base"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the section_break_3 (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Basic Info"
msgstr ""
+#: frappe/public/js/frappe/ui/filters/filter.js:63
+#: frappe/public/js/frappe/ui/filters/filter.js:69
+msgid "Before"
+msgstr ""
+
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Cancel"
-msgstr "Prima di annullare"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Delete"
-msgstr "Prima di eliminare"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Discard"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Insert"
-msgstr "Prima dell'inserimento"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Print"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "Before Rename"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Save"
-msgstr "Prima di salvare"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Save (Submitted Document)"
-msgstr "Prima del salvataggio (documento inviato)"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Submit"
-msgstr "Prima di inviare"
+msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "Before Validate"
msgstr ""
#. Option for the 'Level' (Select) field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
+#: frappe/website/doctype/help_article/help_article.json
msgid "Beginner"
-msgstr "Principiante"
+msgstr ""
-#: public/js/frappe/form/link_selector.js:29
+#: frappe/public/js/frappe/form/link_selector.js:29
msgid "Beginning with"
-msgstr "Iniziando con"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the beta (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Beta"
-msgstr "Beta"
+msgstr ""
-#: utils/password_strength.py:75
+#: frappe/utils/password_strength.py:73
msgid "Better add a few more letters or another word"
-msgstr "Meglio aggiungere qualche lettera o un'altra parola"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:27
+#: frappe/public/js/frappe/ui/filters/filter.js:27
msgid "Between"
-msgstr "Fra"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Billing"
-msgstr "Fatturazione"
+msgstr ""
-#. Label of a Small Text field in DocType 'About Us Team Member'
-#: website/doctype/about_us_team_member/about_us_team_member.json
-msgctxt "About Us Team Member"
+#: frappe/public/js/frappe/form/templates/contact_list.html:27
+msgid "Billing Contact"
+msgstr ""
+
+#. Label of the binary_logging (Data) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Binary Logging"
+msgstr ""
+
+#. Label of the bio (Small Text) field in DocType 'User'
+#. Label of the bio (Small Text) field in DocType 'About Us Team Member'
+#. Label of the bio (Small Text) field in DocType 'Blogger'
+#: frappe/core/doctype/user/user.json
+#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
+#: frappe/website/doctype/blogger/blogger.json
msgid "Bio"
-msgstr "Bio"
+msgstr ""
-#. Label of a Small Text field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
-msgid "Bio"
-msgstr "Bio"
-
-#. Label of a Small Text field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Bio"
-msgstr "Bio"
-
-#. Label of a Date field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the birth_date (Date) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Birth Date"
-msgstr "Data di Nascita"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:41
+#: frappe/public/js/frappe/data_import/data_exporter.js:41
msgid "Blank Template"
-msgstr "Modello vuoto"
+msgstr ""
#. Name of a DocType
-#: core/doctype/block_module/block_module.json
+#: frappe/core/doctype/block_module/block_module.json
msgid "Block Module"
-msgstr "Blocca Modulo"
+msgstr ""
-#. Label of a Table field in DocType 'Module Profile'
-#: core/doctype/module_profile/module_profile.json
-msgctxt "Module Profile"
+#. Label of the block_modules (Table) field in DocType 'Module Profile'
+#. Label of the block_modules (Table) field in DocType 'User'
+#: frappe/core/doctype/module_profile/module_profile.json
+#: frappe/core/doctype/user/user.json
msgid "Block Modules"
-msgstr "Blocca Moduli"
+msgstr ""
-#. Label of a Table field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Block Modules"
-msgstr "Blocca Moduli"
-
-#. Label of a Check field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#. Label of the blocked (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Blocked"
-msgstr "Bloccato"
+msgstr ""
#. Label of a Card Break in the Website Workspace
-#: website/doctype/blog_post/blog_post.py:239
-#: website/doctype/blog_post/templates/blog_post.html:13
-#: website/doctype/blog_post/templates/blog_post_list.html:2
-#: website/doctype/blog_post/templates/blog_post_list.html:11
-#: website/workspace/website/website.json
+#: frappe/website/doctype/blog_post/blog_post.py:245
+#: frappe/website/doctype/blog_post/templates/blog_post.html:13
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11
+#: frappe/website/workspace/website/website.json
msgid "Blog"
-msgstr "Blog"
+msgstr ""
#. Name of a DocType
-#: website/doctype/blog_category/blog_category.json
-msgid "Blog Category"
-msgstr "Categoria Blog"
-
+#. Label of the blog_category (Link) field in DocType 'Blog Post'
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Blog Category"
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/workspace/website/website.json
msgid "Blog Category"
-msgstr "Categoria Blog"
+msgstr ""
-#. Label of a Link field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Blog Category"
-msgstr "Categoria Blog"
-
-#. Label of a Small Text field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the blog_intro (Small Text) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Blog Intro"
-msgstr "Introduzione Blog"
+msgstr ""
-#. Label of a Small Text field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Blog Introduction"
-msgstr "Introduzione Blog"
+msgstr ""
#. Name of a DocType
-#: website/doctype/blog_post/blog_post.json
-msgid "Blog Post"
-msgstr "Articolo Blog"
-
-#. Linked DocType in Blog Category's connections
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
-msgid "Blog Post"
-msgstr "Articolo Blog"
-
#. Label of a Link in the Website Workspace
#. Label of a shortcut in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Blog Post"
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/workspace/website/website.json
msgid "Blog Post"
-msgstr "Articolo Blog"
-
-#. Linked DocType in Blogger's connections
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
-msgid "Blog Post"
-msgstr "Articolo Blog"
+msgstr ""
#. Name of a DocType
-#: website/doctype/blog_settings/blog_settings.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Blog Settings"
-msgstr "Impostazioni Blog"
+msgstr ""
-#. Label of a Data field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the blog_title (Data) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Blog Title"
-msgstr "Titolo Blog"
+msgstr ""
#. Name of a role
+#. Label of the blogger (Link) field in DocType 'Blog Post'
#. Name of a DocType
-#: website/doctype/blog_category/blog_category.json
-#: website/doctype/blog_post/blog_post.json
-#: website/doctype/blog_settings/blog_settings.json
-#: website/doctype/blogger/blogger.json
-msgid "Blogger"
-msgstr "Blogger"
-
-#. Label of a Link field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Blogger"
-msgstr "Blogger"
-
#. Label of a Link in the Website Workspace
-#. Label of a shortcut in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Blogger"
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
+#: frappe/website/doctype/blogger/blogger.json
+#: frappe/website/workspace/website/website.json
msgid "Blogger"
-msgstr "Blogger"
-
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Blogger"
-msgstr "Blogger"
-
-#. Subtitle of the Module Onboarding 'Website'
-#: website/module_onboarding/website/website.json
-msgid "Blogs, Website View Tracking, and more."
msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Blue"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Blue"
msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. 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 "Grassetto"
-
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Bold"
-msgstr "Grassetto"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Bold"
-msgstr "Grassetto"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Bot"
-msgstr "Bot"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:126
+#: frappe/printing/page/print_format_builder/print_format_builder.js:126
msgid "Both DocType and Name required"
-msgstr "Sia DocType e Nome richiesto"
+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'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:154
msgid "Bottom"
-msgstr "Parte inferiore"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:248
msgid "Bottom Center"
msgstr ""
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Bottom Center"
-msgstr ""
-
-#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:247
msgid "Bottom Left"
msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Bottom Right"
-msgstr ""
-
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:249
msgid "Bottom Right"
msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Bounced"
-msgstr "Bounced"
+msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the brand (Section Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand"
-msgstr "Marca"
+msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the brand_html (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand HTML"
-msgstr "Marchio HTML"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the banner_image (Attach Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Brand Image"
-msgstr "Logo del brand"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the brand_logo (Attach Image) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Brand Logo"
msgstr ""
#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid ""
-"Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n"
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n"
"has a transparent background and use the <img /> tag. Keep size as 200px x 30px"
msgstr ""
-#. Label of a Code field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the breadcrumbs (Code) field in DocType 'Web Form'
+#. Label of the breadcrumbs (Code) field in DocType 'Web Page'
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Breadcrumbs"
-msgstr "Breadcrumbs"
+msgstr ""
-#. Label of a Code field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Breadcrumbs"
-msgstr "Breadcrumbs"
-
-#: website/doctype/blog_post/templates/blog_post_list.html:18
-#: website/doctype/blog_post/templates/blog_post_list.html:21
+#. Label of the browse_by_category (Check) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Browse by category"
msgstr ""
-#. Label of a Check field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
-msgid "Browse by category"
+#. Label of the browser (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:36
+msgid "Browser"
msgstr ""
-#: website/report/website_analytics/website_analytics.js:36
-msgid "Browser"
-msgstr "Browser"
-
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Browser"
-msgstr "Browser"
-
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
+#. Label of the browser_version (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Browser Version"
-msgstr "Versione del browser"
+msgstr ""
-#: public/js/frappe/desk.js:19
+#: frappe/public/js/frappe/desk.js:19
msgid "Browser not supported"
-msgstr "Browser non supportato"
+msgstr ""
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the brute_force_security (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Brute Force Security"
-msgstr "Sicurezza contro Bruteforce"
+msgstr ""
-#. Label of a Data field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Bucket Name"
-msgstr "Bucket Name"
-
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:66
-msgid "Bucket {0} not found."
+#. Label of the bufferpool_size (Data) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Bufferpool Size"
msgstr ""
#. Name of a Workspace
-#: core/workspace/build/build.json
+#: frappe/core/workspace/build/build.json
msgid "Build"
msgstr ""
-#: workflow/doctype/workflow/workflow_list.js:18
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Build your own reports, print formats, and dashboards. Create personalized workspaces for easier navigation"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow_list.js:18
msgid "Build {0}"
msgstr ""
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#: frappe/templates/includes/footer/footer_powered.html:1
+msgid "Built on {0}"
+msgstr ""
+
+#. Label of the bulk_actions (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Bulk Actions"
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:142
+#: frappe/core/doctype/user_permission/user_permission_list.js:142
msgid "Bulk Delete"
-msgstr "Elimina in blocco"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:256
+#: frappe/public/js/frappe/list/bulk_operations.js:321
msgid "Bulk Edit"
msgstr ""
-#: public/js/frappe/form/grid.js:1151
+#: frappe/public/js/frappe/form/grid.js:1188
msgid "Bulk Edit {0}"
-msgstr "Modifica massiva {0}"
+msgstr ""
-#. Name of a DocType
-#: desk/doctype/bulk_update/bulk_update.json
-msgid "Bulk Update"
-msgstr "Aggiornamento massivo"
+#: frappe/desk/reportview.py:602
+msgid "Bulk Operation Failed"
+msgstr ""
+
+#: frappe/desk/reportview.py:606
+msgid "Bulk Operation Successful"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:131
+msgid "Bulk PDF Export"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Bulk Update"
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/bulk_update/bulk_update.json
msgid "Bulk Update"
-msgstr "Aggiornamento massivo"
+msgstr ""
-#: model/workflow.py:253
+#: frappe/model/workflow.py:254
msgid "Bulk approval only support up to 500 documents."
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.py:57
+#: frappe/desk/doctype/bulk_update/bulk_update.py:56
msgid "Bulk operation is enqueued in background."
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.py:70
+#: frappe/desk/doctype/bulk_update/bulk_update.py:68
msgid "Bulk operations only support up to 500 documents."
msgstr ""
-#: model/workflow.py:243
+#: frappe/model/workflow.py:243
msgid "Bulk {0} is enqueued in background."
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Button"
-msgstr "Pulsante"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Button"
-msgstr "Pulsante"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Button"
-msgstr "Pulsante"
+msgstr ""
-#. Label of a Check field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the button_gradients (Check) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Gradients"
-msgstr "Gradienti dei pulsanti"
+msgstr ""
-#. Label of a Check field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the button_rounded_corners (Check) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Rounded Corners"
-msgstr "Angoli arrotondati con bottoni"
+msgstr ""
-#. Label of a Check field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the button_shadows (Check) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Button Shadows"
-msgstr "Pulsante Ombre"
-
-#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "By \"Naming Series\" field"
msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "By \"Naming Series\" field"
msgstr ""
-#: website/doctype/web_page/web_page.js:111
-#: website/doctype/web_page/web_page.js:118
+#: frappe/website/doctype/web_page/web_page.js:111
+#: frappe/website/doctype/web_page/web_page.js:118
msgid "By default the title is used as meta title, adding a value here will override it."
-msgstr "Per impostazione predefinita, il titolo viene utilizzato come meta titolo, l'aggiunta di un valore qui lo sovrascriverà."
-
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "By default, emails are only sent for failed backups."
msgstr ""
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "By fieldname"
msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "By fieldname"
-msgstr ""
-
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "By script"
msgstr ""
-#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "By script"
-msgstr ""
-
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in
+#. DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Bypass Restricted IP Address Check If Two Factor Auth Enabled"
-msgstr "Ignora il controllo dell'indirizzo IP limitato se è abilitata l'autenticazione a due fattori"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the bypass_2fa_for_retricted_ip_users (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Bypass Two Factor Auth for users who login from restricted IP Address"
-msgstr "Bypassa l'autenticazione a due fattori per gli utenti che accedono da un indirizzo IP limitato"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in
+#. DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Bypass restricted IP Address check If Two Factor Auth Enabled"
-msgstr "Ignora controllo indirizzo IP limitato se è abilitato l'autenticazione a due fattori"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "C5E"
msgstr ""
-#: templates/print_formats/standard_macros.html:212
+#: frappe/templates/print_formats/standard_macros.html:220
msgid "CANCELLED"
-msgstr "ANNULLATO"
+msgstr ""
-#: public/js/frappe/views/communication.js:71
+#. Label of the cc (Code) field in DocType 'Communication'
+#. Label of the cc (Code) field in DocType 'Notification Recipient'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "CC"
-msgstr "CC"
+msgstr ""
-#. Label of a Code field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/public/js/frappe/views/communication.js:76
+msgctxt "Email Recipients"
msgid "CC"
-msgstr "CC"
+msgstr ""
-#. Label of a Code field in DocType 'Notification Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
-msgid "CC"
-msgstr "CC"
-
-#. Label of a Data field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#. Label of the cmd (Data) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
msgid "CMD"
msgstr ""
-#. Label of a Section Break field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
-msgid "CSS"
-msgstr "CSS"
+#: frappe/public/js/frappe/color_picker/color_picker.js:20
+msgid "COLOR PICKER"
+msgstr ""
-#. Label of a Code field in DocType 'Print Style'
-#: printing/doctype/print_style/print_style.json
-msgctxt "Print Style"
+#. Label of the css_section (Section Break) field in DocType 'Custom HTML
+#. Block'
+#. Label of the css (Code) field in DocType 'Print Style'
+#. Label of the css (Code) field in DocType 'Web Page'
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "CSS"
-msgstr "CSS"
+msgstr ""
-#. Label of a Code field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "CSS"
-msgstr "CSS"
-
-#. Label of a Small Text field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the css_class (Small Text) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "CSS Class"
-msgstr "Classe CSS"
+msgstr ""
#. Description of the 'Element Selector' (Data) field in DocType 'Form Tour
#. Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "CSS selector for the element you want to highlight."
msgstr ""
-#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "CSV"
-msgstr "CSV"
-
#. Option for the 'File Type' (Select) field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#: frappe/core/doctype/data_export/data_export.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "CSV"
-msgstr "CSV"
+msgstr ""
-#. Label of a Data field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the cta_label (Data) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "CTA Label"
-msgstr "Etichetta CTA"
+msgstr ""
-#. Label of a Data field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the cta_url (Data) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "CTA URL"
-msgstr "URL CTA"
+msgstr ""
-#: sessions.py:31
+#. Label of the cache_section (Section Break) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Cache"
+msgstr ""
+
+#: frappe/sessions.py:35
msgid "Cache Cleared"
-msgstr "Cache Svuotata"
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:181
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:181
msgid "Calculate"
-msgstr "Calcola"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Event"
-msgid "Calendar"
-msgstr "Calendario"
-
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Calendar"
-msgstr "Calendario"
-
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Calendar"
-msgstr "Calendario"
+msgstr ""
-#. Label of a Data field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Label of the calendar_name (Data) field in DocType 'Google Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Calendar Name"
-msgstr "Nome del calendario"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/public/js/frappe/list/base_list.js:207
msgid "Calendar View"
-msgstr "Visualizza Calendario"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Calendar View"
-msgstr "Visualizza Calendario"
-
-#: contacts/doctype/contact/contact.js:50
-msgid "Call"
-msgstr "Chiama"
+msgstr ""
#. Option for the 'Event Category' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/contacts/doctype/contact/contact.js:55
+#: frappe/desk/doctype/event/event.json
msgid "Call"
-msgstr "Chiama"
+msgstr ""
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the call_to_action (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Call To Action"
-msgstr "Chiamare all'azione"
+msgstr ""
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the call_to_action_url (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Call To Action URL"
-msgstr "URL di invito all'azione"
+msgstr ""
-#. Label of a Section Break field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the cta_section (Section Break) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Call to Action"
msgstr ""
-#. Label of a Small Text field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the callback_message (Small Text) field in DocType 'Onboarding
+#. Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Callback Message"
-msgstr "Messaggio di richiamata"
+msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the callback_title (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Callback Title"
-msgstr "Titolo di richiamata"
+msgstr ""
-#: public/js/frappe/ui/capture.js:326
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
+#: frappe/public/js/frappe/ui/capture.js:334
msgid "Camera"
-msgstr "telecamera"
+msgstr ""
-#: public/js/frappe/utils/utils.js:1711
-#: website/report/website_analytics/website_analytics.js:39
+#. Label of the campaign (Link) field in DocType 'Newsletter'
+#. Label of the campaign (Data) field in DocType 'Web Page View'
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
msgstr ""
-#. Label of a Link field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Campaign"
-msgstr ""
-
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Campaign"
-msgstr ""
-
-#. Label of a Small Text field in DocType 'Marketing Campaign'
-#: website/doctype/marketing_campaign/marketing_campaign.json
-msgctxt "Marketing Campaign"
+#. Label of the campaign_description (Small Text) field in DocType 'UTM
+#. Campaign'
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Campaign Description (Optional)"
msgstr ""
-#: custom/doctype/custom_field/custom_field.py:360
+#: frappe/public/js/frappe/form/templates/set_sharing.html:4
+#: frappe/public/js/frappe/form/templates/set_sharing.html:50
+msgid "Can Read"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/set_sharing.html:7
+#: frappe/public/js/frappe/form/templates/set_sharing.html:53
+msgid "Can Share"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/set_sharing.html:6
+#: frappe/public/js/frappe/form/templates/set_sharing.html:52
+msgid "Can Submit"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/set_sharing.html:5
+#: frappe/public/js/frappe/form/templates/set_sharing.html:51
+msgid "Can Write"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.py:410
msgid "Can not rename as column {0} is already present on DocType."
msgstr ""
-#: core/doctype/doctype/doctype.py:1114
+#: frappe/core/doctype/doctype/doctype.py:1163
msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
msgstr ""
#. Description of the 'Apply User Permission On' (Link) field in DocType 'User
#. Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#: frappe/core/doctype/user_type/user_type.json
msgid "Can only list down the document types which has been linked to the User document type."
msgstr ""
-#: model/rename_doc.py:367
+#: frappe/desk/form/document_follow.py:48
+msgid "Can't follow since changes are not tracked."
+msgstr ""
+
+#: frappe/model/rename_doc.py:366
msgid "Can't rename {0} to {1} because {0} doesn't exist."
msgstr ""
-#: core/doctype/doctype/doctype_list.js:113
-#: public/js/frappe/form/reminders.js:54
+#. Label of the cancel (Check) field in DocType 'Custom DocPerm'
+#. Label of the cancel (Check) field in DocType 'DocPerm'
+#. Label of the cancel (Check) field in DocType 'User Document Type'
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/reminders.js:54
msgid "Cancel"
-msgstr "Annulla"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1889
+#: frappe/public/js/frappe/list/list_view.js:2059
msgctxt "Button in list view actions menu"
msgid "Cancel"
-msgstr "Annulla"
+msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Cancel"
-msgstr "Annulla"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Cancel"
-msgstr "Annulla"
-
-#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Cancel"
-msgstr "Annulla"
-
-#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Cancel"
-msgstr "Annulla"
-
-#: public/js/frappe/ui/messages.js:68
+#: frappe/public/js/frappe/ui/messages.js:68
msgctxt "Secondary button in warning dialog"
msgid "Cancel"
-msgstr "Annulla"
+msgstr ""
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Cancel"
-msgstr "Annulla"
-
-#: public/js/frappe/form/form.js:998
+#: frappe/public/js/frappe/form/form.js:979
msgid "Cancel All"
msgstr ""
-#: public/js/frappe/form/form.js:985
+#: frappe/public/js/frappe/form/form.js:966
msgid "Cancel All Documents"
-msgstr "Annulla tutti i documenti"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:132
+#: frappe/email/doctype/newsletter/newsletter.js:132
msgid "Cancel Scheduling"
msgstr ""
-#: public/js/frappe/list/list_view.js:1894
+#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
-msgstr "Cancella {0} documenti?"
-
-#: desk/form/save.py:59 public/js/frappe/model/indicator.js:78
-#: public/js/frappe/ui/filters/filter.js:495
-msgid "Cancelled"
-msgstr "Annullato"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Cancelled"
-msgstr "Annullato"
-
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Cancelled"
-msgstr "Annullato"
-
#. Option for the 'Status' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Cancelled"
-msgstr "Annullato"
-
-#. Option for the 'Status' (Select) field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Cancelled"
-msgstr "Annullato"
-
#. Option for the 'Status' (Select) field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
+#: frappe/desk/form/save.py:64
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/public/js/frappe/model/indicator.js:78
+#: frappe/public/js/frappe/ui/filters/filter.js:540
msgid "Cancelled"
-msgstr "Annullato"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document.py:51
+#: frappe/core/doctype/deleted_document/deleted_document.py:52
msgid "Cancelled Document restored as Draft"
-msgstr "Documento annullato ripristinato come Bozza"
+msgstr ""
-#: public/js/frappe/form/save.js:13
+#: frappe/public/js/frappe/form/save.js:13
msgctxt "Freeze message while cancelling a document"
msgid "Cancelling"
-msgstr "Annullamento"
+msgstr ""
-#: desk/form/linked_with.py:379
+#: frappe/desk/form/linked_with.py:381
msgid "Cancelling documents"
-msgstr "Annullamento di documenti"
+msgstr ""
-#: desk/doctype/bulk_update/bulk_update.py:94
+#: frappe/desk/doctype/bulk_update/bulk_update.py:91
msgid "Cancelling {0}"
-msgstr "Annullamento di {0}"
+msgstr ""
-#: core/doctype/prepared_report/prepared_report.py:244
+#: frappe/core/doctype/prepared_report/prepared_report.py:265
msgid "Cannot Download Report due to insufficient permissions"
msgstr ""
-#: client.py:461
+#: frappe/client.py:452
msgid "Cannot Fetch Values"
msgstr ""
-#: core/page/permission_manager/permission_manager.py:150
+#: frappe/core/page/permission_manager/permission_manager.py:156
msgid "Cannot Remove"
-msgstr "Impossibile rimuovere"
+msgstr ""
-#: model/base_document.py:1034
+#: frappe/model/base_document.py:1161
msgid "Cannot Update After Submit"
msgstr ""
-#: core/doctype/file/file.py:574
+#: frappe/core/doctype/file/file.py:621
msgid "Cannot access file path {0}"
msgstr ""
-#: public/js/workflow_builder/utils.js:183
+#: frappe/public/js/workflow_builder/utils.js:183
msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State"
msgstr ""
-#: workflow/doctype/workflow/workflow.py:112
+#: frappe/workflow/doctype/workflow/workflow.py:109
msgid "Cannot cancel before submitting. See Transition {0}"
-msgstr "Impossibile annullare prima della conferma. Vedi passaggio {0}"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:229
+#: frappe/public/js/frappe/list/bulk_operations.js:294
msgid "Cannot cancel {0}."
msgstr ""
-#: model/document.py:838
+#: frappe/model/document.py:1011
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: model/document.py:852
+#: frappe/model/document.py:1025
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
-#: public/js/workflow_builder/utils.js:170
+#: frappe/public/js/workflow_builder/utils.js:170
msgid "Cannot change state of Cancelled Document ({0} State)"
msgstr ""
-#: workflow/doctype/workflow/workflow.py:101
+#: frappe/workflow/doctype/workflow/workflow.py:98
msgid "Cannot change state of Cancelled Document. Transition row {0}"
-msgstr "Impossibile modificare lo stato di un Documento Annullato. Riga transizione {0}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1104
+#: frappe/core/doctype/doctype/doctype.py:1153
msgid "Cannot change to/from autoincrement autoname in Customize Form"
msgstr ""
-#: core/doctype/communication/communication.py:193
+#: frappe/core/doctype/communication/communication.py:169
msgid "Cannot create a {0} against a child document: {1}"
-msgstr "Non è possibile creare un {0} contro un documento secondario: {1}"
+msgstr ""
-#: desk/doctype/workspace/workspace.py:250
+#: frappe/desk/doctype/workspace/workspace.py:272
msgid "Cannot create private workspace of other users"
msgstr ""
-#: core/doctype/file/file.py:151
+#: frappe/core/doctype/file/file.py:153
msgid "Cannot delete Home and Attachments folders"
-msgstr "Impossibile eliminare Home e Cartelle Allegate"
+msgstr ""
-#: model/delete_doc.py:367
+#: frappe/model/delete_doc.py:378
msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
-msgstr "Impossibile cancellare o cancellare perché {0} {1} è collegato con {2} {3} {4}"
-
-#: desk/doctype/workspace/workspace.py:417
-msgid "Cannot delete private workspace of other users"
msgstr ""
-#: desk/doctype/workspace/workspace.py:410
-msgid "Cannot delete public workspace without Workspace Manager role"
-msgstr ""
-
-#: custom/doctype/customize_form/customize_form.js:313
+#: frappe/custom/doctype/customize_form/customize_form.js:369
msgid "Cannot delete standard action. You can hide it if you want"
-msgstr "Impossibile eliminare l'azione standard. Puoi nasconderlo se vuoi"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:328
+#: frappe/custom/doctype/customize_form/customize_form.js:391
msgid "Cannot delete standard document state."
msgstr ""
-#: custom/doctype/customize_form/customize_form.js:276
+#: frappe/custom/doctype/customize_form/customize_form.js:321
msgid "Cannot delete standard field {0}. You can hide it instead."
msgstr ""
-#: custom/doctype/customize_form/customize_form.js:298
-msgid "Cannot delete standard link. You can hide it if you want"
-msgstr "Impossibile eliminare il collegamento standard. Puoi nasconderlo se vuoi"
+#: 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 ""
-#: custom/doctype/customize_form/customize_form.js:268
+#: 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 ""
-#: public/js/frappe/list/bulk_operations.js:171
+#: frappe/public/js/frappe/list/bulk_operations.js:215
msgid "Cannot delete {0}"
-msgstr "Impossibile eliminare {0}"
+msgstr ""
-#: utils/nestedset.py:302
+#: frappe/utils/nestedset.py:299
msgid "Cannot delete {0} as it has child nodes"
-msgstr "Impossibile eliminare {0} come ha nodi figlio"
+msgstr ""
-#: desk/doctype/dashboard/dashboard.py:49
+#: frappe/desk/doctype/dashboard/dashboard.py:48
msgid "Cannot edit Standard Dashboards"
msgstr ""
-#: email/doctype/notification/notification.py:120
+#: frappe/email/doctype/notification/notification.py:192
msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it"
-msgstr "Impossibile modificare la notifica standard. Per modificare, si prega di disabilitare questo e duplicarlo"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.py:388
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:388
msgid "Cannot edit Standard charts"
msgstr ""
-#: core/doctype/report/report.py:68
+#: frappe/core/doctype/report/report.py:72
msgid "Cannot edit a standard report. Please duplicate and create a new report"
-msgstr "Non è possibile modificare un rapporto standard. Si prega di duplicare e creare un nuovo report"
+msgstr ""
-#: model/document.py:858
+#: frappe/model/document.py:1031
msgid "Cannot edit cancelled document"
-msgstr "Impossibile modificare documento annullato"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.js:378
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:378
msgid "Cannot edit filters for standard charts"
-msgstr "Impossibile modificare i filtri per i grafici standard"
+msgstr ""
-#: client.py:166
+#: frappe/desk/doctype/number_card/number_card.js:277
+#: frappe/desk/doctype/number_card/number_card.js:364
+msgid "Cannot edit filters for standard number cards"
+msgstr ""
+
+#: frappe/client.py:166
msgid "Cannot edit standard fields"
-msgstr "Non è possibile modificare i campi standard"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:124
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127
msgid "Cannot enable {0} for a non-submittable doctype"
msgstr ""
-#: core/doctype/file/file.py:249
+#: frappe/core/doctype/file/file.py:252
msgid "Cannot find file {} on disk"
msgstr ""
-#: core/doctype/file/file.py:520
+#: frappe/core/doctype/file/file.py:561
msgid "Cannot get file contents of a Folder"
msgstr ""
-#: printing/page/print/print.js:817
+#: frappe/printing/page/print/print.js:844
msgid "Cannot have multiple printers mapped to a single print format."
-msgstr "Non è possibile mappare più stampanti su un unico formato di stampa."
+msgstr ""
-#: model/document.py:926
+#: frappe/public/js/frappe/form/grid.js:1132
+msgid "Cannot import table with more than 5000 rows."
+msgstr ""
+
+#: frappe/model/document.py:1099
msgid "Cannot link cancelled document: {0}"
-msgstr "Impossibile collegare documento annullato: {0}"
+msgstr ""
-#: model/mapper.py:184
+#: frappe/model/mapper.py:175
msgid "Cannot map because following condition fails:"
msgstr ""
-#: core/doctype/data_import/importer.py:924
+#: frappe/core/doctype/data_import/importer.py:971
msgid "Cannot match column {0} with any field"
-msgstr "Impossibile abbinare la colonna {0} a nessun campo"
+msgstr ""
-#: public/js/frappe/form/grid_row.js:172
+#: frappe/public/js/frappe/form/grid_row.js:175
msgid "Cannot move row"
-msgstr "Impossibile spostare la riga"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:865
+#: frappe/public/js/frappe/views/reports/report_view.js:927
msgid "Cannot remove ID field"
-msgstr "Impossibile rimuovere il campo ID"
+msgstr ""
-#: email/doctype/notification/notification.py:136
-msgid "Cannot set Notification on Document Type {0}"
-msgstr "Impossibile impostare la notifica sul tipo di documento {0}"
+#: frappe/core/page/permission_manager/permission_manager.py:132
+msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set"
+msgstr ""
-#: core/doctype/docshare/docshare.py:69
+#: frappe/email/doctype/notification/notification.py:209
+msgid "Cannot set Notification with event {0} on Document Type {1}"
+msgstr ""
+
+#: frappe/core/doctype/docshare/docshare.py:67
msgid "Cannot share {0} with submit permission as the doctype {1} is not submittable"
msgstr ""
-#: public/js/frappe/list/bulk_operations.js:226
+#: frappe/public/js/frappe/list/bulk_operations.js:291
msgid "Cannot submit {0}."
msgstr ""
-#: desk/doctype/workspace/workspace.py:351
-msgid "Cannot update private workspace of other users"
+#: frappe/desk/doctype/bulk_update/bulk_update.js:26
+#: frappe/public/js/frappe/list/bulk_operations.js:366
+msgid "Cannot update {0}"
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.js:26
-#: public/js/frappe/list/bulk_operations.js:301
-msgid "Cannot update {0}"
-msgstr "Impossibile aggiornare {0}"
-
-#: model/db_query.py:1125
+#: frappe/model/db_query.py:1126
msgid "Cannot use sub-query in order by"
-msgstr "Non è possibile utilizzare sub-query in modo da"
+msgstr ""
-#: model/db_query.py:1143
+#: frappe/model/db_query.py:1145
msgid "Cannot use {0} in order/group by"
msgstr ""
-#: public/js/frappe/list/bulk_operations.js:232
+#: frappe/public/js/frappe/list/bulk_operations.js:297
msgid "Cannot {0} {1}."
msgstr ""
-#: utils/password_strength.py:185
+#: frappe/utils/password_strength.py:181
msgid "Capitalization doesn't help very much."
-msgstr "La capitalizzazione non aiuta molto."
+msgstr ""
-#: public/js/frappe/ui/capture.js:286
+#: frappe/public/js/frappe/ui/capture.js:294
msgid "Capture"
msgstr ""
-#. Label of a Link field in DocType 'Number Card Link'
-#: desk/doctype/number_card_link/number_card_link.json
-msgctxt "Number Card Link"
+#. Label of the card (Link) field in DocType 'Number Card Link'
+#: frappe/desk/doctype/number_card_link/number_card_link.json
msgid "Card"
-msgstr "Carta"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Card Break"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:261
+#: frappe/public/js/frappe/views/reports/query_report.js:261
msgid "Card Label"
-msgstr "Etichetta della carta"
+msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:227
+#: frappe/public/js/frappe/widgets/widget_dialog.js:262
msgid "Card Links"
msgstr ""
-#. Label of a Table field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
+#. Label of the cards (Table) field in DocType 'Dashboard'
+#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Cards"
-msgstr "Carte"
+msgstr ""
-#: public/js/frappe/views/interaction.js:72
+#. Label of the category (Data) field in DocType 'Desktop Icon'
+#. Label of the category (Link) field in DocType 'Help Article'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/public/js/frappe/views/interaction.js:72
+#: frappe/website/doctype/help_article/help_article.json
msgid "Category"
-msgstr "Categoria"
+msgstr ""
-#. Label of a Data field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Category"
-msgstr "Categoria"
-
-#. Label of a Link field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
-msgid "Category"
-msgstr "Categoria"
-
-#. Label of a Text field in DocType 'Help Category'
-#: website/doctype/help_category/help_category.json
-msgctxt "Help Category"
+#. Label of the category_description (Text) field in DocType 'Help Category'
+#: frappe/website/doctype/help_category/help_category.json
msgid "Category Description"
-msgstr "categoria Descrizione"
+msgstr ""
-#. Label of a Data field in DocType 'Help Category'
-#: website/doctype/help_category/help_category.json
-msgctxt "Help Category"
+#. Label of the category_name (Data) field in DocType 'Help Category'
+#: frappe/website/doctype/help_category/help_category.json
msgid "Category Name"
-msgstr "Nome Categoria"
+msgstr ""
-#: utils/data.py:1491
+#: frappe/utils/data.py:1520
msgid "Cent"
-msgstr "Centesimo"
+msgstr ""
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
-msgid "Center"
-msgstr "Centro"
-
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Center"
-msgstr "Centro"
+msgstr ""
-#: core/report/transaction_log_report/transaction_log_report.py:82
+#: frappe/core/page/permission_manager/permission_manager_help.html:16
+msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit."
+msgstr ""
+
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:82
msgid "Chain Integrity"
-msgstr "Integrità della catena"
+msgstr ""
-#. Label of a Small Text field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
+#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log'
+#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Chaining Hash"
-msgstr "Chaining Hash"
+msgstr ""
-#: tests/test_translate.py:98
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:11
+#: frappe/tests/test_translate.py:111
msgid "Change"
-msgstr "Cambia"
+msgstr ""
-#: tests/test_translate.py:99
+#: frappe/tests/test_translate.py:112
msgctxt "Coins"
msgid "Change"
-msgstr "Modificare"
+msgstr ""
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:38
+msgid "Change Image"
+msgstr ""
+
+#. Label of the label (Data) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Change Label (via Custom Translation)"
-msgstr "Modifica etichetta (attraverso Traduzione Personalizzata)"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:45
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:141
+msgid "Change Letter Head"
+msgstr ""
+
+#. Label of the change_password (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Change Password"
-msgstr "Cambiare la password"
+msgstr ""
-#: public/js/print_format_builder/print_format_builder.bundle.js:27
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:27
msgid "Change Print Format"
msgstr ""
-#: desk/page/user_profile/user_profile_controller.js:51
-#: desk/page/user_profile/user_profile_controller.js:59
-msgid "Change User"
-msgstr "Cambia utente"
-
#. Description of the 'Update Series Counter' (Section Break) field in DocType
#. 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
-msgid ""
-"Change the starting / current sequence number of an existing series.
\n"
-"\n"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Change the starting / current sequence number of an existing series.
\n\n"
"Warning: Incorrectly updating counters can prevent documents from getting created. "
msgstr ""
-#: email/doctype/email_domain/email_domain.js:5
+#. Label of the changed_at (Datetime) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Changed at"
+msgstr ""
+
+#. Label of the changed_by (Link) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Changed by"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+msgid "Changelog Feed"
+msgstr ""
+
+#. Label of the changed_values (HTML) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Changes"
+msgstr ""
+
+#: frappe/email/doctype/email_domain/email_domain.js:5
msgid "Changing any setting will reflect on all the email accounts associated with this domain."
msgstr ""
-#: core/doctype/system_settings/system_settings.js:62
+#: frappe/core/doctype/system_settings/system_settings.js:67
msgid "Changing rounding method on site with data can result in unexpected behaviour."
msgstr ""
-#. Label of a Select field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the channel (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Channel"
-msgstr "Canale"
+msgstr ""
-#. Label of a Link field in DocType 'Dashboard Chart Link'
-#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json
-msgctxt "Dashboard Chart Link"
+#. Label of the chart (Link) field in DocType 'Dashboard Chart Link'
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
msgid "Chart"
-msgstr "Grafico"
+msgstr ""
-#. Label of a Code field in DocType 'Dashboard Settings'
-#: desk/doctype/dashboard_settings/dashboard_settings.json
-msgctxt "Dashboard Settings"
+#. Label of the chart_config (Code) field in DocType 'Dashboard Settings'
+#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
msgid "Chart Configuration"
-msgstr "Configurazione della carta"
+msgstr ""
-#. Label of a Data field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the chart_name (Data) field in DocType 'Dashboard Chart'
+#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/workspace_chart/workspace_chart.json
+#: frappe/public/js/frappe/views/reports/query_report.js:288
+#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
-msgstr "Nome del grafico"
+msgstr ""
-#. Label of a Link field in DocType 'Workspace Chart'
-#: desk/doctype/workspace_chart/workspace_chart.json
-msgctxt "Workspace Chart"
-msgid "Chart Name"
-msgstr "Nome del grafico"
-
-#. Label of a Code field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
+#. Label of the chart_options (Code) field in DocType 'Dashboard'
+#. Label of the chart_options_section (Section Break) field in DocType
+#. 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Chart Options"
-msgstr "Opzioni del grafico"
+msgstr ""
-#. Label of a Section Break field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Chart Options"
-msgstr "Opzioni del grafico"
-
-#. Label of a Link field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the source (Link) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Chart Source"
-msgstr "Fonte del grafico"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:479
+#. Label of the chart_type (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/views/reports/report_view.js:505
msgid "Chart Type"
-msgstr "Tipo di grafico"
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Chart Type"
-msgstr "Tipo di grafico"
-
-#. Label of a Table field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
+#. Label of the charts (Table) field in DocType 'Dashboard'
+#. Label of the charts (Table) field in DocType 'Workspace'
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Charts"
-msgstr "Grafici"
-
-#. Label of a Table field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Charts"
-msgstr "Grafici"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
-#. Option for the 'Communication Type' (Select) field in DocType
-#. 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Chat"
-msgstr "Chat"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Check"
-msgstr "Dai un'occhiata"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Check"
-msgstr "Dai un'occhiata"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Check"
-msgstr "Dai un'occhiata"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Check"
-msgstr "Dai un'occhiata"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Check"
-msgstr "Dai un'occhiata"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Check"
-msgstr "Dai un'occhiata"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Check"
-msgstr "Dai un'occhiata"
+msgstr ""
-#: integrations/doctype/webhook/webhook.py:95
+#: frappe/integrations/doctype/webhook/webhook.py:95
msgid "Check Request URL"
-msgstr "Controlla URL Richiesta"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:18
+#: frappe/email/doctype/newsletter/newsletter.js:18
msgid "Check broken links"
msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:442
-msgid "Check the Error Log for more information: {0}"
-msgstr "Controlla il registro errori per ulteriori informazioni: {0}"
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
+msgid "Check columns to select, drag to set order."
+msgstr ""
-#: website/doctype/website_settings/website_settings.js:147
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454
+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 "Seleziona questa opzione se non desideri che gli utenti si registrino per un account sul tuo sito. Gli utenti non avranno accesso alla scrivania a meno che tu non lo fornisca esplicitamente."
+msgstr ""
#. Description of the 'User must always select' (Check) field in DocType
#. 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Check this if you want to force the user to select a series before saving. There will be no default if you check this."
-msgstr "Seleziona se vuoi forzare l'utente a selezionare una serie prima di salvare, non ci sarà un valore di default."
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:20
+#. 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/email/doctype/newsletter/newsletter.js:20
msgid "Checking broken links..."
msgstr ""
-#: public/js/frappe/desk.js:214
+#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
-msgstr "Controllo un momento"
+msgstr ""
-#: website/doctype/website_settings/website_settings.js:140
+#: frappe/website/doctype/website_settings/website_settings.js:140
msgid "Checking this will enable tracking page views for blogs, web pages, etc."
-msgstr "Selezionando questa opzione si abiliterà il monitoraggio delle visualizzazioni di pagina per blog, pagine web, ecc."
+msgstr ""
#. Description of the 'Hide Custom DocTypes and Reports' (Check) field in
#. DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Checking this will hide custom doctypes and reports cards in Links section"
-msgstr "Selezionando questo, verranno nascosti i doctype personalizzati e le schede dei rapporti nella sezione Collegamenti"
+msgstr ""
-#: website/doctype/web_page/web_page.js:78
+#: frappe/website/doctype/web_page/web_page.js:78
msgid "Checking this will publish the page on your website and it'll be visible to everyone."
-msgstr "Selezionando questo, la pagina verrà pubblicata sul tuo sito Web e sarà visibile a tutti."
+msgstr ""
-#: website/doctype/web_page/web_page.js:104
+#: frappe/website/doctype/web_page/web_page.js:104
msgid "Checking this will show a text area where you can write custom javascript that will run on this page."
-msgstr "Selezionando questo verrà visualizzata un'area di testo in cui è possibile scrivere javascript personalizzato che verrà eseguito su questa pagina."
+msgstr ""
-#. Label of a Data field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
+#. Label of the checksum_version (Data) field in DocType 'Transaction Log'
+#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Checksum Version"
-msgstr "Versione di checksum"
+msgstr ""
-#: www/list.py:85
+#: frappe/www/list.py:85
msgid "Child DocTypes are not allowed"
msgstr ""
-#. Label of a Data field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the child_doctype (Data) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Child Doctype"
msgstr ""
-#: core/doctype/doctype/doctype.py:1588
+#: frappe/core/doctype/doctype/doctype.py:1647
msgid "Child Table {0} for field {1}"
msgstr ""
-#: core/doctype/doctype/doctype_list.js:37
-msgid "Child Tables are shown as a Grid in other DocTypes"
-msgstr "Le tabelle figlio vengono visualizzate come griglia in altri DocTypes"
-
#. Description of the 'Is Child Table' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:52
msgid "Child Tables are shown as a Grid in other DocTypes"
-msgstr "Le tabelle figlio vengono visualizzate come griglia in altri DocTypes"
+msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:614
+#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
-msgstr "Scegli Carta esistente o crea una nuova carta"
+msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:1385
+#: frappe/public/js/frappe/views/workspace/workspace.js:571
msgid "Choose a block or continue typing"
msgstr ""
-#: public/js/frappe/form/controls/color.js:5
+#: frappe/public/js/form_builder/components/controls/DataControl.vue:18
+#: frappe/public/js/frappe/form/controls/color.js:5
msgid "Choose a color"
msgstr ""
-#: public/js/frappe/form/controls/icon.js:5
+#: frappe/public/js/form_builder/components/controls/DataControl.vue:21
+#: frappe/public/js/frappe/form/controls/icon.js:5
msgid "Choose an icon"
msgstr ""
#. Description of the 'Two Factor Authentication method' (Select) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Choose authentication method to be used by all users"
-msgstr "Scegli il metodo di autenticazione da utilizzare da tutti gli utenti"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the city (Data) field in DocType 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "City"
-msgstr "Città"
+msgstr ""
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the city (Data) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "City/Town"
-msgstr "Città/Paese"
+msgstr ""
-#: core/doctype/recorder/recorder_list.js:12
+#: frappe/core/doctype/recorder/recorder_list.js:12
+#: frappe/public/js/frappe/form/controls/attach.js:16
msgid "Clear"
-msgstr "Chiaro"
+msgstr ""
-#: public/js/frappe/views/communication.js:325
+#: frappe/public/js/frappe/views/communication.js:432
msgid "Clear & Add Template"
msgstr ""
-#: public/js/frappe/views/communication.js:98
+#: frappe/public/js/frappe/views/communication.js:111
msgid "Clear & Add template"
msgstr ""
-#: public/js/frappe/ui/keyboard.js:275
+#: frappe/public/js/frappe/list/list_view.js:1965
+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 "Cancella cache e ricarica"
+msgstr ""
-#: core/doctype/error_log/error_log_list.js:12
+#: frappe/core/doctype/error_log/error_log_list.js:12
msgid "Clear Error Logs"
-msgstr "Registri evidente errore"
+msgstr ""
-#. Label of a Int field in DocType 'Logs To Clear'
-#: core/doctype/logs_to_clear/logs_to_clear.json
-msgctxt "Logs To Clear"
+#: frappe/public/js/frappe/ui/filters/filter_list.js:299
+msgid "Clear Filters"
+msgstr ""
+
+#. Label of the days (Int) field in DocType 'Logs To Clear'
+#: frappe/core/doctype/logs_to_clear/logs_to_clear.json
msgid "Clear Logs After (days)"
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:144
+#: frappe/core/doctype/user_permission/user_permission_list.js:144
msgid "Clear User Permissions"
-msgstr "Cancella autorizzazioni utente"
+msgstr ""
-#: public/js/frappe/views/communication.js:326
+#: frappe/public/js/frappe/views/communication.js:433
msgid "Clear the email message and add the template"
msgstr ""
-#: website/doctype/web_page/web_page.py:214
+#: frappe/website/doctype/web_page/web_page.py:215
msgid "Clearing end date, as it cannot be in the past for published pages."
-msgstr "Cancellare la data di fine, in quanto non può essere nel passato per le pagine pubblicate."
+msgstr ""
-#: website/doctype/web_form/templates/web_form.html:144
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:194
+msgid "Click On Customize to add your first widget"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:147
msgid "Click here"
-msgstr "Clicca qui"
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:335
+#: frappe/email/doctype/newsletter/newsletter.py:335
msgid "Click here to verify"
-msgstr "Clicca qui per verificare"
+msgstr ""
-#: integrations/doctype/google_drive/google_drive.js:46
-msgid "Click on Authorize Google Drive Access to authorize Google Drive Access."
-msgstr "Fai clic su Autorizza Google Drive Access per autorizzare Google Drive Access."
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
+msgid "Click on a file to select it."
+msgstr ""
-#: templates/emails/login_with_email_link.html:19
+#: frappe/templates/emails/login_with_email_link.html:19
msgid "Click on the button to log in to {0}"
msgstr ""
-#: templates/emails/data_deletion_approval.html:2
+#: frappe/templates/emails/data_deletion_approval.html:2
msgid "Click on the link below to approve the request"
-msgstr "Fai clic sul link in basso per approvare la richiesta"
+msgstr ""
-#: templates/emails/new_user.html:7
+#: frappe/templates/emails/new_user.html:7
msgid "Click on the link below to complete your registration and set a new password"
-msgstr "Clicca sul link qui sotto per completare la registrazione e impostare una nuova password"
+msgstr ""
-#: templates/emails/download_data.html:3
+#: frappe/templates/emails/download_data.html:3
msgid "Click on the link below to download your data"
-msgstr "Fai clic sul link in basso per scaricare i tuoi dati"
+msgstr ""
-#: templates/emails/delete_data_confirmation.html:4
+#: frappe/templates/emails/delete_data_confirmation.html:4
msgid "Click on the link below to verify your request"
-msgstr "Fai clic sul link in basso per verificare la tua richiesta"
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:101
-#: integrations/doctype/google_contacts/google_contacts.py:40
-#: integrations/doctype/google_drive/google_drive.py:52
-#: website/doctype/website_settings/website_settings.py:161
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
+#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
-msgstr "Fai clic su {0} per generare il token di aggiornamento."
+msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.js:96
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
+#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
+#: frappe/website/doctype/web_form/web_form.js:236
msgid "Click table to edit"
-msgstr "Clicca tabella per modificare"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
+#: frappe/desk/doctype/number_card/number_card.js:402
+msgid "Click to Set Dynamic Filters"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
+#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/website/doctype/web_form/web_form.js:262
+msgid "Click to Set Filters"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:711
+msgid "Click to sort by {0}"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Clicked"
-msgstr "Cliccato"
+msgstr ""
-#. Label of a Link field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. Label of the client (Link) field in DocType 'OAuth Authorization Code'
+#. Label of the client (Link) field in DocType 'OAuth Bearer Token'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
msgid "Client"
-msgstr "Intestatario"
+msgstr ""
-#. Label of a Link field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
-msgid "Client"
-msgstr "Intestatario"
-
-#. Label of a Section Break field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#. Label of the client_code_section (Section Break) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
msgid "Client Code"
-msgstr "Codice cliente"
+msgstr ""
-#. Label of a Section Break field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the sb_client_credentials_section (Section Break) field in DocType
+#. 'Connected App'
+#. Label of the client_credentials (Section Break) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Credentials"
-msgstr "Credenziali client"
+msgstr ""
-#. Label of a Section Break field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Client Credentials"
-msgstr "Credenziali client"
-
-#. Label of a Data field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
+#. Label of the client_id (Data) field in DocType 'Google Settings'
+#. Label of the client_id (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client ID"
-msgstr "Identificativo cliente"
+msgstr ""
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Client ID"
-msgstr "Identificativo cliente"
-
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the client_id (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Client Id"
msgstr ""
-#. Label of a Section Break field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the client_information (Section Break) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client Information"
-msgstr "Informazioni sul cliente"
-
-#. Name of a DocType
-#: custom/doctype/client_script/client_script.json
-#: website/doctype/web_page/web_page.js:103
-msgid "Client Script"
-msgstr "Script del cliente"
+msgstr ""
#. Label of a Link in the Build Workspace
-#. Label of a shortcut in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Client Script"
+#. Name of a DocType
+#. Label of the client_script (Code) field in DocType 'DocType Layout'
+#: frappe/core/workspace/build/build.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/website/doctype/web_page/web_page.js:103
msgid "Client Script"
-msgstr "Script del cliente"
+msgstr ""
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Client Script"
-msgstr "Script del cliente"
-
-#. Label of a Code field in DocType 'DocType Layout'
-#: custom/doctype/doctype_layout/doctype_layout.json
-msgctxt "DocType Layout"
-msgid "Client Script"
-msgstr "Script del cliente"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Client Script"
-msgstr "Script del cliente"
-
-#. Label of a Code field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Client Script"
-msgstr "Script del cliente"
-
-#. Label of a Password field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the client_secret (Password) field in DocType 'Connected App'
+#. Label of the client_secret (Password) field in DocType 'Google Settings'
+#. Label of the client_secret (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/social_login_key/social_login_key.json
msgid "Client Secret"
-msgstr "Client Secret"
+msgstr ""
-#. Label of a Password field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
-msgid "Client Secret"
-msgstr "Client Secret"
-
-#. Label of a Password field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Client Secret"
-msgstr "Client Secret"
-
-#. Label of a Section Break field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Client URLs"
-msgstr "URL del cliente"
+msgstr ""
-#: core/doctype/communication/communication.js:39 desk/doctype/todo/todo.js:23
-#: public/js/frappe/ui/messages.js:245
+#. Label of the client_script (Code) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Client script"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:39
+#: frappe/desk/doctype/todo/todo.js:23
+#: frappe/public/js/frappe/form/form_tour.js:17
+#: frappe/public/js/frappe/ui/messages.js:251
+#: frappe/website/js/bootstrap-4.js:24
msgid "Close"
-msgstr "Chiudi"
+msgstr ""
-#. Label of a Code field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the close_condition (Code) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Close Condition"
-msgstr "Chiudi condizioni"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/FieldProperties.vue:79
+msgid "Close properties"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Closed"
-msgstr "Chiuso"
-
#. Option for the 'Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Closed"
-msgstr "Chiuso"
-
#. Option for the 'Status' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Closed"
-msgstr "Chiuso"
-
#. Option for the 'Status' (Select) field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
msgid "Closed"
-msgstr "Chiuso"
+msgstr ""
-#: templates/discussions/comment_box.html:25
+#: frappe/templates/discussions/comment_box.html:25
+#: frappe/templates/discussions/reply_section.html:53
+#: frappe/templates/discussions/topic_modal.html:11
msgid "Cmd+Enter to add comment"
msgstr ""
-#. Label of a Data field in DocType 'Country'
-#: geo/doctype/country/country.json
-msgctxt "Country"
-msgid "Code"
-msgstr "Codice"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Code"
-msgstr "Codice"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Code"
-msgstr "Codice"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Code"
-msgstr "Codice"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the code (Data) field in DocType 'Country'
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/geo/doctype/country/country.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Code"
-msgstr "Codice"
+msgstr ""
-#. Label of a Data field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. Label of the code_challenge (Data) field in DocType 'OAuth Authorization
+#. Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Code Challenge"
msgstr ""
-#. Label of a Select field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. Label of the code_editor_type (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Code Editor Type"
+msgstr ""
+
+#. Label of the code_challenge_method (Select) field in DocType 'OAuth
+#. Authorization Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Code challenge method"
msgstr ""
-#: public/js/frappe/form/form_tour.js:268
-#: public/js/frappe/widgets/base_widget.js:157
+#: frappe/public/js/frappe/form/form_tour.js:276
+#: frappe/public/js/frappe/ui/sidebar.html:11
+#: frappe/public/js/frappe/widgets/base_widget.js:159
msgid "Collapse"
-msgstr "Crollo"
+msgstr ""
-#: public/js/frappe/form/controls/code.js:146
+#: frappe/public/js/frappe/form/controls/code.js:184
msgctxt "Shrink code field."
msgid "Collapse"
-msgstr "Crollo"
+msgstr ""
-#: public/js/frappe/views/treeview.js:121
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
-msgstr "Comprimi tutto"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the collapsible (Check) field in DocType 'DocField'
+#. Label of the collapsible (Check) field in DocType 'Custom Field'
+#. Label of the collapsible (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Collapsible"
-msgstr "Pieghevole"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Collapsible"
-msgstr "Pieghevole"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Collapsible"
-msgstr "Pieghevole"
-
-#. Label of a Code field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the collapsible_depends_on (Code) field in DocType 'Custom Field'
+#. Label of the collapsible_depends_on (Code) field in DocType 'Customize Form
+#. Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Collapsible Depends On"
-msgstr "In base al pieghevole"
+msgstr ""
-#. Label of a Code field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Collapsible Depends On"
-msgstr "In base al pieghevole"
-
-#. Label of a Code field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the collapsible_depends_on (Code) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Collapsible Depends On (JS)"
msgstr ""
+#. 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
-#: public/js/frappe/views/reports/query_report.js:1140
-#: public/js/frappe/widgets/widget_dialog.js:505
-#: public/js/frappe/widgets/widget_dialog.js:657
-#: website/doctype/color/color.json
-msgid "Color"
-msgstr "Colore"
-
-#. Label of a Color field in DocType 'Color'
-#: website/doctype/color/color.json
-msgctxt "Color"
-msgid "Color"
-msgstr "Colore"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Color"
-msgstr "Colore"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Color"
-msgstr "Colore"
-
-#. Label of a Color field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Color"
-msgstr "Colore"
-
-#. Label of a Color field in DocType 'Dashboard Chart Field'
-#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-msgctxt "Dashboard Chart Field"
-msgid "Color"
-msgstr "Colore"
-
-#. Label of a Data field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Color"
-msgstr "Colore"
-
-#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Color"
-msgstr "Colore"
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Color"
-msgstr "Colore"
-
-#. Label of a Select field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Color"
-msgstr "Colore"
-
-#. Label of a Color field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Color"
-msgstr "Colore"
-
-#. Label of a Color field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Color"
-msgstr "Colore"
-
-#. Label of a Color field in DocType 'Social Link Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
-msgid "Color"
-msgstr "Colore"
-
-#. Label of a Color field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Color"
-msgstr "Colore"
-
+#. Label of the color (Color) field in DocType 'Color'
+#. Label of the color (Color) field in DocType 'Social Link Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: 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 "Colore"
+msgstr ""
-#. Label of a Color field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Color"
-msgstr "Colore"
+#. Label of the column (Data) field in DocType 'Recorder Suggested Index'
+#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:7
+#: frappe/public/js/form_builder/components/Section.vue:270
+#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8
+msgid "Column"
+msgstr ""
-#: desk/doctype/kanban_board/kanban_board.py:85
+#: frappe/core/doctype/report/boilerplate/controller.py:28
+msgid "Column 1"
+msgstr ""
+
+#: frappe/core/doctype/report/boilerplate/controller.py:33
+msgid "Column 2"
+msgstr ""
+
+#: frappe/desk/doctype/kanban_board/kanban_board.py:84
msgid "Column {0} already exist."
-msgstr "Colonna {0} già esiste."
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Column Break"
-msgstr "Interruzione Colonna"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Column Break"
-msgstr "Interruzione Colonna"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Column Break"
-msgstr "Interruzione Colonna"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Column Break"
-msgstr "Interruzione Colonna"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Column Break"
-msgstr "Interruzione Colonna"
+msgstr ""
-#: core/doctype/data_export/exporter.py:140
+#: frappe/core/doctype/data_export/exporter.py:140
msgid "Column Labels:"
-msgstr "Etichette colonne:"
+msgstr ""
-#: core/doctype/data_export/exporter.py:25
+#. Label of the column_name (Data) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/data_export/exporter.py:25
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Column Name"
-msgstr "Nome colonna"
+msgstr ""
-#. Label of a Data field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
-msgid "Column Name"
-msgstr "Nome colonna"
-
-#: desk/doctype/kanban_board/kanban_board.py:44
+#: frappe/desk/doctype/kanban_board/kanban_board.py:45
msgid "Column Name cannot be empty"
-msgstr "Nome colonna non può essere vuoto"
+msgstr ""
-#: public/js/frappe/form/grid_row.js:593
+#: frappe/public/js/frappe/form/grid_row.js:438
+msgid "Column Width"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:645
msgid "Column width cannot be zero."
msgstr ""
-#. Label of a Int field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Columns"
-msgstr "colonne"
+#: frappe/core/doctype/data_import/data_import.js:380
+msgid "Column {0}"
+msgstr ""
-#. Label of a Int field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the columns (Int) field in DocType 'DocField'
+#. Label of the columns_section (Section Break) field in DocType 'Report'
+#. Label of the columns (Table) field in DocType 'Report'
+#. Label of the columns (Int) field in DocType 'Custom Field'
+#. Label of the columns (Int) field in DocType 'Customize Form Field'
+#. Label of the columns (Table) field in DocType 'Kanban Board'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report/report.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
msgid "Columns"
-msgstr "colonne"
+msgstr ""
-#. Label of a Int field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Columns"
-msgstr "colonne"
-
-#. Label of a Table field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Columns"
-msgstr "colonne"
-
-#. Label of a Section Break field in DocType 'Report'
-#. Label of a Table field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Columns"
-msgstr "colonne"
-
-#. Label of a HTML Editor field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the columns (HTML Editor) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "Columns / Fields"
-msgstr "Colonne / Campi"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:394
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
msgid "Columns based on"
-msgstr "Colonne basato su"
+msgstr ""
-#: integrations/doctype/oauth_client/oauth_client.py:43
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
-msgstr "La combinazione del tipo di sovvenzione ( {0} ) e del tipo di risposta ( {1} ) non è consentita"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Comm10E"
msgstr ""
#. Name of a DocType
-#: core/doctype/comment/comment.json
-#: public/js/frappe/form/sidebar/assign_to.js:210
-#: templates/includes/comments/comments.html:34
-msgid "Comment"
-msgstr "Commento"
-
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/version/version_view.html:3
+#: frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:237
+#: frappe/templates/includes/comments/comments.html:34
msgid "Comment"
-msgstr "Commento"
+msgstr ""
-#. Option for the 'Communication Type' (Select) field in DocType
-#. 'Communication'
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Comment"
-msgstr "Commento"
-
-#. Label of a Data field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#. Label of the comment_by (Data) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
msgid "Comment By"
-msgstr "Commento di"
+msgstr ""
-#. Label of a Data field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#. Label of the comment_email (Data) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
msgid "Comment Email"
-msgstr "Email di commento"
+msgstr ""
-#. Label of a Select field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#. Label of the comment_type (Select) field in DocType 'Comment'
+#: frappe/core/doctype/comment/comment.json
msgid "Comment Type"
-msgstr "Commento Type"
+msgstr ""
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Comment Type"
-msgstr "Commento Type"
-
-#: desk/form/utils.py:58
+#: frappe/desk/form/utils.py:58
msgid "Comment can only be edited by the owner"
-msgstr "Il commento può essere modificato solo dal proprietario"
+msgstr ""
-#. Label of a Int field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the comment_limit (Int) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Comment limit"
msgstr ""
#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Comment limit per hour"
msgstr ""
-#: model/__init__.py:150 model/meta.py:54 public/js/frappe/model/meta.js:206
-#: public/js/frappe/model/model.js:125
-#: website/doctype/web_form/templates/web_form.html:119
+#: frappe/desk/form/utils.py:75
+msgid "Comment publicity can only be updated by the original author or a System Manager."
+msgstr ""
+
+#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/public/js/frappe/model/meta.js:209
+#: frappe/public/js/frappe/model/model.js:135
+#: frappe/website/doctype/web_form/templates/web_form.html:122
msgid "Comments"
-msgstr "Commenti"
+msgstr ""
#. Description of the 'Timeline Field' (Data) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "Comments and Communications will be associated with this linked document"
-msgstr "Commenti e comunicazioni saranno associati a questo documento collegato"
+msgstr ""
-#: templates/includes/comments/comments.py:38
+#: frappe/templates/includes/comments/comments.py:38
msgid "Comments cannot have links or email addresses"
-msgstr "I commenti non possono avere collegamenti o indirizzi e-mail"
+msgstr ""
#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Commercial Rounding"
msgstr ""
-#. Label of a Check field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#. Label of the commit (Check) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
msgid "Commit"
-msgstr "Commettere"
+msgstr ""
-#. Label of a Check field in DocType 'Console Log'
-#: desk/doctype/console_log/console_log.json
-msgctxt "Console Log"
+#. Label of the committed (Check) field in DocType 'Console Log'
+#: frappe/desk/doctype/console_log/console_log.json
msgid "Committed"
msgstr ""
-#: utils/password_strength.py:180
+#: frappe/utils/password_strength.py:176
msgid "Common names and surnames are easy to guess."
-msgstr "I nomi comuni e cognomi sono facili da indovinare."
+msgstr ""
#. Name of a DocType
-#: core/doctype/communication/communication.json tests/test_translate.py:35
-#: tests/test_translate.py:103
-msgid "Communication"
-msgstr "Comunicazione"
-
#. Option for the 'Communication Type' (Select) field in DocType
#. 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "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 "Comunicazione"
-
-#. Label of a Data field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
-msgid "Communication"
-msgstr "Comunicazione"
-
-#. Label of a Link field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Communication"
-msgstr "Comunicazione"
-
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Communication"
-msgstr "Comunicazione"
+msgstr ""
#. Name of a DocType
-#: core/doctype/communication_link/communication_link.json
+#: frappe/core/doctype/communication_link/communication_link.json
msgid "Communication Link"
-msgstr "Link di comunicazione"
+msgstr ""
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Communication"
+#: frappe/core/workspace/build/build.json
msgid "Communication Logs"
msgstr ""
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the communication_type (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Communication Type"
-msgstr "Tipo di comunicazione"
+msgstr ""
-#: desk/page/leaderboard/leaderboard.js:112
-msgid "Company"
-msgstr "Azienda"
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:32
+msgid "Communication secret not set"
+msgstr ""
#. Name of a DocType
-#: website/doctype/company_history/company_history.json www/about.html:29
+#: frappe/website/doctype/company_history/company_history.json
+#: frappe/www/about.html:29
msgid "Company History"
-msgstr "Storico Azienda"
+msgstr ""
-#. Label of a Text Editor field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#. Label of the company_introduction (Text Editor) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Company Introduction"
-msgstr "Introduzione Azienda"
+msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the company_name (Data) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Company Name"
-msgstr "Nome Azienda"
+msgstr ""
-#: core/doctype/server_script/server_script.js:14
-#: custom/doctype/client_script/client_script.js:54
-#: public/js/frappe/utils/diffview.js:27
+#: frappe/core/doctype/server_script/server_script.js:14
+#: frappe/custom/doctype/client_script/client_script.js:54
+#: frappe/public/js/frappe/utils/diffview.js:28
msgid "Compare Versions"
msgstr ""
-#: core/doctype/server_script/server_script.py:134
+#: frappe/core/doctype/server_script/server_script.py:157
msgid "Compilation warning"
msgstr ""
-#: website/doctype/website_theme/website_theme.py:125
+#: frappe/website/doctype/website_theme/website_theme.py:123
msgid "Compiled Successfully"
-msgstr "Compilato con successo"
-
-#: www/complete_signup.html:21
-msgid "Complete"
-msgstr "Completare"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/www/complete_signup.html:21
msgid "Complete"
-msgstr "Completare"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:176
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:203
msgid "Complete By"
-msgstr "Completato da"
+msgstr ""
-#: core/doctype/user/user.py:438 templates/emails/new_user.html:10
+#: frappe/core/doctype/user/user.py:478
+#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
-msgstr "Completa la registrazione"
+msgstr ""
-#: utils/goal.py:117
-msgid "Completed"
-msgstr "Completato"
+#: frappe/public/js/frappe/ui/slides.js:355
+msgctxt "Finish the setup wizard"
+msgid "Complete Setup"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Completed"
-msgstr "Completato"
-
-#. Option for the 'Status' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Completed"
-msgstr "Completato"
-
-#. Option for the 'Status' (Select) field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Completed"
-msgstr "Completato"
-
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
-msgid "Completed"
-msgstr "Completato"
-
+#. Option for the 'Status' (Select) field in DocType 'Event'
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#. Option for the 'Status' (Select) field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/doctype/boilerplate/controller_list.html:31
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/utils/goal.py:117
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed"
-msgstr "Completato"
+msgstr ""
-#. Label of a Link field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
+#. Label of the completed_by_role (Link) field in DocType 'Workflow Action'
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed By Role"
msgstr ""
-#. Label of a Link field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
+#. Label of the completed_by (Link) field in DocType 'Workflow Action'
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Completed By User"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
+#: frappe/website/doctype/web_template/web_template.json
msgid "Component"
-msgstr "Componente"
-
-#: public/js/frappe/views/inbox/inbox_view.js:184
-msgid "Compose Email"
-msgstr "Componi email"
-
-#. Label of a Small Text field in DocType 'Bulk Update'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
-msgid "Condition"
-msgstr "Condizione"
-
-#. Label of a Select field in DocType 'Document Naming Rule Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
-msgid "Condition"
-msgstr "Condizione"
-
-#. Label of a Code field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Condition"
-msgstr "Condizione"
-
-#. Label of a Code field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Condition"
-msgstr "Condizione"
-
-#. Label of a Data field in DocType 'Notification Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
-msgid "Condition"
-msgstr "Condizione"
-
-#. Label of a Small Text field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Condition"
-msgstr "Condizione"
-
-#. Label of a Code field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
-msgid "Condition"
-msgstr "Condizione"
-
-#. Label of a HTML field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Condition Description"
msgstr ""
-#. Label of a JSON field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#: 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:205
+#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/email/doctype/notification/notification.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/website/doctype/web_form/web_form.js:197
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Condition"
+msgstr ""
+
+#. Label of the condition_json (JSON) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Condition JSON"
msgstr ""
-#. Label of a Table field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
-msgid "Conditions"
-msgstr "condizioni"
+#. Label of the condition_description (HTML) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Condition description"
+msgstr ""
-#. Label of a Section Break field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
+#. Label of the conditions (Table) field in DocType 'Document Naming Rule'
+#. Label of the conditions (Section Break) field in DocType 'Workflow
+#. Transition'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Conditions"
-msgstr "condizioni"
+msgstr ""
-#. Label of a Section Break field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the configuration_section (Section Break) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Configuration"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:461
+#: frappe/public/js/frappe/views/reports/report_view.js:487
msgid "Configure Chart"
-msgstr "Configura grafico"
+msgstr ""
-#: public/js/frappe/form/grid_row.js:381
+#: frappe/public/js/frappe/form/grid_row.js:390
msgid "Configure Columns"
msgstr ""
+#: frappe/core/doctype/recorder/recorder_list.js:200
+msgid "Configure Recorder"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/Field.vue:103
+msgid "Configure columns for {0}"
+msgstr ""
+
#. Description of the 'Amended Documents' (Section Break) field in DocType
#. 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
-msgid ""
-"Configure how amended documents will be named.
\n"
-"\n"
-"Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
\n"
-"\n"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+msgid "Configure how amended documents will be named.
\n\n"
+"Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
\n\n"
"Default Naming will make the amended document to behave same as new documents."
msgstr ""
-#: www/update-password.html:30
-msgid "Confirm"
-msgstr "Confermare"
+#. 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 ""
-#: public/js/frappe/ui/messages.js:31
+#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
+#: frappe/www/update-password.html:53
+msgid "Confirm"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/messages.js:31
msgctxt "Title of confirmation dialog"
msgid "Confirm"
-msgstr "Confermare"
+msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:92
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:100
+#: frappe/integrations/oauth2.py:120
+msgid "Confirm Access"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:93
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:101
msgid "Confirm Deletion of Account"
msgstr ""
-#: core/doctype/user/user.js:173
+#: frappe/core/doctype/user/user.js:191
msgid "Confirm New Password"
-msgstr "Conferma la nuova password"
+msgstr ""
-#: www/update-password.html:24
+#: frappe/www/update-password.html:47
msgid "Confirm Password"
msgstr ""
-#: templates/emails/data_deletion_approval.html:6
-#: templates/emails/delete_data_confirmation.html:7
+#: frappe/templates/emails/data_deletion_approval.html:6
+#: frappe/templates/emails/delete_data_confirmation.html:7
msgid "Confirm Request"
-msgstr "Richiesta di conferma"
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:330
+#: frappe/email/doctype/newsletter/newsletter.py:330
msgid "Confirm Your Email"
-msgstr "Conferma La Tua Email"
+msgstr ""
-#. Label of a Link field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#. Label of the confirmation_email_template (Link) field in DocType 'Email
+#. Group'
+#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
-msgstr "Modello di email di conferma"
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:381
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:394
+#: frappe/email/doctype/newsletter/newsletter.py:379
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
-msgstr "Confermato"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:530
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:525
msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here."
msgstr ""
-#: integrations/doctype/connected_app/connected_app.js:25
+#: frappe/integrations/doctype/connected_app/connected_app.js:25
msgid "Connect to {}"
msgstr ""
+#. Label of the connected_app (Link) field in DocType 'Email Account'
#. Name of a DocType
-#: integrations/doctype/connected_app/connected_app.json
+#. Label of the connected_app (Link) field in DocType 'Token Cache'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Connected App"
msgstr ""
-#. Label of a Link field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Connected App"
-msgstr ""
-
-#. Label of a Link field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "Connected App"
-msgstr ""
-
-#. Label of a Link field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the connected_user (Link) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Connected User"
msgstr ""
-#: public/js/frappe/form/print_utils.js:95
-#: public/js/frappe/form/print_utils.js:119
+#: frappe/public/js/frappe/form/print_utils.js:97
+#: frappe/public/js/frappe/form/print_utils.js:121
msgid "Connected to QZ Tray!"
-msgstr "Collegato al vassoio QZ!"
+msgstr ""
-#: public/js/frappe/request.js:34
+#: frappe/public/js/frappe/request.js:36
msgid "Connection Lost"
msgstr ""
-#: templates/pages/integrations/gcalendar-success.html:3
+#: frappe/templates/pages/integrations/gcalendar-success.html:3
msgid "Connection Success"
-msgstr "Connessione riuscita"
+msgstr ""
-#: public/js/frappe/dom.js:433
+#: frappe/public/js/frappe/dom.js:446
msgid "Connection lost. Some features might not work."
-msgstr "Collegamento perso. Alcune funzionalità potrebbero non funzionare."
+msgstr ""
-#: public/js/frappe/form/dashboard.js:54
+#. Label of the connections_tab (Tab Break) field in DocType 'DocType'
+#. Label of the connections_tab (Tab Break) field in DocType 'Module Def'
+#. Label of the connections_tab (Tab Break) field in DocType 'User'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/user/user.json
+#: frappe/public/js/frappe/form/dashboard.js:54
msgid "Connections"
msgstr ""
-#. Label of a Tab Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Connections"
-msgstr ""
-
-#. Label of a Tab Break field in DocType 'Module Def'
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Connections"
-msgstr ""
-
-#. Label of a Tab Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Connections"
-msgstr ""
-
-#. Label of a Code field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#. Label of the console (Code) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
msgid "Console"
-msgstr "Console"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/console_log/console_log.json
+#: frappe/desk/doctype/console_log/console_log.json
msgid "Console Log"
-msgstr "Registro della console"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#: frappe/desk/doctype/console_log/console_log.py:24
+msgid "Console Logs can not be deleted"
+msgstr ""
+
+#. Label of the constraints_section (Section Break) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Constraints"
msgstr ""
#. Name of a DocType
-#: contacts/doctype/contact/contact.json
-#: core/doctype/communication/communication.js:113
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/communication/communication.js:113
msgid "Contact"
-msgstr "Contatto"
+msgstr ""
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Contact"
-msgstr "Contatto"
-
-#. Label of a Section Break field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the sb_01 (Section Break) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Details"
-msgstr "Dettagli Contatto"
+msgstr ""
#. Name of a DocType
-#: contacts/doctype/contact_email/contact_email.json
+#: frappe/contacts/doctype/contact_email/contact_email.json
msgid "Contact Email"
-msgstr "Email Contatto"
+msgstr ""
-#. Label of a Table field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the phone_nos (Table) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Contact Numbers"
-msgstr "Numeri di contatto"
+msgstr ""
#. Name of a DocType
-#: contacts/doctype/contact_phone/contact_phone.json
+#: frappe/contacts/doctype/contact_phone/contact_phone.json
msgid "Contact Phone"
-msgstr "Contatto telefonico"
+msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.py:288
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:291
msgid "Contact Synced with Google Contacts."
-msgstr "Contatto sincronizzato con Contatti Google."
+msgstr ""
+
+#: frappe/www/contact.html:4
+msgid "Contact Us"
+msgstr ""
#. Name of a DocType
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgid "Contact Us Settings"
-msgstr "Impostazioni Contattaci"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Contact Us Settings"
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/workspace/website/website.json
msgid "Contact Us Settings"
-msgstr "Impostazioni Contattaci"
+msgstr ""
#. Description of the 'Query Options' (Small Text) field in DocType 'Contact Us
#. Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas."
-msgstr "Opzioni di contatto, come "Query vendite, il supporto delle query", ecc ciascuno su una nuova riga o separati da virgole."
+msgstr ""
-#. Label of a Text Editor field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#: 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 newsletter_content (Section Break) field in DocType
+#. 'Newsletter'
+#. Label of the content (Text Editor) field in DocType 'Blog Post'
+#. Label of the content (Text Editor) field in DocType 'Help Article'
+#. Label of the section_title (Tab Break) field in DocType 'Web Page'
+#. 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/email/doctype/newsletter/newsletter.json
+#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/help_article/help_article.json
+#: 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 "Contenuto"
+msgstr ""
-#. Label of a HTML Editor field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Content"
-msgstr "Contenuto"
-
-#. Label of a Text Editor field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
-msgid "Content"
-msgstr "Contenuto"
-
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Content"
-msgstr "Contenuto"
-
-#. Label of a Text Editor field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
-msgid "Content"
-msgstr "Contenuto"
-
-#. Label of a Tab Break field in DocType 'Web Page'
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Content"
-msgstr "Contenuto"
-
-#. Label of a Long Text field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Content"
-msgstr "Contenuto"
-
-#. Label of a HTML Editor field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the content_html (HTML Editor) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Content (HTML)"
-msgstr "Contenuto (HTML)"
+msgstr ""
-#. Label of a Markdown Editor field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Content (Markdown)"
-msgstr "Contenuto (Markdown)"
+msgstr ""
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the content_hash (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Content Hash"
-msgstr "Hash contenuto"
+msgstr ""
-#. Label of a Select field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the content_type (Select) field in DocType 'Newsletter'
+#. Label of the content_type (Select) field in DocType 'Blog Post'
+#. Label of the content_type (Select) field in DocType 'Web Page'
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
-msgstr "Tipo Contenuto"
+msgstr ""
-#. Label of a Select field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Content Type"
-msgstr "Tipo Contenuto"
-
-#. Label of a Select field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Content Type"
-msgstr "Tipo Contenuto"
-
-#: desk/doctype/workspace/workspace.py:79
+#: frappe/desk/doctype/workspace/workspace.py:86
msgid "Content data shoud be a list"
msgstr ""
-#: website/doctype/web_page/web_page.js:91
+#: frappe/website/doctype/web_page/web_page.js:91
msgid "Content type for building the page"
-msgstr "Tipo di contenuto per la creazione della pagina"
-
-#. Label of a Data field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
-msgid "Context"
-msgstr "Contesto"
-
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Context"
-msgstr "Contesto"
-
-#. Label of a Code field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Context Script"
-msgstr "Script di contesto"
-
-#: public/js/frappe/widgets/onboarding_widget.js:209
-#: public/js/frappe/widgets/onboarding_widget.js:237
-#: public/js/frappe/widgets/onboarding_widget.js:277
-#: public/js/frappe/widgets/onboarding_widget.js:317
-#: public/js/frappe/widgets/onboarding_widget.js:366
-#: public/js/frappe/widgets/onboarding_widget.js:388
-#: public/js/frappe/widgets/onboarding_widget.js:428
-msgid "Continue"
-msgstr "Continuare"
-
-#. Label of a Check field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
-msgid "Contributed"
-msgstr "Ha contribuito"
-
-#. Label of a Data field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
-msgid "Contribution Document Name"
-msgstr "Nome documento di contribuzione"
-
-#. Label of a Select field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
-msgid "Contribution Status"
-msgstr "Stato del contributo"
-
-#. Description of the 'Sign ups' (Select) field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected. "
msgstr ""
-#: public/js/frappe/utils/utils.js:1030
-msgid "Copied to clipboard."
-msgstr "Copiato negli appunti."
+#. 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 ""
-#: public/js/frappe/request.js:615
+#. 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:1033
+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:620
msgid "Copy error to clipboard"
msgstr ""
-#: public/js/frappe/form/toolbar.js:388
+#: frappe/public/js/frappe/form/toolbar.js:504
msgid "Copy to Clipboard"
msgstr ""
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the copyright (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Copyright"
-msgstr "Copyright"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:118
+#: frappe/custom/doctype/customize_form/customize_form.py:122
msgid "Core DocTypes cannot be customized."
-msgstr "I Core DocTypes non possono essere personalizzati."
+msgstr ""
-#: desk/doctype/global_search_settings/global_search_settings.py:35
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:36
msgid "Core Modules {0} cannot be searched in Global Search."
-msgstr "I moduli principali {0} non possono essere cercati nella Ricerca globale."
+msgstr ""
-#: email/smtp.py:77
+#: frappe/printing/page/print/print.js:620
+msgid "Correct version :"
+msgstr ""
+
+#: frappe/email/smtp.py:78
msgid "Could not connect to outgoing email server"
-msgstr "Impossibile connettersi al server di posta in uscita"
+msgstr ""
-#: model/document.py:922
+#: frappe/model/document.py:1095
msgid "Could not find {0}"
-msgstr "Impossibile trovare {0}"
+msgstr ""
-#: core/doctype/data_import/importer.py:886
+#: frappe/core/doctype/data_import/importer.py:933
msgid "Could not map column {0} to field {1}"
-msgstr "Impossibile mappare la colonna {0} al campo {1}"
+msgstr ""
-#: public/js/frappe/web_form/web_form.js:355
+#: frappe/desk/page/setup_wizard/setup_wizard.js:234
+msgid "Could not start up: "
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:359
msgid "Couldn't save, please check the data you have entered"
-msgstr "Impossibile salvare, controlla i dati che hai inserito"
-
-#: public/js/frappe/ui/group_by/group_by.js:19
-#: public/js/frappe/ui/group_by/group_by.js:318
-msgid "Count"
-msgstr "Contare"
+msgstr ""
#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Count"
-msgstr "Contare"
-
#. Option for the 'Function' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#. Label of the count (Int) field in DocType 'System Health Report Workers'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
+#: frappe/public/js/frappe/ui/group_by/group_by.js:19
+#: frappe/public/js/frappe/ui/group_by/group_by.js:325
+#: frappe/workflow/doctype/workflow/workflow.js:162
msgid "Count"
-msgstr "Contare"
+msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:499
+#: frappe/public/js/frappe/widgets/widget_dialog.js:540
msgid "Count Customizations"
-msgstr "Conta personalizzazioni"
+msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:484
+#. Label of the section_break_5 (Section Break) field in DocType 'Workspace
+#. Shortcut'
+#. Label of the stats_filter (Code) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:525
msgid "Count Filter"
-msgstr "Count Filter"
+msgstr ""
-#. Label of a Section Break field in DocType 'Workspace Shortcut'
-#. Label of a Code field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Count Filter"
-msgstr "Count Filter"
+#: frappe/public/js/frappe/form/dashboard.js:509
+msgid "Count of linked documents"
+msgstr ""
-#. Label of a Int field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#. Label of the counter (Int) field in DocType 'Document Naming Rule'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Counter"
-msgstr "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
-#: geo/doctype/country/country.json
+#. Label of the country (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/geo/doctype/country/country.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Country"
-msgstr "Paese"
+msgstr ""
-#. Label of a Link field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Country"
-msgstr "Paese"
-
-#. Label of a Link field in DocType 'Address Template'
-#: contacts/doctype/address_template/address_template.json
-msgctxt "Address Template"
-msgid "Country"
-msgstr "Paese"
-
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Country"
-msgstr "Paese"
-
-#. Label of a Link field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Country"
-msgstr "Paese"
-
-#: utils/__init__.py:116
+#: frappe/utils/__init__.py:129
msgid "Country Code Required"
msgstr ""
-#. Label of a Data field in DocType 'Country'
-#: geo/doctype/country/country.json
-msgctxt "Country"
+#. Label of the country_name (Data) field in DocType 'Country'
+#: frappe/geo/doctype/country/country.json
msgid "Country Name"
-msgstr "Nome Nazione"
+msgstr ""
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the county (Data) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "County"
-msgstr "Contea"
+msgstr ""
-#: public/js/frappe/utils/number_systems.js:23
-#: public/js/frappe/utils/number_systems.js:45
+#: frappe/public/js/frappe/utils/number_systems.js:23
+#: frappe/public/js/frappe/utils/number_systems.js:45
msgctxt "Number system"
msgid "Cr"
msgstr ""
-#: core/doctype/communication/communication.js:117
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:46
-#: public/js/frappe/form/reminders.js:49
-#: public/js/frappe/views/file/file_view.js:112
-#: public/js/frappe/views/interaction.js:18
-#: public/js/frappe/views/reports/query_report.js:1172
-#: public/js/frappe/views/workspace/workspace.js:1217
-#: workflow/page/workflow_builder/workflow_builder.js:46
+#. Label of the create (Check) field in DocType 'Custom DocPerm'
+#. Label of the create (Check) field in DocType 'DocPerm'
+#. Label of the create (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/communication/communication.js:117
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46
+#: frappe/public/js/frappe/form/reminders.js:49
+#: frappe/public/js/frappe/views/file/file_view.js:112
+#: frappe/public/js/frappe/views/interaction.js:18
+#: frappe/public/js/frappe/views/reports/query_report.js:1263
+#: frappe/public/js/frappe/views/workspace/workspace.js:469
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
-msgstr "Crea"
+msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Create"
-msgstr "Crea"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Create"
-msgstr "Crea"
-
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Create"
-msgstr "Crea"
-
-#: core/doctype/doctype/doctype_list.js:85
+#: frappe/core/doctype/doctype/doctype_list.js:102
msgid "Create & Continue"
msgstr ""
-#. Title of an Onboarding Step
-#: website/onboarding_step/create_blogger/create_blogger.json
-msgid "Create Blogger"
+#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:49
+msgid "Create Address"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:186
-#: public/js/frappe/views/reports/query_report.js:231
+#: frappe/public/js/frappe/views/reports/query_report.js:186
+#: frappe/public/js/frappe/views/reports/query_report.js:231
msgid "Create Card"
-msgstr "Crea carta"
-
-#: public/js/frappe/views/reports/query_report.js:284
-#: public/js/frappe/views/reports/query_report.js:1099
-msgid "Create Chart"
-msgstr "Crea grafico"
-
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Create Contacts from Incoming Emails"
-msgstr "Crea contatti dalle email in arrivo"
-
-#. Title of an Onboarding Step
-#: custom/onboarding_step/custom_field/custom_field.json
-msgid "Create Custom Fields"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:925
-msgid "Create Duplicate"
+#: frappe/public/js/frappe/views/reports/query_report.js:284
+#: frappe/public/js/frappe/views/reports/query_report.js:1190
+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'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Create Entry"
-msgstr "Crea voce"
+msgstr ""
-#. Label of a Check field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:59
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:195
+msgid "Create Letter Head"
+msgstr ""
+
+#. Label of the create_log (Check) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Create Log"
-msgstr "Crea registro"
+msgstr ""
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:41
-#: public/js/frappe/views/treeview.js:361
-#: workflow/page/workflow_builder/workflow_builder.js:41
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:41
+#: frappe/public/js/frappe/views/treeview.js:378
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:41
msgid "Create New"
-msgstr "Crea nuovo"
+msgstr ""
-#: core/doctype/doctype/doctype_list.js:83
+#: frappe/public/js/frappe/list/list_view.js:509
+msgctxt "Create a new document from list view"
+msgid "Create New"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype_list.js:100
msgid "Create New DocType"
msgstr ""
-#: public/js/frappe/list/list_view_select.js:204
+#: frappe/public/js/frappe/list/list_view_select.js:204
msgid "Create New Kanban Board"
msgstr ""
-#: core/doctype/user/user.js:251
+#: frappe/core/doctype/user/user.js:270
msgid "Create User Email"
-msgstr "Crea posta elettronica utente"
-
-#: public/js/frappe/views/workspace/workspace.js:465
-msgid "Create Workspace"
msgstr ""
-#: public/js/frappe/form/reminders.js:9
+#: 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 ""
-#: public/js/frappe/ui/toolbar/search_utils.js:521
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537
msgid "Create a new ..."
msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:156
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:156
msgid "Create a new record"
-msgstr "Crea un nuovo record"
+msgstr ""
-#: public/js/frappe/form/controls/link.js:291
-#: public/js/frappe/form/controls/link.js:293
-#: public/js/frappe/form/link_selector.js:139
-#: public/js/frappe/list/list_view.js:470
+#: frappe/public/js/frappe/form/controls/link.js:311
+#: frappe/public/js/frappe/form/controls/link.js:313
+#: frappe/public/js/frappe/form/link_selector.js:139
+#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/web_form/web_form_list.js:225
msgid "Create a new {0}"
-msgstr "Creare un nuovo {0}"
+msgstr ""
-#: www/login.html:142
+#: frappe/www/login.html:162
msgid "Create a {0} Account"
msgstr ""
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:34
+#. Description of a DocType
+#: frappe/email/doctype/newsletter/newsletter.json
+msgid "Create and send emails to a specific group of subscribers periodically."
+msgstr ""
+
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
-#: workflow/page/workflow_builder/workflow_builder.js:34
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:34
msgid "Create or Edit Workflow"
msgstr ""
-#: public/js/frappe/list/list_view.js:473
+#: frappe/public/js/frappe/list/list_view.js:504
msgid "Create your first {0}"
-msgstr "Crea il tuo primo {0}"
+msgstr ""
-#: workflow/doctype/workflow/workflow.js:16
+#: frappe/workflow/doctype/workflow/workflow.js:16
msgid "Create your workflow visually using the Workflow Builder."
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/public/js/frappe/views/file/file_view.js:337
msgid "Created"
-msgstr "Creato"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Created"
-msgstr "Creato"
-
-#. Label of a Datetime field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
+#. Label of the created_at (Datetime) field in DocType 'Submission Queue'
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Created At"
msgstr ""
-#: model/__init__.py:138 model/meta.py:51
-#: public/js/frappe/list/list_sidebar_group_by.js:73
-#: public/js/frappe/model/meta.js:203 public/js/frappe/model/model.js:113
+#: frappe/model/meta.py:58
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:73
+#: frappe/public/js/frappe/model/meta.js:206
+#: frappe/public/js/frappe/model/model.js:123
msgid "Created By"
-msgstr "Creato da"
+msgstr ""
-#: workflow/doctype/workflow/workflow.py:65
+#: frappe/workflow/doctype/workflow/workflow.py:64
msgid "Created Custom Field {0} in {1}"
-msgstr "Creato Campo personalizzato {0} in {1}"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.js:241 model/__init__.py:140
-#: model/meta.py:46 public/js/frappe/model/meta.js:198
-#: public/js/frappe/model/model.js:115
-#: public/js/frappe/views/dashboard/dashboard_view.js:478
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241
+#: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:53
+#: frappe/public/js/frappe/model/meta.js:201
+#: frappe/public/js/frappe/model/model.js:125
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:479
msgid "Created On"
-msgstr "Creato il"
+msgstr ""
-#: public/js/frappe/desk.js:497 public/js/frappe/views/treeview.js:376
+#: frappe/public/js/frappe/desk.js:523
+#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
-msgstr "Creazione di {0}"
+msgstr ""
-#. Option for the 'Type' (Select) field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Criticism"
-msgstr "Critica"
-
-#: public/js/frappe/form/sidebar/review.js:66
-msgid "Criticize"
-msgstr "Criticare"
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:41
+msgid "Creation of this document is only permitted in developer mode."
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Cron"
-msgstr "cron"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Cron"
-msgstr "cron"
+msgstr ""
-#. Label of a Data field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#. Label of the cron_format (Data) field in DocType 'Scheduled Job Type'
+#. Label of the cron_format (Data) field in DocType 'Server Script'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Cron Format"
-msgstr "Formato cron"
+msgstr ""
-#. Label of a Data field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Cron Format"
-msgstr "Formato cron"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
+msgid "Cron format is required for job types with Cron frequency."
+msgstr ""
-#: templates/includes/comments/comments.html:32
+#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:34
+msgid "Crop"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Ctrl + Down"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Ctrl + Up"
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.html:32
msgid "Ctrl+Enter to add comment"
-msgstr "Ctrl + Invio per aggiungere un commento"
-
-#. Name of a DocType
-#: desk/page/setup_wizard/setup_wizard.js:403
-#: geo/doctype/currency/currency.json
-msgid "Currency"
-msgstr "Valuta"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Currency"
-msgstr "Valuta"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Currency"
-msgstr "Valuta"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Currency"
-msgstr "Valuta"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Currency"
-msgstr "Valuta"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Currency"
-msgstr "Valuta"
-
+#. Label of the currency (Link) field in DocType 'System Settings'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the currency (Link) field in DocType 'Dashboard Chart'
+#. Label of the currency (Link) field in DocType 'Number Card'
+#. Name of a DocType
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:414
+#: frappe/geo/doctype/currency/currency.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Currency"
-msgstr "Valuta"
+msgstr ""
-#. Label of a Data field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the currency_name (Data) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
msgid "Currency Name"
-msgstr "Nome Valuta"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the currency_precision (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Currency Precision"
-msgstr "Precisione valuta"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/geo/doctype/currency/currency.json
+msgid "Currency list stores the currency value, its symbol and fraction unit"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Current"
-msgstr "attuale"
+msgstr ""
-#. Label of a Link field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the current_job_id (Link) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Current Job ID"
msgstr ""
-#. Label of a Int field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the current_value (Int) field in DocType 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Current Value"
msgstr ""
-#: public/js/frappe/form/form_viewers.js:5
+#: frappe/public/js/frappe/form/workflow.js:45
+msgid "Current status"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_viewers.js:5
msgid "Currently Viewing"
-msgstr "Si sta visualizzando"
-
-#: public/js/frappe/form/sidebar/review.js:77
-msgid "Currently you have {0} review points"
-msgstr "Al momento hai {0} punti di revisione"
-
-#: core/doctype/user_type/user_type_list.js:7
-#: public/js/frappe/form/reminders.js:20
-msgid "Custom"
-msgstr "Personalizzato"
+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'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Custom"
-msgstr "Personalizzato"
-
-#. Label of a Check field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Custom"
-msgstr "Personalizzato"
-
-#. Label of a Check field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
-msgid "Custom"
-msgstr "Personalizzato"
-
-#. Label of a Check field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
-msgid "Custom"
-msgstr "Personalizzato"
-
-#. Label of a Check field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Custom"
-msgstr "Personalizzato"
-
-#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Custom"
-msgstr "Personalizzato"
-
-#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
-msgid "Custom"
-msgstr "Personalizzato"
-
-#. Label of a Check field in DocType 'Module Def'
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Custom"
-msgstr "Personalizzato"
-
-#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Custom"
-msgstr "Personalizzato"
-
+#. Label of the custom (Check) field in DocType 'Desktop Icon'
#. Option for the 'Type' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Custom"
-msgstr "Personalizzato"
-
-#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Custom"
-msgstr "Personalizzato"
-
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/core/doctype/doctype_link/doctype_link.json
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/user_type/user_type_list.js:7
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/public/js/frappe/form/reminders.js:20
msgid "Custom"
-msgstr "Personalizzato"
+msgstr ""
-#. Label of a Check field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the custom_base_url (Check) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Custom Base URL"
-msgstr "URL di base personalizzato"
+msgstr ""
-#. Label of a Link field in DocType 'Workspace Custom Block'
-#: desk/doctype/workspace_custom_block/workspace_custom_block.json
-msgctxt "Workspace Custom Block"
+#. Label of the custom_block_name (Link) field in DocType 'Workspace Custom
+#. Block'
+#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json
msgid "Custom Block Name"
msgstr ""
-#. Label of a Tab Break field in DocType 'Workspace'
-#. Label of a Table field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the custom_blocks_tab (Tab Break) field in DocType 'Workspace'
+#. Label of the custom_blocks (Table) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Custom Blocks"
msgstr ""
-#. Label of a Code field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the css (Code) field in DocType 'Print Format'
+#. Label of the custom_css (Code) field in DocType 'Web Form'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/website/doctype/web_form/web_form.json
msgid "Custom CSS"
-msgstr "CSS Personalizzato"
-
-#. Label of a Code field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Custom CSS"
-msgstr "CSS Personalizzato"
-
-#. Label of a Section Break field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Custom Configuration"
-msgstr "Configurazione personalizzata"
-
-#. Name of a DocType
-#: core/doctype/custom_docperm/custom_docperm.json
-msgid "Custom DocPerm"
-msgstr "DocPerm personalizzato"
-
-#. Title of an Onboarding Step
-#: custom/onboarding_step/custom_doctype/custom_doctype.json
-msgid "Custom Document Types"
msgstr ""
-#. Label of a Table field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the custom_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 ""
-#: core/doctype/user_type/user_type.py:104
+#: frappe/core/doctype/user_type/user_type.py:105
msgid "Custom Document Types Limit Exceeded"
msgstr ""
-#: desk/desktop.py:483
+#: frappe/desk/desktop.py:524
msgid "Custom Documents"
-msgstr "Documenti personalizzati"
-
-#. Name of a DocType
-#: custom/doctype/custom_field/custom_field.json
-msgid "Custom Field"
-msgstr "Campo Personalizzato"
-
-#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Custom Field"
-msgid "Custom Field"
-msgstr "Campo Personalizzato"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Custom Field"
-msgstr "Campo Personalizzato"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Custom Field"
-msgstr "Campo Personalizzato"
-
-#: custom/doctype/custom_field/custom_field.py:216
-msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account."
-msgstr "Il campo personalizzato {0} viene creato dall'amministratore e può essere eliminato solo tramite l'account dell'amministratore."
-
-#. Subtitle of the Module Onboarding 'Customization'
-#: custom/module_onboarding/customization/customization.json
-msgid "Custom Field, Custom Doctype, Naming Series, Role Permission, Workflow, Print Formats, Reports"
msgstr ""
-#: custom/doctype/custom_field/custom_field.py:260
+#. 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 "I campi personalizzati possono essere aggiunti solo a un DocType standard."
+msgstr ""
-#: custom/doctype/custom_field/custom_field.py:257
+#: frappe/custom/doctype/custom_field/custom_field.py:274
msgid "Custom Fields cannot be added to core DocTypes."
-msgstr "I campi personalizzati non possono essere aggiunti ai DocTypes principali."
+msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the custom_footer_section (Section Break) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Custom Footer"
msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the custom_format (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Custom Format"
-msgstr "Formato personalizzato"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_custom_group_search (Data) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Custom Group Search"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:119
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:122
msgid "Custom Group Search if filled needs to contain the user placeholder {0}, eg uid={0},ou=users,dc=example,dc=com"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:190
-#: printing/page/print_format_builder/print_format_builder.js:720
+#: frappe/printing/page/print_format_builder/print_format_builder.js:190
+#: frappe/printing/page/print_format_builder/print_format_builder.js:728
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162
msgid "Custom HTML"
-msgstr "HTML personalizzato"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
msgid "Custom HTML Block"
msgstr ""
-#. Label of a HTML field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the custom_html_help (HTML) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Custom HTML Help"
-msgstr "Personalizzato Guida HTML"
+msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:111
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:114
msgid "Custom LDAP Directoy Selected, please ensure 'LDAP Group Member attribute' and 'Group Object Class' are entered"
msgstr ""
-#. Label of a Data field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the label (Data) field in DocType 'Web Form Field'
+#. Label of the label (Data) field in DocType 'Web Form List Column'
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Custom Label"
msgstr ""
-#. Label of a Data field in DocType 'Web Form List Column'
-#: website/doctype/web_form_list_column/web_form_list_column.json
-msgctxt "Web Form List Column"
-msgid "Custom Label"
-msgstr ""
-
-#. Label of a Table field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the custom_menu (Table) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Custom Menu Items"
-msgstr "Voci di menu personalizzate"
+msgstr ""
-#. Label of a Code field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the custom_options (Code) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Custom Options"
-msgstr "Opzioni personalizzate"
+msgstr ""
-#. Label of a Code field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the custom_overrides (Code) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom Overrides"
-msgstr "Sostituzioni personalizzate"
+msgstr ""
#. Option for the 'Report Type' (Select) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#: frappe/core/doctype/report/report.json
msgid "Custom Report"
-msgstr "Rapporto personalizzato"
+msgstr ""
-#: desk/desktop.py:484
+#: frappe/desk/desktop.py:525
msgid "Custom Reports"
-msgstr "Report Personalizzati"
+msgstr ""
#. Name of a DocType
-#: core/doctype/custom_role/custom_role.json
+#: frappe/core/doctype/custom_role/custom_role.json
msgid "Custom Role"
-msgstr "ruolo personalizzato"
+msgstr ""
-#. Label of a Code field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the custom_scss (Code) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Custom SCSS"
-msgstr "SCSS personalizzato"
+msgstr ""
-#. Label of a Section Break field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the custom_sidebar_menu (Section Break) field in DocType 'Portal
+#. Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Custom Sidebar Menu"
-msgstr "Personalizzato Sidebar Menu"
+msgstr ""
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Translation"
+#: frappe/core/workspace/build/build.json
msgid "Custom Translation"
msgstr ""
-#: core/doctype/doctype/doctype_list.js:65
-msgid "Custom?"
-msgstr "Personalizzato?"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Custom?"
-msgstr "Personalizzato?"
-
-#. Label of a Check field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Custom?"
-msgstr "Personalizzato?"
-
-#. Label of a Card Break in the Build Workspace
-#. Title of the Module Onboarding 'Customization'
-#: core/workspace/build/build.json
-#: custom/module_onboarding/customization/customization.json
-msgid "Customization"
-msgstr "Personalizzazione"
-
-#. Group in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Customization"
-msgstr "Personalizzazione"
-
-#. Group in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Customization"
-msgstr "Personalizzazione"
-
-#. Label of a Tab Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Customization"
-msgstr "Personalizzazione"
-
-#. Success message of the Module Onboarding 'Customization'
-#: custom/module_onboarding/customization/customization.json
-msgid "Customization onboarding is all done!"
+#: frappe/custom/doctype/custom_field/custom_field.py:423
+msgid "Custom field renamed to {0} successfully."
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:511
+#. Label of the custom (Check) field in DocType 'DocType'
+#. Label of the custom (Check) field in DocType 'Website Theme'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:82
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Custom?"
+msgstr ""
+
+#. 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 ""
-#: custom/doctype/customize_form/customize_form.js:397
+#: frappe/custom/doctype/customize_form/customize_form.js:465
msgid "Customizations Reset"
-msgstr "Ripristino di personalizzazioni"
+msgstr ""
-#: modules/utils.py:95
+#: frappe/modules/utils.py:96
msgid "Customizations for {0} exported to:
{1}"
-msgstr "Personalizzazioni per {0} esportate in:
{1}"
+msgstr ""
-#: printing/page/print/print.js:171 public/js/frappe/form/toolbar.js:527
+#: frappe/printing/page/print/print.js:171
+#: frappe/public/js/frappe/form/templates/print_layout.html:39
+#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
-msgstr "Personalizza"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1664
+#: frappe/public/js/frappe/list/list_view.js:1802
msgctxt "Button in list view menu"
msgid "Customize"
-msgstr "Personalizza"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:89
+#: frappe/custom/doctype/customize_form/customize_form.js:89
msgid "Customize Child Table"
msgstr ""
-#: public/js/frappe/views/dashboard/dashboard_view.js:37
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:38
msgid "Customize Dashboard"
msgstr ""
-#. Name of a DocType
-#: custom/doctype/customize_form/customize_form.json
-#: public/js/frappe/views/kanban/kanban_view.js:340
-msgid "Customize Form"
-msgstr "Personalizzare modulo"
-
#. Label of a Link in the Build Workspace
-#. Label of a shortcut in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Customize Form"
+#. Name of a DocType
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:33
+#: frappe/core/doctype/doctype/doctype.js:61
+#: frappe/core/workspace/build/build.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
msgid "Customize Form"
-msgstr "Personalizzare modulo"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:100
+#: frappe/custom/doctype/customize_form/customize_form.js:100
msgid "Customize Form - {0}"
msgstr ""
#. Name of a DocType
-#: custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Customize Form Field"
-msgstr "Personalizzare Campo modulo"
-
-#. Title of an Onboarding Step
-#: custom/onboarding_step/print_format/print_format.json
-msgid "Customize Print Formats"
msgstr ""
-#: public/js/frappe/views/file/file_view.js:144
+#. 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 "Tagliare"
+msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Cyan"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Cyan"
msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "DELETE"
-msgstr ""
-
#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "DELETE"
msgstr ""
-#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "DESC"
-msgstr "DESC"
-
#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "DESC"
-msgstr "DESC"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "DLE"
msgstr ""
-#: templates/print_formats/standard_macros.html:207
+#: frappe/templates/print_formats/standard_macros.html:215
msgid "DRAFT"
-msgstr "BOZZA"
-
-#: public/js/frappe/utils/common.js:398
-#: website/report/website_analytics/website_analytics.js:23
-msgid "Daily"
-msgstr "Giornaliero"
-
-#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Daily"
-msgstr "Giornaliero"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Daily"
-msgstr "Giornaliero"
-
-#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Daily"
-msgstr "Giornaliero"
-
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Daily"
-msgstr "Giornaliero"
-
-#. Option for the 'Point Allocation Periodicity' (Select) field in DocType
-#. 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Daily"
-msgstr "Giornaliero"
-
-#. Option for the 'Repeat On' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Daily"
-msgstr "Giornaliero"
-
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Daily"
-msgstr "Giornaliero"
-
-#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Daily"
-msgstr "Giornaliero"
-
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Daily"
-msgstr "Giornaliero"
-
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Daily"
-msgstr "Giornaliero"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Daily"
-msgstr "Giornaliero"
-
#. Option for the 'Frequency' (Select) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Repeat On' (Select) field in DocType 'Event'
+#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
+#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
+#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/doctype/user/user.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/utils/common.js:398
+#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
-msgstr "Giornaliero"
+msgstr ""
-#: templates/emails/upcoming_events.html:8
+#: frappe/templates/emails/upcoming_events.html:8
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
-msgstr "Viene inviata una sintesi giornaliera per gli eventi in calendario per i quali è stato settato un promemoria"
+msgstr ""
-#: desk/doctype/event/event.py:93
+#: frappe/desk/doctype/event/event.py:100
msgid "Daily Events should finish on the Same Day."
-msgstr "Gli eventi giornalieri dovrebbero concludersi nello stesso giorno."
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Daily Long"
-msgstr "Daily Long"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Daily Long"
-msgstr "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'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Danger"
-msgstr "Pericolo"
+msgstr ""
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Dark"
msgstr ""
-#. Label of a Link field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the dark_color (Link) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Dark Color"
-msgstr "Colore scuro"
+msgstr ""
-#: public/js/frappe/ui/theme_switcher.js:65
+#: frappe/public/js/frappe/ui/theme_switcher.js:65
msgid "Dark Theme"
msgstr ""
-#. Name of a DocType
-#: core/page/dashboard_view/dashboard_view.js:10
-#: desk/doctype/dashboard/dashboard.json
-#: public/js/frappe/ui/toolbar/search_utils.js:546
-msgid "Dashboard"
-msgstr "Pannello di controllo"
-
+#. Label of the dashboard (Check) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Dashboard"
-msgid "Dashboard"
-msgstr "Pannello di controllo"
-
+#. Name of a DocType
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Dashboard"
-msgstr "Pannello di controllo"
-
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
-msgid "Dashboard"
-msgstr "Pannello di controllo"
-
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/core/doctype/user/user.json
+#: frappe/core/page/dashboard_view/dashboard_view.js:10
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
+#: frappe/public/js/frappe/utils/utils.js:932
msgid "Dashboard"
-msgstr "Pannello di controllo"
-
-#. Name of a DocType
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8
-msgid "Dashboard Chart"
-msgstr "Dashboard Chart"
+msgstr ""
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Dashboard Chart"
+#. Name of a DocType
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8
msgid "Dashboard Chart"
-msgstr "Dashboard Chart"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json
+#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
msgid "Dashboard Chart Field"
-msgstr "Campo grafico del cruscotto"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
msgid "Dashboard Chart Link"
-msgstr "Link grafico dashboard"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
msgid "Dashboard Chart Source"
-msgstr "Dashboard Source Source"
+msgstr ""
#. Name of a role
-#: desk/doctype/dashboard/dashboard.json
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-#: desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Dashboard Manager"
-msgstr "Gestore dashboard"
+msgstr ""
-#. Label of a Data field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
+#. Label of the dashboard_name (Data) field in DocType 'Dashboard'
+#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Dashboard Name"
-msgstr "Nome del dashboard"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/dashboard_settings/dashboard_settings.json
+#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
msgid "Dashboard Settings"
-msgstr "Impostazioni dashboard"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/public/js/frappe/list/base_list.js:204
+msgid "Dashboard View"
+msgstr ""
+
+#. Label of the tab_break_2 (Tab Break) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Dashboards"
-msgstr "cruscotti"
+msgstr ""
#. Label of a Card Break in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgid "Data"
-msgstr "Dati"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Data"
-msgstr "Dati"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Data"
-msgstr "Dati"
-
-#. Label of a Code field in DocType 'Deleted Document'
-#: core/doctype/deleted_document/deleted_document.json
-msgctxt "Deleted Document"
-msgid "Data"
-msgstr "Dati"
-
+#. Label of the data (Code) field in DocType 'Deleted Document'
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Data"
-msgstr "Dati"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Data"
-msgstr "Dati"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Data"
-msgstr "Dati"
-
-#. Label of a Long Text field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Data"
-msgstr "Dati"
-
-#. Label of a Code field in DocType 'Version'
-#: core/doctype/version/version.json
-msgctxt "Version"
-msgid "Data"
-msgstr "Dati"
-
+#. Label of the data (Long Text) field in DocType 'Transaction Log'
+#. Label of the data (Code) field in DocType 'Version'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the webhook_data (Table) field in DocType 'Webhook'
+#. Label of the data (Code) field in DocType 'Webhook Request Log'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Data"
-msgstr "Dati"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/deleted_document/deleted_document.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/core/doctype/version/version.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Data"
-msgstr "Dati"
+msgstr ""
-#. Label of a Table field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Data"
-msgstr "Dati"
-
-#. Label of a Code field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "Data"
-msgstr "Dati"
-
-#: public/js/frappe/form/controls/data.js:58
+#: frappe/public/js/frappe/form/controls/data.js:59
msgid "Data Clipped"
msgstr ""
#. Name of a DocType
-#: core/doctype/data_export/data_export.json
+#: frappe/core/doctype/data_export/data_export.json
msgid "Data Export"
-msgstr "Esportazione dati"
+msgstr ""
#. Name of a DocType
-#: core/doctype/data_import/data_import.json
+#. 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 "Importazione dati"
-
-#. Label of a Link field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
-msgid "Data Import"
-msgstr "Importazione dati"
+msgstr ""
#. Name of a DocType
-#: core/doctype/data_import_log/data_import_log.json
+#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Data Import Log"
msgstr ""
-#: core/doctype/data_export/exporter.py:174
+#: frappe/core/doctype/data_export/exporter.py:174
msgid "Data Import Template"
-msgstr "Importazione dati Template"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:614
+#: frappe/custom/doctype/customize_form/customize_form.py:614
msgid "Data Too Long"
-msgstr "Dati troppo lunghi"
+msgstr ""
-#: model/base_document.py:703
-msgid "Data missing in table"
-msgstr "Dati Mancanti nella tabella"
+#. Label of the database (Data) field in DocType 'System Health Report'
+#. Label of the database_section (Section Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Database"
+msgstr ""
-#. Label of a Select field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the engine (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Database Engine"
-msgstr "Motore di Database"
+msgstr ""
-#. Label of a Section Break field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#. Label of the database_processes_section (Section Break) field in DocType
+#. 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
msgid "Database Processes"
msgstr ""
-#: public/js/frappe/doctype/index.js:38
+#: frappe/public/js/frappe/doctype/index.js:38
msgid "Database Row Size Utilization"
msgstr ""
#. Name of a report
-#: core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json
+#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json
msgid "Database Storage Usage By Tables"
msgstr ""
-#: custom/doctype/customize_form/customize_form.py:244
+#: frappe/custom/doctype/customize_form/customize_form.py:248
msgid "Database Table Row Size Limit"
msgstr ""
-#: public/js/frappe/doctype/index.js:40
+#: frappe/public/js/frappe/doctype/index.js:40
msgid "Database Table Row Size Utilization: {0}%, this limits number of fields you can add."
msgstr ""
-#: desk/report/todo/todo.py:38 email/doctype/newsletter/newsletter.js:109
-#: public/js/frappe/views/interaction.js:80
-msgid "Date"
-msgstr "Data"
-
-#. Label of a Datetime field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Date"
-msgstr "Data"
-
-#. Label of a Datetime field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Date"
-msgstr "Data"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Date"
-msgstr "Data"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Date"
-msgstr "Data"
+#. Label of the database_version (Data) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Database Version"
+msgstr ""
+#. Label of the communication_date (Datetime) field in DocType 'Activity Log'
+#. Label of the communication_date (Datetime) field in DocType 'Communication'
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Date"
-msgstr "Data"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Date"
-msgstr "Data"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Date"
-msgstr "Data"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/report/todo/todo.py:38
+#: frappe/email/doctype/newsletter/newsletter.js:109
+#: frappe/public/js/frappe/views/interaction.js:80
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
-msgstr "Data"
+msgstr ""
-#. Label of a Data field in DocType 'Country'
-#: geo/doctype/country/country.json
-msgctxt "Country"
+#. Label of the date_format (Select) field in DocType 'Language'
+#. Label of the date_format (Select) field in DocType 'System Settings'
+#. Label of the date_format (Data) field in DocType 'Country'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/geo/doctype/country/country.json
msgid "Date Format"
-msgstr "Formato Data"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Date Format"
-msgstr "Formato Data"
-
-#: desk/page/leaderboard/leaderboard.js:165
+#. Label of the section_break_dfrx (Section Break) field in DocType 'Audit
+#. Trail'
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/public/js/frappe/widgets/chart_widget.js:237
msgid "Date Range"
msgstr ""
-#. Label of a Section Break field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
-msgid "Date Range"
-msgstr ""
-
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the date_and_number_format (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Date and Number Format"
-msgstr "Formato dei numeri e delle date"
+msgstr ""
-#: public/js/frappe/form/controls/date.js:163
+#: frappe/public/js/frappe/form/controls/date.js:247
msgid "Date {0} must be in format: {1}"
-msgstr "La data {0} deve essere nel formato: {1}"
+msgstr ""
-#: utils/password_strength.py:131
+#: frappe/utils/password_strength.py:129
msgid "Dates are often easy to guess."
-msgstr "Le date sono spesso facili da indovinare."
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Datetime"
-msgstr "Data e ora"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Datetime"
-msgstr "Data e ora"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Datetime"
-msgstr "Data e ora"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Datetime"
-msgstr "Data e ora"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Datetime"
-msgstr "Data e ora"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Datetime"
-msgstr "Data e ora"
+msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:270
+#. Label of the day (Select) field in DocType 'Assignment Rule Day'
+#. Label of the day (Select) field in DocType 'Auto Repeat Day'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/public/js/frappe/views/calendar/calendar.js:277
msgid "Day"
-msgstr "Giorno"
+msgstr ""
-#. Label of a Select field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Day"
-msgstr "Giorno"
-
-#. Label of a Select field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Day"
-msgstr "Giorno"
-
-#. Label of a Select field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the day_of_week (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Day of Week"
-msgstr "Giorno della settimana"
+msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Days After"
-msgstr "Giorni Dopo"
+msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Days Before"
-msgstr "Giorni Prima"
+msgstr ""
-#. Label of a Int field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the days_in_advance (Int) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Days Before or After"
-msgstr "Giorni Prima o Dopo"
+msgstr ""
-#: public/js/frappe/request.js:249
+#: frappe/public/js/frappe/request.js:252
msgid "Deadlock Occurred"
msgstr ""
-#: templates/emails/password_reset.html:1
+#: frappe/templates/emails/password_reset.html:1
msgid "Dear"
-msgstr "Gentile"
+msgstr ""
-#: templates/emails/administrator_logged_in.html:1
+#: frappe/templates/emails/administrator_logged_in.html:1
msgid "Dear System Manager,"
-msgstr "Spettabile Responsabile di Sistema,"
+msgstr ""
-#: templates/emails/account_deletion_notification.html:1
-#: templates/emails/delete_data_confirmation.html:1
+#: frappe/templates/emails/account_deletion_notification.html:1
+#: frappe/templates/emails/delete_data_confirmation.html:1
msgid "Dear User,"
-msgstr "Caro utente,"
+msgstr ""
-#: templates/emails/download_data.html:1
+#: frappe/templates/emails/download_data.html:1
msgid "Dear {0}"
-msgstr "Gentile {0}"
+msgstr ""
-#. Label of a Code field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
+#. Label of the debug_log (Code) field in DocType 'Scheduled Job Log'
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
msgid "Debug Log"
msgstr ""
-#. Label of a Small Text field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Default"
-msgstr "Predefinito"
+#: frappe/public/js/frappe/views/reports/report_utils.js:308
+msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric"
+msgstr ""
-#. Label of a Small Text field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Default"
-msgstr "Predefinito"
+#: frappe/public/js/frappe/views/reports/report_utils.js:300
+msgid "Decimal Separator must be a single character"
+msgstr ""
+#. Label of the default (Small Text) field in DocType 'DocField'
+#. Label of the default (Small Text) field in DocType 'Report Filter'
+#. Label of the default (Small Text) field in DocType 'Customize Form Field'
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the default (Data) field in DocType 'Web Form Field'
+#. Label of the default (Small Text) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/templates/form_grid/fields.html:30
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Default"
-msgstr "Predefinito"
+msgstr ""
-#. Label of a Small Text field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Default"
-msgstr "Predefinito"
-
-#. Label of a Data field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Default"
-msgstr "Predefinito"
-
-#. Label of a Small Text field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Default"
-msgstr "Predefinito"
-
-#: contacts/doctype/address_template/address_template.py:40
+#: frappe/contacts/doctype/address_template/address_template.py:41
msgid "Default Address Template cannot be deleted"
-msgstr "Indirizzo modello predefinito non può essere eliminato"
+msgstr ""
-#. Label of a Select field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the default_amend_naming (Select) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Default Amendment Naming"
msgstr ""
-#. Label of a Link field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the default_app (Select) field in DocType 'System Settings'
+#. Label of the default_app (Select) field in DocType 'User'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+msgid "Default App"
+msgstr ""
+
+#. Label of the default_email_template (Link) field in DocType 'DocType'
+#. Label of the default_email_template (Link) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Default Email Template"
msgstr ""
-#. Label of a Link field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Default Email Template"
-msgstr ""
-
-#: email/doctype/email_account/email_account_list.js:13
+#: frappe/email/doctype/email_account/email_account_list.js:13
msgid "Default Inbox"
-msgstr "Posta in arrivo predefinita"
+msgstr ""
-#: email/doctype/email_account/email_account.py:194
+#. Label of the default_incoming (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:224
msgid "Default Incoming"
-msgstr "Posta in arrivo predefinita"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Default Incoming"
-msgstr "Posta in arrivo predefinita"
-
-#. Label of a Check field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the is_default (Check) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Default Letter Head"
-msgstr "Carta Intestata Predefinita"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming
#. Settings'
-#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
-msgctxt "Amended Document Naming Settings"
-msgid "Default Naming"
-msgstr ""
-
#. Option for the 'Default Amendment Naming' (Select) field in DocType
#. 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Default Naming"
msgstr ""
-#: email/doctype/email_account/email_account.py:201
+#. Label of the default_outgoing (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:232
msgid "Default Outgoing"
-msgstr "Posta in Uscita predefinita"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Default Outgoing"
-msgstr "Posta in Uscita predefinita"
-
-#. Label of a Data field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the default_portal_home (Data) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Default Portal Home"
-msgstr "Home page del portale predefinita"
+msgstr ""
-#. Label of a Link field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the default_print_format (Data) field in DocType 'DocType'
+#. Label of the default_print_format (Link) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Default Print Format"
-msgstr "Formato Stampa Predefinito"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Default Print Format"
-msgstr "Formato Stampa Predefinito"
-
-#. Label of a Link field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the default_print_language (Link) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Default Print Language"
-msgstr "Lingua di stampa predefinita"
+msgstr ""
-#. Label of a Data field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the default_redirect_uri (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Default Redirect URI"
-msgstr "Predefinito Redirect URI"
+msgstr ""
-#. Label of a Link field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the default_role (Link) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Default Role at Time of Signup"
-msgstr "Ruolo predefinito al momento della iscrizione"
+msgstr ""
-#: email/doctype/email_account/email_account_list.js:16
+#: frappe/email/doctype/email_account/email_account_list.js:16
msgid "Default Sending"
-msgstr "Invio di default"
+msgstr ""
-#: email/doctype/email_account/email_account_list.js:7
+#: frappe/email/doctype/email_account/email_account_list.js:7
msgid "Default Sending and Inbox"
-msgstr "Predefinito Invio e Posta in arrivo"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the sort_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Default Sort Field"
-msgstr "Campo di ordinamento predefinito"
+msgstr ""
-#. Label of a Select field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the sort_order (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Default Sort Order"
-msgstr "Ordinamento predefinito"
+msgstr ""
-#. Label of a Data field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
+#. Label of the field (Data) field in DocType 'Print Format Field Template'
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
msgid "Default Template For Field"
msgstr ""
-#: website/doctype/website_theme/website_theme.js:28
+#: frappe/website/doctype/website_theme/website_theme.js:28
msgid "Default Theme"
-msgstr "Tema predefinito"
+msgstr ""
-#. Label of a Link field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the default_role (Link) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Default User Role"
msgstr ""
-#. Label of a Link field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the default_user_type (Link) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Default User Type"
msgstr ""
-#. Label of a Text field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the default (Text) field in DocType 'Custom Field'
+#. Label of the default_value (Data) field in DocType 'Property Setter'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Default Value"
-msgstr "Valore Predefinito"
+msgstr ""
-#. Label of a Data field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
-msgid "Default Value"
-msgstr "Valore Predefinito"
-
-#. Label of a Select field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the default_view (Select) field in DocType 'DocType'
+#. Label of the default_view (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Default View"
msgstr ""
-#. Label of a Select field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Default View"
+#. Label of the default_workspace (Link) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Default Workspace"
msgstr ""
-#: core/doctype/doctype/doctype.py:1327
+#. Description of the 'Currency' (Link) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Default display currency"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1376
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
-msgstr "L'impostazione predefinita per il tipo di campo "Verifica" {0} deve essere "0" o "1""
+msgstr ""
-#: core/doctype/doctype/doctype.py:1340
+#: frappe/core/doctype/doctype/doctype.py:1389
msgid "Default value for {0} must be in the list of options."
-msgstr "Il valore predefinito per {0} deve essere nell'elenco delle opzioni."
+msgstr ""
-#: core/doctype/session_default_settings/session_default_settings.py:37
+#: frappe/core/doctype/session_default_settings/session_default_settings.py:38
msgid "Default {0}"
-msgstr "Predefinito {0}"
+msgstr ""
#. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Default: \"Contact Us\""
-msgstr "Predefinito: \"Contattaci\""
+msgstr ""
#. Name of a DocType
-#: core/doctype/defaultvalue/defaultvalue.json
+#: frappe/core/doctype/defaultvalue/defaultvalue.json
msgid "DefaultValue"
-msgstr "Valore Predefinito"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the defaults_section (Section Break) field in DocType 'DocField'
+#. Label of the sb2 (Section Break) field in DocType 'User'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/user/user.json
msgid "Defaults"
-msgstr "Valori Predefiniti"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Defaults"
-msgstr "Valori Predefiniti"
-
-#: email/doctype/email_account/email_account.py:207
+#: 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 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'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Delayed"
-msgstr "Ritardato"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:189
-#: public/js/frappe/form/toolbar.js:423
-#: public/js/frappe/views/reports/report_view.js:1645
-#: public/js/frappe/views/treeview.js:313
-#: public/js/frappe/views/workspace/workspace.js:823
-#: templates/discussions/reply_card.html:35
+#. Label of the delete (Check) field in DocType 'Custom DocPerm'
+#. Label of the delete (Check) field in DocType 'DocPerm'
+#. Label of the delete (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:189
+#: frappe/public/js/frappe/form/footer/form_timeline.js:626
+#: frappe/public/js/frappe/form/grid.js:66
+#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/templates/discussions/reply_card.html:35
+#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
-msgstr "Elimina"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1857
+#: frappe/public/js/frappe/list/list_view.js:2027
msgctxt "Button in list view actions menu"
msgid "Delete"
-msgstr "Elimina"
+msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Delete"
-msgstr "Elimina"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Delete"
-msgstr "Elimina"
-
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Delete"
-msgstr "Elimina"
-
-#: www/me.html:75
+#: frappe/www/me.html:65
msgid "Delete Account"
msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:10
-msgid "Delete Data"
-msgstr "Elimina dati"
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete All"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:103
+#: 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:106
msgid "Delete Kanban Board"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:824
-msgid "Delete Workspace"
+#: frappe/public/js/form_builder/components/Section.vue:125
+msgctxt "Title of confirmation dialog"
+msgid "Delete Section"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:696
+#: frappe/public/js/form_builder/components/Tabs.vue:64
+msgctxt "Title of confirmation dialog"
+msgid "Delete Tab"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:934
+msgid "Delete and Generate New"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:203
+msgctxt "Button text"
+msgid "Delete column"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:741
msgid "Delete comment?"
-msgstr "Elimina commento?"
+msgstr ""
-#: email/doctype/email_unsubscribe/email_unsubscribe.py:30
+#: frappe/public/js/form_builder/components/Section.vue:205
+msgctxt "Button text"
+msgid "Delete entire column with fields"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:134
+msgctxt "Button text"
+msgid "Delete entire section with fields"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:73
+msgctxt "Button text"
+msgid "Delete entire tab with fields"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:132
+msgctxt "Button text"
+msgid "Delete section"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:71
+msgctxt "Button text"
+msgid "Delete tab"
+msgstr ""
+
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:29
msgid "Delete this record to allow sending to this email address"
-msgstr "Eliminare questo record per consentire l'invio a questo indirizzo email"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1862
+#: frappe/public/js/frappe/list/list_view.js:2032
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
msgstr ""
-#: public/js/frappe/list/list_view.js:1868
+#: frappe/public/js/frappe/list/list_view.js:2038
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
-msgstr "Eliminare {0} elementi in modo permanente?"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Deleted"
-msgstr "Eliminato"
-
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Deleted"
-msgstr "Eliminato"
-
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
-msgid "Deleted"
-msgstr "Eliminato"
-
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Deleted"
-msgstr "Eliminato"
+msgstr ""
-#. Label of a Data field in DocType 'Deleted Document'
-#: core/doctype/deleted_document/deleted_document.json
-msgctxt "Deleted Document"
+#. Label of the deleted_doctype (Data) field in DocType 'Deleted Document'
+#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted DocType"
-msgstr "DocType eliminata"
+msgstr ""
#. Name of a DocType
-#: core/doctype/deleted_document/deleted_document.json
+#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted Document"
-msgstr "documento eliminato"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Deleted Document"
+#: frappe/automation/workspace/tools/tools.json
msgid "Deleted Documents"
-msgstr "Documenti eliminati"
+msgstr ""
-#. Label of a Data field in DocType 'Deleted Document'
-#: core/doctype/deleted_document/deleted_document.json
-msgctxt "Deleted Document"
+#. Label of the deleted_name (Data) field in DocType 'Deleted Document'
+#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted Name"
-msgstr "Nome eliminata"
+msgstr ""
-#: desk/reportview.py:488
+#: frappe/desk/reportview.py:606
+msgid "Deleted all documents successfully"
+msgstr ""
+
+#: frappe/desk/reportview.py:583
msgid "Deleting {0}"
-msgstr "Eliminazione {0}"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:158
+#: frappe/public/js/frappe/list/bulk_operations.js:202
msgid "Deleting {0} records..."
msgstr ""
-#: public/js/frappe/model/model.js:706
+#: frappe/public/js/frappe/model/model.js:692
msgid "Deleting {0}..."
msgstr ""
-#. Label of a Table field in DocType 'Personal Data Deletion Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
+#. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion
+#. Request'
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Deletion Steps "
msgstr ""
-#: core/doctype/page/page.py:108
+#: frappe/core/doctype/page/page.py:110
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47
msgid "Deletion of this document is only permitted in developer mode."
msgstr ""
-#: public/js/frappe/views/reports/report_utils.js:276
+#. Label of the delimiter_options (Data) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Delimiter Options"
+msgstr ""
+
+#: frappe/utils/csvutils.py:76
+msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data."
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_utils.js:296
msgid "Delimiter must be a single character"
msgstr ""
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the delivery_status (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Delivery Status"
-msgstr "Stato Consegna"
-
-#: templates/includes/oauth_confirmation.html:14
-msgid "Deny"
msgstr ""
#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/templates/includes/oauth_confirmation.html:17
msgid "Deny"
msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the department (Data) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Department"
-msgstr "Dipartimento"
+msgstr ""
-#. Label of a Data field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Label of the dependencies (Data) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:323
+#: frappe/www/attribution.html:29
msgid "Dependencies"
msgstr ""
-#. Label of a Code field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Depends On"
-msgstr "Dipende da"
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
+msgid "Dependencies & Licenses"
+msgstr ""
-#. Label of a Code field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the depends_on (Code) field in DocType 'Custom Field'
+#. Label of the depends_on (Code) field in DocType 'Customize Form Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Depends On"
-msgstr "Dipende da"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:32
+#: frappe/public/js/frappe/ui/filters/filter.js:32
msgid "Descendants Of"
-msgstr "Discendenti di"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:33
+#: frappe/public/js/frappe/ui/filters/filter.js:33
msgid "Descendants Of (inclusive)"
msgstr ""
-#: desk/report/todo/todo.py:39 public/js/frappe/form/reminders.js:44
+#. Label of the description (Small Text) field in DocType 'Assignment Rule'
+#. Label of the description (Small Text) field in DocType 'Reminder'
+#. Label of the description (Small Text) field in DocType 'DocField'
+#. Label of the description (Small Text) field in DocType 'DocType'
+#. Label of the description (Text) field in DocType 'Customize Form Field'
+#. Label of the description (Small Text) field in DocType 'Desktop Icon'
+#. Label of the description (Text Editor) field in DocType 'Event'
+#. Label of the description (HTML Editor) field in DocType 'Form Tour Step'
+#. Label of the description_section (Section Break) field in DocType
+#. 'Onboarding Step'
+#. Label of the description (Markdown Editor) field in DocType 'Onboarding
+#. Step'
+#. Label of the description (Small Text) field in DocType 'Tag'
+#. Label of the description (Text Editor) field in DocType 'ToDo'
+#. Label of the description (HTML Editor) field in DocType 'Workspace Link'
+#. Label of the description (Small Text) field in DocType 'Print Heading'
+#. Label of the description (Small Text) field in DocType 'Blog Category'
+#. Label of the description (Small Text) field in DocType 'UTM Medium'
+#. Label of the description (Small Text) field in DocType 'UTM Source'
+#. Label of the description (Text) field in DocType 'Web Form Field'
+#. Label of the meta_description (Small Text) field in DocType 'Web Page'
+#. Label of the description (Text) field in DocType 'Website Slideshow Item'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/todo/todo.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/report/todo/todo.py:39
+#: frappe/printing/doctype/print_heading/print_heading.json
+#: frappe/public/js/frappe/form/reminders.js:44
+#: frappe/public/js/frappe/widgets/widget_dialog.js:256
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
+#: frappe/www/attribution.html:24
msgid "Description"
-msgstr "Descrizione"
-
-#. Label of a Small Text field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Description"
-msgstr "Descrizione"
-
-#. Label of a Small Text field in DocType 'Blog Category'
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
-msgid "Description"
-msgstr "Descrizione"
-
-#. Label of a Text field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Description"
-msgstr "Descrizione"
-
-#. Label of a Small Text field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Description"
-msgstr "Descrizione"
-
-#. Label of a Small Text field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Description"
-msgstr "Descrizione"
-
-#. Label of a Small Text field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Description"
-msgstr "Descrizione"
-
-#. Label of a Text Editor field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Description"
-msgstr "Descrizione"
-
-#. Label of a HTML Editor field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Description"
-msgstr "Descrizione"
-
-#. Label of a Section Break field in DocType 'Onboarding Step'
-#. Label of a Markdown Editor field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Description"
-msgstr "Descrizione"
-
-#. Label of a Small Text field in DocType 'Print Heading'
-#: printing/doctype/print_heading/print_heading.json
-msgctxt "Print Heading"
-msgid "Description"
-msgstr "Descrizione"
-
-#. Label of a Small Text field in DocType 'Reminder'
-#: automation/doctype/reminder/reminder.json
-msgctxt "Reminder"
-msgid "Description"
-msgstr "Descrizione"
-
-#. Label of a Small Text field in DocType 'Tag'
-#: desk/doctype/tag/tag.json
-msgctxt "Tag"
-msgid "Description"
-msgstr "Descrizione"
-
-#. Label of a Text Editor field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Description"
-msgstr "Descrizione"
-
-#. Label of a Text field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Description"
-msgstr "Descrizione"
-
-#. Label of a Small Text field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Description"
-msgstr "Descrizione"
-
-#. Label of a Text field in DocType 'Website Slideshow Item'
-#: website/doctype/website_slideshow_item/website_slideshow_item.json
-msgctxt "Website Slideshow Item"
-msgid "Description"
-msgstr "Descrizione"
+msgstr ""
#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)"
-msgstr "Descrizione della pagina di elenco, in testo normale, solo un paio di righe. (max 200 caratteri)"
+msgstr ""
#. Description of the 'Description' (Section Break) field in DocType
#. 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Description to inform the user about any action that is going to be performed"
msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the designation (Data) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Designation"
-msgstr "Designazione"
+msgstr ""
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the desk_access (Check) field in DocType 'Role'
+#: frappe/core/doctype/role/role.json
msgid "Desk Access"
-msgstr "Accesso Scrivania"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the desk_settings_section (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Desk Settings"
msgstr ""
-#. Label of a Select field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the desk_theme (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Desk Theme"
msgstr ""
#. Name of a role
-#: automation/doctype/reminder/reminder.json core/doctype/report/report.json
-#: core/doctype/submission_queue/submission_queue.json
-#: core/doctype/user_group/user_group.json
-#: custom/doctype/doctype_layout/doctype_layout.json
-#: desk/doctype/calendar_view/calendar_view.json
-#: desk/doctype/custom_html_block/custom_html_block.json
-#: desk/doctype/dashboard/dashboard.json
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-#: desk/doctype/dashboard_settings/dashboard_settings.json
-#: desk/doctype/form_tour/form_tour.json
-#: desk/doctype/kanban_board/kanban_board.json
-#: desk/doctype/list_filter/list_filter.json
-#: desk/doctype/module_onboarding/module_onboarding.json
-#: desk/doctype/note/note.json desk/doctype/number_card/number_card.json
-#: desk/doctype/onboarding_step/onboarding_step.json
-#: email/doctype/document_follow/document_follow.json
-#: email/doctype/email_template/email_template.json
-#: integrations/doctype/google_calendar/google_calendar.json
-#: integrations/doctype/google_contacts/google_contacts.json
-#: printing/doctype/letter_head/letter_head.json
-#: printing/doctype/network_printer_settings/network_printer_settings.json
-#: printing/doctype/print_format/print_format.json
-#: social/doctype/energy_point_log/energy_point_log.json
-#: website/doctype/marketing_campaign/marketing_campaign.json
-#: workflow/doctype/workflow_action/workflow_action.json
-#: workflow/doctype/workflow_state/workflow_state.json
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_group/user_group.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/desk/doctype/note/note.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/email/doctype/email_template/email_template.json
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Desk User"
msgstr ""
#. Name of a DocType
-#: desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Desktop Icon"
-msgstr "Icona della Scrivania"
+msgstr ""
-#: desk/doctype/desktop_icon/desktop_icon.py:230
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:225
msgid "Desktop Icon already exists"
-msgstr "L'icona di Desktop esiste già"
+msgstr ""
-#: public/js/form_builder/store.js:254 public/js/form_builder/utils.js:38
-#: public/js/frappe/form/layout.js:135 public/js/frappe/views/treeview.js:276
+#. Label of the details_tab (Tab Break) field in DocType 'Module Def'
+#. Label of the details (Code) field in DocType 'Scheduled Job Log'
+#. Label of the details_tab (Tab Break) field in DocType 'Customize Form'
+#. Label of the details (Section Break) field in DocType 'Event'
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/public/js/form_builder/components/Tabs.vue:92
+#: frappe/public/js/form_builder/store.js:259
+#: frappe/public/js/form_builder/utils.js:38
+#: frappe/public/js/frappe/form/layout.js:153
+#: frappe/public/js/frappe/views/treeview.js:292
msgid "Details"
-msgstr "Dettagli"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Details"
-msgstr "Dettagli"
+#. Label of the use_csv_sniffer (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Detect CSV type"
+msgstr ""
-#. Label of a Section Break field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Details"
-msgstr "Dettagli"
-
-#. Label of a Code field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
-msgid "Details"
-msgstr "Dettagli"
-
-#: core/page/permission_manager/permission_manager.js:477
+#: frappe/core/page/permission_manager/permission_manager.js:494
msgid "Did not add"
-msgstr "Non aggiungere"
+msgstr ""
-#: core/page/permission_manager/permission_manager.js:378
+#: frappe/core/page/permission_manager/permission_manager.js:388
msgid "Did not remove"
-msgstr "Non rimuovere"
+msgstr ""
-#: public/js/frappe/utils/diffview.js:56
+#: frappe/public/js/frappe/utils/diffview.js:57
msgid "Diff"
msgstr ""
#. Description of the 'States' (Section Break) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Different \"States\" this document can exist in. Like \"Open\", \"Pending Approval\" etc."
-msgstr "Diverso "Uniti" questo documento può esistere in Come "Open", "In attesa di approvazione", ecc"
+msgstr ""
-#. Label of a Int field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#. Label of the prefix_digits (Int) field in DocType 'Document Naming Rule'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Digits"
-msgstr "Cifre"
+msgstr ""
-#. Label of a Select field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_directory_server (Select) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Directory Server"
msgstr ""
-#. Label of a Check field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
+#. Label of the disable_auto_refresh (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Auto Refresh"
-msgstr "Disabilita l'aggiornamento automatico"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the disable_automatic_recency_filters (Check) field in DocType
+#. 'List View Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Disable Automatic Recency Filters"
+msgstr ""
+
+#. Label of the disable_change_log_notification (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Change Log Notification"
msgstr ""
-#. Label of a Check field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
+#. Label of the disable_comment_count (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Comment Count"
msgstr ""
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the disable_comments (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Disable Comments"
-msgstr "Disabilita commenti"
+msgstr ""
-#. Label of a Check field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
+#. Label of the disable_contact_us (Check) field in DocType 'Contact Us
+#. Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Disable Contact Us Page"
+msgstr ""
+
+#. Label of the disable_count (Check) field in DocType 'List View Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Count"
-msgstr "Disabilita il conteggio"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the disable_document_sharing (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Document Sharing"
msgstr ""
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the disable_likes (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Disable Likes"
msgstr ""
-#: core/doctype/report/report.js:36
+#: frappe/core/doctype/report/report.js:39
msgid "Disable Report"
-msgstr "Disabilita Report"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the no_smtp_authentication (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Disable SMTP server authentication"
-msgstr "Disabilita l'autenticazione del server SMTP"
+msgstr ""
-#. Label of a Check field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
+#. Label of the disable_sidebar_stats (Check) field in DocType 'List View
+#. Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Disable Sidebar Stats"
-msgstr "Disabilita le statistiche della barra laterale"
+msgstr ""
-#: website/doctype/website_settings/website_settings.js:146
+#: frappe/website/doctype/website_settings/website_settings.js:146
msgid "Disable Signup for your site"
-msgstr "Disabilita la registrazione per il tuo sito"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the disable_standard_email_footer (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Standard Email Footer"
-msgstr "Disabilitare standard Email Footer"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the disable_system_update_notification (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable System Update Notification"
msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the disable_user_pass_login (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Disable Username/Password Login"
msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the disable_signup (Check) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Disable signups"
msgstr ""
-#: core/doctype/user/user_list.js:14 public/js/frappe/model/indicator.js:108
-#: public/js/frappe/model/indicator.js:115
-msgid "Disabled"
-msgstr "Disabilitato"
-
-#. Label of a Check field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Disabled"
-msgstr "Disabilitato"
-
-#. Label of a Check field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Disabled"
-msgstr "Disabilitato"
-
-#. Label of a Check field in DocType 'Auto Repeat'
+#. Label of the disabled (Check) field in DocType 'Assignment Rule'
+#. Label of the disabled (Check) field in DocType 'Auto Repeat'
#. Option for the 'Status' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the disabled (Check) field in DocType 'Milestone Tracker'
+#. Label of the disabled (Check) field in DocType 'Address'
+#. Label of the disabled (Check) field in DocType 'Document Naming Rule'
+#. Label of the disabled (Check) field in DocType 'Report'
+#. Label of the disabled (Check) field in DocType 'Role'
+#. Label of the disabled (Check) field in DocType 'Server Script'
+#. Label of the disabled (Check) field in DocType 'Letter Head'
+#. Label of the disabled (Check) field in DocType 'Print Format'
+#. Label of the disabled (Check) field in DocType 'Print Style'
+#. Label of the disabled (Check) field in DocType 'Blogger'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/doctype/user/user_list.js:14
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/public/js/frappe/form/templates/address_list.html:35
+#: frappe/public/js/frappe/model/indicator.js:108
+#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/website/doctype/blogger/blogger.json
msgid "Disabled"
-msgstr "Disabilitato"
+msgstr ""
-#. Label of a Check field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
-msgid "Disabled"
-msgstr "Disabilitato"
-
-#. Label of a Check field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
-msgid "Disabled"
-msgstr "Disabilitato"
-
-#. Label of a Check field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
-msgid "Disabled"
-msgstr "Disabilitato"
-
-#. Label of a Check field in DocType 'Milestone Tracker'
-#: automation/doctype/milestone_tracker/milestone_tracker.json
-msgctxt "Milestone Tracker"
-msgid "Disabled"
-msgstr "Disabilitato"
-
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Disabled"
-msgstr "Disabilitato"
-
-#. Label of a Check field in DocType 'Print Style'
-#: printing/doctype/print_style/print_style.json
-msgctxt "Print Style"
-msgid "Disabled"
-msgstr "Disabilitato"
-
-#. Label of a Check field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Disabled"
-msgstr "Disabilitato"
-
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
-msgid "Disabled"
-msgstr "Disabilitato"
-
-#. Label of a Check field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Disabled"
-msgstr "Disabilitato"
-
-#: email/doctype/email_account/email_account.js:237
+#: frappe/email/doctype/email_account/email_account.js:300
msgid "Disabled Auto Reply"
-msgstr "Risposta automatica disabilitata"
+msgstr ""
-#: public/js/frappe/views/communication.js:30
-#: public/js/frappe/views/dashboard/dashboard_view.js:70
-#: public/js/frappe/views/workspace/workspace.js:502
-#: public/js/frappe/web_form/web_form.js:187
-#: website/doctype/web_form/templates/web_form.html:41
+#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
+#: frappe/public/js/frappe/views/workspace/workspace.js:351
+#: frappe/public/js/frappe/web_form/web_form.js:187
msgid "Discard"
-msgstr "Scartare"
+msgstr ""
-#: public/js/frappe/web_form/web_form.js:184
+#: frappe/website/doctype/web_form/templates/web_form.html:44
+msgctxt "Button in web form"
+msgid "Discard"
+msgstr ""
+
+#: 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:184
msgid "Discard?"
msgstr ""
+#: frappe/desk/form/save.py:75
+msgid "Discarded"
+msgstr ""
+
+#. Description of the 'Suggested Indexes' (Table) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "Disclaimer: These indexes are suggested based on data and queries performed during this recording. These suggestions may or may not help."
+msgstr ""
+
#. Name of a DocType
-#: website/doctype/discussion_reply/discussion_reply.json
+#: frappe/website/doctype/discussion_reply/discussion_reply.json
msgid "Discussion Reply"
msgstr ""
#. Name of a DocType
-#: website/doctype/discussion_topic/discussion_topic.json
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
msgid "Discussion Topic"
msgstr ""
-#: templates/discussions/reply_card.html:16
+#: frappe/public/js/frappe/form/footer/form_timeline.js:638
+#: frappe/templates/discussions/reply_card.html:16
+#: frappe/templates/discussions/reply_section.html:29
msgid "Dismiss"
-msgstr "Respingere"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#: 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 "Visualizza"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Display"
-msgstr "Visualizza"
-
-#. Label of a Code field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the depends_on (Code) field in DocType 'Web Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Display Depends On"
-msgstr "Visualizzazione dipende"
+msgstr ""
-#. Label of a Code field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the depends_on (Code) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Display Depends On (JS)"
msgstr ""
-#. Label of a Check field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:180
+msgid "Divider"
+msgstr ""
+
+#. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Do Not Create New User "
msgstr ""
#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Do not create new user if user with email does not exist in the system"
msgstr ""
-#: public/js/frappe/form/grid.js:1156
+#: frappe/public/js/frappe/form/grid.js:1193
msgid "Do not edit headers which are preset in the template"
-msgstr "Non modificare le intestazioni predefinite nel modello"
-
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:64
-msgid "Do not have permission to access bucket {0}."
msgstr ""
-#: core/doctype/system_settings/system_settings.js:66
+#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
-#: public/js/frappe/form/form.js:977
+#: frappe/public/js/frappe/form/form.js:958
msgid "Do you want to cancel all linked documents?"
-msgstr "Vuoi cancellare tutti i documenti collegati?"
+msgstr ""
-#. Label of a Select field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the webhook_docevent (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Doc Event"
-msgstr "Evento Doc"
+msgstr ""
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the sb_doc_events (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Doc Events"
-msgstr "Doc Eventi"
+msgstr ""
-#. Label of a Select field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#. Label of the doc_status (Select) field in DocType 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Doc Status"
-msgstr "Stato Doc"
+msgstr ""
#. Name of a DocType
-#: core/doctype/docfield/docfield.json
-msgid "DocField"
-msgstr "CampoDoc"
-
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "DocField"
-msgstr "CampoDoc"
+msgstr ""
#. Name of a DocType
-#: core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docperm/docperm.json
msgid "DocPerm"
-msgstr "PermessiDoc"
+msgstr ""
#. Name of a DocType
-#: core/doctype/docshare/docshare.json
+#: frappe/core/doctype/docshare/docshare.json
msgid "DocShare"
-msgstr "DocShare"
+msgstr ""
-#: workflow/doctype/workflow/workflow.js:264
-msgid ""
-"DocStatus of the following states have changed:
{0}
\n"
+#: frappe/workflow/doctype/workflow/workflow.js:264
+msgid "DocStatus of the following states have changed:
{0}
\n"
"\t\t\t\tDo you want to update the docstatus of existing documents in those states?
\n"
"\t\t\t\tThis does not undo any effect bought in by the document's existing docstatus.\n"
"\t\t\t\t"
msgstr ""
+#. Label of the document_type (Link) field in DocType 'Amended Document Naming
+#. Settings'
+#. Label of the doctype_name (Link) field in DocType 'Audit Trail'
#. Name of a DocType
-#: core/doctype/data_export/exporter.py:26 core/doctype/doctype/doctype.json
-#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:15
-#: website/doctype/website_slideshow/website_slideshow.js:18
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Amended Document Naming Settings'
-#: core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
-msgctxt "Amended Document Naming Settings"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link in the Build Workspace
-#. Label of a shortcut in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "DocType"
-msgid "DocType"
-msgstr "DocType"
-
#. Group in Module Def's connections
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Permission Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
-msgid "DocType"
-msgstr "Doctype"
-
-#. Label of a Link field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "DocType"
-msgstr "DocType"
-
+#. Label of the ref_doctype (Link) field in DocType 'Permission Inspector'
+#. Label of the ref_doctype (Link) field in DocType 'Version'
+#. Label of a shortcut in the Build Workspace
+#. Label of the dt (Link) field in DocType 'Client Script'
+#. Label of the dt (Link) field in DocType 'Custom Field'
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
-#. Label of a Link field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Version'
-#: core/doctype/version/version.json
-msgctxt "Version"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "DocType"
-msgstr "DocType"
-
+#. Label of the doc_type (Link) field in DocType 'Property Setter'
+#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
-msgid "DocType"
-msgstr "DocType"
-
-#. Label of a Link field in DocType 'Workspace Quick List'
-#: desk/doctype/workspace_quick_list/workspace_quick_list.json
-msgctxt "Workspace Quick List"
-msgid "DocType"
-msgstr "DocType"
-
+#. Label of the document_type (Link) field in DocType 'Workspace Quick List'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#. Label of the webhook_doctype (Link) field in DocType 'Webhook'
+#. Label of the doc_type (Link) field in DocType 'Print Format'
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/data_export/exporter.py:26
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/core/doctype/version/version.json
+#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:15
+#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:38
+#: frappe/core/workspace/build/build.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:164
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:18
msgid "DocType"
-msgstr "DocType"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1528
+#: frappe/core/doctype/doctype/doctype.py:1577
msgid "DocType {0} provided for the field {1} must have atleast one Link field"
-msgstr "DocType {0} fornito per il campo {1} deve avere almeno un campo Link"
+msgstr ""
#. Name of a DocType
-#: core/doctype/doctype_action/doctype_action.json
-msgid "DocType Action"
-msgstr "DocType Action"
-
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "DocType Action"
-msgstr "DocType Action"
+msgstr ""
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
-#. Label of a Select field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the doctype_event (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "DocType Event"
-msgstr "Evento DocType"
+msgstr ""
#. Name of a DocType
-#: custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
msgid "DocType Layout"
msgstr ""
#. Name of a DocType
-#: custom/doctype/doctype_layout_field/doctype_layout_field.json
+#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
msgid "DocType Layout Field"
msgstr ""
#. Name of a DocType
-#: core/doctype/doctype_link/doctype_link.json
-msgid "DocType Link"
-msgstr "DocType Link"
-
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/core/doctype/doctype_link/doctype_link.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "DocType Link"
-msgstr "DocType Link"
-
-#: core/doctype/doctype/doctype_list.js:10
-msgid "DocType Name"
msgstr ""
#. Name of a DocType
-#: core/doctype/doctype_state/doctype_state.json
-msgid "DocType State"
-msgstr ""
-
#. Option for the 'Applied On' (Select) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "DocType State"
msgstr ""
-#. Label of a Select field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#. Label of the doc_view (Select) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
-msgstr "DocType View"
+msgstr ""
-#: core/doctype/doctype/doctype.py:646
+#: frappe/core/doctype/doctype/doctype.py:656
msgid "DocType can not be merged"
-msgstr "DocType non può essere fusa"
+msgstr ""
-#: core/doctype/doctype/doctype.py:640
+#: frappe/core/doctype/doctype/doctype.py:650
msgid "DocType can only be renamed by Administrator"
-msgstr "DocType può essere rinominato solo dall'amministratore"
+msgstr ""
-#: integrations/doctype/webhook/webhook.py:79
+#. Description of a DocType
+#: frappe/core/doctype/doctype/doctype.json
+msgid "DocType is a Table / Form in the application."
+msgstr ""
+
+#: frappe/integrations/doctype/webhook/webhook.py:79
msgid "DocType must be Submittable for the selected Doc Event"
-msgstr "DocType deve essere sottomessa per l'evento Doc selezionato"
+msgstr ""
-#: client.py:421
+#: frappe/client.py:403
msgid "DocType must be a string"
msgstr ""
-#: public/js/form_builder/store.js:149
+#: frappe/public/js/form_builder/store.js:154
msgid "DocType must have atleast one field"
msgstr ""
-#: core/doctype/log_settings/log_settings.py:57
+#: frappe/core/doctype/log_settings/log_settings.py:57
msgid "DocType not supported by Log Settings."
msgstr ""
#. Description of the 'Document Type' (Link) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "DocType on which this Workflow is applicable."
-msgstr "DocType su cui questo flusso di lavoro è applicabile"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_settings.js:4
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:4
msgid "DocType required"
msgstr ""
-#: modules/utils.py:161
+#: frappe/modules/utils.py:175
msgid "DocType {0} does not exist."
msgstr ""
-#: modules/utils.py:224
+#: frappe/modules/utils.py:238
msgid "DocType {} not found"
msgstr ""
-#: core/doctype/doctype/doctype.py:1009
+#: frappe/core/doctype/doctype/doctype.py:1028
msgid "DocType's name should not start or end with whitespace"
-msgstr "Il nome di DocType non deve iniziare o terminare con uno spazio vuoto"
-
-#: core/doctype/doctype/doctype.js:70
-msgid "DocTypes can not be modified, please use {0} instead"
msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:645
-msgid "Doctype"
-msgstr "Doctype"
+#: frappe/core/doctype/doctype/doctype.js:67
+msgid "DocTypes cannot be modified, please use {0} instead"
+msgstr ""
-#. Label of a Link field in DocType 'Document Follow'
-#: email/doctype/document_follow/document_follow.json
-msgctxt "Document Follow"
+#. Label of the ref_doctype (Link) field in DocType 'Document Follow'
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
msgid "Doctype"
-msgstr "Doctype"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1004
+#: frappe/core/doctype/doctype/doctype.py:1022
msgid "Doctype name is limited to {0} characters ({1})"
msgstr ""
-#: public/js/frappe/list/bulk_operations.js:3
+#: frappe/public/js/frappe/list/bulk_operations.js:3
msgid "Doctype required"
-msgstr "Doctype richiesto"
-
-#: public/js/frappe/views/workspace/workspace.js:1303
-msgid "Doctype with same route already exist. Please choose different title."
msgstr ""
-#. Label of a Dynamic Link field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
-msgid "Document"
-msgstr "Documento"
-
+#. 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'
-#: core/doctype/doctype/doctype.json
-msgctxt "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 "Documento"
+msgstr ""
-#. Label of a Data field in DocType 'Milestone'
-#: automation/doctype/milestone/milestone.json
-msgctxt "Milestone"
-msgid "Document"
-msgstr "Documento"
-
-#. Label of a Link field in DocType 'Notification Subscribed Document'
-#: desk/doctype/notification_subscribed_document/notification_subscribed_document.json
-msgctxt "Notification Subscribed Document"
-msgid "Document"
-msgstr "Documento"
-
-#. Label of a Dynamic Link field in DocType 'Permission Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
-msgid "Document"
-msgstr "Documento"
-
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the actions (Table) field in DocType 'DocType'
+#. Label of the document_actions_section (Section Break) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Document Actions"
-msgstr "Azioni sui documenti"
+msgstr ""
+#. Label of the document_follow_notifications_section (Section Break) field in
+#. DocType 'User'
#. Name of a DocType
-#: email/doctype/document_follow/document_follow.json
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/document_follow/document_follow.json
msgid "Document Follow"
-msgstr "Document Follow"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Document Follow"
-msgstr "Document Follow"
-
-#: desk/form/document_follow.py:84
+#: frappe/desk/form/document_follow.py:94
msgid "Document Follow Notification"
-msgstr "Documento Segui notifica"
+msgstr ""
-#. Label of a Data field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#. Label of the document_name (Data) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Document Link"
-msgstr "Link al documento"
+msgstr ""
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the section_break_12 (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Document Linking"
msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the links (Table) field in DocType 'DocType'
+#. Label of the document_links_section (Section Break) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Document Links"
-msgstr "Collegamenti al documento"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1162
+#: frappe/core/doctype/doctype/doctype.py:1211
msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
msgstr ""
-#: core/doctype/doctype/doctype.py:1182
+#: frappe/core/doctype/doctype/doctype.py:1231
msgid "Document Links Row #{0}: Invalid doctype or fieldname."
msgstr ""
-#: core/doctype/doctype/doctype.py:1145
+#: frappe/core/doctype/doctype/doctype.py:1194
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
msgstr ""
-#: core/doctype/doctype/doctype.py:1151
+#: frappe/core/doctype/doctype/doctype.py:1200
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:36
-#: public/js/frappe/form/form_tour.js:58
+#. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder'
+#. Label of the share_name (Dynamic Link) field in DocType 'DocShare'
+#. Label of the document_name (Data) field in DocType 'Transaction Log'
+#. Label of the docname (Data) field in DocType 'Version'
+#. Label of the document_name (Dynamic Link) field in DocType 'Tag Link'
+#. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow'
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:36
+#: frappe/core/doctype/version/version.json
+#: frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/public/js/frappe/form/form_tour.js:62
msgid "Document Name"
-msgstr "Documento Nome"
+msgstr ""
-#. Label of a Dynamic Link field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "Document Name"
-msgstr "Documento Nome"
-
-#. Label of a Dynamic Link field in DocType 'Document Follow'
-#: email/doctype/document_follow/document_follow.json
-msgctxt "Document Follow"
-msgid "Document Name"
-msgstr "Documento Nome"
-
-#. Label of a Dynamic Link field in DocType 'Reminder'
-#: automation/doctype/reminder/reminder.json
-msgctxt "Reminder"
-msgid "Document Name"
-msgstr "Documento Nome"
-
-#. Label of a Dynamic Link field in DocType 'Tag Link'
-#: desk/doctype/tag_link/tag_link.json
-msgctxt "Tag Link"
-msgid "Document Name"
-msgstr "Documento Nome"
-
-#. Label of a Data field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Document Name"
-msgstr "Documento Nome"
-
-#. Label of a Data field in DocType 'Version'
-#: core/doctype/version/version.json
-msgctxt "Version"
-msgid "Document Name"
-msgstr "Documento Nome"
-
-#: client.py:424
+#: frappe/client.py:406
msgid "Document Name must be a string"
msgstr ""
#. Name of a DocType
-#: core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Document Naming Rule"
-msgstr "Regola di denominazione dei documenti"
+msgstr ""
#. Name of a DocType
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
msgid "Document Naming Rule Condition"
-msgstr "Condizione regola di denominazione documento"
+msgstr ""
#. Name of a DocType
-#: core/doctype/document_naming_settings/document_naming_settings.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Document Naming Settings"
msgstr ""
-#: model/document.py:1519
+#: frappe/model/document.py:476
msgid "Document Queued"
-msgstr "documento in coda"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document_list.js:38
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:38
msgid "Document Restoration Summary"
-msgstr "Riepilogo del ripristino dei documenti"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document.py:67
+#: frappe/core/doctype/deleted_document/deleted_document.py:68
msgid "Document Restored"
-msgstr "Documento ripristinato"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:359
-#: public/js/frappe/widgets/onboarding_widget.js:401
-#: public/js/frappe/widgets/onboarding_widget.js:420
-#: public/js/frappe/widgets/onboarding_widget.js:439
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:354
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:396
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:415
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:434
msgid "Document Saved"
msgstr ""
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#. Label of the enable_email_share (Check) field in DocType 'Notification
+#. Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Document Share"
-msgstr "Condividi documento"
+msgstr ""
#. Name of a DocType
-#: core/doctype/document_share_key/document_share_key.json
+#: frappe/core/doctype/document_share_key/document_share_key.json
msgid "Document Share Key"
msgstr ""
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the document_share_key_expiry (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Document Share Key Expiry (in Days)"
msgstr ""
#. Name of a report
#. Label of a Link in the Users Workspace
-#: core/report/document_share_report/document_share_report.json
-#: core/workspace/users/users.json
+#: frappe/core/report/document_share_report/document_share_report.json
+#: frappe/core/workspace/users/users.json
msgid "Document Share Report"
-msgstr "Report \"Condividi Documento\""
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the states (Table) field in DocType 'DocType'
+#. Label of the document_states_section (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the states (Table) field in DocType 'Workflow'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document States"
-msgstr "Documento Uniti"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Document States"
-msgstr "Documento Uniti"
-
-#. Label of a Table field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
-msgid "Document States"
-msgstr "Documento Uniti"
-
-#: model/__init__.py:152 model/meta.py:47 public/js/frappe/model/meta.js:199
-#: public/js/frappe/model/model.js:127
+#: frappe/model/meta.py:54 frappe/public/js/frappe/model/meta.js:202
+#: frappe/public/js/frappe/model/model.js:137
msgid "Document Status"
-msgstr "Stato Documento"
+msgstr ""
-#. Label of a Link field in DocType 'Tag Link'
-#: desk/doctype/tag_link/tag_link.json
-msgctxt "Tag Link"
+#. Label of the tag (Link) field in DocType 'Tag Link'
+#: frappe/desk/doctype/tag_link/tag_link.json
msgid "Document Tag"
-msgstr "Tag documento"
+msgstr ""
-#. Label of a Data field in DocType 'Tag Link'
-#: desk/doctype/tag_link/tag_link.json
-msgctxt "Tag Link"
+#. Label of the title (Data) field in DocType 'Tag Link'
+#: frappe/desk/doctype/tag_link/tag_link.json
msgid "Document Title"
-msgstr "Titolo del documento"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:26
-#: core/page/permission_manager/permission_manager.js:49
-#: core/page/permission_manager/permission_manager.js:211
-#: core/page/permission_manager/permission_manager.js:432
-msgid "Document Type"
-msgstr "tipo di documento"
-
-#. Label of a Link field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Document Type"
-msgstr "tipo di documento"
-
-#. Label of a Link field in DocType 'Bulk Update'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
-msgid "Document Type"
-msgstr "tipo di documento"
-
-#. Label of a Link field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Document Type"
-msgstr "tipo di documento"
-
-#. Label of a Link field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Document Type"
-msgstr "tipo di documento"
-
-#. Label of a Link field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "Document Type"
-msgstr "tipo di documento"
-
-#. Label of a Link field in DocType 'DocType Layout'
-#: custom/doctype/doctype_layout/doctype_layout.json
-msgctxt "DocType Layout"
-msgid "Document Type"
-msgstr "tipo di documento"
-
-#. Label of a Link field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
-msgid "Document Type"
-msgstr "tipo di documento"
-
-#. Label of a Link field in DocType 'Global Search DocType'
-#: desk/doctype/global_search_doctype/global_search_doctype.json
-msgctxt "Global Search DocType"
-msgid "Document Type"
-msgstr "tipo di documento"
-
-#. Label of a Link field in DocType 'Milestone'
-#: automation/doctype/milestone/milestone.json
-msgctxt "Milestone"
-msgid "Document Type"
-msgstr "tipo di documento"
-
-#. Label of a Link field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Document Type"
-msgstr "tipo di documento"
-
-#. Label of a Link field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "Document Type"
-msgstr "tipo di documento"
-
-#. Label of a Link field in DocType 'Number Card'
+#. Label of the document_type (Link) field in DocType 'Assignment Rule'
+#. Label of the reference_type (Link) field in DocType 'Milestone'
+#. Label of the reminder_doctype (Link) field in DocType 'Reminder'
+#. Label of the reference_doctype (Link) field in DocType 'Data Import'
+#. Label of the share_doctype (Link) field in DocType 'DocShare'
+#. Label of the document_type (Link) field in DocType 'Document Naming Rule'
+#. Label of the ref_doctype (Link) field in DocType 'Session Default'
+#. Label of the document_type (Link) field in DocType 'User Document Type'
+#. Label of the document_type (Link) field in DocType 'User Select Document
+#. Type'
+#. Label of the document_type (Link) field in DocType 'DocType Layout'
+#. Label of the document_type (Link) field in DocType 'Bulk Update'
+#. Label of the document_type (Link) field in DocType 'Dashboard Chart'
+#. Label of the document_type (Link) field in DocType 'Global Search DocType'
+#. Label of the document_type (Link) field in DocType 'Notification Log'
+#. Label of the document_type (Link) field in DocType 'Number Card'
#. Option for the 'Type' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#. Label of the document_type (Link) field in DocType 'Tag Link'
+#. Label of the document_type (Link) field in DocType 'Notification'
+#. Label of the document_type (Link) field in DocType 'Print Format Field
+#. Template'
+#. Label of the document_type (Data) field in DocType 'Personal Data Deletion
+#. Step'
+#. Label of the document_type (Link) field in DocType 'Workflow'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/session_default/session_default.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:26
+#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
+#: frappe/core/page/permission_manager/permission_manager.js:49
+#: frappe/core/page/permission_manager/permission_manager.js:218
+#: frappe/core/page/permission_manager/permission_manager.js:449
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Document Type"
-msgstr "tipo di documento"
+msgstr ""
-#. Label of a Data field in DocType 'Personal Data Deletion Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
-msgid "Document Type"
-msgstr "tipo di documento"
-
-#. Label of a Link field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
-msgid "Document Type"
-msgstr "tipo di documento"
-
-#. Label of a Link field in DocType 'Reminder'
-#: automation/doctype/reminder/reminder.json
-msgctxt "Reminder"
-msgid "Document Type"
-msgstr "tipo di documento"
-
-#. Label of a Link field in DocType 'Session Default'
-#: core/doctype/session_default/session_default.json
-msgctxt "Session Default"
-msgid "Document Type"
-msgstr "tipo di documento"
-
-#. Label of a Link field in DocType 'Tag Link'
-#: desk/doctype/tag_link/tag_link.json
-msgctxt "Tag Link"
-msgid "Document Type"
-msgstr "tipo di documento"
-
-#. Label of a Link field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Document Type"
-msgstr "tipo di documento"
-
-#. Label of a Link field in DocType 'User Select Document Type'
-#: core/doctype/user_select_document_type/user_select_document_type.json
-msgctxt "User Select Document Type"
-msgid "Document Type"
-msgstr "tipo di documento"
-
-#. Label of a Link field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
-msgid "Document Type"
-msgstr "tipo di documento"
-
-#: desk/doctype/number_card/number_card.py:55
+#: frappe/desk/doctype/number_card/number_card.py:59
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: permissions.py:149
+#: frappe/permissions.py:149
msgid "Document Type is not importable"
-msgstr "Il tipo di documento non è importabile"
+msgstr ""
-#: permissions.py:145
+#: frappe/permissions.py:145
msgid "Document Type is not submittable"
-msgstr "Il tipo di documento non è sottomettibile"
+msgstr ""
-#. Label of a Link field in DocType 'Milestone Tracker'
-#: automation/doctype/milestone_tracker/milestone_tracker.json
-msgctxt "Milestone Tracker"
+#. Label of the document_type (Link) field in DocType 'Milestone Tracker'
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Document Type to Track"
-msgstr "Tipo di documento da tracciare"
+msgstr ""
-#: desk/doctype/global_search_settings/global_search_settings.py:39
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:40
msgid "Document Type {0} has been repeated."
-msgstr "Il tipo di documento {0} è stato ripetuto."
+msgstr ""
-#. Label of a Table field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the user_doctypes (Table) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "Document Types"
-msgstr "Tipi di documenti"
+msgstr ""
-#. Label of a Table field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the select_doctypes (Table) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "Document Types (Select Permissions Only)"
msgstr ""
-#. Label of a Section Break field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the section_break_2 (Section Break) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "Document Types and Permissions"
msgstr ""
-#: core/doctype/submission_queue/submission_queue.py:162
+#: frappe/core/doctype/submission_queue/submission_queue.py:163
+#: frappe/model/document.py:1942
msgid "Document Unlocked"
msgstr ""
-#: public/js/frappe/list/list_view.js:1054
+#: frappe/desk/form/document_follow.py:56
+msgid "Document follow is not enabled for this user."
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1157
msgid "Document has been cancelled"
msgstr ""
-#: public/js/frappe/list/list_view.js:1053
+#: frappe/public/js/frappe/list/list_view.js:1156
msgid "Document has been submitted"
msgstr ""
-#: public/js/frappe/list/list_view.js:1052
+#: frappe/public/js/frappe/list/list_view.js:1155
msgid "Document is in draft state"
msgstr ""
-#: core/doctype/communication/communication.js:182
+#: frappe/public/js/frappe/form/workflow.js:45
+msgid "Document is only editable by users with role"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:182
msgid "Document not Relinked"
msgstr ""
-#: model/rename_doc.py:230 public/js/frappe/form/toolbar.js:145
+#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:155
msgid "Document renamed from {0} to {1}"
-msgstr "Documento rinominato da {0} a {1}"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:154
+#: frappe/public/js/frappe/form/toolbar.js:164
msgid "Document renaming from {0} to {1} has been queued"
msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.py:397
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:397
msgid "Document type is required to create a dashboard chart"
-msgstr "Il tipo di documento è necessario per creare un grafico dashboard"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document.py:44
+#: frappe/core/doctype/deleted_document/deleted_document.py:45
msgid "Document {0} Already Restored"
-msgstr "Documento {0} già ripristinato"
+msgstr ""
-#: workflow/doctype/workflow_action/workflow_action.py:203
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:203
msgid "Document {0} has been set to state {1} by {2}"
-msgstr "Il documento {0} è stato impostato per indicare {1} per {2}"
+msgstr ""
-#: client.py:443
+#: frappe/client.py:430
msgid "Document {0} {1} does not exist"
msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the documentation (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
-msgstr "Link alla documentazione"
+msgstr ""
-#. Label of a Data field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the documentation_url (Data) field in DocType 'DocField'
+#. Label of the documentation_url (Data) field in DocType 'Module Onboarding'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Documentation URL"
-msgstr "URL della documentazione"
+msgstr ""
-#. Label of a Data field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Documentation URL"
-msgstr "URL della documentazione"
+#: frappe/public/js/frappe/form/templates/form_dashboard.html:17
+msgid "Documents"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document_list.js:25
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:25
msgid "Documents restored successfully"
-msgstr "Documenti ripristinati con successo"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document_list.js:33
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:33
msgid "Documents that failed to restore"
-msgstr "Documenti che non sono stati ripristinati"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document_list.js:29
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:29
msgid "Documents that were already restored"
-msgstr "Documenti già restaurati"
+msgstr ""
#. Name of a DocType
-#: core/doctype/domain/domain.json
+#. Label of the domain (Data) field in DocType 'Domain'
+#. Label of the domain (Link) field in DocType 'Has Domain'
+#. Label of the domain (Link) field in DocType 'Email Account'
+#: frappe/core/doctype/domain/domain.json
+#: frappe/core/doctype/has_domain/has_domain.json
+#: frappe/email/doctype/email_account/email_account.json
msgid "Domain"
-msgstr "Dominio"
+msgstr ""
-#. Label of a Data field in DocType 'Domain'
-#: core/doctype/domain/domain.json
-msgctxt "Domain"
-msgid "Domain"
-msgstr "Dominio"
-
-#. Label of a Link field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Domain"
-msgstr "Dominio"
-
-#. Label of a Link field in DocType 'Has Domain'
-#: core/doctype/has_domain/has_domain.json
-msgctxt "Has Domain"
-msgid "Domain"
-msgstr "Dominio"
-
-#. Label of a Data field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#. Label of the domain_name (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Domain Name"
msgstr ""
#. Name of a DocType
-#: core/doctype/domain_settings/domain_settings.json
+#: frappe/core/doctype/domain_settings/domain_settings.json
msgid "Domain Settings"
-msgstr "Impostazioni dominio"
+msgstr ""
-#. Label of a HTML field in DocType 'Domain Settings'
-#: core/doctype/domain_settings/domain_settings.json
-msgctxt "Domain Settings"
+#. Label of the domains_html (HTML) field in DocType 'Domain Settings'
+#: frappe/core/doctype/domain_settings/domain_settings.json
msgid "Domains HTML"
-msgstr "Dominio HTML"
+msgstr ""
#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom
#. Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
-msgstr "Non tag HTML Codifica HTML come <script> o solo caratteri come <o>, in quanto potrebbero essere utilizzate intenzionalmente in questo campo"
+msgstr ""
-#: public/js/frappe/data_import/import_preview.js:268
+#: frappe/public/js/frappe/data_import/import_preview.js:272
msgid "Don't Import"
-msgstr "Non importare"
+msgstr ""
-#. Label of a Check field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the override_status (Check) field in DocType 'Workflow'
+#. Label of the avoid_status_override (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow/workflow.json
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Don't Override Status"
-msgstr "Non override Stato"
+msgstr ""
-#. Label of a Check field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
-msgid "Don't Override Status"
-msgstr "Non override Stato"
-
-#. Label of a Check field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the mute_emails (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Don't Send Emails"
-msgstr "Non inviare e-mail"
-
-#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize
-#. Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
msgstr ""
#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize
+#. Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
msgstr ""
-#: www/login.html:119 www/login.html:135 www/update-password.html:34
+#: frappe/www/login.html:139 frappe/www/login.html:155
+#: frappe/www/update-password.html:57
msgid "Don't have an account?"
msgstr ""
-#: public/js/frappe/ui/messages.js:233
-#: public/js/onboarding_tours/onboarding_tours.js:17
+#: frappe/public/js/frappe/form/form_tour.js:16
+#: frappe/public/js/frappe/ui/messages.js:238
+#: frappe/public/js/onboarding_tours/onboarding_tours.js:17
+#: frappe/public/js/print_format_builder/HTMLEditor.vue:5
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52
msgid "Done"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Donut"
-msgstr "Ciambella"
+msgstr ""
-#: core/doctype/file/file.js:5
-#: email/doctype/auto_email_report/auto_email_report.js:8
+#: frappe/public/js/form_builder/components/EditableInput.vue:43
+msgid "Double click to edit label"
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:15
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
+#: frappe/public/js/frappe/form/grid.js:66
msgid "Download"
-msgstr "Scarica"
+msgstr ""
-#: public/js/frappe/views/reports/report_utils.js:229
+#: frappe/public/js/frappe/views/reports/report_utils.js:237
msgctxt "Export report"
msgid "Download"
-msgstr "Scarica"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json desk/page/backups/backups.js:4
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/page/backups/backups.js:4
msgid "Download Backups"
-msgstr "Scarica Backup"
+msgstr ""
-#: templates/emails/download_data.html:6
+#: frappe/templates/emails/download_data.html:6
msgid "Download Data"
-msgstr "Scarica dati"
+msgstr ""
-#: desk/page/backups/backups.js:12
+#: frappe/desk/page/backups/backups.js:14
msgid "Download Files Backup"
-msgstr "Scarica File Backup"
+msgstr ""
-#: templates/emails/download_data.html:9
+#: frappe/templates/emails/download_data.html:9
msgid "Download Link"
-msgstr "Link per scaricare"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:764
+#: frappe/public/js/frappe/list/bulk_operations.js:134
+msgid "Download PDF"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:830
msgid "Download Report"
-msgstr "Scarica rapporto"
+msgstr ""
-#. Label of a Button field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the download_template (Button) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Download Template"
-msgstr "Scarica Modello"
+msgstr ""
-#: website/doctype/personal_data_download_request/personal_data_download_request.py:60
-#: website/doctype/personal_data_download_request/personal_data_download_request.py:68
-#: website/doctype/personal_data_download_request/test_personal_data_download_request.py:50
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:61
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:69
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
msgid "Download Your Data"
-msgstr "Scarica i tuoi dati"
+msgstr ""
-#: public/js/frappe/model/indicator.js:73
-#: public/js/frappe/ui/filters/filter.js:493
+#: frappe/core/doctype/prepared_report/prepared_report.js:49
+msgid "Download as CSV"
+msgstr ""
+
+#: frappe/contacts/doctype/contact/contact.js:98
+msgid "Download vCard"
+msgstr ""
+
+#: frappe/contacts/doctype/contact/contact_list.js:4
+msgid "Download vCards"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:46
+msgid "Dr"
+msgstr ""
+
+#: frappe/public/js/frappe/model/indicator.js:73
+#: frappe/public/js/frappe/ui/filters/filter.js:538
msgid "Draft"
-msgstr "Bozza"
+msgstr ""
-#: public/js/frappe/views/workspace/blocks/header.js:46
-#: public/js/frappe/views/workspace/blocks/paragraph.js:136
-#: public/js/frappe/views/workspace/blocks/spacer.js:44
-#: public/js/frappe/views/workspace/workspace.js:565
-#: public/js/frappe/widgets/base_widget.js:33
+#: frappe/public/js/frappe/views/workspace/blocks/header.js:46
+#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:136
+#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:44
+#: frappe/public/js/frappe/widgets/base_widget.js:33
msgid "Drag"
msgstr ""
-#. Label of a Password field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Dropbox Access Token"
-msgstr "Token di accesso Dropbox"
-
-#. Label of a Password field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Dropbox Refresh Token"
+#: frappe/public/js/form_builder/components/Tabs.vue:189
+msgid "Drag & Drop a section here from another tab"
msgstr ""
-#. Name of a DocType
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Settings"
-msgstr "Impostazioni Dropbox"
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:14
+msgid "Drag and drop files here or upload from"
+msgstr ""
-#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Dropbox Settings"
-msgid "Dropbox Settings"
-msgstr "Impostazioni Dropbox"
+#: frappe/public/js/print_format_builder/ConfigureColumns.vue:76
+msgid "Drag columns to set order. Column width is set in percentage. The total width should not be more than 100. Columns marked in red will be removed."
+msgstr ""
-#: integrations/doctype/dropbox_settings/dropbox_settings.py:348
-msgid "Dropbox Setup"
-msgstr "Impostazione Dropbox"
+#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:3
+msgid "Drag elements from the sidebar to add. Drag them back to trash."
+msgstr ""
-#. Label of a Section Break field in DocType 'Navbar Settings'
-#: core/doctype/navbar_settings/navbar_settings.json
-msgctxt "Navbar Settings"
+#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:296
+msgid "Drag to add state"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172
+msgid "Drop files here"
+msgstr ""
+
+#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
+#. Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Dropdowns"
-msgstr "Menu a discesa"
+msgstr ""
-#. Label of a Date field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#. Label of the date (Date) field in DocType 'ToDo'
+#: frappe/desk/doctype/todo/todo.json
msgid "Due Date"
-msgstr "Data di scadenza"
+msgstr ""
-#. Label of a Select field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the due_date_based_on (Select) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Due Date Based On"
-msgstr "Scadenza basata su"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:377
-#: public/js/frappe/views/workspace/workspace.js:808
-#: public/js/frappe/views/workspace/workspace.js:975
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+#: frappe/public/js/frappe/form/toolbar.js:419
msgid "Duplicate"
-msgstr "Duplica"
+msgstr ""
-#: printing/doctype/print_format_field_template/print_format_field_template.py:52
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:53
msgid "Duplicate Entry"
msgstr ""
-#: public/js/frappe/list/list_filter.js:137
+#: frappe/public/js/frappe/list/list_filter.js:144
msgid "Duplicate Filter Name"
-msgstr "Nome filtro duplicato"
-
-#: model/base_document.py:563 model/rename_doc.py:113
-msgid "Duplicate Name"
-msgstr "Nome duplicato"
-
-#: public/js/frappe/views/workspace/workspace.js:547
-#: public/js/frappe/views/workspace/workspace.js:809
-msgid "Duplicate Workspace"
msgstr ""
-#: public/js/frappe/form/form.js:208
+#: frappe/model/base_document.py:663 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 ""
-#: public/js/frappe/views/workspace/workspace.js:990
-msgid "Duplicate of {0} named as {1} is created successfully"
+#: frappe/public/js/form_builder/components/Field.vue:245
+msgid "Duplicate field"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Duration"
-msgstr "Durata"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Duration"
-msgstr "Durata"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Duration"
-msgstr "Durata"
-
-#. Label of a Float field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "Duration"
-msgstr "Durata"
-
-#. Label of a Float field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
-msgid "Duration"
-msgstr "Durata"
-
+#. Label of the duration (Float) field in DocType 'Recorder'
+#. Label of the duration (Float) field in DocType 'Recorder Query'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Duration"
-msgstr "Durata"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/core/doctype/recorder_query/recorder_query.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Duration"
-msgstr "Durata"
-
-#. Label of a Section Break field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Dynamic Filters"
-msgstr "Filtri dinamici"
-
-#. Label of a Code field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Dynamic Filters JSON"
-msgstr "Filtri dinamici JSON"
-
-#. Label of a Code field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Dynamic Filters JSON"
-msgstr "Filtri dinamici JSON"
-
-#. Label of a Section Break field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Dynamic Filters Section"
-msgstr "Sezione filtri dinamici"
-
-#. Name of a DocType
-#: core/doctype/dynamic_link/dynamic_link.json
-msgid "Dynamic Link"
-msgstr "Dynamic Link"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Dynamic Link"
-msgstr "Dynamic Link"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Dynamic Link"
-msgstr "Dynamic Link"
-
-#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Dynamic Link"
-msgstr "Dynamic Link"
-
-#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Dynamic Link"
-msgstr "Dynamic Link"
-
-#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Dynamic Link"
-msgstr "Dynamic Link"
-
-#. Label of a Section Break field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Dynamic Report Filters"
-msgstr "Filtri di report dinamici"
-
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Dynamic Route"
-msgstr "Percorso dinamico"
-
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Dynamic Template"
-msgstr "Modello dinamico"
-
-#. Description of the Onboarding Step 'Setup Naming Series'
-#: custom/onboarding_step/naming_series/naming_series.json
-msgid "Each document created in ERPNext can have a unique ID generated for it, using a prefix defined for it. Though each document has some prefix pre-configured, you can further customize it using tools like Naming Series Tool and Document Naming Rule.\n"
msgstr ""
-#: core/page/dashboard_view/dashboard_view.js:169
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:46
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:85
-#: public/js/frappe/form/controls/markdown_editor.js:31
-#: public/js/frappe/form/footer/form_timeline.js:638
-#: public/js/frappe/form/toolbar.js:672
-#: public/js/frappe/views/reports/query_report.js:809
-#: public/js/frappe/views/reports/query_report.js:1617
-#: public/js/frappe/views/workspace/workspace.js:448
-#: public/js/frappe/views/workspace/workspace.js:802
-#: public/js/frappe/widgets/base_widget.js:64
-#: public/js/frappe/widgets/chart_widget.js:298
-#: public/js/frappe/widgets/number_card_widget.js:314
-#: templates/discussions/reply_card.html:29
-#: workflow/page/workflow_builder/workflow_builder.js:46
-#: workflow/page/workflow_builder/workflow_builder.js:84
-msgid "Edit"
-msgstr "modificare"
+#. Option for the 'Row Format' (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Dynamic"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1943
-msgctxt "Button in list view actions menu"
-msgid "Edit"
-msgstr "modificare"
+#. 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'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/page/dashboard_view/dashboard_view.js:169
+#: frappe/printing/page/print_format_builder/print_format_builder_start.html:8
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85
+#: frappe/public/js/frappe/form/controls/markdown_editor.js:31
+#: frappe/public/js/frappe/form/footer/form_timeline.js:669
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
+#: frappe/public/js/frappe/form/templates/address_list.html:13
+#: frappe/public/js/frappe/form/templates/contact_list.html:13
+#: frappe/public/js/frappe/form/toolbar.js:745
+#: frappe/public/js/frappe/views/reports/query_report.js:878
+#: frappe/public/js/frappe/views/reports/query_report.js:1724
+#: frappe/public/js/frappe/views/workspace/workspace.js:64
+#: frappe/public/js/frappe/widgets/base_widget.js:64
+#: frappe/public/js/frappe/widgets/chart_widget.js:299
+#: frappe/public/js/frappe/widgets/number_card_widget.js:347
+#: frappe/templates/discussions/reply_card.html:29
+#: frappe/templates/discussions/reply_section.html:29
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:84
msgid "Edit"
-msgstr "modificare"
+msgstr ""
-#: templates/emails/auto_email_report.html:63
+#: frappe/public/js/frappe/list/list_view.js:2113
+msgctxt "Button in list view actions menu"
+msgid "Edit"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:23
+msgctxt "Button in web form"
+msgid "Edit"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:345
+msgctxt "Edit grid row"
+msgid "Edit"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:66
+msgid "Edit Address in Form"
+msgstr ""
+
+#: frappe/templates/emails/auto_email_report.html:63
msgid "Edit Auto Email Report Settings"
-msgstr "Modifica impostazioni di report di posta elettronica automatica"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:719
+#: frappe/public/js/frappe/widgets/widget_dialog.js:38
+msgid "Edit Chart"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:50
+msgid "Edit Custom Block"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:727
msgid "Edit Custom HTML"
-msgstr "Modifica HTML personalizzato"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:546
+#: frappe/public/js/frappe/form/toolbar.js:616
msgid "Edit DocType"
-msgstr "Modifica DocType"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1691
+#: frappe/public/js/frappe/list/list_view.js:1829
msgctxt "Button in list view menu"
msgid "Edit DocType"
-msgstr "Modifica DocType"
+msgstr ""
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:42
-#: workflow/page/workflow_builder/workflow_builder.js:42
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:42
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:42
msgid "Edit Existing"
msgstr ""
-#: printing/doctype/print_format/print_format.js:28
-msgid "Edit Format"
-msgstr "Modifica Formato"
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:55
+msgid "Edit Filters"
+msgstr ""
-#: public/js/frappe/form/quick_entry.js:275
+#: frappe/public/js/print_format_builder/PrintFormat.vue:29
+msgid "Edit Footer"
+msgstr ""
+
+#: frappe/printing/doctype/print_format/print_format.js:28
+msgid "Edit Format"
+msgstr ""
+
+#: frappe/public/js/frappe/form/quick_entry.js:326
msgid "Edit Full Form"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:602
-msgid "Edit Heading"
-msgstr "Modifica Intestazione"
+#: 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 ""
-#: public/js/print_format_builder/print_format_builder.bundle.js:24
+#: 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 ""
-#: desk/page/user_profile/user_profile_controller.js:273 www/me.html:27
+#: frappe/www/me.html:38
msgid "Edit Profile"
-msgstr "Modifica Profilo"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:173
+#: frappe/printing/page/print_format_builder/print_format_builder.js:173
msgid "Edit Properties"
-msgstr "Modifica Proprietà"
-
-#: website/doctype/web_form/templates/web_form.html:20
-msgid "Edit Response"
msgstr ""
-#: public/js/frappe/utils/web_template.js:5
-msgid "Edit Values"
-msgstr "Modifica valori"
-
-#. Label of a Button field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
-msgid "Edit Values"
-msgstr "Modifica valori"
-
-#. Label of a Button field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Edit Values"
-msgstr "Modifica valori"
-
-#: public/js/frappe/views/workspace/workspace.js:803
-msgid "Edit Workspace"
+#: frappe/public/js/frappe/widgets/widget_dialog.js:48
+msgid "Edit Quick List"
msgstr ""
-#: desk/doctype/note/note.js:11
+#: frappe/public/js/frappe/widgets/widget_dialog.js:40
+msgid "Edit Shortcut"
+msgstr ""
+
+#. Label of the edit_values (Button) field in DocType 'Web Page Block'
+#. Label of the edit_navbar_template_values (Button) field in DocType 'Website
+#. Settings'
+#. Label of the edit_footer_template_values (Button) field in DocType 'Website
+#. Settings'
+#: frappe/public/js/frappe/utils/web_template.js:5
+#: frappe/website/doctype/web_page_block/web_page_block.json
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Edit Values"
+msgstr ""
+
+#: frappe/desk/doctype/note/note.js:11
msgid "Edit mode"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:713
-msgid "Edit to add content"
-msgstr "Modifica per aggiungere contenuti"
+#: frappe/public/js/form_builder/components/Field.vue:254
+msgid "Edit the {0} Doctype"
+msgstr ""
-#: workflow/doctype/workflow/workflow.js:18
+#: 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:446
+msgctxt "Button in web form"
+msgid "Edit your response"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow.js:18
msgid "Edit your workflow visually using the Workflow Builder."
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:652
+#: frappe/public/js/frappe/views/reports/report_view.js:678
+#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
-msgstr "Modifica {0}"
+msgstr ""
-#: core/doctype/doctype/doctype_list.js:41
+#. Label of the editable_grid (Check) field in DocType 'DocType'
+#. Label of the editable_grid (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:57
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
-msgstr "modificabile griglia"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Editable Grid"
-msgstr "modificabile griglia"
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Editing Row"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Editable Grid"
-msgstr "modificabile griglia"
-
-#: public/js/print_format_builder/print_format_builder.bundle.js:14
-#: public/js/workflow_builder/workflow_builder.bundle.js:20
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:14
+#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:20
msgid "Editing {0}"
msgstr ""
#. Description of the 'SMS Gateway URL' (Small Text) field in DocType 'SMS
#. Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Eg. smsgateway.com/api/send_sms.cgi"
-msgstr "Ad es. smsgateway.com/api/send_sms.cgi"
+msgstr ""
-#: rate_limiter.py:139
+#: frappe/rate_limiter.py:152
msgid "Either key or IP flag is required."
msgstr ""
-#. Label of a Data field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the element_selector (Data) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Element Selector"
msgstr ""
#. Label of a Card Break in the Tools Workspace
-#: automation/workspace/tools/tools.json
-#: core/doctype/success_action/success_action.js:57
-#: email/doctype/newsletter/newsletter.js:156
-#: public/js/frappe/form/success_action.js:85
-#: public/js/frappe/form/toolbar.js:341
-#: templates/includes/comments/comments.html:25 templates/signup.html:9
-#: www/login.html:7 www/login.py:93
-msgid "Email"
-msgstr "E-mail"
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Email"
-msgstr "E-mail"
-
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Email"
-msgstr "E-mail"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Email"
-msgstr "E-mail"
-
-#. Label of a Data field in DocType 'Email Group Member'
-#: email/doctype/email_group_member/email_group_member.json
-msgctxt "Email Group Member"
-msgid "Email"
-msgstr "E-mail"
-
-#. Label of a Data field in DocType 'Email Unsubscribe'
-#: email/doctype/email_unsubscribe/email_unsubscribe.json
-msgctxt "Email Unsubscribe"
-msgid "Email"
-msgstr "E-mail"
-
-#. Label of a Data field in DocType 'Event Participants'
-#: desk/doctype/event_participants/event_participants.json
-msgctxt "Event Participants"
-msgid "Email"
-msgstr "E-mail"
-
-#. Option for the 'Channel' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Email"
-msgstr "E-mail"
-
-#. Label of a Data field in DocType 'Personal Data Deletion Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
-msgid "Email"
-msgstr "E-mail"
-
+#. Label of the email (Check) field in DocType 'Custom DocPerm'
+#. Label of the email (Check) field in DocType 'DocPerm'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the email_tab (Tab Break) field in DocType 'System Settings'
+#. Label of the email (Data) field in DocType 'User'
+#. Label of the email_settings (Section Break) field in DocType 'User'
+#. Label of the email (Check) field in DocType 'User Document Type'
+#. Label of the email (Data) field in DocType 'Event Participants'
+#. Label of the email (Data) field in DocType 'Email Group Member'
+#. Label of the email (Data) field in DocType 'Email Unsubscribe'
+#. Option for the 'Channel' (Select) field in DocType 'Notification'
+#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/success_action/success_action.js:59
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/email/doctype/newsletter/newsletter.js:156
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/success_action.js:85
+#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/templates/includes/comments/comments.html:25
+#: frappe/templates/signup.html:9
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
-msgstr "E-mail"
-
-#. Label of a Data field in DocType 'User'
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Email"
-msgstr "E-mail"
-
-#. Name of a DocType
-#: core/doctype/communication/communication.js:199
-#: email/doctype/email_account/email_account.json
-msgid "Email Account"
-msgstr "Account email"
-
-#. Label of a Link field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Email Account"
-msgstr "Account email"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Email Account"
+#. Label of the email_account (Link) field in DocType 'Communication'
+#. Label of the email_account (Link) field in DocType 'User Email'
+#. Name of a DocType
+#. Label of the email_account (Data) field in DocType 'Email Flag Queue'
+#. Label of the email_account (Link) field in DocType 'Email Queue'
+#. Label of the email_account (Link) field in DocType 'Unhandled Email'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/communication/communication.js:199
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/user_email/user_email.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Email Account"
-msgstr "Account email"
+msgstr ""
-#. Linked DocType in Email Domain's connections
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Email Account"
-msgstr "Account email"
-
-#. Label of a Data field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
-msgid "Email Account"
-msgstr "Account email"
-
-#. Label of a Link field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Email Account"
-msgstr "Account email"
-
-#. Label of a Link field in DocType 'Unhandled Email'
-#: email/doctype/unhandled_email/unhandled_email.json
-msgctxt "Unhandled Email"
-msgid "Email Account"
-msgstr "Account email"
-
-#. Label of a Link field in DocType 'User Email'
-#: core/doctype/user_email/user_email.json
-msgctxt "User Email"
-msgid "Email Account"
-msgstr "Account email"
-
-#: email/doctype/email_account/email_account.py:298
+#: frappe/email/doctype/email_account/email_account.py:343
msgid "Email Account Disabled."
msgstr ""
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the email_account_name (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Email Account Name"
-msgstr "Email Nome account"
+msgstr ""
-#: core/doctype/user/user.py:697
+#: frappe/core/doctype/user/user.py:738
msgid "Email Account added multiple times"
-msgstr "E-mail account aggiunto più volte"
+msgstr ""
-#: email/smtp.py:42
+#: frappe/email/smtp.py:43
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:470 www/complete_signup.html:11
-#: www/login.html:164 www/login.html:196
-msgid "Email Address"
-msgstr "Indirizzo email"
+#: frappe/email/doctype/email_account/email_account.py:576
+msgid "Email Account {0} Disabled"
+msgstr ""
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. 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 "Indirizzo email"
-
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Email Address"
-msgstr "Indirizzo email"
-
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Email Address"
-msgstr "Indirizzo email"
-
-#. Label of a Data field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
-msgid "Email Address"
-msgstr "Indirizzo email"
+msgstr ""
#. Description of the 'Email Address' (Data) field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Email Address whose Google Contacts are to be synced."
-msgstr "Indirizzo email i cui contatti Google devono essere sincronizzati."
+msgstr ""
-#: email/doctype/email_group/email_group.js:43
+#: frappe/email/doctype/email_group/email_group.js:43
msgid "Email Addresses"
-msgstr "Indirizzi email"
-
-#. Description of the 'Send Notification to' (Small Text) field in DocType
-#. 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Email Addresses"
-msgstr "Indirizzi email"
-
-#. Name of a DocType
-#: email/doctype/email_domain/email_domain.json
-msgid "Email Domain"
-msgstr "Dominio Email"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Email Domain"
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Email Domain"
-msgstr "Dominio Email"
+msgstr ""
#. Name of a DocType
-#: email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
msgid "Email Flag Queue"
-msgstr "Coda Flag-mail"
+msgstr ""
-#. Label of a Small Text field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the email_footer_address (Small Text) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Email Footer Address"
-msgstr "Indirizzo in calce per Email"
-
-#. Name of a DocType
-#: email/doctype/email_group/email_group.json
-msgid "Email Group"
-msgstr "Email Group"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Email Group"
+#. Name of a DocType
+#. Label of the email_group (Link) field in DocType 'Email Group Member'
+#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/email/doctype/email_group/email_group.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
+#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
-msgstr "Email Group"
-
-#. Label of a Link field in DocType 'Email Group Member'
-#: email/doctype/email_group_member/email_group_member.json
-msgctxt "Email Group Member"
-msgid "Email Group"
-msgstr "Email Group"
-
-#. Label of a Link field in DocType 'Newsletter Email Group'
-#: email/doctype/newsletter_email_group/newsletter_email_group.json
-msgctxt "Newsletter Email Group"
-msgid "Email Group"
-msgstr "Email Group"
+msgstr ""
#. Name of a DocType
-#: email/doctype/email_group_member/email_group_member.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
msgid "Email Group Member"
-msgstr "Email del gruppo membro"
+msgstr ""
-#. Linked DocType in Email Group's connections
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
-msgid "Email Group Member"
-msgstr "Email del gruppo membro"
+#. Label of the email_header (Data) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
+msgid "Email Header"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Email'
-#: contacts/doctype/contact_email/contact_email.json
-msgctxt "Contact Email"
+#. Label of the email_id (Data) field in DocType 'Contact Email'
+#. Label of the email_id (Data) field in DocType 'User Email'
+#. Label of the email_id (Data) field in DocType 'Email Rule'
+#: frappe/contacts/doctype/contact/contact.py:131
+#: frappe/contacts/doctype/contact_email/contact_email.json
+#: frappe/core/doctype/user_email/user_email.json
+#: frappe/email/doctype/email_rule/email_rule.json
msgid "Email ID"
-msgstr "E-mail identificativo utente"
+msgstr ""
-#. Label of a Data field in DocType 'Email Rule'
-#: email/doctype/email_rule/email_rule.json
-msgctxt "Email Rule"
-msgid "Email ID"
-msgstr "E-mail identificativo utente"
-
-#. Label of a Data field in DocType 'User Email'
-#: core/doctype/user_email/user_email.json
-msgctxt "User Email"
-msgid "Email ID"
-msgstr "E-mail identificativo utente"
-
-#. Label of a Table field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the email_ids (Table) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Email IDs"
-msgstr "Email Ids"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
-msgstr "ID Email"
+msgstr ""
-#. Label of a Section Break field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the email_inbox (Section Break) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Email Inbox"
-msgstr "Posta in arrivo"
+msgstr ""
#. Name of a DocType
-#: email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Email Queue"
-msgstr "coda e-mail"
+msgstr ""
#. Name of a DocType
-#: email/doctype/email_queue_recipient/email_queue_recipient.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
msgid "Email Queue Recipient"
-msgstr "Destinatario Queue-mail"
+msgstr ""
-#: email/queue.py:163
+#: frappe/email/queue.py:160
msgid "Email Queue flushing aborted due to too many failures."
msgstr ""
-#. Label of a HTML field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
-msgid "Email Reply Help"
-msgstr "Email Rispondi Aiuto"
+#. Description of a DocType
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Email Queue records."
+msgstr ""
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the email_reply_help (HTML) field in DocType 'Email Template'
+#: frappe/email/doctype/email_template/email_template.json
+msgid "Email Reply Help"
+msgstr ""
+
+#. Label of the email_retry_limit (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Email Retry Limit"
msgstr ""
#. Name of a DocType
-#: email/doctype/email_rule/email_rule.json
+#: frappe/email/doctype/email_rule/email_rule.json
msgid "Email Rule"
-msgstr "Regola-mail"
+msgstr ""
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the email_sent (Check) field in DocType 'Newsletter'
+#. Label of the email_sent (Check) field in DocType 'Blog Post'
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
-msgstr "E-mail Inviata"
+msgstr ""
-#. Label of a Check field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Email Sent"
-msgstr "E-mail Inviata"
-
-#. Label of a Datetime field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Email Sent At"
msgstr ""
-#. Label of a Section Break field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
+#. Label of the email_settings_section (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the column_break_3 (Section Break) field in DocType 'Notification
+#. Settings'
+#. Label of the email_settings (Section Break) field in DocType 'Auto Email
+#. Report'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Email Settings"
-msgstr "Impostazioni E-mail"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Email Settings"
-msgstr "Impostazioni E-mail"
-
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Email Settings"
-msgstr "Impostazioni E-mail"
-
-#. Label of a Section Break field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "Email Settings"
-msgstr "Impostazioni E-mail"
-
-#. Label of a Small Text field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the email_signature (Text Editor) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Email Signature"
-msgstr "Firma E-mail"
+msgstr ""
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the email_status (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Email Status"
-msgstr "Email Stato"
+msgstr ""
-#. Label of a Select field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the email_sync_option (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Email Sync Option"
-msgstr "Email Sync Option"
-
-#. Name of a DocType
-#: email/doctype/email_template/email_template.json
-#: public/js/frappe/views/communication.js:91
-msgid "Email Template"
-msgstr "Modello di email"
-
-#. Label of a Link field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Email Template"
-msgstr "Modello di email"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Email Template"
+#. Label of the email_template (Link) field in DocType 'Communication'
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_template/email_template.json
+#: frappe/public/js/frappe/views/communication.js:104
msgid "Email Template"
-msgstr "Modello di email"
+msgstr ""
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#. Label of the enable_email_threads_on_assigned_document (Check) field in
+#. DocType 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Email Threads on Assigned Document"
msgstr ""
-#. Label of a Small Text field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the email_to (Small Text) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Email To"
-msgstr "Invia una email a"
+msgstr ""
#. Name of a DocType
-#: email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
msgid "Email Unsubscribe"
-msgstr "Cancella sottoscrizione E-mail"
+msgstr ""
-#: core/doctype/communication/communication.js:342
+#: frappe/core/doctype/communication/communication.js:342
msgid "Email has been marked as spam"
-msgstr "L'email è stata contrassegnata come spam"
+msgstr ""
-#: core/doctype/communication/communication.js:355
+#: frappe/core/doctype/communication/communication.js:355
msgid "Email has been moved to trash"
-msgstr "L'email è stata spostata nel cestino"
+msgstr ""
-#: public/js/frappe/views/communication.js:707
+#: frappe/core/doctype/user/user.js:272
+msgid "Email is mandatory to create User Email"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:816
msgid "Email not sent to {0} (unsubscribed / disabled)"
-msgstr "E-mail non inviato a {0} (sottoscritte / disabilitato)"
+msgstr ""
-#: utils/oauth.py:163
+#: frappe/utils/oauth.py:163
msgid "Email not verified with {0}"
-msgstr "Email non verificata con {0}"
+msgstr ""
-#: email/queue.py:141
+#: frappe/email/doctype/email_queue/email_queue.js:19
+msgid "Email queue is currently suspended. Resume to automatically send other emails."
+msgstr ""
+
+#. Label of the section_break_udjs (Section Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Emails"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.js:216
+msgid "Emails Pulled"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:934
+msgid "Emails are already being pulled from this account."
+msgstr ""
+
+#: frappe/email/queue.py:137
msgid "Emails are muted"
-msgstr "Le E-mail sono disattivati"
+msgstr ""
#. Description of the 'Send Email Alert' (Check) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Emails will be sent with next possible workflow actions"
-msgstr "Le email saranno inviate con le prossime possibili azioni del flusso di lavoro"
+msgstr ""
-#. Label of a Check field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#: frappe/website/doctype/web_form/web_form.js:34
+msgid "Embed code copied"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:285
+msgid "Empty column"
+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 "permettere"
+msgstr ""
-#. Label of a Check field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
-msgid "Enable"
-msgstr "permettere"
+#. Label of the enable_address_autocompletion (Check) field in DocType
+#. 'Geolocation Settings'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "Enable Address Autocompletion"
+msgstr ""
-#. Label of a Check field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Enable"
-msgstr "permettere"
-
-#. Label of a Check field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
-msgid "Enable"
-msgstr "permettere"
-
-#: automation/doctype/auto_repeat/auto_repeat.py:116
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119
msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form"
-msgstr "Abilita Consenti ripetizione automatica per il tipo di documento {0} in Personalizza modulo"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the enable_auto_reply (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Enable Auto Reply"
-msgstr "Abilita risposta automatica"
+msgstr ""
-#. Label of a Check field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Enable Automatic Backup"
-msgstr "Abilita il backup automatico"
-
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the enable_automatic_linking (Check) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Enable Automatic Linking in Documents"
-msgstr "Abilita collegamento automatico nei documenti"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the enable_comments (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Enable Comments"
-msgstr "Attiva Commenti"
+msgstr ""
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
msgstr ""
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#. Label of the enable_email_notifications (Check) field in DocType
+#. 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Enable Email Notifications"
-msgstr "Abilita notifiche e-mail"
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:89
-#: integrations/doctype/google_contacts/google_contacts.py:35
-#: website/doctype/website_settings/website_settings.py:129
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:106
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:36
+#: frappe/website/doctype/website_settings/website_settings.py:129
msgid "Enable Google API in Google Settings."
-msgstr "Abilita l'API di Google nelle Impostazioni di Google."
+msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the enable_google_indexing (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Enable Google indexing"
msgstr ""
-#: email/doctype/email_account/email_account.py:194
+#. Label of the enable_incoming (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:225
msgid "Enable Incoming"
-msgstr "Abilita Incoming"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Enable Incoming"
-msgstr "Abilita Incoming"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the enable_onboarding (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Enable Onboarding"
-msgstr "Abilita onboarding"
+msgstr ""
-#: email/doctype/email_account/email_account.py:201
+#. Label of the enable_outgoing (Check) field in DocType 'User Email'
+#. Label of the enable_outgoing (Check) field in DocType 'Email Account'
+#: frappe/core/doctype/user_email/user_email.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:233
msgid "Enable Outgoing"
-msgstr "Abilita uscita"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Enable Outgoing"
-msgstr "Abilita uscita"
-
-#. Label of a Check field in DocType 'User Email'
-#: core/doctype/user_email/user_email.json
-msgctxt "User Email"
-msgid "Enable Outgoing"
-msgstr "Abilita uscita"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the enable_password_policy (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Enable Password Policy"
-msgstr "Abilita criteri di password"
+msgstr ""
-#. Label of a Check field in DocType 'Role Permission for Page and Report'
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgctxt "Role Permission for Page and Report"
+#. Label of the enable_prepared_report (Check) field in DocType 'Role
+#. Permission for Page and Report'
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
msgid "Enable Prepared Report"
msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the enable_print_server (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Enable Print Server"
-msgstr "Abilita server di stampa"
+msgstr ""
-#. Label of a Check field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the enable_push_notification_relay (Check) field in DocType 'Push
+#. Notification Settings'
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "Enable Push Notification Relay"
+msgstr ""
+
+#. Label of the enable_rate_limit (Check) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Enable Rate Limit"
msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the enable_raw_printing (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Enable Raw Printing"
-msgstr "Abilita stampa raw"
+msgstr ""
-#: core/doctype/report/report.js:36
+#: frappe/core/doctype/report/report.js:39
msgid "Enable Report"
-msgstr "Abilita Report"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the enable_scheduler (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Enable Scheduled Jobs"
-msgstr "Abilita lavori pianificati"
+msgstr ""
-#: core/doctype/rq_job/rq_job_list.js:23
+#: frappe/core/doctype/rq_job/rq_job_list.js:23
msgid "Enable Scheduler"
msgstr ""
-#. Label of a Check field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the enable_security (Check) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Enable Security"
-msgstr "Abilita sicurezza"
-
-#. Label of a Check field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Enable Social Login"
-msgstr "Abilita accesso social"
-
-#. Label of a Check field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
-msgid "Enable Social Sharing"
-msgstr "Abilita la condivisione sui social"
-
-#: website/doctype/website_settings/website_settings.js:139
-msgid "Enable Tracking Page Views"
-msgstr "Abilita le visualizzazioni della pagina di monitoraggio"
-
-#: twofactor.py:456
-msgid "Enable Two Factor Auth"
-msgstr "Abilita due fattori Auth"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Enable Two Factor Auth"
-msgstr "Abilita due fattori Auth"
-
-#. Title of an Onboarding Step
-#: website/onboarding_step/enable_website_tracking/enable_website_tracking.json
-msgid "Enable Website Tracking"
msgstr ""
-#: printing/doctype/print_format_field_template/print_format_field_template.py:27
+#. 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 ""
+
+#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Enable Social Sharing"
+msgstr ""
+
+#: 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:433
+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 ""
-#: website/doctype/web_template/web_template.py:33
+#: frappe/website/doctype/web_template/web_template.py:33
msgid "Enable developer mode to create a standard Web Template"
-msgstr "Abilita la modalità sviluppatore per creare un modello web standard"
+msgstr ""
#. Description of the 'Enable Email Notification' (Check) field in DocType
#. 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable email notification for any comment or likes received on your Blog Post."
msgstr ""
#. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid ""
-"Enable if on click\n"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Enable if on click\n"
"opens modal."
msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the enable_view_tracking (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Enable in-app website tracking"
msgstr ""
-#: public/js/frappe/model/indicator.js:106
-#: public/js/frappe/model/indicator.js:117
+#. Label of the enabled (Check) field in DocType 'Language'
+#. Label of the enabled (Check) field in DocType 'User'
+#. Label of the enabled (Check) field in DocType 'Client Script'
+#. Label of the enabled (Check) field in DocType 'Notification Settings'
+#. Label of the enabled (Check) field in DocType 'Auto Email Report'
+#. Label of the enabled (Check) field in DocType 'Notification'
+#. Label of the enabled (Check) field in DocType 'Currency'
+#. Label of the enabled (Check) field in DocType 'LDAP Settings'
+#. Label of the enabled (Check) field in DocType 'Webhook'
+#. Label of the enabled (Check) field in DocType 'Portal Menu Item'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/user/user.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/geo/doctype/currency/currency.json
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/public/js/frappe/model/indicator.js:106
+#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
-msgstr "Attivato"
+msgstr ""
-#. Label of a Check field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Enabled"
-msgstr "Attivato"
-
-#. Label of a Check field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
-msgid "Enabled"
-msgstr "Attivato"
-
-#. Label of a Check field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
-msgid "Enabled"
-msgstr "Attivato"
-
-#. Label of a Check field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Enabled"
-msgstr "Attivato"
-
-#. Label of a Check field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Enabled"
-msgstr "Attivato"
-
-#. Label of a Check field in DocType 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Enabled"
-msgstr "Attivato"
-
-#. Label of a Check field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
-msgid "Enabled"
-msgstr "Attivato"
-
-#. Label of a Check field in DocType 'Language'
-#: core/doctype/language/language.json
-msgctxt "Language"
-msgid "Enabled"
-msgstr "Attivato"
-
-#. Label of a Check field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Enabled"
-msgstr "Attivato"
-
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "Enabled"
-msgstr "Attivato"
-
-#. Label of a Check field in DocType 'Portal Menu Item'
-#: website/doctype/portal_menu_item/portal_menu_item.json
-msgctxt "Portal Menu Item"
-msgid "Enabled"
-msgstr "Attivato"
-
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Enabled"
-msgstr "Attivato"
-
-#. Label of a Check field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Enabled"
-msgstr "Attivato"
-
-#: core/doctype/rq_job/rq_job_list.js:29
+#: frappe/core/doctype/rq_job/rq_job_list.js:29
msgid "Enabled Scheduler"
msgstr ""
-#: email/doctype/email_account/email_account.py:896
+#: frappe/email/doctype/email_account/email_account.py:1010
msgid "Enabled email inbox for user {0}"
-msgstr "Posta in arrivo abilitata per l'utente {0}"
-
-#: core/doctype/server_script/server_script.py:262
-msgid "Enabled scheduled execution for script {0}"
-msgstr "Abilitata esecuzione pianificata per lo script {0}"
-
-#. Description of the 'Is Calendar and Gantt' (Check) field in DocType
-#. 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Enables Calendar and Gantt views."
msgstr ""
#. Description of the 'Is Calendar and Gantt' (Check) field in DocType
#. 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Description of the 'Is Calendar and Gantt' (Check) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Enables Calendar and Gantt views."
msgstr ""
-#: email/doctype/email_account/email_account.js:232
+#: frappe/email/doctype/email_account/email_account.js:295
msgid "Enabling auto reply on an incoming email account will send automated replies to all the synchronized emails. Do you wish to continue?"
msgstr ""
-#. Description of the 'Queue in Background (BETA)' (Check) field in DocType
-#. 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Enabling this will submit documents in background"
+#. Description of a DocType
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved."
+msgstr ""
+
+#. Description of the 'Relay Settings' (Section Break) field in DocType 'Push
+#. Notification Settings'
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. "
msgstr ""
#. Description of the 'Queue in Background (BETA)' (Check) field in DocType
#. 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Description of the 'Queue in Background (BETA)' (Check) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Enabling this will submit documents in background"
msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the encrypt_backup (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Encrypt Backups"
msgstr ""
-#: utils/password.py:184
+#: frappe/utils/password.py:197
msgid "Encryption key is in invalid format!"
msgstr ""
-#: utils/password.py:198
+#: frappe/utils/password.py:212
msgid "Encryption key is invalid! Please check site_config.json"
msgstr ""
-#: public/js/frappe/utils/common.js:416
-msgid "End Date"
-msgstr "Data di Fine"
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:51
+msgid "End"
+msgstr ""
-#. Label of a Date field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
+#. Label of the end_date (Date) field in DocType 'Auto Repeat'
+#. Label of the end_date (Date) field in DocType 'Audit Trail'
+#. Label of the end_date (Datetime) field in DocType 'Web Page'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/public/js/frappe/utils/common.js:416
+#: frappe/website/doctype/web_page/web_page.json
msgid "End Date"
-msgstr "Data di Fine"
+msgstr ""
-#. Label of a Date field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "End Date"
-msgstr "Data di Fine"
-
-#. Label of a Datetime field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "End Date"
-msgstr "Data di Fine"
-
-#. Label of a Select field in DocType 'Calendar View'
-#: desk/doctype/calendar_view/calendar_view.json
-msgctxt "Calendar View"
+#. Label of the end_date_field (Select) field in DocType 'Calendar View'
+#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "End Date Field"
-msgstr "Campo data finale"
+msgstr ""
-#: website/doctype/web_page/web_page.py:207
+#: frappe/website/doctype/web_page/web_page.py:208
msgid "End Date cannot be before Start Date!"
-msgstr "La data di fine non può essere precedente alla data di inizio!"
+msgstr ""
-#. Label of a Datetime field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the ended_at (Datetime) field in DocType 'RQ Job'
+#. Label of the ended_at (Datetime) field in DocType 'Submission Queue'
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Ended At"
msgstr ""
-#. Label of a Datetime field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
-msgid "Ended At"
-msgstr ""
-
-#. Label of a Data field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Endpoint URL"
-msgstr "URL dell'endpoint"
-
-#. Label of a Section Break field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the sb_endpoints_section (Section Break) field in DocType
+#. 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Endpoints"
msgstr ""
-#. Label of a Datetime field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the ends_on (Datetime) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Ends on"
-msgstr "Termina il"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Energy Point"
-msgstr "Punto di energia"
+msgstr ""
-#. Name of a DocType
-#: social/doctype/energy_point_log/energy_point_log.json
-msgid "Energy Point Log"
-msgstr "Registro punti energia"
-
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Energy Point Log"
-msgstr "Registro punti energia"
-
-#. Name of a DocType
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgid "Energy Point Rule"
-msgstr "Regola dei punti di energia"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Energy Point Rule"
-msgstr "Regola dei punti di energia"
-
-#. Name of a DocType
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgid "Energy Point Settings"
-msgstr "Impostazioni del punto di energia"
-
-#: desk/doctype/notification_log/notification_log.py:159
-msgid "Energy Point Update on {0}"
-msgstr "Aggiornamento punto energia su {0}"
-
-#: templates/emails/energy_points_summary.html:39
-msgid "Energy Points"
-msgstr "Punti energia"
-
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "Energy Points"
-msgstr "Punti energia"
-
-#. Label of a Data field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
+#. Label of the enqueued_by (Data) field in DocType 'Submission Queue'
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Enqueued By"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:105
+#: frappe/core/doctype/recorder/recorder.py:125
+msgid "Enqueued creation of indexes"
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108
msgid "Ensure the user and group search paths are correct."
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:92
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:109
msgid "Enter Client Id and Client Secret in Google Settings."
-msgstr "Inserisci ID cliente e segreto cliente in Impostazioni Google."
+msgstr ""
-#: public/js/frappe/views/communication.js:663
+#: frappe/templates/includes/login/login.js:351
+msgid "Enter Code displayed in OTP App."
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:771
msgid "Enter Email Recipient(s)"
-msgstr "Inserisci e-mail destinatario (s)"
+msgstr ""
-#. Label of a Link field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the doc_type (Link) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Enter Form Type"
-msgstr "Inserisci Tipo Modulo"
+msgstr ""
-#: public/js/frappe/ui/messages.js:94
+#: frappe/public/js/frappe/ui/messages.js:94
msgctxt "Title of prompt dialog"
msgid "Enter Value"
-msgstr "Immettere Valore"
+msgstr ""
-#: public/js/frappe/form/form_tour.js:56
+#: frappe/public/js/frappe/form/form_tour.js:60
msgid "Enter a name for this {0}"
msgstr ""
#. Description of the 'User Defaults' (Table) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Enter default value fields (keys) and values. If you add multiple values for a field, the first one will be picked. These defaults are also used to set \"match\" permission rules. To see list of fields, go to \"Customize Form\"."
-msgstr "Inserisci campi valore predefinito (chiavi) e valori. Se si aggiungono più valori per un campo, il primo sarà scelto. Questi dati vengono utilizzati anche per impostare il \"match\" per le regole di autorizzazione. Per vedere l'elenco dei campi, andare su \"Personalizza modulo\"."
+msgstr ""
-#: public/js/frappe/views/file/file_view.js:111
+#: frappe/public/js/frappe/views/file/file_view.js:111
msgid "Enter folder name"
-msgstr "Inserisci il nome della cartella"
+msgstr ""
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)"
-msgstr "Inserisci parametri statici della url qui (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)"
+msgstr ""
#. Description of the 'Message Parameter' (Data) field in DocType 'SMS
#. Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Enter url parameter for message"
-msgstr "Inserisci parametri url per il messaggio"
+msgstr ""
#. Description of the 'Receiver Parameter' (Data) field in DocType 'SMS
#. Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Enter url parameter for receiver nos"
-msgstr "Inserisci parametri url per NOS ricevuti"
+msgstr ""
-#: public/js/frappe/ui/messages.js:334
+#: frappe/public/js/frappe/ui/messages.js:341
msgid "Enter your password"
-msgstr "Inserisci la tua password"
+msgstr ""
-#: contacts/report/addresses_and_contacts/addresses_and_contacts.js:22
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:22
msgid "Entity Name"
-msgstr "Nome dell'entità"
+msgstr ""
-#: contacts/report/addresses_and_contacts/addresses_and_contacts.js:9
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:9
msgid "Entity Type"
-msgstr "Tipo di entità"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:16
+#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
-msgstr "uguale"
-
-#: desk/page/backups/backups.js:35 model/base_document.py:703
-#: model/base_document.py:708 public/js/frappe/ui/messages.js:22
-msgid "Error"
-msgstr "Errore"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Error"
-msgstr "Errore"
-
#. Option for the 'Status' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Error"
-msgstr "Errore"
-
-#. Option for the 'Status' (Select) field in DocType 'Email Queue'
-#. Label of a Code field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Error"
-msgstr "Errore"
-
-#. Label of a Code field in DocType 'Email Queue Recipient'
-#: email/doctype/email_queue_recipient/email_queue_recipient.json
-msgctxt "Email Queue Recipient"
-msgid "Error"
-msgstr "Errore"
-
-#. Label of a Code field in DocType 'Error Log'
-#: core/doctype/error_log/error_log.json
-msgctxt "Error Log"
-msgid "Error"
-msgstr "Errore"
-
-#. Label of a Code field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Error"
-msgstr "Errore"
-
+#. Label of the error (Code) field in DocType 'Error Log'
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Option for the 'Status' (Select) field in DocType 'Email Queue'
+#. Label of the error (Code) field in DocType 'Email Queue'
+#. Label of the error (Code) field in DocType 'Email Queue Recipient'
+#. Label of the error (Code) field in DocType 'Integration Request'
+#. Label of the error (Text) field in DocType 'Webhook Request Log'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/desk/page/backups/backups.js:37
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/public/js/frappe/ui/messages.js:22
msgid "Error"
-msgstr "Errore"
+msgstr ""
-#: public/js/frappe/web_form/web_form.js:240
+#: frappe/public/js/frappe/web_form/web_form.js:240
msgctxt "Title of error message in web form"
msgid "Error"
-msgstr "Errore"
-
-#. Label of a Text field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "Error"
-msgstr "Errore"
-
-#: www/error.html:34
-msgid "Error Code: {0}"
-msgstr "Codice di errore: {0}"
+msgstr ""
#. Name of a DocType
-#: core/doctype/error_log/error_log.json
+#: frappe/core/doctype/error_log/error_log.json
msgid "Error Log"
-msgstr "Registro errori"
+msgstr ""
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Error Log"
+#: frappe/core/workspace/build/build.json
msgid "Error Logs"
msgstr ""
-#. Label of a Text field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Label of the error_message (Text) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
-msgstr "Messaggio di errore"
+msgstr ""
-#: public/js/frappe/form/print_utils.js:126
+#: frappe/public/js/frappe/form/print_utils.js:128
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
-msgstr "Errore durante la connessione all'applicazione vassoio QZ ...
È necessario disporre dell'applicazione QZ Tray installata e in esecuzione, per utilizzare la funzione Raw Print.
Fare clic qui per scaricare e installare il vassoio QZ .
Fai clic qui per ulteriori informazioni sulla stampa raw ."
+msgstr ""
-#: email/doctype/email_domain/email_domain.py:32
+#: frappe/email/doctype/email_domain/email_domain.py:32
msgid "Error connecting via IMAP/POP3: {e}"
msgstr ""
-#: email/doctype/email_domain/email_domain.py:33
+#: frappe/email/doctype/email_domain/email_domain.py:33
msgid "Error connecting via SMTP: {e}"
msgstr ""
-#: email/doctype/email_domain/email_domain.py:98
+#: frappe/email/doctype/email_domain/email_domain.py:101
msgid "Error has occurred in {0}"
-msgstr "Si è verificato un errore in {0}"
+msgstr ""
-#: public/js/frappe/form/script_manager.js:187
+#: frappe/public/js/frappe/form/script_manager.js:199
msgid "Error in Client Script"
msgstr ""
-#: public/js/frappe/form/script_manager.js:241
+#: frappe/public/js/frappe/form/script_manager.js:256
msgid "Error in Client Script."
msgstr ""
-#: email/doctype/notification/notification.py:391
-#: email/doctype/notification/notification.py:507
-#: email/doctype/notification/notification.py:513
-msgid "Error in Notification"
-msgstr "Errore nella notifica"
+#: frappe/printing/doctype/letter_head/letter_head.js:21
+msgid "Error in Header/Footer Script"
+msgstr ""
-#: utils/pdf.py:48
+#: frappe/email/doctype/notification/notification.py:598
+#: frappe/email/doctype/notification/notification.py:735
+#: frappe/email/doctype/notification/notification.py:741
+msgid "Error in Notification"
+msgstr ""
+
+#: frappe/utils/pdf.py:59
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: email/doctype/email_account/email_account.py:586
+#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
-msgstr "Errore durante la connessione a un account e-mail {0}"
+msgstr ""
-#: email/doctype/notification/notification.py:504
+#: frappe/email/doctype/notification/notification.py:732
msgid "Error while evaluating Notification {0}. Please fix your template."
-msgstr "Errore durante la valutazione della notifica {0}. Per favore aggiusta il tuo modello."
+msgstr ""
-#: model/document.py:808
-msgid "Error: Document has been modified after you have opened it"
-msgstr "Errore: Il Documento è stato modificato dopo averlo aperto"
+#: frappe/model/base_document.py:803
+msgid "Error: Data missing in table {0}"
+msgstr ""
-#: model/base_document.py:716
+#: frappe/model/base_document.py:813
msgid "Error: Value missing for {0}: {1}"
-msgstr "Errore: valore mancante per {0}: {1}"
+msgstr ""
-#. Name of a DocType
-#: desk/doctype/event/event.json
-msgid "Event"
-msgstr "Evento"
+#: frappe/model/base_document.py:807
+msgid "Error: {0} Row #{1}: Value missing for: {2}"
+msgstr ""
+
+#. Label of the errors_generated_in_last_1_day_section (Section Break) field in
+#. DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Errors"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Event"
-msgstr "Evento"
-
+#. Name of a DocType
#. Option for the 'Event Category' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/core/doctype/communication/communication.json
+#: frappe/desk/doctype/event/event.json
msgid "Event"
-msgstr "Evento"
+msgstr ""
-#. Label of a Select field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the event_category (Select) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Event Category"
-msgstr "Categoria di eventi"
+msgstr ""
-#. Label of a Select field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the event_frequency (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Event Frequency"
msgstr ""
+#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
-#: desk/doctype/event_participants/event_participants.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/event_participants/event_participants.json
msgid "Event Participants"
-msgstr "Partecipanti all'evento"
+msgstr ""
-#. Label of a Table field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Event Participants"
-msgstr "Partecipanti all'evento"
-
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#. Label of the enable_email_event_reminders (Check) field in DocType
+#. 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Event Reminders"
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:455
-#: integrations/doctype/google_calendar/google_calendar.py:539
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:493
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:577
msgid "Event Synced with Google Calendar."
-msgstr "Evento sincronizzato con Google Calendar."
-
-#. Label of a Select field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Event Type"
-msgstr "Tipo Evento"
-
-#. Label of a Data field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "Event Type"
-msgstr "Tipo Evento"
-
-#: desk/doctype/event/event.py:263
-msgid "Events in Today's Calendar"
-msgstr "Eventi nel calendario di oggi"
-
-#. Description of the Onboarding Step 'Create Custom Fields'
-#: custom/onboarding_step/custom_field/custom_field.json
-msgid ""
-"Every form in ERPNext has a standard set of fields. If you need to capture some information, but there is no standard Field available for it, you can insert Custom Field for it.\n"
-"\n"
-"Once custom fields are added, you can use them for reports and analytics charts as well.\n"
msgstr ""
-#. Label of a Check field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
+#. Label of the 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:274
+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 "Tutti"
+msgstr ""
#. Description of the 'Custom Options' (Code) field in DocType 'Dashboard
#. Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"]"
-msgstr "Es: "colori": ["# d1d8dd", "# ff5858"]"
+msgstr ""
-#. Label of a Int field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
+#. Label of the exact_copies (Int) field in DocType 'Recorder Query'
+#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Exact Copies"
msgstr ""
-#. Label of a HTML field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
+#. Label of the example (HTML) field in DocType 'Workflow Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
-msgstr "Esempio"
+msgstr ""
#. Description of the 'Default Portal Home' (Data) field in DocType 'Portal
#. Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Example: \"/desk\""
-msgstr "Esempio: "/ desk""
+msgstr ""
#. Description of the 'Path' (Data) field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Example: #Tree/Account"
-msgstr "Esempio: # Tree / Account"
+msgstr ""
#. Description of the 'Digits' (Int) field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Example: 00001"
-msgstr "Esempio: 00001"
+msgstr ""
#. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours."
msgstr ""
#. Description of the 'Description' (Small Text) field in DocType 'Assignment
#. Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Example: {{ subject }}"
-msgstr "Esempio: {{subject}}"
+msgstr ""
#. Option for the 'File Type' (Select) field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#: frappe/core/doctype/data_export/data_export.json
msgid "Excel"
-msgstr "Eccellere"
+msgstr ""
-#: public/js/frappe/form/controls/password.js:91
+#: frappe/public/js/frappe/form/controls/password.js:90
msgid "Excellent"
msgstr ""
-#. Label of a Text field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
+#. Label of the exception (Text) field in DocType 'Data Import Log'
+#. Label of the exc_info (Code) field in DocType 'RQ Job'
+#. Label of the exception (Long Text) field in DocType 'Submission Queue'
+#: frappe/core/doctype/data_import_log/data_import_log.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Exception"
-msgstr "Eccezione"
+msgstr ""
-#. Label of a Code field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
-msgid "Exception"
-msgstr "Eccezione"
-
-#. Label of a Long Text field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
-msgid "Exception"
-msgstr "Eccezione"
-
-#: desk/doctype/system_console/system_console.js:17
-#: desk/doctype/system_console/system_console.js:22
+#. Label of the execute_section (Section Break) field in DocType 'System
+#. Console'
+#: frappe/desk/doctype/system_console/system_console.js:17
+#: frappe/desk/doctype/system_console/system_console.js:22
+#: frappe/desk/doctype/system_console/system_console.json
msgid "Execute"
-msgstr "Eseguire"
+msgstr ""
-#. Label of a Section Break field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
-msgid "Execute"
-msgstr "Eseguire"
-
-#: desk/doctype/system_console/system_console.js:10
+#: frappe/desk/doctype/system_console/system_console.js:10
msgid "Execute Console script"
-msgstr "Esegui lo script della console"
+msgstr ""
-#: desk/doctype/system_console/system_console.js:18
+#: frappe/public/js/frappe/ui/dropdown_console.js:125
+msgid "Executing Code"
+msgstr ""
+
+#: frappe/desk/doctype/system_console/system_console.js:18
msgid "Executing..."
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1961
+#: frappe/public/js/frappe/views/reports/query_report.js:2071
msgid "Execution Time: {0} sec"
-msgstr "Tempo di esecuzione: {0} sec"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Executive"
msgstr ""
-#: public/js/frappe/widgets/base_widget.js:157
-msgid "Expand"
-msgstr "Espandere"
+#. Label of the existing_role (Link) field in DocType 'Role Replication'
+#: frappe/core/doctype/role_replication/role_replication.json
+msgid "Existing Role"
+msgstr ""
-#: public/js/frappe/form/controls/code.js:147
+#: 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 "Espandere"
+msgstr ""
-#: public/js/frappe/views/treeview.js:125
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
+#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
-msgstr "Espandi tutto"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
+msgid "Experimental"
+msgstr ""
#. Option for the 'Level' (Select) field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
+#: frappe/website/doctype/help_article/help_article.json
msgid "Expert"
-msgstr "Esperto"
+msgstr ""
-#. Label of a Datetime field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. 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 "Data di scadenza"
+msgstr ""
-#. Label of a Datetime field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
-msgid "Expiration time"
-msgstr "Data di scadenza"
-
-#. Label of a Date field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
+#. Label of the expire_notification_on (Datetime) field in DocType 'Note'
+#: frappe/desk/doctype/note/note.json
msgid "Expire Notification On"
-msgstr "Notifica Su scadere"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Expired"
-msgstr "Scaduto"
+msgstr ""
-#. Label of a Int field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
+#. 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 "Scade tra"
+msgstr ""
-#. Label of a Int field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "Expires In"
-msgstr "Scade tra"
-
-#. Label of a Date field in DocType 'Document Share Key'
-#: core/doctype/document_share_key/document_share_key.json
-msgctxt "Document Share Key"
+#. 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 a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. 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 "Tempo di scadenza della pagina di immagine del QR"
+msgstr ""
-#: core/doctype/recorder/recorder_list.js:42
-#: public/js/frappe/data_import/data_exporter.js:88
-#: public/js/frappe/data_import/data_exporter.js:239
-#: public/js/frappe/views/reports/query_report.js:1652
-#: public/js/frappe/views/reports/report_view.js:1552
+#. 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:1759
+#: frappe/public/js/frappe/views/reports/report_view.js:1627
+#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
-msgstr "Esporta"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1965
+#: frappe/public/js/frappe/list/list_view.js:2135
msgctxt "Button in list view actions menu"
msgid "Export"
-msgstr "Esporta"
+msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Export"
-msgstr "Esporta"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Export"
-msgstr "Esporta"
-
-#: public/js/frappe/data_import/data_exporter.js:241
+#: frappe/public/js/frappe/data_import/data_exporter.js:245
msgid "Export 1 record"
-msgstr "Esporta 1 record"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1563
-msgid "Export All {0} rows?"
-msgstr "Esporta tutte le {0} righe?"
-
-#: custom/doctype/customize_form/customize_form.js:220
+#: frappe/custom/doctype/customize_form/customize_form.js:262
msgid "Export Custom Permissions"
-msgstr "Export autorizzazioni personalizzate"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:200
+#: frappe/custom/doctype/customize_form/customize_form.js:242
msgid "Export Customizations"
-msgstr "esportare le personalizzazioni"
-
-#: public/js/frappe/data_import/data_exporter.js:14
-msgid "Export Data"
-msgstr "Esporta dati"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Data Export"
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/public/js/frappe/data_import/data_exporter.js:14
msgid "Export Data"
-msgstr "Esporta dati"
+msgstr ""
-#: core/doctype/data_import/data_import.js:86
-#: public/js/frappe/data_import/import_preview.js:195
+#: frappe/core/doctype/data_import/data_import.js:86
+#: frappe/public/js/frappe/data_import/import_preview.js:199
msgid "Export Errored Rows"
-msgstr "Esporta righe errate"
+msgstr ""
-#. Label of a Data field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the export_from (Data) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "Export From"
-msgstr "Esporta da"
+msgstr ""
-#: core/doctype/data_import/data_import.js:535
+#: frappe/core/doctype/data_import/data_import.js:518
msgid "Export Import Log"
msgstr ""
-#: public/js/frappe/views/reports/report_utils.js:227
+#: frappe/public/js/frappe/views/reports/report_utils.js:235
msgctxt "Export report"
msgid "Export Report: {0}"
-msgstr "Rapporto di esportazione: {0}"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:26
+#: frappe/public/js/frappe/data_import/data_exporter.js:26
msgid "Export Type"
-msgstr "Tipo di esportazione"
+msgstr ""
-#: public/js/frappe/views/file/file_view.js:154
+#: frappe/public/js/frappe/views/reports/report_view.js:1638
+msgid "Export all matching rows?"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1648
+msgid "Export all {0} rows?"
+msgstr ""
+
+#: frappe/public/js/frappe/views/file/file_view.js:154
msgid "Export as zip"
msgstr ""
-#: public/js/frappe/utils/tools.js:11
+#: frappe/public/js/frappe/utils/tools.js:11
msgid "Export not allowed. You need {0} role to export."
-msgstr "Esportazione non consentita . Hai bisogno di {0} ruolo/i da esportare."
+msgstr ""
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#: frappe/core/doctype/data_export/data_export.json
msgid "Export the data without any header notes and column descriptions"
msgstr ""
-#. Label of a Check field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#. Label of the export_without_main_header (Check) field in DocType 'Data
+#. Export'
+#: frappe/core/doctype/data_export/data_export.json
msgid "Export without main header"
msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:243
+#: frappe/public/js/frappe/data_import/data_exporter.js:247
msgid "Export {0} records"
-msgstr "Esporta {0} record"
+msgstr ""
-#. Label of a Data field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#: frappe/custom/doctype/customize_form/customize_form.js:263
+msgid "Exported permissions will be force-synced on every migrate overriding any other customization."
+msgstr ""
+
+#. Label of the expose_recipients (Data) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Expose Recipients"
-msgstr "esporre Destinatari"
+msgstr ""
+#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Expression"
msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Expression"
-msgstr ""
-
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Expression (old style)"
-msgstr ""
-
-#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Expression (old style)"
msgstr ""
#. Description of the 'Condition' (Data) field in DocType 'Notification
#. Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Expression, Optional"
-msgstr "Espressione, Opzionale"
+msgstr ""
-#. Label of a Section Break field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the external_link (Data) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/views/workspace/workspace.js:426
+msgid "External Link"
+msgstr ""
+
+#. Label of the section_break_18 (Section Break) field in DocType 'Connected
+#. App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Extra Parameters"
msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Facebook"
-msgstr "Facebook"
+msgstr ""
+
+#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Fail"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Failed"
-msgstr "Impossibile"
-
-#. Option for the 'Status' (Select) field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Failed"
-msgstr "Impossibile"
-
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
-msgid "Failed"
-msgstr "Impossibile"
-
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Failed"
-msgstr "Impossibile"
+msgstr ""
-#. Label of a Int field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the failed_emails (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Failed Emails"
+msgstr ""
+
+#. Label of the failed_job_count (Int) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Failed Job Count"
msgstr ""
-#: model/workflow.py:305
-msgid "Failed Transactions"
-msgstr "Transazioni non riuscite"
+#. 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 ""
-#: utils/synchronization.py:46
+#. Label of the failed_logins (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Failed Logins (Last 30 days)"
+msgstr ""
+
+#: frappe/model/workflow.py:306
+msgid "Failed Transactions"
+msgstr ""
+
+#: frappe/utils/synchronization.py:46
msgid "Failed to aquire lock: {}. Lock may be held by another process."
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:360
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:359
msgid "Failed to change password."
-msgstr "Impossibile modificare la password."
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:220
+#: frappe/desk/page/setup_wizard/setup_wizard.js:232
+#: frappe/desk/page/setup_wizard/setup_wizard.py:42
msgid "Failed to complete setup"
-msgstr "Impossibile completare l'installazione"
+msgstr ""
-#: integrations/doctype/webhook/webhook.py:148
+#: frappe/integrations/doctype/webhook/webhook.py:137
msgid "Failed to compute request body: {}"
msgstr ""
-#: printing/doctype/network_printer_settings/network_printer_settings.py:45
-#: printing/doctype/network_printer_settings/network_printer_settings.py:47
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:46
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:48
msgid "Failed to connect to server"
-msgstr "impossibile connettersi al server"
+msgstr ""
-#: auth.py:649
+#: frappe/auth.py:698
msgid "Failed to decode token, please provide a valid base64-encoded token."
-msgstr "Impossibile decodificare il token, fornire un token con codifica base64 valido."
+msgstr ""
-#: core/doctype/rq_job/rq_job_list.js:33
+#: frappe/utils/password.py:211
+msgid "Failed to decrypt key {0}"
+msgstr ""
+
+#: frappe/desk/reportview.py:600
+msgid "Failed to delete {0} documents: {1}"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job_list.js:33
msgid "Failed to enable scheduler: {0}"
msgstr ""
-#: integrations/doctype/webhook/webhook.py:136
+#: frappe/email/doctype/notification/notification.py:99
+#: frappe/integrations/doctype/webhook/webhook.py:127
msgid "Failed to evaluate conditions: {}"
msgstr ""
-#: types/exporter.py:197
+#: frappe/types/exporter.py:205
msgid "Failed to export python type hints"
msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.py:252
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:249
msgid "Failed to generate names from the series"
msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.js:75
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:75
msgid "Failed to generate preview of series"
msgstr ""
-#: handler.py:76
+#: frappe/handler.py:75
msgid "Failed to get method for command {0} with {1}"
msgstr ""
-#: api/v2.py:48
+#: frappe/api/v2.py:46
msgid "Failed to get method {0} with {1}"
msgstr ""
-#: model/virtual_doctype.py:64
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:59
+msgid "Failed to get site info"
+msgstr ""
+
+#: frappe/model/virtual_doctype.py:63
msgid "Failed to import virtual doctype {}, is controller file present?"
msgstr ""
-#: utils/image.py:75
+#: frappe/utils/image.py:75
msgid "Failed to optimize image: {0}"
msgstr ""
-#: email/doctype/email_queue/email_queue.py:278
+#: frappe/email/doctype/notification/notification.py:116
+msgid "Failed to render message: {}"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:134
+msgid "Failed to render subject: {}"
+msgstr ""
+
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:94
+msgid "Failed to request login to Frappe Cloud"
+msgstr ""
+
+#: frappe/email/doctype/email_queue/email_queue.py:297
msgid "Failed to send email with subject:"
msgstr ""
-#: desk/doctype/notification_log/notification_log.py:41
+#: frappe/desk/doctype/notification_log/notification_log.py:43
msgid "Failed to send notification email"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.py:24
+#: frappe/desk/page/setup_wizard/setup_wizard.py:24
msgid "Failed to update global settings"
msgstr ""
-#: core/doctype/data_import/data_import.js:470
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:74
+msgid "Failed while calling API {0}"
+msgstr ""
+
+#. Label of the failing_scheduled_jobs (Table) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Failing Scheduled Jobs (last 7 days)"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:459
msgid "Failure"
-msgstr "Fallimento"
+msgstr ""
-#. Label of a Attach field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the failure_rate (Percent) field in DocType 'System Health Report
+#. Failing Jobs'
+#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
+msgid "Failure Rate"
+msgstr ""
+
+#. Label of the favicon (Attach) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "FavIcon"
-msgstr "FavIcon"
+msgstr ""
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the fax (Data) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "Fax"
-msgstr "Fax"
+msgstr ""
-#: website/doctype/blog_post/templates/blog_post_row.html:19
+#. Label of the featured (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19
msgid "Featured"
-msgstr "In primo piano"
+msgstr ""
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Featured"
-msgstr "In primo piano"
-
-#. Option for the 'Communication Type' (Select) field in DocType
-#. 'Communication'
-#. Label of a Section Break field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:33
msgid "Feedback"
-msgstr "Riscontri"
+msgstr ""
-#. Label of a Data field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Feedback Request"
-msgstr "Feedback Richiesta"
+#: frappe/desk/page/setup_wizard/install_fixtures.py:29
+msgid "Female"
+msgstr ""
-#. Label of a Small Text field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the fetch_from (Small Text) field in DocType 'DocField'
+#. Label of the fetch_from (Small Text) field in DocType 'Custom Field'
+#. Label of the fetch_from (Small Text) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:29
+#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:34
msgid "Fetch From"
-msgstr "Scarica da"
+msgstr ""
-#. Label of a Small Text field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Fetch From"
-msgstr "Scarica da"
-
-#. Label of a Small Text field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Fetch From"
-msgstr "Scarica da"
-
-#: website/doctype/website_slideshow/website_slideshow.js:15
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:15
msgid "Fetch Images"
-msgstr "Scarica immagini"
+msgstr ""
-#: website/doctype/website_slideshow/website_slideshow.js:13
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:13
msgid "Fetch attached images from document"
-msgstr "Scarica le immagini allegate dal documento"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the fetch_if_empty (Check) field in DocType 'DocField'
+#. Label of the fetch_if_empty (Check) field in DocType 'Custom Field'
+#. Label of the fetch_if_empty (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Fetch on Save if Empty"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Fetch on Save if Empty"
-msgstr ""
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Fetch on Save if Empty"
-msgstr ""
-
-#: desk/doctype/global_search_settings/global_search_settings.py:60
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:61
msgid "Fetching default Global Search documents."
-msgstr "Recupero di documenti di ricerca globale predefiniti."
+msgstr ""
-#: desk/page/leaderboard/leaderboard.js:131
-#: public/js/frappe/list/bulk_operations.js:262
-#: public/js/frappe/views/reports/query_report.js:235
-#: public/js/frappe/views/reports/query_report.js:1706
+#. Label of the field (Select) field in DocType 'Assignment Rule'
+#. Label of the field (Select) field in DocType 'Document Naming Rule
+#. Condition'
+#. Label of the field (Select) field in DocType 'Bulk Update'
+#. Label of the report_field (Select) field in DocType 'Number Card'
+#. Label of the field (Select) field in DocType 'Onboarding Step'
+#. Label of the fieldname (Select) field in DocType 'Web Form Field'
+#. Label of the fieldname (Select) field in DocType 'Web Form List Column'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+#: frappe/core/doctype/permission_log/permission_log.js:12
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/public/js/frappe/list/bulk_operations.js:327
+#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
+#: frappe/public/js/frappe/views/reports/query_report.js:235
+#: frappe/public/js/frappe/views/reports/query_report.js:1818
+#: 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 "Campo"
+msgstr ""
-#. Label of a Select field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Field"
-msgstr "Campo"
-
-#. Label of a Select field in DocType 'Bulk Update'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
-msgid "Field"
-msgstr "Campo"
-
-#. Label of a Select field in DocType 'Document Naming Rule Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
-msgid "Field"
-msgstr "Campo"
-
-#. Label of a Select field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Field"
-msgstr "Campo"
-
-#. Label of a Select field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Field"
-msgstr "Campo"
-
-#. Label of a Select field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Field"
-msgstr "Campo"
-
-#. Label of a Select field in DocType 'Web Form List Column'
-#: website/doctype/web_form_list_column/web_form_list_column.json
-msgctxt "Web Form List Column"
-msgid "Field"
-msgstr "Campo"
-
-#: core/doctype/doctype/doctype.py:419
+#: frappe/core/doctype/doctype/doctype.py:417
msgid "Field \"route\" is mandatory for Web Views"
-msgstr "Il campo "percorso" è obbligatorio per le viste Web"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1477
+#: frappe/core/doctype/doctype/doctype.py:1526
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.js:17
+#: frappe/desk/doctype/bulk_update/bulk_update.js:17
msgid "Field \"value\" is mandatory. Please specify value to be updated"
-msgstr "Il campo "Valore" è obbligatoria. Si prega di specificare il valore di essere aggiornato"
+msgstr ""
-#. Label of a Text field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the description (Text) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Field Description"
-msgstr "Descrizione Campo"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1040
+#: frappe/core/doctype/doctype/doctype.py:1077
msgid "Field Missing"
msgstr ""
-#. Label of a Select field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
+#. Label of the field_name (Data) field in DocType 'Property Setter'
+#. Label of the field_name (Select) field in DocType 'Kanban Board'
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
msgid "Field Name"
-msgstr "Nome Campo"
+msgstr ""
-#. Label of a Data field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
-msgid "Field Name"
-msgstr "Nome Campo"
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:141
+msgid "Field Orientation (Left-Right)"
+msgstr ""
-#. Label of a Select field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Field To Check"
-msgstr "Campo da controllare"
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:148
+msgid "Field Orientation (Top-Down)"
+msgstr ""
-#. Label of a Select field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:233
+#: frappe/public/js/print_format_builder/utils.js:69
+msgid "Field Template"
+msgstr ""
+
+#. Label of the fieldtype (Select) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/templates/form_grid/fields.html:40
msgid "Field Type"
-msgstr "Tipo di Campo"
+msgstr ""
-#: desk/reportview.py:165
+#: frappe/desk/reportview.py:201
msgid "Field not permitted in query"
msgstr ""
#. Description of the 'Workflow State Field' (Data) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)"
-msgstr "Campo che rappresenta lo stato del flusso di lavoro della transazione (se il campo non è presente, verrà creato un nuovo campo personalizzato nascosto)"
+msgstr ""
-#. Label of a Select field in DocType 'Milestone Tracker'
-#: automation/doctype/milestone_tracker/milestone_tracker.json
-msgctxt "Milestone Tracker"
+#. Label of the track_field (Select) field in DocType 'Milestone Tracker'
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Field to Track"
-msgstr "Campo da tracciare"
+msgstr ""
-#: custom/doctype/property_setter/property_setter.py:50
+#: frappe/custom/doctype/property_setter/property_setter.py:51
msgid "Field type cannot be changed for {0}"
-msgstr "Impossibile modificare il tipo di campo per {0}"
+msgstr ""
-#: database/database.py:783
+#: frappe/database/database.py:892
msgid "Field {0} does not exist on {1}"
msgstr ""
-#: desk/form/meta.py:203
+#: frappe/desk/form/meta.py:184
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
-#: public/js/frappe/form/form.js:1727
+#: frappe/public/js/frappe/form/form.js:1754
msgid "Field {0} not found."
-msgstr "Campo {0} non trovato."
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:119
+#: frappe/email/doctype/notification/notification.py:503
+msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
+msgstr ""
+
+#. Label of the fieldname (Data) field in DocType 'Report Column'
+#. Label of the fieldname (Data) field in DocType 'Report Filter'
+#. Label of the fieldname (Data) field in DocType 'Custom Field'
+#. Label of the fieldname (Select) field in DocType 'DocType Layout Field'
+#. Label of the fieldname (Select) field in DocType 'Form Tour Step'
+#. Label of the fieldname (Select) field in DocType 'Webhook Data'
+#. Label of the fieldname (Data) field in DocType 'Web Template Field'
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.js:120
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/integrations/doctype/webhook_data/webhook_data.json
+#: frappe/public/js/frappe/form/grid_row.js:438
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldname"
-msgstr "Nome del campo"
+msgstr ""
-#. Label of a Data field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Fieldname"
-msgstr "Nome del campo"
-
-#. Label of a Select field in DocType 'DocType Layout Field'
-#: custom/doctype/doctype_layout_field/doctype_layout_field.json
-msgctxt "DocType Layout Field"
-msgid "Fieldname"
-msgstr "Nome del campo"
-
-#. Label of a Select field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Fieldname"
-msgstr "Nome del campo"
-
-#. Label of a Data field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Fieldname"
-msgstr "Nome del campo"
-
-#. Label of a Data field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Fieldname"
-msgstr "Nome del campo"
-
-#. Label of a Data field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Fieldname"
-msgstr "Nome del campo"
-
-#. Label of a Select field in DocType 'Webhook Data'
-#: integrations/doctype/webhook_data/webhook_data.json
-msgctxt "Webhook Data"
-msgid "Fieldname"
-msgstr "Nome del campo"
-
-#: core/doctype/doctype/doctype.py:270
+#: frappe/core/doctype/doctype/doctype.py:270
msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
msgstr ""
-#: core/doctype/doctype/doctype.py:1039
+#: frappe/core/doctype/doctype/doctype.py:1076
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: database/schema.py:125 database/schema.py:359
+#: frappe/database/schema.py:127 frappe/database/schema.py:363
msgid "Fieldname is limited to 64 characters ({0})"
-msgstr "Fieldname è limitata a 64 caratteri ({0})"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.py:193
+#: frappe/custom/doctype/custom_field/custom_field.py:197
msgid "Fieldname not set for Custom Field"
-msgstr "Il nome del campo non è specificato per il campo personalizzato"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:107
+#: frappe/custom/doctype/custom_field/custom_field.js:107
msgid "Fieldname which will be the DocType for this link field."
-msgstr "Fieldname che sarà il DocType per questo campo collegamento."
+msgstr ""
-#: public/js/form_builder/store.js:170
+#: frappe/public/js/form_builder/store.js:175
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: database/schema.py:349
+#: frappe/database/schema.py:353
msgid "Fieldname {0} cannot have special characters like {1}"
-msgstr "Il nome del campo {0} non può avere caratteri speciali come {1}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1850
+#: frappe/core/doctype/doctype/doctype.py:1907
msgid "Fieldname {0} conflicting with meta object"
-msgstr "Nome di campo {0} in conflitto con l'oggetto meta"
+msgstr ""
-#: core/doctype/doctype/doctype.py:495 public/js/form_builder/utils.js:302
+#: frappe/core/doctype/doctype/doctype.py:496
+#: frappe/public/js/form_builder/utils.js:302
msgid "Fieldname {0} is restricted"
-msgstr "Il nome campo {0} è limitato"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#. Label of a Table field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the fields (Table) field in DocType 'DocType'
+#. Label of the fields_section (Section Break) field in DocType 'DocType'
+#. Label of the fields_tab (Tab Break) field in DocType 'DocType'
+#. Label of the fields_section_break (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the fields (Table) field in DocType 'Customize Form'
+#. Label of the fields (Table) field in DocType 'DocType Layout'
+#. Label of the fields (Code) field in DocType 'Kanban Board'
+#. Label of the fields_html (HTML) field in DocType 'List View Settings'
+#. Label of the fields (Code) field in DocType 'List View Settings'
+#. Label of the fields (Small Text) field in DocType 'Personal Data Deletion
+#. Step'
+#. Label of the fields (Table) field in DocType 'Web Template'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+#: frappe/public/js/frappe/list/list_settings.js:135
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:83
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+#: frappe/website/doctype/web_template/web_template.json
msgid "Fields"
-msgstr "Campi"
+msgstr ""
-#. Label of a Table field in DocType 'DocType'
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Fields"
-msgstr "Campi"
-
-#. Label of a Table field in DocType 'DocType Layout'
-#: custom/doctype/doctype_layout/doctype_layout.json
-msgctxt "DocType Layout"
-msgid "Fields"
-msgstr "Campi"
-
-#. Label of a Code field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Fields"
-msgstr "Campi"
-
-#. Label of a HTML field in DocType 'List View Settings'
-#. Label of a Code field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
-msgid "Fields"
-msgstr "Campi"
-
-#. Label of a Small Text field in DocType 'Personal Data Deletion Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
-msgid "Fields"
-msgstr "Campi"
-
-#. Label of a Table field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
-msgid "Fields"
-msgstr "Campi"
-
-#. Label of a HTML field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#. Label of the fields_multicheck (HTML) field in DocType 'Data Export'
+#: frappe/core/doctype/data_export/data_export.json
msgid "Fields Multicheck"
-msgstr "Campi Multicheck"
+msgstr ""
-#: core/doctype/file/file.py:406
+#: frappe/core/doctype/file/file.py:410
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
+#: frappe/model/db_query.py:146
+msgid "Fields must be a list or tuple when as_list is enabled"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
-msgstr "I campi separati da virgola (,) saranno incluse nella "Ricerca per" elenco di finestra di dialogo di ricerca"
+msgstr ""
-#. Label of a Data field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the fieldtype (Select) field in DocType 'Report Column'
+#. Label of the fieldtype (Select) field in DocType 'Report Filter'
+#. Label of the fieldtype (Data) field in DocType 'Form Tour Step'
+#. Label of the fieldtype (Select) field in DocType 'Web Form Field'
+#. Label of the fieldtype (Data) field in DocType 'Web Form List Column'
+#. Label of the fieldtype (Select) field in DocType 'Web Template Field'
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Fieldtype"
-msgstr "Tipo di campo"
+msgstr ""
-#. Label of a Select field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Fieldtype"
-msgstr "Tipo di campo"
-
-#. Label of a Select field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Fieldtype"
-msgstr "Tipo di campo"
-
-#. Label of a Select field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Fieldtype"
-msgstr "Tipo di campo"
-
-#. Label of a Data field in DocType 'Web Form List Column'
-#: website/doctype/web_form_list_column/web_form_list_column.json
-msgctxt "Web Form List Column"
-msgid "Fieldtype"
-msgstr "Tipo di campo"
-
-#. Label of a Select field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Fieldtype"
-msgstr "Tipo di campo"
-
-#: custom/doctype/custom_field/custom_field.py:189
+#: frappe/custom/doctype/custom_field/custom_field.py:193
msgid "Fieldtype cannot be changed from {0} to {1}"
msgstr ""
-#: custom/doctype/customize_form/customize_form.py:586
+#: frappe/custom/doctype/customize_form/customize_form.py:588
msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
-msgstr "FieldType non può essere modificato da {0} a {1} in riga {2}"
-
-#. Name of a DocType
-#: core/doctype/file/file.json
-msgid "File"
-msgstr "File"
+msgstr ""
#. Label of a shortcut in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "File"
-msgid "File"
-msgstr "File"
-
+#. Name of a DocType
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/file/file.json
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "File"
-msgstr "File"
+msgstr ""
-#: core/doctype/file/utils.py:126
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478
+msgid "File \"{0}\" was skipped because of invalid file type"
+msgstr ""
+
+#: frappe/core/doctype/file/utils.py:128
msgid "File '{0}' not found"
-msgstr "File '{0}' non trovato"
+msgstr ""
-#. Label of a Check field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "File Backup"
-msgstr "Backup di file"
-
-#. Label of a Check field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "File Backup"
-msgstr "Backup di file"
-
-#. Label of a Section Break field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the private_file_section (Section Break) field in DocType 'Access
+#. Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "File Information"
-msgstr "Informazioni sul file"
+msgstr ""
-#: public/js/frappe/views/file/file_view.js:74
+#: frappe/public/js/frappe/views/file/file_view.js:74
msgid "File Manager"
-msgstr "File Manager"
+msgstr ""
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the file_name (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "File Name"
-msgstr "Nome del file"
+msgstr ""
-#. Label of a Int field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the file_size (Int) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "File Size"
-msgstr "Dimensione File"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:19
+#. Label of the section_break_ryki (Section Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "File Storage"
+msgstr ""
+
+#. Label of the file_type (Data) field in DocType 'Access Log'
+#. Label of the file_type (Select) field in DocType 'Data Export'
+#. Label of the file_type (Data) field in DocType 'File'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/data_export/data_export.json
+#: frappe/core/doctype/file/file.json
+#: frappe/public/js/frappe/data_import/data_exporter.js:19
msgid "File Type"
-msgstr "Tipo di file"
+msgstr ""
-#. Label of a Data field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
-msgid "File Type"
-msgstr "Tipo di file"
-
-#. Label of a Select field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
-msgid "File Type"
-msgstr "Tipo di file"
-
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
-msgid "File Type"
-msgstr "Tipo di file"
-
-#. Label of a Code field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the file_url (Code) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "File URL"
-msgstr "URL del file"
+msgstr ""
-#: desk/page/backups/backups.py:109
+#: frappe/desk/page/backups/backups.py:107
msgid "File backup is ready"
-msgstr "Il backup dei file è pronto"
+msgstr ""
-#: core/doctype/file/file.py:577
+#: frappe/core/doctype/file/file.py:624
msgid "File name cannot have {0}"
-msgstr "Il nome del file non può contenere {0}"
+msgstr ""
-#: utils/csvutils.py:26
+#: frappe/utils/csvutils.py:28
msgid "File not attached"
-msgstr "File non allegato"
+msgstr ""
-#: core/doctype/file/file.py:682 public/js/frappe/request.js:197
-#: utils/file_manager.py:221
+#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200
+#: frappe/utils/file_manager.py:221
msgid "File size exceeded the maximum allowed size of {0} MB"
-msgstr "La dimensione del file supera il massimo consentito di {0} MB"
+msgstr ""
-#: public/js/frappe/request.js:195
+#: frappe/public/js/frappe/request.js:198
msgid "File too big"
-msgstr "File troppo grande"
+msgstr ""
-#: core/doctype/file/file.py:373
+#: frappe/core/doctype/file/file.py:375
msgid "File type of {0} is not allowed"
msgstr ""
-#: core/doctype/file/file.py:360 core/doctype/file/file.py:422
+#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426
msgid "File {0} does not exist"
-msgstr "File {0} non esiste"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "File"
+#. Label of the files_tab (Tab Break) field in DocType 'System Settings'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Files"
-msgstr "File"
+msgstr ""
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Files"
-msgstr "File"
-
-#: email/doctype/auto_email_report/auto_email_report.js:90
-#: public/js/frappe/ui/filters/filter_list.js:132
+#: frappe/core/doctype/prepared_report/prepared_report.js:8
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
+#: frappe/desk/doctype/number_card/number_card.js:205
+#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
+#: frappe/public/js/frappe/list/base_list.js:953
+#: frappe/public/js/frappe/ui/filters/filter_list.js:134
+#: frappe/website/doctype/web_form/web_form.js:197
msgid "Filter"
-msgstr "Filtro"
+msgstr ""
-#. Label of a Section Break field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#: frappe/public/js/frappe/list/list_sidebar.html:36
+msgid "Filter By"
+msgstr ""
+
+#. Label of the filter_data (Section Break) field in DocType 'Auto Email
+#. Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Filter Data"
-msgstr "Filtro Dati"
+msgstr ""
-#. Label of a HTML field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
+#. Label of the filter_list (HTML) field in DocType 'Data Export'
+#: frappe/core/doctype/data_export/data_export.json
msgid "Filter List"
-msgstr "Elenco dei filtri"
+msgstr ""
-#. Label of a Text field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the filter_meta (Text) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Filter Meta"
-msgstr "Filtro Meta"
+msgstr ""
-#: public/js/frappe/list/list_filter.js:33
+#. Label of the filter_name (Data) field in DocType 'List Filter'
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/public/js/frappe/list/list_filter.js:33
msgid "Filter Name"
-msgstr "Nome del filtro"
+msgstr ""
-#. Label of a Data field in DocType 'List Filter'
-#: desk/doctype/list_filter/list_filter.json
-msgctxt "List Filter"
-msgid "Filter Name"
-msgstr "Nome del filtro"
-
-#. Label of a HTML field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Label of the filter_values (HTML) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Filter Values"
-msgstr "Valori del filtro"
+msgstr ""
-#: utils/data.py:2021
-msgid "Filter must be a tuple or list (in a list)"
-msgstr "Il filtro deve essere una tupla o un elenco (in un elenco)"
+#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
+msgid "Filter..."
+msgstr ""
-#: utils/data.py:2029
-msgid "Filter must have 4 values (doctype, fieldname, operator, value): {0}"
-msgstr "Il filtro deve avere 4 valori (doctype, nome di campo, operatore, valore): {0}"
-
-#. Label of a Data field in DocType 'Personal Data Deletion Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
+#. Label of the filtered_by (Data) field in DocType 'Personal Data Deletion
+#. Step'
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Filtered By"
msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:33
+#: frappe/public/js/frappe/data_import/data_exporter.js:33
msgid "Filtered Records"
-msgstr "Record filtrati"
-
-#: website/doctype/blog_post/blog_post.py:262
-#: website/doctype/help_article/help_article.py:91 www/list.py:45
-msgid "Filtered by \"{0}\""
-msgstr "Filtrato per "{0}""
-
-#. Label of a Code field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
-msgid "Filters"
-msgstr "Filtri"
-
-#. Label of a Text field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Filters"
-msgstr "Filtri"
-
-#. Label of a Section Break field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Filters"
-msgstr "Filtri"
-
-#. Label of a Code field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Filters"
-msgstr "Filtri"
-
-#. Label of a Long Text field in DocType 'List Filter'
-#: desk/doctype/list_filter/list_filter.json
-msgctxt "List Filter"
-msgid "Filters"
-msgstr "Filtri"
-
-#. Label of a Section Break field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Filters"
-msgstr "Filtri"
-
-#. Label of a Section Break field in DocType 'Prepared Report'
-#. Label of a Small Text field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
-msgid "Filters"
-msgstr "Filtri"
-
-#. Label of a Section Break field in DocType 'Report'
-#. Label of a Table field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Filters"
-msgstr "Filtri"
-
-#: public/js/frappe/ui/filters/filter_list.js:131
-msgid "Filters {0}"
msgstr ""
-#. Label of a Code field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/website/doctype/blog_post/blog_post.py:268
+#: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45
+msgid "Filtered by \"{0}\""
+msgstr ""
+
+#. Label of the filters (Code) field in DocType 'Access Log'
+#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
+#. Label of the filters (Small Text) field in DocType 'Prepared Report'
+#. Label of the filters_section (Section Break) field in DocType 'Report'
+#. Label of the filters (Table) field in DocType 'Report'
+#. Label of the filters_section (Section Break) field in DocType 'Dashboard
+#. Chart'
+#. Label of the filters (Code) field in DocType 'Kanban Board'
+#. Label of the filters (Long Text) field in DocType 'List Filter'
+#. Label of the filters (Text) field in DocType 'Auto Email Report'
+#. Label of the filters (Section Break) field in DocType 'Notification'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/report/report.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/notification/notification.json
+msgid "Filters"
+msgstr ""
+
+#. Label of the filters_config (Code) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters Configuration"
-msgstr "Configurazione dei filtri"
+msgstr ""
-#. Label of a HTML field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the filters_display (HTML) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Filters Display"
-msgstr "filtri di visualizzazione"
+msgstr ""
-#. Label of a Code field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the filters_json (Code) field in DocType 'Dashboard Chart'
+#. Label of the filters_json (Code) field in DocType 'Number Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters JSON"
-msgstr "Filtri JSON"
+msgstr ""
-#. Label of a Code field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Filters JSON"
-msgstr "Filtri JSON"
-
-#. Label of a Section Break field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#. Label of the filters_section (Section Break) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Filters Section"
-msgstr "Sezione filtri"
+msgstr ""
-#: public/js/frappe/form/controls/link.js:486
+#: frappe/public/js/frappe/form/controls/link.js:510
msgid "Filters applied for {0}"
-msgstr "Filtri applicati per {0}"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:186
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
msgid "Filters saved"
-msgstr "filtri salvati"
+msgstr ""
#. Description of the 'Script' (Code) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#: frappe/core/doctype/report/report.json
msgid "Filters will be accessible via filters.
Send output as result = [result], or for old style data = [columns], [result]"
-msgstr "I filtri saranno accessibili tramite filters .
Invia l'output come result = [result] o per i data = [columns], [result] vecchio stile data = [columns], [result]"
+msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:556
+#: frappe/public/js/frappe/ui/filters/filter_list.js:133
+msgid "Filters {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1427
+msgid "Filters:"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572
msgid "Find '{0}' in ..."
msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:325
-#: public/js/frappe/ui/toolbar/awesome_bar.js:326
-#: public/js/frappe/ui/toolbar/search_utils.js:125
-#: public/js/frappe/ui/toolbar/search_utils.js:128
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144
msgid "Find {0} in {1}"
-msgstr "Trova {0} in {1}"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Finished"
-msgstr "Finito"
+msgstr ""
-#. Label of a Datetime field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Label of the report_end_time (Datetime) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Finished At"
msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the first_day_of_the_week (Select) field in DocType 'Language'
+#. Label of the first_day_of_the_week (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "First Day of the Week"
msgstr ""
-#: www/complete_signup.html:15
+#. Label of the first_name (Data) field in DocType 'Contact'
+#. Label of the first_name (Data) field in DocType 'User'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
msgid "First Name"
-msgstr "Nome"
+msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "First Name"
-msgstr "Nome"
-
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "First Name"
-msgstr "Nome"
-
-#. Label of a Data field in DocType 'Success Action'
-#: core/doctype/success_action/success_action.json
-msgctxt "Success Action"
+#. Label of the first_success_message (Data) field in DocType 'Success Action'
+#: frappe/core/doctype/success_action/success_action.json
msgid "First Success Message"
-msgstr "Primo messaggio di successo"
+msgstr ""
-#: core/report/transaction_log_report/transaction_log_report.py:49
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:49
msgid "First Transaction"
-msgstr "Prima transazione"
+msgstr ""
-#: core/doctype/data_export/exporter.py:185
+#: frappe/core/doctype/data_export/exporter.py:185
msgid "First data column must be blank."
-msgstr "Prima colonna di dati deve essere vuota."
+msgstr ""
-#: website/doctype/website_slideshow/website_slideshow.js:7
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:7
msgid "First set the name and save the record."
-msgstr "Prima imposta il nome e salva il record."
+msgstr ""
-#. Label of a Data field in DocType 'Language'
-#: core/doctype/language/language.json
-msgctxt "Language"
+#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:304
+msgid "Fit"
+msgstr ""
+
+#. Label of the flag (Data) field in DocType 'Language'
+#: frappe/core/doctype/language/language.json
msgid "Flag"
-msgstr "Bandiera"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Float"
-msgstr "Float"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Float"
-msgstr "Float"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Float"
-msgstr "Float"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Float"
-msgstr "Float"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Float"
-msgstr "Float"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Float"
-msgstr "Float"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the float_precision (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Float Precision"
-msgstr "Float Precision"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Fold"
-msgstr "Piega"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Fold"
-msgstr "Piega"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Fold"
-msgstr "Piega"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Fold"
-msgstr "Piega"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Fold"
-msgstr "Piega"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1401
+#: frappe/core/doctype/doctype/doctype.py:1450
msgid "Fold can not be at the end of the form"
-msgstr "Fold non può essere alla fine del modulo"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1399
+#: frappe/core/doctype/doctype/doctype.py:1448
msgid "Fold must come before a Section Break"
-msgstr "Piegare deve venire prima di un'interruzione di sezione"
+msgstr ""
-#. Label of a Link field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the folder (Link) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Folder"
-msgstr "Cartella"
+msgstr ""
-#. Label of a Data field in DocType 'IMAP Folder'
-#: email/doctype/imap_folder/imap_folder.json
-msgctxt "IMAP Folder"
+#. Label of the folder_name (Data) field in DocType 'IMAP Folder'
+#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "Folder Name"
msgstr ""
-#: public/js/frappe/views/file/file_view.js:100
+#: frappe/public/js/frappe/views/file/file_view.js:100
msgid "Folder name should not include '/' (slash)"
-msgstr "Il nome della cartella non dovrebbe includere '/' (slash)"
+msgstr ""
-#: core/doctype/file/file.py:466
+#: frappe/core/doctype/file/file.py:472
msgid "Folder {0} is not empty"
-msgstr "Cartella {0} non è vuoto"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Folio"
msgstr ""
-#: public/js/frappe/form/sidebar/form_sidebar.js:232
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
+#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Follow"
-msgstr "Seguire"
+msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.py:124
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:101
+msgid "Followed by"
+msgstr ""
+
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
msgid "Following Report Filters have missing values:"
msgstr ""
-#: website/doctype/web_form/web_form.py:107
-msgid "Following fields are missing:"
-msgstr "Seguenti campi mancanti:"
+#: frappe/desk/form/document_follow.py:63
+msgid "Following document {0}"
+msgstr ""
-#: public/js/frappe/ui/field_group.js:133
+#: 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 ""
-#: public/js/frappe/widgets/widget_dialog.js:314
+#: frappe/public/js/frappe/widgets/widget_dialog.js:358
msgid "Following fields have missing values"
msgstr ""
-#: public/js/frappe/ui/field_group.js:120
+#: frappe/public/js/frappe/ui/field_group.js:126
msgid "Following fields have missing values:"
-msgstr "Seguenti campi hanno valori mancanti:"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:30
+#: frappe/email/doctype/newsletter/newsletter.js:30
msgid "Following links are broken in the email content: {0}"
msgstr ""
-#. Label of a Select field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the font (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
-msgstr "Font"
+msgstr ""
-#. Label of a Data field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the font_properties (Data) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Font Properties"
-msgstr "Proprietà dei caratteri"
+msgstr ""
-#. Label of a Int field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the font_size (Int) field in DocType 'Print Format'
+#. Label of the font_size (Float) field in DocType 'Print Settings'
+#. Label of the font_size (Data) field in DocType 'Website Theme'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:45
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Font Size"
-msgstr "Dimensioni Font"
+msgstr ""
-#. Label of a Float field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Font Size"
-msgstr "Dimensioni Font"
-
-#. Label of a Data field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Font Size"
-msgstr "Dimensioni Font"
-
-#. Label of a Section Break field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the section_break_8 (Section Break) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Fonts"
-msgstr "Caratteri"
-
-#. Label of a Text Editor field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
-msgid "Footer"
-msgstr "Piè di pagina"
-
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Footer"
-msgstr "Piè di pagina"
-
-#. Label of a Section Break field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
-msgid "Footer"
-msgstr "Piè di pagina"
+msgstr ""
+#. Label of the set_footer (Section Break) field in DocType 'Email Account'
+#. Label of the footer_section (Section Break) field in DocType 'Letter Head'
+#. Label of the footer (Text Editor) field in DocType 'About Us Settings'
#. Option for the 'Type' (Select) field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
+#. Label of the footer_tab (Tab Break) field in DocType 'Website Settings'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer"
-msgstr "Piè di pagina"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Footer"
-msgstr "Piè di pagina"
-
-#. Label of a Small Text field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer_powered (Small Text) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer \"Powered By\""
msgstr ""
-#. Label of a Select field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the footer_source (Select) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer Based On"
msgstr ""
-#. Label of a Text Editor field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the footer (Text Editor) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Footer Content"
msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer_details_section (Section Break) field in DocType
+#. 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Details"
msgstr ""
-#. Label of a HTML Editor field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the footer (HTML Editor) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer HTML"
-msgstr "Piè di pagina HTML"
+msgstr ""
-#: printing/doctype/letter_head/letter_head.py:72
+#: frappe/printing/doctype/letter_head/letter_head.py:75
msgid "Footer HTML set from attachment {0}"
msgstr ""
-#. Label of a Section Break field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the footer_image_section (Section Break) field in DocType 'Letter
+#. Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer Image"
msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#. Label of a Table field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer (Section Break) field in DocType 'Website Settings'
+#. Label of the footer_items (Table) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Items"
-msgstr "Elementi Piè di Pagina"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer_logo (Attach Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Logo"
-msgstr "Logo piè di pagina"
+msgstr ""
-#. Label of a Link field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer_script (Code) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Footer Script"
+msgstr ""
+
+#. Label of the footer_template (Link) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Template"
-msgstr "Modello piè di pagina"
+msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the footer_template_values (Code) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Template Values"
-msgstr "Valori modello piè di pagina"
+msgstr ""
-#: printing/page/print/print.js:116
+#: frappe/printing/page/print/print.js:116
msgid "Footer might not be visible as {0} option is disabled
"
msgstr ""
#. Description of the 'Footer HTML' (HTML Editor) field in DocType 'Letter
#. Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer will display correctly only in PDF"
-msgstr "Il piè di pagina verrà visualizzato correttamente solo 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'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "For DocType Link / DocType Action"
-msgstr "Per DocType Link / DocType Action"
+msgstr ""
-#. Label of a Select field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "For Document Event"
-msgstr "Per Evento Documento"
+#. Label of the for_document (Dynamic Link) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "For Document"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:155
+#: frappe/core/doctype/user_permission/user_permission_list.js:155
msgid "For Document Type"
-msgstr "Per tipo di documento"
+msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:529
+#: frappe/public/js/frappe/widgets/widget_dialog.js:566
msgid "For Example: {} Open"
-msgstr "Ad esempio: {} Apri"
-
-#. Description of the 'Options' (Small Text) field in DocType 'Customize Form
-#. Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid ""
-"For Links, enter the DocType as range.\n"
-"For Select, enter list of Options, each on a new line."
msgstr ""
#. Description of the 'Options' (Small Text) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid ""
-"For Links, enter the DocType as range.\n"
+#. 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 ""
-#: core/doctype/user_permission/user_permission_list.js:10
-#: core/doctype/user_permission/user_permission_list.js:148
+#. Label of the for_user (Link) field in DocType 'List Filter'
+#. Label of the for_user (Link) field in DocType 'Notification Log'
+#. Label of the for_user (Data) field in DocType 'Workspace'
+#: frappe/core/doctype/user_permission/user_permission_list.js:10
+#: frappe/core/doctype/user_permission/user_permission_list.js:148
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/workspace/workspace.json
msgid "For User"
-msgstr "per l'utente"
+msgstr ""
-#. Label of a Link field in DocType 'List Filter'
-#: desk/doctype/list_filter/list_filter.json
-msgctxt "List Filter"
-msgid "For User"
-msgstr "per l'utente"
-
-#. Label of a Link field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "For User"
-msgstr "per l'utente"
-
-#. Label of a Data field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "For User"
-msgstr "per l'utente"
-
-#. Label of a Dynamic Link field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
+#. Label of the for_value (Dynamic Link) field in DocType 'User Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
msgid "For Value"
-msgstr "Per valore"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1958
-#: public/js/frappe/views/reports/report_view.js:96
+#: frappe/public/js/frappe/views/reports/query_report.js:2068
+#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
-msgstr "Per il confronto, utilizzare> 5, <10 o = 324. Per gli intervalli, utilizzare 5:10 (per valori compresi tra 5 e 10)."
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:744
+#: frappe/core/page/permission_manager/permission_manager_help.html:19
+msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment."
+msgstr ""
+
+#: frappe/public/js/frappe/utils/dashboard_utils.js:162
+msgid "For example:"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:752
msgid "For example: If you want to include the document ID, use {0}"
-msgstr "Ad esempio: se si desidera includere l'ID del documento, utilizzare {0}"
+msgstr ""
#. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "For example: {} Open"
-msgstr "Ad esempio: {} Apri"
+msgstr ""
-#. Description of the 'Client Script' (Code) field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Description of the 'Client script' (Code) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "For help see Client Script API and Examples"
-msgstr "Per assistenza, vedere API Script client ed esempi"
+msgstr ""
#. Description of the 'Enable Automatic Linking in Documents' (Check) field in
#. DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "For more information, click here."
-msgstr "Per maggiori informazioni, clicca qui ."
+msgstr ""
-#: integrations/doctype/google_settings/google_settings.js:7
+#: frappe/integrations/doctype/google_settings/google_settings.js:7
msgid "For more information, {0}."
-msgstr "Per ulteriori informazioni, {0}."
+msgstr ""
#. Description of the 'Email To' (Small Text) field in DocType 'Auto Email
#. Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "For multiple addresses, enter the address on different line. e.g. test@test.com ⏎ test1@test.com"
msgstr ""
-#: core/doctype/data_export/exporter.py:199
+#: frappe/core/doctype/data_export/exporter.py:197
msgid "For updating, you can update only selective columns."
-msgstr "Per l'aggiornamento, è possibile aggiornare le colonne solo selettivi."
+msgstr ""
-#: core/doctype/doctype/doctype.py:1692
+#: frappe/core/doctype/doctype/doctype.py:1751
msgid "For {0} at level {1} in {2} in row {3}"
-msgstr "Per {0} a livello {1} {2} in riga {3}"
+msgstr ""
+#. Label of the force (Check) field in DocType 'Package Import'
#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth
#. Provider Settings'
-#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
-msgctxt "OAuth Provider Settings"
+#: frappe/core/doctype/package_import/package_import.json
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
msgid "Force"
-msgstr "Vigore"
+msgstr ""
-#. Label of a Check field in DocType 'Package Import'
-#: core/doctype/package_import/package_import.json
-msgctxt "Package Import"
-msgid "Force"
-msgstr "Vigore"
-
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the force_re_route_to_default_view (Check) field in DocType
+#. 'DocType'
+#. Label of the force_re_route_to_default_view (Check) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Force Re-route to Default View"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Force Re-route to Default View"
-msgstr ""
-
-#. Label of a Check field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#. Label of the force_show (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Force Show"
-msgstr "forza Visualizza"
+msgstr ""
-#: core/doctype/rq_job/rq_job.js:13
+#: frappe/core/doctype/rq_job/rq_job.js:13
msgid "Force Stop job"
msgstr ""
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the force_user_to_reset_password (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Force User to Reset Password"
-msgstr "Forza l'utente a reimpostare la password"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the force_web_capture_mode_for_uploads (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Force Web Capture Mode for Uploads"
msgstr ""
-#: www/login.html:35
+#: frappe/www/login.html:37
msgid "Forgot Password?"
-msgstr "Hai dimenticato la password?"
-
-#: printing/page/print/print.js:83
-msgid "Form"
msgstr ""
+#. Label of the form_builder_tab (Tab Break) field in DocType 'DocType'
#. Option for the 'Apply To' (Select) field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
-msgid "Form"
-msgstr ""
-
-#. Label of a Tab Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Form"
-msgstr ""
-
-#. Label of a Tab Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Form"
-msgstr ""
-
+#. Label of the form_tab (Tab Break) field in DocType 'Customize Form'
#. Option for the 'View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the form_tab (Tab Break) field in DocType 'Web Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/printing/page/print/print.js:83
+#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
msgstr ""
-#. Label of a Tab Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Form"
-msgstr ""
-
-#. Label of a HTML field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the form_builder (HTML) field in DocType 'DocType'
+#. Label of the form_builder (HTML) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Form Builder"
msgstr ""
-#. Label of a HTML field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Form Builder"
-msgstr ""
-
-#. Label of a Code field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#. Label of the form_dict (Code) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
msgid "Form Dict"
msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the form_settings_section (Section Break) field in DocType
+#. 'DocType'
+#. Label of the form_settings_section (Section Break) field in DocType 'User'
+#. Label of the form_settings_section (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the form_settings_section (Section Break) field in DocType 'Web
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json frappe/core/doctype/user/user.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/website/doctype/web_form/web_form.json
msgid "Form Settings"
-msgstr "Impostazioni modulo"
-
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Form Settings"
-msgstr "Impostazioni modulo"
-
-#. Label of a Section Break field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
-msgid "Form Settings"
-msgstr "Impostazioni modulo"
-
-#. Name of a DocType
-#: desk/doctype/form_tour/form_tour.json
-msgid "Form Tour"
msgstr ""
-#. Label of a Link field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Name of a DocType
+#. Label of the form_tour (Link) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Form Tour"
msgstr ""
#. Name of a DocType
-#: desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Form Tour Step"
msgstr ""
#. Option for the 'Request Structure' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Form URL-Encoded"
-msgstr "Modulo con codifica URL"
+msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:528
+#. Label of the format (Data) field in DocType 'Workspace Shortcut'
+#. Label of the format (Select) field in DocType 'Auto Email Report'
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
msgid "Format"
-msgstr "Formato"
+msgstr ""
-#. Label of a Select field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Format"
-msgstr "Formato"
-
-#. Label of a Data field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Format"
-msgstr "Formato"
-
-#. Label of a Code field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the format_data (Code) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Format Data"
-msgstr "Formato dati"
+msgstr ""
-#: core/doctype/communication/communication.js:70
+#: frappe/core/doctype/communication/communication.js:70
msgid "Forward"
-msgstr "Inoltrare"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the 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 "Inoltra a Indirizzo e-mail"
+msgstr ""
-#. Label of a Data field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the fraction (Data) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
msgid "Fraction"
-msgstr "Frazione"
+msgstr ""
-#. Label of a Int field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the fraction_units (Int) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
msgid "Fraction Units"
-msgstr "Unità Frazione"
-
-#: www/login.html:61 www/login.html:142 www/login.py:44 www/login.py:134
-msgid "Frappe"
-msgstr "Frappé"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/www/login.html:64 frappe/www/login.html:162 frappe/www/login.py:53
+#: frappe/www/login.py:153
msgid "Frappe"
-msgstr "Frappé"
+msgstr ""
-#: public/js/frappe/ui/toolbar/about.js:4
+#: frappe/public/js/frappe/ui/toolbar/about.js:4
msgid "Frappe Framework"
-msgstr "Frappe Framework"
+msgstr ""
-#: public/js/frappe/ui/theme_switcher.js:59
+#: frappe/public/js/frappe/ui/theme_switcher.js:59
msgid "Frappe Light"
msgstr ""
+#. Option for the 'Service' (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Frappe Mail"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:547
+msgid "Frappe Mail OAuth Error"
+msgstr ""
+
+#. Label of the frappe_mail_site (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Frappe Mail Site"
+msgstr ""
+
#. Label of a standard help item
-#. Type: Action
-#: hooks.py
+#. Type: Route
+#: frappe/hooks.py
msgid "Frappe Support"
msgstr ""
-#: public/js/frappe/utils/common.js:395
-msgid "Frequency"
-msgstr "Frequenza"
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "Frappe page builder using components"
+msgstr ""
-#. Label of a Select field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Frequency"
-msgstr "Frequenza"
+#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:112
+msgctxt "Image Cropper"
+msgid "Free"
+msgstr ""
-#. Label of a Select field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. 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 "Frequenza"
-
-#. Label of a Select field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Frequency"
-msgstr "Frequenza"
-
-#. Label of a Select field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Frequency"
-msgstr "Frequenza"
-
-#. Label of a Select field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Frequency"
-msgstr "Frequenza"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Friday"
-msgstr "Venerdì"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Friday"
-msgstr "Venerdì"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Friday"
-msgstr "Venerdì"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Friday"
-msgstr "Venerdì"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the friday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Friday"
-msgstr "Venerdì"
+msgstr ""
-#: public/js/frappe/views/communication.js:170
-#: public/js/frappe/views/inbox/inbox_view.js:70
+#. Label of the sender (Data) field in DocType 'Communication'
+#. Label of the from_section (Section Break) field in DocType 'Newsletter'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/permission_log/permission_log.js:12
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
-msgstr "Da"
+msgstr ""
-#. Label of a Data field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/public/js/frappe/views/communication.js:194
+msgctxt "Email Sender"
msgid "From"
-msgstr "Da"
+msgstr ""
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "From"
-msgstr "Da"
-
-#: website/report/website_analytics/website_analytics.js:8
+#. Label of the from_date (Date) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/website/report/website_analytics/website_analytics.js:8
msgid "From Date"
-msgstr "Da Data"
+msgstr ""
-#. Label of a Date field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "From Date"
-msgstr "Da Data"
-
-#. Label of a Select field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the from_date_field (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "From Date Field"
-msgstr "Dal campo data"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1672
+#: frappe/public/js/frappe/views/reports/query_report.js:1779
msgid "From Document Type"
-msgstr "Dal tipo di documento"
+msgstr ""
-#. Label of a Data field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the sender_full_name (Data) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "From Full Name"
-msgstr "Da Nome completo"
+msgstr ""
-#. Label of a Link field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#. Label of the from_user (Link) field in DocType 'Notification Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "From User"
-msgstr "Da utente"
+msgstr ""
-#: public/js/frappe/utils/diffview.js:30
+#: frappe/public/js/frappe/utils/diffview.js:31
msgid "From version"
msgstr ""
#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link'
-#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json
-msgctxt "Dashboard Chart Link"
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
msgid "Full"
-msgstr "Pieno"
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:464 templates/signup.html:4
+#. Label of the full_name (Data) field in DocType 'Contact'
+#. Label of the full_name (Data) field in DocType 'Activity Log'
+#. Label of the full_name (Data) field in DocType 'User'
+#. Label of the full_name (Data) field in DocType 'About Us Team Member'
+#. Label of the full_name (Data) field in DocType 'Blogger'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/user/user.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:479
+#: frappe/templates/signup.html:4
+#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
+#: frappe/website/doctype/blogger/blogger.json
msgid "Full Name"
-msgstr "Nome Completo"
+msgstr ""
-#. Label of a Data field in DocType 'About Us Team Member'
-#: website/doctype/about_us_team_member/about_us_team_member.json
-msgctxt "About Us Team Member"
-msgid "Full Name"
-msgstr "Nome Completo"
-
-#. Label of a Data field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Full Name"
-msgstr "Nome Completo"
-
-#. Label of a Data field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
-msgid "Full Name"
-msgstr "Nome Completo"
-
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Full Name"
-msgstr "Nome Completo"
-
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Full Name"
-msgstr "Nome Completo"
-
-#: printing/page/print/print.js:67
+#: frappe/printing/page/print/print.js:67
+#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
-msgstr "Pagina completa"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the full_width (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Full Width"
-msgstr "Intera larghezza"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:245
-#: public/js/frappe/widgets/widget_dialog.js:666
+#. Label of the function (Select) field in DocType 'Number Card'
+#. Label of the report_function (Select) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
-msgstr "Funzione"
+msgstr ""
-#. Label of a Select field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Function"
-msgstr "Funzione"
-
-#: public/js/frappe/widgets/widget_dialog.js:673
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
-msgstr "Funzione basata su"
+msgstr ""
-#: __init__.py:835
+#: frappe/__init__.py:677
msgid "Function {0} is not whitelisted."
msgstr ""
-#: public/js/frappe/views/treeview.js:402
+#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
-msgstr "Ulteriori nodi possono essere creati solo sotto i nodi di tipo ' Gruppo '"
+msgstr ""
-#: core/doctype/communication/communication.js:291
+#: frappe/core/doctype/communication/communication.js:291
msgid "Fw: {0}"
-msgstr "Fw: {0}"
+msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#: frappe/core/doctype/recorder/recorder.json
msgid "GET"
msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "GMail"
-msgstr "GMail"
+msgstr ""
#. Option for the 'License Type' (Select) field in DocType 'Package'
-#: core/doctype/package/package.json
-msgctxt "Package"
+#: frappe/core/doctype/package/package.json
msgid "GNU Affero General Public License"
msgstr ""
#. Option for the 'License Type' (Select) field in DocType 'Package'
-#: core/doctype/package/package.json
-msgctxt "Package"
+#: frappe/core/doctype/package/package.json
msgid "GNU General Public License"
msgstr ""
-#: public/js/frappe/views/gantt/gantt_view.js:10
-msgid "Gantt"
-msgstr "Gantt"
-
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/public/js/frappe/views/gantt/gantt_view.js:10
msgid "Gantt"
-msgstr "Gantt"
-
-#. Name of a DocType
-#: contacts/doctype/gender/gender.json
-msgid "Gender"
-msgstr "Genere"
-
-#. Label of a Link field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Gender"
-msgstr "Genere"
-
-#. Label of a Data field in DocType 'Gender'
-#: contacts/doctype/gender/gender.json
-msgctxt "Gender"
-msgid "Gender"
-msgstr "Genere"
-
-#. Label of a Link field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Gender"
-msgstr "Genere"
-
-#. Title of an Onboarding Step
-#: custom/onboarding_step/report_builder/report_builder.json
-msgid "Generate Custom Reports"
msgstr ""
-#. Label of a Button field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: 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 "Genera chiavi"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:803
+#: frappe/public/js/frappe/views/reports/query_report.js:872
msgid "Generate New Report"
-msgstr "Genera nuovo rapporto"
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:366
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:394
msgid "Generate Random Password"
msgstr ""
-#: public/js/frappe/ui/toolbar/toolbar.js:137
-#: public/js/frappe/utils/utils.js:1750
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:176
+#: frappe/public/js/frappe/utils/utils.js:1787
msgid "Generate Tracking URL"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Geolocation"
-msgstr "geolocalizzazione"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Geolocation"
-msgstr "geolocalizzazione"
+#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "Geoapify"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Geolocation"
-msgstr "geolocalizzazione"
+msgstr ""
-#: email/doctype/notification/notification.js:170
+#. Name of a DocType
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "Geolocation Settings"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.js:219
msgid "Get Alerts for Today"
-msgstr "Ricevi avvisi di Oggi"
+msgstr ""
-#: desk/page/backups/backups.js:19
+#: frappe/desk/page/backups/backups.js:21
msgid "Get Backup Encryption Key"
msgstr ""
-#. Label of a Button field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the get_contacts (Button) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Get Contacts"
-msgstr "Ottieni contatti"
+msgstr ""
-#: website/doctype/web_form/web_form.js:84
+#: frappe/website/doctype/web_form/web_form.js:93
msgid "Get Fields"
-msgstr "Ottieni campi"
+msgstr ""
-#: public/js/frappe/form/multi_select_dialog.js:85
+#: frappe/printing/doctype/letter_head/letter_head.js:32
+msgid "Get Header and Footer wkhtmltopdf variables"
+msgstr ""
+
+#: frappe/public/js/frappe/form/multi_select_dialog.js:86
msgid "Get Items"
-msgstr "Ottieni Articoli"
+msgstr ""
-#: integrations/doctype/connected_app/connected_app.js:6
+#: frappe/integrations/doctype/connected_app/connected_app.js:6
msgid "Get OpenID Configuration"
msgstr ""
-#: www/printview.html:22
+#: frappe/www/printview.html:22
msgid "Get PDF"
msgstr ""
#. Description of the 'Try a Naming Series' (Data) field in DocType 'Document
#. Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Get a preview of generated names with a series."
msgstr ""
+#: frappe/public/js/frappe/list/list_sidebar.js:305
+msgid "Get more insights with"
+msgstr ""
+
#. Description of the 'Email Threads on Assigned Document' (Check) field in
#. DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Get notified when an email is received on any of the documents assigned to you."
msgstr ""
#. Description of the 'User Image' (Attach Image) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Get your globally recognized avatar from Gravatar.com"
-msgstr "Ottieni il tuo avatar riconosciuta a livello mondiale da Gravatar.com"
+msgstr ""
-#. Label of a Data field in DocType 'Installed Application'
-#: core/doctype/installed_application/installed_application.json
-msgctxt "Installed Application"
+#. Label of the git_branch (Data) field in DocType 'Installed Application'
+#: frappe/core/doctype/installed_application/installed_application.json
msgid "Git Branch"
-msgstr "Git Branch"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "GitHub"
-msgstr "GitHub"
+msgstr ""
-#: social/doctype/energy_point_settings/energy_point_settings.js:7
-#: social/doctype/energy_point_settings/energy_point_settings.js:14
-msgid "Give Review Points"
-msgstr "Dai punti di recensione"
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "Github flavoured markdown syntax"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/global_search_doctype/global_search_doctype.json
+#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json
msgid "Global Search DocType"
-msgstr "Ricerca globale DocType"
+msgstr ""
-#: desk/doctype/global_search_settings/global_search_settings.js:24
+#: frappe/desk/doctype/global_search_settings/global_search_settings.js:24
msgid "Global Search Document Types Reset."
-msgstr "Ripristina tipi di documento di ricerca globale."
+msgstr ""
#. Name of a DocType
-#: desk/doctype/global_search_settings/global_search_settings.json
+#: frappe/desk/doctype/global_search_settings/global_search_settings.json
msgid "Global Search Settings"
-msgstr "Impostazioni di ricerca globale"
+msgstr ""
-#: public/js/frappe/ui/keyboard.js:118
+#: frappe/public/js/frappe/ui/keyboard.js:122
msgid "Global Shortcuts"
-msgstr "Scorciatoie globali"
+msgstr ""
-#. Label of a Check field in DocType 'Email Unsubscribe'
-#: email/doctype/email_unsubscribe/email_unsubscribe.json
-msgctxt "Email Unsubscribe"
+#. Label of the global_unsubscribe (Check) field in DocType 'Email Unsubscribe'
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
msgid "Global Unsubscribe"
-msgstr "Annullamento iscrizione globale"
+msgstr ""
-#: desk/page/user_profile/user_profile_controller.js:68
-#: public/js/frappe/form/toolbar.js:767
+#: frappe/public/js/frappe/form/toolbar.js:840
msgid "Go"
-msgstr "Cerca"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:246
-#: public/js/frappe/widgets/onboarding_widget.js:326
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:241
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:321
msgid "Go Back"
-msgstr "Torna indietro"
+msgstr ""
-#: desk/doctype/notification_settings/notification_settings.js:17
+#: frappe/desk/doctype/notification_settings/notification_settings.js:17
msgid "Go to Notification Settings List"
msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Go to Page"
-msgstr "Vai alla pagina"
+msgstr ""
-#: public/js/workflow_builder/workflow_builder.bundle.js:41
+#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:41
msgid "Go to Workflow"
msgstr ""
-#: desk/doctype/workspace/workspace.js:18
+#: frappe/desk/doctype/workspace/workspace.js:18
msgid "Go to Workspace"
msgstr ""
-#: public/js/frappe/form/form.js:144
+#: frappe/public/js/frappe/form/form.js:144
msgid "Go to next record"
-msgstr "Vai al record successivo"
+msgstr ""
-#: public/js/frappe/form/form.js:154
+#: frappe/public/js/frappe/form/form.js:154
msgid "Go to previous record"
-msgstr "Vai al record precedente"
+msgstr ""
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:52
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:53
msgid "Go to the document"
-msgstr "Vai al documento"
+msgstr ""
#. Description of the 'Success URL' (Data) field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#: frappe/website/doctype/web_form/web_form.json
msgid "Go to this URL after completing the form"
msgstr ""
-#: core/doctype/doctype/doctype.js:54
-#: custom/doctype/client_script/client_script.js:10
+#: frappe/core/doctype/doctype/doctype.js:54
+#: frappe/custom/doctype/client_script/client_script.js:10
msgid "Go to {0}"
-msgstr "Vai a {0}"
+msgstr ""
-#: core/doctype/data_import/data_import.js:92
-#: core/doctype/doctype/doctype.js:58
-#: custom/doctype/customize_form/customize_form.js:104
-#: custom/doctype/doctype_layout/doctype_layout.js:42
-#: workflow/doctype/workflow/workflow.js:44
+#: frappe/core/doctype/data_import/data_import.js:92
+#: frappe/core/doctype/doctype/doctype.js:55
+#: frappe/custom/doctype/customize_form/customize_form.js:104
+#: frappe/custom/doctype/doctype_layout/doctype_layout.js:42
+#: frappe/workflow/doctype/workflow/workflow.js:44
msgid "Go to {0} List"
-msgstr "Vai a {0} Elenco"
+msgstr ""
-#: core/doctype/page/page.js:11
+#: frappe/core/doctype/page/page.js:11
msgid "Go to {0} Page"
-msgstr "Vai a {0} Pagina"
+msgstr ""
-#: utils/goal.py:115 utils/goal.py:122
+#: frappe/utils/goal.py:115 frappe/utils/goal.py:122
msgid "Goal"
-msgstr "Obiettivo"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Google"
-msgstr "Google"
+msgstr ""
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the google_analytics_id (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Google Analytics ID"
-msgstr "Google Analytics ID"
+msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the google_analytics_anonymize_ip (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Google Analytics anonymise IP"
msgstr ""
+#. Label of the sb_00 (Section Break) field in DocType 'Event'
+#. Label of the google_calendar (Link) field in DocType 'Event'
#. Name of a DocType
-#: integrations/doctype/google_calendar/google_calendar.json
-msgid "Google Calendar"
-msgstr "Google Calendar"
-
-#. Label of a Section Break field in DocType 'Event'
-#. Label of a Link field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Google Calendar"
-msgstr "Google Calendar"
-
-#. Label of a Section Break field in DocType 'Google Calendar'
+#. Label of the sb_00 (Section Break) field in DocType 'Google Calendar'
#. Label of a Link in the Integrations Workspace
-#: integrations/doctype/google_calendar/google_calendar.json
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Google Calendar"
+#: frappe/desk/doctype/event/event.json
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Calendar"
-msgstr "Google Calendar"
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:781
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:810
msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}"
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:251
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:266
msgid "Google Calendar - Could not create Calendar for {0}, error code {1}."
-msgstr "Google Calendar: impossibile creare il calendario per {0}, codice errore {1}."
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:575
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:610
msgid "Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}."
-msgstr "Google Calendar: impossibile eliminare l'evento {0} da Google Calendar, codice errore {1}."
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:288
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:305
msgid "Google Calendar - Could not fetch event from Google Calendar, error code {0}."
-msgstr "Google Calendar: impossibile recuperare l'evento da Google Calendar, codice di errore {0}."
+msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.py:229
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:252
+msgid "Google Calendar - Could not find Calendar for {0}, error code {1}."
+msgstr ""
+
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:232
msgid "Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}."
-msgstr "Google Calendar: impossibile inserire il contatto nei Contatti Google {0}, codice errore {1}."
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:458
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:496
msgid "Google Calendar - Could not insert event in Google Calendar {0}, error code {1}."
-msgstr "Google Calendar: impossibile inserire l'evento in Google Calendar {0}, codice errore {1}."
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:542
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:580
msgid "Google Calendar - Could not update Event {0} in Google Calendar, error code {1}."
-msgstr "Google Calendar: impossibile aggiornare l'evento {0} in Google Calendar, codice errore {1}."
+msgstr ""
-#. Label of a Data field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the google_calendar_event_id (Data) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Google Calendar Event ID"
-msgstr "ID evento di Google Calendar"
+msgstr ""
-#. Label of a Data field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the google_calendar_id (Data) field in DocType 'Event'
+#. Label of the google_calendar_id (Data) field in DocType 'Google Calendar'
+#: frappe/desk/doctype/event/event.json
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Google Calendar ID"
-msgstr "Google Calendar ID"
+msgstr ""
-#. Label of a Data field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
-msgid "Google Calendar ID"
-msgstr "Google Calendar ID"
-
-#: integrations/doctype/google_calendar/google_calendar.py:166
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:181
msgid "Google Calendar has been configured."
-msgstr "Google Calendar è stato configurato."
+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
-#: integrations/doctype/google_contacts/google_contacts.json
-msgid "Google Contacts"
-msgstr "Contatti Google"
-
-#. Label of a Section Break field in DocType 'Contact'
-#. Label of a Link field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Google Contacts"
-msgstr "Contatti Google"
-
-#. Label of a Section Break field in DocType 'Google Contacts'
+#. Label of the sb_00 (Section Break) field in DocType 'Google Contacts'
#. Label of a Link in the Integrations Workspace
-#: integrations/doctype/google_contacts/google_contacts.json
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Google Contacts"
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Contacts"
-msgstr "Contatti Google"
+msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.py:136
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:137
msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}."
-msgstr "Contatti Google: impossibile sincronizzare i contatti dai Contatti Google {0}, codice errore {1}."
+msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.py:291
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:294
msgid "Google Contacts - Could not update contact in Google Contacts {0}, error code {1}."
-msgstr "Contatti Google: impossibile aggiornare il contatto in Contatti Google {0}, codice errore {1}."
+msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the google_contacts_id (Data) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Google Contacts Id"
-msgstr "ID contatti Google"
+msgstr ""
-#. Name of a DocType
-#: integrations/doctype/google_drive/google_drive.json
-msgid "Google Drive"
-msgstr "Google Drive"
-
-#. Label of a Section Break field in DocType 'Google Drive'
#. Label of a Link in the Integrations Workspace
-#: integrations/doctype/google_drive/google_drive.json
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Google Drive"
+#: frappe/integrations/workspace/integrations/integrations.json
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
-msgstr "Google Drive"
+msgstr ""
-#: integrations/doctype/google_drive/google_drive.py:118
-msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}"
-msgstr "Google Drive - Impossibile creare la cartella in Google Drive - Codice errore {0}"
-
-#: integrations/doctype/google_drive/google_drive.py:134
-msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}"
-msgstr "Google Drive - Impossibile trovare la cartella in Google Drive - Codice errore {0}"
-
-#: integrations/doctype/google_drive/google_drive.py:196
-msgid "Google Drive - Could not locate - {0}"
-msgstr "Google Drive - Impossibile individuare - {0}"
-
-#: integrations/doctype/google_drive/google_drive.py:207
-msgid "Google Drive Backup Successful."
-msgstr "Backup di Google Drive riuscito."
-
-#. Label of a Section Break field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
+#. Label of the section_break_7 (Section Break) field in DocType 'Google
+#. Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Google Drive Picker"
msgstr ""
-#. Label of a Check field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
+#. Label of the google_drive_picker_enabled (Check) field in DocType 'Google
+#. Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Google Drive Picker Enabled"
msgstr ""
-#. Label of a Data field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the font (Data) field in DocType 'Print Format'
+#. Label of the google_font (Data) field in DocType 'Website Theme'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:28
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Google Font"
-msgstr "Google Font"
+msgstr ""
-#. Label of a Data field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Google Font"
-msgstr "Google Font"
-
-#. Label of a Data field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the google_meet_link (Small Text) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Google Meet Link"
msgstr ""
#. Label of a Card Break in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Services"
-msgstr "Servizi di Google"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/google_settings/google_settings.json
-msgid "Google Settings"
-msgstr "Impostazioni di Google"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Google Settings"
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
-msgstr "Impostazioni di Google"
+msgstr ""
-#: utils/csvutils.py:199
+#: frappe/utils/csvutils.py:226
msgid "Google Sheets URL is invalid or not publicly accessible."
-msgstr "L'URL di Fogli Google non è valido o non è accessibile pubblicamente."
+msgstr ""
-#: utils/csvutils.py:204
+#: frappe/utils/csvutils.py:231
msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again."
-msgstr "L'URL di Fogli Google deve terminare con "gid = {number}". Copia e incolla l'URL dalla barra degli indirizzi del browser e riprova."
+msgstr ""
-#. Label of a HTML field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the google_preview (HTML) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Google Snippet Preview"
-msgstr "Anteprima dello snippet di Google"
+msgstr ""
-#. Label of a Select field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the grant_type (Select) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Grant Type"
-msgstr "Tipo di grant"
+msgstr ""
-#: public/js/frappe/form/dashboard.js:34
+#: frappe/public/js/frappe/form/dashboard.js:34
+#: frappe/public/js/frappe/form/templates/form_dashboard.html:10
msgid "Graph"
msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
+#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Gray"
msgstr ""
-#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
-msgid "Gray"
+#: frappe/public/js/frappe/ui/filters/filter.js:23
+msgid "Greater Than"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:25
+msgid "Greater Than Or Equal To"
msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Green"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Green"
msgstr ""
-#: public/js/frappe/ui/keyboard.js:123
+#: 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 a Data field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
+#. Label of the group (Data) field in DocType 'DocType Action'
+#. Label of the group (Data) field in DocType 'DocType Link'
+#. Label of the group (Data) field in DocType 'Website Sidebar Item'
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/core/doctype/doctype_link/doctype_link.json
+#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Group"
-msgstr "Gruppo"
-
-#. Label of a Data field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
-msgid "Group"
-msgstr "Gruppo"
-
-#. Label of a Data field in DocType 'Website Sidebar Item'
-#: website/doctype/website_sidebar_item/website_sidebar_item.json
-msgctxt "Website Sidebar Item"
-msgid "Group"
-msgstr "Gruppo"
-
-#: website/report/website_analytics/website_analytics.js:32
-msgid "Group By"
-msgstr "Raggruppare per"
+msgstr ""
#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/website/report/website_analytics/website_analytics.js:32
msgid "Group By"
-msgstr "Raggruppare per"
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the group_by_based_on (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Group By Based On"
-msgstr "Raggruppa in base a"
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the group_by_type (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Group By Type"
-msgstr "Raggruppa per tipo"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.py:408
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408
msgid "Group By field is required to create a dashboard chart"
-msgstr "Il campo Raggruppa per è necessario per creare un grafico del dashboard"
+msgstr ""
-#: public/js/frappe/views/treeview.js:401
+#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
-msgstr "Nodo Group"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Group Object Class"
msgstr ""
-#: public/js/frappe/ui/group_by/group_by.js:415
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Group your custom doctypes under modules"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/group_by/group_by.js:425
msgid "Grouped by {0}"
msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#: frappe/core/doctype/recorder/recorder.json
msgid "HEAD"
msgstr ""
+#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+msgid "HERE"
+msgstr ""
+
+#. Option for the 'Time Format' (Select) field in DocType 'Language'
#. Option for the 'Time Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "HH:mm"
-msgstr "HH: mm"
+msgstr ""
+#. Option for the 'Time Format' (Select) field in DocType 'Language'
#. Option for the 'Time Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "HH:mm:ss"
-msgstr "HH: mm: ss"
-
-#: printing/doctype/print_format/print_format.py:93
-msgid "HTML"
-msgstr "HTML"
-
-#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "HTML"
-msgstr "HTML"
-
-#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "HTML"
-msgstr "HTML"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "HTML"
-msgstr "HTML"
-
-#. Label of a Section Break field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
-msgid "HTML"
-msgstr "HTML"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "HTML"
-msgstr "HTML"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "HTML"
-msgstr "HTML"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the html_section (Section Break) field in DocType 'Custom HTML
+#. Block'
+#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
+#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
+#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
#. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
-msgid "HTML"
-msgstr "HTML"
-
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "HTML"
-msgstr "HTML"
-
-#. Option for the 'Message Type' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "HTML"
-msgstr "HTML"
-
-#. Label of a Code field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "HTML"
-msgstr "HTML"
-
+#. Label of the html (Code) field in DocType 'Print Format'
+#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "HTML"
-msgstr "HTML"
-
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/public/js/print_format_builder/Field.vue:86
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_page/web_page.js:92
+#: frappe/website/doctype/web_page/web_page.json
msgid "HTML"
-msgstr "HTML"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "HTML Editor"
-msgstr "Editor HTML"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "HTML Editor"
-msgstr "Editor HTML"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "HTML Editor"
-msgstr "Editor HTML"
+msgstr ""
-#. Label of a HTML Editor field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the page (HTML Editor) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
-msgstr "Pagina HTML"
+msgstr ""
#. Description of the 'Header' (HTML Editor) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/website/doctype/web_page/web_page.json
msgid "HTML for header section. Optional"
-msgstr "HTML per la sezione in intestazione.Oopzionale"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "HTML with jinja support"
+msgstr ""
#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link'
-#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json
-msgctxt "Dashboard Chart Link"
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
msgid "Half"
-msgstr "Metà"
+msgstr ""
+#. Option for the 'Repeat On' (Select) field in DocType 'Event'
#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Half Yearly"
-msgstr "Semestrale"
-
-#: public/js/frappe/utils/common.js:402
-msgid "Half-yearly"
-msgstr "Semestrale"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/public/js/frappe/utils/common.js:402
msgid "Half-yearly"
-msgstr "Semestrale"
+msgstr ""
-#. Label of a Check field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the handled_emails (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Handled Emails"
+msgstr ""
+
+#. Label of the has_attachment (Check) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Has Attachment"
-msgstr "ha allegato"
+msgstr ""
#. Name of a DocType
-#: core/doctype/has_domain/has_domain.json
+#: frappe/core/doctype/has_domain/has_domain.json
msgid "Has Domain"
-msgstr "Ha il dominio"
+msgstr ""
-#. Label of a Check field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the has_next_condition (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Has Next Condition"
msgstr ""
#. Name of a DocType
-#: core/doctype/has_role/has_role.json
+#: frappe/core/doctype/has_role/has_role.json
msgid "Has Role"
-msgstr "ha un ruolo"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. 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 "Ha Web View"
+msgstr ""
-#: templates/signup.html:19
+#: frappe/templates/signup.html:19
msgid "Have an account? Login"
-msgstr "Hai un account? Accedi"
+msgstr ""
-#. Label of a Section Break field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the header (Check) field in DocType 'SMS Parameter'
+#. Label of the header_section (Section Break) field in DocType 'Letter Head'
+#. Label of the header (HTML Editor) field in DocType 'Web Page'
+#. Label of the header (HTML Editor) field in DocType 'Website Slideshow'
+#: frappe/core/doctype/sms_parameter/sms_parameter.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Header"
-msgstr "Intestazione"
+msgstr ""
-#. Label of a Check field in DocType 'SMS Parameter'
-#: core/doctype/sms_parameter/sms_parameter.json
-msgctxt "SMS Parameter"
-msgid "Header"
-msgstr "Intestazione"
-
-#. Label of a HTML Editor field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Header"
-msgstr "Intestazione"
-
-#. Label of a HTML Editor field in DocType 'Website Slideshow'
-#: website/doctype/website_slideshow/website_slideshow.json
-msgctxt "Website Slideshow"
-msgid "Header"
-msgstr "Intestazione"
-
-#. Label of a HTML Editor field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the content (HTML Editor) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Header HTML"
-msgstr "HTML dell'intestazione"
+msgstr ""
-#: printing/doctype/letter_head/letter_head.py:60
+#: frappe/printing/doctype/letter_head/letter_head.py:63
msgid "Header HTML set from attachment {0}"
-msgstr "Intestazione HTML impostata dall'allegato {0}"
+msgstr ""
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. 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 "Intestazione e breadcrumb"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the section_break_38 (Tab Break) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Header, Robots"
msgstr ""
-#. Label of a Table field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/printing/doctype/letter_head/letter_head.js:30
+msgid "Header/Footer scripts can be used to add dynamic behaviours."
+msgstr ""
+
+#. Label of the webhook_headers (Table) field in DocType 'Webhook'
+#. Label of the headers (Code) field in DocType 'Webhook Request Log'
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Headers"
-msgstr "Intestazioni"
+msgstr ""
-#. Label of a Code field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "Headers"
-msgstr "Intestazioni"
-
-#: printing/page/print_format_builder/print_format_builder.js:602
-msgid "Heading"
-msgstr "Intestazione"
-
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Heading"
-msgstr "Intestazione"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Heading"
-msgstr "Intestazione"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Heading"
-msgstr "Intestazione"
+#: frappe/email/email_body.py:322
+msgid "Headers must be a dictionary"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. 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 "Intestazione"
-
-#. Label of a Data field in DocType 'Website Slideshow Item'
-#: website/doctype/website_slideshow_item/website_slideshow_item.json
-msgctxt "Website Slideshow Item"
-msgid "Heading"
-msgstr "Intestazione"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Heatmap"
-msgstr "Mappa di calore"
+msgstr ""
-#: templates/emails/new_user.html:2
+#: frappe/templates/emails/new_user.html:2
msgid "Hello"
msgstr ""
-#: public/js/frappe/form/workflow.js:23 public/js/frappe/utils/help.js:27
+#. 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 "Aiuto"
-
-#. Label of a HTML field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
-msgid "Help"
-msgstr "Aiuto"
-
-#. Label of a Section Break field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Help"
-msgstr "Aiuto"
+msgstr ""
#. Name of a DocType
-#: website/doctype/help_article/help_article.json
-msgid "Help Article"
-msgstr "Aiuto articolo"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Help Article"
+#: frappe/website/doctype/help_article/help_article.json
+#: frappe/website/workspace/website/website.json
msgid "Help Article"
-msgstr "Aiuto articolo"
+msgstr ""
-#. Label of a Int field in DocType 'Help Category'
-#: website/doctype/help_category/help_category.json
-msgctxt "Help Category"
+#. Label of the help_articles (Int) field in DocType 'Help Category'
+#: frappe/website/doctype/help_category/help_category.json
msgid "Help Articles"
-msgstr "Aiuto articoli"
+msgstr ""
#. Name of a DocType
-#: website/doctype/help_category/help_category.json
-msgid "Help Category"
-msgstr "Aiuto Categoria"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Help Category"
+#: frappe/website/doctype/help_category/help_category.json
+#: frappe/website/workspace/website/website.json
msgid "Help Category"
-msgstr "Aiuto Categoria"
+msgstr ""
-#. Label of a Table field in DocType 'Navbar Settings'
-#: core/doctype/navbar_settings/navbar_settings.json
-msgctxt "Navbar Settings"
+#. Label of the help_dropdown (Table) field in DocType 'Navbar Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:84
msgid "Help Dropdown"
-msgstr "Guida a discesa"
+msgstr ""
-#. Label of a HTML field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the help_html (HTML) field in DocType 'Document Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Help HTML"
-msgstr "Aiuto HTML"
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:149
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:149
msgid "Help on Search"
-msgstr "Aiuto su Cerca"
+msgstr ""
#. Description of the 'Content' (Text Editor) field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
+#: frappe/desk/doctype/note/note.json
msgid "Help: To link to another record in the system, use \"/app/note/[Note Name]\" as the Link URL. (don't use \"http://\")"
msgstr ""
-#. Label of a Int field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
+#. Label of the helpful (Int) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
msgid "Helpful"
msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Helvetica"
-msgstr "Helvetica"
+msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Helvetica Neue"
msgstr ""
-#: public/js/frappe/utils/utils.js:1747
+#: frappe/public/js/frappe/utils/utils.js:1784
msgid "Here's your tracking URL"
msgstr ""
-#: www/qrcode.html:9
+#: frappe/www/qrcode.html:9
msgid "Hi {0}"
-msgstr "Salve {0}"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the hidden (Check) field in DocType 'DocField'
+#. Label of the hidden (Check) field in DocType 'DocType Action'
+#. Label of the hidden (Check) field in DocType 'DocType Link'
+#. Label of the hidden (Check) field in DocType 'Navbar Item'
+#. Label of the hidden (Check) field in DocType 'Custom Field'
+#. Label of the hidden (Check) field in DocType 'Customize Form Field'
+#. Label of the hidden (Check) field in DocType 'Desktop Icon'
+#. Label of the hidden (Check) field in DocType 'Workspace Link'
+#. Label of the hidden (Check) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/core/doctype/doctype_link/doctype_link.json
+#: frappe/core/doctype/navbar_item/navbar_item.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/printing/page/print_format_builder/print_format_builder_field.html:3
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Hidden"
-msgstr "Nascosto"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Hidden"
-msgstr "Nascosto"
-
-#. Label of a Check field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Hidden"
-msgstr "Nascosto"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Hidden"
-msgstr "Nascosto"
-
-#. Label of a Check field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
-msgid "Hidden"
-msgstr "Nascosto"
-
-#. Label of a Check field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
-msgid "Hidden"
-msgstr "Nascosto"
-
-#. Label of a Check field in DocType 'Navbar Item'
-#: core/doctype/navbar_item/navbar_item.json
-msgctxt "Navbar Item"
-msgid "Hidden"
-msgstr "Nascosto"
-
-#. Label of a Check field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Hidden"
-msgstr "Nascosto"
-
-#. Label of a Check field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
-msgid "Hidden"
-msgstr "Nascosto"
-
-#. Label of a Section Break field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the section_break_13 (Section Break) field in DocType 'Form Tour
+#. Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Hidden Fields"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:814
-#: public/js/frappe/widgets/base_widget.js:46
-#: public/js/frappe/widgets/base_widget.js:176
-msgid "Hide"
-msgstr "Nascondere"
-
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/frappe/widgets/base_widget.js:46
+#: frappe/public/js/frappe/widgets/base_widget.js:178
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
+#: frappe/templates/includes/login/login.js:82
msgid "Hide"
-msgstr "Nascondere"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the hide_block (Check) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Hide Block"
-msgstr "Nascondi blocco"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the hide_border (Check) field in DocType 'DocField'
+#. Label of the hide_border (Check) field in DocType 'Custom Field'
+#. Label of the hide_border (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Border"
-msgstr "Nascondi bordo"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Hide Border"
-msgstr "Nascondi bordo"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Hide Border"
-msgstr "Nascondi bordo"
-
-#. Label of a Check field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the hide_buttons (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Hide Buttons"
msgstr ""
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the hide_cta (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Hide CTA"
-msgstr "Nascondi CTA"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the allow_copy (Check) field in DocType 'DocType'
+#. Label of the allow_copy (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Hide Copy"
-msgstr "Nascondi Copia"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Hide Copy"
-msgstr "Nascondi Copia"
-
-#. Label of a Check field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the hide_custom (Check) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Hide Custom DocTypes and Reports"
-msgstr "Nascondi tipi di documento e rapporti personalizzati"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the hide_days (Check) field in DocType 'DocField'
+#. Label of the hide_days (Check) field in DocType 'Custom Field'
+#. Label of the hide_days (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Days"
-msgstr "Nascondi giorni"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Hide Days"
-msgstr "Nascondi giorni"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Hide Days"
-msgstr "Nascondi giorni"
-
-#: core/doctype/user_permission/user_permission_list.js:96
+#. Label of the hide_descendants (Check) field in DocType 'User Permission'
+#: frappe/core/doctype/user_permission/user_permission.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:96
msgid "Hide Descendants"
msgstr ""
-#. Label of a Check field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
-msgid "Hide Descendants"
+#. Label of the hide_empty_read_only_fields (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Hide Empty Read-Only Fields"
msgstr ""
-#: www/error.html:41 www/error.html:56
+#: frappe/www/error.html:62
msgid "Hide Error"
msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Hide Login"
-msgstr "Nascondi login"
+#: frappe/printing/page/print_format_builder/print_format_builder.js:488
+msgid "Hide Label"
+msgstr ""
-#: public/js/form_builder/form_builder.bundle.js:43
-#: public/js/print_format_builder/print_format_builder.bundle.js:54
+#. Label of the hide_login (Check) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Hide Login"
+msgstr ""
+
+#: frappe/public/js/form_builder/form_builder.bundle.js:43
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54
msgid "Hide Preview"
msgstr ""
#. Description of the 'Hide Buttons' (Check) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Hide Previous, Next and Close button on highlight dialog."
msgstr ""
-#: public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:94
msgid "Hide Saved"
msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the hide_seconds (Check) field in DocType 'DocField'
+#. Label of the hide_seconds (Check) field in DocType 'Custom Field'
+#. Label of the hide_seconds (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Seconds"
-msgstr "Nascondi secondi"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Hide Seconds"
-msgstr "Nascondi secondi"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Hide Seconds"
-msgstr "Nascondi secondi"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the hide_toolbar (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Hide Sidebar, Menu, and Comments"
msgstr ""
-#. Label of a Check field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the hide_standard_menu (Check) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Hide Standard Menu"
-msgstr "Nascondi Menu Standard"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1566
+#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Hide Tags"
msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:184
+#: frappe/public/js/frappe/views/calendar/calendar.js:179
msgid "Hide Weekends"
-msgstr "Nascondi fine settimana"
-
-#: public/js/frappe/views/workspace/workspace.js:815
-msgid "Hide Workspace"
msgstr ""
#. Description of the 'Hide Descendants' (Check) field in DocType 'User
#. Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
+#: frappe/core/doctype/user_permission/user_permission.json
msgid "Hide descendant records of For Value."
msgstr ""
-#: public/js/frappe/form/layout.js:260
+#: frappe/public/js/frappe/form/layout.js:286
msgid "Hide details"
-msgstr "Nascondi Dettagli"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. 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 "Nascondi piè di pagina nei report email automatici"
+msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the hide_footer_signup (Check) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Hide footer signup"
msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:198
-msgid "High"
-msgstr "Alto"
+#. Label of the hide_navbar (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Hide navbar"
+msgstr ""
#. Option for the 'Priority' (Select) field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:225
msgid "High"
-msgstr "Alto"
+msgstr ""
#. Description of the 'Priority' (Int) field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Higher priority rule will be applied first"
-msgstr "La regola con priorità più alta verrà applicata per prima"
+msgstr ""
-#. Label of a Text field in DocType 'Company History'
-#: website/doctype/company_history/company_history.json
-msgctxt "Company History"
+#. Label of the highlight (Text) field in DocType 'Company History'
+#: frappe/website/doctype/company_history/company_history.json
msgid "Highlight"
-msgstr "Evidenziare"
+msgstr ""
-#: www/update-password.html:271
+#: frappe/www/update-password.html:276
msgid "Hint: Include symbols, numbers and capital letters in the password"
-msgstr "Suggerimento: includere simboli, numeri e lettere maiuscole nella password"
+msgstr ""
-#: core/doctype/file/utils.py:31 public/js/frappe/views/file/file_view.js:67
-#: public/js/frappe/views/file/file_view.js:88
-#: public/js/frappe/views/pageview.js:149 templates/doc.html:19
-#: templates/includes/navbar/navbar.html:9
-#: website/doctype/blog_post/blog_post.py:153
-#: website/doctype/blog_post/blog_post.py:265
-#: website/doctype/blog_post/blog_post.py:267
-#: website/web_template/primary_navbar/primary_navbar.html:9 www/contact.py:22
-#: www/error.html:30 www/login.html:150 www/message.html:34
+#. Label of the home_tab (Tab Break) field in DocType 'Website Settings'
+#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:38
+#: frappe/public/js/frappe/views/file/file_view.js:67
+#: frappe/public/js/frappe/views/file/file_view.js:88
+#: frappe/public/js/frappe/views/pageview.js:153 frappe/templates/doc.html:19
+#: frappe/templates/includes/navbar/navbar.html:9
+#: frappe/website/doctype/blog_post/blog_post.py:159
+#: frappe/website/doctype/blog_post/blog_post.py:271
+#: frappe/website/doctype/blog_post/blog_post.py:273
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/web_template/primary_navbar/primary_navbar.html:9
+#: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76
+#: frappe/www/message.html:29
msgid "Home"
-msgstr "Home"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Home"
-msgstr "Home"
-
-#. Label of a Data field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the home_page (Data) field in DocType 'Role'
+#. Label of the home_page (Data) field in DocType 'Website Settings'
+#: frappe/core/doctype/role/role.json
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Home Page"
-msgstr "Home Page"
+msgstr ""
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Home Page"
-msgstr "Home Page"
-
-#. Label of a Code field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the home_settings (Code) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Home Settings"
-msgstr "Impostazioni Home"
+msgstr ""
-#: core/doctype/file/test_file.py:299 core/doctype/file/test_file.py:301
-#: core/doctype/file/test_file.py:365
+#: frappe/core/doctype/file/test_file.py:321
+#: frappe/core/doctype/file/test_file.py:323
+#: frappe/core/doctype/file/test_file.py:387
msgid "Home/Test Folder 1"
-msgstr "Home/Test Folder 1"
+msgstr ""
-#: core/doctype/file/test_file.py:354
+#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
-msgstr "Home/Test Folder 1/Test Folder 3"
+msgstr ""
-#: core/doctype/file/test_file.py:310
+#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
-msgstr "Home/Test Folder 2"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Hourly"
-msgstr "ogni ora"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Hourly"
-msgstr "ogni ora"
-
#. Option for the 'Frequency' (Select) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/doctype/user/user.json
msgid "Hourly"
-msgstr "ogni ora"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Hourly Long"
-msgstr "Oraria lunga"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Hourly Long"
-msgstr "Oraria lunga"
+msgstr ""
+
+#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+msgid "Hourly Maintenance"
+msgstr ""
#. Description of the 'Password Reset Link Generation Limit' (Int) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Hourly rate limit for generating password reset links"
-msgstr "Limite di tariffa oraria per la generazione di link per la reimpostazione della password"
+msgstr ""
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
-msgstr "Come dovrebbe essere formattata questa valuta? Se non impostato, verrà utilizzato il default di sistema"
+msgstr ""
-#: core/doctype/data_import/importer.py:1120
-#: core/doctype/data_import/importer.py:1126
-#: core/doctype/data_import/importer.py:1192
-#: core/doctype/data_import/importer.py:1195 desk/report/todo/todo.py:36
-#: model/__init__.py:137 model/meta.py:45
-#: public/js/frappe/data_import/data_exporter.js:326
-#: public/js/frappe/data_import/data_exporter.js:341
-#: public/js/frappe/list/list_view.js:355
-#: public/js/frappe/list/list_view.js:419 public/js/frappe/model/meta.js:197
-#: public/js/frappe/model/model.js:112
+#. Paragraph text in the Welcome Workspace Workspace
+#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
+msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:1171
+#: frappe/core/doctype/data_import/importer.py:1177
+#: frappe/core/doctype/data_import/importer.py:1242
+#: frappe/core/doctype/data_import/importer.py:1245
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
+#: frappe/public/js/frappe/data_import/data_exporter.js:330
+#: frappe/public/js/frappe/data_import/data_exporter.js:345
+#: frappe/public/js/frappe/list/list_settings.js:337
+#: frappe/public/js/frappe/list/list_view.js:383
+#: frappe/public/js/frappe/list/list_view.js:447
+#: frappe/public/js/frappe/model/meta.js:200
+#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
-msgstr "ID"
+msgstr ""
-#: desk/reportview.py:418 public/js/frappe/views/reports/report_view.js:920
+#: frappe/desk/reportview.py:491
+#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
-msgstr "ID"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:169
+msgid "ID (name)"
+msgstr ""
#. Description of the 'Field Name' (Data) field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "ID (name) of the entity whose property is to be set"
-msgstr "ID (nome) dell'elemento la cui proprietà deve essere impostata"
+msgstr ""
#. Description of the 'Section ID' (Data) field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "IDs must contain only alphanumeric characters, not contain spaces, and should be unique."
msgstr ""
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the section_break_25 (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "IMAP Details"
msgstr ""
+#. Label of the imap_folder (Data) field in DocType 'Communication'
+#. Label of the imap_folder (Table) field in DocType 'Email Account'
#. Name of a DocType
-#: email/doctype/imap_folder/imap_folder.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "IMAP Folder"
msgstr ""
-#. Label of a Data field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "IMAP Folder"
-msgstr ""
-
-#. Label of a Table field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "IMAP Folder"
-msgstr ""
-
-#. Label of a Data field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. Label of the ip_address (Data) field in DocType 'Activity Log'
+#. Label of the ip_address (Data) field in DocType 'Comment'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/comment/comment.json
msgid "IP Address"
-msgstr "Indirizzo IP"
-
-#. Label of a Data field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "IP Address"
-msgstr "Indirizzo IP"
-
-#: public/js/frappe/views/workspace/workspace.js:632
-#: public/js/frappe/views/workspace/workspace.js:960
-#: public/js/frappe/views/workspace/workspace.js:1205
-msgid "Icon"
-msgstr "Icona"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Icon"
-msgstr "Icona"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Icon"
-msgstr "Icona"
-
-#. Label of a Data field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Icon"
-msgstr "Icona"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "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 "Icona"
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Icon"
-msgstr "Icona"
-
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Icon"
-msgstr "Icona"
-
-#. Label of a Select field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "Icon"
-msgstr "Icona"
-
-#. Label of a Icon field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Icon"
-msgstr "Icona"
-
-#. Label of a Data field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
-msgid "Icon"
-msgstr "Icona"
-
-#. Label of a Data field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Icon"
-msgstr "Icona"
+msgstr ""
#. Description of the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon will appear on the button"
-msgstr "Icona apparirà sul tasto"
+msgstr ""
-#. Label of a Section Break field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the sb_identity_details (Section Break) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Identity Details"
-msgstr "Dettagli di identità"
+msgstr ""
-#. Label of a Int field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#. Label of the idx (Int) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Idx"
-msgstr "Idx"
+msgstr ""
#. Description of the 'Apply Strict User Permissions' (Check) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User"
-msgstr "Se l'opzione Applica autorizzazione utente rigorosa è selezionata e la licenza utente è definita per un DocType per un utente, tutti i documenti in cui il valore del collegamento è vuoto non verranno visualizzati a tale utente"
+msgstr ""
#. Description of the 'Don't Override Status' (Check) field in DocType
#. 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
-msgid "If Checked workflow status will not override status in list view"
-msgstr "Se lo stato del flusso di lavoro Controllato non sovrascriverà stato in vista elenco"
-
#. Description of the 'Don't Override Status' (Check) field in DocType
#. 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#: frappe/workflow/doctype/workflow/workflow.json
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "If Checked workflow status will not override status in list view"
-msgstr "Se lo stato del flusso di lavoro Controllato non sovrascriverà stato in vista elenco"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1706
+#: frappe/core/doctype/doctype/doctype.py:1763
+#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
+#: frappe/public/js/frappe/roles_editor.js:66
msgid "If Owner"
-msgstr "Se Proprietario"
+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'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "If checked, all other workflows become inactive."
-msgstr "Se selezionata, tutti gli altri flussi di lavoro diventano inattivi."
+msgstr ""
#. Description of the 'Show Absolute Values' (Check) field in DocType 'Print
#. Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/printing/doctype/print_format/print_format.json
msgid "If checked, negative numeric values of Currency, Quantity or Count would be shown as positive"
msgstr ""
#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
#. Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "If checked, users will not see the Confirm Access dialog."
-msgstr "Se selezionato, gli utenti non vedranno la finestra di dialogo Conferma di accesso."
+msgstr ""
#. Description of the 'Disabled' (Check) field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#: frappe/core/doctype/role/role.json
msgid "If disabled, this role will be removed from all users."
-msgstr "Se disattivato, questo ruolo verrà rimosso da tutti gli utenti."
+msgstr ""
#. Description of the 'Bypass Restricted IP Address Check If Two Factor Auth
#. Enabled' (Check) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings"
-msgstr "Se abilitato, l'utente può accedere da qualsiasi indirizzo IP utilizzando Two Factor Auth, questo può anche essere impostato per tutti gli utenti in Impostazioni di sistema"
+msgstr ""
+
+#. Description of the 'Anonymous responses' (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "If enabled, all responses on the web form will be submitted anonymously"
+msgstr ""
#. Description of the 'Bypass restricted IP Address check If Two Factor Auth
#. Enabled' (Check) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page"
-msgstr "Se abilitato, tutti gli utenti possono accedere da qualsiasi indirizzo IP usando l'autenticazione a due fattori. Questo può anche essere impostato solo per utenti specifici nella Pagina utente"
+msgstr ""
#. Description of the 'Track Changes' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "If enabled, changes to the document are tracked and shown in timeline"
-msgstr "Se abilitato, le modifiche al documento vengono tracciate e visualizzate nella sequenza temporale"
+msgstr ""
#. Description of the 'Track Views' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "If enabled, document views are tracked, this can happen multiple times"
-msgstr "Se abilitato, vengono monitorate le viste del documento, ciò può accadere più volte"
+msgstr ""
#. Description of the 'Track Seen' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "If enabled, the document is marked as seen, the first time a user opens it"
-msgstr "Se abilitato, il documento viene contrassegnato come visualizzato, la prima volta che un utente lo apre"
+msgstr ""
#. Description of the 'Send System Notification' (Check) field in DocType
#. 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "If enabled, the notification will show up in the notifications dropdown on the top right corner of the navigation bar."
-msgstr "Se abilitato, la notifica verrà visualizzata nel menu a discesa delle notifiche nell'angolo in alto a destra della barra di navigazione."
+msgstr ""
#. Description of the 'Enable Password Policy' (Check) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong."
-msgstr "Se abilitato, la forza della password verrà eseguita in base al valore Punteggio minima password. Un valore di 2 è medio forte e 4 è molto forte."
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 1 being very weak and 4 being very strong."
+msgstr ""
#. Description of the 'Bypass Two Factor Auth for users who login from
#. restricted IP Address' (Check) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth"
-msgstr "Se abilitato, gli utenti che effettuano il login da Indirizzo IP limitato, non verranno richiesti Autori a due fattori"
+msgstr ""
#. Description of the 'Notify Users On Every Login' (Check) field in DocType
#. 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
+#: frappe/desk/doctype/note/note.json
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
-msgstr "Se abilitato, gli utenti verranno notificati ogni volta che effettuano il login. Se non è abilitato, gli utenti verranno notificati una sola volta."
+msgstr ""
+
+#. Description of the 'Default Workspace' (Link) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "If left empty, the default workspace will be the last visited workspace"
+msgstr ""
#. Description of the 'Port' (Data) field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "If non standard port (e.g. 587)"
-msgstr "Se non è una porta standard (p. es. 587)"
+msgstr ""
#. Description of the 'Port' (Data) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "If non standard port (e.g. 587). If on Google Cloud, try port 2525."
-msgstr "Se porta non standard (ad es. 587). Se su Google Cloud, prova la porta 2525."
+msgstr ""
#. Description of the 'Port' (Data) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)"
-msgstr "Se porta non standard (es. POP3: 995/110, IMAP: 993/143)"
-
#. Description of the 'Port' (Data) field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)"
-msgstr "Se porta non standard (es. POP3: 995/110, IMAP: 993/143)"
+msgstr ""
#. Description of the 'Currency Precision' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "If not set, the currency precision will depend on number format"
-msgstr "Se non è impostata, la precisione di valuta dipenderà dal formato del numero"
+msgstr ""
#. Description of the 'Roles' (Table) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used."
msgstr ""
-#. Description of the 'Condition' (Code) field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "If the condition is satisfied user will be rewarded with the points. eg. doc.status == 'Closed'\n"
-msgstr ""
-
#. Description of the 'User Type' (Link) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop"
-msgstr "Se l'utente ha alcun ruolo controllato, l'utente diventa un "User System". "Utente della rete" ha accesso al desktop"
-
-#. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom
-#. Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "If unchecked, the value will always be re-fetched on save."
msgstr ""
-#. Description of the 'Fetch on Save if Empty' (Check) field in DocType
-#. 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "If unchecked, the value will always be re-fetched on save."
+#: frappe/core/page/permission_manager/permission_manager_help.html:38
+msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues."
msgstr ""
#. Description of the 'Fetch on Save if Empty' (Check) field in DocType
#. 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom
+#. Field'
+#. Description of the 'Fetch on Save if Empty' (Check) field in DocType
+#. 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "If unchecked, the value will always be re-fetched on save."
msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
+#. Label of the if_owner (Check) field in DocType 'Custom DocPerm'
+#. Label of the if_owner (Check) field in DocType 'DocPerm'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
msgid "If user is the owner"
-msgstr "Se l'utente è il proprietario"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "If user is the owner"
-msgstr "Se l'utente è il proprietario"
-
-#: core/doctype/data_export/exporter.py:206
-msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted."
-msgstr "Se si sta aggiornando, seleziona \"Sovrascrivi\" non saranno cancellati righe altro esistenti."
-
-#: core/doctype/data_export/exporter.py:190
-msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present."
-msgstr "Se si sta caricando nuovi record, \"Naming Series\" diventa obbligatoria, se presente."
-
-#: core/doctype/data_export/exporter.py:187
-msgid "If you are uploading new records, leave the \"name\" (ID) column blank."
-msgstr "Se si sta caricando nuovi record, lasciare il \"nome\" (ID) colonna vuota."
-
-#: utils/password.py:200
-msgid "If you have recently restored the site you may need to copy the site config contaning original Encryption Key."
msgstr ""
-#: core/doctype/doctype/doctype.js:80
-msgid "If you just want to customize for your site, use {0} instead."
+#: frappe/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/utils/password.py:214
+msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key."
msgstr ""
#. Description of the 'Parent Label' (Select) field in DocType 'Top Bar Item'
-#: website/doctype/top_bar_item/top_bar_item.json
-msgctxt "Top Bar Item"
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "If you set this, this Item will come in a drop-down under the selected parent."
-msgstr "Se si imposta questo, questo articolo verrà in una discesa sotto il genitore selezionato ."
+msgstr ""
-#: templates/emails/administrator_logged_in.html:3
+#: frappe/templates/emails/administrator_logged_in.html:3
msgid "If you think this is unauthorized, please change the Administrator password."
-msgstr "Se pensi che non sia autorizzato, si consiglia di cambiare la password dell'amministratore."
+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'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
+#: frappe/core/doctype/translation/translation.json
msgid "If your data is in HTML, please copy paste the exact HTML code with the tags."
-msgstr "Se i dati sono in formato HTML, si prega di copiare incollare il codice HTML esatto con i tag."
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the ignore_user_permissions (Check) field in DocType 'DocField'
+#. Label of the ignore_user_permissions (Check) field in DocType 'Custom Field'
+#. Label of the ignore_user_permissions (Check) field in DocType 'Customize
+#. Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Ignore User Permissions"
-msgstr "Ignora autorizzazioni utente"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Ignore User Permissions"
-msgstr "Ignora autorizzazioni utente"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Ignore User Permissions"
-msgstr "Ignora autorizzazioni utente"
-
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the ignore_xss_filter (Check) field in DocType 'DocField'
+#. Label of the ignore_xss_filter (Check) field in DocType 'Custom Field'
+#. Label of the ignore_xss_filter (Check) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Ignore XSS Filter"
-msgstr "Ignora filtro XSS"
-
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Ignore XSS Filter"
-msgstr "Ignora filtro XSS"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Ignore XSS Filter"
-msgstr "Ignora filtro XSS"
+msgstr ""
#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email
#. Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Ignore attachments over this size"
-msgstr "Ignora gli allegati di maggiori dimensioni"
-
#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email
#. Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Ignore attachments over this size"
-msgstr "Ignora gli allegati di maggiori dimensioni"
+msgstr ""
-#. Label of a Table field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the ignored_apps (Table) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Ignored Apps"
-msgstr "App ignorate"
+msgstr ""
-#: integrations/doctype/dropbox_settings/dropbox_settings.py:349
-msgid "Illegal Access Token. Please try again"
-msgstr "Illegal token di accesso. Riprova"
-
-#: model/workflow.py:143
+#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
-msgstr "Stato del documento non valido per {0}"
+msgstr ""
-#: model/db_query.py:451 model/db_query.py:454 model/db_query.py:1128
+#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
+#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
-msgstr "Query SQL non valida"
+msgstr ""
-#: utils/jinja.py:95
+#: frappe/utils/jinja.py:127
msgid "Illegal template"
msgstr ""
-#. Label of a Attach Image field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Image"
-msgstr "Immagine"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Image"
-msgstr "Immagine"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Image"
-msgstr "Immagine"
-
+#. Label of the image (Attach Image) field in DocType 'Contact'
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Image"
-msgstr "Immagine"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Image"
-msgstr "Immagine"
-
+#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
-#. Label of a Attach Image field in DocType 'Letter Head'
+#. Label of the image (Attach Image) field in DocType 'Letter Head'
+#. Label of the footer_image (Attach Image) field in DocType 'Letter Head'
#. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the meta_image (Attach Image) field in DocType 'Web Page'
+#. Label of the image (Attach) field in DocType 'Website Slideshow Item'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "Image"
-msgstr "Immagine"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Image"
-msgstr "Immagine"
-
-#. Label of a Attach field in DocType 'Website Slideshow Item'
-#: website/doctype/website_slideshow_item/website_slideshow_item.json
-msgctxt "Website Slideshow Item"
-msgid "Image"
-msgstr "Immagine"
-
-#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Image"
-msgstr "Immagine"
-
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the image_field (Data) field in DocType 'DocType'
+#. Label of the image_field (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Image Field"
-msgstr "campo immagine"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Image Field"
-msgstr "campo immagine"
-
-#. Label of a Float field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the image_height (Float) field in DocType 'Letter Head'
+#. Label of the footer_image_height (Float) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Image Height"
msgstr ""
-#. Label of a Attach field in DocType 'About Us Team Member'
-#: website/doctype/about_us_team_member/about_us_team_member.json
-msgctxt "About Us Team Member"
+#. Label of the image_link (Attach) field in DocType 'About Us Team Member'
+#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
msgid "Image Link"
-msgstr "Link Immagine"
+msgstr ""
-#. Label of a Float field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#: frappe/public/js/frappe/list/base_list.js:208
+msgid "Image View"
+msgstr ""
+
+#. Label of the image_width (Float) field in DocType 'Letter Head'
+#. Label of the footer_image_width (Float) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Image Width"
msgstr ""
-#: core/doctype/doctype/doctype.py:1457
+#: frappe/core/doctype/doctype/doctype.py:1506
msgid "Image field must be a valid fieldname"
-msgstr "campo di immagine deve essere un nome di campo valido"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1459
+#: frappe/core/doctype/doctype/doctype.py:1508
msgid "Image field must be of type Attach Image"
-msgstr "Campo immagine deve essere di tipo Allega immagine"
+msgstr ""
-#: core/doctype/file/utils.py:134
+#: frappe/core/doctype/file/utils.py:136
msgid "Image link '{0}' is not valid"
msgstr ""
-#: core/doctype/file/file.js:91
+#: frappe/core/doctype/file/file.js:107
msgid "Image optimized"
msgstr ""
-#: public/js/frappe/views/image/image_view.js:13
-msgid "Images"
-msgstr "Immagini"
+#: frappe/core/doctype/file/utils.py:289
+msgid "Image: Corrupted Data Stream"
+msgstr ""
-#: core/doctype/log_settings/log_settings.py:56
+#: 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:378
+msgid "Impersonate"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:405
+msgid "Impersonate as {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259
+msgid "Impersonated by {0}"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:21
+msgid "Impersonating {0}"
+msgstr ""
+
+#: frappe/core/doctype/log_settings/log_settings.py:56
msgid "Implement `clear_old_logs` method to enable auto error clearing."
msgstr ""
#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Implicit"
-msgstr "Implicito"
+msgstr ""
-#: core/doctype/recorder/recorder_list.js:21
-#: email/doctype/email_group/email_group.js:31
+#. Label of the import (Check) field in DocType 'Custom DocPerm'
+#. Label of the import (Check) field in DocType 'DocPerm'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/recorder/recorder_list.js:16
+#: frappe/email/doctype/email_group/email_group.js:31
msgid "Import"
-msgstr "Importazione"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1628
+#: frappe/public/js/frappe/list/list_view.js:1766
msgctxt "Button in list view menu"
msgid "Import"
-msgstr "Importazione"
-
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Import"
-msgstr "Importazione"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Import"
-msgstr "Importazione"
+msgstr ""
#. Label of a Link in the Tools Workspace
#. Label of a shortcut in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Data Import"
+#: frappe/automation/workspace/tools/tools.json
msgid "Import Data"
-msgstr "Importa dati"
+msgstr ""
-#: email/doctype/email_group/email_group.js:14
+#: frappe/email/doctype/email_group/email_group.js:14
msgid "Import Email From"
-msgstr "Importa posta elettronica da"
+msgstr ""
-#. Label of a Attach field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the import_file (Attach) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import File"
-msgstr "Importare file"
+msgstr ""
-#. Label of a Section Break field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the import_warnings_section (Section Break) field in DocType 'Data
+#. Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import File Errors and Warnings"
-msgstr "Importa errori di file e avvisi"
+msgstr ""
-#. Label of a Section Break field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the import_log_section (Section Break) field in DocType 'Data
+#. Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import Log"
-msgstr "Log Importazione"
+msgstr ""
-#. Label of a HTML field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the import_log_preview (HTML) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import Log Preview"
-msgstr "Importa anteprima registro"
+msgstr ""
-#. Label of a HTML field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the import_preview (HTML) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import Preview"
-msgstr "Anteprima di importazione"
+msgstr ""
-#: core/doctype/data_import/data_import.js:41
+#: frappe/core/doctype/data_import/data_import.js:41
msgid "Import Progress"
-msgstr "Progressi nell'importazione"
+msgstr ""
-#: email/doctype/email_group/email_group.js:8
-#: email/doctype/email_group/email_group.js:30
+#: frappe/email/doctype/email_group/email_group.js:8
+#: frappe/email/doctype/email_group/email_group.js:30
msgid "Import Subscribers"
-msgstr "Importa Abbonati"
+msgstr ""
-#. Label of a Select field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the import_type (Select) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import Type"
-msgstr "Tipo di importazione"
+msgstr ""
-#. Label of a HTML field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the import_warnings (HTML) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import Warnings"
-msgstr "Importa avvisi"
+msgstr ""
-#: public/js/frappe/views/file/file_view.js:117
+#: frappe/public/js/frappe/views/file/file_view.js:117
msgid "Import Zip"
-msgstr "Importa Zip"
+msgstr ""
-#. Label of a Data field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the google_sheets_url (Data) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Import from Google Sheets"
-msgstr "Importa da Fogli Google"
+msgstr ""
-#: core/doctype/data_import/importer.py:598
+#: frappe/core/doctype/data_import/importer.py:612
msgid "Import template should be of type .csv, .xlsx or .xls"
-msgstr "Il modello di importazione deve essere di tipo .csv, .xlsx o .xls"
+msgstr ""
-#: core/doctype/data_import/importer.py:467
+#: frappe/core/doctype/data_import/importer.py:482
msgid "Import template should contain a Header and atleast one row."
-msgstr "Il modello di importazione deve contenere un'intestazione e almeno una riga."
+msgstr ""
-#: core/doctype/data_import/data_import.js:170
+#: frappe/core/doctype/data_import/data_import.js:165
msgid "Import timed out, please re-try."
msgstr ""
-#: core/doctype/data_import/data_import.py:61
+#: frappe/core/doctype/data_import/data_import.py:68
msgid "Importing {0} is not allowed."
msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.js:19
+#: frappe/integrations/doctype/google_contacts/google_contacts.js:19
msgid "Importing {0} of {1}"
-msgstr "Importazione di {0} di {1}"
+msgstr ""
-#: core/doctype/data_import/data_import.js:35
+#: frappe/core/doctype/data_import/data_import.js:35
msgid "Importing {0} of {1}, {2}"
-msgstr "Importazione di {0} di {1}, {2}"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:20
+#: frappe/public/js/frappe/ui/filters/filter.js:20
msgid "In"
-msgstr "In"
+msgstr ""
#. Description of the 'Force User to Reset Password' (Int) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "In Days"
-msgstr "In giorni"
-
-#. Description of the Onboarding Step 'Setup Limited Access for a User'
-#: custom/onboarding_step/role_permissions/role_permissions.json
-msgid "In ERPNext, you can add your Employees as Users, and give them restricted access. Tools like Role Permission and User Permission allow you to define rules which give restricted access to the user to masters and transactions."
msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the in_filter (Check) field in DocType 'DocField'
+#. Label of the in_filter (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Filter"
-msgstr "In Filtro"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "In Filter"
-msgstr "In Filtro"
-
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the in_global_search (Check) field in DocType 'DocField'
+#. Label of the in_global_search (Check) field in DocType 'Custom Field'
+#. Label of the in_global_search (Check) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Global Search"
-msgstr "Alla ricerca globale"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "In Global Search"
-msgstr "Alla ricerca globale"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "In Global Search"
-msgstr "Alla ricerca globale"
-
-#: core/doctype/doctype/doctype.js:95
+#: frappe/core/doctype/doctype/doctype.js:88
msgid "In Grid View"
-msgstr "In Grid View"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the in_standard_filter (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "In List Filter"
msgstr ""
-#: core/doctype/doctype/doctype.js:96
+#. Label of the in_list_view (Check) field in DocType 'DocField'
+#. Label of the in_list_view (Check) field in DocType 'Custom Field'
+#. Label of the in_list_view (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype.js:89
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In List View"
-msgstr "In Vista Elenco"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "In List View"
-msgstr "In Vista Elenco"
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:19
+msgid "In Minutes"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "In List View"
-msgstr "In Vista Elenco"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "In List View"
-msgstr "In Vista Elenco"
-
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the in_preview (Check) field in DocType 'DocField'
+#. Label of the in_preview (Check) field in DocType 'Custom Field'
+#. Label of the in_preview (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Preview"
-msgstr "In anteprima"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "In Preview"
-msgstr "In anteprima"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "In Preview"
-msgstr "In anteprima"
-
-#: core/doctype/data_import/data_import.js:42
+#: frappe/core/doctype/data_import/data_import.js:42
msgid "In Progress"
-msgstr "In corso"
+msgstr ""
-#: database/database.py:233
+#: frappe/database/database.py:287
msgid "In Read Only Mode"
msgstr ""
-#. Label of a Link field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the in_reply_to (Link) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "In Reply To"
-msgstr "In risposta a"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the in_standard_filter (Check) field in DocType 'Custom Field'
+#. Label of the in_standard_filter (Check) field in DocType 'Customize Form
+#. Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Standard Filter"
-msgstr "In Filtro standard"
-
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "In Standard Filter"
-msgstr "In Filtro standard"
-
-#. Description of the Onboarding Step 'Generate Custom Reports'
-#: custom/onboarding_step/report_builder/report_builder.json
-msgid "In each module, you will find a host of single-click reports, ranging from financial statements to sales and purchase analytics and stock tracking reports. If a required new report is not available out-of-the-box, you can create custom reports in ERPNext by pulling values from the same multiple ERPNext tables.\n"
msgstr ""
#. Description of the 'Font Size' (Float) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "In points. Default is 9."
-msgstr "In punti. L'impostazione predefinita è 9."
+msgstr ""
#. Description of the 'Allow Login After Fail' (Int) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "In seconds"
-msgstr "In secondi"
-
-#: core/doctype/recorder/recorder_list.js:107
-msgid "Inactive"
-msgstr "Inattivo"
-
-#: public/js/frappe/ui/field_group.js:131
-msgid "Inavlid Values"
msgstr ""
-#: email/doctype/email_account/email_account_list.js:19
-msgid "Inbox"
-msgstr "Posta in arrivo"
+#: frappe/core/doctype/recorder/recorder_list.js:209
+msgid "Inactive"
+msgstr ""
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/email/doctype/email_account/email_account_list.js:19
msgid "Inbox"
-msgstr "Posta in arrivo"
+msgstr ""
#. Name of a role
-#: core/doctype/communication/communication.json
-#: email/doctype/email_account/email_account.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_account/email_account.json
msgid "Inbox User"
-msgstr "Utente Posta in arrivo"
+msgstr ""
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/public/js/frappe/list/base_list.js:209
+msgid "Inbox View"
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:110
+msgid "Include Disabled"
+msgstr ""
+
+#. Label of the include_name_field (Check) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Include Name Field"
msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the navbar_search (Check) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Include Search in Top Bar"
-msgstr "Includono la ricerca in Top Bar"
+msgstr ""
-#: website/doctype/website_theme/website_theme.js:61
+#: frappe/website/doctype/website_theme/website_theme.js:61
msgid "Include Theme from Apps"
-msgstr "Includi tema dalle app"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the attach_view_link (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Include Web View Link in Email"
-msgstr "Invia il collegamento alla visualizzazione Web del documento tramite posta elettronica"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1488
+#: frappe/public/js/frappe/views/reports/query_report.js:1594
msgid "Include filters"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1480
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Include indentation"
-msgstr "Includi rientro"
+msgstr ""
-#: public/js/frappe/form/controls/password.js:107
+#: frappe/public/js/frappe/form/controls/password.js:106
msgid "Include symbols, numbers and capital letters in the password"
-msgstr "Includi simboli, numeri e lettere maiuscole nella password"
+msgstr ""
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the incoming_popimap_tab (Tab Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Incoming"
+msgstr ""
+
+#. Label of the mailbox_settings (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Incoming (POP/IMAP) Settings"
msgstr ""
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the incoming_emails_last_7_days_column (Column Break) field in
+#. DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Incoming Emails (Last 7 days)"
+msgstr ""
+
+#. Label of the email_server (Data) field in DocType 'Email Account'
+#. Label of the email_server (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Incoming Server"
msgstr ""
-#. Label of a Data field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Incoming Server"
-msgstr ""
-
-#. Label of a Section Break field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#. Label of the mailbox_settings (Section Break) field in DocType 'Email
+#. Domain'
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Incoming Settings"
msgstr ""
-#: email/doctype/email_domain/email_domain.py:32
+#: frappe/email/doctype/email_domain/email_domain.py:32
msgid "Incoming email account not correct"
-msgstr "L'account di posta in arrivo non è corretto"
+msgstr ""
-#: model/virtual_doctype.py:81 model/virtual_doctype.py:94
+#: frappe/model/virtual_doctype.py:79 frappe/model/virtual_doctype.py:92
msgid "Incomplete Virtual Doctype Implementation"
msgstr ""
-#: auth.py:236
+#: frappe/auth.py:255
msgid "Incomplete login details"
-msgstr "Dettagli di accesso incompleto"
+msgstr ""
-#: email/smtp.py:103
+#: frappe/email/smtp.py:104
msgid "Incorrect Configuration"
-msgstr "Configurazione errata"
+msgstr ""
-#: utils/csvutils.py:207
+#: frappe/utils/csvutils.py:234
msgid "Incorrect URL"
-msgstr "URL errato"
+msgstr ""
-#: utils/password.py:90
+#: frappe/utils/password.py:101
msgid "Incorrect User or Password"
-msgstr "Utente o password errati"
+msgstr ""
-#: twofactor.py:177 twofactor.py:189
+#: frappe/twofactor.py:176 frappe/twofactor.py:188
msgid "Incorrect Verification code"
-msgstr "Codice di verifica non corretto"
+msgstr ""
-#: model/document.py:1352
-msgid "Incorrect value in row {0}: {1} must be {2} {3}"
-msgstr "Valore errato nella riga {0}: {1} deve essere {2} {3}"
+#: frappe/model/document.py:1541
+msgid "Incorrect value in row {0}:"
+msgstr ""
-#: model/document.py:1356
-msgid "Incorrect value: {0} must be {1} {2}"
-msgstr "Valore errato: {0} deve essere {1} {2}"
+#: frappe/model/document.py:1543
+msgid "Incorrect value:"
+msgstr ""
-#: model/__init__.py:139 model/meta.py:48 public/js/frappe/model/meta.js:200
-#: public/js/frappe/model/model.js:114
-#: public/js/frappe/views/reports/report_view.js:941
+#. Label of the search_index (Check) field in DocType 'DocField'
+#. Label of the index (Int) field in DocType 'Recorder Query'
+#. Label of the search_index (Check) field in DocType 'Custom Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/recorder_query/recorder_query.json
+#: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55
+#: frappe/public/js/frappe/model/meta.js:203
+#: frappe/public/js/frappe/model/model.js:124
+#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
-msgstr "Indice"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Index"
-msgstr "Indice"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Index"
-msgstr "Indice"
-
-#. Label of a Int field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
-msgid "Index"
-msgstr "Indice"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the index_web_pages_for_search (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Index Web Pages for Search"
-msgstr "Indice pagine Web per la ricerca"
+msgstr ""
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/core/doctype/recorder/recorder.py:132
+msgid "Index created successfully on column {0} of doctype {1}"
+msgstr ""
+
+#. Label of the indexing_authorization_code (Data) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Indexing authorization code"
msgstr ""
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the indexing_refresh_token (Data) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Indexing refresh token"
msgstr ""
-#. Label of a Select field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#. Label of the indicator (Select) field in DocType 'Kanban Board Column'
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Indicator"
-msgstr "Indicatore"
+msgstr ""
-#. Label of a Select field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the indicator_color (Select) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Indicator Color"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:639
-#: public/js/frappe/views/workspace/workspace.js:967
-#: public/js/frappe/views/workspace/workspace.js:1211
+#: frappe/public/js/frappe/views/workspace/workspace.js:463
msgid "Indicator color"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Info"
-msgstr "Info"
-
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Info"
-msgstr "Info"
-
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Info"
-msgstr "Info"
+msgstr ""
-#: core/doctype/data_export/exporter.py:144
+#: frappe/core/doctype/data_export/exporter.py:144
msgid "Info:"
-msgstr "Info:"
+msgstr ""
-#. Label of a Select field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the initial_sync_count (Select) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Initial Sync Count"
-msgstr "Conte sincronizzazione iniziale"
+msgstr ""
#. Option for the 'Database Engine' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "InnoDB"
-msgstr "InnoDB"
+msgstr ""
-#: core/doctype/data_import/data_import_list.js:39
+#. Description of the 'New Role' (Data) field in DocType 'Role Replication'
+#: frappe/core/doctype/role_replication/role_replication.json
+msgid "Input existing role name if you would like to extend it with access of another role."
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import_list.js:35
msgid "Insert"
-msgstr "Inserire"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1712
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Insert Above"
+msgstr ""
+
+#. Label of the insert_after (Select) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
msgid "Insert After"
-msgstr "Inserisci Dopo"
+msgstr ""
-#. Label of a Select field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Insert After"
-msgstr "Inserisci Dopo"
-
-#: custom/doctype/custom_field/custom_field.py:249
+#: frappe/custom/doctype/custom_field/custom_field.py:251
msgid "Insert After cannot be set as {0}"
-msgstr "Inserisci dopo non può essere impostato come {0}"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.py:242
+#: frappe/custom/doctype/custom_field/custom_field.py:244
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
-msgstr "Inserisci dopo campo '{0}' di cui al campo personalizzato '{1}', con etichetta '{2}', non esiste"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:364
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Insert Below"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
-msgstr "Inserisci colonna prima di {0}"
+msgstr ""
-#: public/js/frappe/form/controls/markdown_editor.js:81
+#: frappe/public/js/frappe/form/controls/markdown_editor.js:82
msgid "Insert Image in Markdown"
msgstr ""
#. Option for the 'Import Type' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/core/doctype/data_import/data_import.json
msgid "Insert New Records"
-msgstr "Inserisci nuovi record"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the insert_style (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Insert Style"
-msgstr "Inserire Stile"
+msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:646
-#: public/js/frappe/ui/toolbar/search_utils.js:647
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666
msgid "Install {0} from Marketplace"
msgstr ""
#. Name of a DocType
-#: core/doctype/installed_application/installed_application.json
+#: frappe/core/doctype/installed_application/installed_application.json
msgid "Installed Application"
-msgstr "Applicazione installata"
+msgstr ""
#. Name of a DocType
-#: core/doctype/installed_applications/installed_applications.json
+#. Label of the installed_applications (Table) field in DocType 'Installed
+#. Applications'
+#: frappe/core/doctype/installed_applications/installed_applications.json
msgid "Installed Applications"
-msgstr "Applicazioni installate"
+msgstr ""
-#. Label of a Table field in DocType 'Installed Applications'
-#: core/doctype/installed_applications/installed_applications.json
-msgctxt "Installed Applications"
-msgid "Installed Applications"
-msgstr "Applicazioni installate"
-
-#: core/doctype/installed_applications/installed_applications.js:18
+#: frappe/core/doctype/installed_applications/installed_applications.js:18
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
msgid "Installed Apps"
msgstr ""
-#: permissions.py:826
+#. Label of the instructions (HTML) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Instructions"
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:261
+msgid "Instructions Emailed"
+msgstr ""
+
+#: frappe/permissions.py:827
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: database/query.py:371 desk/form/load.py:40 model/document.py:234
+#: frappe/database/query.py:383
msgid "Insufficient Permission for {0}"
-msgstr "Autorizzazione insufficiente per {0}"
+msgstr ""
-#: desk/reportview.py:322
+#: frappe/desk/reportview.py:360
msgid "Insufficient Permissions for deleting Report"
msgstr ""
-#: desk/reportview.py:293
+#: frappe/desk/reportview.py:331
msgid "Insufficient Permissions for editing Report"
msgstr ""
-#: core/doctype/doctype/doctype.py:447
+#: frappe/core/doctype/doctype/doctype.py:445
msgid "Insufficient attachment limit"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Int"
-msgstr "Int."
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Int"
-msgstr "Int."
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Int"
-msgstr "Int."
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Int"
-msgstr "Int."
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Int"
-msgstr "Int."
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Int"
-msgstr "Int."
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Int"
-msgstr "Int."
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Integration Request"
-msgstr "Integrazione Richiesta"
-
-#. Name of a Workspace
-#: integrations/workspace/integrations/integrations.json
-msgid "Integrations"
-msgstr "Integrazioni"
+msgstr ""
#. Group in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
+#. 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 "Integrazioni"
-
-#. Label of a Tab Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Integrations"
-msgstr "Integrazioni"
+msgstr ""
#. Description of the 'Delivery Status' (Select) field in DocType
#. 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Integrations can use this field to set email delivery status"
-msgstr "Integrazioni possono utilizzare questo campo per impostare lo stato di consegna di posta elettronica"
+msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Inter"
msgstr ""
-#. Label of a Small Text field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the interest (Small Text) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Interests"
-msgstr "Interessi"
+msgstr ""
#. Option for the 'Level' (Select) field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
+#: frappe/website/doctype/help_article/help_article.json
msgid "Intermediate"
-msgstr "Intermedio"
+msgstr ""
-#: public/js/frappe/request.js:232
+#: frappe/public/js/frappe/request.js:235
msgid "Internal Server Error"
-msgstr "Errore interno del server"
+msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Description of a DocType
+#: frappe/core/doctype/docshare/docshare.json
+msgid "Internal record of document shares"
+msgstr ""
+
+#. Label of the intro_video_url (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Intro Video URL"
msgstr ""
#. Description of the 'Company Introduction' (Text Editor) field in DocType
#. 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Introduce your company to the website visitor."
-msgstr "Presenta l'azienda al visitatore del sito."
+msgstr ""
-#. Label of a Section Break field in DocType 'Contact Us Settings'
-#. Label of a Text Editor field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the introduction_section (Section Break) field in DocType 'Contact
+#. Us Settings'
+#. Label of the introduction (Text Editor) field in DocType 'Contact Us
+#. Settings'
+#. Label of the introduction_text (Text Editor) field in DocType 'Web Form'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/doctype/web_form/web_form.json
msgid "Introduction"
-msgstr "Presentazione"
-
-#. Label of a Text Editor field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Introduction"
-msgstr "Presentazione"
-
-#. Title of an Onboarding Step
-#: website/onboarding_step/introduction_to_website/introduction_to_website.json
-msgid "Introduction to Website"
msgstr ""
#. Description of the 'Introduction' (Text Editor) field in DocType 'Contact Us
#. Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Introductory information for the Contact Us Page"
-msgstr "Informazioni introduttive per la pagina Contattaci"
+msgstr ""
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the introspection_uri (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Introspection URI"
msgstr ""
#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization
#. Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Invalid"
-msgstr "Non valido"
+msgstr ""
-#: public/js/form_builder/utils.js:221 public/js/frappe/form/grid_row.js:748
-#: public/js/frappe/form/layout.js:774
+#: frappe/public/js/form_builder/utils.js:221
+#: frappe/public/js/frappe/form/grid_row.js:833
+#: frappe/public/js/frappe/form/layout.js:811
+#: frappe/public/js/frappe/views/reports/report_view.js:716
msgid "Invalid \"depends_on\" expression"
-msgstr "Espressione "depend_on" non valida"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:510
+#: frappe/public/js/frappe/views/reports/query_report.js:513
msgid "Invalid \"depends_on\" expression set in filter {0}"
-msgstr "Espressione "dipende_on" non valida impostata nel filtro {0}"
+msgstr ""
-#: public/js/frappe/form/save.js:206
+#: frappe/public/js/frappe/form/save.js:159
msgid "Invalid \"mandatory_depends_on\" expression"
msgstr ""
-#: utils/nestedset.py:181
+#: frappe/utils/nestedset.py:178
msgid "Invalid Action"
msgstr ""
-#: utils/csvutils.py:35
+#: frappe/utils/csvutils.py:37
msgid "Invalid CSV Format"
-msgstr "Invalid Formato CSV"
+msgstr ""
-#: integrations/doctype/webhook/webhook.py:87
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:111
+msgid "Invalid Code. Please try again."
+msgstr ""
+
+#: frappe/integrations/doctype/webhook/webhook.py:87
msgid "Invalid Condition: {}"
msgstr ""
-#: email/smtp.py:132
+#: frappe/email/smtp.py:135
msgid "Invalid Credentials"
-msgstr "Credenziali non valide"
+msgstr ""
-#: utils/data.py:124 utils/data.py:285
+#: frappe/utils/data.py:136 frappe/utils/data.py:299
msgid "Invalid Date"
-msgstr "Data non valida"
+msgstr ""
-#: www/list.py:85
+#: frappe/www/list.py:85
msgid "Invalid DocType"
msgstr ""
-#: database/query.py:95
+#: frappe/database/query.py:103
msgid "Invalid DocType: {0}"
msgstr ""
-#: core/doctype/doctype/doctype.py:1223
+#: frappe/core/doctype/doctype/doctype.py:1272
msgid "Invalid Fieldname"
msgstr ""
-#: core/doctype/file/file.py:206
+#: frappe/core/doctype/file/file.py:209
msgid "Invalid File URL"
msgstr ""
-#: public/js/form_builder/store.js:216
+#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
-#: utils/dashboard.py:61
+#: frappe/utils/dashboard.py:61
msgid "Invalid Filter Value"
-msgstr "Valore filtro non valido"
+msgstr ""
-#: website/doctype/website_settings/website_settings.py:83
+#: frappe/website/doctype/website_settings/website_settings.py:83
msgid "Invalid Home Page"
-msgstr "Home Page non valida"
+msgstr ""
-#: utils/verified_command.py:48 www/update-password.html:151
+#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153
msgid "Invalid Link"
-msgstr "Link non valido"
+msgstr ""
-#: www/login.py:112
+#: frappe/www/login.py:128
msgid "Invalid Login Token"
-msgstr "Invalid Login Token"
+msgstr ""
-#: email/receive.py:105 email/receive.py:142
+#: frappe/templates/includes/login/login.js:290
+msgid "Invalid Login. Try again."
+msgstr ""
+
+#: frappe/email/receive.py:112 frappe/email/receive.py:149
msgid "Invalid Mail Server. Please rectify and try again."
-msgstr "Server di posta non valido. Si prega di correggere e riprovare."
+msgstr ""
-#: model/naming.py:91
+#: frappe/model/naming.py:101
msgid "Invalid Naming Series: {}"
msgstr ""
-#: core/doctype/rq_job/rq_job.py:122
+#: frappe/core/doctype/rq_job/rq_job.py:113
+#: frappe/core/doctype/rq_job/rq_job.py:122
msgid "Invalid Operation"
msgstr ""
-#: core/doctype/doctype/doctype.py:1582 core/doctype/doctype/doctype.py:1591
+#: frappe/core/doctype/doctype/doctype.py:1641
+#: frappe/core/doctype/doctype/doctype.py:1650
msgid "Invalid Option"
-msgstr "Opzione non valida"
+msgstr ""
-#: email/smtp.py:102
+#: frappe/email/smtp.py:103
msgid "Invalid Outgoing Mail Server or Port: {0}"
msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.py:182
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:188
msgid "Invalid Output Format"
-msgstr "Formato di uscita non valido"
+msgstr ""
-#: integrations/doctype/connected_app/connected_app.py:166
+#: frappe/model/base_document.py:116
+msgid "Invalid Override"
+msgstr ""
+
+#: frappe/integrations/doctype/connected_app/connected_app.py:195
msgid "Invalid Parameters."
msgstr ""
-#: core/doctype/user/user.py:1195 www/update-password.html:121
-#: www/update-password.html:142 www/update-password.html:144
-#: www/update-password.html:246
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
+#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
+#: frappe/www/update-password.html:247
msgid "Invalid Password"
-msgstr "Password non valida"
+msgstr ""
-#: utils/__init__.py:109
+#: frappe/utils/__init__.py:122
msgid "Invalid Phone Number"
msgstr ""
-#: auth.py:93 utils/oauth.py:184 utils/oauth.py:191 www/login.py:112
+#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
+#: frappe/www/login.py:128
msgid "Invalid Request"
-msgstr "richiesta non valida"
+msgstr ""
-#: desk/search.py:26
+#: frappe/desk/search.py:26
msgid "Invalid Search Field {0}"
-msgstr "Campo di ricerca non valido {0}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1165
+#: frappe/core/doctype/doctype/doctype.py:1214
msgid "Invalid Table Fieldname"
msgstr ""
-#: public/js/workflow_builder/store.js:182
+#: frappe/public/js/workflow_builder/store.js:192
msgid "Invalid Transition"
msgstr ""
-#: core/doctype/file/file.py:217 public/js/frappe/widgets/widget_dialog.js:565
-#: utils/csvutils.py:199 utils/csvutils.py:220
+#: frappe/core/doctype/file/file.py:220
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
+#: frappe/public/js/frappe/widgets/widget_dialog.js:602
+#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
-msgstr "URL non valido"
+msgstr ""
-#: email/receive.py:150
+#: frappe/email/receive.py:157
msgid "Invalid User Name or Support Password. Please rectify and try again."
-msgstr "Nome utente non valido o supporto password. Si prega di correggere e riprovare."
+msgstr ""
-#: integrations/doctype/webhook/webhook.py:116
+#: frappe/public/js/frappe/ui/field_group.js:137
+msgid "Invalid Values"
+msgstr ""
+
+#: frappe/integrations/doctype/webhook/webhook.py:116
msgid "Invalid Webhook Secret"
msgstr ""
-#: desk/reportview.py:150
+#: frappe/desk/reportview.py:186
msgid "Invalid aggregate function"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:373
+#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
-msgstr "Colonna non valida"
+msgstr ""
-#: model/document.py:841 model/document.py:855
+#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
-#: public/js/frappe/utils/dashboard_utils.js:229
+#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
-msgstr "Espressione non valida impostata nel filtro {0}"
+msgstr ""
-#: public/js/frappe/utils/dashboard_utils.js:219
+#: frappe/public/js/frappe/utils/dashboard_utils.js:219
msgid "Invalid expression set in filter {0} ({1})"
-msgstr "Espressione non valida impostata nel filtro {0} ({1})"
+msgstr ""
-#: utils/data.py:2128
+#: frappe/utils/data.py:2186
msgid "Invalid field name {0}"
-msgstr "Nome campo non valido {0}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1048
+#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
-msgstr "fieldname non valido '{0}' in Autoname"
+msgstr ""
-#: client.py:344
+#: frappe/deprecation_dumpster.py:283
msgid "Invalid file path: {0}"
-msgstr "Non valido percorso del file: {0}"
+msgstr ""
-#: database/query.py:173 public/js/frappe/ui/filters/filter_list.js:199
+#: frappe/database/query.py:189
+#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
-msgstr "Filtro non valido: {0}"
+msgstr ""
-#: model/utils/__init__.py:69
-msgid "Invalid include path"
-msgstr "Percorso di inclusione non valido"
-
-#: desk/doctype/dashboard/dashboard.py:68
-#: desk/doctype/dashboard_chart/dashboard_chart.py:424
+#: frappe/desk/doctype/dashboard/dashboard.py:67
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
-msgstr "JSON non valido aggiunto nelle opzioni personalizzate: {0}"
+msgstr ""
-#: model/naming.py:445
+#: frappe/model/naming.py:490
msgid "Invalid name type (integer) for varchar name column"
msgstr ""
-#: model/naming.py:52
+#: frappe/model/naming.py:62
msgid "Invalid naming series {}: dot (.) missing"
msgstr ""
-#: core/doctype/data_import/importer.py:438
+#: frappe/core/doctype/data_import/importer.py:453
msgid "Invalid or corrupted content for import"
-msgstr "Contenuto non valido o danneggiato per l'importazione"
+msgstr ""
-#: website/doctype/website_settings/website_settings.py:139
+#: frappe/website/doctype/website_settings/website_settings.py:139
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: app.py:301
+#: frappe/app.py:317
msgid "Invalid request arguments"
msgstr ""
-#: integrations/doctype/connected_app/connected_app.py:172
-msgid "Invalid state."
+#: frappe/core/doctype/data_import/importer.py:430
+msgid "Invalid template file for import"
msgstr ""
-#: core/doctype/data_import/importer.py:415
-msgid "Invalid template file for import"
-msgstr "File modello non valido per l'importazione"
+#: frappe/integrations/doctype/connected_app/connected_app.py:201
+msgid "Invalid token state! Check if the token has been created by the OAuth user."
+msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:162
-#: integrations/doctype/ldap_settings/ldap_settings.py:335
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:165
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:336
msgid "Invalid username or password"
-msgstr "Nome utente o password errati"
+msgstr ""
-#: public/js/frappe/web_form/web_form.js:229
+#: frappe/model/naming.py:168
+msgid "Invalid value specified for UUID: {}"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:229
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
msgstr ""
-#: core/doctype/doctype/doctype.py:1515
+#: frappe/printing/page/print/print.js:614
+msgid "Invalid wkhtmltopdf version"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1564
msgid "Invalid {0} condition"
-msgstr "Condizione non valida {0}"
+msgstr ""
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Inverse"
-msgstr "Inverso"
+msgstr ""
-#: contacts/doctype/contact/contact.js:25
+#: frappe/contacts/doctype/contact/contact.js:30
msgid "Invite as User"
-msgstr "Invita come utente"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:22
+#: frappe/public/js/frappe/ui/filters/filter.js:22
msgid "Is"
-msgstr "È"
+msgstr ""
-#. Label of a Check field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the is_active (Check) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Is Active"
-msgstr "È attivo"
+msgstr ""
-#. Label of a Check field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the is_attachments_folder (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Is Attachments Folder"
-msgstr "È Allegati Cartella"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the is_calendar_and_gantt (Check) field in DocType 'DocType'
+#. Label of the is_calendar_and_gantt (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Is Calendar and Gantt"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Is Calendar and Gantt"
+#. Label of the istable (Check) field in DocType 'DocType'
+#. Label of the is_child_table (Check) field in DocType 'DocType Link'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:49
+#: frappe/core/doctype/doctype_link/doctype_link.json
+msgid "Is Child Table"
msgstr ""
-#: core/doctype/doctype/doctype_list.js:34
-msgid "Is Child Table"
-msgstr "È Tabella Figlio"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Is Child Table"
-msgstr "È Tabella Figlio"
-
-#. Label of a Check field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
-msgid "Is Child Table"
-msgstr "È Tabella Figlio"
-
-#. Label of a Check field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
+#. 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 "È completo"
+msgstr ""
-#. Label of a Check field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Is Complete"
-msgstr "È completo"
-
-#. Label of a Check field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
+#. Label of the is_completed (Check) field in DocType 'Email Flag Queue'
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
msgid "Is Completed"
-msgstr "È completato"
+msgstr ""
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the is_custom (Check) field in DocType 'Role'
+#. Label of the is_custom (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/role/role.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Is Custom"
msgstr ""
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Is Custom"
-msgstr ""
-
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the is_custom_field (Check) field in DocType 'Customize Form Field'
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Is Custom Field"
-msgstr "È Campo Personalizzato"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:69
+#. Label of the is_default (Check) field in DocType 'Address Template'
+#. Label of the is_default (Check) field in DocType 'User Permission'
+#. Label of the is_default (Check) field in DocType 'Dashboard'
+#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/core/doctype/user_permission/user_permission.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:69
+#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Is Default"
-msgstr "È Default"
+msgstr ""
-#. Label of a Check field in DocType 'Address Template'
-#: contacts/doctype/address_template/address_template.json
-msgctxt "Address Template"
-msgid "Is Default"
-msgstr "È Default"
-
-#. Label of a Check field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
-msgid "Is Default"
-msgstr "È Default"
-
-#. Label of a Check field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
-msgid "Is Default"
-msgstr "È Default"
-
-#. Label of a Check field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the is_dynamic_url (Check) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Is Dynamic URL?"
msgstr ""
-#. Label of a Check field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the is_folder (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Is Folder"
-msgstr "È Cartella"
+msgstr ""
-#: public/js/frappe/list/list_filter.js:43
+#: frappe/public/js/frappe/list/list_filter.js:43
msgid "Is Global"
-msgstr "È globale"
+msgstr ""
-#. Label of a Check field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the is_hidden (Check) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
msgstr ""
-#. Label of a Check field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the is_home_folder (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Is Home Folder"
-msgstr "È Cartella Home"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the reqd (Check) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Is Mandatory Field"
-msgstr "È Campo obbligatorio"
+msgstr ""
-#. Label of a Check field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#. Label of the is_optional_state (Check) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Is Optional State"
-msgstr "È stato facoltativo"
+msgstr ""
-#. Label of a Check field in DocType 'Contact Email'
-#: contacts/doctype/contact_email/contact_email.json
-msgctxt "Contact Email"
+#. Label of the is_primary (Check) field in DocType 'Contact Email'
+#: frappe/contacts/doctype/contact_email/contact_email.json
msgid "Is Primary"
-msgstr "È primario"
+msgstr ""
-#. Label of a Check field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the is_primary_contact (Check) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Is Primary Contact"
-msgstr "È il Contatto Principale"
+msgstr ""
-#. Label of a Check field in DocType 'Contact Phone'
-#: contacts/doctype/contact_phone/contact_phone.json
-msgctxt "Contact Phone"
+#. Label of the is_primary_mobile_no (Check) field in DocType 'Contact Phone'
+#: frappe/contacts/doctype/contact_phone/contact_phone.json
msgid "Is Primary Mobile"
-msgstr "È il cellulare principale"
+msgstr ""
-#. Label of a Check field in DocType 'Contact Phone'
-#: contacts/doctype/contact_phone/contact_phone.json
-msgctxt "Contact Phone"
+#. Label of the is_primary_phone (Check) field in DocType 'Contact Phone'
+#: frappe/contacts/doctype/contact_phone/contact_phone.json
msgid "Is Primary Phone"
-msgstr "È il telefono principale"
+msgstr ""
-#. Label of a Check field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the is_private (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Is Private"
-msgstr "È privato"
+msgstr ""
-#. Label of a Check field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the is_public (Check) field in DocType 'Dashboard Chart'
+#. Label of the is_public (Check) field in DocType 'Number Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Is Public"
-msgstr "È pubblico"
+msgstr ""
-#. Label of a Check field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Is Public"
-msgstr "È pubblico"
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the is_published_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Is Published Field"
-msgstr "È pubblicato Campo"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1466
+#: frappe/core/doctype/doctype/doctype.py:1515
msgid "Is Published Field must be a valid fieldname"
-msgstr "Si pubblica campo deve essere un nome di campo valido"
+msgstr ""
-#. Label of a Check field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Label of the is_query_report (Check) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
msgstr ""
-#. Label of a Check field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
+#. Label of the is_remote_request (Check) field in DocType 'Integration
+#. Request'
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Is Remote Request?"
msgstr ""
-#: core/doctype/doctype/doctype_list.js:48
-msgid "Is Single"
-msgstr "È single"
+#. 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 a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the issingle (Check) field in DocType 'DocType'
+#. Label of the is_single (Check) field in DocType 'Onboarding Step'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:64
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
-msgstr "È single"
+msgstr ""
-#. Label of a Check field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Is Single"
-msgstr "È single"
-
-#. Label of a Check field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the is_skipped (Check) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Skipped"
-msgstr "Viene saltato"
+msgstr ""
-#. Label of a Check field in DocType 'Email Rule'
-#: email/doctype/email_rule/email_rule.json
-msgctxt "Email Rule"
+#. Label of the is_spam (Check) field in DocType 'Email Rule'
+#: frappe/email/doctype/email_rule/email_rule.json
msgid "Is Spam"
-msgstr "è spam"
+msgstr ""
-#. Label of a Check field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
+#. Label of the is_standard (Check) field in DocType 'Navbar Item'
+#. Label of the is_standard (Select) field in DocType 'Report'
+#. Label of the is_standard (Check) field in DocType 'User Type'
+#. Label of the is_standard (Check) field in DocType 'Dashboard'
+#. Label of the is_standard (Check) field in DocType 'Dashboard Chart'
+#. Label of the is_standard (Check) field in DocType 'Form Tour'
+#. Label of the is_standard (Check) field in DocType 'Number Card'
+#. Label of the is_standard (Check) field in DocType 'Notification'
+#: frappe/core/doctype/navbar_item/navbar_item.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/notification/notification.json
msgid "Is Standard"
-msgstr "È standard"
+msgstr ""
-#. Label of a Check field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Is Standard"
-msgstr "È standard"
-
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Is Standard"
-msgstr "È standard"
-
-#. Label of a Check field in DocType 'Navbar Item'
-#: core/doctype/navbar_item/navbar_item.json
-msgctxt "Navbar Item"
-msgid "Is Standard"
-msgstr "È standard"
-
-#. Label of a Check field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Is Standard"
-msgstr "È standard"
-
-#. Label of a Check field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Is Standard"
-msgstr "È standard"
-
-#. Label of a Select field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Is Standard"
-msgstr "È standard"
-
-#. Label of a Check field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
-msgid "Is Standard"
-msgstr "È standard"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Is Standard"
-msgstr "È standard"
-
-#: core/doctype/doctype/doctype_list.js:25
+#. Label of the is_submittable (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:39
msgid "Is Submittable"
-msgstr "È Confermabile"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Is Submittable"
-msgstr "È Confermabile"
-
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the is_system_generated (Check) field in DocType 'Custom Field'
+#. Label of the is_system_generated (Check) field in DocType 'Customize Form
+#. Field'
+#. Label of the is_system_generated (Check) field in DocType 'Property Setter'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Is System Generated"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Is System Generated"
-msgstr ""
-
-#. Label of a Check field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
-msgid "Is System Generated"
-msgstr ""
-
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the istable (Check) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Is Table"
-msgstr "è Tabella"
+msgstr ""
-#. Label of a Check field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the is_table_field (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Is Table Field"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the is_tree (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Is Tree"
-msgstr "È albero"
+msgstr ""
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
+#. Label of the is_unique (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Is Unique"
-msgstr "È unico"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the is_virtual (Check) field in DocType 'DocType'
+#. Label of the is_virtual (Check) field in DocType 'Custom Field'
+#. Label of the is_virtual (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Is Virtual"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Is Virtual"
+#. Label of the is_standard (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Is standard"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Is Virtual"
-msgstr ""
-
-#: core/doctype/file/utils.py:155 utils/file_manager.py:315
+#: frappe/core/doctype/file/utils.py:157 frappe/utils/file_manager.py:311
msgid "It is risky to delete this file: {0}. Please contact your System Manager."
-msgstr "E' rischioso cancellare questo file: {0}. Si prega di contattare il Responsabile di Sistema."
+msgstr ""
-#. Label of a Data field in DocType 'Navbar Item'
-#: core/doctype/navbar_item/navbar_item.json
-msgctxt "Navbar Item"
+#. Label of the item_label (Data) field in DocType 'Navbar Item'
+#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Item Label"
-msgstr "Etichetta articolo"
+msgstr ""
-#. Label of a Select field in DocType 'Navbar Item'
-#: core/doctype/navbar_item/navbar_item.json
-msgctxt "Navbar Item"
+#. Label of the item_type (Select) field in DocType 'Navbar Item'
+#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Item Type"
-msgstr "Tipo di elemento"
+msgstr ""
-#: utils/nestedset.py:234
+#: frappe/utils/nestedset.py:229
msgid "Item cannot be added to its own descendants"
-msgstr "L'articolo non può essere aggiunto ai propri discendenti"
+msgstr ""
#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/printing/doctype/print_format/print_format.json
msgid "JS"
-msgstr "JS"
+msgstr ""
-#. Label of a HTML field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
+#. Label of the js_message (HTML) field in DocType 'Custom HTML Block'
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
msgid "JS Message"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "JSON"
-msgstr "JSON"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "JSON"
-msgstr "JSON"
-
-#. Label of a Code field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "JSON"
-msgstr "JSON"
-
+#. Label of the json (Code) field in DocType 'Report'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Request Structure' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report/report.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "JSON"
-msgstr "JSON"
+msgstr ""
-#. Label of a Code field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the webhook_json (Code) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "JSON Request Body"
-msgstr "Corpo della richiesta JSON"
+msgstr ""
-#: templates/signup.html:5
+#: frappe/templates/signup.html:5
msgid "Jane Doe"
msgstr ""
-#. Label of a Code field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the js (Code) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "JavaScript"
-msgstr "JavaScript"
+msgstr ""
#. Description of the 'Javascript' (Code) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#: frappe/core/doctype/report/report.json
msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}"
-msgstr "Formato JavaScript: frappe.query_reports ['REPORTNAME'] = {}"
+msgstr ""
-#. Label of a Section Break field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
+#. Label of the javascript (Code) field in DocType 'Report'
+#. Label of the javascript_section (Section Break) field in DocType 'Custom
+#. HTML Block'
+#. Label of the javascript (Code) field in DocType 'Web Page'
+#. Label of the javascript (Code) field in DocType 'Website Script'
+#: frappe/core/doctype/report/report.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_script/website_script.json
msgid "Javascript"
-msgstr "Javascript"
+msgstr ""
-#. Label of a Code field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Javascript"
-msgstr "Javascript"
-
-#. Label of a Code field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Javascript"
-msgstr "Javascript"
-
-#. Label of a Code field in DocType 'Website Script'
-#: website/doctype/website_script/website_script.json
-msgctxt "Website Script"
-msgid "Javascript"
-msgstr "Javascript"
-
-#: www/login.html:71
+#: frappe/www/login.html:74
msgid "Javascript is disabled on your browser"
-msgstr "Javascript non è attivato per il tuo browser"
+msgstr ""
#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Jinja"
-msgstr "Jinja"
+msgstr ""
-#. Label of a Link field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Label of the job_id (Data) field in DocType 'Prepared Report'
+#. Label of the job_id (Data) field in DocType 'RQ Job'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Job ID"
msgstr ""
-#. Label of a Data field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
-msgid "Job ID"
-msgstr ""
-
-#. Label of a Link field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
+#. Label of the job_id (Link) field in DocType 'Submission Queue'
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Job Id"
msgstr ""
-#. Label of a Section Break field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the job_info_section (Section Break) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Job Info"
msgstr ""
-#. Label of a Data field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the job_name (Data) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Job Name"
msgstr ""
-#. Label of a Section Break field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the job_status_section (Section Break) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Job Status"
msgstr ""
-#: core/doctype/rq_job/rq_job.js:24
+#: frappe/core/doctype/rq_job/rq_job.js:24
msgid "Job Stopped Successfully"
msgstr ""
-#: core/doctype/rq_job/rq_job.py:122
+#: frappe/core/doctype/rq_job/rq_job.py:121
+msgid "Job is in {0} state and can't be cancelled"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job.py:113
msgid "Job is not running."
msgstr ""
-#: desk/doctype/event/event.js:51
+#: frappe/desk/doctype/event/event.js:55
msgid "Join video conference with {0}"
msgstr ""
-#: public/js/frappe/form/toolbar.js:355 public/js/frappe/form/toolbar.js:757
+#: frappe/public/js/frappe/form/toolbar.js:395
+#: frappe/public/js/frappe/form/toolbar.js:830
msgid "Jump to field"
-msgstr "Vai al campo"
+msgstr ""
-#: public/js/frappe/utils/number_systems.js:17
-#: public/js/frappe/utils/number_systems.js:31
-#: public/js/frappe/utils/number_systems.js:53
+#: frappe/public/js/frappe/utils/number_systems.js:17
+#: frappe/public/js/frappe/utils/number_systems.js:31
+#: frappe/public/js/frappe/utils/number_systems.js:53
msgctxt "Number system"
msgid "K"
msgstr ""
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Kanban"
-msgstr "Kanban"
-
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Kanban"
-msgstr "Kanban"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/kanban_board/kanban_board.json
+#. 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 "Kanban Board"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Kanban Board"
-msgstr "Kanban Board"
-
-#. Label of a Link field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Kanban Board"
-msgstr "Kanban Board"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/kanban_board_column/kanban_board_column.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Kanban Board Column"
-msgstr "Colonna della Kanban Board"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:385
+#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
msgid "Kanban Board Name"
-msgstr "Nome della Kanban Board"
+msgstr ""
-#. Label of a Data field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Kanban Board Name"
-msgstr "Nome della Kanban Board"
-
-#: public/js/frappe/views/kanban/kanban_view.js:262
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
-#. Label of a Data field in DocType 'DefaultValue'
-#: core/doctype/defaultvalue/defaultvalue.json
-msgctxt "DefaultValue"
-msgid "Key"
-msgstr "Chiave"
+#: frappe/public/js/frappe/list/base_list.js:206
+msgid "Kanban View"
+msgstr ""
-#. Label of a Data field in DocType 'Document Share Key'
-#: core/doctype/document_share_key/document_share_key.json
-msgctxt "Document Share Key"
-msgid "Key"
-msgstr "Chiave"
+#. Description of a DocType
+#: frappe/core/doctype/activity_log/activity_log.json
+msgid "Keep track of all update feeds"
+msgstr ""
-#. Label of a Data field in DocType 'Query Parameters'
-#: integrations/doctype/query_parameters/query_parameters.json
-msgctxt "Query Parameters"
-msgid "Key"
-msgstr "Chiave"
+#. Description of a DocType
+#: frappe/core/doctype/communication/communication.json
+msgid "Keeps track of all communications"
+msgstr ""
-#. Label of a Data field in DocType 'Webhook Data'
-#: integrations/doctype/webhook_data/webhook_data.json
-msgctxt "Webhook Data"
+#. Label of the defkey (Data) field in DocType 'DefaultValue'
+#. Label of the key (Data) field in DocType 'Document Share Key'
+#. Label of the key (Data) field in DocType 'Query Parameters'
+#. Label of the key (Data) field in DocType 'Webhook Data'
+#. Label of the key (Small Text) field in DocType 'Webhook Header'
+#. Label of the key (Data) field in DocType 'Website Meta Tag'
+#: frappe/core/doctype/defaultvalue/defaultvalue.json
+#: frappe/core/doctype/document_share_key/document_share_key.json
+#: frappe/integrations/doctype/query_parameters/query_parameters.json
+#: frappe/integrations/doctype/webhook_data/webhook_data.json
+#: frappe/integrations/doctype/webhook_header/webhook_header.json
+#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Key"
-msgstr "Chiave"
-
-#. Label of a Small Text field in DocType 'Webhook Header'
-#: integrations/doctype/webhook_header/webhook_header.json
-msgctxt "Webhook Header"
-msgid "Key"
-msgstr "Chiave"
-
-#. Label of a Data field in DocType 'Website Meta Tag'
-#: website/doctype/website_meta_tag/website_meta_tag.json
-msgctxt "Website Meta Tag"
-msgid "Key"
-msgstr "Chiave"
+msgstr ""
#. Label of a standard help item
#. Type: Action
-#: hooks.py public/js/frappe/ui/keyboard.js:126
+#: frappe/hooks.py frappe/public/js/frappe/ui/keyboard.js:130
msgid "Keyboard Shortcuts"
-msgstr "Tasti rapidi"
+msgstr ""
-#: public/js/frappe/utils/number_systems.js:37
+#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
+#. Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Keycloak"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/number_systems.js:37
msgctxt "Number system"
msgid "Kh"
msgstr ""
#. Label of a Card Break in the Website Workspace
-#: website/doctype/help_article/help_article.py:80
-#: website/workspace/website/website.json
+#: frappe/website/doctype/help_article/help_article.py:80
+#: frappe/website/doctype/help_article/templates/help_article_list.html:2
+#: frappe/website/doctype/help_article/templates/help_article_list.html:11
+#: frappe/website/workspace/website/website.json
msgid "Knowledge Base"
-msgstr "base di conoscenza"
+msgstr ""
#. Name of a role
-#: website/doctype/help_article/help_article.json
+#: frappe/website/doctype/help_article/help_article.json
msgid "Knowledge Base Contributor"
-msgstr "Contributore alla Base di Conoscenza"
+msgstr ""
#. Name of a role
-#: website/doctype/help_article/help_article.json
+#: frappe/website/doctype/help_article/help_article.json
msgid "Knowledge Base Editor"
-msgstr "Conoscenza Editor Base"
+msgstr ""
-#: public/js/frappe/utils/number_systems.js:27
-#: public/js/frappe/utils/number_systems.js:49
+#: frappe/public/js/frappe/utils/number_systems.js:27
+#: frappe/public/js/frappe/utils/number_systems.js:49
msgctxt "Number system"
msgid "L"
msgstr ""
-#. Label of a Section Break field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_auth_section (Section Break) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Auth"
msgstr ""
-#. Label of a Section Break field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_custom_settings_section (Section Break) field in DocType
+#. 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Custom Settings"
msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_email_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Email Field"
-msgstr "LDAP Email Campo"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_first_name_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP First Name Field"
-msgstr "LDAP Nome campo"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Group Mapping'
-#: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
-msgctxt "LDAP Group Mapping"
+#. Label of the ldap_group (Data) field in DocType 'LDAP Group Mapping'
+#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
msgid "LDAP Group"
-msgstr "Gruppo LDAP"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_group_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Field"
-msgstr "Campo gruppo LDAP"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
+#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
msgid "LDAP Group Mapping"
-msgstr "Mappatura del gruppo LDAP"
+msgstr ""
-#. Label of a Section Break field in DocType 'LDAP Settings'
-#. Label of a Table field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_group_mappings_section (Section Break) field in DocType
+#. 'LDAP Settings'
+#. Label of the ldap_groups (Table) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Mappings"
-msgstr "Mapping dei gruppi LDAP"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_group_member_attribute (Data) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Member attribute"
msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_last_name_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Last Name Field"
-msgstr "Campo Cognome LDAP"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_middle_name_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Middle Name Field"
-msgstr "Campo del secondo nome LDAP"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_mobile_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Mobile Field"
-msgstr "Campo mobile LDAP"
+msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:160
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163
msgid "LDAP Not Installed"
-msgstr "LDAP non installato"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_phone_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Phone Field"
-msgstr "Campo telefono LDAP"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_search_string (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Search String"
-msgstr "Ricerca LDAP String"
+msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:127
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:130
msgid "LDAP Search String must be enclosed in '()' and needs to contian the user placeholder {0}, eg sAMAccountName={0}"
msgstr ""
-#. Label of a Section Break field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_search_and_paths_section (Section Break) field in DocType
+#. 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Search and Paths"
msgstr ""
-#. Label of a Section Break field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_security (Section Break) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Security"
-msgstr "Sicurezza LDAP"
+msgstr ""
-#. Label of a Section Break field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_server_settings_section (Section Break) field in DocType
+#. 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Server Settings"
msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_server_url (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Server Url"
-msgstr "LDAP Server URL"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgid "LDAP Settings"
-msgstr "Impostazioni LDAP"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "LDAP Settings"
-msgstr "Impostazioni LDAP"
+msgstr ""
-#. Label of a Section Break field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_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 "Creazione e mappatura degli utenti LDAP"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_username_field (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Username Field"
-msgstr "LDAP Nome utente Campo"
+msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:308
-#: integrations/doctype/ldap_settings/ldap_settings.py:427
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:309
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:426
msgid "LDAP is not enabled."
-msgstr "LDAP non è abilitato."
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_search_path_group (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP search path for Groups"
msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ldap_search_path_user (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP search path for Users"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:99
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:102
msgid "LDAP settings incorrect. validation response was: {0}"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:474
-#: public/js/frappe/widgets/widget_dialog.js:606
-#: public/js/frappe/widgets/widget_dialog.js:639
-msgid "Label"
-msgstr "Etichetta"
-
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#. Label of the label (Data) field in DocType 'DocField'
+#. Label of the label (Data) field in DocType 'DocType Action'
+#. Label of the label (Data) field in DocType 'Report Column'
+#. Label of the label (Data) field in DocType 'Report Filter'
+#. Label of the label (Data) field in DocType 'Custom Field'
+#. Label of the label (Data) field in DocType 'Customize Form Field'
+#. Label of the label (Data) field in DocType 'DocType Layout Field'
+#. Label of the label (Data) field in DocType 'Desktop Icon'
+#. Label of the label (Data) field in DocType 'Form Tour Step'
+#. Label of the label (Data) field in DocType 'Number Card'
+#. Label of the label (Data) field in DocType 'Workspace Chart'
+#. Label of the label (Data) field in DocType 'Workspace Custom Block'
+#. Label of the label (Data) field in DocType 'Workspace Link'
+#. Label of the label (Data) field in DocType 'Workspace Number Card'
+#. Label of the label (Data) field in DocType 'Workspace Quick List'
+#. Label of the label (Data) field in DocType 'Workspace Shortcut'
+#. Label of the label (Data) field in DocType 'Top Bar Item'
+#. Label of the label (Data) field in DocType 'Web Template Field'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype_action/doctype_action.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/workspace_chart/workspace_chart.json
+#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json
+#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/printing/page/print_format_builder/print_format_builder.js:474
+#: frappe/public/js/form_builder/components/Field.vue:208
+#: frappe/public/js/frappe/widgets/widget_dialog.js:183
+#: frappe/public/js/frappe/widgets/widget_dialog.js:251
+#: frappe/public/js/frappe/widgets/widget_dialog.js:313
+#: frappe/public/js/frappe/widgets/widget_dialog.js:466
+#: frappe/public/js/frappe/widgets/widget_dialog.js:643
+#: frappe/public/js/frappe/widgets/widget_dialog.js:676
+#: frappe/public/js/print_format_builder/Field.vue:18
+#: frappe/templates/form_grid/fields.html:37
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Label"
-msgstr "Etichetta"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Label"
-msgstr "Etichetta"
-
-#. Label of a Data field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Label"
-msgstr "Etichetta"
-
-#. Label of a Data field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Label"
-msgstr "Etichetta"
-
-#. Label of a Data field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Label"
-msgstr "Etichetta"
-
-#. Label of a Data field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Label"
-msgstr "Etichetta"
-
-#. Label of a Data field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
-msgid "Label"
-msgstr "Etichetta"
-
-#. Label of a Data field in DocType 'DocType Layout Field'
-#: custom/doctype/doctype_layout_field/doctype_layout_field.json
-msgctxt "DocType Layout Field"
-msgid "Label"
-msgstr "Etichetta"
-
-#. Label of a Data field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Label"
-msgstr "Etichetta"
-
-#. Label of a Data field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Label"
-msgstr "Etichetta"
-
-#. Label of a Data field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Label"
-msgstr "Etichetta"
-
-#. Label of a Data field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Label"
-msgstr "Etichetta"
-
-#. Label of a Data field in DocType 'Top Bar Item'
-#: website/doctype/top_bar_item/top_bar_item.json
-msgctxt "Top Bar Item"
-msgid "Label"
-msgstr "Etichetta"
-
-#. Label of a Data field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Label"
-msgstr "Etichetta"
-
-#. Label of a Data field in DocType 'Workspace Chart'
-#: desk/doctype/workspace_chart/workspace_chart.json
-msgctxt "Workspace Chart"
-msgid "Label"
-msgstr "Etichetta"
-
-#. Label of a Data field in DocType 'Workspace Custom Block'
-#: desk/doctype/workspace_custom_block/workspace_custom_block.json
-msgctxt "Workspace Custom Block"
-msgid "Label"
-msgstr "Etichetta"
-
-#. Label of a Data field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
-msgid "Label"
-msgstr "Etichetta"
-
-#. Label of a Data field in DocType 'Workspace Number Card'
-#: desk/doctype/workspace_number_card/workspace_number_card.json
-msgctxt "Workspace Number Card"
-msgid "Label"
-msgstr "Etichetta"
-
-#. Label of a Data field in DocType 'Workspace Quick List'
-#: desk/doctype/workspace_quick_list/workspace_quick_list.json
-msgctxt "Workspace Quick List"
-msgid "Label"
-msgstr "Etichetta"
-
-#. Label of a Data field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Label"
-msgstr "Etichetta"
-
-#. Label of a HTML field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the label_help (HTML) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Label Help"
-msgstr "Etichetta Aiuto"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the label_and_type (Section Break) field in DocType 'Customize Form
+#. Field'
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Label and Type"
-msgstr "Etichetta e Tipo"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.py:141
+#: frappe/custom/doctype/custom_field/custom_field.py:145
msgid "Label is mandatory"
-msgstr "Etichetta è obbligatorio"
+msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the sb0 (Section Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Landing Page"
-msgstr "Pagina di destinazione"
+msgstr ""
-#: public/js/frappe/form/print_utils.js:28
+#: frappe/public/js/frappe/form/print_utils.js:30
msgid "Landscape"
-msgstr "Paesaggio"
+msgstr ""
#. Name of a DocType
-#: core/doctype/language/language.json printing/page/print/print.js:104
+#. Label of the language (Link) field in DocType 'System Settings'
+#. Label of the language (Link) field in DocType 'Translation'
+#. Label of the language (Link) field in DocType 'User'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/translation/translation.json
+#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104
+#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
-msgstr "Lingua"
+msgstr ""
-#. Label of a Link field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Language"
-msgstr "Lingua"
-
-#. Label of a Link field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
-msgid "Language"
-msgstr "Lingua"
-
-#. Label of a Link field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Language"
-msgstr "Lingua"
-
-#. Label of a Data field in DocType 'Language'
-#: core/doctype/language/language.json
-msgctxt "Language"
+#. Label of the language_code (Data) field in DocType 'Language'
+#: frappe/core/doctype/language/language.json
msgid "Language Code"
-msgstr "Codice lingua"
+msgstr ""
-#. Label of a Data field in DocType 'Language'
-#: core/doctype/language/language.json
-msgctxt "Language"
+#. Label of the language_name (Data) field in DocType 'Language'
+#: frappe/core/doctype/language/language.json
msgid "Language Name"
-msgstr "Nome lingua"
+msgstr ""
-#. Label of a Datetime field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the last_10_active_users (Code) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Last 10 active users"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:628
+msgid "Last 14 Days"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:632
+msgid "Last 30 Days"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:652
+msgid "Last 6 Months"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:624
+msgid "Last 7 Days"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:636
+msgid "Last 90 Days"
+msgstr ""
+
+#. Label of the last_active (Datetime) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Last Active"
-msgstr "Ultimo attivo"
+msgstr ""
-#. Label of a Datetime field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Last Backup On"
-msgstr "Ultimo backup attivo"
-
-#. Label of a Datetime field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#. Label of the last_execution (Datetime) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Last Execution"
-msgstr "Ultima esecuzione"
+msgstr ""
-#. Label of a Datetime field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the last_heartbeat (Datetime) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Last Heartbeat"
msgstr ""
-#. Label of a Read Only field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the last_ip (Read Only) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Last IP"
-msgstr "Ultimo IP"
+msgstr ""
-#. Label of a Text field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the last_known_versions (Text) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Last Known Versions"
-msgstr "Ultime versioni note"
+msgstr ""
-#. Label of a Read Only field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the last_login (Read Only) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Last Login"
-msgstr "Ultimo Login"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.js:242
-#: public/js/frappe/views/dashboard/dashboard_view.js:479
+#: frappe/email/doctype/notification/notification.js:32
+msgid "Last Modified Date"
+msgstr ""
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:242
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:480
msgid "Last Modified On"
-msgstr "Ultima modifica"
+msgstr ""
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/ui/filters/filter.js:644
msgid "Last Month"
-msgstr "Lo scorso mese"
+msgstr ""
-#: www/complete_signup.html:19
+#. Label of the last_name (Data) field in DocType 'Contact'
+#. Label of the last_name (Data) field in DocType 'User'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
msgid "Last Name"
-msgstr "Cognome"
+msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Last Name"
-msgstr "Cognome"
-
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Last Name"
-msgstr "Cognome"
-
-#. Label of a Date field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the last_password_reset_date (Date) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Last Password Reset Date"
-msgstr "Data di reimpostazione dell'ultima password"
-
-#. Label of a Date field in DocType 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Last Point Allocation Date"
-msgstr "Data di assegnazione dell'ultimo punto"
+msgstr ""
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/ui/filters/filter.js:648
msgid "Last Quarter"
-msgstr "Ultimo quarto"
+msgstr ""
-#. Label of a Datetime field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the last_reset_password_key_generated_on (Datetime) field in
+#. DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Last Reset Password Key Generated On"
msgstr ""
-#. Label of a Datetime field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
+#. Label of the datetime_last_run (Datetime) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Last Run"
+msgstr ""
+
+#. Label of the last_sync_on (Datetime) field in DocType 'Google Contacts'
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Last Sync On"
-msgstr "Ultima sincronizzazione attivata"
+msgstr ""
-#. Label of a Datetime field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the last_synced_at (Datetime) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Last Synced At"
+msgstr ""
+
+#. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Last Synced On"
-msgstr "Ultima sincronizzazione attivata"
+msgstr ""
-#: model/__init__.py:145 model/meta.py:50 public/js/frappe/model/meta.js:202
-#: public/js/frappe/model/model.js:120
+#: frappe/model/meta.py:57 frappe/public/js/frappe/model/meta.js:205
+#: frappe/public/js/frappe/model/model.js:130
msgid "Last Updated By"
-msgstr "Ultimo aggiornamento Di"
+msgstr ""
-#: model/__init__.py:141 model/meta.py:49 public/js/frappe/model/meta.js:201
-#: public/js/frappe/model/model.js:116
+#: frappe/model/meta.py:56 frappe/public/js/frappe/model/meta.js:204
+#: frappe/public/js/frappe/model/model.js:126
msgid "Last Updated On"
-msgstr "Ultimo aggiornamento il"
+msgstr ""
-#. Label of a Link field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the last_user (Link) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Last User"
-msgstr "Ultimo utente"
+msgstr ""
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/ui/filters/filter.js:640
msgid "Last Week"
-msgstr "La settimana scorsa"
+msgstr ""
#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/ui/filters/filter.js:656
msgid "Last Year"
-msgstr "L'anno scorso"
+msgstr ""
-#: public/js/frappe/widgets/chart_widget.js:698
+#: frappe/public/js/frappe/widgets/chart_widget.js:753
msgid "Last synced {0}"
-msgstr "Ultima sincronizzazione {0}"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:186
+#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
msgstr ""
-#: custom/doctype/customize_form/customize_form.js:178
+#: frappe/custom/doctype/customize_form/customize_form.js:186
msgid "Layout will be reset to standard layout, are you sure you want to do this?"
msgstr ""
-#: desk/page/leaderboard/leaderboard.js:15
-msgid "Leaderboard"
-msgstr "Classifica"
-
-#. Label of an action in the Onboarding Step 'Customize Print Formats'
-#: custom/onboarding_step/print_format/print_format.json
-msgid "Learn about Standard and Custom Print Formats"
-msgstr ""
-
-#. Title of an Onboarding Step
-#: website/onboarding_step/web_page_tour/web_page_tour.json
-msgid "Learn about Web Pages"
-msgstr ""
-
-#. Label of an action in the Onboarding Step 'Create Custom Fields'
-#: custom/onboarding_step/custom_field/custom_field.json
-msgid "Learn how to add Custom Fields"
-msgstr ""
-
-#: website/web_template/section_with_features/section_with_features.html:26
+#: frappe/website/web_template/section_with_features/section_with_features.html:26
msgid "Learn more"
msgstr ""
-#. Label of an action in the Onboarding Step 'Generate Custom Reports'
-#: custom/onboarding_step/report_builder/report_builder.json
-msgid "Learn more about Report Builders"
-msgstr ""
-
-#. Label of an action in the Onboarding Step 'Custom Document Types'
-#: custom/onboarding_step/custom_doctype/custom_doctype.json
-msgid "Learn more about creating new DocTypes"
-msgstr ""
-
#. Description of the 'Repeat Till' (Date) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/desk/doctype/event/event.json
msgid "Leave blank to repeat always"
-msgstr "Lascia in bianco per ripetere sempre"
+msgstr ""
-#: core/doctype/communication/mixins.py:206
-#: email/doctype/email_account/email_account.py:624
+#: frappe/core/doctype/communication/mixins.py:207
+#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
-msgstr "Lasciare questa conversazione"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Ledger"
msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Left"
-msgstr "Sinistra"
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
-msgid "Left"
-msgstr "Sinistra"
-
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Left"
-msgstr "Sinistra"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:483
+#: frappe/printing/page/print_format_builder/print_format_builder.js:483
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:155
msgctxt "alignment"
msgid "Left"
-msgstr "Sinistra"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Left Bottom"
msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Left Center"
msgstr ""
-#: email/doctype/email_unsubscribe/email_unsubscribe.py:59
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:58
msgid "Left this conversation"
-msgstr "Lasciato questa conversazione"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Legal"
msgstr ""
-#. Label of a Int field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. 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 "Lunghezza"
+msgstr ""
-#. Label of a Int field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Length"
-msgstr "Lunghezza"
-
-#. Label of a Int field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Length"
-msgstr "Lunghezza"
-
-#: public/js/frappe/ui/chart.js:11
+#: frappe/public/js/frappe/ui/chart.js:11
msgid "Length of passed data array is greater than value of maximum allowed label points!"
msgstr ""
-#: database/schema.py:133
+#: frappe/database/schema.py:134
msgid "Length of {0} should be between 1 and 1000"
-msgstr "Lunghezza {0} deve essere compreso tra 1 e 1000"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:439
+#: frappe/public/js/frappe/widgets/chart_widget.js:729
+msgid "Less"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:24
+msgid "Less Than"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:26
+msgid "Less Than Or Equal To"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:434
msgid "Let us continue with the onboarding"
msgstr ""
-#: public/js/frappe/views/workspace/blocks/onboarding.js:94
-#: public/js/frappe/widgets/onboarding_widget.js:602
+#: frappe/public/js/frappe/views/workspace/blocks/onboarding.js:94
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:597
msgid "Let's Get Started"
-msgstr "Iniziamo"
-
-#. Title of the Module Onboarding 'Website'
-#: website/module_onboarding/website/website.json
-msgid "Let's Set Up Your Website."
msgstr ""
-#: utils/password_strength.py:113
+#: frappe/utils/password_strength.py:111
msgid "Let's avoid repeated words and characters"
-msgstr "Evitiamo la ripetizione di parole e caratteri"
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:459
+#: frappe/desk/page/setup_wizard/setup_wizard.js:474
msgid "Let's set up your account"
msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:268
-#: public/js/frappe/widgets/onboarding_widget.js:309
-#: public/js/frappe/widgets/onboarding_widget.js:380
-#: public/js/frappe/widgets/onboarding_widget.js:419
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:263
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:304
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:375
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:414
msgid "Let's take you back to onboarding"
-msgstr "Torniamo all'onboarding"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Letter"
-msgstr "Lettera"
+msgstr ""
+#. Label of the letter_head (Link) field in DocType 'Report'
#. Name of a DocType
-#: printing/doctype/letter_head/letter_head.json
-#: printing/page/print/print.js:127 public/js/frappe/form/print_utils.js:18
-#: public/js/frappe/list/bulk_operations.js:43
+#: frappe/core/doctype/report/report.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/page/print/print.js:127
+#: frappe/public/js/frappe/form/print_utils.js:20
+#: 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 "Capo della Lettera"
+msgstr ""
-#. Label of a Link field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Letter Head"
-msgstr "Capo della Lettera"
-
-#. Label of a Select field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the source (Select) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Letter Head Based On"
-msgstr "Testa di lettera basata su"
+msgstr ""
-#. Label of a Section Break field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the letter_head_image_section (Section Break) field in DocType
+#. 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Letter Head Image"
-msgstr "Immagine testa di lettera"
+msgstr ""
-#. Label of a Data field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#. Label of the letter_head_name (Data) field in DocType 'Letter Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:198
msgid "Letter Head Name"
-msgstr "Lettera Nome intestazione"
+msgstr ""
-#: printing/doctype/letter_head/letter_head.py:45
+#: frappe/printing/doctype/letter_head/letter_head.js:30
+msgid "Letter Head Scripts"
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.py:48
msgid "Letter Head cannot be both disabled and default"
msgstr ""
#. Description of the 'Header HTML' (HTML Editor) field in DocType 'Letter
#. Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
+#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Letter Head in HTML"
-msgstr "Lettera Intestazione in HTML"
+msgstr ""
-#: core/page/permission_manager/permission_manager.js:213
+#. Label of the permlevel (Int) field in DocType 'Custom DocPerm'
+#. Label of the permlevel (Int) field in DocType 'DocPerm'
+#. Label of the level (Select) field in DocType 'Help Article'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/page/permission_manager/permission_manager.js:144
+#: frappe/core/page/permission_manager/permission_manager.js:220
+#: frappe/public/js/frappe/roles_editor.js:66
+#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
-msgstr "Livello"
+msgstr ""
-#. Label of a Int field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Level"
-msgstr "Livello"
-
-#. Label of a Int field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Level"
-msgstr "Livello"
-
-#. Label of a Select field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
-msgid "Level"
-msgstr "Livello"
-
-#: core/page/permission_manager/permission_manager.js:450
+#: frappe/core/page/permission_manager/permission_manager.js:467
msgid "Level 0 is for document level permissions, higher levels for field level permissions."
-msgstr "Il livello 0 è per le autorizzazioni a livello di documento, i livelli superiori per le autorizzazioni a livello di campo."
+msgstr ""
-#. Label of a Data field in DocType 'Review Level'
-#: social/doctype/review_level/review_level.json
-msgctxt "Review Level"
-msgid "Level Name"
-msgstr "Nome livello"
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:94
+msgid "Library"
+msgstr ""
-#. Label of a Markdown Editor field in DocType 'Package'
-#: core/doctype/package/package.json
-msgctxt "Package"
+#. Label of the license (Markdown Editor) field in DocType 'Package'
+#: frappe/core/doctype/package/package.json frappe/www/attribution.html:36
msgid "License"
-msgstr "Licenza"
+msgstr ""
-#. Label of a Select field in DocType 'Package'
-#: core/doctype/package/package.json
-msgctxt "Package"
+#. Label of the license_type (Select) field in DocType 'Package'
+#: frappe/core/doctype/package/package.json
msgid "License Type"
msgstr ""
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Light"
msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Light Blue"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Light Blue"
msgstr ""
-#. Label of a Link field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the light_color (Link) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Light Color"
-msgstr "Colore chiaro"
+msgstr ""
-#: public/js/frappe/ui/theme_switcher.js:60
+#: frappe/public/js/frappe/ui/theme_switcher.js:60
msgid "Light Theme"
msgstr ""
-#: public/js/frappe/ui/filters/filter.js:18
-msgid "Like"
-msgstr "Piace"
-
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/public/js/frappe/ui/filters/filter.js:18
msgid "Like"
-msgstr "Piace"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Like"
-msgstr "Piace"
-
-#. Label of a Int field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the like_limit (Int) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Like limit"
msgstr ""
#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Like limit per hour"
msgstr ""
-#: templates/includes/likes/likes.py:30
+#: frappe/templates/includes/likes/likes.py:30
msgid "Like on {0}: {1}"
msgstr ""
-#: desk/like.py:91
+#: frappe/desk/like.py:92
msgid "Liked"
-msgstr "Piaciuto"
+msgstr ""
-#: model/__init__.py:149 model/meta.py:53 public/js/frappe/model/meta.js:205
-#: public/js/frappe/model/model.js:124
+#: frappe/model/meta.py:60 frappe/public/js/frappe/model/meta.js:208
+#: frappe/public/js/frappe/model/model.js:134
msgid "Liked By"
-msgstr "Utile per"
+msgstr ""
-#. Label of a Int field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
+#. Label of the likes (Int) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
msgid "Likes"
-msgstr "Piace"
+msgstr ""
-#. Label of a Int field in DocType 'Bulk Update'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
+#. Label of the limit (Int) field in DocType 'Bulk Update'
+#: frappe/desk/doctype/bulk_update/bulk_update.json
msgid "Limit"
-msgstr "Limite"
-
-#. Label of a Check field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Limit Number of DB Backups"
-msgstr "Limita il numero di backup del database"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
-msgstr "Linea"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Link"
-msgstr "collegamento"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Link"
-msgstr "collegamento"
-
-#. Label of a Small Text field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Link"
-msgstr "collegamento"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Link"
-msgstr "collegamento"
-
-#. Label of a Data field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "Link"
-msgstr "collegamento"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Link"
-msgstr "collegamento"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Link"
-msgstr "collegamento"
-
-#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Link"
-msgstr "collegamento"
-
-#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Link"
-msgstr "collegamento"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the link (Long Text) field in DocType 'Changelog Feed'
+#. Label of the link (Small Text) field in DocType 'Desktop Icon'
+#. Label of the link (Small Text) field in DocType 'Notification Log'
+#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Type' (Select) field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:128
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Link"
-msgstr "collegamento"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Link Cards"
-msgstr "Schede di collegamento"
+msgstr ""
-#. Label of a Int field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Label of the link_count (Int) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Link Count"
msgstr ""
-#. Label of a Section Break field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Label of the link_details_section (Section Break) field in DocType
+#. 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Link Details"
msgstr ""
-#. Label of a Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. Label of the link_doctype (Link) field in DocType 'Activity Log'
+#. Label of the link_doctype (Link) field in DocType 'Communication Link'
+#. Label of the link_doctype (Link) field in DocType 'DocType Link'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication_link/communication_link.json
+#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Link DocType"
-msgstr "collegamento DocType"
+msgstr ""
-#. Label of a Link field in DocType 'Communication Link'
-#: core/doctype/communication_link/communication_link.json
-msgctxt "Communication Link"
-msgid "Link DocType"
-msgstr "collegamento DocType"
-
-#. Label of a Link field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
-msgid "Link DocType"
-msgstr "collegamento DocType"
-
-#. Label of a Link field in DocType 'Dynamic Link'
-#: core/doctype/dynamic_link/dynamic_link.json
-msgctxt "Dynamic Link"
+#. Label of the link_doctype (Link) field in DocType 'Dynamic Link'
+#: frappe/core/doctype/dynamic_link/dynamic_link.json
msgid "Link Document Type"
-msgstr "Tipo di documento di collegamento"
+msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:403
-#: workflow/doctype/workflow_action/workflow_action.py:202
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:406
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:202
msgid "Link Expired"
-msgstr "Link scaduto"
+msgstr ""
-#. Label of a Data field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
+#. Label of the link_field_results_limit (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Link Field Results Limit"
+msgstr ""
+
+#. Label of the link_fieldname (Data) field in DocType 'DocType Link'
+#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Link Fieldname"
-msgstr "Nome campo collegamento"
+msgstr ""
-#. Label of a JSON field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the link_filters (JSON) field in DocType 'DocField'
+#. Label of the link_filters (JSON) field in DocType 'Custom Field'
+#. Label of the link_filters (JSON) field in DocType 'Customize Form'
+#. Label of the link_filters (JSON) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Link Filters"
msgstr ""
-#. Label of a JSON field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Link Filters"
-msgstr ""
-
-#. Label of a JSON field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Link Filters"
-msgstr ""
-
-#. Label of a JSON field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Link Filters"
-msgstr ""
-
-#. Label of a Dynamic Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. Label of the link_name (Dynamic Link) field in DocType 'Activity Log'
+#. Label of the link_name (Dynamic Link) field in DocType 'Communication Link'
+#. Label of the link_name (Dynamic Link) field in DocType 'Dynamic Link'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication_link/communication_link.json
+#: frappe/core/doctype/dynamic_link/dynamic_link.json
msgid "Link Name"
-msgstr "Nome collegamento"
+msgstr ""
-#. Label of a Dynamic Link field in DocType 'Communication Link'
-#: core/doctype/communication_link/communication_link.json
-msgctxt "Communication Link"
-msgid "Link Name"
-msgstr "Nome collegamento"
-
-#. Label of a Dynamic Link field in DocType 'Dynamic Link'
-#: core/doctype/dynamic_link/dynamic_link.json
-msgctxt "Dynamic Link"
-msgid "Link Name"
-msgstr "Nome collegamento"
-
-#. Label of a Read Only field in DocType 'Communication Link'
-#: core/doctype/communication_link/communication_link.json
-msgctxt "Communication Link"
+#. Label of the link_title (Read Only) field in DocType 'Communication Link'
+#. Label of the link_title (Read Only) field in DocType 'Dynamic Link'
+#: frappe/core/doctype/communication_link/communication_link.json
+#: frappe/core/doctype/dynamic_link/dynamic_link.json
msgid "Link Title"
-msgstr "Titolo del link"
+msgstr ""
-#. Label of a Read Only field in DocType 'Dynamic Link'
-#: core/doctype/dynamic_link/dynamic_link.json
-msgctxt "Dynamic Link"
-msgid "Link Title"
-msgstr "Titolo del link"
-
-#. Label of a Dynamic Link field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Label of the link_to (Dynamic Link) field in DocType 'Workspace'
+#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Link'
+#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/views/workspace/workspace.js:418
+#: frappe/public/js/frappe/widgets/widget_dialog.js:281
+#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
-msgstr "Collegamento a"
+msgstr ""
-#. Label of a Dynamic Link field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Link To"
-msgstr "Collegamento a"
+#: frappe/public/js/frappe/widgets/widget_dialog.js:363
+msgid "Link To in Row"
+msgstr ""
-#. Label of a Select field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Label of the link_type (Select) field in DocType 'Workspace'
+#. Label of the link_type (Select) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/public/js/frappe/views/workspace/workspace.js:410
+#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
msgstr ""
-#: website/doctype/about_us_settings/about_us_settings.js:6
+#: frappe/public/js/frappe/widgets/widget_dialog.js:359
+msgid "Link Type in Row"
+msgstr ""
+
+#: frappe/website/doctype/about_us_settings/about_us_settings.js:6
msgid "Link for About Us Page is \"/about\"."
msgstr ""
#. Description of the 'Home Page' (Data) field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Link that is the website home page. Standard Links (home, login, products, blog, about, contact)"
msgstr ""
#. Description of the 'URL' (Data) field in DocType 'Top Bar Item'
-#: website/doctype/top_bar_item/top_bar_item.json
-msgctxt "Top Bar Item"
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Link to the page you want to open. Leave blank if you want to make it a group parent."
-msgstr "Link alla pagina che si desidera aprire. Lascia vuoto se si vuole fare un capogruppo."
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Linked"
-msgstr "connesso"
-
#. Option for the 'Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
msgid "Linked"
-msgstr "connesso"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Linked Documents"
-msgstr "Documenti collegati"
-
-#: public/js/frappe/form/linked_with.js:23
+#: frappe/public/js/frappe/form/linked_with.js:23
msgid "Linked With"
-msgstr "Collegato con"
+msgstr ""
-#: contacts/doctype/address/address.js:39
-#: contacts/doctype/contact/contact.js:82 public/js/frappe/form/toolbar.js:366
+#. Label of the links (Table) field in DocType 'Address'
+#. Label of the links (Table) field in DocType 'Contact'
+#. Label of the links_section (Tab Break) field in DocType 'DocType'
+#. Label of the links (Table) field in DocType 'Customize Form'
+#. Label of the links (Table) field in DocType 'Workspace'
+#: frappe/contacts/doctype/address/address.js:39
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.js:92
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Links"
-msgstr "Collegamenti"
-
-#. Label of a Table field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Links"
-msgstr "Collegamenti"
-
-#. Label of a Table field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Links"
-msgstr "Collegamenti"
-
-#. Label of a Table field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Links"
-msgstr "Collegamenti"
-
-#. Label of a Table field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Links"
-msgstr "Collegamenti"
-
-#. Label of a Table field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Links"
-msgstr "Collegamenti"
+msgstr ""
#. Option for the 'Apply To' (Select) field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
-msgid "List"
-msgstr "Lista"
-
#. Option for the 'View' (Select) field in DocType 'Form Tour'
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "List"
-msgstr "Lista"
-
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/utils/utils.js:923
msgid "List"
-msgstr "Lista"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the list__search_settings_section (Section Break) field in DocType
+#. 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "List / Search Settings"
msgstr ""
-#. Label of a Table field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the list_columns (Table) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "List Columns"
msgstr ""
#. Name of a DocType
-#: desk/doctype/list_filter/list_filter.json
+#: frappe/desk/doctype/list_filter/list_filter.json
msgid "List Filter"
-msgstr "Filtro elenco"
-
-#. Label of a HTML field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "List Setting Message"
msgstr ""
-#: public/js/frappe/list/list_view.js:1708
+#. 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:1846
msgctxt "Button in list view menu"
msgid "List Settings"
-msgstr "Impostazioni elenco"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "List Settings"
-msgstr "Impostazioni elenco"
-
-#. Label of a Section Break field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
-msgid "List Settings"
-msgstr "Impostazioni elenco"
-
-#. Label of a Section Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "List Settings"
-msgstr "Impostazioni elenco"
+#: frappe/public/js/frappe/list/base_list.js:202
+msgid "List View"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/list_view_settings/list_view_settings.json
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "List View Settings"
-msgstr "Impostazioni visualizzazione elenco"
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:161
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:161
msgid "List a document type"
-msgstr "Elencare un tipo di documento"
+msgstr ""
#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]"
-msgstr "Lista come [{ "label": _ ( "Lavoro"), "percorso": "posti di lavoro"}]"
-
#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]"
-msgstr "Lista come [{ "label": _ ( "Lavoro"), "percorso": "posti di lavoro"}]"
+msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:526
+#. Description of the 'Send Notification to' (Small Text) field in DocType
+#. 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "List of email addresses, separated by comma or new line."
+msgstr ""
+
+#. Description of a DocType
+#: frappe/core/doctype/patch_log/patch_log.json
+msgid "List of patches executed"
+msgstr ""
+
+#. Label of the list_setting_message (HTML) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "List setting message"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542
msgid "Lists"
msgstr ""
#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Load Balancing"
-msgstr "Bilancio del carico"
+msgstr ""
-#: website/doctype/blog_post/templates/blog_post_list.html:50
+#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
+#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
-msgstr "Carica altro"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:214
+#: frappe/public/js/frappe/form/footer/form_timeline.js:215
msgctxt "Form timeline"
msgid "Load More Communications"
msgstr ""
-#: core/page/permission_manager/permission_manager.js:165
-#: public/js/frappe/list/base_list.js:465
-msgid "Loading"
-msgstr "Caricamento"
-
-#: core/doctype/data_import/data_import.js:262
-msgid "Loading import file..."
-msgstr "Caricamento file di importazione ..."
-
-#: desk/page/user_profile/user_profile_controller.js:20
-msgid "Loading user profile"
+#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45
+msgid "Load more"
msgstr ""
-#: public/js/frappe/form/sidebar/share.js:51
+#: frappe/core/page/permission_manager/permission_manager.js:172
+#: frappe/public/js/frappe/form/controls/multicheck.js:13
+#: frappe/public/js/frappe/form/linked_with.js:13
+#: frappe/public/js/frappe/list/base_list.js:511
+#: frappe/public/js/frappe/list/list_view.js:360
+#: frappe/public/js/frappe/ui/listing.html:16
+#: frappe/public/js/frappe/views/reports/query_report.js:1087
+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:8
+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:176
+#: frappe/public/js/frappe/widgets/quick_list_widget.js:129
msgid "Loading..."
-msgstr "Caricamento in corso ..."
+msgstr ""
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the location (Data) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Location"
-msgstr "Posizione"
+msgstr ""
-#. Label of a Code field in DocType 'Package Import'
-#: core/doctype/package_import/package_import.json
-msgctxt "Package Import"
+#. Label of the log (Code) field in DocType 'Package Import'
+#: frappe/core/doctype/package_import/package_import.json
msgid "Log"
-msgstr "Log"
+msgstr ""
-#. Label of a Section Break field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the log_api_requests (Check) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Log API Requests"
+msgstr ""
+
+#. Label of the log_data_section (Section Break) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "Log Data"
-msgstr "Dati di registro"
+msgstr ""
-#. Label of a Link field in DocType 'Logs To Clear'
-#: core/doctype/logs_to_clear/logs_to_clear.json
-msgctxt "Logs To Clear"
+#. Label of the ref_doctype (Link) field in DocType 'Logs To Clear'
+#: frappe/core/doctype/logs_to_clear/logs_to_clear.json
msgid "Log DocType"
msgstr ""
-#: templates/emails/login_with_email_link.html:28
+#: frappe/templates/emails/login_with_email_link.html:27
msgid "Log In To {0}"
msgstr ""
-#. Label of a Int field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
+#. Label of the log_index (Int) field in DocType 'Data Import Log'
+#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Log Index"
msgstr ""
#. Name of a DocType
-#: core/doctype/log_setting_user/log_setting_user.json
+#: frappe/core/doctype/log_setting_user/log_setting_user.json
msgid "Log Setting User"
-msgstr "Utente impostazione registro"
+msgstr ""
#. Name of a DocType
-#: core/doctype/log_settings/log_settings.json
+#: frappe/core/doctype/log_settings/log_settings.json
+#: frappe/public/js/frappe/logtypes.js:20
msgid "Log Settings"
-msgstr "Impostazioni registro"
+msgstr ""
-#: www/app.py:21
+#: frappe/www/app.py:23
msgid "Log in to access this page."
-msgstr "Effettua il login per accedere a questa pagina."
+msgstr ""
#. Label of a standard navbar item
#. Type: Action
-#: hooks.py website/doctype/website_settings/website_settings.py:182
+#: frappe/hooks.py
+#: frappe/website/doctype/website_settings/website_settings.py:182
msgid "Log out"
msgstr ""
-#: handler.py:123
+#: frappe/handler.py:118
msgid "Logged Out"
-msgstr "Disconnesso"
-
-#: public/js/frappe/web_form/webform_script.js:16
-#: templates/discussions/discussions_section.html:60
-#: templates/discussions/reply_section.html:43
-#: templates/includes/navbar/dropdown_login.html:15
-#: templates/includes/navbar/navbar_login.html:24
-#: website/page_renderers/not_permitted_page.py:22 www/login.html:42
-msgid "Login"
-msgstr "Entra"
+msgstr ""
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. Label of the security_tab (Tab Break) field in DocType 'System Settings'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/public/js/frappe/web_form/webform_script.js:16
+#: frappe/templates/discussions/discussions_section.html:60
+#: frappe/templates/discussions/reply_section.html:44
+#: frappe/templates/includes/navbar/dropdown_login.html:15
+#: frappe/templates/includes/navbar/navbar_login.html:25
+#: frappe/website/page_renderers/not_permitted_page.py:24
+#: frappe/www/login.html:45
msgid "Login"
-msgstr "Entra"
+msgstr ""
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Login"
-msgstr "Entra"
-
-#. Label of a Int field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the login_after (Int) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Login After"
-msgstr "Accedi Dopo"
+msgstr ""
-#. Label of a Int field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the login_before (Int) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Login Before"
-msgstr "Accedi Prima"
+msgstr ""
-#: public/js/frappe/desk.js:235
+#: frappe/public/js/frappe/desk.js:256
msgid "Login Failed please try again"
msgstr ""
-#: email/doctype/email_account/email_account.py:134
+#: frappe/email/doctype/email_account/email_account.py:144
msgid "Login Id is required"
-msgstr "È richiesto ID di accesso"
+msgstr ""
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the login_methods_section (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Login Methods"
msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the misc_section (Section Break) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Login Page"
msgstr ""
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Login Required"
-msgstr "Login Necessario"
-
-#: www/login.py:137
+#: frappe/www/login.py:156
msgid "Login To {0}"
msgstr ""
-#: twofactor.py:265
+#: frappe/twofactor.py:260
msgid "Login Verification Code from {}"
-msgstr "Codice di verifica di accesso da {}"
-
-#: www/login.html:97
-msgid "Login With {0}"
msgstr ""
-#: templates/emails/new_message.html:4
+#: frappe/templates/emails/new_message.html:4
msgid "Login and view in Browser"
-msgstr "Accedi e visualizza nel browser"
+msgstr ""
-#: website/doctype/web_form/web_form.js:358
+#: frappe/website/doctype/web_form/web_form.js:367
msgid "Login is required to see web form list view. Enable {0} to see list settings"
msgstr ""
-#: auth.py:322 auth.py:325
+#: frappe/templates/includes/login/login.js:69
+msgid "Login link sent to your email"
+msgstr ""
+
+#: frappe/auth.py:339 frappe/auth.py:342
msgid "Login not allowed at this time"
-msgstr "Accesso non consentito in questo momento"
+msgstr ""
-#: twofactor.py:165
+#. Label of the login_required (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Login required"
+msgstr ""
+
+#: frappe/twofactor.py:164
msgid "Login session expired, refresh page to retry"
-msgstr "La sessione è scaduta, Aggiorna la pagina per riprovare"
+msgstr ""
-#: templates/includes/comments/comments.html:110
+#: frappe/templates/includes/comments/comments.html:110
msgid "Login to comment"
-msgstr "Effettua il login per commentare"
+msgstr ""
-#: templates/includes/comments/comments.html:6
+#: frappe/templates/includes/comments/comments.html:6
msgid "Login to start a new discussion"
msgstr ""
-#: www/login.html:61
+#: frappe/www/login.html:64
msgid "Login to {0}"
msgstr ""
-#: www/login.html:106
+#: frappe/templates/includes/login/login.js:319
+msgid "Login token required"
+msgstr ""
+
+#: frappe/www/login.html:126 frappe/www/login.html:210
msgid "Login with Email Link"
msgstr ""
-#: www/login.html:46
-msgid "Login with LDAP"
-msgstr "Accesso con LDAP"
+#: frappe/www/login.html:116
+msgid "Login with Frappe Cloud"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: 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 a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the login_with_email_link_expiry (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Login with email link expiry (in minutes)"
msgstr ""
-#: auth.py:131
+#: frappe/auth.py:144
msgid "Login with username and password is not allowed."
msgstr ""
-#. Label of a Int field in DocType 'Navbar Settings'
-#: core/doctype/navbar_settings/navbar_settings.json
-msgctxt "Navbar Settings"
-msgid "Logo Width"
-msgstr "Larghezza logo"
+#: frappe/www/login.html:100
+msgid "Login with {0}"
+msgstr ""
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
+#: frappe/www/me.html:84
msgid "Logout"
-msgstr "Esci"
+msgstr ""
-#: core/doctype/user/user.js:179
+#: frappe/core/doctype/user/user.js:197
msgid "Logout All Sessions"
-msgstr "Esci da tutte le sessioni"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the logout_on_password_reset (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Logout All Sessions on Password Reset"
-msgstr "Esci da tutte le sessioni alla reimpostazione della password"
+msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the logout_all_sessions (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Logout From All Devices After Changing Password"
-msgstr "Disconnettersi da tutti i dispositivi dopo aver modificato la password"
-
-#. Label of a Card Break in the Users Workspace
-#: core/workspace/users/users.json
-msgid "Logs"
-msgstr "Registri"
+msgstr ""
#. Group in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of a Card Break in the Users Workspace
+#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
msgid "Logs"
-msgstr "Registri"
+msgstr ""
#. Name of a DocType
-#: core/doctype/logs_to_clear/logs_to_clear.json
+#: frappe/core/doctype/logs_to_clear/logs_to_clear.json
msgid "Logs To Clear"
msgstr ""
-#. Label of a Table field in DocType 'Log Settings'
-#: core/doctype/log_settings/log_settings.json
-msgctxt "Log Settings"
+#. Label of the logs_to_clear (Table) field in DocType 'Log Settings'
+#: frappe/core/doctype/log_settings/log_settings.json
msgid "Logs to Clear"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Long Text"
-msgstr "Testo lungo"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Long Text"
-msgstr "Testo lungo"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Long Text"
-msgstr "Testo lungo"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:322
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:317
msgid "Looks like you didn't change the value"
-msgstr "Sembra che tu non abbia modificato il valore"
+msgstr ""
-#: www/third_party_apps.html:57
+#: frappe/www/third_party_apps.html:59
msgid "Looks like you haven’t added any third party apps."
msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:190
-msgid "Low"
-msgstr "Basso"
+#: frappe/public/js/frappe/ui/notifications/notifications.js:315
+msgid "Looks like you haven’t received any notifications."
+msgstr ""
#. Option for the 'Priority' (Select) field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:217
msgid "Low"
-msgstr "Basso"
+msgstr ""
-#: public/js/frappe/utils/number_systems.js:13
+#: frappe/public/js/frappe/utils/number_systems.js:13
msgctxt "Number system"
msgid "M"
msgstr ""
#. Option for the 'License Type' (Select) field in DocType 'Package'
-#: core/doctype/package/package.json
-msgctxt "Package"
+#: frappe/core/doctype/package/package.json
msgid "MIT License"
msgstr ""
-#. Label of a Text Editor field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/desk/page/setup_wizard/install_fixtures.py:48
+msgid "Madam"
+msgstr ""
+
+#. Label of the main_section (Text Editor) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Main Section"
-msgstr "Sezione principale"
+msgstr ""
-#. Label of a HTML Editor field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the main_section_html (HTML Editor) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Main Section (HTML)"
-msgstr "Sezione principale (HTML)"
+msgstr ""
-#. Label of a Markdown Editor field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the main_section_md (Markdown Editor) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Main Section (Markdown)"
-msgstr "Sezione principale (Markdown)"
+msgstr ""
#. Name of a role
-#: contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/contact/contact.json
msgid "Maintenance Manager"
-msgstr "Responsabile della manutenzione"
+msgstr ""
#. Name of a role
-#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
msgid "Maintenance User"
-msgstr "Manutenzione utente"
+msgstr ""
-#. Label of a Int field in DocType 'Package Release'
-#: core/doctype/package_release/package_release.json
-msgctxt "Package Release"
+#. Label of the major (Int) field in DocType 'Package Release'
+#: frappe/core/doctype/package_release/package_release.json
msgid "Major"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Make \"name\" searchable in Global Search"
-msgstr "Rendi \"nome\" trovabile nella Ricerca Globale"
-
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Make Attachments Public by Default"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the make_attachment_public (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+msgid "Make Attachment Public (by default)"
+msgstr ""
+
+#. Label of the make_attachments_public (Check) field in DocType 'DocType'
+#. Label of the make_attachments_public (Check) field in DocType 'Customize
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make Attachments Public by Default"
msgstr ""
#. Description of the 'Disable Username/Password Login' (Check) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Make sure to configure a Social Login Key before disabling to prevent lockout"
msgstr ""
-#: utils/password_strength.py:94
+#: frappe/utils/password_strength.py:92
msgid "Make use of longer keyboard patterns"
-msgstr "Fare uso di modelli di tastiera più lunghi"
+msgstr ""
-#: public/js/frappe/form/multi_select_dialog.js:86
+#: frappe/public/js/frappe/form/multi_select_dialog.js:87
msgid "Make {0}"
-msgstr "Crea {0}"
+msgstr ""
-#: website/doctype/web_page/web_page.js:77
+#: frappe/website/doctype/web_page/web_page.js:77
msgid "Makes the page public"
-msgstr "Rende la pagina pubblica"
-
-#: www/me.html:50
-msgid "Manage third party apps"
msgstr ""
-#: www/me.html:59
-msgid "Manage your apps"
+#: frappe/desk/page/setup_wizard/install_fixtures.py:28
+msgid "Male"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Mandatory"
-msgstr "Obbligatorio"
+#: frappe/www/me.html:56
+msgid "Manage 3rd party apps"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Mandatory"
-msgstr "Obbligatorio"
+#. Description of a Card Break in the Tools Workspace
+#: frappe/automation/workspace/tools/tools.json
+msgid "Manage your data"
+msgstr ""
-#. Label of a Check field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
+#. 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 "Obbligatorio"
+msgstr ""
-#. Label of a Check field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Mandatory"
-msgstr "Obbligatorio"
-
-#. Label of a Check field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Mandatory"
-msgstr "Obbligatorio"
-
-#. Label of a Code field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the mandatory_depends_on (Code) field in DocType 'Custom Field'
+#. Label of the mandatory_depends_on (Code) field in DocType 'Customize Form
+#. Field'
+#. Label of the mandatory_depends_on (Code) field in DocType 'Web Form Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Mandatory Depends On"
-msgstr "Obbligatorio dipende da"
+msgstr ""
-#. Label of a Code field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Mandatory Depends On"
-msgstr "Obbligatorio dipende da"
-
-#. Label of a Code field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Mandatory Depends On"
-msgstr "Obbligatorio dipende da"
-
-#. Label of a Code field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the mandatory_depends_on (Code) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: website/doctype/web_form/web_form.py:412
+#: frappe/website/doctype/web_form/web_form.py:470
msgid "Mandatory Information missing:"
-msgstr "Informazione obbligatoria mancante:"
+msgstr ""
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120
msgid "Mandatory field: set role for"
-msgstr "Campo obbligatorio: ruolo impostato per"
+msgstr ""
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124
msgid "Mandatory field: {0}"
-msgstr "Campo obbligatorio: {0}"
+msgstr ""
-#: public/js/frappe/form/save.js:167
+#: frappe/public/js/frappe/form/save.js:120
msgid "Mandatory fields required in table {0}, Row {1}"
-msgstr "I campi obbligatori richiesti nella tabella {0}, riga {1}"
+msgstr ""
-#: public/js/frappe/form/save.js:172
+#: frappe/public/js/frappe/form/save.js:125
msgid "Mandatory fields required in {0}"
-msgstr "I campi obbligatori richiesti in {0}"
+msgstr ""
-#: public/js/frappe/web_form/web_form.js:234
+#: frappe/public/js/frappe/web_form/web_form.js:234
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
msgstr ""
-#: core/doctype/data_export/exporter.py:142
+#: frappe/core/doctype/data_export/exporter.py:142
msgid "Mandatory:"
-msgstr "Obbligatorio:"
+msgstr ""
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Map"
msgstr ""
-#: public/js/frappe/data_import/import_preview.js:190
-#: public/js/frappe/data_import/import_preview.js:302
+#: frappe/public/js/frappe/data_import/import_preview.js:194
+#: frappe/public/js/frappe/data_import/import_preview.js:306
msgid "Map Columns"
-msgstr "Colonne della mappa"
+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'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/website/doctype/web_page/web_page.json
msgid "Map route parameters into form variables. Example /project/<name>"
-msgstr "Mappa i parametri del percorso in variabili di modulo. Esempio /project/<name>"
+msgstr ""
-#: core/doctype/data_import/importer.py:877
+#: frappe/core/doctype/data_import/importer.py:924
msgid "Mapping column {0} to field {1}"
-msgstr "Mappatura della colonna {0} al campo {1}"
+msgstr ""
-#. Label of a Float field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the margin_bottom (Float) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Margin Bottom"
msgstr ""
-#. Label of a Float field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the margin_left (Float) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Margin Left"
msgstr ""
-#. Label of a Float field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the margin_right (Float) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Margin Right"
msgstr ""
-#. Label of a Float field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the margin_top (Float) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Margin Top"
msgstr ""
-#: public/js/frappe/ui/notifications/notifications.js:44
+#. Label of the mariadb_variables_section (Section Break) field in DocType
+#. 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "MariaDB Variables"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:45
msgid "Mark all as read"
msgstr ""
-#: core/doctype/communication/communication.js:78
-#: core/doctype/communication/communication_list.js:21
+#: frappe/core/doctype/communication/communication.js:78
+#: frappe/core/doctype/communication/communication_list.js:19
msgid "Mark as Read"
-msgstr "Segna come letto"
+msgstr ""
-#: core/doctype/communication/communication.js:95
+#: frappe/core/doctype/communication/communication.js:95
msgid "Mark as Spam"
-msgstr "Segna come spam"
+msgstr ""
-#: core/doctype/communication/communication.js:78
-#: core/doctype/communication/communication_list.js:24
+#: frappe/core/doctype/communication/communication.js:78
+#: frappe/core/doctype/communication/communication_list.js:22
msgid "Mark as Unread"
-msgstr "Segna come non letto"
-
-#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Markdown"
-msgstr "Riduzione Prezzo"
+msgstr ""
#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Markdown"
-msgstr "Riduzione Prezzo"
-
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Markdown"
-msgstr "Riduzione Prezzo"
-
+#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:92
+#: frappe/website/doctype/web_page/web_page.json
msgid "Markdown"
-msgstr "Riduzione Prezzo"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Markdown Editor"
-msgstr "Markdown Editor"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Markdown Editor"
-msgstr "Markdown Editor"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Markdown Editor"
-msgstr "Markdown Editor"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Markdown Editor"
-msgstr "Markdown Editor"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Marked As Spam"
-msgstr "Marcato come spam"
+msgstr ""
-#. Name of a DocType
-#: website/doctype/marketing_campaign/marketing_campaign.json
-msgid "Marketing Campaign"
+#. 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'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
+#: frappe/desk/doctype/bulk_update/bulk_update.json
msgid "Max 500 records at a time"
-msgstr "Max 500 record alla volta"
+msgstr ""
-#. Label of a Int field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Max Attachment Size (in MB)"
-msgstr "Dimensione Max Allegato (in MB)"
-
-#. Label of a Int field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the max_attachments (Int) field in DocType 'DocType'
+#. Label of the max_attachments (Int) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Max Attachments"
-msgstr "Numero massimo allegati"
+msgstr ""
-#. Label of a Int field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Max Attachments"
-msgstr "Numero massimo allegati"
-
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the max_file_size (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Max File Size (MB)"
msgstr ""
-#. Label of a Data field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the max_height (Data) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Max Height"
msgstr ""
-#. Label of a Int field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the max_length (Int) field in DocType 'Web Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Max Length"
-msgstr "Lunghezza massima"
+msgstr ""
-#. Label of a Int field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the max_report_rows (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Max Report Rows"
+msgstr ""
+
+#. Label of the max_value (Int) field in DocType 'Web Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Max Value"
-msgstr "Max Valore"
+msgstr ""
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the max_attachment_size (Int) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Max attachment size"
+msgstr ""
+
+#. Label of the max_auto_email_report_per_user (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Max auto email report per user"
msgstr ""
-#: core/doctype/doctype/doctype.py:1293
+#: frappe/core/doctype/doctype/doctype.py:1342
msgid "Max width for type Currency is 100px in row {0}"
-msgstr "Larghezza massima per il tipo di valuta è 100px in riga {0}"
+msgstr ""
#. Option for the 'Function' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Maximum"
-msgstr "Massimo"
+msgstr ""
-#: core/doctype/file/file.py:317
+#: frappe/core/doctype/file/file.py:320
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
msgstr ""
-#. Label of a Select field in DocType 'List View Settings'
-#: desk/doctype/list_view_settings/list_view_settings.json
-msgctxt "List View Settings"
+#. Label of the total_fields (Select) field in DocType 'List View Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Maximum Number of Fields"
-msgstr "Numero massimo di campi"
+msgstr ""
-#. Label of a Int field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Maximum Points"
-msgstr "Punti massimi"
-
-#: public/js/frappe/form/sidebar/attachments.js:38
+#: frappe/public/js/frappe/form/sidebar/attachments.js:38
msgid "Maximum attachment limit of {0} has been reached."
msgstr ""
-#. Description of the 'Maximum Points' (Int) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid ""
-"Maximum points allowed after multiplying points with the multiplier value\n"
-"(Note: For no limit leave this field empty or set 0)"
+#: frappe/model/rename_doc.py:690
+msgid "Maximum {0} rows allowed"
msgstr ""
-#: model/rename_doc.py:675
-msgid "Maximum {0} rows allowed"
-msgstr "Massimo {0} righe ammesse"
-
-#: public/js/frappe/list/list_sidebar_group_by.js:221
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:221
msgid "Me"
-msgstr "Me"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:194
-#: public/js/frappe/utils/utils.js:1719
-#: website/report/website_analytics/website_analytics.js:40
-msgid "Medium"
-msgstr "Media"
+#: frappe/core/page/permission_manager/permission_manager_help.html:14
+msgid "Meaning of Submit, Cancel, Amend"
+msgstr ""
#. Option for the 'Priority' (Select) field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#. Label of the medium (Data) field in DocType 'Web Page View'
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:221
+#: frappe/public/js/frappe/utils/utils.js:1734
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
-msgstr "Media"
-
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Medium"
-msgstr "Media"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Meeting"
-msgstr "Incontro"
-
#. Option for the 'Event Category' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/core/doctype/communication/communication.json
+#: frappe/desk/doctype/event/event.json
msgid "Meeting"
-msgstr "Incontro"
+msgstr ""
-#. Label of a Data field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/email/doctype/notification/notification.js:196
+#: frappe/integrations/doctype/webhook/webhook.js:96
msgid "Meets Condition?"
msgstr ""
#. Group in Email Group's connections
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#: frappe/email/doctype/email_group/email_group.json
msgid "Members"
msgstr ""
+#. Label of the cache_memory_usage (Data) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Memory Usage"
+msgstr ""
+
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63
+msgid "Memory Usage in MB"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Mention"
-msgstr "Citare"
+msgstr ""
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#. Label of the enable_email_mention (Check) field in DocType 'Notification
+#. Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Mentions"
-msgstr "menzioni"
+msgstr ""
-#: public/js/frappe/ui/page.js:155
+#: frappe/public/js/frappe/ui/page.html:41
+#: frappe/public/js/frappe/ui/page.js:162
msgid "Menu"
-msgstr "Menu"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:222 public/js/frappe/model/model.js:719
+#: frappe/public/js/frappe/form/toolbar.js:242
+#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
-msgstr "Unisci con esistente"
+msgstr ""
-#: utils/nestedset.py:310
+#: frappe/utils/nestedset.py:307
msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node"
-msgstr "La fusione è possibile solo tra gruppo a gruppo o Leaf Node- to- Leaf Node"
+msgstr ""
-#: public/js/frappe/ui/messages.js:175
-#: public/js/frappe/views/communication.js:110 www/message.html:3
-#: www/message.html:25
+#. Label of the message (Text) field in DocType 'Auto Repeat'
+#. Label of the content (Text Editor) field in DocType 'Activity Log'
+#. Label of the content (Text Editor) field in DocType 'Communication'
+#. Label of the message (Small Text) field in DocType 'SMS Log'
+#. Label of the message (Data) field in DocType 'Success Action'
+#. Label of the email_content (Text Editor) field in DocType 'Notification Log'
+#. Label of the section_break_15 (Section Break) field in DocType 'Auto Email
+#. Report'
+#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
+#. Label of the message (Code) field in DocType 'Email Queue'
+#. Label of the message (Text Editor) field in DocType 'Newsletter'
+#. Label of the message_sb (Section Break) field in DocType 'Notification'
+#. Label of the message (Code) field in DocType 'Notification'
+#. Label of the message (Text) field in DocType 'Workflow Document State'
+#: 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/newsletter/newsletter.json
+#: frappe/email/doctype/notification/notification.js:201
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/ui/messages.js:182
+#: frappe/public/js/frappe/views/communication.js:123
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+#: frappe/www/message.html:3
msgid "Message"
-msgstr "Messaggio"
+msgstr ""
-#. Label of a Text Editor field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Message"
-msgstr "Messaggio"
-
-#. Label of a Section Break field in DocType 'Auto Email Report'
-#. Label of a Text Editor field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Message"
-msgstr "Messaggio"
-
-#. Label of a Text field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Message"
-msgstr "Messaggio"
-
-#. Label of a Text Editor field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Message"
-msgstr "Messaggio"
-
-#: __init__.py:527 public/js/frappe/ui/messages.js:267
+#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
msgctxt "Default title of the message dialog"
msgid "Message"
-msgstr "Messaggio"
+msgstr ""
-#. Label of a Code field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Message"
-msgstr "Messaggio"
-
-#. Label of a Text Editor field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Message"
-msgstr "Messaggio"
-
-#. Label of a Section Break field in DocType 'Notification'
-#. Label of a Code field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Message"
-msgstr "Messaggio"
-
-#. Label of a Text Editor field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "Message"
-msgstr "Messaggio"
-
-#. Label of a Small Text field in DocType 'SMS Log'
-#: core/doctype/sms_log/sms_log.json
-msgctxt "SMS Log"
-msgid "Message"
-msgstr "Messaggio"
-
-#. Label of a Data field in DocType 'Success Action'
-#: core/doctype/success_action/success_action.json
-msgctxt "Success Action"
-msgid "Message"
-msgstr "Messaggio"
-
-#. Label of a Text field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
-msgid "Message"
-msgstr "Messaggio"
-
-#. Label of a HTML Editor field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Message (HTML)"
-msgstr "Messaggio (HTML)"
+msgstr ""
-#. Label of a Markdown Editor field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Message (Markdown)"
-msgstr "Messaggio (Markdown)"
+msgstr ""
-#. Label of a HTML field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the message_examples (HTML) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
-msgstr "Esempi di messaggi"
+msgstr ""
-#. Label of a Small Text field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the message_id (Small Text) field in DocType 'Communication'
+#. Label of the message_id (Small Text) field in DocType 'Email Queue'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Message ID"
-msgstr "ID messaggio"
+msgstr ""
-#. Label of a Small Text field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Message ID"
-msgstr "ID messaggio"
-
-#. Label of a Data field in DocType 'SMS Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#. Label of the message_parameter (Data) field in DocType 'SMS Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Message Parameter"
-msgstr "Parametro Messaggio"
+msgstr ""
-#. Label of a Select field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/templates/includes/contact.js:36
+msgid "Message Sent"
+msgstr ""
+
+#. Label of the message_type (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Message Type"
msgstr ""
-#: public/js/frappe/views/communication.js:841
+#: frappe/public/js/frappe/views/communication.js:950
msgid "Message clipped"
-msgstr "Messaggio troncato"
+msgstr ""
-#: email/doctype/email_account/email_account.py:299
+#: frappe/email/doctype/email_account/email_account.py:344
msgid "Message from server: {0}"
-msgstr "Messaggio dal server: {0}"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.js:102
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104
msgid "Message not setup"
-msgstr "Messaggio non configurato"
+msgstr ""
-#. Description of the 'Success Message' (Text) field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Description of the 'Success message' (Text) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Message to be displayed on successful completion"
msgstr ""
-#. Label of a Code field in DocType 'Unhandled Email'
-#: email/doctype/unhandled_email/unhandled_email.json
-msgctxt "Unhandled Email"
+#. Label of the message_id (Code) field in DocType 'Unhandled Email'
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Message-id"
-msgstr "Message-ID"
+msgstr ""
-#. Label of a Code field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
+#. Label of the messages (Code) field in DocType 'Data Import Log'
+#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Messages"
msgstr ""
-#. Label of a Section Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the meta_section (Section Break) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Meta"
msgstr ""
-#: website/doctype/web_page/web_page.js:124
+#. Label of the meta_description (Small Text) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:124
msgid "Meta Description"
-msgstr "Meta Description"
+msgstr ""
-#. Label of a Small Text field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Meta Description"
-msgstr "Meta Description"
-
-#. Label of a Small Text field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Meta Description"
-msgstr "Meta Description"
-
-#: website/doctype/web_page/web_page.js:131
+#. Label of the meta_image (Attach Image) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:131
msgid "Meta Image"
-msgstr "Meta immagine"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Meta Image"
-msgstr "Meta immagine"
-
-#. Label of a Attach Image field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Meta Image"
-msgstr "Meta immagine"
-
-#. Label of a Section Break field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the meta_tags (Section Break) field in DocType 'Blog Post'
+#. Label of the metatags_section (Section Break) field in DocType 'Web Page'
+#. Label of the meta_tags (Table) field in DocType 'Website Route Meta'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_route_meta/website_route_meta.json
msgid "Meta Tags"
-msgstr "Meta tags"
+msgstr ""
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Meta Tags"
-msgstr "Meta tags"
-
-#. Label of a Table field in DocType 'Website Route Meta'
-#: website/doctype/website_route_meta/website_route_meta.json
-msgctxt "Website Route Meta"
-msgid "Meta Tags"
-msgstr "Meta tags"
-
-#: website/doctype/web_page/web_page.js:117
+#. Label of the meta_title (Data) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:117
msgid "Meta Title"
-msgstr "Meta Title"
+msgstr ""
-#. Label of a Data field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Meta Title"
-msgstr "Meta Title"
+#. Label of the meta_description (Small Text) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Meta description"
+msgstr ""
-#. Label of a Data field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Meta Title"
-msgstr "Meta Title"
+#. Label of the meta_image (Attach Image) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Meta image"
+msgstr ""
-#: website/doctype/web_page/web_page.js:110
+#. Label of the meta_title (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Meta title"
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:110
msgid "Meta title for SEO"
-msgstr "Meta titolo per SEO"
-
-#. Label of a Data field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
-msgid "Method"
-msgstr "Metodo"
-
-#. Label of a Select field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Method"
-msgstr "Metodo"
+msgstr ""
+#. Label of the method (Data) field in DocType 'Access Log'
+#. Label of the method (Data) field in DocType 'API Request Log'
+#. Label of the method (Select) field in DocType 'Recorder'
+#. Label of the method (Data) field in DocType 'Scheduled Job Type'
+#. Label of the method (Data) field in DocType 'Scheduler Event'
+#. Label of the method (Data) field in DocType 'Number Card'
+#. Label of the auth_method (Select) field in DocType 'Email Account'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/api_request_log/api_request_log.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/scheduler_event/scheduler_event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/notification/notification.json
msgid "Method"
-msgstr "Metodo"
+msgstr ""
-#. Label of a Data field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Method"
-msgstr "Metodo"
+#: frappe/__init__.py:679
+msgid "Method Not Allowed"
+msgstr ""
-#. Label of a Select field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "Method"
-msgstr "Metodo"
-
-#. Label of a Data field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Method"
-msgstr "Metodo"
-
-#: desk/doctype/number_card/number_card.py:69
+#: frappe/desk/doctype/number_card/number_card.py:73
msgid "Method is required to create a number card"
msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Mid Center"
msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the middle_name (Data) field in DocType 'Contact'
+#. Label of the middle_name (Data) field in DocType 'User'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.json
msgid "Middle Name"
-msgstr "Secondo nome"
-
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Middle Name"
-msgstr "Secondo nome"
+msgstr ""
#. Name of a DocType
-#: automation/doctype/milestone/milestone.json
-msgid "Milestone"
-msgstr "Milestone"
-
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Milestone"
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/automation/workspace/tools/tools.json
msgid "Milestone"
-msgstr "Milestone"
+msgstr ""
+#. Label of the milestone_tracker (Link) field in DocType 'Milestone'
#. Name of a DocType
-#: automation/doctype/milestone_tracker/milestone_tracker.json
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Milestone Tracker"
-msgstr "Milestone Tracker"
-
-#. Label of a Link field in DocType 'Milestone'
-#: automation/doctype/milestone/milestone.json
-msgctxt "Milestone"
-msgid "Milestone Tracker"
-msgstr "Milestone Tracker"
+msgstr ""
#. Option for the 'Function' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Minimum"
-msgstr "Minimo"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the minimum_password_score (Select) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Minimum Password Score"
-msgstr "Punteggio minimo password"
+msgstr ""
-#. Label of a Int field in DocType 'Package Release'
-#: core/doctype/package_release/package_release.json
-msgctxt "Package Release"
+#. Label of the minor (Int) field in DocType 'Package Release'
+#: frappe/core/doctype/package_release/package_release.json
msgid "Minor"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:100
-#: integrations/doctype/ldap_settings/ldap_settings.py:105
-#: integrations/doctype/ldap_settings/ldap_settings.py:114
-#: integrations/doctype/ldap_settings/ldap_settings.py:122
-#: integrations/doctype/ldap_settings/ldap_settings.py:332
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Minutes After"
+msgstr ""
+
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Minutes Before"
+msgstr ""
+
+#. Label of the minutes_offset (Int) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Minutes Offset"
+msgstr ""
+
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:103
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:117
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:125
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333
msgid "Misconfigured"
msgstr ""
-#: desk/form/meta.py:213
+#: frappe/desk/page/setup_wizard/install_fixtures.py:49
+msgid "Miss"
+msgstr ""
+
+#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
msgstr ""
-#: core/doctype/doctype/doctype.py:1477
+#: frappe/core/doctype/doctype/doctype.py:1526
msgid "Missing Field"
msgstr ""
-#: public/js/frappe/form/save.js:178
+#: frappe/public/js/frappe/form/save.js:131
msgid "Missing Fields"
-msgstr "campi mancanti"
+msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.py:123
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
msgid "Missing Filters Required"
msgstr ""
-#: desk/form/assign_to.py:105
+#: frappe/desk/form/assign_to.py:110
msgid "Missing Permission"
msgstr ""
-#: www/update-password.html:107 www/update-password.html:114
+#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
msgid "Missing Value"
msgstr ""
-#: public/js/frappe/ui/field_group.js:118
-#: public/js/frappe/widgets/widget_dialog.js:330
-#: public/js/workflow_builder/store.js:97
-#: workflow/doctype/workflow/workflow.js:71
+#: frappe/public/js/frappe/ui/field_group.js:124
+#: frappe/public/js/frappe/widgets/widget_dialog.js:374
+#: frappe/public/js/workflow_builder/store.js:97
+#: frappe/workflow/doctype/workflow/workflow.js:71
msgid "Missing Values Required"
-msgstr "Valori mancanti richiesti"
+msgstr ""
-#: www/login.py:96
+#: frappe/www/login.py:107
msgid "Mobile"
msgstr ""
-#: tests/test_translate.py:86 tests/test_translate.py:89
-#: tests/test_translate.py:91 tests/test_translate.py:94
+#. Label of the mobile_no (Data) field in DocType 'Contact'
+#. Label of the mobile_no (Data) field in DocType 'User'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.json frappe/tests/test_translate.py:86
+#: frappe/tests/test_translate.py:89 frappe/tests/test_translate.py:91
+#: frappe/tests/test_translate.py:94
msgid "Mobile No"
-msgstr "Num. Cellulare"
+msgstr ""
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Mobile No"
-msgstr "Num. Cellulare"
-
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Mobile No"
-msgstr "Num. Cellulare"
-
-#. Label of a Check field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the modal_trigger (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Modal Trigger"
msgstr ""
-#. Label of a Card Break in the Build Workspace
-#: core/workspace/build/build.json
-msgid "Models"
-msgstr ""
-
-#: core/report/transaction_log_report/transaction_log_report.py:106
-#: social/doctype/energy_point_rule/energy_point_rule.js:43
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:106
msgid "Modified By"
-msgstr "Modificato da"
-
-#: core/doctype/doctype/doctype_list.js:17
-msgid "Module"
-msgstr "Modulo"
-
-#. Label of a Data field in DocType 'Block Module'
-#: core/doctype/block_module/block_module.json
-msgctxt "Block Module"
-msgid "Module"
-msgstr "Modulo"
-
-#. Label of a Link field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
-msgid "Module"
-msgstr "Modulo"
-
-#. Label of a Link field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Module"
-msgstr "Modulo"
-
-#. Label of a Link field in DocType 'Dashboard Chart Source'
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
-msgctxt "Dashboard Chart Source"
-msgid "Module"
-msgstr "Modulo"
-
-#. Label of a Link field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Module"
-msgstr "Modulo"
-
-#. Label of a Link field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Module"
-msgstr "Modulo"
-
-#. Label of a Link field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Module"
-msgstr "Modulo"
-
-#. Label of a Link field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Module"
-msgstr "Modulo"
-
-#. Label of a Link field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Module"
-msgstr "Modulo"
-
-#. Label of a Link field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Module"
-msgstr "Modulo"
-
-#. Label of a Link field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Module"
-msgstr "Modulo"
-
-#. Label of a Link field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
-msgid "Module"
-msgstr "Modulo"
-
-#. Label of a Link field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Module"
-msgstr "Modulo"
-
-#. Label of a Link field in DocType 'User Type Module'
-#: core/doctype/user_type_module/user_type_module.json
-msgctxt "User Type Module"
-msgid "Module"
-msgstr "Modulo"
-
-#. Label of a Link field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Module"
-msgstr "Modulo"
-
-#. Label of a Link field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
-msgid "Module"
-msgstr "Modulo"
-
-#. Label of a Link field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Module"
-msgstr "Modulo"
-
-#. Label of a Link field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Module"
-msgstr "Modulo"
-
-#. Label of a Link field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
-msgid "Module (for export)"
msgstr ""
-#. Label of a Link field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Module (for export)"
+#. Label of the module (Data) field in DocType 'Block Module'
+#. Label of the module (Link) field in DocType 'DocType'
+#. Label of the module (Link) field in DocType 'Page'
+#. Label of the module (Link) field in DocType 'Report'
+#. Label of the module (Link) field in DocType 'User Type Module'
+#. Label of the module (Link) field in DocType 'Dashboard'
+#. Label of the module (Link) field in DocType 'Dashboard Chart'
+#. Label of the module (Link) field in DocType 'Dashboard Chart Source'
+#. Label of the module (Link) field in DocType 'Form Tour'
+#. Label of the module (Link) field in DocType 'Module Onboarding'
+#. Label of the module (Link) field in DocType 'Number Card'
+#. Label of the module (Link) field in DocType 'Workspace'
+#. Label of the module (Link) field in DocType 'Notification'
+#. Label of the module (Link) field in DocType 'Print Format'
+#. Label of the module (Link) field in DocType 'Print Format Field Template'
+#. Label of the module (Link) field in DocType 'Web Form'
+#. Label of the module (Link) field in DocType 'Web Template'
+#. Label of the module (Link) field in DocType 'Website Theme'
+#: frappe/core/doctype/block_module/block_module.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:30
+#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
+#: frappe/core/doctype/user_type_module/user_type_module.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/public/js/frappe/utils/utils.js:926
+#: 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 a Link field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
-msgid "Module (for export)"
-msgstr ""
-
-#. Label of a Link field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Module (for export)"
-msgstr ""
-
-#. Label of a Link field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the module (Link) field in DocType 'Server Script'
+#. Label of the module (Link) field in DocType 'Client Script'
+#. Label of the module (Link) field in DocType 'Custom Field'
+#. Label of the module (Link) field in DocType 'Property Setter'
+#. Label of the module (Link) field in DocType 'Web Page'
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Module (for export)"
msgstr ""
#. Name of a DocType
-#: core/doctype/module_def/module_def.json
-msgid "Module Def"
-msgstr "Definizione Modulo"
-
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Module Def"
+#. Label of a shortcut in the Build Workspace
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/workspace/build/build.json
msgid "Module Def"
-msgstr "Definizione Modulo"
+msgstr ""
-#. Linked DocType in Package's connections
-#: core/doctype/package/package.json
-msgctxt "Package"
-msgid "Module Def"
-msgstr "Definizione Modulo"
-
-#. Label of a HTML field in DocType 'Module Profile'
-#: core/doctype/module_profile/module_profile.json
-msgctxt "Module Profile"
+#. Label of the module_html (HTML) field in DocType 'Module Profile'
+#: frappe/core/doctype/module_profile/module_profile.json
msgid "Module HTML"
msgstr ""
-#. Label of a Data field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#. Label of the module_name (Data) field in DocType 'Module Def'
+#. Label of the module_name (Data) field in DocType 'Desktop Icon'
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Module Name"
-msgstr "Nome Modulo"
-
-#. Label of a Data field in DocType 'Module Def'
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Module Name"
-msgstr "Nome Modulo"
-
-#. Name of a DocType
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgid "Module Onboarding"
-msgstr "Modulo Onboarding"
+msgstr ""
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Module Onboarding"
+#. Name of a DocType
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Module Onboarding"
-msgstr "Modulo Onboarding"
+msgstr ""
#. Name of a DocType
-#: core/doctype/module_profile/module_profile.json
-msgid "Module Profile"
-msgstr ""
-
+#. Label of the module_profile (Link) field in DocType 'User'
#. Label of a Link in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "Module Profile"
+#: frappe/core/doctype/module_profile/module_profile.json
+#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
msgid "Module Profile"
msgstr ""
-#. Label of a Link field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Module Profile"
-msgstr ""
-
-#. Label of a Data field in DocType 'Module Profile'
-#: core/doctype/module_profile/module_profile.json
-msgctxt "Module Profile"
+#. Label of the module_profile_name (Data) field in DocType 'Module Profile'
+#: frappe/core/doctype/module_profile/module_profile.json
msgid "Module Profile Name"
msgstr ""
-#: desk/doctype/module_onboarding/module_onboarding.py:68
+#: frappe/desk/doctype/module_onboarding/module_onboarding.py:69
msgid "Module onboarding progress reset"
msgstr ""
-#: custom/doctype/customize_form/customize_form.js:208
+#: frappe/custom/doctype/customize_form/customize_form.js:250
msgid "Module to Export"
-msgstr "Esportazione Modulo"
+msgstr ""
-#: modules/utils.py:261
+#: frappe/modules/utils.py:273
msgid "Module {} not found"
msgstr ""
-#. Label of a Card Break in the Build Workspace
-#: core/workspace/build/build.json
-msgid "Modules"
-msgstr "Moduli"
-
#. Group in Package's connections
-#: core/doctype/package/package.json
-msgctxt "Package"
+#. Label of a Card Break in the Build Workspace
+#: frappe/core/doctype/package/package.json
+#: frappe/core/workspace/build/build.json
msgid "Modules"
-msgstr "Moduli"
+msgstr ""
-#. Label of a HTML field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the modules_html (HTML) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Modules HTML"
-msgstr "Moduli HTML"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Monday"
-msgstr "Lunedi"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Monday"
-msgstr "Lunedi"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Monday"
-msgstr "Lunedi"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Monday"
-msgstr "Lunedi"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the monday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Monday"
-msgstr "Lunedi"
+msgstr ""
+
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Monitor logs for errors, background jobs, communications, and user activity"
+msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Monospace"
-msgstr "Monospace"
+msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:268
+#: frappe/public/js/frappe/views/calendar/calendar.js:275
msgid "Month"
-msgstr "Mese"
-
-#: public/js/frappe/utils/common.js:400
-#: website/report/website_analytics/website_analytics.js:25
-msgid "Monthly"
-msgstr "Mensile"
-
-#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Monthly"
-msgstr "Mensile"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Monthly"
-msgstr "Mensile"
-
+#. 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'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Monthly"
-msgstr "Mensile"
-
-#. Option for the 'Point Allocation Periodicity' (Select) field in DocType
-#. 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Monthly"
-msgstr "Mensile"
-
#. Option for the 'Repeat On' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Monthly"
-msgstr "Mensile"
-
#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "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 "Mensile"
-
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Monthly"
-msgstr "Mensile"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Monthly"
-msgstr "Mensile"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Monthly"
-msgstr "Mensile"
-
-#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Monthly Long"
-msgstr "Long mensile"
+msgstr ""
-#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Monthly Long"
-msgstr "Long mensile"
-
-#: public/js/frappe/form/link_selector.js:39
-#: public/js/frappe/form/multi_select_dialog.js:43
-#: public/js/frappe/form/multi_select_dialog.js:70
-#: templates/includes/list/list.html:23
-#: templates/includes/search_template.html:13
+#: frappe/public/js/frappe/form/link_selector.js:39
+#: frappe/public/js/frappe/form/multi_select_dialog.js:45
+#: frappe/public/js/frappe/form/multi_select_dialog.js:72
+#: frappe/public/js/frappe/ui/toolbar/search.js:285
+#: frappe/public/js/frappe/ui/toolbar/search.js:300
+#: frappe/public/js/frappe/widgets/chart_widget.js:729
+#: frappe/templates/includes/list/list.html:25
+#: frappe/templates/includes/search_template.html:13
msgid "More"
-msgstr "Più"
+msgstr ""
-#. Label of a Section Break field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. 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'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/user/user.json
msgid "More Information"
-msgstr "Maggiori informazioni"
+msgstr ""
-#. Label of a Section Break field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "More Information"
-msgstr "Maggiori informazioni"
-
-#. Label of a Section Break field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "More Information"
-msgstr "Maggiori informazioni"
-
-#. Label of a Tab Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "More Information"
-msgstr "Maggiori informazioni"
-
-#: website/doctype/help_article/templates/help_article.html:19
-#: website/doctype/help_article/templates/help_article.html:33
+#: frappe/website/doctype/help_article/templates/help_article.html:19
+#: frappe/website/doctype/help_article/templates/help_article.html:33
msgid "More articles on {0}"
-msgstr "Altri articoli su {0}"
+msgstr ""
#. Description of the 'Footer' (Text Editor) field in DocType 'About Us
#. Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "More content for the bottom of the page."
-msgstr "Più contenuti per la parte inferiore della pagina."
+msgstr ""
-#: public/js/frappe/ui/sort_selector.js:193
+#: frappe/public/js/frappe/ui/sort_selector.js:193
msgid "Most Used"
-msgstr "Più usato"
+msgstr ""
-#: utils/password.py:65
+#: frappe/utils/password.py:76
msgid "Most probably your password is too long."
msgstr ""
-#: core/doctype/communication/communication.js:86
-#: core/doctype/communication/communication.js:194
-#: core/doctype/communication/communication.js:212
+#: frappe/core/doctype/communication/communication.js:86
+#: frappe/core/doctype/communication/communication.js:194
+#: frappe/core/doctype/communication/communication.js:212
+#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "Move"
-msgstr "Sposta"
+msgstr ""
-#: public/js/frappe/form/grid_row.js:189
+#: frappe/public/js/frappe/form/grid_row.js:193
msgid "Move To"
-msgstr "Sposta in"
+msgstr ""
-#: core/doctype/communication/communication.js:104
+#: frappe/core/doctype/communication/communication.js:104
msgid "Move To Trash"
-msgstr "Sposta nel cestino"
+msgstr ""
-#: public/js/frappe/form/form.js:176
+#: frappe/public/js/form_builder/components/Section.vue:295
+msgid "Move current and all subsequent sections to a new tab"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:177
msgid "Move cursor to above row"
msgstr ""
-#: public/js/frappe/form/form.js:180
+#: frappe/public/js/frappe/form/form.js:181
msgid "Move cursor to below row"
msgstr ""
-#: public/js/frappe/form/form.js:184
+#: frappe/public/js/frappe/form/form.js:185
msgid "Move cursor to next column"
msgstr ""
-#: public/js/frappe/form/form.js:188
+#: frappe/public/js/frappe/form/form.js:189
msgid "Move cursor to previous column"
msgstr ""
-#: public/js/frappe/form/grid_row.js:165
+#: frappe/public/js/form_builder/components/Section.vue:294
+msgid "Move sections to new tab"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Field.vue:237
+msgid "Move the current field and the following fields to a new column"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:168
msgid "Move to Row Number"
-msgstr "Passa al numero di riga"
+msgstr ""
#. Description of the 'Next on Click' (Check) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Move to next step when clicked inside highlighted area."
msgstr ""
#. Description of the 'Parent Element Selector' (Data) field in DocType 'Form
#. Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Mozilla doesn't support :has() so you can pass parent selector here as workaround"
msgstr ""
-#: utils/nestedset.py:334
-msgid "Multiple root nodes not allowed."
-msgstr "Nodi principali multipli non ammessi."
+#: frappe/desk/page/setup_wizard/install_fixtures.py:43
+msgid "Mr"
+msgstr ""
-#. Label of a Select field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Multiplier Field"
-msgstr "Campo moltiplicatore"
+#: frappe/desk/page/setup_wizard/install_fixtures.py:47
+msgid "Mrs"
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:44
+msgid "Ms"
+msgstr ""
+
+#: frappe/utils/nestedset.py:331
+msgid "Multiple root nodes not allowed."
+msgstr ""
#. Description of the 'Import from Google Sheets' (Data) field in DocType 'Data
#. Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/core/doctype/data_import/data_import.json
msgid "Must be a publicly accessible Google Sheets URL"
-msgstr "Deve essere un URL di Fogli Google accessibile pubblicamente"
+msgstr ""
#. Description of the 'LDAP Search String' (Data) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Must be enclosed in '()' and include '{0}', which is a placeholder for the user/login name. i.e. (&(objectclass=user)(uid={0}))"
msgstr ""
-#. Description of the 'Image Field' (Data) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Must be of type \"Attach Image\""
-msgstr "Deve essere di tipo "Allega immagine""
-
#. Description of the 'Image Field' (Data) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Description of the 'Image Field' (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Must be of type \"Attach Image\""
-msgstr "Deve essere di tipo "Allega immagine""
-
-#: desk/query_report.py:202
-msgid "Must have report permission to access this report."
-msgstr "Deve avere relazione di permesso di accedere a questo rapporto."
-
-#: core/doctype/report/report.py:148
-msgid "Must specify a Query to run"
-msgstr "Necessario specificare una query per eseguire"
-
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Mute Sounds"
-msgstr "Disattiva Suoni"
-
-#: templates/includes/web_sidebar.html:41
-#: website/doctype/web_form/web_form.py:401
-#: website/doctype/website_settings/website_settings.py:181 www/list.py:21
-#: www/me.html:4 www/me.html:8 www/update_password.py:10
-msgid "My Account"
-msgstr "Il Mio Account"
-
-#. Label of a standard navbar item
-#. Type: Route
-#: hooks.py
-msgid "My Profile"
msgstr ""
-#. Label of a standard navbar item
-#. Type: Action
-#: hooks.py
-msgid "My Settings"
+#: frappe/desk/query_report.py:208
+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:459
+#: frappe/website/doctype/website_settings/website_settings.py:181
+#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
+msgid "My Account"
+msgstr ""
+
+#: 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'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "MyISAM"
-msgstr "MyISAM"
+msgstr ""
-#: workflow/doctype/workflow/workflow.js:19
+#: frappe/workflow/doctype/workflow/workflow.js:19
msgid "NOTE: If you add states or transitions in the table, it will be reflected in the Workflow Builder but you will have to position them manually. Also Workflow Builder is currently in BETA."
msgstr ""
#. Description of the 'LDAP Group Field' (Data) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "NOTE: This box is due for depreciation. Please re-setup LDAP to work with the newer settings"
msgstr ""
-#: public/js/frappe/form/layout.js:75
-#: public/js/frappe/form/multi_select_dialog.js:239
-#: public/js/frappe/form/save.js:154
-#: public/js/frappe/views/file/file_view.js:97
-#: website/doctype/website_slideshow/website_slideshow.js:25
+#. Label of the fieldname (Data) field in DocType 'DocField'
+#. Label of the fieldname (Data) field in DocType 'Customize Form Field'
+#. Label of the label (Data) field in DocType 'Workspace'
+#. Label of the webhook_name (Data) field in DocType 'Slack Webhook URL'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype_list.js:22
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
+#: frappe/public/js/frappe/form/layout.js:77
+#: frappe/public/js/frappe/form/multi_select_dialog.js:240
+#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/views/file/file_view.js:97
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
-msgstr "Nome"
+msgstr ""
-#. Label of a Data field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Name"
-msgstr "Nome"
+#: frappe/integrations/doctype/webhook/webhook.js:29
+msgid "Name (Doc Name)"
+msgstr ""
-#. Label of a Data field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Name"
-msgstr "Nome"
-
-#. Label of a Data field in DocType 'Slack Webhook URL'
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.json
-msgctxt "Slack Webhook URL"
-msgid "Name"
-msgstr "Nome"
-
-#. Label of a Data field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Name"
-msgstr "Nome"
-
-#: desk/utils.py:22
+#: frappe/desk/utils.py:22
msgid "Name already taken, please set a new name"
msgstr ""
-#: model/naming.py:460
+#: frappe/model/naming.py:504
msgid "Name cannot contain special characters like {0}"
-msgstr "Il nome non può contenere caratteri speciali come {0}"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:91
+#: frappe/custom/doctype/custom_field/custom_field.js:91
msgid "Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer"
-msgstr "Nome del tipo di documento (DocType) a cui questo campo deve essere collegato. P. es. clienti"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:117
+#: frappe/printing/page/print_format_builder/print_format_builder.js:117
msgid "Name of the new Print Format"
-msgstr "Nome del nuovo formato di stampa"
+msgstr ""
-#: model/naming.py:454
+#: frappe/model/naming.py:499
msgid "Name of {0} cannot be {1}"
-msgstr "Nome {0} non può essere {1}"
+msgstr ""
-#: utils/password_strength.py:178
+#: frappe/utils/password_strength.py:174
msgid "Names and surnames by themselves are easy to guess."
-msgstr "Nomi e cognomi di per sé sono facili da indovinare."
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the sb1 (Tab Break) field in DocType 'DocType'
+#. Label of the naming_section (Section Break) field in DocType 'Document
+#. Naming Rule'
+#. Label of the naming_section (Section Break) field in DocType 'Customize
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Naming"
-msgstr "Nomine"
-
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Naming"
-msgstr "Nomine"
-
-#. Label of a Section Break field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
-msgid "Naming"
-msgstr "Nomine"
-
-#. Description of the 'Auto Name' (Data) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid ""
-"Naming Options:\n"
-"- field:[fieldname] - By Field
- autoincrement - Uses Databases' Auto Increment feature
- naming_series: - By Naming Series (field called naming_series must be present)
- Prompt - Prompt user for a name
- [series] - Series by prefix (separated by a dot); for example PRE.#####
\n"
-"- format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
"
msgstr ""
#. Description of the 'Auto Name' (Data) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid ""
-"Naming Options:\n"
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Naming Options:\n"
"- field:[fieldname] - By Field
- naming_series: - By Naming Series (field called naming_series must be present)
- Prompt - Prompt user for a name
- [series] - Series by prefix (separated by a dot); for example PRE.#####
\n"
"- format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
"
msgstr ""
-#. Label of a Select field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the naming_rule (Select) field in DocType 'DocType'
+#. Label of the naming_rule (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Naming Rule"
msgstr ""
-#. Label of a Select field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Naming Rule"
-msgstr ""
-
-#. Label of a Tab Break field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the naming_series_tab (Tab Break) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Naming Series"
-msgstr "Denominazione Serie"
+msgstr ""
-#: model/naming.py:243
+#: frappe/model/naming.py:260
msgid "Naming Series mandatory"
-msgstr "Denominazione Serie obbligatoria"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
+#. Label of the top_bar (Section Break) field in DocType 'Website Settings'
+#. Label of the navbar_tab (Tab Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Navbar"
-msgstr "Navbar"
-
-#. Label of a Section Break field in DocType 'Website Settings'
-#. Label of a Tab Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Navbar"
-msgstr "Navbar"
+msgstr ""
#. Name of a DocType
-#: core/doctype/navbar_item/navbar_item.json
+#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Navbar Item"
-msgstr "Elemento della barra di navigazione"
+msgstr ""
#. Name of a DocType
-#: core/doctype/navbar_settings/navbar_settings.json
-msgid "Navbar Settings"
-msgstr "Impostazioni della barra di navigazione"
-
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Navbar Settings"
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+#: frappe/core/workspace/build/build.json
msgid "Navbar Settings"
-msgstr "Impostazioni della barra di navigazione"
+msgstr ""
-#. Label of a Link field in DocType 'Website Settings'
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the navbar_template (Link) field in DocType 'Website Settings'
+#. Label of the navbar_template_section (Section Break) field in DocType
+#. 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Navbar Template"
-msgstr "Modello Navbar"
+msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the navbar_template_values (Code) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Navbar Template Values"
-msgstr "Valori modello Navbar"
+msgstr ""
-#: public/js/frappe/ui/keyboard.js:211
-msgid "Navigate Home"
-msgstr "Vai a casa"
-
-#: public/js/frappe/list/list_view.js:1134
+#: frappe/public/js/frappe/list/list_view.js:1237
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
-msgstr "Naviga l'elenco verso il basso"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1141
+#: frappe/public/js/frappe/list/list_view.js:1244
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
-msgstr "Naviga l'elenco in alto"
+msgstr ""
-#: public/js/frappe/ui/page.js:168
+#: frappe/public/js/frappe/ui/page.js:175
msgid "Navigate to main content"
msgstr ""
-#. Label of a Section Break field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the navigation_settings_section (Section Break) field in DocType
+#. 'User'
+#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
msgstr ""
-#: desk/doctype/workspace/workspace.py:297
+#: frappe/desk/doctype/workspace/workspace.py:319
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: desk/doctype/workspace/workspace.py:343
-msgid "Need Workspace Manager role to hide/unhide public workspaces"
+#: frappe/model/document.py:792
+msgid "Negative Value"
msgstr ""
-#: model/document.py:607
-msgid "Negative Value"
-msgstr "Valore negativo"
-
-#: utils/nestedset.py:95
+#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
-msgstr "Errore di gruppo nidificati. Si prega di contattare l'amministratore."
+msgstr ""
#. Name of a DocType
-#: printing/doctype/network_printer_settings/network_printer_settings.json
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Network Printer Settings"
msgstr ""
-#: core/doctype/success_action/success_action.js:55
-#: core/page/dashboard_view/dashboard_view.js:173 desk/doctype/todo/todo.js:46
-#: public/js/frappe/form/success_action.js:77
-#: public/js/frappe/views/treeview.js:454
-#: website/doctype/web_form/templates/web_list.html:15 www/list.html:19
-msgid "New"
-msgstr "Nuovo"
-
-#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "New"
-msgstr "Nuovo"
-
-#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "New"
-msgstr "Nuovo"
-
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/core/doctype/success_action/success_action.js:57
+#: frappe/core/page/dashboard_view/dashboard_view.js:173
+#: frappe/desk/doctype/todo/todo.js:46
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/success_action.js:77
+#: frappe/public/js/frappe/views/treeview.js:471
+#: frappe/public/js/frappe/views/workspace/workspace.js:64
+#: frappe/website/doctype/web_form/templates/web_list.html:15
+#: frappe/www/list.html:19
msgid "New"
-msgstr "Nuovo"
+msgstr ""
-#: public/js/frappe/views/interaction.js:15
+#: frappe/public/js/frappe/views/interaction.js:15
msgid "New Activity"
-msgstr "Nuova attività"
+msgstr ""
-#: templates/includes/comments/comments.py:64
+#: frappe/public/js/frappe/form/templates/address_list.html:3
+#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:5
+#: frappe/public/js/frappe/utils/address_and_contact.js:71
+msgid "New Address"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:58
+msgid "New Chart"
+msgstr ""
+
+#: frappe/templates/includes/comments/comments.py:62
msgid "New Comment on {0}: {1}"
-msgstr "Nuovo commento su {0}: {1}"
+msgstr ""
-#: printing/page/print/print.js:288 printing/page/print/print.js:335
+#: 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:295
+#: frappe/printing/page/print/print.js:342
msgid "New Custom Print Format"
-msgstr "Nuovo formato di stampa personalizzato"
+msgstr ""
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the new_document_form (Check) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "New Document Form"
msgstr ""
-#: desk/doctype/notification_log/notification_log.py:158
+#: frappe/desk/doctype/notification_log/notification_log.py:154
msgid "New Document Shared {0}"
-msgstr "Nuovo documento condiviso {0}"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:26
-#: public/js/frappe/views/communication.js:23
+#: frappe/public/js/frappe/form/footer/form_timeline.js:27
+#: frappe/public/js/frappe/views/communication.js:23
msgid "New Email"
-msgstr "Nuova email"
+msgstr ""
-#: public/js/frappe/list/list_view_select.js:98
-#: public/js/frappe/views/inbox/inbox_view.js:177
+#: frappe/public/js/frappe/list/list_view_select.js:98
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:177
msgid "New Email Account"
-msgstr "Un nuovo account e-mail"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:45
+#: frappe/public/js/frappe/form/footer/form_timeline.js:47
msgid "New Event"
-msgstr "Nuovo evento"
+msgstr ""
-#: public/js/frappe/views/file/file_view.js:94
+#: frappe/public/js/frappe/views/file/file_view.js:94
msgid "New Folder"
-msgstr "Nuova cartella"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:341
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "New Kanban Board"
-msgstr "Nuovo Consiglio Kanban"
+msgstr ""
-#: desk/doctype/notification_log/notification_log.py:156
+#: frappe/public/js/frappe/widgets/widget_dialog.js:62
+msgid "New Links"
+msgstr ""
+
+#: frappe/desk/doctype/notification_log/notification_log.py:152
msgid "New Mention on {0}"
-msgstr "Nuova menzione su {0}"
+msgstr ""
-#: www/contact.py:51
+#: frappe/www/contact.py:61
msgid "New Message from Website Contact Page"
-msgstr "Nuovo messaggio dal sito Pagina contatto"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:206 public/js/frappe/model/model.js:727
+#. Label of the new_name (Read Only) field in DocType 'Deleted Document'
+#: frappe/core/doctype/deleted_document/deleted_document.json
+#: frappe/public/js/frappe/form/toolbar.js:218
+#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
-msgstr "Nuovo Nome"
+msgstr ""
-#. Label of a Read Only field in DocType 'Deleted Document'
-#: core/doctype/deleted_document/deleted_document.json
-msgctxt "Deleted Document"
-msgid "New Name"
-msgstr "Nuovo Nome"
-
-#: email/doctype/email_group/email_group.js:67
+#: frappe/email/doctype/email_group/email_group.js:67
msgid "New Newsletter"
-msgstr "Nuova Newsletter"
+msgstr ""
-#: desk/doctype/notification_log/notification_log.py:155
+#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
-msgstr "Nuova notifica"
+msgstr ""
-#: core/doctype/user/user.js:167 www/update-password.html:19
+#: frappe/public/js/frappe/widgets/widget_dialog.js:64
+msgid "New Number Card"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:66
+msgid "New Onboarding"
+msgstr ""
+
+#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42
msgid "New Password"
-msgstr "Nuova password"
+msgstr ""
-#: printing/page/print/print.js:260 printing/page/print/print.js:314
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:61
+#: frappe/printing/page/print/print.js:267
+#: frappe/printing/page/print/print.js:321
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
-msgstr "Nuovo nome del formato di stampa"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1310
+#: frappe/public/js/frappe/widgets/widget_dialog.js:68
+msgid "New Quick List"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
-msgstr "Nuovo nome report"
+msgstr ""
-#: workflow/page/workflow_builder/workflow_builder.js:61
+#. Label of the new_role (Data) field in DocType 'Role Replication'
+#: frappe/core/doctype/role_replication/role_replication.json
+msgid "New Role"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:60
+msgid "New Shortcut"
+msgstr ""
+
+#. Label of the new_users (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "New Users (Last 30 days)"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:14
+#: frappe/core/doctype/version/version_view.html:76
+msgid "New Value"
+msgstr ""
+
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:61
msgid "New Workflow Name"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:1172
+#: frappe/public/js/frappe/views/workspace/workspace.js:390
msgid "New Workspace"
msgstr ""
-#: www/update-password.html:77
+#: frappe/www/update-password.html:79
msgid "New password cannot be same as old password"
msgstr ""
-#: utils/change_log.py:306
+#: frappe/utils/change_log.py:389
msgid "New updates are available"
-msgstr "Nuovi aggiornamenti sono disponibili"
+msgstr ""
#. Description of the 'Disable signups' (Check) field in DocType 'Website
#. Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "New users will have to be manually registered by system managers."
msgstr ""
#. Description of the 'Set Value' (Small Text) field in DocType 'Property
#. Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "New value to be set"
-msgstr "Nuovo valore da impostare"
+msgstr ""
-#: public/js/frappe/form/quick_entry.js:124 public/js/frappe/form/toolbar.js:36
-#: public/js/frappe/form/toolbar.js:196 public/js/frappe/form/toolbar.js:209
-#: public/js/frappe/form/toolbar.js:490
-#: public/js/frappe/ui/toolbar/search_utils.js:151
-#: public/js/frappe/ui/toolbar/search_utils.js:152
-#: public/js/frappe/ui/toolbar/search_utils.js:201
-#: public/js/frappe/ui/toolbar/search_utils.js:202
-#: public/js/frappe/views/treeview.js:350
-#: website/doctype/web_form/web_form.py:310
+#: frappe/public/js/frappe/form/quick_entry.js:179
+#: frappe/public/js/frappe/form/toolbar.js:37
+#: frappe/public/js/frappe/form/toolbar.js:206
+#: frappe/public/js/frappe/form/toolbar.js:221
+#: frappe/public/js/frappe/form/toolbar.js:558
+#: frappe/public/js/frappe/model/model.js:612
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
+#: frappe/public/js/frappe/views/treeview.js:366
+#: frappe/public/js/frappe/widgets/widget_dialog.js:72
+#: frappe/website/doctype/web_form/web_form.py:376
msgid "New {0}"
-msgstr "Nuovo/a {0}"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:392
+#: frappe/public/js/frappe/views/reports/query_report.js:392
msgid "New {0} Created"
-msgstr "Nuovo {0} creato"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:384
+#: frappe/public/js/frappe/views/reports/query_report.js:384
msgid "New {0} {1} added to Dashboard {2}"
-msgstr "Nuovo {0} {1} aggiunto alla dashboard {2}"
+msgstr ""
-#: public/js/frappe/form/quick_entry.js:167
-#: public/js/frappe/views/reports/query_report.js:389
+#: frappe/public/js/frappe/views/reports/query_report.js:389
msgid "New {0} {1} created"
-msgstr "Nuovo {0} {1} creato"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:373
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385
msgid "New {0}: {1}"
-msgstr "Nuovo {0}: {1}"
+msgstr ""
-#: utils/change_log.py:298
+#: frappe/utils/change_log.py:375
msgid "New {} releases for the following apps are available"
-msgstr "Sono disponibili nuove {} versioni per le seguenti app"
+msgstr ""
-#: core/doctype/user/user.py:764
+#: frappe/core/doctype/user/user.py:804
msgid "Newly created user {0} has no roles enabled."
msgstr ""
#. Label of a Card Break in the Tools Workspace
-#. Name of a DocType
-#: automation/workspace/tools/tools.json
-#: email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "Newsletter"
-
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Newsletter"
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Newsletter"
-msgstr "Newsletter"
+msgstr ""
#. Name of a DocType
-#: email/doctype/newsletter_attachment/newsletter_attachment.json
+#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Newsletter Attachment"
msgstr ""
#. Name of a DocType
-#: email/doctype/newsletter_email_group/newsletter_email_group.json
+#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Newsletter Email Group"
-msgstr "Newsletter Email Group"
+msgstr ""
#. Name of a role
-#: email/doctype/email_group/email_group.json
-#: email/doctype/email_group_member/email_group_member.json
-#: email/doctype/newsletter/newsletter.json
-#: website/doctype/marketing_campaign/marketing_campaign.json
+#: frappe/email/doctype/email_group/email_group.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
-msgstr "Responsabile Newsletter"
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:130
+#: frappe/email/doctype/newsletter/newsletter.py:128
msgid "Newsletter has already been sent"
-msgstr "Newsletter già inviata"
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:149
+#: frappe/email/doctype/newsletter/newsletter.py:147
msgid "Newsletter must be published to send webview link in email"
msgstr ""
-#: email/doctype/newsletter/newsletter.py:137
+#: frappe/email/doctype/newsletter/newsletter.py:135
msgid "Newsletter should have atleast one recipient"
-msgstr "La newsletter dovrebbe avere almeno un destinatario"
-
-#: email/doctype/newsletter/newsletter.py:392
-msgid "Newsletters"
-msgstr "Newsletters"
-
-#: public/js/frappe/form/form_tour.js:316
-#: public/js/onboarding_tours/onboarding_tours.js:15
-#: public/js/onboarding_tours/onboarding_tours.js:240
-#: templates/includes/slideshow.html:38 website/utils.py:247
-#: website/web_template/slideshow/slideshow.html:44
-msgid "Next"
-msgstr "Successivo"
-
-#. Label of a Link field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
-msgid "Next Action Email Template"
-msgstr "Modello di email della prossima azione"
-
-#. Label of a HTML field in DocType 'Success Action'
-#: core/doctype/success_action/success_action.json
-msgctxt "Success Action"
-msgid "Next Actions HTML"
-msgstr "Azioni successive HTML"
-
-#: public/js/frappe/form/toolbar.js:297
-msgid "Next Document"
msgstr ""
-#. Label of a Datetime field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#: frappe/email/doctype/newsletter/newsletter.py:390
+msgid "Newsletters"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_tour.js:14
+#: frappe/public/js/frappe/form/form_tour.js:324
+#: frappe/public/js/frappe/web_form/web_form.js:91
+#: 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 a Link field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the next_form_tour (Link) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Next Form Tour"
msgstr ""
-#. Label of a Date field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#: frappe/public/js/frappe/ui/filters/filter.js:696
+msgid "Next Month"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:700
+msgid "Next Quarter"
+msgstr ""
+
+#. Label of the next_schedule_date (Date) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Next Schedule Date"
-msgstr "Data di pianificazione successiva"
+msgstr ""
-#. Label of a Link field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
+#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:6
+msgid "Next Scheduled Date"
+msgstr ""
+
+#. Label of the next_state (Link) field in DocType 'Workflow Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Next State"
-msgstr "Stato Successivo"
+msgstr ""
-#. Label of a Code field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the next_step_condition (Code) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Next Step Condition"
msgstr ""
-#. Label of a Password field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Label of the next_sync_token (Password) field in DocType 'Google Calendar'
+#. Label of the next_sync_token (Password) field in DocType 'Google Contacts'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Next Sync Token"
-msgstr "Token successivo di sincronizzazione"
+msgstr ""
-#. Label of a Password field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
-msgid "Next Sync Token"
-msgstr "Token successivo di sincronizzazione"
+#: frappe/public/js/frappe/ui/filters/filter.js:692
+msgid "Next Week"
+msgstr ""
-#. Label of a Check field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/public/js/frappe/ui/filters/filter.js:708
+msgid "Next Year"
+msgstr ""
+
+#: frappe/public/js/frappe/form/workflow.js:45
+msgid "Next actions"
+msgstr ""
+
+#. Label of the next_on_click (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Next on Click"
msgstr ""
-#: integrations/doctype/webhook/webhook.py:137
-#: public/js/form_builder/utils.js:341
-#: public/js/frappe/form/controls/link.js:471
-#: public/js/frappe/list/list_sidebar_group_by.js:223
-#: public/js/frappe/views/reports/query_report.js:1513
-#: website/doctype/help_article/templates/help_article.html:26
-msgid "No"
-msgstr "No"
-
-#: public/js/frappe/ui/filters/filter.js:501
-msgctxt "Checkbox is not checked"
-msgid "No"
-msgstr "No"
-
-#: public/js/frappe/ui/messages.js:37
-msgctxt "Dismiss confirmation dialog"
-msgid "No"
-msgstr "No"
-
+#. Option for the 'Standard' (Select) field in DocType 'Page'
+#. Option for the 'Is Standard' (Select) field in DocType 'Report'
#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
-msgid "No"
-msgstr "No"
-
-#. Option for the 'Standard' (Select) field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "No"
-msgstr "No"
-
#. Option for the 'Standard' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
+#: frappe/email/doctype/notification/notification.py:96
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/webhook/webhook.py:128
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/form_builder/utils.js:341
+#: frappe/public/js/frappe/form/controls/link.js:494
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
-msgstr "No"
+msgstr ""
-#. Option for the 'Is Standard' (Select) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#: frappe/public/js/frappe/ui/filters/filter.js:546
+msgctxt "Checkbox is not checked"
msgid "No"
-msgstr "No"
+msgstr ""
-#: www/third_party_apps.html:54
+#: frappe/public/js/frappe/ui/messages.js:37
+msgctxt "Dismiss confirmation dialog"
+msgid "No"
+msgstr ""
+
+#: frappe/www/third_party_apps.html:56
msgid "No Active Sessions"
-msgstr "Nessuna sessione attiva"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the no_copy (Check) field in DocType 'DocField'
+#. Label of the no_copy (Check) field in DocType 'Custom Field'
+#. Label of the no_copy (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "No Copy"
-msgstr "Copia Assente"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "No Copy"
-msgstr "Copia Assente"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "No Copy"
-msgstr "Copia Assente"
-
-#: core/doctype/data_export/exporter.py:162
-#: email/doctype/auto_email_report/auto_email_report.py:263
-#: public/js/frappe/data_import/import_preview.js:142
-#: public/js/frappe/form/multi_select_dialog.js:223
-#: public/js/frappe/utils/datatable.js:10
+#: frappe/core/doctype/data_export/exporter.py:162
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:289
+#: 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 "Dati Assenti"
+msgstr ""
-#: public/js/frappe/views/inbox/inbox_view.js:176
+#: frappe/public/js/frappe/widgets/quick_list_widget.js:134
+msgid "No Data..."
+msgstr ""
+
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:176
msgid "No Email Account"
-msgstr "Nessun account e-mail"
+msgstr ""
-#: public/js/frappe/views/inbox/inbox_view.js:183
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:196
+msgid "No Email Accounts Assigned"
+msgstr ""
+
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:183
msgid "No Emails"
-msgstr "Nessuna email"
+msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:362
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:361
msgid "No Entry for the User {0} found within LDAP!"
-msgstr "Nessuna voce per l'utente {0} trovata in LDAP!"
+msgstr ""
-#: public/js/frappe/widgets/chart_widget.js:366
+#: frappe/public/js/frappe/widgets/chart_widget.js:407
msgid "No Filters Set"
-msgstr "Nessun filtro impostato"
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:356
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:372
msgid "No Google Calendar Event to sync."
-msgstr "Nessun evento di Google Calendar da sincronizzare."
+msgstr ""
-#: public/js/frappe/ui/capture.js:254
+#: frappe/public/js/frappe/ui/capture.js:262
msgid "No Images"
msgstr ""
-#: desk/page/leaderboard/leaderboard.js:282
-msgid "No Items Found"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:363
+msgid "No LDAP User found for email: {0}"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:364
-msgid "No LDAP User found for email: {0}"
-msgstr "Nessun utente LDAP trovato per l'email: {0}"
+#: 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 ""
-#: printing/page/print/print.js:675 printing/page/print/print.js:757
-#: public/js/frappe/list/bulk_operations.js:82
-#: public/js/frappe/list/bulk_operations.js:126 utils/weasyprint.py:54
+#: frappe/printing/page/print/print.js:703
+#: frappe/printing/page/print/print.js:784
+#: frappe/public/js/frappe/list/bulk_operations.js:98
+#: frappe/public/js/frappe/list/bulk_operations.js:170
+#: frappe/utils/weasyprint.py:52
msgid "No Letterhead"
msgstr ""
-#: model/naming.py:436
+#: frappe/model/naming.py:481
msgid "No Name Specified for {0}"
-msgstr "Nessun nome specificato per {0}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1684
+#: frappe/public/js/frappe/ui/notifications/notifications.js:315
+msgid "No New notifications"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1743
msgid "No Permissions Specified"
-msgstr "Nessuna autorizzazione specificata"
+msgstr ""
-#: core/page/permission_manager/permission_manager.js:192
+#: frappe/core/page/permission_manager/permission_manager.js:199
msgid "No Permissions set for this criteria."
-msgstr "Permessi non impostati per questo criterio."
+msgstr ""
-#: core/page/dashboard_view/dashboard_view.js:93
+#: frappe/core/page/dashboard_view/dashboard_view.js:93
msgid "No Permitted Charts"
-msgstr "Nessun grafico consentito"
+msgstr ""
-#: core/page/dashboard_view/dashboard_view.js:92
+#: frappe/core/page/dashboard_view/dashboard_view.js:92
msgid "No Permitted Charts on this Dashboard"
-msgstr "Nessun grafico consentito su questo dashboard"
+msgstr ""
-#: printing/page/print/print.js:835
+#: frappe/printing/doctype/print_settings/print_settings.js:13
+msgid "No Preview"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:707
+msgid "No Preview Available"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:862
msgid "No Printer is Available."
-msgstr "Nessuna stampante disponibile"
+msgstr ""
-#: public/js/frappe/form/link_selector.js:135
+#: 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 "Nessun risultato"
+msgstr ""
-#: public/js/frappe/ui/toolbar/search.js:51
+#: frappe/public/js/frappe/ui/toolbar/search.js:51
msgid "No Results found"
msgstr ""
-#: core/doctype/user/user.py:765
+#: frappe/core/doctype/user/user.py:805
msgid "No Roles Specified"
msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:341
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "No Select Field Found"
msgstr ""
-#: desk/reportview.py:565
+#: frappe/core/doctype/recorder/recorder.py:179
+msgid "No Suggestions"
+msgstr ""
+
+#: frappe/desk/reportview.py:672
msgid "No Tags"
-msgstr "No Tags"
+msgstr ""
-#: email/doctype/notification/notification.js:180
+#: frappe/public/js/frappe/ui/notifications/notifications.js:442
+msgid "No Upcoming Events"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/address_list.html:43
+msgid "No address added yet."
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.js:229
msgid "No alerts for today"
-msgstr "Nessun avviso per oggi"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:34
+#: frappe/core/doctype/recorder/recorder.py:178
+msgid "No automatic optimization suggestions available."
+msgstr ""
+
+#: frappe/email/doctype/newsletter/newsletter.js:34
msgid "No broken links found in the email content"
msgstr ""
-#: public/js/frappe/form/save.js:38
+#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
-msgstr "Nessuna modifica nel documento"
+msgstr ""
-#: model/rename_doc.py:370
+#: frappe/public/js/frappe/views/workspace/workspace.js:662
+msgid "No changes made"
+msgstr ""
+
+#: frappe/model/rename_doc.py:369
msgid "No changes made because old and new name are the same."
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:1477
-msgid "No changes made on the page"
-msgstr ""
-
-#: custom/doctype/doctype_layout/doctype_layout.js:59
+#: frappe/custom/doctype/doctype_layout/doctype_layout.js:59
msgid "No changes to sync"
msgstr ""
-#: core/doctype/data_import/importer.py:286
+#: frappe/core/doctype/data_import/importer.py:298
msgid "No changes to update"
msgstr ""
-#: website/doctype/blog_post/blog_post.py:376
+#: frappe/website/doctype/blog_post/blog_post.py:378
msgid "No comments yet"
-msgstr "Ancora nessun commento"
+msgstr ""
-#: templates/includes/comments/comments.html:4
+#: frappe/templates/includes/comments/comments.html:4
msgid "No comments yet. "
msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:426
+#: frappe/public/js/frappe/form/templates/contact_list.html:91
+msgid "No contacts added yet."
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438
msgid "No contacts linked to document"
-msgstr "Nessun contatto collegato al documento"
+msgstr ""
-#: desk/query_report.py:335
+#: frappe/desk/query_report.py:342
msgid "No data to export"
-msgstr "Nessun dato da esportare"
+msgstr ""
-#: contacts/doctype/address/address.py:251
+#: frappe/contacts/doctype/address/address.py:246
msgid "No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template."
-msgstr "Nessun modello di indirizzo predefinito trovato. Creane uno nuovo da Imposta> Stampa e personalizzazione> Modello indirizzo."
+msgstr ""
-#: public/js/frappe/ui/toolbar/search.js:71
+#: frappe/public/js/frappe/ui/toolbar/search.js:71
msgid "No documents found tagged with {0}"
-msgstr "Nessun documento trovato taggato con {0}"
+msgstr ""
-#: public/js/frappe/views/inbox/inbox_view.js:21
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:21
msgid "No email account associated with the User. Please add an account under User > Email Inbox."
-msgstr "Nessun account e-mail associato all'utente. Aggiungi un account in Utente> Posta in arrivo."
+msgstr ""
-#: utils/file_manager.py:143
+#: frappe/core/doctype/data_import/data_import.js:478
+msgid "No failed logs"
+msgstr ""
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+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 "Nessun file allegato"
+msgstr ""
-#: desk/form/utils.py:102
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:134
+msgid "No filters found"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter_list.js:299
+msgid "No filters selected"
+msgstr ""
+
+#: frappe/desk/form/utils.py:111
msgid "No further records"
-msgstr "Nessun ulteriore record"
+msgstr ""
-#: templates/includes/search_template.html:49
+#: frappe/templates/includes/search_template.html:49
msgid "No matching records. Search something new"
-msgstr "Non ha prodotto. Cerca qualcosa di nuovo"
+msgstr ""
-#: public/js/frappe/web_form/web_form_list.js:161
+#: frappe/public/js/frappe/web_form/web_form_list.js:161
msgid "No more items to display"
-msgstr "Non ci sono più elementi da visualizzare"
+msgstr ""
-#: utils/password_strength.py:45
+#: frappe/utils/password_strength.py:45
msgid "No need for symbols, digits, or uppercase letters."
-msgstr "Non c'è bisogno di simboli, cifre o lettere maiuscole."
+msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.py:192
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:195
msgid "No new Google Contacts synced."
-msgstr "Nessun nuovo contatto Google sincronizzato."
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:415
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:46
+msgid "No new notifications"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:415
msgid "No of Columns"
-msgstr "Numero di colonne"
+msgstr ""
-#. Label of a Int field in DocType 'SMS Log'
-#: core/doctype/sms_log/sms_log.json
-msgctxt "SMS Log"
+#. Label of the no_of_requested_sms (Int) field in DocType 'SMS Log'
+#: frappe/core/doctype/sms_log/sms_log.json
msgid "No of Requested SMS"
msgstr ""
-#. Label of a Int field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the no_of_rows (Int) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "No of Rows (Max 500)"
-msgstr "No di file (max 500)"
+msgstr ""
-#. Label of a Int field in DocType 'SMS Log'
-#: core/doctype/sms_log/sms_log.json
-msgctxt "SMS Log"
+#. Label of the no_of_sent_sms (Int) field in DocType 'SMS Log'
+#: frappe/core/doctype/sms_log/sms_log.json
msgid "No of Sent SMS"
msgstr ""
-#: __init__.py:1027 client.py:109 client.py:151
+#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
-msgstr "Nessun permesso per {0}"
+msgstr ""
-#: public/js/frappe/form/form.js:1115
+#: frappe/public/js/frappe/form/form.js:1142
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
-msgstr "Nessuna autorizzazione per '{0}' {1}"
+msgstr ""
-#: model/db_query.py:943
+#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
-msgstr "Non autorizzato a leggere {0}"
+msgstr ""
-#: share.py:224
+#: frappe/share.py:220
msgid "No permission to {0} {1} {2}"
-msgstr "Nessun permesso a {0} {1} {2}"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:175
+#: frappe/core/doctype/user_permission/user_permission_list.js:175
msgid "No records deleted"
-msgstr "Nessun record cancellato"
+msgstr ""
-#: contacts/report/addresses_and_contacts/addresses_and_contacts.py:121
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
msgid "No records present in {0}"
-msgstr "Nessun record presente in {0}"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:221
+#: frappe/public/js/frappe/list/list_sidebar_stat.html:3
+msgid "No records tagged."
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:225
msgid "No records will be exported"
-msgstr "Nessun record verrà esportato"
+msgstr ""
-#: www/printview.py:426
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "No rows"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:129
+msgid "No subject"
+msgstr ""
+
+#: frappe/www/printview.py:472
msgid "No template found at path: {0}"
-msgstr "Nessun modello trovato nel percorso: {0}"
+msgstr ""
-#: website/web_template/discussions/discussions.html:2
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:262
+msgid "No values to show"
+msgstr ""
+
+#: frappe/website/web_template/discussions/discussions.html:2
msgid "No {0}"
msgstr ""
-#: public/js/frappe/list/list_view.js:466
+#: frappe/public/js/frappe/list/list_view_select.js:157
+msgid "No {0} Found"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form_list.js:233
+msgid "No {0} found"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:494
msgid "No {0} found with matching filters. Clear filters to see all {0}."
msgstr ""
-#: public/js/frappe/views/inbox/inbox_view.js:171
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:171
msgid "No {0} mail"
-msgstr "No {0} di posta"
+msgstr ""
-#: public/js/form_builder/utils.js:117 public/js/frappe/form/grid_row.js:251
+#: frappe/public/js/form_builder/utils.js:117
+#: frappe/public/js/frappe/form/grid_row.js:256
+msgctxt "Title of the 'row number' column"
msgid "No."
msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. 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 "Non negativo"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Non Negative"
-msgstr "Non negativo"
+#: frappe/desk/page/setup_wizard/install_fixtures.py:33
+msgid "Non-Conforming"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Non Negative"
-msgstr "Non negativo"
-
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "None"
-msgstr "Nessuna"
-
-#: public/js/frappe/form/workflow.js:36
+#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
-msgstr "Nessuno: Fine del flusso di lavoro"
+msgstr ""
-#. Label of a Int field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
+#. Label of the normalized_copies (Int) field in DocType 'Recorder Query'
+#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Normalized Copies"
msgstr ""
-#. Label of a Data field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
+#. Label of the normalized_query (Data) field in DocType 'Recorder Query'
+#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Normalized Query"
msgstr ""
-#: core/doctype/user/user.py:972 utils/oauth.py:272
+#: frappe/core/doctype/user/user.py:1018
+#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
-msgstr "Non ammessi"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:36
+#: frappe/templates/includes/login/login.js:259
+msgid "Not Allowed: Disabled User"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:36
msgid "Not Ancestors Of"
-msgstr "Non antenati di"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:34
+#: frappe/public/js/frappe/ui/filters/filter.js:34
msgid "Not Descendants Of"
-msgstr "Non discendenti di"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:17
+#: frappe/public/js/frappe/ui/filters/filter.js:17
msgid "Not Equals"
-msgstr "Non uguale"
+msgstr ""
-#: app.py:363 www/404.html:3
+#: frappe/app.py:367 frappe/www/404.html:3
msgid "Not Found"
-msgstr "Non trovato"
+msgstr ""
-#. Label of a Int field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
+#. Label of the not_helpful (Int) field in DocType 'Help Article'
+#: frappe/website/doctype/help_article/help_article.json
msgid "Not Helpful"
msgstr ""
-#: public/js/frappe/ui/filters/filter.js:21
+#: frappe/public/js/frappe/ui/filters/filter.js:21
msgid "Not In"
-msgstr "Non In"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:19
+#: frappe/public/js/frappe/ui/filters/filter.js:19
msgid "Not Like"
-msgstr "Non come"
+msgstr ""
-#: public/js/frappe/form/linked_with.js:45
+#: frappe/public/js/frappe/form/linked_with.js:45
msgid "Not Linked to any record"
-msgstr "Non è collegato a alcun record"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the not_nullable (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Not Nullable"
msgstr ""
-#: __init__.py:921 app.py:354 desk/calendar.py:26 geo/utils.py:97
-#: public/js/frappe/web_form/webform_script.js:15
-#: website/doctype/web_form/web_form.py:603
-#: website/page_renderers/not_permitted_page.py:20 www/login.py:177
-#: www/qrcode.py:22 www/qrcode.py:25 www/qrcode.py:37
+#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/public/js/frappe/web_form/webform_script.js:15
+#: frappe/website/doctype/web_form/web_form.py:708
+#: frappe/website/page_renderers/not_permitted_page.py:22
+#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
+#: frappe/www/qrcode.py:37
msgid "Not Permitted"
-msgstr "Non Consentito"
+msgstr ""
-#: desk/query_report.py:513
+#: frappe/desk/query_report.py:542
msgid "Not Permitted to read {0}"
msgstr ""
-#: website/doctype/blog_post/blog_post_list.js:7
-#: website/doctype/web_form/web_form_list.js:7
-#: website/doctype/web_page/web_page_list.js:7
+#: frappe/website/doctype/blog_post/blog_post_list.js:7
+#: frappe/website/doctype/web_form/web_form_list.js:7
+#: frappe/website/doctype/web_page/web_page_list.js:7
msgid "Not Published"
-msgstr "Non Pubblicato"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:260 public/js/frappe/form/toolbar.js:740
-#: public/js/frappe/model/indicator.js:28
-#: public/js/frappe/views/kanban/kanban_view.js:167
-#: public/js/frappe/views/reports/report_view.js:173
-#: public/js/print_format_builder/print_format_builder.bundle.js:39
-#: website/doctype/web_form/templates/web_form.html:75
+#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/form/toolbar.js:813
+#: frappe/public/js/frappe/model/indicator.js:28
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
+#: frappe/public/js/frappe/views/reports/report_view.js:203
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
+#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
-msgstr "Non salvato"
+msgstr ""
-#: core/doctype/error_log/error_log_list.js:7
+#: frappe/core/doctype/error_log/error_log_list.js:7
msgid "Not Seen"
-msgstr "Non Visto"
-
-#: email/doctype/newsletter/newsletter_list.js:9
-msgid "Not Sent"
-msgstr "Non Inviato"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Not Sent"
-msgstr "Non Inviato"
-
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
-#: email/doctype/email_queue_recipient/email_queue_recipient.json
-msgctxt "Email Queue Recipient"
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
+#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
-msgstr "Non Inviato"
+msgstr ""
-#: public/js/frappe/list/list_sidebar_group_by.js:219
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:219
msgid "Not Set"
-msgstr "Non Impostato"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:563
+#: frappe/public/js/frappe/ui/filters/filter.js:608
msgctxt "Field value is not set"
msgid "Not Set"
-msgstr "Non Impostato"
+msgstr ""
-#: utils/csvutils.py:77
+#: frappe/utils/csvutils.py:102
msgid "Not a valid Comma Separated Value (CSV File)"
-msgstr "File CSV non valido"
+msgstr ""
-#: core/doctype/user/user.py:197
+#: frappe/core/doctype/user/user.py:265
msgid "Not a valid User Image."
-msgstr "Immagine dell'utente non valida."
+msgstr ""
-#: model/workflow.py:118
+#: frappe/model/workflow.py:114
msgid "Not a valid Workflow Action"
-msgstr "Azione non valida del flusso di lavoro"
+msgstr ""
-#: workflow/doctype/workflow/workflow_list.js:7
+#: frappe/templates/includes/login/login.js:255
+msgid "Not a valid user"
+msgstr ""
+
+#: frappe/workflow/doctype/workflow/workflow_list.js:7
msgid "Not active"
-msgstr "Non attivo"
+msgstr ""
-#: permissions.py:367
+#: frappe/permissions.py:370
msgid "Not allowed for {0}: {1}"
-msgstr "Non consentito per {0}: {1}"
+msgstr ""
-#: email/doctype/notification/notification.py:388
+#: frappe/email/doctype/notification/notification.py:595
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
-msgstr "Non è consentito allegare {0} documento, abilitare Consenti stampa per {0} nelle impostazioni di stampa"
+msgstr ""
-#: core/doctype/doctype/doctype.py:338
+#: frappe/core/doctype/doctype/doctype.py:335
msgid "Not allowed to create custom Virtual DocType."
msgstr ""
-#: www/printview.py:141
+#: frappe/www/printview.py:165
msgid "Not allowed to print cancelled documents"
-msgstr "Non è consentito di stampare documenti annullati"
+msgstr ""
-#: www/printview.py:138
+#: frappe/www/printview.py:162
msgid "Not allowed to print draft documents"
-msgstr "Non è consentito di stampare i documenti in bozza"
+msgstr ""
-#: permissions.py:213
+#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
msgstr ""
-#: public/js/frappe/request.js:145 website/js/website.js:94
+#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
msgid "Not found"
-msgstr "Non trovato"
+msgstr ""
-#: core/doctype/page/page.py:62
+#: frappe/core/doctype/page/page.py:62
msgid "Not in Developer Mode"
-msgstr "Non in modalità sviluppatore"
+msgstr ""
-#: core/doctype/doctype/doctype.py:332
+#: frappe/core/doctype/doctype/doctype.py:330
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
-msgstr "Non in modalità sviluppatore! Configura da site_config.json o crea un DocType 'Custom'."
+msgstr ""
-#: api/v1.py:88 api/v1.py:93
-#: core/doctype/system_settings/system_settings.py:199 handler.py:109
-#: public/js/frappe/request.js:157 public/js/frappe/request.js:167
-#: public/js/frappe/request.js:172
-#: public/js/frappe/views/kanban/kanban_board.bundle.js:68
-#: website/doctype/web_form/web_form.py:616 website/js/website.js:97
+#: frappe/core/doctype/system_settings/system_settings.py:215
+#: frappe/public/js/frappe/request.js:159
+#: frappe/public/js/frappe/request.js:170
+#: frappe/public/js/frappe/request.js:175
+#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
+#: frappe/website/js/website.js:97
msgid "Not permitted"
-msgstr "Non consentito"
+msgstr ""
-#: public/js/frappe/list/list_view.js:45
+#: frappe/public/js/frappe/list/list_view.js:50
msgid "Not permitted to view {0}"
-msgstr "Non è consentito visualizzare {0}"
-
-#. Name of a DocType
-#: automation/doctype/auto_repeat/auto_repeat.py:395
-#: desk/doctype/note/note.json
-msgid "Note"
-msgstr "Nota"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Note"
+#. Name of a DocType
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/note/note.json
msgid "Note"
-msgstr "Nota"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/note_seen_by/note_seen_by.json
+#: frappe/desk/doctype/note_seen_by/note_seen_by.json
msgid "Note Seen By"
-msgstr "Nota vista da"
+msgstr ""
-#: www/confirm_workflow_action.html:8
+#: frappe/www/confirm_workflow_action.html:8
msgid "Note:"
-msgstr "Nota:"
+msgstr ""
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Note: By default emails for failed backups are sent."
-msgstr "Nota: per e-mail predefinite per i backup non riusciti vengono inviati."
-
-#. Description of the 'Send Email for Successful backup' (Check) field in
-#. DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Note: By default emails for failed backups are sent."
-msgstr "Nota: per e-mail predefinite per i backup non riusciti vengono inviati."
-
-#: public/js/frappe/utils/utils.js:775
+#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
-msgstr "Nota: la modifica del nome della pagina interrompe l'URL precedente a questa pagina."
+msgstr ""
-#: core/doctype/user/user.js:25
+#: frappe/core/doctype/user/user.js:35
msgid "Note: Etc timezones have their signs reversed."
msgstr ""
#. Description of the 'sb0' (Section Break) field in DocType 'Website
#. Slideshow'
-#: website/doctype/website_slideshow/website_slideshow.json
-msgctxt "Website Slideshow"
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Note: For best results, images must be of the same size and width must be greater than height."
-msgstr "Nota: per risultati ottimali, le immagini devono avere le stesse dimensioni e la larghezza deve essere maggiore dell'altezza."
+msgstr ""
#. Description of the 'Allow only one session per user' (Check) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Note: Multiple sessions will be allowed in case of mobile device"
-msgstr "Nota: Le sessioni multiple saranno ammesse in caso di dispositivo mobile"
+msgstr ""
-#: website/web_form/request_to_delete_data/request_to_delete_data.js:8
+#: frappe/core/doctype/user/user.js:393
+msgid "Note: This will be shared with user."
+msgstr ""
+
+#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.js:8
msgid "Note: Your request for account deletion will be fulfilled within {0} hours."
msgstr ""
-#: core/doctype/data_export/exporter.py:183
+#: frappe/core/doctype/data_export/exporter.py:183
msgid "Notes:"
-msgstr "Appunti:"
+msgstr ""
-#: public/js/frappe/form/undo_manager.js:43
+#: frappe/public/js/frappe/ui/notifications/notifications.js:492
+msgid "Nothing New"
+msgstr ""
+
+#: frappe/public/js/frappe/form/undo_manager.js:43
msgid "Nothing left to redo"
msgstr ""
-#: public/js/frappe/form/undo_manager.js:33
+#: frappe/public/js/frappe/form/undo_manager.js:33
msgid "Nothing left to undo"
msgstr ""
-#: public/js/frappe/list/base_list.js:359 templates/includes/list/list.html:7
-#: website/doctype/blog_post/templates/blog_post_list.html:41
+#: frappe/public/js/frappe/list/base_list.js:372
+#: frappe/public/js/frappe/views/reports/query_report.js:105
+#: frappe/templates/includes/list/list.html:9
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41
+#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
-msgstr "Niente da mostrare"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:129
+#: frappe/core/doctype/user_permission/user_permission_list.js:129
msgid "Nothing to update"
-msgstr "Nulla da aggiornare"
-
-#. Name of a DocType
-#: core/doctype/communication/mixins.py:142
-#: email/doctype/notification/notification.json
-msgid "Notification"
-msgstr "Notifica"
-
-#. Label of a Section Break field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Notification"
-msgstr "Notifica"
-
-#. Option for the 'Communication Type' (Select) field in DocType
-#. 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Notification"
-msgstr "Notifica"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Notification"
-msgstr "Notifica"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Notification"
-msgstr "Notifica"
+msgstr ""
+#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Notification"
+#. 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 "Notifica"
-
-#. Label of a Section Break field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Notification"
-msgstr "Notifica"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Notification Log"
-msgstr "Registro delle notifiche"
+msgstr ""
#. Name of a DocType
-#: email/doctype/notification_recipient/notification_recipient.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Notification Recipient"
-msgstr "Destinatario della notifica"
-
-#. Name of a DocType
-#: desk/doctype/notification_settings/notification_settings.json
-#: public/js/frappe/ui/notifications/notifications.js:36
-msgid "Notification Settings"
-msgstr "Impostazioni di notifica"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Notification Settings"
+#. Name of a DocType
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:37
msgid "Notification Settings"
-msgstr "Impostazioni di notifica"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/notification_subscribed_document/notification_subscribed_document.json
+#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json
msgid "Notification Subscribed Document"
-msgstr "Documento sottoscritto di notifica"
+msgstr ""
-#: public/js/frappe/ui/notifications/notifications.js:49
-#: public/js/frappe/ui/notifications/notifications.js:180
-msgid "Notifications"
-msgstr "notifiche"
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
+msgid "Notification sent to"
+msgstr ""
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#: frappe/email/doctype/notification/notification.py:500
+msgid "Notification: customer {0} has no Mobile number set"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:486
+msgid "Notification: document {0} has no {1} number set (field: {2})"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:495
+msgid "Notification: user {0} has no Mobile number set"
+msgstr ""
+
+#. Label of the notifications (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+#: frappe/public/js/frappe/ui/notifications/notifications.js:50
+#: frappe/public/js/frappe/ui/notifications/notifications.js:187
msgid "Notifications"
-msgstr "notifiche"
+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'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Notifications and bulk mails will be sent from this outgoing server."
-msgstr "Notifiche e mail di massa verranno inviati da questo server in uscita."
+msgstr ""
-#. Label of a Check field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
+#. Label of the notify_on_every_login (Check) field in DocType 'Note'
+#: frappe/desk/doctype/note/note.json
msgid "Notify Users On Every Login"
-msgstr "Notifica gli utenti ad ogni accesso"
+msgstr ""
-#. Label of a Check field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the notify_by_email (Check) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Notify by Email"
-msgstr "Notifica via e-mail"
+msgstr ""
-#. Label of a Check field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
+#. Label of the notify_by_email (Check) field in DocType 'DocShare'
+#: frappe/core/doctype/docshare/docshare.json
msgid "Notify by email"
-msgstr "Notifica via email"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the notify_if_unreplied (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Notify if unreplied"
-msgstr "Notifica se non risponde"
+msgstr ""
-#. Label of a Int field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the unreplied_for_mins (Int) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Notify if unreplied for (in mins)"
-msgstr "Notifica se non risponde per (in minuti)"
+msgstr ""
-#. Label of a Check field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
+#. Label of the notify_on_login (Check) field in DocType 'Note'
+#: frappe/desk/doctype/note/note.json
msgid "Notify users with a popup when they log in"
-msgstr "Notifica gli utenti con un avviso quando si connettono"
+msgstr ""
-#: public/js/frappe/form/controls/datetime.js:25
-#: public/js/frappe/form/controls/time.js:37
+#: frappe/public/js/frappe/form/controls/datetime.js:25
+#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
-msgstr "Adesso"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Phone'
-#: contacts/doctype/contact_phone/contact_phone.json
-msgctxt "Contact Phone"
+#. Label of the phone (Data) field in DocType 'Contact Phone'
+#: frappe/contacts/doctype/contact_phone/contact_phone.json
msgid "Number"
-msgstr "Numero"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/number_card/number_card.json
-#: public/js/frappe/widgets/widget_dialog.js:591
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:628
msgid "Number Card"
-msgstr "Numero di carta"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/number_card_link/number_card_link.json
+#: frappe/desk/doctype/number_card_link/number_card_link.json
msgid "Number Card Link"
-msgstr "Link scheda numero"
+msgstr ""
-#. Label of a Link field in DocType 'Workspace Number Card'
-#: desk/doctype/workspace_number_card/workspace_number_card.json
-msgctxt "Workspace Number Card"
+#. Label of the number_card_name (Link) field in DocType 'Workspace Number
+#. Card'
+#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json
msgid "Number Card Name"
msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:621
+#. Label of the number_cards_tab (Tab Break) field in DocType 'Workspace'
+#. Label of the number_cards (Table) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:658
msgid "Number Cards"
-msgstr "Numero di carte"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Workspace'
-#. Label of a Table field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Number Cards"
-msgstr "Numero di carte"
-
-#. Label of a Select field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the number_format (Select) field in DocType 'Language'
+#. Label of the number_format (Select) field in DocType 'System Settings'
+#. Label of the number_format (Select) field in DocType 'Currency'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/geo/doctype/currency/currency.json
msgid "Number Format"
-msgstr "Formato numero"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Number Format"
-msgstr "Formato numero"
-
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the backup_limit (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Number of Backups"
-msgstr "Numero di backup"
+msgstr ""
-#. Label of a Int field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Number of DB Backups"
-msgstr "Numero di backup del database"
-
-#: integrations/doctype/dropbox_settings/dropbox_settings.py:53
-msgid "Number of DB backups cannot be less than 1"
-msgstr "Il numero di backup DB non può essere inferiore a 1"
-
-#. Label of a Int field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Number of Groups"
-msgstr "Numero di gruppi"
+msgstr ""
-#. Label of a Int field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#. Label of the number_of_queries (Int) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
msgid "Number of Queries"
msgstr ""
-#: core/doctype/doctype/doctype.py:444 public/js/frappe/doctype/index.js:59
+#: frappe/core/doctype/doctype/doctype.py:442
+#: frappe/public/js/frappe/doctype/index.js:59
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: core/doctype/system_settings/system_settings.py:152
+#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
msgstr ""
#. Description of the 'Columns' (Int) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Number of columns for a field in a Grid (Total Columns in a grid should be less than 11)"
-msgstr "Numero di colonne per un campo in una griglia (Totale Colonne in una griglia deve essere inferiore a 11)"
-
-#. Description of the 'Columns' (Int) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)"
-msgstr "Numero di colonne per un campo in un elenco Visualizza o una griglia (Totale Colonne deve essere inferiore a 11)"
+msgstr ""
#. Description of the 'Columns' (Int) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Description of the 'Columns' (Int) field in DocType 'Custom Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)"
-msgstr "Numero di colonne per un campo in un elenco Visualizza o una griglia (Totale Colonne deve essere inferiore a 11)"
+msgstr ""
#. Description of the 'Document Share Key Expiry (in Days)' (Int) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Number of days after which the document Web View link shared on email will be expired"
msgstr ""
+#. Label of the cache_keys (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Number of keys"
+msgstr ""
+
+#. Label of the onsite_backups (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Number of onsite backups"
+msgstr ""
+
#. Option for the 'Method' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "OAuth"
msgstr ""
#. Name of a DocType
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "OAuth Authorization Code"
-msgstr "Codice di autorizzazione OAuth"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
msgid "OAuth Bearer Token"
-msgstr "OAuth portatore Token"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/oauth_client/oauth_client.json
-msgid "OAuth Client"
-msgstr "OAuth client"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "OAuth Client"
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "OAuth Client"
-msgstr "OAuth client"
+msgstr ""
-#. Label of a Section Break field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
+#. Label of the sb_00 (Section Break) field in DocType 'Google Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "OAuth Client ID"
-msgstr "ID client OAuth"
+msgstr ""
-#: email/oauth.py:31
+#. Name of a DocType
+#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
+msgid "OAuth Client Role"
+msgstr ""
+
+#: frappe/email/oauth.py:30
msgid "OAuth Error"
msgstr ""
#. Name of a DocType
-#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
-msgid "OAuth Provider Settings"
-msgstr "Impostazioni OAuth Provider"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "OAuth Provider Settings"
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "OAuth Provider Settings"
-msgstr "Impostazioni OAuth Provider"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/oauth_scope/oauth_scope.json
+#: frappe/integrations/doctype/oauth_scope/oauth_scope.json
msgid "OAuth Scope"
msgstr ""
-#: email/doctype/email_account/email_account.js:187
+#: frappe/email/doctype/email_account/email_account.js:250
msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same."
msgstr ""
-#: templates/includes/oauth_confirmation.html:39
-msgid "OK"
+#. Option for the 'Method' (Select) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "OPTIONS"
msgstr ""
-#. Option for the 'Method' (Select) field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "OPTIONS"
+#: frappe/public/js/form_builder/components/Tabs.vue:190
+msgid "OR"
msgstr ""
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "OTP App"
-msgstr "App. OTP"
+msgstr ""
-#. Label of a Data field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the otp_issuer_name (Data) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "OTP Issuer Name"
-msgstr "Nome emittente OTP"
+msgstr ""
-#: twofactor.py:468
+#: frappe/twofactor.py:445
msgid "OTP Secret Reset - {0}"
msgstr ""
-#: twofactor.py:487
+#: frappe/twofactor.py:464
msgid "OTP Secret has been reset. Re-registration will be required on next login."
-msgstr "Il segreto di OTP è stato ripristinato. La nuova registrazione sarà richiesta al login successivo."
+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'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Off"
-msgstr "via"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Office"
-msgstr "Ufficio"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Office 365"
-msgstr "Office 365"
+msgstr ""
-#. Label of a Int field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/core/doctype/server_script/server_script.js:36
+msgid "Official Documentation"
+msgstr ""
+
+#. Label of the offset_x (Int) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Offset X"
msgstr ""
-#. Label of a Int field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the offset_y (Int) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Offset Y"
msgstr ""
-#: www/update-password.html:15
+#: frappe/www/update-password.html:38
msgid "Old Password"
-msgstr "Vecchia Password"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.py:362
+#: frappe/custom/doctype/custom_field/custom_field.py:412
msgid "Old and new fieldnames are same."
msgstr ""
#. Description of the 'Number of Backups' (Int) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Older backups will be automatically deleted"
-msgstr "I backup più vecchi verranno eliminati automaticamente"
+msgstr ""
+
+#. Label of the oldest_unscheduled_job (Link) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Oldest Unscheduled Job"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "On Hold"
msgstr ""
#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "On Payment Authorization"
msgstr ""
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "On Payment Charge Processed"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "On Payment Failed"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "On Payment Mandate Acquisition Processed"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "On Payment Mandate Charge Processed"
+msgstr ""
+
+#. Option for the 'DocType Event' (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "On Payment Paid"
+msgstr ""
+
#. Description of the 'Is Dynamic URL?' (Check) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "On checking this option, URL will be treated like a jinja template string"
msgstr ""
-#. Label of a Check field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#: frappe/public/js/frappe/ui/filters/filter.js:66
+#: frappe/public/js/frappe/ui/filters/filter.js:72
+msgid "On or After"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:65
+#: frappe/public/js/frappe/ui/filters/filter.js:71
+msgid "On or Before"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:960
+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 ""
-#. Name of a DocType
-#: desk/doctype/onboarding_permission/onboarding_permission.json
-msgid "Onboarding Permission"
-msgstr "Autorizzazione per l'onboarding"
+#: frappe/public/js/frappe/widgets/widget_dialog.js:232
+msgid "Onboarding Name"
+msgstr ""
-#. Label of a Small Text field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. 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
-#: desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Onboarding Step"
-msgstr "Fase di onboarding"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Onboarding Step"
-msgstr "Fase di onboarding"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/onboarding_step_map/onboarding_step_map.json
+#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json
msgid "Onboarding Step Map"
-msgstr "Mappa delle fasi di onboarding"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:269
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:264
msgid "Onboarding complete"
msgstr ""
-#: core/doctype/doctype/doctype_list.js:28
-msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
-msgstr "Una volta inviati, i documenti inviati non possono essere modificati. Possono solo essere annullati e modificati."
-
#. Description of the 'Is Submittable' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:42
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
-msgstr "Una volta inviati, i documenti inviati non possono essere modificati. Possono solo essere annullati e modificati."
-
-#: www/complete_signup.html:7
-msgid "One Last Step"
-msgstr "Un ultimo passaggio"
-
-#: twofactor.py:283
-msgid "One Time Password (OTP) Registration Code from {}"
-msgstr "Codice di registrazione di una password (OTP) da {}"
-
-#: core/doctype/data_export/exporter.py:331
-msgid "One of"
-msgstr "Uno di"
-
-#: public/js/frappe/views/workspace/workspace.js:1312
-msgid "One of the child page with name {0} already exist in {1} Section. Please update the name of the child page first before moving"
msgstr ""
-#: client.py:213
+#: frappe/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 "Solo 200 inserimenti ammessi in una sola richiesta"
+msgstr ""
-#: email/doctype/email_queue/email_queue.py:80
+#: frappe/email/doctype/email_queue/email_queue.py:87
msgid "Only Administrator can delete Email Queue"
-msgstr "Solo l'amministratore può cancellare la coda email"
+msgstr ""
-#: core/doctype/page/page.py:66
+#: frappe/core/doctype/page/page.py:66
msgid "Only Administrator can edit"
-msgstr "Solo l'amministratore può modificare"
+msgstr ""
-#: core/doctype/report/report.py:71
+#: frappe/core/doctype/report/report.py:75
msgid "Only Administrator can save a standard report. Please rename and save."
-msgstr "Solo l'amministratore può salvare un report standard. Si prega di rinominarlo e dopo salvare."
+msgstr ""
-#: recorder.py:234
+#: frappe/recorder.py:316
msgid "Only Administrator is allowed to use Recorder"
-msgstr "Solo l'amministratore è autorizzato a utilizzare il registratore"
+msgstr ""
-#. Label of a Link field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#. Label of the allow_edit (Link) field in DocType 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Only Allow Edit For"
-msgstr "Consenti modifica solo per"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1561
+#: frappe/core/doctype/doctype/doctype.py:1620
msgid "Only Options allowed for Data field are:"
-msgstr "Solo le opzioni consentite per il campo Dati sono:"
+msgstr ""
-#. Label of a Int field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the 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 "Invia solo i record aggiornati nelle ultime ore X"
+msgstr ""
-#: desk/doctype/workspace/workspace.js:36
+#: frappe/desk/doctype/workspace/workspace.js:32
msgid "Only Workspace Manager can edit public workspaces"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:536
-msgid "Only Workspace Manager can sort or edit this page"
-msgstr ""
-
-#: modules/utils.py:66
+#: frappe/modules/utils.py:65
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Only change this if you want to use other S3 compatible object storage backends."
+#: frappe/model/document.py:1231
+msgid "Only draft documents can be discarded"
msgstr ""
-#. Label of a Link field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
+#. Label of the only_for (Link) field in DocType 'Workspace Link'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
msgstr ""
-#: core/doctype/data_export/exporter.py:194
+#: frappe/core/doctype/data_export/exporter.py:192
msgid "Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish."
-msgstr "Solo campi obbligatori sono necessari per i nuovi record. È possibile eliminare le colonne non obbligatori, se lo si desidera."
+msgstr ""
-#: contacts/doctype/contact/contact.py:129
-#: contacts/doctype/contact/contact.py:153
+#: frappe/contacts/doctype/contact/contact.py:131
+#: frappe/contacts/doctype/contact/contact.py:158
msgid "Only one {0} can be set as primary."
-msgstr "È possibile impostare solo uno {0} come primario."
+msgstr ""
-#: desk/reportview.py:319
+#: frappe/desk/reportview.py:357
msgid "Only reports of type Report Builder can be deleted"
msgstr ""
-#: desk/reportview.py:290
+#: frappe/desk/reportview.py:328
msgid "Only reports of type Report Builder can be edited"
msgstr ""
-#: custom/doctype/customize_form/customize_form.py:124
+#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
-msgstr "Solo i DocTypes standard possono essere personalizzati dal modulo personalizzato."
+msgstr ""
-#: desk/form/assign_to.py:181
+#: frappe/model/delete_doc.py:240
+msgid "Only the Administrator can delete a standard DocType."
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:198
msgid "Only the assignee can complete this to-do."
msgstr ""
-#: public/js/frappe/form/sidebar/review.js:54
-msgid "Only users involved in the document are listed"
-msgstr "Sono elencati solo gli utenti coinvolti nel documento"
-
-#: email/doctype/auto_email_report/auto_email_report.py:100
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:106
msgid "Only {0} emailed reports are allowed per user."
msgstr ""
-#: core/doctype/deleted_document/deleted_document.js:7
-msgid "Open"
-msgstr "Aperto"
-
-#: desk/doctype/todo/todo_list.js:20
-msgctxt "Access"
-msgid "Open"
-msgstr "Aperto"
-
-#. Option for the 'Status' (Select) field in DocType 'Communication'
-#. Option for the 'Email Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Open"
-msgstr "Aperto"
+#: frappe/templates/includes/login/login.js:291
+msgid "Oops! Something went wrong."
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Open"
-msgstr "Aperto"
-
+#. 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'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Open"
-msgstr "Aperto"
-
#. Option for the 'Status' (Select) field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Open"
-msgstr "Aperto"
-
#. Option for the 'Status' (Select) field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "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 "Aperto"
+msgstr ""
-#: public/js/frappe/ui/keyboard.js:202
+#: 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 "Apri Awesomebar"
+msgstr ""
-#: templates/emails/new_notification.html:10
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:75
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:96
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:97
+msgid "Open Communication"
+msgstr ""
+
+#: frappe/templates/emails/new_notification.html:10
msgid "Open Document"
-msgstr "Apri documento"
+msgstr ""
-#. Label of a Table MultiSelect field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
+#. Label of the subscribed_documents (Table MultiSelect) field in DocType
+#. 'Notification Settings'
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Open Documents"
-msgstr "Apri documenti"
+msgstr ""
-#: public/js/frappe/ui/keyboard.js:237
+#: frappe/public/js/frappe/ui/keyboard.js:243
msgid "Open Help"
-msgstr "Apri la Guida"
+msgstr ""
-#. Label of a Button field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#. Label of the open_reference_document (Button) field in DocType 'Notification
+#. Log'
+#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Open Reference Document"
-msgstr "Apri documento di riferimento"
+msgstr ""
-#: public/js/frappe/ui/keyboard.js:220
+#: frappe/public/js/frappe/ui/keyboard.js:226
msgid "Open Settings"
-msgstr "Apri Impostazioni"
+msgstr ""
-#. Label of a Check field in DocType 'Top Bar Item'
-#: website/doctype/top_bar_item/top_bar_item.json
-msgctxt "Top Bar Item"
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
+msgid "Open Source Applications for the Web"
+msgstr ""
+
+#. Label of the open_in_new_tab (Check) field in DocType 'Top Bar Item'
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Open URL in a New Tab"
-msgstr "Apri URL in una nuova scheda"
+msgstr ""
#. Description of the 'Quick Entry' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Open a dialog with mandatory fields to create a new record quickly"
-msgstr "Apri una finestra di dialogo con campi obbligatori per creare rapidamente un nuovo record"
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog."
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:176
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:176
msgid "Open a module or tool"
-msgstr "Aprire un modulo o strumento"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1187
+#: frappe/public/js/frappe/ui/keyboard.js:366
+msgid "Open console"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/Preview.vue:17
+msgid "Open in a new tab"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:1290
msgctxt "Description of a list view shortcut"
msgid "Open list item"
-msgstr "Apri la lista"
+msgstr ""
-#: www/qrcode.html:13
+#: frappe/core/doctype/error_log/error_log.js:15
+msgid "Open reference document"
+msgstr ""
+
+#: frappe/www/qrcode.html:13
msgid "Open your authentication app on your mobile phone."
-msgstr "Apri l'applicazione di autenticazione sul tuo cellulare."
+msgstr ""
-#: desk/doctype/todo/todo_list.js:23
-#: public/js/frappe/ui/toolbar/search_utils.js:261
-#: public/js/frappe/ui/toolbar/search_utils.js:262
-#: public/js/frappe/ui/toolbar/search_utils.js:273
-#: public/js/frappe/ui/toolbar/search_utils.js:283
-#: public/js/frappe/ui/toolbar/search_utils.js:292
-#: public/js/frappe/ui/toolbar/search_utils.js:310
-#: public/js/frappe/ui/toolbar/search_utils.js:311
-#: social/doctype/energy_point_log/energy_point_log_list.js:23
+#: frappe/desk/doctype/todo/todo_list.js:17
+#: frappe/public/js/frappe/form/templates/form_links.html:18
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327
msgid "Open {0}"
-msgstr "Apri {0}"
+msgstr ""
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the openid_configuration (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "OpenID Configuration"
msgstr ""
#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "OpenLDAP"
msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Opened"
-msgstr "Aperto"
+msgstr ""
-#. Label of a Select field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. Label of the operation (Select) field in DocType 'Activity Log'
+#: frappe/core/doctype/activity_log/activity_log.json
msgid "Operation"
-msgstr "Operazione"
+msgstr ""
-#: utils/data.py:2063
+#: frappe/utils/data.py:2117
msgid "Operator must be one of {0}"
-msgstr "L'operatore deve essere uno dei {0}"
+msgstr ""
-#: core/doctype/file/file.js:24
+#: frappe/core/doctype/file/file.js:34
+#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:8
+#: frappe/public/js/frappe/file_uploader/FilePreview.vue:28
msgid "Optimize"
msgstr ""
-#: core/doctype/file/file.js:89
+#: frappe/core/doctype/file/file.js:105
msgid "Optimizing image..."
msgstr ""
-#: custom/doctype/custom_field/custom_field.js:100
+#: frappe/custom/doctype/custom_field/custom_field.js:100
msgid "Option 1"
-msgstr "Opzione 1"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:102
+#: frappe/custom/doctype/custom_field/custom_field.js:102
msgid "Option 2"
-msgstr "Opzione 2"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:104
+#: frappe/custom/doctype/custom_field/custom_field.js:104
msgid "Option 3"
-msgstr "Opzione 3"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1579
+#: frappe/core/doctype/doctype/doctype.py:1638
msgid "Option {0} for field {1} is not a child table"
-msgstr "L'opzione {0} per il campo {1} non è una tabella figlia"
+msgstr ""
#. Description of the 'CC' (Code) field in DocType 'Notification Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Optional: Always send to these ids. Each Email Address on a new row"
-msgstr "Opzionale: Invia sempre a questi ID. Ogni indirizzo email su una nuova riga"
+msgstr ""
#. Description of the 'Condition' (Code) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Optional: The alert will be sent if this expression is true"
-msgstr "Facoltativo: L'avviso sarà inviato se questa espressione è vera"
+msgstr ""
-#. Label of a Small Text field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the options (Small Text) field in DocType 'DocField'
+#. Label of the options (Data) field in DocType 'Report Column'
+#. Label of the options (Small Text) field in DocType 'Report Filter'
+#. Label of the options (Small Text) field in DocType 'Custom Field'
+#. Label of the options (Small Text) field in DocType 'Customize Form Field'
+#. Label of the options (Text) field in DocType 'Web Form Field'
+#. Label of the options (Small Text) field in DocType 'Web Template Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/templates/form_grid/fields.html:43
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
-msgstr "Opzioni"
+msgstr ""
-#. Label of a Small Text field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Options"
-msgstr "Opzioni"
-
-#. Label of a Small Text field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Options"
-msgstr "Opzioni"
-
-#. Label of a Data field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Options"
-msgstr "Opzioni"
-
-#. Label of a Small Text field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Options"
-msgstr "Opzioni"
-
-#. Label of a Text field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Options"
-msgstr "Opzioni"
-
-#. Label of a Small Text field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
-msgid "Options"
-msgstr "Opzioni"
-
-#: core/doctype/doctype/doctype.py:1317
+#: frappe/core/doctype/doctype/doctype.py:1366
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
-msgstr "Opzioni 'Dynamic Link' il tipo di campo deve puntare ad un altro campo Link con opzioni come 'DocType'"
+msgstr ""
-#. Label of a HTML field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the options_help (HTML) field in DocType 'Custom Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Options Help"
-msgstr "Opzioni Aiuto"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1601
+#: frappe/core/doctype/doctype/doctype.py:1660
msgid "Options for Rating field can range from 3 to 10"
msgstr ""
-#: custom/doctype/custom_field/custom_field.js:96
+#: frappe/custom/doctype/custom_field/custom_field.js:96
msgid "Options for select. Each option on a new line."
-msgstr "Opzioni per selezionare. Ogni opzione su una nuova linea."
+msgstr ""
-#: core/doctype/doctype/doctype.py:1334
+#: frappe/core/doctype/doctype/doctype.py:1383
msgid "Options for {0} must be set before setting the default value."
-msgstr "Le opzioni per {0} devono essere impostate prima di impostare il valore predefinito."
+msgstr ""
-#: public/js/form_builder/store.js:177
+#: frappe/public/js/form_builder/store.js:182
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: model/base_document.py:767
+#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
-msgstr "Le opzioni non impostate per il campo link {0}"
+msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Orange"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Orange"
msgstr ""
-#. Label of a Code field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#. Label of the order (Code) field in DocType 'Kanban Board Column'
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Order"
-msgstr "Ordine"
+msgstr ""
-#. Label of a Section Break field in DocType 'About Us Settings'
-#. Label of a Table field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
+#. Label of the company_history (Table) field in DocType 'About Us Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Org History"
-msgstr "org Storia"
+msgstr ""
-#. Label of a Data field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#. Label of the company_history_heading (Data) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Org History Heading"
-msgstr "Org Storia Rubrica"
+msgstr ""
-#: public/js/frappe/form/print_utils.js:26
+#: frappe/public/js/frappe/form/print_utils.js:28
msgid "Orientation"
-msgstr "Orientamento"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:13
+#: frappe/core/doctype/version/version_view.html:75
+msgid "Original Value"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Other"
-msgstr "Altro"
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Other"
-msgstr "Altro"
-
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Other"
-msgstr "Altro"
-
#. Option for the 'Event Category' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/contacts/doctype/address/address.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/page/setup_wizard/install_fixtures.py:30
msgid "Other"
-msgstr "Altro"
+msgstr ""
-#. Label of a Section Break field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Outgoing"
+msgstr ""
+
+#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Outgoing (SMTP) Settings"
msgstr ""
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the outgoing_emails_column (Column Break) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Outgoing Emails (Last 7 days)"
+msgstr ""
+
+#. Label of the smtp_server (Data) field in DocType 'Email Account'
+#. Label of the smtp_server (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Outgoing Server"
msgstr ""
-#. Label of a Data field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Outgoing Server"
-msgstr ""
-
-#. Label of a Section Break field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email
+#. Domain'
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Outgoing Settings"
msgstr ""
-#: email/doctype/email_domain/email_domain.py:33
+#: frappe/email/doctype/email_domain/email_domain.py:33
msgid "Outgoing email account not correct"
-msgstr "Account di posta in uscita non corretto"
+msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Outlook.com"
-msgstr "Outlook.com"
+msgstr ""
-#. Label of a Code field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
+#. Label of the output (Code) field in DocType 'Permission Inspector'
+#. Label of the output (Code) field in DocType 'System Console'
+#. Label of the output (Code) field in DocType 'Integration Request'
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/desk/doctype/system_console/system_console.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Output"
-msgstr "Produzione"
+msgstr ""
-#. Label of a Code field in DocType 'Permission Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
-msgid "Output"
-msgstr "Produzione"
+#: frappe/public/js/frappe/form/templates/form_dashboard.html:5
+msgid "Overview"
+msgstr ""
-#. Label of a Code field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
-msgid "Output"
-msgstr "Produzione"
-
-#: core/report/transaction_log_report/transaction_log_report.py:100
-#: social/doctype/energy_point_rule/energy_point_rule.js:42
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:100
msgid "Owner"
-msgstr "Proprietario"
+msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#: frappe/core/doctype/recorder/recorder.json
msgid "PATCH"
msgstr ""
-#: printing/page/print/print.js:71
-#: public/js/frappe/views/reports/query_report.js:1637
+#: frappe/printing/page/print/print.js:71
+#: frappe/public/js/frappe/form/templates/print_layout.html:44
+#: frappe/public/js/frappe/views/reports/query_report.js:1744
msgid "PDF"
-msgstr "PDF"
+msgstr ""
-#. Label of a Float field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
+msgid "PDF Generation in Progress"
+msgstr ""
+
+#. Label of the pdf_generator (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "PDF Generator"
+msgstr ""
+
+#. Label of the pdf_page_height (Float) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Height (in mm)"
msgstr ""
-#. Label of a Select field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the pdf_page_size (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Size"
-msgstr "Formato pagina PDF"
+msgstr ""
-#. Label of a Float field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the pdf_page_width (Float) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Width (in mm)"
msgstr ""
-#. Label of a Section Break field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the pdf_settings (Section Break) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Settings"
-msgstr "Impostazioni PDF"
+msgstr ""
-#: utils/print_format.py:177
+#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
-msgstr "Generazione di PDF fallita"
+msgstr ""
-#: utils/pdf.py:95
+#: frappe/utils/pdf.py:106
msgid "PDF generation failed because of broken image links"
-msgstr "Generazione PDF riuscita a causa di collegamenti di immagine rotti"
+msgstr ""
-#: printing/page/print/print.js:524
+#: frappe/printing/page/print/print.js:616
+msgid "PDF generation may not work as expected."
+msgstr ""
+
+#: frappe/printing/page/print/print.js:534
msgid "PDF printing via \"Raw Print\" is not supported."
msgstr ""
-#. Label of a Data field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the pid (Data) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "PID"
msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "POST"
-msgstr ""
-
#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "POST"
msgstr ""
#. Option for the 'Method' (Select) field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "PUT"
-msgstr ""
-
#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "PUT"
msgstr ""
+#. Label of the package (Link) field in DocType 'Module Def'
#. Name of a DocType
-#: core/doctype/package/package.json
-msgid "Package"
-msgstr ""
-
-#. Label of a Link field in DocType 'Module Def'
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Package"
-msgstr ""
-
+#. Label of the package (Link) field in DocType 'Package Release'
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Package"
-msgid "Package"
-msgstr ""
-
-#. Label of a Link field in DocType 'Package Release'
-#: core/doctype/package_release/package_release.json
-msgctxt "Package Release"
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/package/package.json
+#: frappe/core/doctype/package_release/package_release.json
+#: frappe/core/workspace/build/build.json frappe/www/attribution.html:34
msgid "Package"
msgstr ""
#. Name of a DocType
-#: core/doctype/package_import/package_import.json
-msgid "Package Import"
-msgstr ""
-
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Package Import"
+#: frappe/core/doctype/package_import/package_import.json
+#: frappe/core/workspace/build/build.json
msgid "Package Import"
msgstr ""
-#. Label of a Data field in DocType 'Package'
-#: core/doctype/package/package.json
-msgctxt "Package"
+#. Label of the package_name (Data) field in DocType 'Package'
+#: frappe/core/doctype/package/package.json
msgid "Package Name"
msgstr ""
#. Name of a DocType
-#: core/doctype/package_release/package_release.json
-msgid "Package Release"
-msgstr ""
-
-#. Linked DocType in Package's connections
-#: core/doctype/package/package.json
-msgctxt "Package"
+#: frappe/core/doctype/package_release/package_release.json
msgid "Package Release"
msgstr ""
#. Label of a Card Break in the Build Workspace
-#: core/workspace/build/build.json
+#: frappe/core/workspace/build/build.json
msgid "Packages"
msgstr ""
+#. Description of a Card Break in the Build Workspace
+#: frappe/core/workspace/build/build.json
+msgid "Packages are lightweight apps (collection of Module Defs) that can be created, imported, or released right from the UI"
+msgstr ""
+
+#. Label of the page (Link) field in DocType 'Custom Role'
#. Name of a DocType
-#: core/doctype/page/page.json
-msgid "Page"
-msgstr "Pagina"
-
-#. Label of a Link field in DocType 'Custom Role'
-#: core/doctype/custom_role/custom_role.json
-msgctxt "Custom Role"
-msgid "Page"
-msgstr "Pagina"
-
-#. Option for the 'View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Page"
-msgstr "Pagina"
-
#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for
#. Page and Report'
-#. Label of a Link field in DocType 'Role Permission for Page and Report'
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgctxt "Role Permission for Page and Report"
-msgid "Page"
-msgstr "Pagina"
-
+#. Label of the page (Link) field in DocType 'Role Permission for Page and
+#. Report'
+#. Label of a Link in the Build Workspace
+#. Option for the 'View' (Select) field in DocType 'Form Tour'
+#. Option for the 'Link Type' (Select) field in DocType 'Workspace'
#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
-msgid "Page"
-msgstr "Pagina"
-
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/core/doctype/custom_role/custom_role.json
+#: frappe/core/doctype/page/page.json
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Page"
-msgstr "Pagina"
+msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:63
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Page Break"
msgstr ""
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/website/doctype/web_page/web_page.js:92
+#: frappe/website/doctype/web_page/web_page.json
msgid "Page Builder"
-msgstr "Page Builder"
+msgstr ""
-#. Label of a Table field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the page_blocks (Table) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Page Building Blocks"
-msgstr "Blocchi di costruzione della pagina"
+msgstr ""
-#. Label of a Section Break field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
+#. Label of the page_html (Section Break) field in DocType 'Page'
+#: frappe/core/doctype/page/page.json
msgid "Page HTML"
-msgstr "Pagina HTML"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:64
+#: frappe/public/js/frappe/list/bulk_operations.js:73
msgid "Page Height (in mm)"
msgstr ""
-#. Label of a Data field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Page Name"
-msgstr "Nome Pagina"
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:5
+msgid "Page Margins"
+msgstr ""
-#. Label of a Select field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the page_name (Data) field in DocType 'Page'
+#: frappe/core/doctype/page/page.json
+msgid "Page Name"
+msgstr ""
+
+#. Label of the page_number (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:63
msgid "Page Number"
msgstr ""
-#. Label of a Small Text field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the page_route (Small Text) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Page Route"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:1499
-msgid "Page Saved Successfully"
+#. Label of the view_link_in_email (Section Break) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Page Settings"
msgstr ""
-#. Label of a Section Break field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Page Settings"
-msgstr "Impostazioni pagina"
-
-#: public/js/frappe/ui/keyboard.js:121
+#: frappe/public/js/frappe/ui/keyboard.js:125
msgid "Page Shortcuts"
-msgstr "Scorciatoie di pagina"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:57
+#: frappe/public/js/frappe/list/bulk_operations.js:66
msgid "Page Size"
msgstr ""
-#. Label of a Data field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#. Label of the page_title (Data) field in DocType 'About Us Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Page Title"
msgstr ""
-#: public/js/frappe/list/bulk_operations.js:71
+#: frappe/public/js/frappe/list/bulk_operations.js:80
msgid "Page Width (in mm)"
msgstr ""
-#: www/qrcode.py:35
+#: frappe/www/qrcode.py:35
msgid "Page has expired!"
-msgstr "La pagina è scaduta!"
+msgstr ""
-#: printing/doctype/print_settings/print_settings.py:71
-#: public/js/frappe/list/bulk_operations.js:90
+#: frappe/printing/doctype/print_settings/print_settings.py:70
+#: frappe/public/js/frappe/list/bulk_operations.js:106
msgid "Page height and width cannot be zero"
msgstr ""
-#: public/js/frappe/views/container.js:52
+#: frappe/public/js/frappe/views/container.js:52 frappe/www/404.html:23
msgid "Page not found"
-msgstr "Pagina non trovata"
-
-#: public/js/frappe/views/workspace/workspace.js:1299
-msgid "Page with title {0} already exist."
msgstr ""
-#: public/js/frappe/web_form/web_form.js:264
-#: templates/print_formats/standard.html:34
+#. 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:264
+#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
-msgstr "Pagina {0} di {1}"
+msgstr ""
-#. Label of a Data field in DocType 'SMS Parameter'
-#: core/doctype/sms_parameter/sms_parameter.json
-msgctxt "SMS Parameter"
+#. Label of the parameter (Data) field in DocType 'SMS Parameter'
+#: frappe/core/doctype/sms_parameter/sms_parameter.json
msgid "Parameter"
-msgstr "Parametro"
+msgstr ""
-#: public/js/frappe/model/model.js:132
-#: public/js/frappe/views/workspace/workspace.js:606
-#: public/js/frappe/views/workspace/workspace.js:934
-#: public/js/frappe/views/workspace/workspace.js:1181
+#: frappe/public/js/frappe/model/model.js:142
+#: frappe/public/js/frappe/views/workspace/workspace.js:434
msgid "Parent"
-msgstr "Genitore"
+msgstr ""
-#. Label of a Link field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
+#. Label of the parent_doctype (Link) field in DocType 'DocType Link'
+#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Parent DocType"
msgstr ""
-#. Label of a Link field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the parent_document_type (Link) field in DocType 'Dashboard Chart'
+#. Label of the parent_document_type (Link) field in DocType 'Number Card'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Parent Document Type"
msgstr ""
-#. Label of a Link field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Parent Document Type"
-msgstr ""
-
-#: desk/doctype/number_card/number_card.py:61
+#: frappe/desk/doctype/number_card/number_card.py:65
msgid "Parent Document Type is required to create a number card"
msgstr ""
-#. Label of a Data field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the parent_element_selector (Data) field in DocType 'Form Tour
+#. Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Parent Element Selector"
msgstr ""
-#. Label of a Select field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the parent_fieldname (Select) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Parent Field"
msgstr ""
-#: core/doctype/doctype/doctype.py:915
+#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype.py:933
msgid "Parent Field (Tree)"
-msgstr "Campo principale (albero)"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Parent Field (Tree)"
-msgstr "Campo principale (albero)"
-
-#: core/doctype/doctype/doctype.py:921
+#: frappe/core/doctype/doctype/doctype.py:939
msgid "Parent Field must be a valid fieldname"
-msgstr "Il campo padre deve essere un nome campo valido"
+msgstr ""
-#. Label of a Select field in DocType 'Top Bar Item'
-#: website/doctype/top_bar_item/top_bar_item.json
-msgctxt "Top Bar Item"
+#. Label of the parent_label (Select) field in DocType 'Top Bar Item'
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Parent Label"
-msgstr "Etichetta Padre"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1148
+#: frappe/core/doctype/doctype/doctype.py:1197
msgid "Parent Missing"
msgstr ""
-#. Label of a Data field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the parent_page (Link) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Parent Page"
msgstr ""
-#: core/doctype/data_export/exporter.py:24
+#: frappe/core/doctype/data_export/exporter.py:24
msgid "Parent Table"
-msgstr "Tabella padre"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.py:404
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:404
msgid "Parent document type is required to create a dashboard chart"
msgstr ""
-#: core/doctype/data_export/exporter.py:255
+#: frappe/core/doctype/data_export/exporter.py:253
msgid "Parent is the name of the document to which the data will get added to."
-msgstr "Padre è il nome del documento a cui verranno aggiunti i dati."
+msgstr ""
-#: permissions.py:806
+#: frappe/public/js/frappe/ui/group_by/group_by.js:251
+msgid "Parent-to-child or child-to-parent grouping is not allowed."
+msgstr ""
+
+#: frappe/permissions.py:807
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
-#: client.py:476
+#: frappe/client.py:467
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
msgstr ""
-#. Label of a Check field in DocType 'Personal Data Deletion Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
+#. Label of the partial (Check) field in DocType 'Personal Data Deletion Step'
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Partial"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/core/doctype/data_import/data_import.json
msgid "Partial Success"
-msgstr "Successo parziale"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Partially Sent"
msgstr ""
-#: desk/doctype/event/event.js:30
+#. Label of the participants (Section Break) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json
msgid "Participants"
-msgstr "Partecipanti"
+msgstr ""
-#. Label of a Section Break field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Participants"
-msgstr "Partecipanti"
+#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Pass"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#: frappe/contacts/doctype/contact/contact.json
msgid "Passive"
-msgstr "Passivo"
-
-#: core/doctype/user/user.js:154 core/doctype/user/user.js:201
-#: core/doctype/user/user.js:221 desk/page/setup_wizard/setup_wizard.js:474
-#: www/login.html:21
-msgid "Password"
-msgstr "Password"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Password"
-msgstr "Password"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Password"
-msgstr "Password"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Password"
-msgstr "Password"
-
-#. Label of a Password field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Password"
-msgstr "Password"
-
-#. Label of a Section Break field in DocType 'System Settings'
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Password"
-msgstr "Password"
-
+#. Label of the password_settings (Section Break) field in DocType 'System
+#. Settings'
+#. Label of the password_tab (Tab Break) field in DocType 'System Settings'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the password (Password) field in DocType 'Email Account'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219
+#: frappe/core/doctype/user/user.js:239
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:493
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/www/login.html:22
msgid "Password"
-msgstr "Password"
+msgstr ""
-#: core/doctype/user/user.py:1036
+#: frappe/core/doctype/user/user.py:1081
msgid "Password Email Sent"
msgstr ""
-#: core/doctype/user/user.py:418
+#: frappe/core/doctype/user/user.py:458
msgid "Password Reset"
-msgstr "Reimposta Password"
+msgstr ""
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the password_reset_limit (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Password Reset Link Generation Limit"
-msgstr "Limite di generazione del collegamento per la reimpostazione della password"
+msgstr ""
-#: public/js/frappe/form/grid_row.js:790
+#: frappe/public/js/frappe/form/grid_row.js:880
msgid "Password cannot be filtered"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:358
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:357
msgid "Password changed successfully."
-msgstr "Password cambiata con successo."
+msgstr ""
-#. Label of a Password field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the password (Password) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Password for Base DN"
-msgstr "Password per Base DN"
+msgstr ""
-#: email/doctype/email_account/email_account.py:165
+#: frappe/email/doctype/email_account/email_account.py:189
msgid "Password is required or select Awaiting Password"
-msgstr "La password è necessaria o selezionare In attesa di password"
+msgstr ""
-#: public/js/frappe/desk.js:191
+#: frappe/public/js/frappe/desk.js:212
msgid "Password missing in Email Account"
msgstr ""
-#: utils/password.py:42
+#: frappe/utils/password.py:47
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: core/doctype/user/user.py:1035
-msgid "Password reset instructions have been sent to your email"
-msgstr "Le istruzioni per la reimpostazione della password sono state inviate al tuo indirizzo email"
+#: frappe/core/doctype/user/user.py:1080
+msgid "Password reset instructions have been sent to {}'s email"
+msgstr ""
-#: www/update-password.html:164
+#: frappe/www/update-password.html:166
msgid "Password set"
msgstr ""
-#: auth.py:239
+#: frappe/auth.py:258
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: core/doctype/user/user.py:828
+#: frappe/core/doctype/user/user.py:871
msgid "Password size exceeded the maximum allowed size."
msgstr ""
-#: www/update-password.html:78
+#: frappe/www/update-password.html:80
msgid "Passwords do not match"
msgstr ""
-#: core/doctype/user/user.js:187
+#: frappe/core/doctype/user/user.js:205
msgid "Passwords do not match!"
-msgstr "Le passwords non corrispondono!"
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:156
+#: frappe/email/doctype/newsletter/newsletter.py:157
msgid "Past dates are not allowed for Scheduling."
msgstr ""
-#: public/js/frappe/views/file/file_view.js:151
+#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
-msgstr "Incolla"
+msgstr ""
-#. Label of a Int field in DocType 'Package Release'
-#: core/doctype/package_release/package_release.json
-msgctxt "Package Release"
+#. Label of the patch (Int) field in DocType 'Package Release'
+#. Label of the patch (Code) field in DocType 'Patch Log'
+#: frappe/core/doctype/package_release/package_release.json
+#: frappe/core/doctype/patch_log/patch_log.json
msgid "Patch"
-msgstr "Patch"
-
-#. Label of a Code field in DocType 'Patch Log'
-#: core/doctype/patch_log/patch_log.json
-msgctxt "Patch Log"
-msgid "Patch"
-msgstr "Patch"
+msgstr ""
#. Name of a DocType
-#: core/doctype/patch_log/patch_log.json
+#: frappe/core/doctype/patch_log/patch_log.json
msgid "Patch Log"
-msgstr "Patch Log"
+msgstr ""
-#: modules/patch_handler.py:137
+#: frappe/modules/patch_handler.py:136
msgid "Patch type {} not found in patches.txt"
msgstr ""
-#: website/report/website_analytics/website_analytics.js:35
+#. Label of the path (Data) field in DocType 'API Request Log'
+#. Label of the path (Small Text) field in DocType 'Package Release'
+#. Label of the path (Data) field in DocType 'Recorder'
+#. Label of the path (Data) field in DocType 'Onboarding Step'
+#. Label of the path (Data) field in DocType 'Web Page View'
+#: frappe/core/doctype/api_request_log/api_request_log.json
+#: frappe/core/doctype/package_release/package_release.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:35
msgid "Path"
-msgstr "Percorso"
+msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Path"
-msgstr "Percorso"
-
-#. Label of a Small Text field in DocType 'Package Release'
-#: core/doctype/package_release/package_release.json
-msgctxt "Package Release"
-msgid "Path"
-msgstr "Percorso"
-
-#. Label of a Data field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "Path"
-msgstr "Percorso"
-
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Path"
-msgstr "Percorso"
-
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the local_ca_certs_file (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Path to CA Certs File"
-msgstr "Percorso del file CA Certs"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the local_server_certificate_file (Data) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Path to Server Certificate"
-msgstr "Percorso al certificato del server"
+msgstr ""
-#. Label of a Data field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the local_private_key_file (Data) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Path to private Key File"
-msgstr "Percorso del file della chiave privata"
+msgstr ""
-#. Label of a Int field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/website/path_resolver.py:208
+msgid "Path {0} it not a valid path"
+msgstr ""
+
+#. Label of the payload_count (Int) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Payload Count"
msgstr ""
-#. Option for the 'Status' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Pending"
-msgstr "In attesa"
+#. Label of the peak_memory_usage (Int) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+msgid "Peak Memory Usage"
+msgstr ""
+#. Option for the 'Status' (Select) field in DocType 'Data Import'
+#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/translation/translation.json
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Pending"
-msgstr "In attesa"
-
-#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
-msgid "Pending"
-msgstr "In attesa"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Pending Approval"
-msgstr "In attesa di approvazione"
+msgstr ""
+
+#. Label of the pending_emails (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Pending Emails"
+msgstr ""
+
+#. Label of the pending_jobs (Int) field in DocType 'System Health Report
+#. Queue'
+#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
+msgid "Pending Jobs"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
#. Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Pending Verification"
-msgstr "In attesa di verifica"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Percent"
-msgstr "Percentuale"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Percent"
-msgstr "Percentuale"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Percent"
-msgstr "Percentuale"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Percentage"
-msgstr "Percentuale"
+msgstr ""
-#. Label of a Select field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the dynamic_date_period (Select) field in DocType 'Auto Email
+#. Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Period"
-msgstr "periodo"
+msgstr ""
-#. Label of a Int field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the permlevel (Int) field in DocType 'DocField'
+#. Label of the permlevel (Int) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Perm Level"
-msgstr "Perm Livello"
-
-#. Label of a Int field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Perm Level"
-msgstr "Perm Livello"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Permanent"
-msgstr "Permanente"
+msgstr ""
-#: public/js/frappe/form/form.js:1047
+#: frappe/public/js/frappe/form/form.js:1028
msgid "Permanently Cancel {0}?"
-msgstr "Cancella definitivamente {0} ?"
+msgstr ""
-#: public/js/frappe/form/form.js:877
+#: frappe/public/js/frappe/form/form.js:1074
+msgid "Permanently Discard {0}?"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:861
msgid "Permanently Submit {0}?"
-msgstr "Conferma Definitivamente {0} ?"
+msgstr ""
-#: public/js/frappe/model/model.js:698
+#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
-msgstr "Eliminare definitivamente {0} ?"
+msgstr ""
-#: core/doctype/user_type/user_type.py:83
+#: frappe/core/doctype/user_type/user_type.py:84
msgid "Permission Error"
-msgstr "Errore di autorizzazione"
+msgstr ""
#. Name of a DocType
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "Permission Inspector"
-msgstr "Errore di autorizzazione"
+msgstr ""
-#: core/page/permission_manager/permission_manager.js:446
+#. Label of the permlevel (Int) field in DocType 'Custom Field'
+#: frappe/core/page/permission_manager/permission_manager.js:463
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Permission Level"
-msgstr "Livello di autorizzazione"
+msgstr ""
-#. Label of a Int field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Permission Level"
-msgstr "Livello di autorizzazione"
+#: frappe/core/page/permission_manager/permission_manager_help.html:22
+msgid "Permission Levels"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Permission Log"
+msgstr ""
#. Label of a shortcut in the Users Workspace
-#: core/workspace/users/users.json
+#: frappe/core/workspace/users/users.json
msgid "Permission Manager"
msgstr ""
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
msgstr ""
-#. Label of a Section Break field in DocType 'Custom Role'
-#: core/doctype/custom_role/custom_role.json
-msgctxt "Custom Role"
+#. Label of the permission_rules (Section Break) field in DocType 'Custom Role'
+#: frappe/core/doctype/custom_role/custom_role.json
msgid "Permission Rules"
-msgstr "Regole di autorizzazione"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Permission Rules"
-msgstr "Regole di autorizzazione"
-
-#. Label of a Select field in DocType 'Permission Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#. Label of the permission_type (Select) field in DocType 'Permission
+#. Inspector'
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "Permission Type"
-msgstr "Regole di autorizzazione"
+msgstr ""
+#. Label of the section_break_4 (Section Break) field in DocType 'Custom
+#. DocPerm'
+#. Label of the permissions (Section Break) field in DocType 'DocField'
+#. Label of the section_break_4 (Section Break) field in DocType 'DocPerm'
+#. Label of the permissions (Table) field in DocType 'DocType'
+#. Label of the permissions_tab (Tab Break) field in DocType 'DocType'
+#. Label of the permissions (Section Break) field in DocType 'System Settings'
#. Label of a Card Break in the Users Workspace
-#: core/doctype/user/user.js:129 core/doctype/user/user.js:138
-#: core/page/permission_manager/permission_manager.js:214
-#: core/workspace/users/users.json
+#. Label of the permissions (Section Break) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147
+#: frappe/core/doctype/user/user.js:156
+#: frappe/core/page/permission_manager/permission_manager.js:221
+#: frappe/core/workspace/users/users.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
-msgstr "Autorizzazioni"
+msgstr ""
-#. Label of a Section Break field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Permissions"
-msgstr "Autorizzazioni"
-
-#. Label of a Section Break field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Permissions"
-msgstr "Autorizzazioni"
-
-#. Label of a Section Break field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Permissions"
-msgstr "Autorizzazioni"
-
-#. Label of a Section Break field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Permissions"
-msgstr "Autorizzazioni"
-
-#. Label of a Table field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Permissions"
-msgstr "Autorizzazioni"
-
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Permissions"
-msgstr "Autorizzazioni"
-
-#: core/doctype/doctype/doctype.py:1775 core/doctype/doctype/doctype.py:1785
+#: frappe/core/doctype/doctype/doctype.py:1834
+#: frappe/core/doctype/doctype/doctype.py:1844
msgid "Permissions Error"
msgstr ""
+#: frappe/core/page/permission_manager/permission_manager_help.html:10
+msgid "Permissions are automatically applied to Standard Reports and searches."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:5
+msgid "Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:26
+msgid "Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:24
+msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
+msgstr ""
+
+#: frappe/core/page/permission_manager/permission_manager_help.html:6
+msgid "Permissions get applied on Users based on what Roles they are assigned."
+msgstr ""
+
#. Name of a report
#. Label of a Link in the Users Workspace
-#: core/report/permitted_documents_for_user/permitted_documents_for_user.json
-#: core/workspace/users/users.json
+#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.json
+#: frappe/core/workspace/users/users.json
msgid "Permitted Documents For User"
-msgstr "Documenti consentiti per Utente"
+msgstr ""
-#. Label of a Table MultiSelect field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
+#. Label of the permitted_roles (Table MultiSelect) field in DocType 'Workflow
+#. Action'
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Permitted Roles"
msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Personal"
-msgstr "Personale"
+msgstr ""
#. Name of a DocType
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Personal Data Deletion Request"
-msgstr "Richiesta di cancellazione dei dati personali"
+msgstr ""
#. Name of a DocType
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Personal Data Deletion Step"
msgstr ""
#. Name of a DocType
-#: website/doctype/personal_data_download_request/personal_data_download_request.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
msgid "Personal Data Download Request"
-msgstr "Richiesta di download di dati personali"
-
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Phone"
-msgstr "Telefono"
+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'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Phone"
-msgstr "Telefono"
-
-#. Label of a Data field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Phone"
-msgstr "Telefono"
-
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
-msgid "Phone"
-msgstr "Telefono"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Phone"
-msgstr "Telefono"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Phone"
-msgstr "Telefono"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Phone"
-msgstr "Telefono"
-
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Phone"
-msgstr "Telefono"
-
+#. Label of the phone (Data) field in DocType 'User'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the phone (Data) field in DocType 'Contact Us Settings'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/user/user.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Phone"
-msgstr "Telefono"
+msgstr ""
-#. Label of a Data field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the phone_no (Data) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Phone No."
-msgstr "N. di Telefono"
+msgstr ""
-#: utils/__init__.py:108
+#: frappe/utils/__init__.py:121
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
-#: public/js/frappe/form/print_utils.js:38
-#: public/js/frappe/views/reports/report_view.js:1504
-#: public/js/frappe/views/reports/report_view.js:1507
+#: frappe/public/js/frappe/form/print_utils.js:40
+#: frappe/public/js/frappe/views/reports/report_view.js:1579
+#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
-msgstr "Scegli Colonne"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Pie"
-msgstr "Torta"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the pincode (Data) field in DocType 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Pincode"
-msgstr "CAP"
+msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
+#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Pink"
msgstr ""
-#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
-msgid "Pink"
+#. Label of the placeholder (Data) field in DocType 'DocField'
+#. Label of the placeholder (Data) field in DocType 'Custom Field'
+#. Label of the placeholder (Data) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "Placeholder"
msgstr ""
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Plain Text"
msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Plant"
-msgstr "Impianto"
+msgstr ""
-#: email/oauth.py:30
+#: frappe/email/doctype/email_account/email_account.py:544
+msgid "Please Authorize OAuth for Email Account {0}"
+msgstr ""
+
+#: frappe/email/oauth.py:29
msgid "Please Authorize OAuth for Email Account {}"
msgstr ""
-#: website/doctype/website_theme/website_theme.py:79
+#: frappe/website/doctype/website_theme/website_theme.py:77
msgid "Please Duplicate this Website Theme to customize."
-msgstr "Si prega di duplicare questo tema sito web per personalizzare."
+msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:159
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:162
msgid "Please Install the ldap3 library via pip to use ldap functionality."
-msgstr "Installa la libreria ldap3 tramite pip per utilizzare la funzionalità ldap."
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:307
+#: frappe/public/js/frappe/views/reports/query_report.js:307
msgid "Please Set Chart"
-msgstr "Si prega di impostare il grafico"
+msgstr ""
-#: core/doctype/sms_settings/sms_settings.py:84
+#: frappe/core/doctype/sms_settings/sms_settings.py:84
msgid "Please Update SMS Settings"
-msgstr "Si prega di aggiornare le impostazioni SMS"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:569
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582
msgid "Please add a subject to your email"
-msgstr "Si prega di aggiungere un oggetto alla tua email"
+msgstr ""
-#: templates/includes/comments/comments.html:168
+#: frappe/templates/includes/comments/comments.html:168
msgid "Please add a valid comment."
-msgstr "Per favore aggiungi un commento valido."
+msgstr ""
-#: core/doctype/user/user.py:1017
+#: frappe/core/doctype/user/user.py:1063
msgid "Please ask your administrator to verify your sign-up"
-msgstr "Si prega di chiedere all'amministratore di verificare la tua iscrizione"
+msgstr ""
-#: public/js/frappe/form/controls/select.js:96
+#: frappe/public/js/frappe/form/controls/select.js:101
msgid "Please attach a file first."
-msgstr "Si prega di allegare un file."
+msgstr ""
-#: printing/doctype/letter_head/letter_head.py:73
+#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Please attach an image file to set HTML for Footer."
msgstr ""
-#: printing/doctype/letter_head/letter_head.py:61
+#: frappe/printing/doctype/letter_head/letter_head.py:64
msgid "Please attach an image file to set HTML for Letter Head."
msgstr ""
-#: core/doctype/package_import/package_import.py:38
+#: frappe/core/doctype/package_import/package_import.py:39
msgid "Please attach the package"
msgstr ""
-#: integrations/doctype/connected_app/connected_app.js:19
+#: frappe/integrations/doctype/connected_app/connected_app.js:19
msgid "Please check OpenID Configuration URL"
msgstr ""
-#: utils/dashboard.py:58
+#: frappe/utils/dashboard.py:58
msgid "Please check the filter values set for Dashboard Chart: {}"
-msgstr "Verifica i valori del filtro impostati per Dashboard Chart: {}"
+msgstr ""
-#: model/base_document.py:839
+#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
-msgstr "Controlla il valore di "Recupera da" impostato per il campo {0}"
+msgstr ""
-#: core/doctype/user/user.py:1015
+#: frappe/core/doctype/user/user.py:1061
msgid "Please check your email for verification"
-msgstr "Si prega di controllare la posta elettronica per la verifica"
+msgstr ""
-#: email/smtp.py:131
+#: frappe/email/smtp.py:134
msgid "Please check your email login credentials."
msgstr ""
-#: twofactor.py:246
+#: frappe/twofactor.py:243
msgid "Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it."
-msgstr "Controlla l'indirizzo email registrato per istruzioni su come procedere. Non chiudere questa finestra perché dovrai tornarci."
+msgstr ""
-#: twofactor.py:291
+#: frappe/desk/doctype/workspace/workspace.js:23
+msgid "Please click Edit on the Workspace for best results"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:158
+msgid "Please click on 'Export Errored Rows', fix the errors and import again."
+msgstr ""
+
+#: frappe/twofactor.py:286
msgid "Please click on the following link and follow the instructions on the page. {0}"
msgstr ""
-#: templates/emails/password_reset.html:2
+#: frappe/templates/emails/password_reset.html:2
msgid "Please click on the following link to set your new password"
-msgstr "Cliccate sul link seguente per impostare la nuova password"
-
-#: integrations/doctype/dropbox_settings/dropbox_settings.py:344
-msgid "Please close this window"
-msgstr "Si prega di chiudere questa finestra"
-
-#: www/confirm_workflow_action.html:4
-msgid "Please confirm your action to {0} this document."
-msgstr "Conferma la tua azione su {0} questo documento."
-
-#: core/doctype/server_script/server_script.js:33
-msgid "Please contact your system administrator to enable this feature."
msgstr ""
-#: desk/doctype/number_card/number_card.js:44
+#: frappe/www/confirm_workflow_action.html:4
+msgid "Please confirm your action to {0} this document."
+msgstr ""
+
+#: frappe/printing/page/print/print.js:618
+msgid "Please contact your system manager to install correct version."
+msgstr ""
+
+#: frappe/desk/doctype/number_card/number_card.js:44
msgid "Please create Card first"
-msgstr "Crea prima la carta"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.js:42
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:42
msgid "Please create chart first"
-msgstr "Si prega di creare prima il grafico"
+msgstr ""
-#: desk/form/meta.py:209
+#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
msgstr ""
-#: core/doctype/data_export/exporter.py:184
+#: frappe/core/doctype/data_export/exporter.py:184
msgid "Please do not change the template headings."
-msgstr "Si prega di non modificare le intestazioni modello."
+msgstr ""
-#: printing/doctype/print_format/print_format.js:18
+#: frappe/printing/doctype/print_format/print_format.js:18
msgid "Please duplicate this to make changes"
-msgstr "Si prega di duplicare questo per fare modifiche"
+msgstr ""
-#: core/doctype/system_settings/system_settings.py:145
+#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
-#: desk/doctype/notification_log/notification_log.js:45
-#: email/doctype/auto_email_report/auto_email_report.js:17
-#: printing/page/print/print.js:611 printing/page/print/print.js:640
-#: public/js/frappe/list/bulk_operations.js:117
-#: public/js/frappe/utils/utils.js:1416
+#: frappe/desk/doctype/notification_log/notification_log.js:45
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
+#: frappe/printing/page/print/print.js:638
+#: frappe/printing/page/print/print.js:668
+#: frappe/public/js/frappe/list/bulk_operations.js:161
+#: frappe/public/js/frappe/utils/utils.js:1431
msgid "Please enable pop-ups"
-msgstr "Si prega di abilitare i pop-up"
+msgstr ""
-#: public/js/frappe/microtemplate.js:162 public/js/frappe/microtemplate.js:177
+#: frappe/public/js/frappe/microtemplate.js:162
+#: frappe/public/js/frappe/microtemplate.js:177
msgid "Please enable pop-ups in your browser"
-msgstr "Si prega di abilitare i popup nel browser"
+msgstr ""
-#: integrations/google_oauth.py:53
+#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
msgstr ""
-#: utils/oauth.py:191
+#: frappe/utils/oauth.py:191
msgid "Please ensure that your profile has an email address"
-msgstr "Assicurati che il tuo profilo ha un indirizzo di posta elettronica"
+msgstr ""
-#: integrations/doctype/social_login_key/social_login_key.py:73
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:82
msgid "Please enter Access Token URL"
-msgstr "Inserisci l'URL del token di accesso"
+msgstr ""
-#: integrations/doctype/social_login_key/social_login_key.py:71
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:80
msgid "Please enter Authorize URL"
-msgstr "Si prega di inserire Autorizza URL"
+msgstr ""
-#: integrations/doctype/social_login_key/social_login_key.py:69
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:78
msgid "Please enter Base URL"
-msgstr "Inserisci l'URL di base"
+msgstr ""
-#: integrations/doctype/social_login_key/social_login_key.py:78
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:86
msgid "Please enter Client ID before social login is enabled"
-msgstr "Inserisci l'ID cliente prima che l'accesso social sia abilitato"
+msgstr ""
-#: integrations/doctype/social_login_key/social_login_key.py:82
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:89
msgid "Please enter Client Secret before social login is enabled"
-msgstr "Inserisci Client Secret prima che l'accesso social sia abilitato"
+msgstr ""
-#: integrations/doctype/connected_app/connected_app.js:8
+#: frappe/integrations/doctype/connected_app/connected_app.js:8
msgid "Please enter OpenID Configuration URL"
msgstr ""
-#: integrations/doctype/social_login_key/social_login_key.py:75
+#: frappe/integrations/doctype/social_login_key/social_login_key.py:84
msgid "Please enter Redirect URL"
-msgstr "Inserisci l'URL di reindirizzamento"
+msgstr ""
-#: templates/includes/comments/comments.html:163
+#: frappe/templates/includes/comments/comments.html:163
msgid "Please enter a valid email address."
msgstr ""
-#: www/update-password.html:233
-msgid "Please enter the password"
-msgstr "Si prega di inserire la password"
+#: frappe/templates/includes/contact.js:15
+msgid "Please enter both your email and message so that we can get back to you. Thanks!"
+msgstr ""
-#: public/js/frappe/desk.js:196
+#: frappe/www/update-password.html:234
+msgid "Please enter the password"
+msgstr ""
+
+#: frappe/public/js/frappe/desk.js:217
msgctxt "Email Account"
msgid "Please enter the password for: {0}"
msgstr ""
-#: core/doctype/sms_settings/sms_settings.py:42
+#: frappe/core/doctype/sms_settings/sms_settings.py:43
msgid "Please enter valid mobile nos"
-msgstr "Inserisci nos mobili validi"
+msgstr ""
-#: www/update-password.html:115
+#: frappe/www/update-password.html:117
msgid "Please enter your new password."
msgstr ""
-#: www/update-password.html:108
+#: frappe/www/update-password.html:110
msgid "Please enter your old password."
msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:401
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413
msgid "Please find attached {0}: {1}"
-msgstr "Si trova in allegato {0}: {1}"
+msgstr ""
-#: core/doctype/navbar_settings/navbar_settings.py:44
-msgid "Please hide the standard navbar items instead of deleting them"
-msgstr "Nascondi gli elementi della barra di navigazione standard invece di eliminarli"
-
-#: templates/includes/comments/comments.py:31
+#: frappe/templates/includes/comments/comments.py:31
msgid "Please login to post a comment."
msgstr ""
-#: core/doctype/communication/communication.py:210
+#: frappe/core/doctype/communication/communication.py:186
msgid "Please make sure the Reference Communication Docs are not circularly linked."
-msgstr "Assicurati che i documenti di comunicazione di riferimento non siano collegati in modo circolare."
+msgstr ""
-#: model/document.py:810
+#: frappe/model/document.py:986
msgid "Please refresh to get the latest document."
-msgstr "Si prega di aggiornare per ottenere l'ultimo documento."
+msgstr ""
-#: printing/page/print/print.js:525
+#: frappe/printing/page/print/print.js:535
msgid "Please remove the printer mapping in Printer Settings and try again."
msgstr ""
-#: public/js/frappe/form/form.js:384
+#: frappe/public/js/frappe/form/form.js:358
msgid "Please save before attaching."
-msgstr "Salvare prima di allegare."
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:133
+#: frappe/email/doctype/newsletter/newsletter.py:131
msgid "Please save the Newsletter before sending"
-msgstr "Si prega di salvare la Newsletter prima di inviare"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:51
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
-msgstr "Si prega di salvare il documento prima di assegnazione"
+msgstr ""
-#: public/js/frappe/form/sidebar/assign_to.js:71
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:72
msgid "Please save the document before removing assignment"
-msgstr "Si prega di salvare il documento prima di rimuovere l'assegnazione"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1614
+#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
-msgstr "Si prega di salvare il rapporto prima"
+msgstr ""
-#: website/doctype/web_template/web_template.js:22
+#: frappe/website/doctype/web_template/web_template.js:22
msgid "Please save to edit the template."
-msgstr "Salva per modificare il modello."
+msgstr ""
-#: desk/page/leaderboard/leaderboard.js:244
-msgid "Please select Company"
-msgstr "Selezionare prego"
-
-#: printing/doctype/print_format/print_format.js:30
+#: frappe/printing/doctype/print_format/print_format.js:30
msgid "Please select DocType first"
-msgstr "Seleziona DocType primo"
+msgstr ""
-#: contacts/report/addresses_and_contacts/addresses_and_contacts.js:27
+#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:27
msgid "Please select Entity Type first"
-msgstr "Seleziona prima il tipo di entità"
+msgstr ""
-#: core/doctype/system_settings/system_settings.py:103
+#: frappe/core/doctype/system_settings/system_settings.py:113
msgid "Please select Minimum Password Score"
-msgstr "Seleziona il punteggio minimo della password"
+msgstr ""
-#: utils/__init__.py:115
+#: frappe/public/js/frappe/views/reports/query_report.js:1183
+msgid "Please select X and Y fields"
+msgstr ""
+
+#: frappe/utils/__init__.py:128
msgid "Please select a country code for field {1}."
msgstr ""
-#: utils/file_manager.py:50
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506
+msgid "Please select a file first."
+msgstr ""
+
+#: frappe/utils/file_manager.py:50
msgid "Please select a file or url"
-msgstr "Si prega di selezionare un file o URL"
+msgstr ""
-#: model/rename_doc.py:670
+#: frappe/model/rename_doc.py:685
msgid "Please select a valid csv file with data"
-msgstr "Selezionare un file csv valido con i dati"
+msgstr ""
-#: utils/data.py:285
+#: frappe/utils/data.py:299
msgid "Please select a valid date filter"
-msgstr "Seleziona un filtro di data valido"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:203
+#: frappe/core/doctype/user_permission/user_permission_list.js:203
msgid "Please select applicable Doctypes"
-msgstr "Seleziona Doctypes applicabili"
+msgstr ""
-#: model/db_query.py:1140
+#: frappe/model/db_query.py:1141
msgid "Please select atleast 1 column from {0} to sort/group"
-msgstr "Si prega di selezionare atleast 1 colonna da {0} per ordinare / gruppo"
+msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.py:215
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:214
msgid "Please select prefix first"
-msgstr "Si prega di selezionare il prefisso prima"
+msgstr ""
-#: core/doctype/data_export/data_export.js:42
+#: frappe/core/doctype/data_export/data_export.js:42
msgid "Please select the Document Type."
-msgstr "Si prega di selezionare il tipo di documento."
+msgstr ""
#. Description of the 'Directory Server' (Select) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Please select the LDAP Directory being used"
msgstr ""
-#: website/doctype/website_settings/website_settings.js:100
+#: frappe/website/doctype/website_settings/website_settings.js:100
msgid "Please select {0}"
-msgstr "Si prega di selezionare {0}"
-
-#: integrations/doctype/dropbox_settings/dropbox_settings.py:306
-msgid "Please set Dropbox access keys in site config or doctype"
msgstr ""
-#: contacts/doctype/contact/contact.py:200
+#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
-msgstr "Si prega di impostare l'indirizzo e-mail"
+msgstr ""
-#: printing/page/print/print.js:539
+#: frappe/printing/page/print/print.js:549
msgid "Please set a printer mapping for this print format in the Printer Settings"
-msgstr "Impostare una mappatura della stampante per questo formato di stampa nelle Impostazioni stampante"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1308
+#: frappe/public/js/frappe/views/reports/query_report.js:1406
msgid "Please set filters"
-msgstr "Si prega di impostare filtri"
+msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.py:226
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:251
msgid "Please set filters value in Report Filter table."
-msgstr "Si prega di impostare il valore di filtri nella tabella Filtro report."
+msgstr ""
-#: model/naming.py:533
+#: frappe/model/naming.py:572
msgid "Please set the document name"
msgstr ""
-#: desk/doctype/dashboard/dashboard.py:125
+#: frappe/desk/doctype/dashboard/dashboard.py:120
msgid "Please set the following documents in this Dashboard as standard first."
-msgstr "Impostare prima i seguenti documenti in questo dashboard come standard."
-
-#: core/doctype/document_naming_settings/document_naming_settings.py:121
-msgid "Please set the series to be used."
-msgstr "Si prega di impostare la serie da utilizzare."
-
-#: core/doctype/system_settings/system_settings.py:116
-msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
-msgstr "Impostare SMS prima di impostarlo come metodo di autenticazione, tramite Impostazioni SMS"
-
-#: automation/doctype/auto_repeat/auto_repeat.js:102
-msgid "Please setup a message first"
-msgstr "Per favore imposta prima un messaggio"
-
-#: email/doctype/email_account/email_account.py:389
-msgid "Please setup default Email Account from Settings > Email Account"
msgstr ""
-#: core/doctype/user/user.py:369
+#: frappe/core/doctype/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:126
+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:423
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
-#: public/js/frappe/model/model.js:785
-msgid "Please specify"
-msgstr "Si prega di specificare"
+#: frappe/email/doctype/email_account/email_account.py:432
+msgid "Please setup default outgoing Email Account from Tools > Email Account"
+msgstr ""
-#: permissions.py:782
+#: frappe/public/js/frappe/model/model.js:774
+msgid "Please specify"
+msgstr ""
+
+#: frappe/permissions.py:783
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
-#: email/doctype/notification/notification.py:86
+#: frappe/email/doctype/notification/notification.py:154
+msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:151
+msgid "Please specify the minutes offset"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:145
msgid "Please specify which date field must be checked"
-msgstr "Si prega di specificare quale campo data deve essere controllato"
+msgstr ""
-#: email/doctype/notification/notification.py:89
+#: frappe/email/doctype/notification/notification.py:149
+msgid "Please specify which datetime field must be checked"
+msgstr ""
+
+#: frappe/email/doctype/notification/notification.py:158
msgid "Please specify which value field must be checked"
-msgstr "Si prega di specificare quale campo valore deve essere controllato"
+msgstr ""
-#: public/js/frappe/request.js:184
-#: public/js/frappe/views/translation_manager.js:102
+#: frappe/public/js/frappe/request.js:187
+#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
-msgstr "Riprova"
+msgstr ""
-#: integrations/google_oauth.py:56
+#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:332
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: email/doctype/newsletter/newsletter.py:333
+#: frappe/email/doctype/newsletter/newsletter.py:333
msgid "Please verify your Email Address"
-msgstr "Per cortesia verifichi il suo indirizzo email"
+msgstr ""
-#. Label of a Select field in DocType 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Point Allocation Periodicity"
-msgstr "Periodicità di assegnazione dei punti"
+#: frappe/utils/password.py:218
+msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
+msgstr ""
-#: public/js/frappe/form/sidebar/review.js:75
-msgid "Points"
-msgstr "Punti"
+#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Polling"
+msgstr ""
-#. Label of a Int field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Points"
-msgstr "Punti"
-
-#. Label of a Int field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Points"
-msgstr "Punti"
-
-#: templates/emails/energy_points_summary.html:40
-msgid "Points Given"
-msgstr "Punti assegnati"
-
-#. Label of a Check field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the popover_element (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Popover Element"
msgstr ""
-#. Label of a HTML Editor field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the ondemand_description (HTML Editor) field in DocType 'Form Tour
+#. Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Popover or Modal Description"
msgstr ""
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the smtp_port (Data) field in DocType 'Email Account'
+#. Label of the incoming_port (Data) field in DocType 'Email Account'
+#. Label of the smtp_port (Data) field in DocType 'Email Domain'
+#. Label of the incoming_port (Data) field in DocType 'Email Domain'
+#. Label of the port (Int) field in DocType 'Network Printer Settings'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Port"
-msgstr "Porta"
-
-#. Label of a Data field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Port"
-msgstr "Porta"
-
-#. Label of a Int field in DocType 'Network Printer Settings'
-#: printing/doctype/network_printer_settings/network_printer_settings.json
-msgctxt "Network Printer Settings"
-msgid "Port"
-msgstr "Porta"
-
-#. Label of a Card Break in the Website Workspace
-#: website/workspace/website/website.json
-msgid "Portal"
msgstr ""
-#. Label of a Table field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the menu (Table) field in DocType 'Portal Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Portal Menu"
-msgstr "Menu del Portale"
+msgstr ""
#. Name of a DocType
-#: website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Portal Menu Item"
-msgstr "Portal voce di menu"
+msgstr ""
#. Name of a DocType
-#: website/doctype/portal_settings/portal_settings.json
-msgid "Portal Settings"
-msgstr "Impostazioni del portale"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Portal Settings"
+#: frappe/website/doctype/portal_settings/portal_settings.json
+#: frappe/website/workspace/website/website.json
msgid "Portal Settings"
-msgstr "Impostazioni del portale"
+msgstr ""
-#: public/js/frappe/form/print_utils.js:29
+#: frappe/public/js/frappe/form/print_utils.js:31
msgid "Portrait"
-msgstr "Ritratto"
+msgstr ""
-#. Label of a Select field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Label of the position (Select) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Position"
-msgstr "Posizione"
+msgstr ""
-#: templates/discussions/comment_box.html:29
-#: templates/discussions/reply_card.html:15
+#: frappe/templates/discussions/comment_box.html:29
+#: frappe/templates/discussions/reply_card.html:15
+#: frappe/templates/discussions/reply_section.html:29
+#: frappe/templates/discussions/reply_section.html:53
+#: frappe/templates/discussions/topic_modal.html:11
msgid "Post"
-msgstr "Messaggio"
+msgstr ""
-#: templates/discussions/reply_section.html:39
+#: frappe/templates/discussions/reply_section.html:40
msgid "Post it here, our mentors will help you out."
msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Postal"
-msgstr "Postale"
+msgstr ""
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the pincode (Data) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "Postal Code"
-msgstr "Codice Postale"
+msgstr ""
-#. Group in Blog Category's connections
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
-msgid "Posts"
-msgstr "Messaggi"
+#. Label of the posting_timestamp (Datetime) field in DocType 'Changelog Feed'
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+msgid "Posting Timestamp"
+msgstr ""
-#: website/doctype/blog_post/blog_post.py:258
+#: frappe/website/doctype/blog_post/blog_post.py:264
msgid "Posts by {0}"
-msgstr "Messaggi di {0}"
+msgstr ""
-#: website/doctype/blog_post/blog_post.py:250
+#: frappe/website/doctype/blog_post/blog_post.py:256
msgid "Posts filed under {0}"
-msgstr "Gli articoli archiviati in {0}"
+msgstr ""
-#. Label of a Select field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the precision (Select) field in DocType 'DocField'
+#. Label of the precision (Select) field in DocType 'Custom Field'
+#. Label of the precision (Select) field in DocType 'Customize Form Field'
+#. Label of the precision (Select) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Precision"
-msgstr "Precisione"
+msgstr ""
-#. Label of a Select field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Precision"
-msgstr "Precisione"
-
-#. Label of a Select field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Precision"
-msgstr "Precisione"
-
-#. Label of a Select field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Precision"
-msgstr "Precisione"
-
-#: core/doctype/doctype/doctype.py:1349
+#: frappe/core/doctype/doctype/doctype.py:1400
msgid "Precision should be between 1 and 6"
-msgstr "Precisione deve essere compresa tra 1 e 6"
+msgstr ""
-#: utils/password_strength.py:191
+#: frappe/utils/password_strength.py:187
msgid "Predictable substitutions like '@' instead of 'a' don't help very much."
-msgstr "sostituzioni prevedibili come '@' invece di 'un' non aiutano molto."
+msgstr ""
-#. Label of a Check field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/desk/page/setup_wizard/install_fixtures.py:34
+msgid "Prefer not to say"
+msgstr ""
+
+#. Label of the is_primary_address (Check) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "Preferred Billing Address"
-msgstr "Indirizzo di fatturazione predefinito"
+msgstr ""
-#. Label of a Check field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the is_shipping_address (Check) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
msgid "Preferred Shipping Address"
-msgstr "Indirizzo di spedizione predefinito"
+msgstr ""
-#. Label of a Data field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#. Label of the prefix (Data) field in DocType 'Document Naming Rule'
+#. Label of the prefix (Autocomplete) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Prefix"
-msgstr "Prefisso"
-
-#. Label of a Autocomplete field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
-msgid "Prefix"
-msgstr "Prefisso"
+msgstr ""
#. Name of a DocType
-#: core/doctype/prepared_report/prepared_report.json
+#. Label of the prepared_report (Check) field in DocType 'Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:32
msgid "Prepared Report"
-msgstr "Rapporto preparato"
+msgstr ""
-#. Label of a Check field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Prepared Report"
-msgstr "Rapporto preparato"
+#. Name of a report
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json
+msgid "Prepared Report Analytics"
+msgstr ""
#. Name of a role
-#: core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Prepared Report User"
-msgstr "Utente report preparato"
+msgstr ""
-#: desk/query_report.py:296
+#: frappe/desk/query_report.py:306
msgid "Prepared report render failed"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:469
+#: frappe/public/js/frappe/views/reports/query_report.js:472
msgid "Preparing Report"
-msgstr "Preparazione del rapporto"
+msgstr ""
-#: public/js/frappe/views/communication.js:321
+#: frappe/public/js/frappe/views/communication.js:428
msgid "Prepend the template to the email message"
msgstr ""
-#: public/js/frappe/list/list_filter.js:134
+#: frappe/public/js/frappe/ui/keyboard.js:139
+msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_filter.js:141
msgid "Press Enter to save"
-msgstr "Premi Invio per salvare"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:14
-#: email/doctype/newsletter/newsletter.js:42
-#: public/js/frappe/form/controls/markdown_editor.js:31
-#: public/js/frappe/ui/capture.js:228
+#. Label of the section_import_preview (Section Break) field in DocType 'Data
+#. Import'
+#. Label of the preview (Section Break) field in DocType 'File'
+#. Label of the preview_section (Section Break) field in DocType 'Custom HTML
+#. Block'
+#. Label of the preview (Attach Image) field in DocType 'Print Style'
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/file/file.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/email/doctype/newsletter/newsletter.js:14
+#: frappe/email/doctype/newsletter/newsletter.js:42
+#: frappe/email/doctype/notification/notification.js:190
+#: frappe/integrations/doctype/webhook/webhook.js:90
+#: frappe/printing/doctype/print_style/print_style.json
+#: 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 "anteprima"
+msgstr ""
-#. Label of a Section Break field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
-msgid "Preview"
-msgstr "anteprima"
-
-#. Label of a Section Break field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Preview"
-msgstr "anteprima"
-
-#. Label of a Section Break field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
-msgid "Preview"
-msgstr "anteprima"
-
-#. Label of a Attach Image field in DocType 'Print Style'
-#: printing/doctype/print_style/print_style.json
-msgctxt "Print Style"
-msgid "Preview"
-msgstr "anteprima"
-
-#. Label of a Tab Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Preview"
-msgstr "anteprima"
-
-#. Label of a HTML field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the preview_html (HTML) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Preview HTML"
-msgstr "Anteprima HTML"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Blog Category'
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
+#. Label of the preview_image (Attach Image) field in DocType 'Blog Category'
+#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Preview Image"
msgstr ""
-#. Label of a Attach Image field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
-msgid "Preview Image"
-msgstr ""
-
-#. Label of a Button field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the preview_message (Button) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Preview Message"
-msgstr "Anteprima del messaggio"
+msgstr ""
-#: public/js/form_builder/form_builder.bundle.js:83
+#: frappe/public/js/form_builder/form_builder.bundle.js:83
msgid "Preview Mode"
msgstr ""
-#. Label of a Text field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the series_preview (Text) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Preview of generated names"
msgstr ""
-#: public/js/onboarding_tours/onboarding_tours.js:16
-#: templates/includes/slideshow.html:34
-#: website/web_template/slideshow/slideshow.html:40
-msgid "Previous"
-msgstr "Precedente"
-
-#: public/js/frappe/form/toolbar.js:289
-msgid "Previous Document"
+#: frappe/public/js/frappe/views/render_preview.js:19
+msgid "Preview on {0}"
msgstr ""
-#. Label of a Small Text field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Previous Hash"
-msgstr "Hash precedente"
+#: frappe/public/js/print_format_builder/Preview.vue:103
+msgid "Preview type"
+msgstr ""
-#: public/js/frappe/form/form.js:2162
+#: frappe/email/doctype/email_group/email_group.js:90
+msgid "Preview:"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form_tour.js:15
+#: frappe/public/js/frappe/web_form/web_form.js:95
+#: frappe/public/js/onboarding_tours/onboarding_tours.js:16
+#: frappe/templates/includes/slideshow.html:34
+#: frappe/website/web_template/slideshow/slideshow.html:40
+msgid "Previous"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/slides.js:351
+msgctxt "Go to previous slide"
+msgid "Previous"
+msgstr ""
+
+#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log'
+#: frappe/core/doctype/transaction_log/transaction_log.json
+msgid "Previous Hash"
+msgstr ""
+
+#: frappe/public/js/frappe/form/form.js:2214
msgid "Previous Submission"
msgstr ""
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Primary"
-msgstr "Primaria"
+msgstr ""
-#. Label of a Link field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#: frappe/public/js/frappe/form/templates/address_list.html:27
+msgid "Primary Address"
+msgstr ""
+
+#. Label of the primary_color (Link) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Primary Color"
-msgstr "Colore primario"
+msgstr ""
-#: core/doctype/success_action/success_action.js:56
-#: printing/page/print/print.js:65 public/js/frappe/form/success_action.js:81
-#: public/js/frappe/form/toolbar.js:321 public/js/frappe/form/toolbar.js:333
-#: public/js/frappe/list/bulk_operations.js:79
-#: public/js/frappe/views/reports/query_report.js:1623
-#: public/js/frappe/views/reports/report_view.js:1463
-#: public/js/frappe/views/treeview.js:473 www/printview.html:18
+#: frappe/public/js/frappe/form/templates/contact_list.html:23
+msgid "Primary Contact"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/contact_list.html:69
+msgid "Primary Email"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/contact_list.html:49
+msgid "Primary Mobile"
+msgstr ""
+
+#: frappe/public/js/frappe/form/templates/contact_list.html:41
+msgid "Primary Phone"
+msgstr ""
+
+#: frappe/database/mariadb/schema.py:156 frappe/database/postgres/schema.py:199
+#: frappe/database/sqlite/schema.py:141
+msgid "Primary key of doctype {0} can not be changed as there are existing values."
+msgstr ""
+
+#. Label of the print (Check) field in DocType 'Custom DocPerm'
+#. Label of the print (Check) field in DocType 'DocPerm'
+#. Label of the print (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/success_action/success_action.js:58
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/printing/page/print/print.js:65
+#: frappe/public/js/frappe/form/success_action.js:81
+#: frappe/public/js/frappe/form/templates/print_layout.html:46
+#: frappe/public/js/frappe/form/toolbar.js:357
+#: frappe/public/js/frappe/form/toolbar.js:369
+#: frappe/public/js/frappe/list/bulk_operations.js:95
+#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/report_view.js:1537
+#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
-msgstr "Stampa"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1849
+#: frappe/public/js/frappe/list/list_view.js:2019
msgctxt "Button in list view actions menu"
msgid "Print"
-msgstr "Stampa"
+msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Print"
-msgstr "Stampa"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Print"
-msgstr "Stampa"
-
-#: public/js/frappe/list/bulk_operations.js:39
+#: frappe/public/js/frappe/list/bulk_operations.js:48
msgid "Print Documents"
-msgstr "Stampa documenti"
-
-#. Name of a DocType
-#: printing/doctype/print_format/print_format.json
-#: printing/page/print/print.js:94 printing/page/print/print.js:794
-#: public/js/frappe/list/bulk_operations.js:50
-msgid "Print Format"
-msgstr "Formato Stampa"
-
-#. Label of a Link field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Print Format"
-msgstr "Formato Stampa"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Print Format"
-msgstr "Formato Stampa"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Print Format"
-msgstr "Formato Stampa"
-
-#. Label of a Link field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Print Format"
-msgstr "Formato Stampa"
+msgstr ""
+#. Label of the print_format (Link) field in DocType 'Auto Repeat'
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Print Format"
+#. Label of the print_format (Link) field in DocType 'Notification'
+#. Name of a DocType
+#. Label of the print_format (Link) field in DocType 'Web Form'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/workspace/build/build.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/page/print/print.js:94
+#: frappe/printing/page/print/print.js:821
+#: frappe/public/js/frappe/list/bulk_operations.js:59
+#: frappe/website/doctype/web_form/web_form.json
msgid "Print Format"
-msgstr "Formato Stampa"
-
-#. Label of a Link field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Print Format"
-msgstr "Formato Stampa"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#. Label of a shortcut in the Build Workspace
-#: automation/workspace/tools/tools.json core/workspace/build/build.json
-#: printing/page/print_format_builder/print_format_builder.js:44
-#: printing/page/print_format_builder/print_format_builder.js:67
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:4
+#. 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 "Formato di stampa Builder"
-
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Print Format Builder"
-msgstr "Formato di stampa Builder"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
+#: frappe/automation/workspace/tools/tools.json
msgid "Print Format Builder (New)"
msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the print_format_builder_beta (Check) field in DocType 'Print
+#. Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Builder Beta"
msgstr ""
-#: utils/pdf.py:52
+#: frappe/utils/pdf.py:63
msgid "Print Format Error"
msgstr ""
#. Name of a DocType
-#: printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
msgid "Print Format Field Template"
msgstr ""
-#. Label of a HTML field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the print_format_help (HTML) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Help"
-msgstr "Formato Stampa Guida"
+msgstr ""
-#. Label of a Select field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the print_format_type (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Type"
-msgstr "Stampa Tipo di formato"
+msgstr ""
-#: www/printview.py:407
+#: frappe/www/printview.py:451
msgid "Print Format {0} is disabled"
-msgstr "Formato di stampa {0} è disattivato"
-
-#. Description of the Onboarding Step 'Customize Print Formats'
-#: custom/onboarding_step/print_format/print_format.json
-msgid "Print Formats allow you can define looks for documents when printed or converted to PDF. You can also create a custom Print Format using drag-and-drop tools."
-msgstr ""
-
-#. Name of a DocType
-#: printing/doctype/print_heading/print_heading.json
-msgid "Print Heading"
msgstr ""
#. Label of a Link in the Tools Workspace
-#. Label of a Data field in DocType 'Print Heading'
-#: automation/workspace/tools/tools.json
-#: printing/doctype/print_heading/print_heading.json
-msgctxt "Print Heading"
+#. Name of a DocType
+#. Label of the print_heading (Data) field in DocType 'Print Heading'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/printing/doctype/print_heading/print_heading.json
msgid "Print Heading"
msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. 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 "Stampa Hide"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Print Hide"
-msgstr "Stampa Hide"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Print Hide"
-msgstr "Stampa Hide"
-
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the print_hide_if_no_value (Check) field in DocType 'DocField'
+#. Label of the print_hide_if_no_value (Check) field in DocType 'Custom Field'
+#. Label of the print_hide_if_no_value (Check) field in DocType 'Customize Form
+#. Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Hide If No Value"
-msgstr "Stampa Nascondere se nessun valore"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Print Hide If No Value"
-msgstr "Stampa Nascondere se nessun valore"
+#: frappe/public/js/frappe/views/communication.js:165
+msgid "Print Language"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Print Hide If No Value"
-msgstr "Stampa Nascondere se nessun valore"
-
-#: public/js/frappe/form/print_utils.js:195
+#: frappe/public/js/frappe/form/print_utils.js:197
msgid "Print Sent to the printer!"
-msgstr "Stampa inviata alla stampante!"
+msgstr ""
-#. Label of a Section Break field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the server_printer (Section Break) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print Server"
-msgstr "Server di stampa"
-
-#. Name of a DocType
-#: printing/doctype/print_settings/print_settings.json
-#: printing/doctype/print_style/print_style.js:6
-#: printing/page/print/print.js:160 public/js/frappe/form/print_utils.js:69
-msgid "Print Settings"
-msgstr "Impostazioni di stampa"
-
-#. Label of a Section Break field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Print Settings"
-msgstr "Impostazioni di stampa"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "Print Settings"
-msgid "Print Settings"
-msgstr "Impostazioni di stampa"
-
+#. Label of the column_break_25 (Section Break) field in DocType 'Notification'
#. Name of a DocType
-#: printing/doctype/print_style/print_style.json
-msgid "Print Style"
-msgstr "Stile di stampa"
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/printing/doctype/print_style/print_style.js:6
+#: frappe/printing/page/print/print.js:160
+#: frappe/public/js/frappe/form/print_utils.js:71
+#: frappe/public/js/frappe/form/templates/print_layout.html:35
+msgid "Print Settings"
+msgstr ""
-#. Label of a Section Break field in DocType 'Print Settings'
-#. Label of a Link field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. 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 "Stile di stampa"
+msgstr ""
-#. Label of a Data field in DocType 'Print Style'
-#: printing/doctype/print_style/print_style.json
-msgctxt "Print Style"
+#. Label of the print_style_name (Data) field in DocType 'Print Style'
+#: frappe/printing/doctype/print_style/print_style.json
msgid "Print Style Name"
-msgstr "Nome dello stile di stampa"
+msgstr ""
-#. Label of a HTML field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the print_style_preview (HTML) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print Style Preview"
-msgstr "Stile di stampa Anteprima"
+msgstr ""
-#. Label of a Data field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the print_width (Data) field in DocType 'DocField'
+#. Label of the print_width (Data) field in DocType 'Custom Field'
+#. Label of the print_width (Data) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Width"
-msgstr "Larghezza di stampa"
-
-#. Label of a Data field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Print Width"
-msgstr "Larghezza di stampa"
-
-#. Label of a Data field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Print Width"
-msgstr "Larghezza di stampa"
+msgstr ""
#. Description of the 'Print Width' (Data) field in DocType 'Customize Form
#. Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Width of the field, if the field is a column in a table"
-msgstr "Stampa larghezza del campo, se il campo è una colonna in una tabella"
+msgstr ""
-#: public/js/frappe/form/form.js:170
+#: frappe/public/js/frappe/form/form.js:170
msgid "Print document"
msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the with_letterhead (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Print with letterhead"
-msgstr "Stampa con carta intestata"
+msgstr ""
-#: printing/page/print/print.js:803
+#: frappe/printing/page/print/print.js:830
msgid "Printer"
-msgstr "Stampante"
+msgstr ""
-#: printing/page/print/print.js:780
+#: frappe/printing/page/print/print.js:807
msgid "Printer Mapping"
-msgstr "Mappatura della stampante"
+msgstr ""
-#. Label of a Select field in DocType 'Network Printer Settings'
-#: printing/doctype/network_printer_settings/network_printer_settings.json
-msgctxt "Network Printer Settings"
+#. Label of the printer_name (Select) field in DocType 'Network Printer
+#. Settings'
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Printer Name"
-msgstr "Nome della stampante"
+msgstr ""
-#: printing/page/print/print.js:772
+#: frappe/printing/page/print/print.js:799
msgid "Printer Settings"
-msgstr "Impostazioni della stampante"
+msgstr ""
-#: printing/page/print/print.js:538
+#: frappe/printing/page/print/print.js:548
msgid "Printer mapping not set."
msgstr ""
#. Label of a Card Break in the Tools Workspace
-#: automation/workspace/tools/tools.json
+#: frappe/automation/workspace/tools/tools.json
msgid "Printing"
-msgstr "Stampa"
+msgstr ""
-#: utils/print_format.py:179
+#: frappe/utils/print_format.py:291
msgid "Printing failed"
-msgstr "Stampa fallita"
+msgstr ""
-#: desk/report/todo/todo.py:37 public/js/frappe/form/sidebar/assign_to.js:184
+#. Label of the priority (Int) field in DocType 'Assignment Rule'
+#. Label of the priority (Int) field in DocType 'Document Naming Rule'
+#. Label of the priority (Select) field in DocType 'ToDo'
+#. Label of the priority (Int) field in DocType 'Email Queue'
+#. Label of the idx (Int) field in DocType 'Web Page'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:37
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:211
+#: frappe/website/doctype/web_page/web_page.json
msgid "Priority"
-msgstr "Priorità"
-
-#. Label of a Int field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Priority"
-msgstr "Priorità"
-
-#. Label of a Int field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
-msgid "Priority"
-msgstr "Priorità"
-
-#. Label of a Int field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Priority"
-msgstr "Priorità"
-
-#. Label of a Select field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Priority"
-msgstr "Priorità"
-
-#. Label of a Int field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Priority"
-msgstr "Priorità"
-
-#: desk/doctype/note/note_list.js:8
-msgid "Private"
-msgstr "Privato"
-
-#. Label of a Check field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
-msgid "Private"
-msgstr "Privato"
+msgstr ""
+#. Label of the private (Check) field in DocType 'Custom HTML Block'
#. Option for the 'Event Type' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the private (Check) field in DocType 'Kanban Board'
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/note/note_list.js:8
+#: frappe/public/js/frappe/file_uploader/FilePreview.vue:35
msgid "Private"
-msgstr "Privato"
+msgstr ""
-#. Label of a Check field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Private"
-msgstr "Privato"
+#. 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 ""
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference"
-msgstr "PROTIP: Aggiungere Reference: {{ reference_doctype }} {{ reference_name }} inviare riferimento del documento"
+msgstr ""
-#: core/doctype/document_naming_rule/document_naming_rule.js:22
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22
msgid "Proceed"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:854
+#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
-msgstr "Procedere comunque"
+msgstr ""
-#: public/js/frappe/form/controls/table.js:88
+#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
-msgstr "in lavorazione"
+msgstr ""
-#: email/doctype/email_queue/email_queue.py:407
+#: frappe/email/doctype/email_queue/email_queue_list.js:52
msgid "Processing..."
-msgstr "In lavorazione..."
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:51
+msgid "Prof"
+msgstr ""
#. Group in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Profile"
msgstr ""
-#: public/js/frappe/socketio_client.js:78
+#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
-msgstr "Progresso"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:405
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
msgid "Project"
-msgstr "Progetto"
+msgstr ""
-#. Label of a Data field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#. Label of the property (Data) field in DocType 'Property Setter'
+#: frappe/core/doctype/version/version_view.html:12
+#: frappe/core/doctype/version/version_view.html:37
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
-msgstr "Proprietà"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the property_depends_on_section (Section Break) field in DocType
+#. 'Customize Form Field'
+#. Label of the property_depends_on_section (Section Break) field in DocType
+#. 'Web Form Field'
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Property Depends On"
-msgstr "La proprietà dipende da"
-
-#. Label of a Section Break field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Property Depends On"
-msgstr "La proprietà dipende da"
+msgstr ""
#. Name of a DocType
-#: custom/doctype/property_setter/property_setter.json
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property Setter"
-msgstr "Setter Proprietà"
+msgstr ""
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Property Setter"
-msgstr "Setter Proprietà"
+#. Description of a DocType
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "Property Setter overrides a standard DocType or Field property"
+msgstr ""
-#. Label of a Data field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#. Label of the property_type (Data) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property Type"
-msgstr "Tipo di proprietà"
+msgstr ""
+
+#. Label of the protect_attached_files (Check) field in DocType 'DocType'
+#. Label of the protect_attached_files (Check) field in DocType 'Customize
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Protect Attached Files"
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:501
+msgid "Protected File"
+msgstr ""
#. Description of the 'Allowed File Extensions' (Small Text) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Provide a list of allowed file extensions for file uploads. Each line should contain one allowed file type. If unset, all file extensions are allowed. Example:
CSV
JPG
PNG"
msgstr ""
-#. Label of a Data field in DocType 'User Social Login'
-#: core/doctype/user_social_login/user_social_login.json
-msgctxt "User Social Login"
+#. Label of the provider (Data) field in DocType 'User Social Login'
+#. Label of the provider (Select) field in DocType 'Geolocation Settings'
+#: frappe/core/doctype/user_social_login/user_social_login.json
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
msgid "Provider"
-msgstr "Provider"
+msgstr ""
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. 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 "Nome del provider"
-
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
-msgid "Provider Name"
-msgstr "Nome del provider"
-
-#. Label of a Data field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "Provider Name"
-msgstr "Nome del provider"
-
-#: desk/doctype/note/note_list.js:6 public/js/frappe/views/interaction.js:78
-#: public/js/frappe/views/workspace/workspace.js:613
-#: public/js/frappe/views/workspace/workspace.js:941
-#: public/js/frappe/views/workspace/workspace.js:1187
-msgid "Public"
-msgstr "Pubblico"
+msgstr ""
#. Option for the 'Event Type' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "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 "Pubblico"
+msgstr ""
-#. Label of a Check field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
-msgid "Public"
-msgstr "Pubblico"
+#. 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 ""
-#. Label of a Check field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Public"
-msgstr "Pubblico"
-
-#: website/doctype/blog_post/blog_post.js:36
-#: website/doctype/web_form/web_form.js:77
+#. Label of the publish (Check) field in DocType 'Package Release'
+#: frappe/core/doctype/package_release/package_release.json
+#: frappe/public/js/frappe/form/footer/form_timeline.js:632
+#: frappe/website/doctype/blog_post/blog_post.js:36
+#: frappe/website/doctype/web_form/web_form.js:86
msgid "Publish"
-msgstr "Pubblicare"
+msgstr ""
-#. Label of a Check field in DocType 'Package Release'
-#: core/doctype/package_release/package_release.json
-msgctxt "Package Release"
-msgid "Publish"
-msgstr "Pubblicare"
-
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
+#. 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Publish as a web page"
msgstr ""
-#: website/doctype/blog_post/blog_post_list.js:5
-#: website/doctype/web_form/web_form_list.js:5
-#: website/doctype/web_page/web_page_list.js:5
+#. Label of the published (Check) field in DocType 'Comment'
+#. Label of the published (Check) field in DocType 'Newsletter'
+#. Label of the published (Check) field in DocType 'Blog Category'
+#. Label of the published (Check) field in DocType 'Blog Post'
+#. Label of the published (Check) field in DocType 'Help Article'
+#. 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/email/doctype/newsletter/newsletter.json
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/blog_post/blog_post_list.js:5
+#: frappe/website/doctype/help_article/help_article.json
+#: frappe/website/doctype/help_category/help_category.json
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_form/web_form_list.js:5
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/web_page/web_page_list.js:5
msgid "Published"
-msgstr "Pubblicato"
+msgstr ""
-#. Label of a Check field in DocType 'Blog Category'
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
-msgid "Published"
-msgstr "Pubblicato"
-
-#. Label of a Check field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Published"
-msgstr "Pubblicato"
-
-#. Label of a Check field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Published"
-msgstr "Pubblicato"
-
-#. Label of a Check field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
-msgid "Published"
-msgstr "Pubblicato"
-
-#. Label of a Check field in DocType 'Help Category'
-#: website/doctype/help_category/help_category.json
-msgctxt "Help Category"
-msgid "Published"
-msgstr "Pubblicato"
-
-#. Label of a Check field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Published"
-msgstr "Pubblicato"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Published"
-msgstr "Pubblicato"
-
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Published"
-msgstr "Pubblicato"
-
-#. Label of a Date field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the published_on (Date) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Published On"
-msgstr "Edizione del"
+msgstr ""
-#: website/doctype/blog_post/templates/blog_post.html:59
+#: frappe/website/doctype/blog_post/templates/blog_post.html:59
msgid "Published on"
-msgstr "pubblicato su"
+msgstr ""
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the publishing_dates_section (Section Break) field in DocType 'Web
+#. Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Publishing Dates"
msgstr ""
-#: email/doctype/email_account/email_account.js:164
+#: frappe/email/doctype/email_account/email_account.js:208
msgid "Pull Emails"
msgstr ""
-#. Label of a Check field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Label of the pull_from_google_calendar (Check) field in DocType 'Google
+#. Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Pull from Google Calendar"
-msgstr "Estrai da Google Calendar"
+msgstr ""
-#. Label of a Check field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
+#. Label of the pull_from_google_contacts (Check) field in DocType 'Google
+#. Contacts'
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Pull from Google Contacts"
-msgstr "Estrai dai Contatti di Google"
+msgstr ""
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the pulled_from_google_calendar (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Pulled from Google Calendar"
-msgstr "Estratto da Google Calendar"
+msgstr ""
-#. Label of a Check field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Pulled from Google Contacts"
-msgstr "Estratto da Contatti Google"
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.js:209
+msgid "Pulling emails..."
+msgstr ""
#. Name of a role
-#: contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/contact/contact.json
msgid "Purchase Manager"
-msgstr "Responsabile Acquisti"
+msgstr ""
#. Name of a role
-#: contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/contact/contact.json
msgid "Purchase Master Manager"
-msgstr "Direttore Acquisti"
+msgstr ""
#. Name of a role
-#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json
-#: geo/doctype/currency/currency.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/geo/doctype/currency/currency.json
msgid "Purchase User"
-msgstr "Utente Acquisti"
+msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Purple"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Purple"
msgstr ""
-#. Label of a Check field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Name of a DocType
+#. Label of a Link in the Integrations Workspace
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Push Notification Settings"
+msgstr ""
+
+#. Label of a Card Break in the Integrations Workspace
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Push Notifications"
+msgstr ""
+
+#. Label of the push_to_google_calendar (Check) field in DocType 'Google
+#. Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Push to Google Calendar"
-msgstr "Invia a Google Calendar"
+msgstr ""
-#. Label of a Check field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
+#. Label of the push_to_google_contacts (Check) field in DocType 'Google
+#. Contacts'
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Push to Google Contacts"
-msgstr "Invia a Contatti Google"
+msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23
msgid "Put on Hold"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#: frappe/desk/doctype/system_console/system_console.json
msgid "Python"
msgstr ""
-#: www/qrcode.html:3
+#: frappe/www/qrcode.html:3
msgid "QR Code"
-msgstr "QR Code"
+msgstr ""
-#: www/qrcode.html:6
+#: frappe/www/qrcode.html:6
msgid "QR Code for Login Verification"
-msgstr "Codice QR per la verifica di accesso"
+msgstr ""
-#: public/js/frappe/form/print_utils.js:204
+#: frappe/public/js/frappe/form/print_utils.js:206
msgid "QZ Tray Failed: "
-msgstr "Vassoio QZ non riuscito:"
-
-#: public/js/frappe/utils/common.js:401
-msgid "Quarterly"
-msgstr "Trimestralmente"
-
-#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Quarterly"
-msgstr "Trimestralmente"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Quarterly"
-msgstr "Trimestralmente"
-
#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Option for the 'Repeat On' (Select) field in DocType 'Event'
+#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/utils/common.js:401
msgid "Quarterly"
-msgstr "Trimestralmente"
+msgstr ""
-#. Label of a Data field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
+#. Label of the query (Data) field in DocType 'Recorder Query'
+#. Label of the query (Code) field in DocType 'Report'
+#: frappe/core/doctype/recorder_query/recorder_query.json
+#: frappe/core/doctype/report/report.json
msgid "Query"
-msgstr "Query"
+msgstr ""
-#. Label of a Code field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Query"
-msgstr "Query"
-
-#. Label of a Section Break field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#. Label of the section_break_6 (Section Break) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
msgid "Query / Script"
-msgstr "Query / Script"
+msgstr ""
-#. Label of a Small Text field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the query_options (Small Text) field in DocType 'Contact Us
+#. Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Query Options"
-msgstr "Opzioni query"
+msgstr ""
+#. Label of the query_parameters (Table) field in DocType 'Connected App'
#. Name of a DocType
-#: integrations/doctype/query_parameters/query_parameters.json
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/query_parameters/query_parameters.json
msgid "Query Parameters"
msgstr ""
-#. Label of a Table field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
-msgid "Query Parameters"
-msgstr ""
-
-#: public/js/frappe/views/reports/query_report.js:17
-msgid "Query Report"
-msgstr "Report sulle query"
-
#. Option for the 'Report Type' (Select) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#: frappe/core/doctype/report/report.json
+#: frappe/public/js/frappe/views/reports/query_report.js:17
msgid "Query Report"
-msgstr "Report sulle query"
+msgstr ""
-#: utils/safe_exec.py:437
+#: frappe/core/doctype/recorder/recorder.py:188
+msgid "Query analysis complete. Check suggested indexes."
+msgstr ""
+
+#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
-#. Label of a Select field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the queue (Select) field in DocType 'RQ Job'
+#. Label of the queue (Data) field in DocType 'System Health Report Queue'
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
msgid "Queue"
msgstr ""
-#. Label of a Select field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#: frappe/utils/background_jobs.py:731
+msgid "Queue Overloaded"
+msgstr ""
+
+#. Label of the queue_status (Table) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Queue Status"
+msgstr ""
+
+#. Label of the queue_type (Select) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Queue Type(s)"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the queue_in_background (Check) field in DocType 'DocType'
+#. Label of the queue_in_background (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Queue in Background (BETA)"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Queue in Background (BETA)"
-msgstr ""
-
-#: utils/background_jobs.py:473
+#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
-msgstr "La coda dovrebbe essere una delle {0}"
+msgstr ""
-#. Label of a Data field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the queue (Data) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Queue(s)"
msgstr ""
-#: email/doctype/newsletter/newsletter.js:208
-msgid "Queued"
-msgstr "In coda"
-
-#. Option for the 'Status' (Select) field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Queued"
-msgstr "In coda"
-
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
-msgid "Queued"
-msgstr "In coda"
-
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
+#. Option for the 'Status' (Select) field in DocType 'Integration Request'
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/email/doctype/newsletter/newsletter.js:208
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
-msgstr "In coda"
+msgstr ""
-#. Label of a Datetime field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Label of the queued_at (Datetime) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Queued At"
msgstr ""
-#. Label of a Data field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#. Label of the queued_by (Data) field in DocType 'Prepared Report'
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Queued By"
msgstr ""
-#: core/doctype/submission_queue/submission_queue.py:173
+#: frappe/core/doctype/submission_queue/submission_queue.py:174
msgid "Queued for Submission. You can track the progress over {0}."
msgstr ""
-#: integrations/doctype/dropbox_settings/dropbox_settings.py:64
-#: integrations/doctype/google_drive/google_drive.py:156
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.py:81
-msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr "In coda per il backup. Si può richiedere alcuni minuti a un'ora."
-
-#: desk/page/backups/backups.py:96
+#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
-msgstr "In coda per il backup. Riceverai un'e-mail con il link di download"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:95
+#: frappe/email/doctype/newsletter/newsletter.js:95
msgid "Queued {0} emails"
msgstr ""
-#: email/doctype/newsletter/newsletter.js:90
+#. Label of the queues (Data) field in DocType 'System Health Report Workers'
+#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
+msgid "Queues"
+msgstr ""
+
+#: frappe/email/doctype/newsletter/newsletter.js:90
msgid "Queuing emails..."
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.py:88
+#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the quick_entry (Check) field in DocType 'DocType'
+#. Label of the quick_entry (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Quick Entry"
-msgstr "Inserimento rapido"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Quick Entry"
-msgstr "Inserimento rapido"
+#: frappe/core/page/permission_manager/permission_manager_help.html:3
+msgid "Quick Help for Setting Permissions"
+msgstr ""
-#. Label of a Code field in DocType 'Workspace Quick List'
-#: desk/doctype/workspace_quick_list/workspace_quick_list.json
-msgctxt "Workspace Quick List"
+#. Label of the quick_list_filter (Code) field in DocType 'Workspace Quick
+#. List'
+#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
msgid "Quick List Filter"
msgstr ""
-#. Label of a Tab Break field in DocType 'Workspace'
-#. Label of a Table field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the quick_lists_tab (Tab Break) field in DocType 'Workspace'
+#. Label of the quick_lists (Table) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Quick Lists"
msgstr ""
-#: public/js/frappe/views/reports/report_utils.js:280
+#: frappe/public/js/frappe/views/reports/report_utils.js:304
msgid "Quoting must be between 0 and 3"
msgstr ""
-#. Label of a Section Break field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the raw_information_log_section (Section Break) field in DocType
+#. 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "RAW Information Log"
-msgstr "Registro informazioni RAW"
+msgstr ""
#. Name of a DocType
-#: core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "RQ Job"
msgstr ""
#. Name of a DocType
-#: core/doctype/rq_worker/rq_worker.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "RQ Worker"
msgstr ""
-#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Random"
-msgstr ""
-
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Random"
msgstr ""
-#: website/report/website_analytics/website_analytics.js:20
+#: frappe/website/report/website_analytics/website_analytics.js:20
msgid "Range"
-msgstr "Intervallo"
+msgstr ""
-#. Label of a Section Break field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the rate_limiting_section (Section Break) field in DocType 'Server
+#. Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Rate Limiting"
msgstr ""
-#. Label of a Section Break field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the section_break_12 (Section Break) field in DocType 'Blog
+#. Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Rate Limits"
msgstr ""
-#. Label of a Int field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Rating"
-msgstr "Valutazione"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Rating"
-msgstr "Valutazione"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Rating"
-msgstr "Valutazione"
+#. Label of the rate_limit_email_link_login (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Rate limit for email link login"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Rating"
-msgstr "Valutazione"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Rating"
-msgstr "Valutazione"
+msgstr ""
-#: printing/doctype/print_format/print_format.py:89
+#. Label of the raw_commands (Code) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format/print_format.py:89
msgid "Raw Commands"
-msgstr "Comandi grezzi"
+msgstr ""
-#. Label of a Code field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Raw Commands"
-msgstr "Comandi grezzi"
-
-#. Label of a Code field in DocType 'Unhandled Email'
-#: email/doctype/unhandled_email/unhandled_email.json
-msgctxt "Unhandled Email"
+#. Label of the raw (Code) field in DocType 'Unhandled Email'
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Raw Email"
-msgstr "Raw-mail"
+msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the raw_printing (Check) field in DocType 'Print Format'
+#. Label of the raw_printing_section (Section Break) field in DocType 'Print
+#. Settings'
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Raw Printing"
-msgstr "Stampa grezza"
+msgstr ""
-#. Label of a Section Break field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
-msgid "Raw Printing"
-msgstr "Stampa grezza"
-
-#: printing/page/print/print.js:165
+#: frappe/printing/page/print/print.js:165
msgid "Raw Printing Setting"
msgstr ""
-#: desk/doctype/console_log/console_log.js:6
+#: frappe/public/js/frappe/form/templates/print_layout.html:37
+msgid "Raw Printing Settings"
+msgstr ""
+
+#: frappe/desk/doctype/console_log/console_log.js:6
msgid "Re-Run in Console"
msgstr ""
-#: email/doctype/email_account/email_account.py:630
+#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
msgstr ""
-#: core/doctype/communication/communication.js:268
-#: public/js/frappe/form/footer/form_timeline.js:564
-#: public/js/frappe/views/communication.js:257
+#: frappe/core/doctype/communication/communication.js:268
+#: frappe/public/js/frappe/form/footer/form_timeline.js:600
+#: frappe/public/js/frappe/views/communication.js:364
msgid "Re: {0}"
-msgstr "Re: {0}"
-
-#: client.py:459
-msgid "Read"
-msgstr "Leggi"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Read"
-msgstr "Leggi"
-
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Read"
-msgstr "Leggi"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Read"
-msgstr "Leggi"
-
-#. Label of a Check field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "Read"
-msgstr "Leggi"
-
+#. Label of the read (Check) field in DocType 'Custom DocPerm'
+#. Label of the read (Check) field in DocType 'DocPerm'
+#. Label of the read (Check) field in DocType 'DocShare'
+#. Label of the read (Check) field in DocType 'User Document Type'
+#. Label of the read (Check) field in DocType 'Notification Log'
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
+#: frappe/client.py:450 frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
msgid "Read"
-msgstr "Leggi"
-
-#. Label of a Check field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "Read"
-msgstr "Leggi"
-
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Read"
-msgstr "Leggi"
-
-#: public/js/form_builder/form_builder.bundle.js:83
-msgid "Read Only"
-msgstr "Solo lettura"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Read Only"
-msgstr "Solo lettura"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Read Only"
-msgstr "Solo lettura"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the read_only (Check) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Label of the read_only (Check) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the read_only (Check) field in DocType 'Customize Form Field'
+#. Label of the read_only (Check) field in DocType 'Web Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/public/js/form_builder/form_builder.bundle.js:83
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Read Only"
-msgstr "Solo lettura"
+msgstr ""
-#. Label of a Check field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Read Only"
-msgstr "Solo lettura"
-
-#. Label of a Code field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the read_only_depends_on (Code) field in DocType 'Custom Field'
+#. Label of the read_only_depends_on (Code) field in DocType 'Customize Form
+#. Field'
+#. Label of the read_only_depends_on (Code) field in DocType 'Web Form Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Read Only Depends On"
-msgstr "La sola lettura dipende da"
+msgstr ""
-#. Label of a Code field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Read Only Depends On"
-msgstr "La sola lettura dipende da"
-
-#. Label of a Code field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Read Only Depends On"
-msgstr "La sola lettura dipende da"
-
-#. Label of a Code field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the read_only_depends_on (Code) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Read Only Depends On (JS)"
msgstr ""
-#: templates/includes/navbar/navbar_items.html:97
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:16
+#: frappe/templates/includes/navbar/navbar_items.html:97
msgid "Read Only Mode"
msgstr ""
-#. Label of a Int field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#. Label of the read_time (Int) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "Read Time"
-msgstr "Tempo per leggere"
+msgstr ""
-#. Label of a Check field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the read_by_recipient (Check) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Read by Recipient"
-msgstr "Leggi per destinatario"
+msgstr ""
-#. Label of a Datetime field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the read_by_recipient_on (Datetime) field in DocType
+#. 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Read by Recipient On"
-msgstr "Leggi dal destinatario attivato"
+msgstr ""
-#: desk/doctype/note/note.js:10
+#: frappe/desk/doctype/note/note.js:10
msgid "Read mode"
msgstr ""
-#: utils/safe_exec.py:91
+#: frappe/utils/safe_exec.py:95
msgid "Read the documentation to know more"
msgstr ""
-#. Label of a Markdown Editor field in DocType 'Package'
-#: core/doctype/package/package.json
-msgctxt "Package"
+#. Label of the readme (Markdown Editor) field in DocType 'Package'
+#: frappe/core/doctype/package/package.json
msgid "Readme"
msgstr ""
-#: public/js/frappe/form/sidebar/review.js:85
-#: social/doctype/energy_point_log/energy_point_log.js:20
-msgid "Reason"
-msgstr "Motivo"
+#. 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 a Text field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
+#. Label of the reason (Long Text) field in DocType 'Unhandled Email'
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Reason"
-msgstr "Motivo"
+msgstr ""
-#. Label of a Long Text field in DocType 'Unhandled Email'
-#: email/doctype/unhandled_email/unhandled_email.json
-msgctxt "Unhandled Email"
-msgid "Reason"
-msgstr "Motivo"
-
-#: public/js/frappe/views/reports/query_report.js:815
+#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
-msgstr "Ricostruire"
+msgstr ""
-#: public/js/frappe/views/treeview.js:492
+#: frappe/public/js/frappe/views/treeview.js:509
msgid "Rebuild Tree"
msgstr ""
-#: utils/nestedset.py:180
+#: frappe/utils/nestedset.py:177
msgid "Rebuilding of tree is not supported for {}"
msgstr ""
-#. Description of the 'Anonymous' (Check) field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Receive anonymous response"
+#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Received"
msgstr ""
-#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Received"
-msgstr "Ricevuto"
-
-#: integrations/doctype/token_cache/token_cache.py:49
+#: frappe/integrations/doctype/token_cache/token_cache.py:49
msgid "Received an invalid token type."
msgstr ""
-#. Label of a Select field in DocType 'Notification Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
+#. Label of the receiver_by_document_field (Select) field in DocType
+#. 'Notification Recipient'
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Receiver By Document Field"
-msgstr "Destinatario per campo documento"
+msgstr ""
-#. Label of a Link field in DocType 'Notification Recipient'
-#: email/doctype/notification_recipient/notification_recipient.json
-msgctxt "Notification Recipient"
+#. Label of the receiver_by_role (Link) field in DocType 'Notification
+#. Recipient'
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Receiver By Role"
-msgstr "Ricevitore per ruolo"
+msgstr ""
-#. Label of a Data field in DocType 'SMS Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#. Label of the receiver_parameter (Data) field in DocType 'SMS Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Receiver Parameter"
-msgstr "Ricevitore Parametro"
+msgstr ""
-#: utils/password_strength.py:125
+#: frappe/utils/password_strength.py:123
msgid "Recent years are easy to guess."
-msgstr "Negli ultimi anni sono facili da indovinare."
+msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:516
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532
msgid "Recents"
msgstr ""
-#. Label of a Table field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#. Label of the recipients (Table) field in DocType 'Email Queue'
+#. Label of the recipient (Data) field in DocType 'Email Queue Recipient'
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
msgid "Recipient"
-msgstr "Destinatario"
-
-#. Label of a Data field in DocType 'Email Queue Recipient'
-#: email/doctype/email_queue_recipient/email_queue_recipient.json
-msgctxt "Email Queue Recipient"
-msgid "Recipient"
-msgstr "Destinatario"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Recipient Unsubscribed"
-msgstr "Destinatario Sottoscritta"
+msgstr ""
-#. Label of a Small Text field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the recipients (Small Text) field in DocType 'Auto Repeat'
+#. Label of the column_break_5 (Section Break) field in DocType 'Notification'
+#. Label of the recipients (Table) field in DocType 'Notification'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/email/doctype/notification/notification.json
msgid "Recipients"
-msgstr "Destinatari"
-
-#. Label of a Section Break field in DocType 'Notification'
-#. Label of a Table field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Recipients"
-msgstr "Destinatari"
+msgstr ""
#. Name of a DocType
-#: core/doctype/recorder/recorder.json
+#: frappe/core/doctype/recorder/recorder.json
msgid "Recorder"
-msgstr "Registratore"
+msgstr ""
#. Name of a DocType
-#: core/doctype/recorder_query/recorder_query.json
+#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Recorder Query"
msgstr ""
+#. Name of a DocType
+#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
+msgid "Recorder Suggested Index"
+msgstr ""
+
+#: frappe/core/doctype/user_permission/user_permission_help.html:2
+msgid "Records for following doctypes will be filtered"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1608
+msgid "Recursive Fetch From"
+msgstr ""
+
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Red"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Red"
msgstr ""
-#. Label of a Select field in DocType 'Website Route Redirect'
-#: website/doctype/website_route_redirect/website_route_redirect.json
-msgctxt "Website Route Redirect"
+#. Label of the redirect_http_status (Select) field in DocType 'Website Route
+#. Redirect'
+#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
msgid "Redirect HTTP Status"
msgstr ""
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the redirect_uri (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Redirect URI"
msgstr ""
-#. Label of a Data field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. Label of the redirect_uri_bound_to_authorization_code (Data) field in
+#. DocType 'OAuth Authorization Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Redirect URI Bound To Auth Code"
-msgstr "Reindirizzamento URI destinato a codice Auth"
+msgstr ""
-#. Label of a Text field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the redirect_uris (Text) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Redirect URIs"
-msgstr "Redirect URI"
+msgstr ""
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the redirect_url (Small Text) field in DocType 'User'
+#. Label of the redirect_url (Data) field in DocType 'Social Login Key'
+#: frappe/core/doctype/user/user.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Redirect URL"
-msgstr "URL di reindirizzamento"
+msgstr ""
-#. Label of a Small Text field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Redirect URL"
-msgstr "URL di reindirizzamento"
+#. Description of the 'Default App' (Select) field in DocType 'System Settings'
+#. Description of the 'Default App' (Select) field in DocType 'User'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+msgid "Redirect to the selected app after login"
+msgstr ""
#. Description of the 'Welcome URL' (Data) field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#: frappe/email/doctype/email_group/email_group.json
msgid "Redirect to this URL after successful confirmation."
msgstr ""
-#. Label of a Tab Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Redirects"
msgstr ""
-#: sessions.py:148
+#: frappe/sessions.py:149
msgid "Redis cache server not running. Please contact Administrator / Tech support"
-msgstr "Il server di cache Redis non è in esecuzione. Si prega di contattare l'Amministratore o l'Assistenza Tecnica."
+msgstr ""
-#: public/js/frappe/form/toolbar.js:462
+#: frappe/public/js/frappe/form/toolbar.js:527
msgid "Redo"
msgstr ""
-#: public/js/frappe/form/form.js:164 public/js/frappe/form/toolbar.js:470
+#: frappe/public/js/frappe/form/form.js:164
+#: frappe/public/js/frappe/form/toolbar.js:535
msgid "Redo last action"
msgstr ""
-#. Label of a Link field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#. Label of the ref_doctype (Link) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
msgid "Ref DocType"
-msgstr "DocType Rif."
+msgstr ""
-#: desk/doctype/form_tour/form_tour.js:38
+#: frappe/desk/doctype/form_tour/form_tour.js:38
msgid "Referance Doctype and Dashboard Name both can't be used at the same time."
msgstr ""
-#: core/doctype/user_type/user_type_dashboard.py:5 desk/report/todo/todo.py:42
-#: public/js/frappe/views/interaction.js:54
+#. Label of the linked_with (Section Break) field in DocType 'Address'
+#. Label of the contact_details (Section Break) field in DocType 'Contact'
+#. Label of the reference_section (Section Break) field in DocType 'Activity
+#. Log'
+#. Label of the reference_section (Section Break) field in DocType
+#. 'Communication'
+#. Label of the reference (Dynamic Link) field in DocType 'Permission Log'
+#. Label of the section_break_6 (Section Break) field in DocType 'ToDo'
+#. Label of the reference_section (Section Break) field in DocType 'Integration
+#. Request'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/core/doctype/user_type/user_type_dashboard.py:5
+#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:42
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/public/js/frappe/views/interaction.js:54
msgid "Reference"
-msgstr "Riferimento"
+msgstr ""
-#. Label of a Section Break field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Reference"
-msgstr "Riferimento"
-
-#. Label of a Section Break field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Reference"
-msgstr "Riferimento"
-
-#. Label of a Section Break field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Reference"
-msgstr "Riferimento"
-
-#. Label of a Section Break field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Reference"
-msgstr "Riferimento"
-
-#. Label of a Section Break field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Reference"
-msgstr "Riferimento"
-
-#. Label of a Section Break field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Reference"
-msgstr "Riferimento"
-
-#. Label of a Select field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the date_changed (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Reference Date"
-msgstr "Data di riferimento"
+msgstr ""
-#. Label of a Data field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#. Label of the datetime_changed (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Reference Datetime"
+msgstr ""
+
+#. Label of the reference_name (Data) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Reference DocName"
-msgstr "Riferimento DocName"
+msgstr ""
-#. Label of a Link field in DocType 'Error Log'
-#: core/doctype/error_log/error_log.json
-msgctxt "Error Log"
+#. Label of the reference_doctype (Link) field in DocType 'Error Log'
+#. Label of the ref_doctype (Link) field in DocType 'Submission Queue'
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Reference DocType"
-msgstr "Riferimento DocType"
+msgstr ""
-#. Label of a Link field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
-msgid "Reference DocType"
-msgstr "Riferimento DocType"
-
-#: email/doctype/email_unsubscribe/email_unsubscribe.py:25
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26
msgid "Reference DocType and Reference Name are required"
-msgstr "Riferimento DocType e Nome Riferimento sono necessari"
+msgstr ""
-#. Label of a Dynamic Link field in DocType 'Discussion Topic'
-#: website/doctype/discussion_topic/discussion_topic.json
-msgctxt "Discussion Topic"
+#. Label of the ref_docname (Dynamic Link) field in DocType 'Submission Queue'
+#. Label of the reference_docname (Dynamic Link) field in DocType 'Discussion
+#. Topic'
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
msgid "Reference Docname"
-msgstr "Riferimento DocName"
+msgstr ""
-#. Label of a Dynamic Link field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
-msgid "Reference Docname"
-msgstr "Riferimento DocName"
-
-#: core/doctype/communication/communication.js:143
-#: core/report/transaction_log_report/transaction_log_report.py:88
+#. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log'
+#. Label of the reference_doctype (Link) field in DocType 'Discussion Topic'
+#: frappe/core/doctype/communication/communication.js:143
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:88
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/public/js/frappe/views/render_preview.js:34
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
msgid "Reference Doctype"
-msgstr "Riferimento DocType"
+msgstr ""
-#. Label of a Link field in DocType 'Discussion Topic'
-#: website/doctype/discussion_topic/discussion_topic.json
-msgctxt "Discussion Topic"
-msgid "Reference Doctype"
-msgstr "Riferimento DocType"
-
-#. Label of a Data field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the reference_document (Dynamic Link) field in DocType 'Auto
+#. Repeat'
+#. Label of the reference_document (Data) field in DocType 'Access Log'
+#. Label of the reference_doctype (Link) field in DocType 'Form Tour'
+#. Label of the reference_document (Link) field in DocType 'Onboarding Step'
+#. Label of the reference_document (Data) field in DocType 'Webhook Request
+#. Log'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:4
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Reference Document"
-msgstr "Documento di riferimento"
+msgstr ""
-#. Label of a Dynamic Link field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Reference Document"
-msgstr "Documento di riferimento"
-
-#. Label of a Link field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Reference Document"
-msgstr "Documento di riferimento"
-
-#. Label of a Link field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Reference Document"
-msgstr "Documento di riferimento"
-
-#. Label of a Data field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "Reference Document"
-msgstr "Documento di riferimento"
-
-#. Label of a Dynamic Link field in DocType 'Document Share Key'
-#: core/doctype/document_share_key/document_share_key.json
-msgctxt "Document Share Key"
+#. Label of the reference_docname (Dynamic Link) field in DocType 'Document
+#. Share Key'
+#. Label of the reference_docname (Dynamic Link) field in DocType 'Integration
+#. Request'
+#: frappe/core/doctype/document_share_key/document_share_key.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Reference Document Name"
msgstr ""
-#. Label of a Dynamic Link field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Reference Document Name"
+#. Label of the reference_doctype (Link) field in DocType 'Auto Repeat'
+#. Label of the reference_doctype (Link) field in DocType 'Activity Log'
+#. Label of the reference_doctype (Link) field in DocType 'Comment'
+#. Label of the reference_doctype (Link) field in DocType 'Communication'
+#. Label of the parent (Data) field in DocType 'Custom DocPerm'
+#. Label of the ref_doctype (Data) field in DocType 'Custom Role'
+#. Label of the reference_doctype (Link) field in DocType 'Document Share Key'
+#. Label of the reference_doctype (Link) field in DocType 'Server Script'
+#. Label of the ref_doctype (Link) field in DocType 'Success Action'
+#. Label of the reference_doctype (Data) field in DocType 'Transaction Log'
+#. Label of the reference_doctype (Link) field in DocType 'View Log'
+#. Label of the reference_doctype (Link) field in DocType 'Calendar View'
+#. Label of the reference_doctype (Link) field in DocType 'Event Participants'
+#. Label of the reference_doctype (Link) field in DocType 'Kanban Board'
+#. Label of the reference_doctype (Link) field in DocType 'List Filter'
+#. Label of the reference_doctype (Link) field in DocType 'Email Queue'
+#. Label of the reference_doctype (Link) field in DocType 'Email Unsubscribe'
+#. Label of the reference_doctype (Link) field in DocType 'Integration Request'
+#. Label of the reference_doctype (Link) field in DocType 'Portal Menu Item'
+#. Label of the reference_doctype (Link) field in DocType 'Workflow Action'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/custom_role/custom_role.json
+#: frappe/core/doctype/document_share_key/document_share_key.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/doctype/success_action/success_action.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/core/doctype/view_log/view_log.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+msgid "Reference Document Type"
msgstr ""
-#. Label of a Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Reference Document Type"
-msgstr "Riferimento Tipo di documento"
-
-#. Label of a Link field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Reference Document Type"
-msgstr "Riferimento Tipo di documento"
-
-#. Label of a Link field in DocType 'Calendar View'
-#: desk/doctype/calendar_view/calendar_view.json
-msgctxt "Calendar View"
-msgid "Reference Document Type"
-msgstr "Riferimento Tipo di documento"
-
-#. Label of a Link field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Reference Document Type"
-msgstr "Riferimento Tipo di documento"
-
-#. Label of a Link field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Reference Document Type"
-msgstr "Riferimento Tipo di documento"
-
-#. Label of a Data field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Reference Document Type"
-msgstr "Riferimento Tipo di documento"
-
-#. Label of a Data field in DocType 'Custom Role'
-#: core/doctype/custom_role/custom_role.json
-msgctxt "Custom Role"
-msgid "Reference Document Type"
-msgstr "Riferimento Tipo di documento"
-
-#. Label of a Link field in DocType 'Document Share Key'
-#: core/doctype/document_share_key/document_share_key.json
-msgctxt "Document Share Key"
-msgid "Reference Document Type"
-msgstr "Riferimento Tipo di documento"
-
-#. Label of a Link field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Reference Document Type"
-msgstr "Riferimento Tipo di documento"
-
-#. Label of a Link field in DocType 'Email Unsubscribe'
-#: email/doctype/email_unsubscribe/email_unsubscribe.json
-msgctxt "Email Unsubscribe"
-msgid "Reference Document Type"
-msgstr "Riferimento Tipo di documento"
-
-#. Label of a Link field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Reference Document Type"
-msgstr "Riferimento Tipo di documento"
-
-#. Label of a Link field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Reference Document Type"
-msgstr "Riferimento Tipo di documento"
-
-#. Label of a Link field in DocType 'Event Participants'
-#: desk/doctype/event_participants/event_participants.json
-msgctxt "Event Participants"
-msgid "Reference Document Type"
-msgstr "Riferimento Tipo di documento"
-
-#. Label of a Link field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Reference Document Type"
-msgstr "Riferimento Tipo di documento"
-
-#. Label of a Link field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Reference Document Type"
-msgstr "Riferimento Tipo di documento"
-
-#. Label of a Link field in DocType 'List Filter'
-#: desk/doctype/list_filter/list_filter.json
-msgctxt "List Filter"
-msgid "Reference Document Type"
-msgstr "Riferimento Tipo di documento"
-
-#. Label of a Link field in DocType 'Portal Menu Item'
-#: website/doctype/portal_menu_item/portal_menu_item.json
-msgctxt "Portal Menu Item"
-msgid "Reference Document Type"
-msgstr "Riferimento Tipo di documento"
-
-#. Label of a Link field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Reference Document Type"
-msgstr "Riferimento Tipo di documento"
-
-#. Label of a Link field in DocType 'Success Action'
-#: core/doctype/success_action/success_action.json
-msgctxt "Success Action"
-msgid "Reference Document Type"
-msgstr "Riferimento Tipo di documento"
-
-#. Label of a Data field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Reference Document Type"
-msgstr "Riferimento Tipo di documento"
-
-#. Label of a Link field in DocType 'View Log'
-#: core/doctype/view_log/view_log.json
-msgctxt "View Log"
-msgid "Reference Document Type"
-msgstr "Riferimento Tipo di documento"
-
-#. Label of a Link field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
-msgid "Reference Document Type"
-msgstr "Riferimento Tipo di documento"
-
-#: core/doctype/communication/communication.js:152
-#: core/report/transaction_log_report/transaction_log_report.py:94
+#. Label of the reference_name (Dynamic Link) field in DocType 'Activity Log'
+#. Label of the reference_name (Dynamic Link) field in DocType 'Comment'
+#. Label of the reference_name (Dynamic Link) field in DocType 'Communication'
+#. Label of the docname (Data) field in DocType 'Data Import Log'
+#. Label of the reference_name (Data) field in DocType 'Error Log'
+#. Label of the reference_docname (Dynamic Link) field in DocType 'Event
+#. Participants'
+#. Label of the reference_name (Dynamic Link) field in DocType 'ToDo'
+#. Label of the reference_name (Dynamic Link) field in DocType 'Email
+#. Unsubscribe'
+#. Label of the reference_name (Dynamic Link) field in DocType 'Workflow
+#. Action'
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/communication/communication.js:152
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/data_import_log/data_import_log.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:94
+#: frappe/desk/doctype/event_participants/event_participants.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Reference Name"
-msgstr "nome di riferimento"
+msgstr ""
-#. Label of a Dynamic Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Reference Name"
-msgstr "nome di riferimento"
-
-#. Label of a Dynamic Link field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Reference Name"
-msgstr "nome di riferimento"
-
-#. Label of a Dynamic Link field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Reference Name"
-msgstr "nome di riferimento"
-
-#. Label of a Data field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
-msgid "Reference Name"
-msgstr "nome di riferimento"
-
-#. Label of a Dynamic Link field in DocType 'Email Unsubscribe'
-#: email/doctype/email_unsubscribe/email_unsubscribe.json
-msgctxt "Email Unsubscribe"
-msgid "Reference Name"
-msgstr "nome di riferimento"
-
-#. Label of a Data field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Reference Name"
-msgstr "nome di riferimento"
-
-#. Label of a Data field in DocType 'Error Log'
-#: core/doctype/error_log/error_log.json
-msgctxt "Error Log"
-msgid "Reference Name"
-msgstr "nome di riferimento"
-
-#. Label of a Dynamic Link field in DocType 'Event Participants'
-#: desk/doctype/event_participants/event_participants.json
-msgctxt "Event Participants"
-msgid "Reference Name"
-msgstr "nome di riferimento"
-
-#. Label of a Dynamic Link field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Reference Name"
-msgstr "nome di riferimento"
-
-#. Label of a Dynamic Link field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
-msgid "Reference Name"
-msgstr "nome di riferimento"
-
-#. Label of a Read Only field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. 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 "Riferimento proprietario"
+msgstr ""
-#. Label of a Data field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Reference Owner"
-msgstr "Riferimento proprietario"
-
-#. Label of a Read Only field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Reference Owner"
-msgstr "Riferimento proprietario"
-
-#. Label of a Data field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the reference_report (Data) field in DocType 'Report'
+#. Label of the reference_report (Link) field in DocType 'Onboarding Step'
+#. Label of the reference_report (Data) field in DocType 'Auto Email Report'
+#: frappe/core/doctype/report/report.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Reference Report"
-msgstr "Rapporto di riferimento"
+msgstr ""
-#. Label of a Link field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Reference Report"
-msgstr "Rapporto di riferimento"
-
-#. Label of a Data field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Reference Report"
-msgstr "Rapporto di riferimento"
-
-#. Label of a Link field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
+#. Label of the reference_type (Link) field in DocType 'Permission Log'
+#. Label of the reference_type (Link) field in DocType 'ToDo'
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/desk/doctype/todo/todo.json
msgid "Reference Type"
-msgstr "Tipo di riferimento"
+msgstr ""
-#: social/doctype/energy_point_rule/energy_point_rule.py:144
-msgid "Reference document has been cancelled"
-msgstr "Il documento di riferimento è stato cancellato"
-
-#. Label of a Dynamic Link field in DocType 'View Log'
-#: core/doctype/view_log/view_log.json
-msgctxt "View Log"
+#. Label of the reference_name (Dynamic Link) field in DocType 'View Log'
+#: frappe/core/doctype/view_log/view_log.json
msgid "Reference name"
-msgstr "Nome di riferimento"
+msgstr ""
-#: templates/emails/auto_reply.html:3
+#: frappe/templates/emails/auto_reply.html:3
msgid "Reference: {0} {1}"
-msgstr "Riferimento: {0} {1}"
+msgstr ""
-#: website/report/website_analytics/website_analytics.js:37
+#. Label of the referrer (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:37
msgid "Referrer"
-msgstr "Referrer"
+msgstr ""
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Referrer"
-msgstr "Referrer"
-
-#: printing/page/print/print.js:73 public/js/frappe/desk.js:133
-#: public/js/frappe/form/form.js:1174 public/js/frappe/list/base_list.js:65
-#: public/js/frappe/views/reports/query_report.js:1612
-#: public/js/frappe/views/treeview.js:479
-#: public/js/frappe/widgets/chart_widget.js:290
-#: public/js/frappe/widgets/number_card_widget.js:307
+#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
+#: frappe/public/js/frappe/desk.js:556
+#: frappe/public/js/frappe/form/form.js:1201
+#: frappe/public/js/frappe/form/templates/print_layout.html:6
+#: frappe/public/js/frappe/list/base_list.js:66
+#: frappe/public/js/frappe/views/reports/query_report.js:1719
+#: frappe/public/js/frappe/views/treeview.js:496
+#: frappe/public/js/frappe/widgets/chart_widget.js:291
+#: frappe/public/js/frappe/widgets/number_card_widget.js:340
+#: frappe/public/js/print_format_builder/Preview.vue:24
msgid "Refresh"
-msgstr "Aggiorna"
+msgstr ""
-#: core/page/dashboard_view/dashboard_view.js:177
+#: frappe/core/page/dashboard_view/dashboard_view.js:177
msgid "Refresh All"
-msgstr "Aggiorna tutto"
+msgstr ""
-#. Label of a Button field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the refresh_google_sheet (Button) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Refresh Google Sheet"
-msgstr "Aggiorna foglio Google"
+msgstr ""
-#. Label of a Password field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Label of the refresh_token (Password) field in DocType 'Google Calendar'
+#. Label of the refresh_token (Password) field in DocType 'Google Contacts'
+#. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token'
+#. Label of the refresh_token (Password) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
-msgstr "Aggiorna Token"
+msgstr ""
-#. Label of a Password field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
-msgid "Refresh Token"
-msgstr "Aggiorna Token"
+#: frappe/public/js/frappe/list/list_view.js:531
+msgctxt "Document count in list view"
+msgid "Refreshing"
+msgstr ""
-#. Label of a Data field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Refresh Token"
-msgstr "Aggiorna Token"
-
-#. Label of a Data field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
-msgid "Refresh Token"
-msgstr "Aggiorna Token"
-
-#. Label of a Password field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "Refresh Token"
-msgstr "Aggiorna Token"
-
-#: core/doctype/system_settings/system_settings.js:52
-#: core/doctype/user/user.js:345 desk/page/setup_wizard/setup_wizard.js:204
+#: frappe/core/doctype/system_settings/system_settings.js:57
+#: frappe/core/doctype/user/user.js:368
+#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
-msgstr "Aggiornamento ..."
+msgstr ""
-#: core/doctype/user/user.py:979
+#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
-msgstr "Registrato ma disabilitato"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Rejected"
-msgstr "Rifiutato"
-
#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/translation/translation.json
msgid "Rejected"
-msgstr "Rifiutato"
+msgstr ""
+
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:30
+msgid "Relay Server URL missing"
+msgstr ""
+
+#. Label of the section_break_qgjr (Section Break) field in DocType 'Push
+#. Notification Settings'
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "Relay Settings"
+msgstr ""
#. Group in Package's connections
-#: core/doctype/package/package.json
-msgctxt "Package"
+#: frappe/core/doctype/package/package.json
msgid "Release"
msgstr ""
-#. Label of a Markdown Editor field in DocType 'Package Release'
-#: core/doctype/package_release/package_release.json
-msgctxt "Package Release"
+#. Label of the release_notes (Markdown Editor) field in DocType 'Package
+#. Release'
+#: frappe/core/doctype/package_release/package_release.json
msgid "Release Notes"
msgstr ""
-#: core/doctype/communication/communication.js:48
-#: core/doctype/communication/communication.js:159
+#: frappe/core/doctype/communication/communication.js:48
+#: frappe/core/doctype/communication/communication.js:159
msgid "Relink"
-msgstr "ricollegare"
+msgstr ""
-#: core/doctype/communication/communication.js:138
+#: frappe/core/doctype/communication/communication.js:138
msgid "Relink Communication"
-msgstr "Comunicazione Relink"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Relinked"
-msgstr "Ricollegato"
-
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Relinked"
-msgstr "Ricollegato"
+msgstr ""
#. Label of a standard navbar item
#. Type: Action
-#: custom/doctype/customize_form/customize_form.js:120 hooks.py
-#: public/js/frappe/form/toolbar.js:408
+#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
+#: frappe/public/js/frappe/form/toolbar.js:444
msgid "Reload"
-msgstr "Aggiorna"
+msgstr ""
-#: public/js/frappe/list/base_list.js:239
+#: frappe/public/js/frappe/form/controls/attach.js:16
+msgid "Reload File"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:249
msgid "Reload List"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:99
+#: frappe/public/js/frappe/views/reports/query_report.js:100
msgid "Reload Report"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
+#. Label of the remember_last_selected_value (Check) field in DocType
+#. 'DocField'
+#. Label of the remember_last_selected_value (Check) field in DocType
+#. 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Remember Last Selected Value"
-msgstr "Ricorda ultimo valore selezionato"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Remember Last Selected Value"
-msgstr "Ricorda ultimo valore selezionato"
-
-#: public/js/frappe/form/reminders.js:33
+#. Label of the remind_at (Datetime) field in DocType 'Reminder'
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/public/js/frappe/form/reminders.js:33
msgid "Remind At"
msgstr ""
-#. Label of a Datetime field in DocType 'Reminder'
-#: automation/doctype/reminder/reminder.json
-msgctxt "Reminder"
-msgid "Remind At"
-msgstr ""
-
-#: public/js/frappe/form/toolbar.js:436
+#: frappe/public/js/frappe/form/toolbar.js:476
msgid "Remind Me"
msgstr ""
-#: public/js/frappe/form/reminders.js:13
+#: frappe/public/js/frappe/form/reminders.js:13
msgid "Remind Me In"
msgstr ""
#. Name of a DocType
-#: automation/doctype/reminder/reminder.json
+#: frappe/automation/doctype/reminder/reminder.json
msgid "Reminder"
msgstr ""
-#: automation/doctype/reminder/reminder.py:38
+#: frappe/automation/doctype/reminder/reminder.py:39
msgid "Reminder cannot be created in past."
msgstr ""
-#: public/js/frappe/form/reminders.js:96
+#: frappe/public/js/frappe/form/reminders.js:96
msgid "Reminder set at {0}"
msgstr ""
-#: core/doctype/rq_job/rq_job_list.js:8
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:14
+#: frappe/public/js/frappe/ui/filters/edit_filter.html:4
+#: frappe/public/js/frappe/ui/group_by/group_by.html:4
+msgid "Remove"
+msgstr ""
+
+#: frappe/core/doctype/rq_job/rq_job_list.js:8
msgid "Remove Failed Jobs"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:488
+#: frappe/printing/page/print_format_builder/print_format_builder.js:493
msgid "Remove Field"
-msgstr "Eliminare campo"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:427
+#: frappe/printing/page/print_format_builder/print_format_builder.js:427
msgid "Remove Section"
-msgstr "Rimuovere Sezione"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:138
+#: frappe/custom/doctype/customize_form/customize_form.js:138
msgid "Remove all customizations?"
-msgstr "Rimuovere tutte le personalizzazioni ?"
+msgstr ""
-#: public/js/frappe/utils/datatable.js:9
+#: frappe/public/js/form_builder/components/Section.vue:286
+msgid "Remove all fields in the column"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:278
+#: frappe/public/js/frappe/utils/datatable.js:9
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:120
msgid "Remove column"
msgstr ""
-#: core/doctype/file/file.py:155
-msgid "Removed {0}"
-msgstr "Rimosso {0}"
+#: frappe/public/js/form_builder/components/Field.vue:260
+msgid "Remove field"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:133
-#: public/js/frappe/form/toolbar.js:234 public/js/frappe/form/toolbar.js:238
-#: public/js/frappe/form/toolbar.js:398 public/js/frappe/model/model.js:737
-#: public/js/frappe/views/treeview.js:295
+#: frappe/public/js/form_builder/components/Section.vue:279
+msgid "Remove last column"
+msgstr ""
+
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:130
+msgid "Remove page break"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Section.vue:266
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:135
+msgid "Remove section"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/Tabs.vue:140
+msgid "Remove tab"
+msgstr ""
+
+#. Option for the 'Status' (Select) field in DocType 'Permission Log'
+#: frappe/core/doctype/permission_log/permission_log.json
+msgid "Removed"
+msgstr ""
+
+#: frappe/custom/doctype/custom_field/custom_field.js:137
+#: frappe/public/js/frappe/form/toolbar.js:254
+#: frappe/public/js/frappe/form/toolbar.js:258
+#: frappe/public/js/frappe/form/toolbar.js:432
+#: frappe/public/js/frappe/model/model.js:723
+#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
-msgstr "Rinomina"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:115
-#: custom/doctype/custom_field/custom_field.js:132
+#: frappe/custom/doctype/custom_field/custom_field.js:116
+#: frappe/custom/doctype/custom_field/custom_field.js:136
msgid "Rename Fieldname"
msgstr ""
-#: public/js/frappe/model/model.js:724
+#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
-msgstr "Rinomina {0}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:688
+#: frappe/core/doctype/doctype/doctype.py:698
msgid "Renamed files and replaced code in controllers, please check!"
-msgstr "File rinominati e codice sostituito nei controller, controlla!"
+msgstr ""
-#: core/doctype/communication/communication.js:43 desk/doctype/todo/todo.js:36
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:17
+msgid "Render labels to the left and values to the right in this section"
+msgstr ""
+
+#: frappe/core/doctype/communication/communication.js:43
+#: frappe/desk/doctype/todo/todo.js:36
msgid "Reopen"
-msgstr "Riaprire"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:479
+#: frappe/public/js/frappe/form/toolbar.js:544
msgid "Repeat"
-msgstr "ripetizione"
+msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the repeat_header_footer (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Repeat Header and Footer"
msgstr ""
-#. Label of a Select field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the repeat_on (Select) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Repeat On"
-msgstr "Ripetere On"
+msgstr ""
-#. Label of a Date field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the repeat_till (Date) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Repeat Till"
-msgstr "Ripetere Fino"
+msgstr ""
-#. Label of a Int field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the repeat_on_day (Int) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Repeat on Day"
-msgstr "Ripetere il giorno"
+msgstr ""
-#. Label of a Table field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the repeat_on_days (Table) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Repeat on Days"
msgstr ""
-#. Label of a Check field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the repeat_on_last_day (Check) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Repeat on Last Day of the Month"
-msgstr "Ripeti l'ultimo giorno del mese"
+msgstr ""
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the repeat_this_event (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Repeat this Event"
-msgstr "Ripetere questo evento"
+msgstr ""
-#: utils/password_strength.py:112
+#: frappe/utils/password_strength.py:110
msgid "Repeats like \"aaa\" are easy to guess"
-msgstr "Ripete come "AAA" sono facili da indovinare"
+msgstr ""
-#: utils/password_strength.py:107
+#: frappe/utils/password_strength.py:105
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
-msgstr "Ripete come "abcabcabc" sono solo leggermente più difficile da trovare rispetto ad "ABC""
+msgstr ""
-#: public/js/frappe/form/sidebar/form_sidebar.js:135
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
-msgstr "Ripete {0}"
+msgstr ""
-#. Option for the 'Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Replied"
-msgstr "Ha risposto"
+#: frappe/core/doctype/role_replication/role_replication.js:7
+#: frappe/core/doctype/role_replication/role_replication.js:14
+msgid "Replicate"
+msgstr ""
+
+#: frappe/core/doctype/role_replication/role_replication.js:8
+msgid "Replicating..."
+msgstr ""
+
+#: frappe/core/doctype/role_replication/role_replication.js:13
+msgid "Replication completed."
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Option for the 'Status' (Select) field in DocType 'Communication'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/communication/communication.json
msgid "Replied"
-msgstr "Ha risposto"
+msgstr ""
-#: core/doctype/communication/communication.js:57
-#: public/js/frappe/form/footer/form_timeline.js:550
+#. Label of the reply (Text Editor) field in DocType 'Discussion Reply'
+#: frappe/core/doctype/communication/communication.js:57
+#: frappe/public/js/frappe/form/footer/form_timeline.js:563
+#: frappe/website/doctype/discussion_reply/discussion_reply.json
msgid "Reply"
-msgstr "Rispondi"
+msgstr ""
-#. Label of a Text Editor field in DocType 'Discussion Reply'
-#: website/doctype/discussion_reply/discussion_reply.json
-msgctxt "Discussion Reply"
-msgid "Reply"
-msgstr "Rispondi"
-
-#: core/doctype/communication/communication.js:62
+#: frappe/core/doctype/communication/communication.js:62
msgid "Reply All"
-msgstr "Rispondi a tutti"
+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
-#: core/doctype/report/report.json public/js/frappe/request.js:610
-msgid "Report"
-msgstr "Report"
-
-#. Label of a Link field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Report"
-msgstr "Report"
-
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Report"
-msgstr "Report"
-
-#. Label of a Link field in DocType 'Custom Role'
-#: core/doctype/custom_role/custom_role.json
-msgctxt "Custom Role"
-msgid "Report"
-msgstr "Report"
-
-#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Report"
-msgstr "Report"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Report"
-msgstr "Report"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Report"
-msgstr "Report"
-
-#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Report"
-msgstr "Report"
-
-#. Option for the 'Type' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Report"
-msgstr "Report"
-
-#. Label of a Link in the Build Workspace
-#. Label of a shortcut in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Report"
-msgid "Report"
-msgstr "Report"
-
#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for
#. Page and Report'
-#. Label of a Link field in DocType 'Role Permission for Page and Report'
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgctxt "Role Permission for Page and Report"
-msgid "Report"
-msgstr "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'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
-msgid "Report"
-msgstr "Report"
-
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#. Label of the report (Link) field in DocType 'Auto Email Report'
+#: 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/public/js/frappe/request.js:615
+#: frappe/public/js/frappe/utils/utils.js:920
msgid "Report"
-msgstr "Report"
-
-#: public/js/frappe/list/list_view_select.js:66
-msgid "Report Builder"
-msgstr "Report Builder"
+msgstr ""
#. Option for the 'Report Type' (Select) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Report Builder"
-msgstr "Report Builder"
-
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/core/doctype/report/report.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/list/list_view_select.js:66
msgid "Report Builder"
-msgstr "Report Builder"
+msgstr ""
#. Name of a DocType
-#: core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_column/report_column.json
msgid "Report Column"
-msgstr "Colonna report"
+msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the report_description (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Report Description"
-msgstr "Descrizione del report"
+msgstr ""
-#: core/doctype/report/report.py:148
+#: frappe/core/doctype/report/report.py:151
msgid "Report Document Error"
-msgstr "Segnala errore documento"
+msgstr ""
#. Name of a DocType
-#: core/doctype/report_filter/report_filter.json
+#: frappe/core/doctype/report_filter/report_filter.json
msgid "Report Filter"
-msgstr "Filtro report"
+msgstr ""
-#. Label of a Section Break field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the report_filters (Section Break) field in DocType 'Auto Email
+#. Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Filters"
-msgstr "Filtri Report"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the report_hide (Check) field in DocType 'DocField'
+#. Label of the report_hide (Check) field in DocType 'Custom Field'
+#. Label of the report_hide (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Report Hide"
-msgstr "Nascondi Report"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Report Hide"
-msgstr "Nascondi Report"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Report Hide"
-msgstr "Nascondi Report"
-
-#. Label of a Section Break field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the report_information_section (Section Break) field in DocType
+#. 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "Report Information"
-msgstr "Segnala informazioni"
+msgstr ""
#. Name of a role
-#: core/doctype/report/report.json
-#: email/doctype/auto_email_report/auto_email_report.json
+#: frappe/core/doctype/report/report.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Manager"
-msgstr "Responsabile Report"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1793
+#. Label of the report_name (Data) field in DocType 'Access Log'
+#. Label of the report_name (Data) field in DocType 'Prepared Report'
+#. Label of the report_name (Data) field in DocType 'Report'
+#. Label of the report_name (Link) field in DocType 'Dashboard Chart'
+#. Label of the report_name (Link) field in DocType 'Number Card'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/report/report.json
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
-msgstr "Nome Report"
+msgstr ""
-#. Label of a Data field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
-msgid "Report Name"
-msgstr "Nome Report"
-
-#. Label of a Link field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Report Name"
-msgstr "Nome Report"
-
-#. Label of a Link field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Report Name"
-msgstr "Nome Report"
-
-#. Label of a Data field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
-msgid "Report Name"
-msgstr "Nome Report"
-
-#. Label of a Data field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Report Name"
-msgstr "Nome Report"
-
-#: desk/doctype/number_card/number_card.py:65
+#: frappe/desk/doctype/number_card/number_card.py:69
msgid "Report Name, Report Field and Fucntion are required to create a number card"
msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Link'
+#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+msgid "Report Ref DocType"
+msgstr ""
+
+#. Label of the report_reference_doctype (Data) field in DocType 'Onboarding
+#. Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Report Reference Doctype"
-msgstr "Report Reference Doctype"
+msgstr ""
-#. Label of a Read Only field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the report_type (Select) field in DocType 'Report'
+#. Label of the report_type (Data) field in DocType 'Onboarding Step'
+#. Label of the report_type (Read Only) field in DocType 'Auto Email Report'
+#: frappe/core/doctype/report/report.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Type"
-msgstr "Tipo Report"
+msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Report Type"
-msgstr "Tipo Report"
+#: frappe/public/js/frappe/list/base_list.js:203
+msgid "Report View"
+msgstr ""
-#. Label of a Select field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Report Type"
-msgstr "Tipo Report"
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:26
+msgid "Report bug"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1750
+#: frappe/core/doctype/doctype/doctype.py:1809
msgid "Report cannot be set for Single types"
-msgstr "Rapporto non può essere impostato per i tipi semplici"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.js:208
-#: desk/doctype/number_card/number_card.js:191
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
+#: frappe/desk/doctype/number_card/number_card.js:191
msgid "Report has no data, please modify the filters or change the Report Name"
-msgstr "Il rapporto non ha dati, si prega di modificare i filtri o cambiare il nome del rapporto"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.js:196
-#: desk/doctype/number_card/number_card.js:186
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
+#: frappe/desk/doctype/number_card/number_card.js:186
msgid "Report has no numeric fields, please change the Report Name"
-msgstr "Il rapporto non ha campi numerici, cambia il nome del rapporto"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:935
+#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.py:102
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Report limit reached"
msgstr ""
-#: core/doctype/prepared_report/prepared_report.py:202
+#: frappe/core/doctype/prepared_report/prepared_report.py:223
msgid "Report timed out."
msgstr ""
-#: desk/query_report.py:568
+#: frappe/desk/query_report.py:597
msgid "Report updated successfully"
-msgstr "Rapporto aggiornato correttamente"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1283
+#: frappe/public/js/frappe/views/reports/report_view.js:1357
msgid "Report was not saved (there were errors)"
-msgstr "Report non salvato (si sono verificati degli errori)"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1831
+#: frappe/public/js/frappe/views/reports/query_report.js:1942
msgid "Report with more than 10 columns looks better in Landscape mode."
-msgstr "Il rapporto con più di 10 colonne ha un aspetto migliore in modalità orizzontale."
+msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:235
-#: public/js/frappe/ui/toolbar/search_utils.js:236
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252
msgid "Report {0}"
-msgstr "Report {0}"
+msgstr ""
-#: desk/reportview.py:326
+#: frappe/desk/reportview.py:364
msgid "Report {0} deleted"
msgstr ""
-#: desk/query_report.py:50
+#: frappe/desk/query_report.py:53
msgid "Report {0} is disabled"
-msgstr "Report {0} è disattivato"
+msgstr ""
-#: desk/reportview.py:303
+#: frappe/desk/reportview.py:341
msgid "Report {0} saved"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:20
+#: frappe/public/js/frappe/views/reports/report_view.js:20
msgid "Report:"
-msgstr "Rapporto:"
-
-#: public/js/frappe/ui/toolbar/search_utils.js:531
-msgid "Reports"
-msgstr "Report"
-
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Reports"
-msgstr "Report"
-
-#: patches/v14_0/update_workspace2.py:50
-msgid "Reports & Masters"
-msgstr "Rapporti e master"
-
-#: public/js/frappe/views/reports/query_report.js:851
-msgid "Reports already in Queue"
-msgstr "Rapporti già in coda"
-
-#: www/me.html:66
-msgid "Request Account Deletion"
msgstr ""
-#. Label of a Code field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the prepared_report_section (Section Break) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:547
+msgid "Reports"
+msgstr ""
+
+#: frappe/patches/v14_0/update_workspace2.py:50
+msgid "Reports & Masters"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:927
+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 a Code field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
+#. Label of the data (Code) field in DocType 'Integration Request'
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request Data"
-msgstr "Richiesta dati"
+msgstr ""
-#. Label of a Data field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
+#. Label of the request_description (Data) field in DocType 'Integration
+#. Request'
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request Description"
msgstr ""
-#. Label of a Code field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
+#. Label of the request_headers (Code) field in DocType 'Recorder'
+#. Label of the request_headers (Code) field in DocType 'Integration Request'
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request Headers"
msgstr ""
-#. Label of a Code field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "Request Headers"
-msgstr ""
-
-#. Label of a Data field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
+#. Label of the request_id (Data) field in DocType 'Integration Request'
+#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request ID"
msgstr ""
-#. Label of a Int field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the rate_limit_count (Int) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Request Limit"
msgstr ""
-#. Label of a Select field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the request_method (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request Method"
msgstr ""
-#. Label of a Select field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the request_structure (Select) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request Structure"
-msgstr "Struttura della richiesta"
+msgstr ""
-#: public/js/frappe/request.js:228
+#: frappe/public/js/frappe/request.js:231
msgid "Request Timed Out"
-msgstr "Richiesta scaduta"
+msgstr ""
-#: public/js/frappe/request.js:241
+#. Label of the timeout (Int) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/public/js/frappe/request.js:244
msgid "Request Timeout"
msgstr ""
-#. Label of a Int field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Request Timeout"
-msgstr ""
-
-#. Label of a Data field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the request_url (Small Text) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Request URL"
-msgstr "Richiedi URL"
+msgstr ""
-#. Label of a Code field in DocType 'SMS Log'
-#: core/doctype/sms_log/sms_log.json
-msgctxt "SMS Log"
+#. Label of the requested_numbers (Code) field in DocType 'SMS Log'
+#: frappe/core/doctype/sms_log/sms_log.json
msgid "Requested Numbers"
msgstr ""
-#. Label of a Select field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the require_trusted_certificate (Select) field in DocType 'LDAP
+#. Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Require Trusted Certificate"
-msgstr "Richiedi certificato attendibile"
+msgstr ""
#. Description of the 'LDAP search path for Groups' (Data) field in DocType
#. 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Requires any valid fdn path. i.e. ou=groups,dc=example,dc=com"
msgstr ""
#. Description of the 'LDAP search path for Users' (Data) field in DocType
#. 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Requires any valid fdn path. i.e. ou=users,dc=example,dc=com"
msgstr ""
-#: core/doctype/communication/communication.js:279
+#: frappe/core/doctype/communication/communication.js:279
msgid "Res: {0}"
-msgstr "Ris: {0}"
+msgstr ""
-#: desk/doctype/form_tour/form_tour.js:101
-#: desk/doctype/global_search_settings/global_search_settings.js:19
-#: desk/doctype/module_onboarding/module_onboarding.js:17
-#: website/doctype/portal_settings/portal_settings.js:19
+#: frappe/desk/doctype/form_tour/form_tour.js:101
+#: frappe/desk/doctype/global_search_settings/global_search_settings.js:19
+#: frappe/desk/doctype/module_onboarding/module_onboarding.js:17
+#: frappe/website/doctype/portal_settings/portal_settings.js:19
msgid "Reset"
-msgstr "Reset"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:136
+#: frappe/custom/doctype/customize_form/customize_form.js:136
msgid "Reset All Customizations"
msgstr ""
-#: public/js/print_format_builder/print_format_builder.bundle.js:21
-#: public/js/workflow_builder/workflow_builder.bundle.js:37
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:21
+#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:37
msgid "Reset Changes"
msgstr ""
-#: public/js/frappe/widgets/chart_widget.js:305
+#: frappe/public/js/frappe/widgets/chart_widget.js:306
msgid "Reset Chart"
-msgstr "Reimposta grafico"
+msgstr ""
-#: public/js/frappe/views/dashboard/dashboard_view.js:38
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:39
msgid "Reset Dashboard Customizations"
msgstr ""
-#: public/js/frappe/list/list_settings.js:227
+#: frappe/public/js/frappe/list/list_settings.js:230
msgid "Reset Fields"
-msgstr "Resettare i campi"
+msgstr ""
-#: core/doctype/user/user.js:161 core/doctype/user/user.js:164
+#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182
msgid "Reset LDAP Password"
-msgstr "Reimposta password LDAP"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:128
+#: frappe/custom/doctype/customize_form/customize_form.js:128
msgid "Reset Layout"
msgstr ""
-#: core/doctype/user/user.js:212
+#: frappe/core/doctype/user/user.js:230
msgid "Reset OTP Secret"
-msgstr "Resetta OTP"
+msgstr ""
-#: core/doctype/user/user.js:145 www/login.html:179 www/me.html:35
-#: www/me.html:44 www/update-password.html:3 www/update-password.html:9
+#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199
+#: frappe/www/me.html:48 frappe/www/update-password.html:3
+#: frappe/www/update-password.html:32
msgid "Reset Password"
-msgstr "Reimposta Password"
+msgstr ""
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the reset_password_key (Data) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Reset Password Key"
-msgstr "Reimposta Password"
+msgstr ""
-#. Label of a Duration field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the reset_password_link_expiry_duration (Duration) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Reset Password Link Expiry Duration"
msgstr ""
-#. Label of a Link field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the reset_password_template (Link) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Reset Password Template"
msgstr ""
-#: core/page/permission_manager/permission_manager.js:109
+#: frappe/core/page/permission_manager/permission_manager.js:116
msgid "Reset Permissions for {0}?"
-msgstr "Aggiorna Autorizzazioni per {0} ?"
+msgstr ""
-#: public/js/frappe/utils/datatable.js:8
+#: frappe/public/js/form_builder/components/Field.vue:114
+msgid "Reset To Default"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/datatable.js:8
msgid "Reset sorting"
msgstr ""
-#: www/me.html:36
-msgid "Reset the password for your account"
-msgstr ""
-
-#: public/js/frappe/form/grid_row.js:409
+#: frappe/public/js/frappe/form/grid_row.js:417
msgid "Reset to default"
msgstr ""
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19
msgid "Reset to defaults"
-msgstr "Ripristina impostazioni predefinite"
+msgstr ""
-#: templates/emails/password_reset.html:3
+#: frappe/templates/emails/password_reset.html:3
msgid "Reset your password"
-msgstr "reimposta la tua password"
+msgstr ""
-#. Label of a Text Editor field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
+#. Label of the response (Text Editor) field in DocType 'Email Template'
+#. Label of the response_section (Section Break) field in DocType 'Integration
+#. Request'
+#. Label of the response (Code) field in DocType 'Webhook Request Log'
+#: frappe/email/doctype/email_template/email_template.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Response"
-msgstr "Risposta"
+msgstr ""
-#. Label of a Section Break field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Response"
-msgstr "Risposta"
-
-#. Label of a Code field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "Response"
-msgstr "Risposta"
-
-#. Label of a Code field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
+#. Label of the response_html (Code) field in DocType 'Email Template'
+#: frappe/email/doctype/email_template/email_template.json
msgid "Response "
msgstr ""
-#. Label of a Select field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the response_type (Select) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Response Type"
-msgstr "Tipo di risposta"
+msgstr ""
-#: public/js/frappe/ui/notifications/notifications.js:400
+#: frappe/public/js/frappe/ui/notifications/notifications.js:414
msgid "Rest of the day"
msgstr ""
-#: core/doctype/deleted_document/deleted_document.js:11
-#: core/doctype/deleted_document/deleted_document_list.js:48
+#: frappe/core/doctype/deleted_document/deleted_document.js:11
+#: frappe/core/doctype/deleted_document/deleted_document_list.js:48
msgid "Restore"
-msgstr "Ristabilire"
+msgstr ""
-#: core/page/permission_manager/permission_manager.js:492
+#: frappe/core/page/permission_manager/permission_manager.js:509
msgid "Restore Original Permissions"
-msgstr "Ripristina autorizzazioni originali"
+msgstr ""
-#: website/doctype/portal_settings/portal_settings.js:20
+#: frappe/website/doctype/portal_settings/portal_settings.js:20
msgid "Restore to default settings?"
-msgstr "Ripristinare le impostazioni predefinite?"
+msgstr ""
-#. Label of a Check field in DocType 'Deleted Document'
-#: core/doctype/deleted_document/deleted_document.json
-msgctxt "Deleted Document"
+#. Label of the restored (Check) field in DocType 'Deleted Document'
+#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Restored"
-msgstr "restaurato"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document.py:73
+#: frappe/core/doctype/deleted_document/deleted_document.py:74
msgid "Restoring Deleted Document"
-msgstr "Ripristino del documento eliminato"
+msgstr ""
-#. Label of a Small Text field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the restrict_ip (Small Text) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Restrict IP"
-msgstr "Limitare IP"
+msgstr ""
-#. Label of a Link field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
+#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
+#. Label of the restrict_to_domain (Link) field in DocType 'Page'
+#. Label of the restrict_to_domain (Link) field in DocType 'Role'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/page/page.json frappe/core/doctype/role/role.json
msgid "Restrict To Domain"
-msgstr "Limita al dominio"
+msgstr ""
-#. Label of a Link field in DocType 'Module Def'
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Restrict To Domain"
-msgstr "Limita al dominio"
-
-#. Label of a Link field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Restrict To Domain"
-msgstr "Limita al dominio"
-
-#. Label of a Link field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
-msgid "Restrict To Domain"
-msgstr "Limita al dominio"
-
-#. Label of a Link field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the restrict_to_domain (Link) field in DocType 'Workspace'
+#. Label of the restrict_to_domain (Link) field in DocType 'Workspace Shortcut'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Restrict to Domain"
-msgstr "Limitare al dominio"
-
-#. Label of a Link field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Restrict to Domain"
-msgstr "Limitare al dominio"
+msgstr ""
#. Description of the 'Restrict IP' (Small Text) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)"
-msgstr "Limitare l'utente da solo questo indirizzo IP. Più indirizzi IP possono essere aggiunti separando con virgole. Accetta anche gli indirizzi IP parziali, come (111.111.111)"
+msgstr ""
-#: public/js/frappe/list/list_view.js:172
+#: frappe/public/js/frappe/list/list_view.js:196
msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
-msgstr "restrizioni"
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:354
-#: public/js/frappe/ui/toolbar/awesome_bar.js:369
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:382
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:397
msgid "Result"
msgstr ""
-#: email/doctype/email_queue/email_queue_list.js:27
+#: frappe/email/doctype/email_queue/email_queue_list.js:27
msgid "Resume Sending"
-msgstr "riprendere l'invio"
+msgstr ""
-#: core/doctype/data_import/data_import.js:110
+#. Label of the retry (Int) field in DocType 'Email Queue'
+#: frappe/core/doctype/data_import/data_import.js:110
+#: frappe/desk/page/setup_wizard/setup_wizard.js:297
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Retry"
-msgstr "Riprova"
+msgstr ""
-#. Label of a Int field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Retry"
-msgstr "Riprova"
-
-#: email/doctype/email_queue/email_queue_list.js:47
+#: frappe/email/doctype/email_queue/email_queue_list.js:47
msgid "Retry Sending"
msgstr ""
-#: www/qrcode.html:15
+#: frappe/www/qrcode.html:15
msgid "Return to the Verification screen and enter the code displayed by your authentication app"
-msgstr "Ritorna alla schermata Verifica e inserisci il codice visualizzato dall'applicazione di autenticazione"
+msgstr ""
-#. Label of a Check field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#. Label of the reverse (Check) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Reverse Icon Color"
-msgstr "Reverse Icona Colore"
+msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.js:10
-#: social/doctype/energy_point_log/energy_point_log.js:15
-msgid "Revert"
-msgstr "ritornare"
-
-#. Option for the 'Type' (Select) field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Revert"
-msgstr "ritornare"
-
-#. Label of a Link field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Revert Of"
-msgstr "Ripristina"
-
-#. Label of a Check field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Reverted"
-msgstr "ripristinata"
-
-#: database/schema.py:162
+#: frappe/database/schema.py:161
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
-msgstr "Ripristino della lunghezza a {0} per "{1}" in "{2}". L'impostazione della lunghezza come {3} provocherà il troncamento dei dati."
+msgstr ""
-#. Option for the 'Type' (Select) field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Review"
-msgstr "Revisione"
-
-#. Name of a DocType
-#: social/doctype/review_level/review_level.json
-msgid "Review Level"
-msgstr "Livello di revisione"
-
-#. Label of a Table field in DocType 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Review Levels"
-msgstr "Livelli di recensione"
-
-#. Label of a Int field in DocType 'Review Level'
-#: social/doctype/review_level/review_level.json
-msgctxt "Review Level"
-msgid "Review Points"
-msgstr "Punti di revisione"
-
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the revocation_uri (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Revocation URI"
msgstr ""
-#: www/third_party_apps.html:45
+#: frappe/www/third_party_apps.html:47
msgid "Revoke"
-msgstr "Revocare"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
msgid "Revoked"
-msgstr "revocato"
-
-#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Rich Text"
-msgstr "Rich Text"
+msgstr ""
#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Rich Text"
-msgstr "Rich Text"
-
+#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:92
+#: frappe/website/doctype/web_page/web_page.json
msgid "Rich Text"
-msgstr "Rich Text"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Right"
-msgstr "Giusto"
-
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
-#: printing/doctype/letter_head/letter_head.json
-msgctxt "Letter Head"
-msgid "Right"
-msgstr "Giusto"
-
#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Right"
-msgstr "Giusto"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:484
+#: frappe/printing/page/print_format_builder/print_format_builder.js:484
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:156
msgctxt "alignment"
msgid "Right"
-msgstr "Giusto"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Right Bottom"
msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Right Center"
msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the robots_txt (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Robots.txt"
-msgstr "robots.txt"
+msgstr ""
+#. Label of the role (Link) field in DocType 'Custom DocPerm'
+#. Label of the roles (Table) field in DocType 'Custom Role'
+#. Label of the role (Link) field in DocType 'DocPerm'
+#. Label of the role (Link) field in DocType 'Has Role'
#. Name of a DocType
-#: core/doctype/role/role.json core/doctype/user_type/user_type.py:109
-#: core/page/permission_manager/permission_manager.js:212
-#: core/page/permission_manager/permission_manager.js:439
-msgid "Role"
-msgstr "Ruolo"
-
-#. Label of a Link field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Role"
-msgstr "Ruolo"
-
-#. Label of a Table field in DocType 'Custom Role'
-#: core/doctype/custom_role/custom_role.json
-msgctxt "Custom Role"
-msgid "Role"
-msgstr "Ruolo"
-
-#. Label of a Link field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Role"
-msgstr "Ruolo"
-
-#. Label of a Link field in DocType 'Has Role'
-#: core/doctype/has_role/has_role.json
-msgctxt "Has Role"
-msgid "Role"
-msgstr "Ruolo"
-
-#. Label of a Link field in DocType 'Onboarding Permission'
-#: desk/doctype/onboarding_permission/onboarding_permission.json
-msgctxt "Onboarding Permission"
-msgid "Role"
-msgstr "Ruolo"
-
-#. Label of a Link field in DocType 'Portal Menu Item'
-#: website/doctype/portal_menu_item/portal_menu_item.json
-msgctxt "Portal Menu Item"
-msgid "Role"
-msgstr "Ruolo"
-
-#. Label of a Link field in DocType 'Review Level'
-#: social/doctype/review_level/review_level.json
-msgctxt "Review Level"
-msgid "Role"
-msgstr "Ruolo"
-
+#. Label of the role (Link) field in DocType 'User Type'
#. Label of a Link in the Users Workspace
#. Label of a shortcut in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "Role"
+#. Label of the role (Link) field in DocType 'Onboarding Permission'
+#. Label of the role (Link) field in DocType 'ToDo'
+#. Label of the role (Link) field in DocType 'OAuth Client Role'
+#. Label of the role (Link) field in DocType 'Portal Menu Item'
+#. Label of the role (Link) field in DocType 'Workflow Action Permitted Role'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/custom_role/custom_role.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/has_role/has_role.json
+#: frappe/core/doctype/role/role.json
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/core/doctype/user_type/user_type.py:110
+#: frappe/core/page/permission_manager/permission_manager.js:219
+#: frappe/core/page/permission_manager/permission_manager.js:456
+#: frappe/core/workspace/users/users.json
+#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
msgid "Role"
-msgstr "Ruolo"
+msgstr ""
-#. Label of a Link field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Role"
-msgstr "Ruolo"
-
-#. Label of a Link field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
-msgid "Role"
-msgstr "Ruolo"
-
-#. Label of a Link field in DocType 'Workflow Action Permitted Role'
-#: workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
-msgctxt "Workflow Action Permitted Role"
-msgid "Role"
-msgstr "Ruolo"
-
-#: core/doctype/role/role.js:8
+#: frappe/core/doctype/role/role.js:8
msgid "Role 'All' will be given to all system + website users."
msgstr ""
-#: core/doctype/role/role.js:13
+#: frappe/core/doctype/role/role.js:13
msgid "Role 'Desk User' will be given to all system users."
msgstr ""
-#. Label of a Data field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the role_name (Data) field in DocType 'Role'
+#. Label of the role_profile (Data) field in DocType 'Role Profile'
+#: frappe/core/doctype/role/role.json
+#: frappe/core/doctype/role_profile/role_profile.json
msgid "Role Name"
-msgstr "Nome Ruolo"
-
-#. Label of a Data field in DocType 'Role Profile'
-#: core/doctype/role_profile/role_profile.json
-msgctxt "Role Profile"
-msgid "Role Name"
-msgstr "Nome Ruolo"
+msgstr ""
#. Name of a DocType
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#. 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 "Autorizzazione dei ruoli per pagina e rapporto"
+msgstr ""
+
+#. Label of the permissions_section (Section Break) field in DocType 'User
+#. Document Type'
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/public/js/frappe/roles_editor.js:103
+msgid "Role Permissions"
+msgstr ""
#. Label of a Link in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "Role Permission for Page and Report"
-msgid "Role Permission for Page and Report"
-msgstr "Autorizzazione dei ruoli per pagina e rapporto"
-
-#: public/js/frappe/roles_editor.js:100
-msgid "Role Permissions"
-msgstr "Autorizzazioni di ruolo"
-
-#. Label of a Section Break field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Role Permissions"
-msgstr "Autorizzazioni di ruolo"
-
-#. Label of a Link in the Users Workspace
-#: core/page/permission_manager/permission_manager.js:4
-#: core/workspace/users/users.json
+#: frappe/core/page/permission_manager/permission_manager.js:4
+#: frappe/core/workspace/users/users.json
msgid "Role Permissions Manager"
-msgstr "Gestione Permessi"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1650
+#: frappe/public/js/frappe/list/list_view.js:1788
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
-msgstr "Gestione Permessi"
+msgstr ""
#. Name of a DocType
-#: core/doctype/role_profile/role_profile.json
-msgid "Role Profile"
-msgstr "Profilo ruolo"
-
+#. Label of the role_profile_name (Link) field in DocType 'User'
+#. Label of the role_profile (Link) field in DocType 'User Role Profile'
#. Label of a Link in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "Role Profile"
+#: frappe/core/doctype/role_profile/role_profile.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_role_profile/user_role_profile.json
+#: frappe/core/workspace/users/users.json
msgid "Role Profile"
-msgstr "Profilo ruolo"
+msgstr ""
-#. Label of a Link field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Role Profile"
-msgstr "Profilo ruolo"
+#. Label of the role_profiles (Table MultiSelect) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Role Profiles"
+msgstr ""
-#. Label of a Section Break field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
+#. Name of a DocType
+#: frappe/core/doctype/role_replication/role_replication.json
+msgid "Role Replication"
+msgstr ""
+
+#. Label of the role_and_level (Section Break) field in DocType 'Custom
+#. DocPerm'
+#. Label of the role_and_level (Section Break) field in DocType 'DocPerm'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
msgid "Role and Level"
-msgstr "Ruolo e livello"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Role and Level"
-msgstr "Ruolo e livello"
-
-#: core/doctype/user/user.py:314
+#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
msgstr ""
-#: core/page/permission_manager/permission_manager.js:59
+#. Label of the roles (Table) field in DocType 'Page'
+#. Label of the roles (Table) field in DocType 'Report'
+#. Label of the roles (Table) field in DocType 'Role Permission for Page and
+#. Report'
+#. Label of the sb1 (Section Break) field in DocType 'User'
+#. Label of the roles_section (Section Break) field in DocType 'Custom HTML
+#. Block'
+#. Label of the roles (Table) field in DocType 'Custom HTML Block'
+#. Label of the roles (Table) field in DocType 'Dashboard Chart'
+#. Label of the roles (Table) field in DocType 'Workspace'
+#. Label of the roles_tab (Tab Break) field in DocType 'Workspace'
+#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/page/permission_manager/permission_manager.js:66
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Roles"
-msgstr "Ruoli"
+msgstr ""
-#. Label of a Section Break field in DocType 'Custom HTML Block'
-#. Label of a Table field in DocType 'Custom HTML Block'
-#: desk/doctype/custom_html_block/custom_html_block.json
-msgctxt "Custom HTML Block"
-msgid "Roles"
-msgstr "Ruoli"
-
-#. Label of a Table field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Roles"
-msgstr "Ruoli"
-
-#. Label of a Table field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Roles"
-msgstr "Ruoli"
-
-#. Label of a Table field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Roles"
-msgstr "Ruoli"
-
-#. Label of a Table field in DocType 'Role Permission for Page and Report'
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgctxt "Role Permission for Page and Report"
-msgid "Roles"
-msgstr "Ruoli"
-
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Roles"
-msgstr "Ruoli"
-
-#. Label of a Table field in DocType 'Workspace'
-#. Label of a Tab Break field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Roles"
-msgstr "Ruoli"
-
-#. Label of a Tab Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the roles_permissions_tab (Tab Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Roles & Permissions"
msgstr ""
-#. Label of a Table field in DocType 'Role Profile'
-#: core/doctype/role_profile/role_profile.json
-msgctxt "Role Profile"
+#. Label of the roles (Table) field in DocType 'Role Profile'
+#. Label of the roles (Table) field in DocType 'User'
+#: frappe/core/doctype/role_profile/role_profile.json
+#: frappe/core/doctype/user/user.json
msgid "Roles Assigned"
-msgstr "Ruoli assegnati"
+msgstr ""
-#. Label of a Table field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Roles Assigned"
-msgstr "Ruoli assegnati"
-
-#. Label of a HTML field in DocType 'Role Profile'
-#: core/doctype/role_profile/role_profile.json
-msgctxt "Role Profile"
+#. Label of the roles_html (HTML) field in DocType 'Role Profile'
+#. Label of the roles_html (HTML) field in DocType 'User'
+#: frappe/core/doctype/role_profile/role_profile.json
+#: frappe/core/doctype/user/user.json
msgid "Roles HTML"
-msgstr "Ruoli HTML"
+msgstr ""
-#. Label of a HTML field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Roles HTML"
-msgstr "Ruoli HTML"
-
-#. Label of a HTML field in DocType 'Role Permission for Page and Report'
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgctxt "Role Permission for Page and Report"
+#. Label of the roles_html (HTML) field in DocType 'Role Permission for Page
+#. and Report'
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
msgid "Roles Html"
-msgstr "Ruoli Html"
+msgstr ""
-#: utils/nestedset.py:283
+#: frappe/core/page/permission_manager/permission_manager_help.html:7
+msgid "Roles can be set for users from their User page."
+msgstr ""
+
+#: frappe/utils/nestedset.py:280
msgid "Root {0} cannot be deleted"
-msgstr "Root {0} non può essere eliminato"
+msgstr ""
#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Round Robin"
-msgstr "Round Robin"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the rounding_method (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Rounding Method"
msgstr ""
-#. Label of a Data field in DocType 'Blog Category'
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
-msgid "Route"
-msgstr "Itinerario"
-
-#. Label of a Data field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Route"
-msgstr "Itinerario"
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Route"
-msgstr "Itinerario"
-
+#. Label of the route (Data) field in DocType 'DocType'
#. Option for the 'Action Type' (Select) field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
-msgid "Route"
-msgstr "Itinerario"
-
-#. Label of a Data field in DocType 'DocType Layout'
-#: custom/doctype/doctype_layout/doctype_layout.json
-msgctxt "DocType Layout"
-msgid "Route"
-msgstr "Itinerario"
-
-#. Label of a Data field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
-msgid "Route"
-msgstr "Itinerario"
-
-#. Label of a Data field in DocType 'Help Category'
-#: website/doctype/help_category/help_category.json
-msgctxt "Help Category"
-msgid "Route"
-msgstr "Itinerario"
-
#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
-#. Label of a Data field in DocType 'Navbar Item'
-#: core/doctype/navbar_item/navbar_item.json
-msgctxt "Navbar Item"
+#. Label of the route (Data) field in DocType 'Navbar Item'
+#. Label of the route (Data) field in DocType 'DocType Layout'
+#. Label of the route (Data) field in DocType 'Route History'
+#. Label of the route (Data) field in DocType 'Newsletter'
+#. Label of the route (Data) field in DocType 'Blog Category'
+#. Label of the route (Data) field in DocType 'Blog Post'
+#. Label of the route (Data) field in DocType 'Help Article'
+#. 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/email/doctype/newsletter/newsletter.json
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/help_article/help_article.json
+#: 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 "Itinerario"
-
-#. Label of a Data field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Route"
-msgstr "Itinerario"
-
-#. Label of a Data field in DocType 'Portal Menu Item'
-#: website/doctype/portal_menu_item/portal_menu_item.json
-msgctxt "Portal Menu Item"
-msgid "Route"
-msgstr "Itinerario"
-
-#. Label of a Data field in DocType 'Route History'
-#: desk/doctype/route_history/route_history.json
-msgctxt "Route History"
-msgid "Route"
-msgstr "Itinerario"
-
-#. Label of a Data field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Route"
-msgstr "Itinerario"
-
-#. Label of a Data field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Route"
-msgstr "Itinerario"
-
-#. Label of a Data field in DocType 'Website Sidebar Item'
-#: website/doctype/website_sidebar_item/website_sidebar_item.json
-msgctxt "Website Sidebar Item"
-msgid "Route"
-msgstr "Itinerario"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/route_history/route_history.json
+#: frappe/desk/doctype/route_history/route_history.json
msgid "Route History"
-msgstr "Cronologia del percorso"
+msgstr ""
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Route History"
-msgstr "Cronologia del percorso"
-
-#. Label of a Table field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the route_redirects (Table) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Route Redirects"
-msgstr "Reindirizzamenti del percorso"
+msgstr ""
#. Description of the 'Home Page' (Data) field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
-msgid "Route: Example \"/desk\""
-msgstr "Percorso: esempio "/ desk""
+#: frappe/core/doctype/role/role.json
+msgid "Route: Example \"/app\""
+msgstr ""
-#: model/base_document.py:710 model/base_document.py:751 model/document.py:591
+#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
-msgstr "Riga"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1772 core/doctype/doctype/doctype.py:1782
+#: frappe/core/doctype/version/version_view.html:73
+msgid "Row #"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1831
+#: frappe/core/doctype/doctype/doctype.py:1841
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: model/base_document.py:868
+#: frappe/model/base_document.py:982
msgid "Row #{0}:"
-msgstr "Row # {0}:"
+msgstr ""
-#: core/doctype/doctype/doctype.py:492
+#: frappe/core/doctype/doctype/doctype.py:491
msgid "Row #{}: Fieldname is required"
msgstr ""
-#. Label of a Data field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Row Index"
-msgstr "Indice di riga"
+#. Label of the row_format (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Row Format"
+msgstr ""
-#. Label of a Code field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
+#. Label of the row_index (Data) field in DocType 'Transaction Log'
+#: frappe/core/doctype/transaction_log/transaction_log.json
+msgid "Row Index"
+msgstr ""
+
+#. Label of the row_indexes (Code) field in DocType 'Data Import Log'
+#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Row Indexes"
msgstr ""
-#. Label of a Data field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#. Label of the row_name (Data) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Row Name"
-msgstr "Nome riga"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:349
+#: frappe/core/doctype/data_import/data_import.js:483
+msgid "Row Number"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:68
+msgid "Row Values Changed"
+msgstr ""
+
+#: frappe/core/doctype/data_import/data_import.js:367
+msgid "Row {0}"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.py:352
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
-msgstr "Riga {0}: non è consentito disabilitare Obbligatorio per i campi standard"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:337
+#: frappe/custom/doctype/customize_form/customize_form.py:341
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
-msgstr "Riga {0}: Non consentito per attivare Consenti su Invia per campi standard"
+msgstr ""
-#. Label of a Section Break field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
+#. Label of the rows_added_section (Section Break) field in DocType 'Audit
+#. Trail'
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/version/version_view.html:32
msgid "Rows Added"
-msgstr "righe aggiunte"
+msgstr ""
-#. Label of a Section Break field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
+#. Label of the rows_removed_section (Section Break) field in DocType 'Audit
+#. Trail'
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/version/version_view.html:32
msgid "Rows Removed"
-msgstr "Righe rimosse"
+msgstr ""
-#. Label of a Select field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+msgid "Rows Threshold for Grid Search"
+msgstr ""
+
+#. Label of the rule (Select) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Rule"
-msgstr "Regola"
+msgstr ""
-#. Label of a Link field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Rule"
-msgstr "Regola"
-
-#. Label of a Section Break field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#. Label of the section_break_3 (Section Break) field in DocType 'Document
+#. Naming Rule'
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Rule Conditions"
-msgstr "Condizioni della regola"
+msgstr ""
-#. Label of a Data field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Rule Name"
-msgstr "Nome regola"
-
-#: permissions.py:662
+#: frappe/permissions.py:662
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
#. Group in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "Rules"
msgstr ""
#. Description of the 'Transitions' (Table) field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Rules defining transition of state in the workflow."
-msgstr "Regole che definiscono transizione di stato nel flusso di lavoro."
+msgstr ""
#. Description of the 'Transition Rules' (Section Break) field in DocType
#. 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Rules for how states are transitions, like next state and which role is allowed to change state etc."
-msgstr "Regole per come gli stati sono transizioni, come prossimo stato e quale ruolo può cambiare stato ecc"
+msgstr ""
#. Description of the 'Priority' (Int) field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Rules with higher priority number will be applied first."
-msgstr "Le regole con un numero di priorità più alto verranno applicate per prime."
+msgstr ""
-#. Label of a Int field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the dormant_days (Int) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Run Jobs only Daily if Inactive For (Days)"
-msgstr "Esegui lavori solo quotidianamente se inattivo per (giorni)"
+msgstr ""
#. Description of the 'Enable Scheduled Jobs' (Check) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Run scheduled jobs only if checked"
-msgstr "Eseguire i lavori programmati solo se controllato"
+msgstr ""
-#. Name of a DocType
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Backup Settings"
-msgstr "S3 Impostazioni di backup"
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57
+msgid "Runtime in Minutes"
+msgstr ""
-#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "S3 Backup Settings"
-msgid "S3 Backup Settings"
-msgstr "S3 Impostazioni di backup"
-
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
-msgid "S3 Backup complete!"
-msgstr "S3 Backup completo!"
-
-#. Label of a Section Break field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "S3 Bucket Details"
-msgstr "Dettagli della benna S3"
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57
+msgid "Runtime in Seconds"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "SMS"
-msgstr "sms"
-
-#. Option for the 'Channel' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "SMS"
-msgstr "sms"
-
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Option for the 'Channel' (Select) field in DocType 'Notification'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/email/doctype/notification/notification.json
msgid "SMS"
-msgstr "sms"
+msgstr ""
-#. Label of a Small Text field in DocType 'SMS Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#. Label of the sms_gateway_url (Small Text) field in DocType 'SMS Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "SMS Gateway URL"
-msgstr "SMS Gateway URL"
+msgstr ""
#. Name of a DocType
-#: core/doctype/sms_log/sms_log.json
+#: frappe/core/doctype/sms_log/sms_log.json
msgid "SMS Log"
msgstr ""
#. Name of a DocType
-#: core/doctype/sms_parameter/sms_parameter.json
+#: frappe/core/doctype/sms_parameter/sms_parameter.json
msgid "SMS Parameter"
-msgstr "SMS Parametro"
+msgstr ""
#. Name of a DocType
-#: core/doctype/sms_settings/sms_settings.json
-msgid "SMS Settings"
-msgstr "Impostazioni SMS"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "SMS Settings"
+#: frappe/core/doctype/sms_settings/sms_settings.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "SMS Settings"
-msgstr "Impostazioni SMS"
+msgstr ""
-#: core/doctype/sms_settings/sms_settings.py:110
-msgid "SMS sent to following numbers: {0}"
-msgstr "SMS inviato al seguenti numeri: {0}"
+#: frappe/core/doctype/sms_settings/sms_settings.py:110
+msgid "SMS sent successfully"
+msgstr ""
-#: email/doctype/email_account/email_account.py:182
+#: frappe/templates/includes/login/login.js:369
+msgid "SMS was not sent. Please contact Administrator."
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:212
msgid "SMTP Server is required"
msgstr ""
-#. Description of the 'Enable Outgoing' (Check) field in DocType 'Email
-#. Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "SMTP Settings for outgoing emails"
-msgstr "Impostazioni SMTP per le email in uscita"
-
#. Option for the 'Type' (Select) field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#: frappe/desk/doctype/system_console/system_console.json
msgid "SQL"
msgstr ""
#. Description of the 'Condition' (Small Text) field in DocType 'Bulk Update'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
+#: frappe/desk/doctype/bulk_update/bulk_update.json
msgid "SQL Conditions. Example: status=\"Open\""
-msgstr "Condizioni SQL. Esempio: status = "Open""
+msgstr ""
-#: core/doctype/recorder/recorder.js:36
+#. Label of the sql_explain_html (HTML) field in DocType 'Recorder Query'
+#: frappe/core/doctype/recorder/recorder.js:85
+#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "SQL Explain"
msgstr ""
-#. Label of a HTML field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
-msgid "SQL Explain"
-msgstr ""
-
-#. Label of a HTML field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#. Label of the sql_output (HTML) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
msgid "SQL Output"
msgstr ""
-#. Label of a Table field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#. Label of the sql_queries (Table) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
msgid "SQL Queries"
msgstr ""
-#. Label of a Select field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings'
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "SSL/TLS Mode"
-msgstr "Modalità SSL / TLS"
+msgstr ""
+
+#: frappe/public/js/frappe/color_picker/color_picker.js:20
+msgid "SWATCHES"
+msgstr ""
#. Name of a role
-#: contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/contact/contact.json
msgid "Sales Manager"
-msgstr "Sales Manager"
+msgstr ""
#. Name of a role
-#: contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/contact/contact.json
msgid "Sales Master Manager"
-msgstr "Sales Master Manager"
+msgstr ""
#. Name of a role
-#: contacts/doctype/address/address.json contacts/doctype/contact/contact.json
-#: geo/doctype/currency/currency.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/geo/doctype/currency/currency.json
msgid "Sales User"
-msgstr "Utente Vendite"
+msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Salesforce"
-msgstr "Salesforce"
+msgstr ""
+#. Label of the salutation (Link) field in DocType 'Contact'
#. Name of a DocType
-#: contacts/doctype/salutation/salutation.json
+#. Label of the salutation (Data) field in DocType 'Salutation'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/salutation/salutation.json
msgid "Salutation"
-msgstr "Appellativo"
+msgstr ""
-#. Label of a Link field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Salutation"
-msgstr "Appellativo"
-
-#. Label of a Data field in DocType 'Salutation'
-#: contacts/doctype/salutation/salutation.json
-msgctxt "Salutation"
-msgid "Salutation"
-msgstr "Appellativo"
-
-#: integrations/doctype/webhook/webhook.py:109
+#: frappe/integrations/doctype/webhook/webhook.py:109
msgid "Same Field is entered more than once"
-msgstr "Lo stesso campo è inserito più di una volta"
+msgstr ""
-#. Label of a HTML field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
+#. Label of the sample (HTML) field in DocType 'Client Script'
+#: frappe/custom/doctype/client_script/client_script.json
msgid "Sample"
-msgstr "Esempio"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Saturday"
-msgstr "Sabato"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Saturday"
-msgstr "Sabato"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Saturday"
-msgstr "Sabato"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Saturday"
-msgstr "Sabato"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the saturday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Saturday"
-msgstr "Sabato"
-
-#: core/doctype/data_import/data_import.js:113
-#: desk/page/user_profile/user_profile_controller.js:319
-#: printing/page/print/print.js:831
-#: printing/page/print_format_builder/print_format_builder.js:160
-#: public/js/frappe/form/footer/form_timeline.js:638
-#: public/js/frappe/form/quick_entry.js:156
-#: public/js/frappe/list/list_settings.js:36
-#: public/js/frappe/list/list_settings.js:244
-#: public/js/frappe/list/list_sidebar_group_by.js:25
-#: public/js/frappe/ui/toolbar/toolbar.js:297
-#: public/js/frappe/utils/common.js:443
-#: public/js/frappe/views/kanban/kanban_settings.js:45
-#: public/js/frappe/views/kanban/kanban_settings.js:189
-#: public/js/frappe/views/kanban/kanban_view.js:340
-#: public/js/frappe/views/reports/query_report.js:1785
-#: public/js/frappe/views/reports/report_view.js:1631
-#: public/js/frappe/views/workspace/workspace.js:487
-#: public/js/frappe/widgets/base_widget.js:140
-#: public/js/frappe/widgets/quick_list_widget.js:117
-#: public/js/print_format_builder/print_format_builder.bundle.js:15
-#: public/js/workflow_builder/workflow_builder.bundle.js:33
-msgid "Save"
-msgstr "Salva"
+msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/core/doctype/data_import/data_import.js:113
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/page/print/print.js:858
+#: frappe/printing/page/print_format_builder/print_format_builder.js:160
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
+#: frappe/public/js/frappe/form/quick_entry.js:185
+#: frappe/public/js/frappe/list/list_settings.js:36
+#: frappe/public/js/frappe/list/list_settings.js:247
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/utils/common.js:443
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/report_view.js:1726
+#: frappe/public/js/frappe/views/workspace/workspace.js:335
+#: frappe/public/js/frappe/widgets/base_widget.js:142
+#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:15
+#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:33
msgid "Save"
-msgstr "Salva"
+msgstr ""
-#: core/doctype/user/user.js:316
+#: frappe/core/doctype/user/user.js:339
msgid "Save API Secret: {0}"
msgstr ""
-#: workflow/doctype/workflow/workflow.js:143
+#: frappe/workflow/doctype/workflow/workflow.js:143
msgid "Save Anyway"
-msgstr "Salva comunque"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1314
-#: public/js/frappe/views/reports/report_view.js:1638
+#: frappe/public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
-msgstr "Salva come"
+msgstr ""
-#: public/js/frappe/views/dashboard/dashboard_view.js:62
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:63
msgid "Save Customizations"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1788
+#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
-msgstr "Salva report"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:94
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
msgid "Save filters"
-msgstr "Salva filtri"
+msgstr ""
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the save_on_complete (Check) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Save on Completion"
msgstr ""
-#: public/js/frappe/form/form_tour.js:287
+#: frappe/public/js/frappe/form/form_tour.js:295
msgid "Save the document."
msgstr ""
-#: desk/form/save.py:46 model/rename_doc.py:108
-#: printing/page/print_format_builder/print_format_builder.js:845
-#: public/js/frappe/form/toolbar.js:260
-#: public/js/frappe/views/kanban/kanban_board.bundle.js:910
+#: frappe/model/rename_doc.py:106
+#: frappe/printing/page/print_format_builder/print_format_builder.js:858
+#: frappe/public/js/frappe/form/toolbar.js:285
+#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
+#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
-msgstr "Salvato"
+msgstr ""
-#: public/js/frappe/list/list_settings.js:40
-#: public/js/frappe/views/kanban/kanban_settings.js:47
-#: public/js/frappe/views/workspace/workspace.js:499
+#: frappe/public/js/frappe/list/list_sidebar.html:88
+msgid "Saved Filters"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_settings.js:40
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
+#: frappe/public/js/frappe/views/workspace/workspace.js:348
msgid "Saving"
-msgstr "Salvataggio"
+msgstr ""
-#: public/js/frappe/form/save.js:9
+#: frappe/public/js/frappe/form/save.js:9
msgctxt "Freeze message while saving a document"
msgid "Saving"
-msgstr "Salvataggio"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:343
+#: frappe/custom/doctype/customize_form/customize_form.js:411
msgid "Saving Customization..."
msgstr ""
-#: desk/doctype/module_onboarding/module_onboarding.js:8
+#: frappe/desk/doctype/module_onboarding/module_onboarding.js:8
msgid "Saving this will export this document as well as the steps linked here as json."
msgstr ""
-#: public/js/form_builder/store.js:228
-#: public/js/print_format_builder/store.js:36
-#: public/js/workflow_builder/store.js:73
+#: frappe/public/js/form_builder/store.js:233
+#: frappe/public/js/print_format_builder/store.js:36
+#: frappe/public/js/workflow_builder/store.js:73
msgid "Saving..."
-msgstr "Salvataggio..."
+msgstr ""
-#: public/js/frappe/scanner/index.js:72
+#: frappe/public/js/frappe/scanner/index.js:72
msgid "Scan QRCode"
msgstr ""
-#: www/qrcode.html:14
+#: frappe/www/qrcode.html:14
msgid "Scan the QR Code and enter the resulting code displayed."
-msgstr "Eseguire la scansione del codice QR e immettere il codice risultante visualizzato."
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:125
+#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: email/doctype/newsletter/newsletter.js:106
+#: frappe/email/doctype/newsletter/newsletter.js:106
msgid "Schedule Newsletter"
msgstr ""
-#: public/js/frappe/views/communication.js:81
+#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: email/doctype/newsletter/newsletter.js:70
+#: frappe/email/doctype/newsletter/newsletter.js:70
msgid "Schedule sending"
msgstr ""
-#. Label of a Check field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Schedule sending at a later time"
msgstr ""
-#: email/doctype/newsletter/newsletter_list.js:7
-msgid "Scheduled"
-msgstr "Pianificate"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Scheduled"
-msgstr "Pianificate"
-
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
-msgstr "Pianificate"
+msgstr ""
-#. Label of a Link field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
+#. Label of the scheduled_against (Link) field in DocType 'Scheduler Event'
+#: frappe/core/doctype/scheduler_event/scheduler_event.json
+msgid "Scheduled Against"
+msgstr ""
+
+#. Label of the scheduled_job_type (Link) field in DocType 'Scheduled Job Log'
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
msgid "Scheduled Job"
-msgstr "Lavoro programmato"
+msgstr ""
#. Name of a DocType
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
msgid "Scheduled Job Log"
-msgstr "Registro lavori pianificato"
-
-#. Linked DocType in Scheduled Job Type's connections
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Scheduled Job Log"
-msgstr "Registro lavori pianificato"
+msgstr ""
#. Name of a DocType
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
+#. Label of a Link in the Build Workspace
+#. Label of the scheduled_job_type (Link) field in DocType 'System Health
+#. Report Failing Jobs'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
msgid "Scheduled Job Type"
-msgstr "Tipo di lavoro pianificato"
+msgstr ""
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Scheduled Job Type"
-msgid "Scheduled Job Type"
-msgstr "Tipo di lavoro pianificato"
-
-#. Linked DocType in Server Script's connections
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Scheduled Job Type"
-msgstr "Tipo di lavoro pianificato"
-
-#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Scheduled Job Log"
+#: frappe/core/workspace/build/build.json
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the schedule_settings_section (Section Break) field in DocType
+#. 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Scheduled Sending"
msgstr ""
-#. Label of a Int field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Scheduled To Send"
-msgstr "In programma per inviare"
+msgstr ""
-#: core/doctype/server_script/server_script.py:274
+#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
-msgstr "L'esecuzione pianificata per lo script {0} è stata aggiornata"
+msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.js:26
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:26
msgid "Scheduled to send"
-msgstr "Pianificato per l'invio"
+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'
-#: core/doctype/server_script/server_script.json
-msgctxt "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 "Evento di pianificazione"
+msgstr ""
-#: core/doctype/data_import/data_import.py:97
+#: frappe/core/doctype/data_import/data_import.py:106
msgid "Scheduler Inactive"
-msgstr "Scheduler inattivo"
+msgstr ""
-#: utils/scheduler.py:196
+#. Label of the scheduler_status (Data) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Scheduler Status"
+msgstr ""
+
+#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr ""
-#: core/doctype/data_import/data_import.py:97
+#: frappe/core/doctype/data_import/data_import.py:106
msgid "Scheduler is inactive. Cannot import data."
-msgstr "Lo scheduler non è attivo. Impossibile importare i dati."
+msgstr ""
-#: core/doctype/rq_job/rq_job_list.js:19
+#: frappe/core/doctype/rq_job/rq_job_list.js:19
msgid "Scheduler: Active"
msgstr ""
-#: core/doctype/rq_job/rq_job_list.js:21
+#: frappe/core/doctype/rq_job/rq_job_list.js:21
msgid "Scheduler: Inactive"
msgstr ""
-#. Label of a Data field in DocType 'OAuth Scope'
-#: integrations/doctype/oauth_scope/oauth_scope.json
-msgctxt "OAuth Scope"
+#. Label of the scope (Data) field in DocType 'OAuth Scope'
+#: frappe/integrations/doctype/oauth_scope/oauth_scope.json
msgid "Scope"
msgstr ""
-#. Label of a Section Break field in DocType 'Connected App'
-#. Label of a Table field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the sb_scope_section (Section Break) field in DocType 'Connected
+#. App'
+#. Label of the scopes (Table) field in DocType 'Connected App'
+#. Label of the scopes (Text) field in DocType 'OAuth Authorization Code'
+#. Label of the scopes (Text) field in DocType 'OAuth Bearer Token'
+#. Label of the scopes (Text) field in DocType 'OAuth Client'
+#. Label of the scopes (Table) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Scopes"
-msgstr "Scopes"
+msgstr ""
-#. Label of a Text field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
-msgid "Scopes"
-msgstr "Scopes"
-
-#. Label of a Text field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
-msgid "Scopes"
-msgstr "Scopes"
-
-#. Label of a Text field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
-msgid "Scopes"
-msgstr "Scopes"
-
-#. Label of a Table field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "Scopes"
-msgstr "Scopes"
-
-#. Label of a Code field in DocType 'Client Script'
-#: custom/doctype/client_script/client_script.json
-msgctxt "Client Script"
+#. Label of the report_script (Code) field in DocType 'Report'
+#. Label of the script (Code) field in DocType 'Server Script'
+#. Label of the script (Code) field in DocType 'Client Script'
+#. Label of the script (Code) field in DocType 'Console Log'
+#. Label of the custom_javascript (Section Break) field in DocType 'Web Page'
+#. Label of the custom_js_section (Tab Break) field in DocType 'Website Theme'
+#: frappe/core/doctype/report/report.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/desk/doctype/console_log/console_log.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Script"
-msgstr "Script"
-
-#. Label of a Code field in DocType 'Console Log'
-#: desk/doctype/console_log/console_log.json
-msgctxt "Console Log"
-msgid "Script"
-msgstr "Script"
-
-#. Label of a Code field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
-msgid "Script"
-msgstr "Script"
-
-#. Label of a Code field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Script"
-msgstr "Script"
-
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Script"
-msgstr "Script"
-
-#. Label of a Tab Break field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Script"
-msgstr "Script"
+msgstr ""
#. Name of a role
-#: core/doctype/server_script/server_script.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Script Manager"
-msgstr "Gestore degli script"
+msgstr ""
#. Option for the 'Report Type' (Select) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#: frappe/core/doctype/report/report.json
msgid "Script Report"
-msgstr "Script Report"
+msgstr ""
-#. Label of a Select field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the script_type (Select) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Script Type"
-msgstr "Tipo di script"
+msgstr ""
+
+#. Description of a DocType
+#: frappe/website/doctype/website_script/website_script.json
+msgid "Script to attach to all web pages."
+msgstr ""
#. Label of a Card Break in the Build Workspace
-#: core/workspace/build/build.json
+#. Label of the scripting_tab (Tab Break) field in DocType 'Web Page'
+#: frappe/core/workspace/build/build.json
+#: frappe/website/doctype/web_page/web_page.json
msgid "Scripting"
msgstr ""
-#. Label of a Tab Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Scripting"
-msgstr ""
-
-#. Label of a Section Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the section_break_6 (Section Break) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Scripting / Style"
msgstr ""
-#: public/js/frappe/form/link_selector.js:46
-#: public/js/frappe/ui/toolbar/search.js:49
-#: public/js/frappe/ui/toolbar/search.js:68
-#: templates/includes/search_template.html:26 www/search.py:19
-msgid "Search"
-msgstr "Cerca"
+#. 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 a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. 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 a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the search_fields (Data) field in DocType 'DocType'
+#. Label of the search_fields (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Search Fields"
-msgstr "Campi di ricerca"
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Search Fields"
-msgstr "Campi di ricerca"
-
-#: public/js/frappe/ui/toolbar/awesome_bar.js:186
-msgid "Search Help"
-msgstr "Cercare aiuto"
-
-#. Label of a Table field in DocType 'Global Search Settings'
-#: desk/doctype/global_search_settings/global_search_settings.json
-msgctxt "Global Search Settings"
-msgid "Search Priorities"
-msgstr "Cerca priorità"
-
-#: www/search.py:14
-msgid "Search Results for"
msgstr ""
-#: core/doctype/doctype/doctype.py:1418
+#: 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:1467
msgid "Search field {0} is not valid"
-msgstr "Cerca campo {0} non è valido"
+msgstr ""
-#: public/js/frappe/ui/toolbar/search.js:50
-#: public/js/frappe/ui/toolbar/search.js:69
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:87
+msgid "Search fields"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/AddFieldButton.vue:19
+msgid "Search fieldtypes..."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/toolbar/search.js:50
+#: frappe/public/js/frappe/ui/toolbar/search.js:69
msgid "Search for anything"
-msgstr "Ricerca per nulla"
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:306
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:300
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:306
msgid "Search for {0}"
msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:166
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:166
msgid "Search in a document type"
-msgstr "Cerca in un tipo di documento"
+msgstr ""
-#: templates/includes/search_box.html:8
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:29
+msgid "Search or type a command ({0})"
+msgstr ""
+
+#: frappe/public/js/form_builder/components/SearchBox.vue:8
+msgid "Search properties..."
+msgstr ""
+
+#: frappe/templates/includes/search_box.html:8
msgid "Search results for"
-msgstr "cerca risultati per"
+msgstr ""
-#: templates/includes/navbar/navbar_search.html:6
-#: templates/includes/search_box.html:2
-#: templates/includes/search_template.html:23
+#: frappe/templates/includes/navbar/navbar_search.html:6
+#: frappe/templates/includes/search_box.html:2
+#: frappe/templates/includes/search_template.html:23
msgid "Search..."
-msgstr "Ricerca..."
+msgstr ""
-#: public/js/frappe/ui/toolbar/search.js:210
+#: frappe/public/js/frappe/ui/toolbar/search.js:210
msgid "Searching ..."
-msgstr "Ricerca ..."
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
+#: frappe/public/js/form_builder/components/Section.vue:263
+#: frappe/website/doctype/web_template/web_template.json
msgid "Section"
-msgstr "Sezione"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Section Break"
-msgstr "Interruzione di sezione"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Section Break"
-msgstr "Interruzione di sezione"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Section Break"
-msgstr "Interruzione di sezione"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Section Break"
-msgstr "Interruzione di sezione"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Section Break"
-msgstr "Interruzione di sezione"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:421
+#: frappe/printing/page/print_format_builder/print_format_builder.js:421
msgid "Section Heading"
-msgstr "Sezione Intestazione"
+msgstr ""
-#. Label of a Data field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the section_id (Data) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Section ID"
msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: 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 "Impostazioni di sicurezza"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:784
+#: frappe/public/js/frappe/ui/notifications/notifications.js:309
+msgid "See all Activity"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "See all past reports."
-msgstr "Vedi tutti i rapporti precedenti."
+msgstr ""
-#: public/js/frappe/form/form.js:1208
-#: website/doctype/contact_us_settings/contact_us_settings.js:4
+#: frappe/public/js/frappe/form/form.js:1235
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4
msgid "See on Website"
-msgstr "Vedere sul Sito"
+msgstr ""
-#: website/doctype/web_form/templates/web_form.html:150
+#: frappe/website/doctype/web_form/templates/web_form.html:153
+msgctxt "Button in web form"
msgid "See previous responses"
msgstr ""
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:48
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:49
msgid "See the document at {0}"
-msgstr "Vedi il documento in {0}"
+msgstr ""
-#: core/doctype/error_log/error_log_list.js:5
+#. Label of the seen (Check) field in DocType 'Comment'
+#. Label of the seen (Check) field in DocType 'Communication'
+#. Label of the seen (Check) field in DocType 'Error Log'
+#. Label of the seen (Check) field in DocType 'Notification Settings'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/error_log/error_log_list.js:5
+#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Seen"
-msgstr "Visto"
+msgstr ""
-#. Label of a Check field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Seen"
-msgstr "Visto"
-
-#. Label of a Check field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Seen"
-msgstr "Visto"
-
-#. Label of a Check field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Seen"
-msgstr "Visto"
-
-#. Label of a Check field in DocType 'Error Log'
-#: core/doctype/error_log/error_log.json
-msgctxt "Error Log"
-msgid "Seen"
-msgstr "Visto"
-
-#. Label of a Check field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "Seen"
-msgstr "Visto"
-
-#. Label of a Section Break field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
+#. Label of the seen_by_section (Section Break) field in DocType 'Note'
+#: frappe/desk/doctype/note/note.json
msgid "Seen By"
-msgstr "Visto da"
+msgstr ""
-#. Label of a Table field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
+#. Label of the seen_by (Table) field in DocType 'Note'
+#: frappe/desk/doctype/note/note.json
msgid "Seen By Table"
-msgstr "Visto da Tavolo"
-
-#: printing/page/print/print.js:592
-msgid "Select"
-msgstr "Selezionare"
-
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Select"
-msgstr "Selezionare"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Select"
-msgstr "Selezionare"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Select"
-msgstr "Selezionare"
+msgstr ""
+#. Label of the select (Check) field in DocType 'Custom DocPerm'
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Select"
-msgstr "Selezionare"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Select"
-msgstr "Selezionare"
-
+#. Label of the select (Check) field in DocType 'DocPerm'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Select"
-msgstr "Selezionare"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Select"
-msgstr "Selezionare"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Select"
-msgstr "Selezionare"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/printing/page/print/print.js:602
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Select"
-msgstr "Selezionare"
+msgstr ""
-#: public/js/frappe/views/communication.js:150
-#: public/js/frappe/views/interaction.js:93
-#: public/js/frappe/views/interaction.js:155
+#: frappe/public/js/frappe/data_import/data_exporter.js:149
+#: frappe/public/js/frappe/form/controls/multicheck.js:166
+#: frappe/public/js/frappe/form/grid_row.js:481
+msgid "Select All"
+msgstr ""
+
+#: frappe/public/js/frappe/views/communication.js:174
+#: frappe/public/js/frappe/views/communication.js:595
+#: frappe/public/js/frappe/views/interaction.js:93
+#: frappe/public/js/frappe/views/interaction.js:155
msgid "Select Attachments"
-msgstr "Selezionare Allegati"
+msgstr ""
-#: custom/doctype/client_script/client_script.js:25
-#: custom/doctype/client_script/client_script.js:28
+#: frappe/custom/doctype/client_script/client_script.js:25
+#: frappe/custom/doctype/client_script/client_script.js:28
msgid "Select Child Table"
-msgstr "Seleziona tabella figlio"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:357
+#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
-msgstr "Seleziona colonna"
+msgstr ""
-#: public/js/frappe/form/print_utils.js:43
+#: frappe/printing/page/print_format_builder/print_format_builder_field.html:42
+#: frappe/public/js/frappe/form/print_utils.js:45
msgid "Select Columns"
-msgstr "Seleziona colonne"
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:387
+#: frappe/desk/page/setup_wizard/setup_wizard.js:399
msgid "Select Country"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:404
+#: frappe/desk/page/setup_wizard/setup_wizard.js:415
msgid "Select Currency"
msgstr ""
-#: public/js/frappe/utils/dashboard_utils.js:240
+#. 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 "Seleziona Dashboard"
-
-#. Label of a Link field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Select Dashboard"
-msgstr "Seleziona Dashboard"
-
-#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Select Date Range"
-msgstr "Seleziona Intervallo di date"
-
-#: public/js/frappe/doctype/index.js:170
-msgid "Select DocType"
-msgstr "Selezionare DocType"
-
-#. Label of a Link field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Select DocType"
-msgstr "Selezionare DocType"
-
-#. Label of a Link field in DocType 'Data Export'
-#: core/doctype/data_export/data_export.json
-msgctxt "Data Export"
-msgid "Select Doctype"
-msgstr "Seleziona Doctype"
-
-#. Label of a Dynamic Link field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Select Document"
msgstr ""
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:50
-#: workflow/page/workflow_builder/workflow_builder.js:50
+#. 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 "Seleziona tipo di documento"
+msgstr ""
-#: core/page/permission_manager/permission_manager.js:172
+#: frappe/core/page/permission_manager/permission_manager.js:179
msgid "Select Document Type or Role to start."
-msgstr "Per iniziare seleziona il Tipo di Documento o il Ruolo."
+msgstr ""
-#: public/js/frappe/doctype/index.js:199 public/js/frappe/form/toolbar.js:762
+#: frappe/core/page/permission_manager/permission_manager_help.html:34
+msgid "Select Document Types to set which User Permissions are used to limit access."
+msgstr ""
+
+#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33
+#: frappe/public/js/frappe/doctype/index.js:200
+#: frappe/public/js/frappe/form/toolbar.js:835
msgid "Select Field"
-msgstr "Seleziona il campo"
+msgstr ""
-#: public/js/frappe/form/grid_row.js:459
-#: public/js/frappe/list/list_settings.js:233
-#: public/js/frappe/views/kanban/kanban_settings.js:181
+#: frappe/public/js/frappe/ui/group_by/group_by.html:35
+#: frappe/public/js/frappe/ui/group_by/group_by.js:141
+msgid "Select Field..."
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid_row.js:473
+#: frappe/public/js/frappe/list/list_settings.js:236
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
-msgstr "Seleziona Campi"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:143
+#: frappe/public/js/frappe/data_import/data_exporter.js:147
msgid "Select Fields To Insert"
-msgstr "Seleziona i campi da inserire"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:144
+#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Update"
-msgstr "Seleziona i campi da aggiornare"
+msgstr ""
-#: public/js/frappe/list/list_sidebar_group_by.js:21
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:21
msgid "Select Filters"
-msgstr "Seleziona filtri"
+msgstr ""
-#: desk/doctype/event/event.py:96
+#: frappe/desk/doctype/event/event.py:103
msgid "Select Google Calendar to which event should be synced."
-msgstr "Seleziona Google Calendar a quale evento deve essere sincronizzato."
+msgstr ""
-#: contacts/doctype/contact/contact.py:75
+#: frappe/contacts/doctype/contact/contact.py:77
msgid "Select Google Contacts to which contact should be synced."
-msgstr "Seleziona Contatti Google con cui sincronizzare i contatti."
+msgstr ""
-#: public/js/frappe/list/list_view_select.js:185
+#: frappe/public/js/frappe/ui/group_by/group_by.html:10
+msgid "Select Group By..."
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view_select.js:185
msgid "Select Kanban"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:379
+#: frappe/desk/page/setup_wizard/setup_wizard.js:391
msgid "Select Language"
-msgstr "Seleziona la lingua"
+msgstr ""
-#. Label of a Select field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the list_name (Select) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select List View"
msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:154
+#: frappe/public/js/frappe/data_import/data_exporter.js:158
msgid "Select Mandatory"
-msgstr "selezionare obbligatoria"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:235
+#: frappe/custom/doctype/customize_form/customize_form.js:280
msgid "Select Module"
-msgstr "Seleziona Modulo"
+msgstr ""
-#: printing/page/print/print.js:175 printing/page/print/print.js:575
+#: frappe/printing/page/print/print.js:175
+#: frappe/printing/page/print/print.js:585
msgid "Select Network Printer"
msgstr ""
-#. Label of a Link field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the page_name (Link) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Page"
msgstr ""
-#: printing/page/print_format_builder_beta/print_format_builder_beta.js:68
-#: public/js/frappe/views/communication.js:144
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
+#: frappe/public/js/frappe/views/communication.js:157
msgid "Select Print Format"
-msgstr "Selezionare Formato di stampa"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:82
+#: frappe/printing/page/print_format_builder/print_format_builder.js:82
msgid "Select Print Format to Edit"
-msgstr "Selezionare Stampa Formato Modifica"
+msgstr ""
-#. Label of a Link field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the report_name (Link) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Report"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:623
+#: frappe/printing/page/print_format_builder/print_format_builder.js:631
msgid "Select Table Columns for {0}"
-msgstr "Seleziona colonne Tabella per {0}"
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:396
+#: frappe/desk/page/setup_wizard/setup_wizard.js:408
msgid "Select Time Zone"
msgstr ""
-#. Label of a Autocomplete field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the transaction_type (Autocomplete) field in DocType 'Document
+#. Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Select Transaction"
-msgstr "Selezionare Transaction"
+msgstr ""
-#: workflow/page/workflow_builder/workflow_builder.js:68
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:68
msgid "Select Workflow"
msgstr ""
-#. Label of a Link field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the workspace_name (Link) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Workspace"
msgstr ""
-#: website/doctype/website_settings/website_settings.js:23
+#. Label of the select_workspaces_section (Section Break) field in DocType
+#. 'Workspace Settings'
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+msgid "Select Workspaces"
+msgstr ""
+
+#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
-msgstr "Selezionare una immagine di marca prima."
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:108
+#: frappe/printing/page/print_format_builder/print_format_builder.js:108
msgid "Select a DocType to make a new format"
-msgstr "Selezionare un DOCTYPE per fare un nuovo formato"
-
-#: integrations/doctype/webhook/webhook.py:130
-msgid "Select a document to check if it meets conditions."
msgstr ""
-#: integrations/doctype/webhook/webhook.py:142
-msgid "Select a document to preview request data"
+#: frappe/public/js/form_builder/components/Sidebar.vue:56
+msgid "Select a field to edit its properties."
msgstr ""
-#: public/js/frappe/views/treeview.js:342
+#: frappe/public/js/frappe/views/treeview.js:358
msgid "Select a group node first."
-msgstr "Selezionare un nodo primo gruppo."
+msgstr ""
-#: core/doctype/doctype/doctype.py:1885
+#: frappe/core/doctype/doctype/doctype.py:1942
msgid "Select a valid Sender Field for creating documents from Email"
-msgstr "Seleziona un campo mittente valido per creare documenti da e-mail"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1869
+#: frappe/core/doctype/doctype/doctype.py:1926
msgid "Select a valid Subject field for creating documents from Email"
-msgstr "Seleziona un campo Oggetto valido per creare documenti da Email"
+msgstr ""
-#: public/js/frappe/form/form_tour.js:313
+#: frappe/public/js/frappe/form/form_tour.js:321
msgid "Select an Image"
msgstr ""
+#: frappe/www/apps.html:10
+msgid "Select an app to continue"
+msgstr ""
+
+#: frappe/printing/page/print_format_builder/print_format_builder_start.html:2
+msgid "Select an existing format to edit or start a new format."
+msgstr ""
+
#. Description of the 'Brand Image' (Attach Image) field in DocType 'Website
#. Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Select an image of approx width 150px with a transparent background for best results."
-msgstr "Selezionare un'immagine di circa larghezza 150px con sfondo trasparente per i migliori risultati."
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:34
+#: frappe/public/js/frappe/list/bulk_operations.js:36
msgid "Select atleast 1 record for printing"
-msgstr "Selezionare atleast 1 record per la stampa"
+msgstr ""
-#: core/doctype/success_action/success_action.js:18
+#: frappe/core/doctype/success_action/success_action.js:18
msgid "Select atleast 2 actions"
-msgstr "Seleziona almeno 2 azioni"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1201
+#: frappe/public/js/frappe/list/list_view.js:1304
msgctxt "Description of a list view shortcut"
msgid "Select list item"
-msgstr "Seleziona la voce dell'elenco"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1153
-#: public/js/frappe/list/list_view.js:1169
+#: frappe/public/js/frappe/list/list_view.js:1256
+#: frappe/public/js/frappe/list/list_view.js:1272
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
-msgstr "Seleziona più voci di elenco"
+msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:174
+#: frappe/public/js/frappe/views/calendar/calendar.js:167
msgid "Select or drag across time slots to create a new event."
-msgstr "Selezionare o trascinare gli intervalli di tempo per creare un nuovo evento."
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:195
+#: frappe/public/js/frappe/list/bulk_operations.js:239
msgid "Select records for assignment"
-msgstr "Seleziona le schede per l'assegnazione"
+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'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Select the label after which you want to insert new field."
-msgstr "Selezionare l'etichetta dopo la quale si desidera inserire nuovo campo."
+msgstr ""
-#: public/js/frappe/utils/diffview.js:101
+#: frappe/public/js/frappe/utils/diffview.js:102
msgid "Select two versions to view the diff."
msgstr ""
-#: public/js/frappe/form/link_selector.js:24
-#: public/js/frappe/form/multi_select_dialog.js:79
-#: public/js/frappe/form/multi_select_dialog.js:279
-#: public/js/frappe/list/list_view_select.js:153
+#: frappe/public/js/frappe/form/link_selector.js:24
+#: frappe/public/js/frappe/form/multi_select_dialog.js:80
+#: frappe/public/js/frappe/form/multi_select_dialog.js:282
+#: frappe/public/js/frappe/list/list_view_select.js:153
+#: frappe/public/js/print_format_builder/Preview.vue:90
msgid "Select {0}"
-msgstr "Selezionare {0}"
+msgstr ""
-#: model/workflow.py:121
+#: frappe/model/workflow.py:117
msgid "Self approval is not allowed"
-msgstr "L'autoapprovazione non è consentita"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:66
-#: email/doctype/newsletter/newsletter.js:74
-#: email/doctype/newsletter/newsletter.js:162
-#: public/js/frappe/views/communication.js:26 www/contact.html:41
+#: frappe/email/doctype/newsletter/newsletter.js:66
+#: frappe/email/doctype/newsletter/newsletter.js:74
+#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
msgid "Send"
-msgstr "Invia"
+msgstr ""
-#. Label of a Datetime field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: 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 "Invia Dopo"
+msgstr ""
-#. Label of a Datetime field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Send After"
-msgstr "Invia Dopo"
-
-#. Label of a Select field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the event (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Send Alert On"
-msgstr "Invia Avviso su"
+msgstr ""
-#. Label of a Check field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the send_email_alert (Check) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
-msgstr "Invia avviso via email"
+msgstr ""
-#. Label of a Datetime field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Send Email At"
msgstr ""
+#. Label of the send_email (Check) field in DocType 'Workflow Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Send Email On State"
+msgstr ""
+
#. Description of the 'Send Print as PDF' (Check) field in DocType 'Print
#. Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Send Email Print Attachments as PDF (Recommended)"
-msgstr "Invia Email Print allegati in formato PDF (consigliata)"
+msgstr ""
-#. Label of a Check field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Send Email for Successful Backup"
-msgstr "Invia e-mail per il backup riuscito"
+#. Label of the send_email_to_creator (Check) field in DocType 'Workflow
+#. Transition'
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Send Email To Creator"
+msgstr ""
-#. Label of a Check field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Send Email for Successful Backup"
-msgstr "Invia e-mail per il backup riuscito"
-
-#. Label of a Check field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Send Email for Successful backup"
-msgstr "Invia e-mail per il backup riuscito"
-
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the send_me_a_copy (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Send Me A Copy of Outgoing Emails"
-msgstr "Inviami una copia di email in uscita"
+msgstr ""
-#. Label of a Data field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Send Notification To"
-msgstr "Invia notifica a"
-
-#. Label of a Small Text field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the send_notification_to (Small Text) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Send Notification to"
-msgstr "Invia notifica a"
+msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the document_follow_notify (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Send Notifications For Documents Followed By Me"
-msgstr "Invia notifiche per i documenti seguiti da me"
+msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the thread_notify (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Send Notifications For Email Threads"
-msgstr "Invia notifiche per thread di posta elettronica"
+msgstr ""
-#. Label of a Data field in DocType 'Dropbox Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Send Notifications To"
-msgstr "Inviare notifiche ai"
-
-#. Label of a Data field in DocType 'S3 Backup Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Send Notifications To"
-msgstr "Inviare notifiche ai"
-
-#: email/doctype/auto_email_report/auto_email_report.js:21
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
-msgstr "Invia Ora"
+msgstr ""
-#. Label of a Check field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#. Label of the send_print_as_pdf (Check) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Send Print as PDF"
-msgstr "Invia Stampa in formato PDF"
+msgstr ""
-#: public/js/frappe/views/communication.js:134
+#: frappe/public/js/frappe/views/communication.js:147
msgid "Send Read Receipt"
-msgstr "Invia conferma di lettura"
+msgstr ""
-#. Label of a Check field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the send_system_notification (Check) field in DocType
+#. 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Send System Notification"
-msgstr "Invia notifica di sistema"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:153
+#: frappe/email/doctype/newsletter/newsletter.js:153
msgid "Send Test Email"
msgstr ""
-#. Label of a Check field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
-msgstr "Invia a tutti gli assegnatari"
+msgstr ""
-#. Label of a Check field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Send Unsubscribe Link"
-msgstr "Invia Cancellati link"
+msgstr ""
-#. Label of a Check field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Send Web View Link"
msgstr ""
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the send_welcome_email (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
-msgstr "Invia email di benvenuto"
-
-#: www/me.html:67
-msgid "Send a request to delete your account"
msgstr ""
-#: email/doctype/newsletter/newsletter.js:10
+#: frappe/email/doctype/newsletter/newsletter.js:10
msgid "Send a test email"
msgstr ""
-#: email/doctype/newsletter/newsletter.js:166
+#: frappe/email/doctype/newsletter/newsletter.js:166
msgid "Send again"
msgstr ""
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
-msgstr "Invia avviso se la data coincide con il valore di questo campo"
+msgstr ""
+
+#. Description of the 'Reference Datetime' (Select) field in DocType
+#. 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Send alert if datetime matches this field's value"
+msgstr ""
#. Description of the 'Value Changed' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Send alert if this field's value changes"
-msgstr "Invia avviso se cambia il valore di questo campo"
+msgstr ""
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the send_reminder (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Send an email reminder in the morning"
-msgstr "Invia un promemoria tramite email al mattino"
+msgstr ""
#. Description of the 'Days Before or After' (Int) field in DocType
#. 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Send days before or after the reference date"
-msgstr "Invia giorni prima o dopo la data di riferimento"
+msgstr ""
+
+#. Description of the 'Send Email On State' (Check) field in DocType 'Workflow
+#. Document State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "Send email when document transitions to the state."
+msgstr ""
#. Description of the 'Forward To Email Address' (Data) field in DocType
#. 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Send enquiries to this email address"
-msgstr "Invia le richieste a questo indirizzo email"
+msgstr ""
-#: www/login.html:210
+#: frappe/templates/includes/login/login.js:72 frappe/www/login.html:230
msgid "Send login link"
msgstr ""
-#: public/js/frappe/views/communication.js:128
+#: frappe/public/js/frappe/views/communication.js:141
msgid "Send me a copy"
-msgstr "Inviami una copia"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:46
+#: frappe/email/doctype/newsletter/newsletter.js:46
msgid "Send now"
msgstr ""
-#. Label of a Check field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
-msgstr "Invia solo se non vi è alcun dato"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the send_unsubscribe_message (Check) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Send unsubscribe message in email"
-msgstr "Invia messaggio di disiscrizione"
+msgstr ""
-#. Label of a Link field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the sender (Data) field in DocType 'Event'
+#. Label of the sender (Data) field in DocType 'ToDo'
+#. Label of the sender (Link) field in DocType 'Auto Email Report'
+#. Label of the sender (Data) field in DocType 'Email Queue'
+#. Label of the send_from (Data) field in DocType 'Newsletter'
+#. Label of the sender (Link) field in DocType 'Notification'
+#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/email/doctype/notification/notification.json
msgid "Sender"
-msgstr "Mittente"
+msgstr ""
-#. Label of a Data field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Sender"
-msgstr "Mittente"
-
-#. Label of a Data field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Sender"
-msgstr "Mittente"
-
-#. Label of a Data field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Sender"
-msgstr "Mittente"
-
-#. Label of a Link field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Sender"
-msgstr "Mittente"
-
-#. Label of a Data field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Sender"
-msgstr "Mittente"
-
-#. Label of a Data field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the sender_email (Data) field in DocType 'Newsletter'
+#. Label of the sender_email (Data) field in DocType 'Notification'
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
-msgstr "Email del mittente"
+msgstr ""
-#. Label of a Data field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Sender Email"
-msgstr "Email del mittente"
-
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the sender_field (Data) field in DocType 'DocType'
+#. Label of the sender_field (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sender Email Field"
msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Sender Email Field"
-msgstr ""
-
-#: core/doctype/doctype/doctype.py:1888
+#: frappe/core/doctype/doctype/doctype.py:1945
msgid "Sender Field should have Email in options"
-msgstr "Il campo del mittente dovrebbe contenere l'email nelle opzioni"
+msgstr ""
-#. Label of a Data field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the sender_name (Data) field in DocType 'SMS Log'
+#. Label of the sender_name (Data) field in DocType 'Newsletter'
+#: frappe/core/doctype/sms_log/sms_log.json
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
-#. Label of a Data field in DocType 'SMS Log'
-#: core/doctype/sms_log/sms_log.json
-msgctxt "SMS Log"
-msgid "Sender Name"
-msgstr ""
-
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Sender Name Field"
-msgstr ""
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the sender_name_field (Data) field in DocType 'DocType'
+#. Label of the sender_name_field (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sender Name Field"
msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Sendgrid"
-msgstr "SendGrid"
-
-#: email/doctype/newsletter/newsletter.js:201
-msgid "Sending"
-msgstr "invio"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Sending"
-msgstr "invio"
-
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
-msgstr "invio"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:203
+#: frappe/email/doctype/newsletter/newsletter.js:203
msgid "Sending emails"
msgstr ""
-#: email/doctype/newsletter/newsletter.js:164
+#: frappe/email/doctype/newsletter/newsletter.js:164
msgid "Sending..."
msgstr ""
-#: email/doctype/newsletter/newsletter.js:196
-#: email/doctype/newsletter/newsletter_list.js:5
-msgid "Sent"
-msgstr "Inviati"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Sent"
-msgstr "Inviati"
-
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Sent"
-msgstr "Inviati"
-
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
-#: email/doctype/email_queue_recipient/email_queue_recipient.json
-msgctxt "Email Queue Recipient"
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
+#: frappe/email/doctype/newsletter/newsletter.js:196
+#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
-msgstr "Inviati"
+msgstr ""
-#. Label of a Date field in DocType 'SMS Log'
-#: core/doctype/sms_log/sms_log.json
-msgctxt "SMS Log"
+#. Label of the sent_folder_name (Data) field in DocType 'Email Account'
+#. Label of the sent_folder_name (Data) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Sent Folder Name"
+msgstr ""
+
+#. Label of the sent_on (Date) field in DocType 'SMS Log'
+#: frappe/core/doctype/sms_log/sms_log.json
msgid "Sent On"
msgstr ""
-#. Label of a Check field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the read_receipt (Check) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Sent Read Receipt"
-msgstr "Sent conferma di lettura"
+msgstr ""
-#. Label of a Code field in DocType 'SMS Log'
-#: core/doctype/sms_log/sms_log.json
-msgctxt "SMS Log"
+#. Label of the sent_to (Code) field in DocType 'SMS Log'
+#: frappe/core/doctype/sms_log/sms_log.json
msgid "Sent To"
msgstr ""
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the sent_or_received (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Sent or Received"
-msgstr "Inviati o ricevuti"
+msgstr ""
#. Option for the 'Event Category' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/desk/doctype/event/event.json
msgid "Sent/Received Email"
-msgstr "Email inviata / ricevuta"
+msgstr ""
#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
-#: core/doctype/navbar_item/navbar_item.json
-msgctxt "Navbar Item"
+#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Separator"
-msgstr "Separatore"
+msgstr ""
-#. Label of a Float field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the sequence_id (Float) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
msgid "Sequence Id"
msgstr ""
-#. Label of a Text field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. 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 "Lista Serie per questa transazione"
+msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.py:116
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:115
msgid "Series Updated for {}"
msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.py:226
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:223
msgid "Series counter for {} updated to {} successfully"
msgstr ""
-#: core/doctype/doctype/doctype.py:1073
-#: core/doctype/document_naming_settings/document_naming_settings.py:171
+#: frappe/core/doctype/doctype/doctype.py:1109
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170
msgid "Series {0} already used in {1}"
-msgstr "Serie {0} già utilizzata in {1}"
+msgstr ""
#. Option for the 'Action Type' (Select) field in DocType 'DocType Action'
-#: core/doctype/doctype_action/doctype_action.json
-msgctxt "DocType Action"
+#: frappe/core/doctype/doctype_action/doctype_action.json
msgid "Server Action"
-msgstr "Azione del server"
+msgstr ""
-#: public/js/frappe/request.js:606
+#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
-msgstr "Errore del server"
+msgstr ""
-#. Label of a Data field in DocType 'Network Printer Settings'
-#: printing/doctype/network_printer_settings/network_printer_settings.json
-msgctxt "Network Printer Settings"
+#. Label of the server_ip (Data) field in DocType 'Network Printer Settings'
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Server IP"
-msgstr "IP del server"
+msgstr ""
+#. Label of the server_script (Link) field in DocType 'Scheduled Job Type'
#. Name of a DocType
-#: core/doctype/server_script/server_script.json
-msgid "Server Script"
-msgstr "Script server"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Server Script"
-msgstr "Script server"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Server Script"
-msgstr "Script server"
-
-#. Label of a Link field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Server Script"
-msgstr "Script server"
-
#. Label of a Link in the Build Workspace
-#. Label of a shortcut in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Server Script"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/workspace/build/build.json
msgid "Server Script"
-msgstr "Script server"
+msgstr ""
-#: utils/safe_exec.py:90
+#: frappe/utils/safe_exec.py:94
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
-#: core/doctype/server_script/server_script.js:32
+#: frappe/core/doctype/server_script/server_script.js:39
msgid "Server Scripts feature is not available on this site."
msgstr ""
-#: public/js/frappe/request.js:243 public/js/frappe/request.js:251
+#: frappe/public/js/frappe/request.js:254
+msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
+msgstr ""
+
+#: frappe/public/js/frappe/request.js:246
msgid "Server was too busy to process this request. Please try again."
msgstr ""
-#. Label of a Select field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. 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 "servizio"
-
-#. Label of a Data field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Service"
-msgstr "servizio"
+msgstr ""
#. Name of a DocType
-#: core/doctype/session_default/session_default.json
+#: frappe/core/doctype/session_default/session_default.json
msgid "Session Default"
-msgstr "Sessione predefinita"
+msgstr ""
#. Name of a DocType
-#: core/doctype/session_default_settings/session_default_settings.json
+#: frappe/core/doctype/session_default_settings/session_default_settings.json
msgid "Session Default Settings"
-msgstr "Impostazioni predefinite della sessione"
+msgstr ""
#. Label of a standard navbar item
#. Type: Action
-#: hooks.py public/js/frappe/ui/toolbar/toolbar.js:296
+#. Label of the session_defaults (Table) field in DocType 'Session Default
+#. Settings'
+#: frappe/core/doctype/session_default_settings/session_default_settings.json
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
msgid "Session Defaults"
-msgstr "Sessioni predefinite"
+msgstr ""
-#. Label of a Table field in DocType 'Session Default Settings'
-#: core/doctype/session_default_settings/session_default_settings.json
-msgctxt "Session Default Settings"
-msgid "Session Defaults"
-msgstr "Sessioni predefinite"
-
-#: public/js/frappe/ui/toolbar/toolbar.js:281
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
msgid "Session Defaults Saved"
-msgstr "Sessioni predefinite salvate"
+msgstr ""
-#: app.py:345
+#: frappe/app.py:353
msgid "Session Expired"
-msgstr "Sessione scaduta"
+msgstr ""
-#. Label of a Data field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the session_expiry (Data) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: core/doctype/system_settings/system_settings.py:110
+#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
-msgstr "Durata Sessione deve essere nel formato {0}"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:562
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
+#: frappe/desk/doctype/number_card/number_card.js:295
+#: frappe/desk/doctype/number_card/number_card.js:387
+#: frappe/public/js/frappe/widgets/chart_widget.js:447
+msgid "Set"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:607
msgctxt "Field value is set"
msgid "Set"
-msgstr "set"
+msgstr ""
-#. Label of a Button field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the set_banner_from_image (Button) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Set Banner from Image"
-msgstr "Impostare Banner da immagine"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:199
+#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
-msgstr "Imposta grafico"
+msgstr ""
#. Description of the 'Chart Options' (Code) field in DocType 'Dashboard'
-#: desk/doctype/dashboard/dashboard.json
-msgctxt "Dashboard"
+#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"])"
-msgstr "Imposta le opzioni predefinite per tutti i grafici in questa dashboard (Es: "colors": ["# d1d8dd", "# ff5858"])"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.js:467
-#: desk/doctype/number_card/number_card.js:361
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
+#: frappe/desk/doctype/number_card/number_card.js:367
msgid "Set Dynamic Filters"
-msgstr "Imposta filtri dinamici"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.js:381
-#: desk/doctype/number_card/number_card.js:277
-#: website/doctype/web_form/web_form.js:260
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
+#: frappe/desk/doctype/number_card/number_card.js:280
+#: frappe/public/js/form_builder/components/Field.vue:80
+#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
-msgstr "Imposta filtri"
+msgstr ""
-#: public/js/frappe/widgets/chart_widget.js:395
-#: public/js/frappe/widgets/quick_list_widget.js:102
+#: frappe/public/js/frappe/widgets/chart_widget.js:436
+#: frappe/public/js/frappe/widgets/quick_list_widget.js:105
msgid "Set Filters for {0}"
-msgstr "Imposta filtri per {0}"
+msgstr ""
-#: core/doctype/user_type/user_type.py:91
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
+msgid "Set Level"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:92
msgid "Set Limit"
msgstr ""
#. Description of the 'Setup Series for transactions' (Section Break) field in
#. DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Set Naming Series options on your transactions."
msgstr ""
-#. Label of a Password field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the new_password (Password) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Set New Password"
-msgstr "Imposta nuova password"
+msgstr ""
-#: desk/page/backups/backups.js:8
+#: frappe/desk/page/backups/backups.js:8
msgid "Set Number of Backups"
-msgstr "Imposta il numero di backup"
+msgstr ""
-#: www/update-password.html:9
+#: frappe/www/update-password.html:32
msgid "Set Password"
-msgstr "Imposta password"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:112
+#: frappe/custom/doctype/customize_form/customize_form.js:112
msgid "Set Permissions"
-msgstr "Imposta autorizzazioni"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:471
+#: frappe/printing/page/print_format_builder/print_format_builder.js:471
msgid "Set Properties"
msgstr ""
-#. Label of a Section Break field in DocType 'Notification'
-#. Label of a Select field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the property_section (Section Break) field in DocType
+#. 'Notification'
+#. Label of the set_property_after_alert (Select) field in DocType
+#. 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Set Property After Alert"
-msgstr "Imposta proprietà dopo avvisi"
+msgstr ""
-#: public/js/frappe/form/link_selector.js:207
-#: public/js/frappe/form/link_selector.js:208
+#: frappe/public/js/frappe/form/link_selector.js:207
+#: frappe/public/js/frappe/form/link_selector.js:208
msgid "Set Quantity"
-msgstr "Set Quantità"
+msgstr ""
-#. Label of a Select field in DocType 'Role Permission for Page and Report'
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-msgctxt "Role Permission for Page and Report"
+#. Label of the set_role_for (Select) field in DocType 'Role Permission for
+#. Page and Report'
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
msgid "Set Role For"
-msgstr "Imposta ruolo Per"
+msgstr ""
-#: core/doctype/user/user.js:122
-#: core/page/permission_manager/permission_manager.js:65
+#: frappe/core/doctype/user/user.js:131
+#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
-msgstr "Imposta le Autorizzazioni Utente"
+msgstr ""
-#. Label of a Small Text field in DocType 'Property Setter'
-#: custom/doctype/property_setter/property_setter.json
-msgctxt "Property Setter"
+#. Label of the value (Small Text) field in DocType 'Property Setter'
+#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Set Value"
-msgstr "Imposta valore"
+msgstr ""
-#: public/js/frappe/file_uploader/file_uploader.bundle.js:72
-#: public/js/frappe/file_uploader/file_uploader.bundle.js:124
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134
msgid "Set all private"
msgstr ""
-#: public/js/frappe/file_uploader/file_uploader.bundle.js:72
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82
msgid "Set all public"
msgstr ""
-#: printing/doctype/print_format/print_format.js:49
+#: frappe/printing/doctype/print_format/print_format.js:49
msgid "Set as Default"
-msgstr "Imposta come predefinito"
+msgstr ""
-#: website/doctype/website_theme/website_theme.js:33
+#: frappe/website/doctype/website_theme/website_theme.js:33
msgid "Set as Default Theme"
-msgstr "Imposta come tema predefinito"
-
-#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Set by user"
msgstr ""
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Set by user"
msgstr ""
-#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Set non-standard precision for a Float or Currency field"
-msgstr "Set di precisione non standard per un campo Float o Valuta"
-
-#. Description of the 'Precision' (Select) field in DocType 'Customize Form
-#. Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Set non-standard precision for a Float or Currency field"
-msgstr "Set di precisione non standard per un campo Float o Valuta"
+#: frappe/public/js/frappe/utils/dashboard_utils.js:162
+msgid "Set dynamic filter values in JavaScript for the required fields here."
+msgstr ""
#. Description of the 'Precision' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Set non-standard precision for a Float or Currency field"
-msgstr "Set di precisione non standard per un campo Float o Valuta"
-
+#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
+#. Description of the 'Precision' (Select) field in DocType 'Customize Form
+#. Field'
#. Description of the 'Precision' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
-msgstr "Set di precisione non standard per un campo Float o Valuta"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the set_only_once (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
msgstr ""
+#. Description of the 'Max attachment size' (Int) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Set size in MB"
+msgstr ""
+
#. Description of the 'Filters Configuration' (Code) field in DocType 'Number
#. Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid ""
-"Set the filters here. For example:\n"
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Set the filters here. For example:\n"
"\n"
"[{\n"
"\tfieldname: \"company\",\n"
@@ -28069,11 +23343,8 @@ msgid ""
msgstr ""
#. Description of the 'Method' (Data) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid ""
-"Set the path to a whitelisted function that will return the data for the number card in the format:\n"
-"\n"
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Set the path to a whitelisted function that will return the data for the number card in the format:\n\n"
"\n"
"{\n"
"\t\"value\": value,\n"
@@ -28083,9824 +23354,8053 @@ msgid ""
"}
"
msgstr ""
-#: contacts/doctype/address_template/address_template.py:32
+#: frappe/contacts/doctype/address_template/address_template.py:33
msgid "Setting this Address Template as default as there is no other default"
-msgstr "L'impostazione di questo modello di indirizzo di default perché non c'è altro difetto"
+msgstr ""
-#: desk/doctype/global_search_settings/global_search_settings.py:85
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:86
msgid "Setting up Global Search documents."
-msgstr "Impostazione dei documenti di ricerca globale."
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:273
+#: frappe/desk/page/setup_wizard/setup_wizard.js:285
msgid "Setting up your system"
-msgstr "Impostazione del sistema"
+msgstr ""
-#. Label of a Card Break in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-#: public/js/frappe/ui/toolbar/toolbar.js:254
-#: public/js/frappe/views/workspace/workspace.js:515
-msgid "Settings"
-msgstr "Impostazioni"
-
-#. Label of a Tab Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Settings"
-msgstr "Impostazioni"
-
-#. Label of a Tab Break field in DocType 'User'
+#. Label of the settings_tab (Tab Break) field in DocType 'DocType'
+#. Label of the settings_tab (Tab Break) field in DocType 'User'
#. Group in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Settings"
-msgstr "Impostazioni"
-
-#. Label of a Tab Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Settings"
-msgstr "Impostazioni"
-
-#. Label of a Tab Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Settings"
-msgstr "Impostazioni"
-
-#. Label of a Table field in DocType 'Navbar Settings'
-#: core/doctype/navbar_settings/navbar_settings.json
-msgctxt "Navbar Settings"
-msgid "Settings Dropdown"
-msgstr "Impostazioni a discesa"
-
+#. Label of a Card Break in the Integrations Workspace
+#. Label of the settings_tab (Tab Break) field in DocType 'Web Form'
+#. Label of the settings (Tab Break) field in DocType 'Web Page'
#. Label of a Card Break in the Website Workspace
-#: public/js/frappe/ui/toolbar/search_utils.js:551
-#: website/workspace/website/website.json
-msgid "Setup"
-msgstr "Setup"
+#: frappe/core/doctype/doctype/doctype.json frappe/core/doctype/user/user.json
+#: frappe/integrations/workspace/integrations/integrations.json
+#: frappe/public/js/frappe/form/templates/print_layout.html:25
+#: frappe/public/js/frappe/ui/apps_switcher.js:137
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: 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 ""
+
+#. Description of a DocType
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Settings to control blog categories and interactions like comments and likes"
+msgstr ""
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567
msgid "Setup"
-msgstr "Setup"
-
-#. Title of an Onboarding Step
-#: custom/onboarding_step/workflows/workflows.json
-msgid "Setup Approval Workflows"
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1658
-#: public/js/frappe/views/reports/report_view.js:1609
+#: 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:1765
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
-msgstr "Auto Setup Email"
-
-#: desk/page/setup_wizard/setup_wizard.js:204
-msgid "Setup Complete"
-msgstr "installazione completa"
-
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Setup Complete"
-msgstr "installazione completa"
-
-#. Title of an Onboarding Step
-#: custom/onboarding_step/role_permissions/role_permissions.json
-msgid "Setup Limited Access for a User"
msgstr ""
-#. Title of an Onboarding Step
-#: custom/onboarding_step/naming_series/naming_series.json
-msgid "Setup Naming Series"
+#. 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 a Section Break field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the setup_series (Section Break) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Setup Series for transactions"
msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Share"
-msgstr "Condividere"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Share"
-msgstr "Condividere"
-
-#. Label of a Check field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "Share"
-msgstr "Condividere"
+#: frappe/desk/page/setup_wizard/setup_wizard.js:236
+msgid "Setup failed"
+msgstr ""
+#. Label of the share (Check) field in DocType 'Custom DocPerm'
+#. Label of the share (Check) field in DocType 'DocPerm'
+#. Label of the share (Check) field in DocType 'DocShare'
+#. Label of the share (Check) field in DocType 'User Document Type'
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:90
msgid "Share"
-msgstr "Condividere"
+msgstr ""
-#: public/js/frappe/form/sidebar/share.js:107
+#: frappe/public/js/frappe/form/sidebar/share.js:107
msgid "Share With"
-msgstr "Condividi con"
+msgstr ""
-#: public/js/frappe/form/sidebar/share.js:45
+#: frappe/public/js/frappe/form/templates/set_sharing.html:49
+msgid "Share this document with"
+msgstr ""
+
+#: frappe/public/js/frappe/form/sidebar/share.js:45
msgid "Share {0} with"
-msgstr "Condividi {0} con"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Shared"
-msgstr "diviso"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Shared"
-msgstr "diviso"
-
-#: desk/form/assign_to.py:127
+#: frappe/desk/form/assign_to.py:132
msgid "Shared with the following Users with Read access:{0}"
-msgstr "Condiviso con i seguenti utenti con accesso in lettura: {0}"
+msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Shipping"
-msgstr "spedizione"
+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'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Shop"
-msgstr "Negozio"
+msgstr ""
-#. Label of a Data field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
+#. Label of the short_name (Data) field in DocType 'Blogger'
+#: frappe/website/doctype/blogger/blogger.json
msgid "Short Name"
-msgstr "Nome breve"
+msgstr ""
-#: utils/password_strength.py:93
+#: frappe/utils/password_strength.py:91
msgid "Short keyboard patterns are easy to guess"
-msgstr "modelli di tastiera brevi sono facili da indovinare"
+msgstr ""
-#. Label of a Table field in DocType 'Workspace'
-#. Label of a Tab Break field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#. Label of the shortcuts (Table) field in DocType 'Workspace'
+#. Label of the tab_break_15 (Tab Break) field in DocType 'Workspace'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "Shortcuts"
-msgstr "Tasti di scelta rapida"
+msgstr ""
-#: public/js/frappe/widgets/base_widget.js:46
-#: public/js/frappe/widgets/base_widget.js:176 www/login.html:30
+#: frappe/public/js/frappe/widgets/base_widget.js:46
+#: frappe/public/js/frappe/widgets/base_widget.js:178
+#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
msgid "Show"
-msgstr "Spettacolo"
+msgstr ""
-#. Label of a Check field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
+#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Show \"Call to Action\" in Blog"
msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the show_absolute_datetime_in_timeline (Check) field in DocType
+#. 'System Settings'
+#. Label of the show_absolute_datetime_in_timeline (Check) field in DocType
+#. 'User'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+msgid "Show Absolute Datetime in Timeline"
+msgstr ""
+
+#. Label of the absolute_value (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Absolute Values"
msgstr ""
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Show Attachments"
-msgstr "Mostra allegati"
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:73
+msgid "Show All"
+msgstr ""
-#: desk/doctype/calendar_view/calendar_view.js:10
+#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
-msgstr "Mostra calendario"
+msgstr ""
-#. Label of a Check field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the symbol_on_right (Check) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
msgid "Show Currency Symbol on Right Side"
msgstr ""
-#: desk/doctype/dashboard/dashboard.js:6
+#. Label of the show_dashboard (Check) field in DocType 'DocField'
+#. Label of the show_dashboard (Check) field in DocType 'Custom Field'
+#. Label of the show_dashboard (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/dashboard/dashboard.js:6
msgid "Show Dashboard"
-msgstr "Mostra dashboard"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Show Dashboard"
-msgstr "Mostra dashboard"
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Show Dashboard"
-msgstr "Mostra dashboard"
-
-#. Label of a Button field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the show_document (Button) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "Show Document"
-msgstr "Mostra documento"
+msgstr ""
-#: www/error.html:41 www/error.html:59
+#: frappe/www/error.html:42 frappe/www/error.html:65
msgid "Show Error"
msgstr ""
-#. Label of a Check field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Show Failed Logs"
-msgstr "Mostra registri falliti"
-
-#: public/js/frappe/form/layout.js:545
+#: frappe/public/js/frappe/form/layout.js:579
msgid "Show Fieldname (click to copy on clipboard)"
msgstr ""
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the first_document (Check) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Show First Document Tour"
msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
-#. Label of a Check field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the show_form_tour (Check) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show Form Tour"
-msgstr "Mostra tour modulo"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the allow_error_traceback (Check) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Show Full Error and Allow Reporting of Issues to the Developer"
-msgstr "Mostra errore completo e consenti la segnalazione di problemi allo sviluppatore"
+msgstr ""
-#. Label of a Check field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the show_full_form (Check) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show Full Form?"
-msgstr "Mostra modulo completo?"
+msgstr ""
-#: public/js/frappe/ui/keyboard.js:228
+#. Label of the show_full_number (Check) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Show Full Number"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/keyboard.js:234
msgid "Show Keyboard Shortcuts"
-msgstr "Mostra scorciatoie da tastiera"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_settings.js:30
+#. Label of the show_labels (Check) field in DocType 'Kanban Board'
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:30
msgid "Show Labels"
msgstr ""
-#. Label of a Check field in DocType 'Kanban Board'
-#: desk/doctype/kanban_board/kanban_board.json
-msgctxt "Kanban Board"
-msgid "Show Labels"
-msgstr ""
-
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the show_language_picker (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show Language Picker"
msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the line_breaks (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Line Breaks after Sections"
-msgstr "Mostra interruzioni di riga dopo Sezioni"
-
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Show List"
msgstr ""
-#. Label of a Check field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/public/js/frappe/form/toolbar.js:407
+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 "Mostra statistiche percentuali"
+msgstr ""
-#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:30
+#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30
msgid "Show Permissions"
-msgstr "Mostra Permessi"
+msgstr ""
-#: public/js/form_builder/form_builder.bundle.js:31
-#: public/js/form_builder/form_builder.bundle.js:43
-#: public/js/print_format_builder/print_format_builder.bundle.js:18
-#: public/js/print_format_builder/print_format_builder.bundle.js:54
+#: frappe/public/js/form_builder/form_builder.bundle.js:31
+#: frappe/public/js/form_builder/form_builder.bundle.js:43
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:18
+#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54
msgid "Show Preview"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the show_preview_popup (Check) field in DocType 'DocType'
+#. Label of the show_preview_popup (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Show Preview Popup"
-msgstr "Mostra popup di anteprima"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Show Preview Popup"
-msgstr "Mostra popup di anteprima"
-
-#. Label of a Check field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#. Label of the show_processlist (Check) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
msgid "Show Processlist"
msgstr ""
-#: core/doctype/error_log/error_log.js:9
+#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
msgstr ""
-#: core/doctype/prepared_report/prepared_report.js:43
-#: core/doctype/report/report.js:13
+#. Label of the show_report (Button) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.js:43
+#: frappe/core/doctype/report/report.js:16
msgid "Show Report"
-msgstr "Mostra rapporto"
+msgstr ""
-#. Label of a Button field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
-msgid "Show Report"
-msgstr "Mostra rapporto"
-
-#: public/js/frappe/list/list_filter.js:87
+#: frappe/public/js/frappe/list/list_filter.js:15
+#: frappe/public/js/frappe/list/list_filter.js:94
msgid "Show Saved"
msgstr ""
-#. Label of a Check field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the show_section_headings (Check) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Section Headings"
-msgstr "Mostra Sezione intestazioni"
+msgstr ""
-#. Label of a Check field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the show_sidebar (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Show Sidebar"
-msgstr "Mostra barra laterale"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Show Sidebar"
-msgstr "Mostra barra laterale"
-
-#: public/js/frappe/list/list_view.js:1566
+#: frappe/public/js/frappe/list/list_sidebar.html:77
+#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
-msgstr "Mostra Tag"
+msgstr ""
-#. Label of a Check field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the show_title (Check) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Show Title"
-msgstr "Mostra titolo"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the show_title_field_in_link (Check) field in DocType 'DocType'
+#. Label of the show_title_field_in_link (Check) field in DocType 'Customize
+#. Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Show Title in Link Fields"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Show Title in Link Fields"
-msgstr ""
-
-#: public/js/frappe/views/reports/report_view.js:1453
+#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
-msgstr "Mostra totali"
+msgstr ""
-#: desk/doctype/form_tour/form_tour.js:116
+#: frappe/desk/doctype/form_tour/form_tour.js:116
msgid "Show Tour"
msgstr ""
-#: public/js/frappe/data_import/import_preview.js:200
+#: frappe/core/doctype/data_import/data_import.js:448
+msgid "Show Traceback"
+msgstr ""
+
+#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
-msgstr "Mostra avvisi"
+msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:184
+#: frappe/public/js/frappe/views/calendar/calendar.js:179
msgid "Show Weekends"
-msgstr "Mostra weekend"
+msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the show_account_deletion_link (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show account deletion link in My Account page"
msgstr ""
-#: core/doctype/version/version.js:6
+#: frappe/core/doctype/version/version.js:6
msgid "Show all Versions"
-msgstr "Mostra tutte le versioni"
+msgstr ""
-#: website/doctype/blog_post/templates/blog_post_list.html:24
+#: frappe/public/js/frappe/form/footer/form_timeline.js:69
+msgid "Show all activity"
+msgstr ""
+
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24
msgid "Show all blogs"
msgstr ""
-#. Label of a Small Text field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#. Label of the show_as_cc (Small Text) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Show as cc"
-msgstr "Visualizzare cc"
+msgstr ""
-#. Label of a Check field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the show_attachments (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Show attachments"
+msgstr ""
+
+#. Label of the show_footer_on_login (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show footer on login"
msgstr ""
#. Description of the 'Show Full Form?' (Check) field in DocType 'Onboarding
#. Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show full form instead of a quick entry modal"
-msgstr "Mostra il modulo completo invece di un modale di immissione rapida"
+msgstr ""
-#. Label of a Select field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the document_type (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Show in Module Section"
-msgstr "Mostra Modulo nella Sezione"
+msgstr ""
-#. Label of a Check field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
-msgstr "Mostra nel filtro"
+msgstr ""
-#. Label of a Check field in DocType 'Slack Webhook URL'
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.json
-msgctxt "Slack Webhook URL"
+#. Label of the show_document_link (Check) field in DocType 'Slack Webhook URL'
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
msgid "Show link to document"
msgstr ""
-#: public/js/frappe/form/layout.js:265
+#. Label of the show_list (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Show list"
+msgstr ""
+
+#: frappe/public/js/frappe/form/layout.js:273
+#: frappe/public/js/frappe/form/layout.js:291
msgid "Show more details"
-msgstr "Mostra più dettagli"
+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'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Show percentage difference according to this time interval"
-msgstr "Mostra la differenza percentuale in base a questo intervallo di tempo"
+msgstr ""
+
+#. Label of the show_sidebar (Check) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Show sidebar"
+msgstr ""
#. Description of the 'Title Prefix' (Data) field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show title in browser window as \"Prefix - title\""
-msgstr "Mostra titolo nella finestra del browser come "Prefisso - titolo""
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:475
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:148
+msgid "Show {0} List"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
-msgstr "Mostra solo i campi numerici da Report"
+msgstr ""
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#: frappe/public/js/frappe/data_import/import_preview.js:153
+msgid "Showing only first {0} rows out of {1}"
+msgstr ""
+
+#. Label of the list_sidebar (Check) field in DocType 'User'
+#. Label of the form_sidebar (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Sidebar"
msgstr ""
-#. Label of a Table field in DocType 'Website Sidebar'
-#: website/doctype/website_sidebar/website_sidebar.json
-msgctxt "Website Sidebar"
+#. Label of the sidebar_items (Table) field in DocType 'Website Sidebar'
+#: frappe/website/doctype/website_sidebar/website_sidebar.json
msgid "Sidebar Items"
-msgstr "articoli Sidebar"
+msgstr ""
-#. Label of a Section Break field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the section_break_4 (Section Break) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Sidebar Settings"
-msgstr "Impostazioni Sidebar"
+msgstr ""
-#. Label of a Section Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the section_break_17 (Section Break) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Sidebar and Comments"
-msgstr "Sidebar e commenti"
+msgstr ""
-#. Label of a Section Break field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#. Label of the sign_up_and_confirmation_section (Section Break) field in
+#. DocType 'Email Group'
+#: frappe/email/doctype/email_group/email_group.json
msgid "Sign Up and Confirmation"
msgstr ""
-#: core/doctype/user/user.py:972
+#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
-msgstr "Registrati è disattivato"
+msgstr ""
-#: templates/signup.html:16 www/login.html:120 www/login.html:136
-#: www/update-password.html:35
+#: frappe/templates/signup.html:16 frappe/www/login.html:140
+#: frappe/www/login.html:156 frappe/www/update-password.html:58
msgid "Sign up"
-msgstr "Iscriviti"
+msgstr ""
-#. Label of a Select field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the sign_ups (Select) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Sign ups"
msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Signature"
-msgstr "Firma"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Signature"
-msgstr "Firma"
-
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Signature"
-msgstr "Firma"
-
-#. Label of a Section Break field in DocType 'Email Account'
-#. Label of a Text Editor field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Signature"
-msgstr "Firma"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the signature_section (Section Break) field in DocType 'Email
+#. Account'
+#. Label of the signature (Text Editor) field in DocType 'Email Account'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Signature"
-msgstr "Firma"
+msgstr ""
-#: www/login.html:148
+#: frappe/www/login.html:168
msgid "Signup Disabled"
-msgstr "Registrazione disabilitata"
+msgstr ""
-#: www/login.html:149
+#: frappe/www/login.html:169
msgid "Signups have been disabled for this website."
-msgstr "Le registrazioni sono state disabilitate per questo sito web."
+msgstr ""
#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
#. Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr "Espressione Python semplice, esempio: stato in ("Chiuso", "Annullato")"
+msgstr ""
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
-msgstr "Espressione Python semplice, esempio: stato in ("Invalid")"
+msgstr ""
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
-msgstr "Espressione Python semplice, esempio: status == "Apri" e type == "Bug""
+msgstr ""
-#. Label of a Int field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the simultaneous_sessions (Int) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
-msgstr "Sessioni Simultanee"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:121
+#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Single DocTypes cannot be customized."
-msgstr "I singoli DocTypes non possono essere personalizzati."
-
-#: core/doctype/doctype/doctype_list.js:51
-msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
-msgstr "Tipi di singole hanno un solo record senza tabelle associate . I valori vengono memorizzati in tabSingles"
+msgstr ""
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/doctype/doctype_list.js:67
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
-msgstr "Tipi di singole hanno un solo record senza tabelle associate . I valori vengono memorizzati in tabSingles"
+msgstr ""
-#: database/database.py:230
+#: frappe/database/database.py:284
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
msgstr ""
-#: public/js/onboarding_tours/onboarding_tours.js:18
+#: frappe/public/js/frappe/views/file/file_view.js:337
+msgid "Size"
+msgstr ""
+
+#. 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 "Salta"
+msgstr ""
-#. Label of a Check field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
+#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
+#. Settings'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
msgid "Skip Authorization"
-msgstr "Skip Autorizzazione"
+msgstr ""
-#. Label of a Select field in DocType 'OAuth Provider Settings'
-#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
-msgctxt "OAuth Provider Settings"
-msgid "Skip Authorization"
-msgstr "Skip Autorizzazione"
-
-#: public/js/frappe/widgets/onboarding_widget.js:337
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:332
msgid "Skip Step"
-msgstr "Salta passaggio"
+msgstr ""
-#. Label of a Check field in DocType 'Patch Log'
-#: core/doctype/patch_log/patch_log.json
-msgctxt "Patch Log"
+#. Label of the skipped (Check) field in DocType 'Patch Log'
+#: frappe/core/doctype/patch_log/patch_log.json
msgid "Skipped"
msgstr ""
-#: core/doctype/data_import/importer.py:905
+#: frappe/core/doctype/data_import/importer.py:952
msgid "Skipping Duplicate Column {0}"
-msgstr "Ignorare la colonna duplicata {0}"
+msgstr ""
-#: core/doctype/data_import/importer.py:930
+#: frappe/core/doctype/data_import/importer.py:977
msgid "Skipping Untitled Column"
-msgstr "Saltare la colonna senza titolo"
+msgstr ""
-#: core/doctype/data_import/importer.py:916
+#: frappe/core/doctype/data_import/importer.py:963
msgid "Skipping column {0}"
-msgstr "Saltare la colonna {0}"
+msgstr ""
-#: modules/utils.py:162
+#: frappe/modules/utils.py:176
msgid "Skipping fixture syncing for doctype {0} from file {1}"
msgstr ""
-#: core/doctype/data_import/data_import.js:39
+#: frappe/core/doctype/data_import/data_import.js:39
msgid "Skipping {0} of {1}, {2}"
msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the skype (Data) field in DocType 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Skype"
-msgstr "Skype"
+msgstr ""
#. Option for the 'Channel' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Slack"
-msgstr "allentato"
+msgstr ""
-#. Label of a Link field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the slack_webhook_url (Link) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Slack Channel"
-msgstr "Slack Channel"
+msgstr ""
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.py:64
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65
msgid "Slack Webhook Error"
-msgstr "Slack Errore Webhook"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.json
-msgid "Slack Webhook URL"
-msgstr "Slack Webhook URL"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Slack Webhook URL"
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Slack Webhook URL"
-msgstr "Slack Webhook URL"
+msgstr ""
-#. Label of a Link field in DocType 'Web Page'
+#. Label of the slideshow (Link) field in DocType 'Web Page'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#: frappe/website/doctype/web_page/web_page.json
msgid "Slideshow"
-msgstr "Slideshow"
+msgstr ""
-#. Label of a Table field in DocType 'Website Slideshow'
-#: website/doctype/website_slideshow/website_slideshow.json
-msgctxt "Website Slideshow"
+#. Label of the slideshow_items (Table) field in DocType 'Website Slideshow'
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Items"
-msgstr "Articoli Slideshow"
+msgstr ""
-#. Label of a Data field in DocType 'Website Slideshow'
-#: website/doctype/website_slideshow/website_slideshow.json
-msgctxt "Website Slideshow"
+#. Label of the slideshow_name (Data) field in DocType 'Website Slideshow'
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Name"
-msgstr "Nome Slideshow"
+msgstr ""
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Small Text"
-msgstr "Testo piccolo"
+#. Description of a DocType
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
+msgid "Slideshow like display for the website"
+msgstr ""
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Small Text"
-msgstr "Testo piccolo"
+#. Label of the slug (Data) field in DocType 'UTM Campaign'
+#. Label of the slug (Data) field in DocType 'UTM Medium'
+#. Label of the slug (Data) field in DocType 'UTM Source'
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+msgid "Slug"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Small Text"
-msgstr "Testo piccolo"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Small Text"
-msgstr "Testo piccolo"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Small Text"
-msgstr "Testo piccolo"
+msgstr ""
-#. Label of a Currency field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the smallest_currency_fraction_value (Currency) field in DocType
+#. 'Currency'
+#: frappe/geo/doctype/currency/currency.json
msgid "Smallest Currency Fraction Value"
-msgstr "Il più piccolo di valuta Frazione Valore"
+msgstr ""
#. Description of the 'Smallest Currency Fraction Value' (Currency) field in
#. DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#: frappe/geo/doctype/currency/currency.json
msgid "Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01"
-msgstr "La più piccola frazione d'unità in circolazione (moneta). Per es. 1 centesimo per EU che dovrebbe essere inserito come 0.01"
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.js:32
+msgid "Snippet and more variables: {0}"
+msgstr ""
#. Name of a DocType
-#: website/doctype/social_link_settings/social_link_settings.json
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "Social Link Settings"
-msgstr "Impostazioni del collegamento sociale"
+msgstr ""
-#. Label of a Select field in DocType 'Social Link Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#. Label of the social_link_type (Select) field in DocType 'Social Link
+#. Settings'
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "Social Link Type"
-msgstr "Tipo di collegamento sociale"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/social_login_key/social_login_key.json
-msgid "Social Login Key"
-msgstr "Chiave di accesso sociale"
-
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Social Login Key"
-msgstr "Chiave di accesso sociale"
+msgstr ""
-#. Label of a Select field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the social_login_provider (Select) field in DocType 'Social Login
+#. Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Social Login Provider"
-msgstr "Provider di accesso sociale"
+msgstr ""
-#. Label of a Table field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the social_logins (Table) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Social Logins"
-msgstr "Login sociale"
+msgstr ""
+
+#. Label of the socketio_ping_check (Select) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "SocketIO Ping Check"
+msgstr ""
+
+#. Label of the socketio_transport_mode (Select) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "SocketIO Transport Mode"
+msgstr ""
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Soft-Bounced"
-msgstr "Soft-Bounced"
+msgstr ""
-#: public/js/frappe/desk.js:20
+#: 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 "Alcune delle funzionalità potrebbero non funzionare nel tuo browser. Aggiorna il tuo browser alla versione più recente."
+msgstr ""
-#: public/js/frappe/views/translation_manager.js:101
+#: frappe/public/js/frappe/views/translation_manager.js:101
msgid "Something went wrong"
-msgstr "Qualcosa è andato storto"
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:116
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:133
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
-msgstr "Qualcosa è andato storto durante la generazione di token. Fai clic su {0} per generarne uno nuovo."
+msgstr ""
-#: public/js/frappe/views/pageview.js:110
+#: frappe/templates/includes/login/login.js:293
+msgid "Something went wrong."
+msgstr ""
+
+#: frappe/public/js/frappe/views/pageview.js:114
msgid "Sorry! I could not find what you were looking for."
-msgstr "Sorry! Non riuscivo a trovare quello che stavi cercando."
+msgstr ""
-#: public/js/frappe/views/pageview.js:118
+#: frappe/public/js/frappe/views/pageview.js:122
msgid "Sorry! You are not permitted to view this page."
-msgstr "Spiacenti! Non si hanno le autorizzazioni per visualizzare la pagina."
+msgstr ""
-#: public/js/frappe/utils/datatable.js:6
+#: frappe/public/js/frappe/utils/datatable.js:6
msgid "Sort Ascending"
msgstr ""
-#: public/js/frappe/utils/datatable.js:7
+#: frappe/public/js/frappe/utils/datatable.js:7
msgid "Sort Descending"
msgstr ""
-#. Label of a Select field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the sort_field (Select) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sort Field"
-msgstr "Ordina campo"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the sort_options (Check) field in DocType 'DocField'
+#. Label of the sort_options (Check) field in DocType 'Custom Field'
+#. Label of the sort_options (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Sort Options"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Sort Options"
-msgstr ""
-
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Sort Options"
-msgstr ""
-
-#. Label of a Select field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the sort_order (Select) field in DocType 'Customize Form'
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sort Order"
-msgstr "ordine"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1501
+#: frappe/core/doctype/doctype/doctype.py:1550
msgid "Sort field {0} must be a valid fieldname"
-msgstr "Ordina campo {0} deve essere un nome di campo valido"
+msgstr ""
-#: public/js/frappe/utils/utils.js:1705
-#: website/report/website_analytics/website_analytics.js:38
+#. Label of the source (Data) field in DocType 'Web Page View'
+#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
+#: frappe/public/js/frappe/utils/utils.js:1717
+#: 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 "Fonte"
+msgstr ""
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Source"
-msgstr "Fonte"
-
-#. Label of a Small Text field in DocType 'Website Route Redirect'
-#: website/doctype/website_route_redirect/website_route_redirect.json
-msgctxt "Website Route Redirect"
-msgid "Source"
-msgstr "Fonte"
-
-#. Label of a Data field in DocType 'Dashboard Chart Source'
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
-msgctxt "Dashboard Chart Source"
+#. Label of the source_name (Data) field in DocType 'Dashboard Chart Source'
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
msgid "Source Name"
-msgstr "Source Name"
+msgstr ""
-#: public/js/frappe/views/translation_manager.js:38
+#. Label of the source_text (Code) field in DocType 'Translation'
+#: frappe/core/doctype/translation/translation.json
+#: frappe/public/js/frappe/views/translation_manager.js:38
msgid "Source Text"
-msgstr "Testo sorgente"
+msgstr ""
-#. Label of a Code field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
-msgid "Source Text"
-msgstr "Testo sorgente"
+#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:23
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:174
+msgid "Spacer"
+msgstr ""
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Spam"
-msgstr "Spam"
+msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "SparkPost"
-msgstr "SparkPost"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:83
+#: frappe/custom/doctype/custom_field/custom_field.js:83
msgid "Special Characters are not allowed"
-msgstr "I caratteri speciali non sono ammessi"
+msgstr ""
-#: model/naming.py:58
+#: frappe/model/naming.py:68
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
-msgstr "Caratteri speciali tranne "-", "#", ".", "/", "{{" E "}}" non consentiti nelle serie di nomi {0}"
+msgstr ""
-#. Label of a Attach Image field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Description of the 'Timeout (In Seconds)' (Int) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Specify a custom timeout, default timeout is 1500 seconds"
+msgstr ""
+
+#. Description of the 'Allowed embedding domains' (Small Text) field in DocType
+#. 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin."
+msgstr ""
+
+#. Label of the splash_image (Attach Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Splash Image"
msgstr ""
-#: desk/reportview.py:365 templates/print_formats/standard_macros.html:44
+#: frappe/desk/reportview.py:419
+#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
-msgstr "sr"
+msgstr ""
-#: core/doctype/recorder/recorder.js:33
+#: frappe/public/js/print_format_builder/Field.vue:143
+#: frappe/public/js/print_format_builder/Field.vue:164
+msgid "Sr No."
+msgstr ""
+
+#. Label of the stack_html (HTML) field in DocType 'Recorder Query'
+#: frappe/core/doctype/recorder/recorder.js:82
+#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Stack Trace"
msgstr ""
-#. Label of a HTML field in DocType 'Recorder Query'
-#: core/doctype/recorder_query/recorder_query.json
-msgctxt "Recorder Query"
-msgid "Stack Trace"
+#. 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 ""
-#: core/doctype/user_type/user_type_list.js:5
-msgid "Standard"
-msgstr "Standard"
-
-#. Label of a Check field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Standard"
-msgstr "Standard"
-
-#. Label of a Select field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Standard"
-msgstr "Standard"
-
-#. Label of a Select field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Standard"
-msgstr "Standard"
-
-#. Label of a Check field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
-msgid "Standard"
-msgstr "Standard"
-
-#. Label of a Check field in DocType 'Print Style'
-#: printing/doctype/print_style/print_style.json
-msgctxt "Print Style"
-msgid "Standard"
-msgstr "Standard"
-
-#. Label of a Check field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
-msgid "Standard"
-msgstr "Standard"
-
-#: model/delete_doc.py:79
+#: frappe/model/delete_doc.py:78
msgid "Standard DocType can not be deleted."
msgstr ""
-#: core/doctype/doctype/doctype.py:228
+#: frappe/core/doctype/doctype/doctype.py:228
msgid "Standard DocType cannot have default print format, use Customize Form"
-msgstr "DocType standard non può avere il formato di stampa predefinito, utilizzare Personalizza modulo"
+msgstr ""
-#: desk/doctype/dashboard/dashboard.py:59
+#: frappe/desk/doctype/dashboard/dashboard.py:58
msgid "Standard Not Set"
-msgstr "Standard non impostato"
+msgstr ""
-#: printing/doctype/print_format/print_format.py:74
+#: frappe/core/page/permission_manager/permission_manager.js:132
+msgid "Standard Permissions"
+msgstr ""
+
+#: frappe/printing/doctype/print_format/print_format.py:75
msgid "Standard Print Format cannot be updated"
-msgstr "Standard Formato di stampa non può essere aggiornato"
+msgstr ""
-#: printing/doctype/print_style/print_style.py:31
+#: frappe/printing/doctype/print_style/print_style.py:31
msgid "Standard Print Style cannot be changed. Please duplicate to edit."
-msgstr "Non è possibile modificare lo stile di stampa standard. Si prega di duplicare per modificare."
+msgstr ""
-#: desk/reportview.py:316
+#: frappe/desk/reportview.py:354
msgid "Standard Reports cannot be deleted"
msgstr ""
-#: desk/reportview.py:287
+#: frappe/desk/reportview.py:325
msgid "Standard Reports cannot be edited"
msgstr ""
-#. Label of a Section Break field in DocType 'Portal Settings'
-#: website/doctype/portal_settings/portal_settings.json
-msgctxt "Portal Settings"
+#. Label of the standard_menu_items (Section Break) field in DocType 'Portal
+#. Settings'
+#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Standard Sidebar Menu"
-msgstr "Sidebar Menu standard"
+msgstr ""
-#: core/doctype/role/role.py:61
+#: frappe/website/doctype/web_form/web_form.js:40
+msgid "Standard Web Forms can not be modified, duplicate the Web Form instead."
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "Standard rich text editor with controls"
+msgstr ""
+
+#: frappe/core/doctype/role/role.py:46
msgid "Standard roles cannot be disabled"
-msgstr "ruoli standard non possono essere disabilitati"
+msgstr ""
-#: core/doctype/role/role.py:48
+#: frappe/core/doctype/role/role.py:32
msgid "Standard roles cannot be renamed"
-msgstr "Ruoli standard non possono essere rinominati"
+msgstr ""
-#: core/doctype/user_type/user_type.py:60
+#: frappe/core/doctype/user_type/user_type.py:61
msgid "Standard user type {0} can not be deleted."
msgstr ""
-#: templates/emails/energy_points_summary.html:33
-msgid "Standings"
-msgstr "Classifiche"
-
-#: core/doctype/recorder/recorder_list.js:91 printing/page/print/print.js:289
-#: printing/page/print/print.js:336
+#: frappe/core/doctype/recorder/recorder_list.js:87
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
+#: frappe/printing/page/print/print.js:296
+#: frappe/printing/page/print/print.js:343
msgid "Start"
-msgstr "Inizio"
+msgstr ""
-#: public/js/frappe/utils/common.js:409
+#. Label of the start_date (Date) field in DocType 'Auto Repeat'
+#. Label of the start_date (Date) field in DocType 'Audit Trail'
+#. Label of the start_date (Datetime) field in DocType 'Web Page'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/public/js/frappe/utils/common.js:409
+#: frappe/website/doctype/web_page/web_page.json
msgid "Start Date"
-msgstr "Data di inizio"
+msgstr ""
-#. Label of a Date field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
-msgid "Start Date"
-msgstr "Data di inizio"
-
-#. Label of a Date field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Start Date"
-msgstr "Data di inizio"
-
-#. Label of a Datetime field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Start Date"
-msgstr "Data di inizio"
-
-#. Label of a Select field in DocType 'Calendar View'
-#: desk/doctype/calendar_view/calendar_view.json
-msgctxt "Calendar View"
+#. Label of the start_date_field (Select) field in DocType 'Calendar View'
+#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "Start Date Field"
-msgstr "Campo di data di inizio"
+msgstr ""
-#: core/doctype/data_import/data_import.js:110
+#: frappe/core/doctype/data_import/data_import.js:110
msgid "Start Import"
-msgstr "Inizia importazione"
+msgstr ""
-#. Label of a Datetime field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#: 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 "Ora di inizio"
+msgstr ""
-#: templates/includes/comments/comments.html:8
+#: frappe/templates/includes/comments/comments.html:8
msgid "Start a new discussion"
msgstr ""
-#: core/doctype/data_export/exporter.py:22
+#: frappe/core/doctype/data_export/exporter.py:22
msgid "Start entering data below this line"
-msgstr "Avviare l'immissione di dati al di sotto di questa linea"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:165
+#: frappe/printing/page/print_format_builder/print_format_builder.js:165
msgid "Start new Format"
-msgstr "Inizia nuova Format"
+msgstr ""
#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "StartTLS"
-msgstr "StartTLS"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
+#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Started"
-msgstr "Iniziato"
+msgstr ""
-#. Label of a Datetime field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the started_at (Datetime) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Started At"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:274
+#: frappe/desk/page/setup_wizard/setup_wizard.js:286
msgid "Starting Frappe ..."
-msgstr "Avvio di Frappé ..."
+msgstr ""
-#. Label of a Datetime field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the starts_on (Datetime) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Starts on"
-msgstr "Inizia il"
+msgstr ""
-#. Label of a Data field in DocType 'Contact Us Settings'
-#: website/doctype/contact_us_settings/contact_us_settings.json
-msgctxt "Contact Us Settings"
+#. Label of the state (Data) field in DocType 'Token Cache'
+#. Label of the state (Link) field in DocType 'Workflow Document State'
+#. Label of the workflow_state_name (Data) field in DocType 'Workflow State'
+#. Label of the state (Link) field in DocType 'Workflow Transition'
+#: frappe/integrations/doctype/token_cache/token_cache.json
+#: frappe/workflow/doctype/workflow/workflow.js:162
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "State"
-msgstr "Stato"
+msgstr ""
-#. Label of a Data field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "State"
-msgstr "Stato"
+#: frappe/public/js/workflow_builder/components/Properties.vue:24
+msgid "State Properties"
+msgstr ""
-#. Label of a Link field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
-msgid "State"
-msgstr "Stato"
-
-#. Label of a Data field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "State"
-msgstr "Stato"
-
-#. Label of a Link field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
-msgid "State"
-msgstr "Stato"
-
-#. Label of a Data field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#. Label of the state (Data) field in DocType 'Address'
+#. Label of the state (Data) field in DocType 'Contact Us Settings'
+#: frappe/contacts/doctype/address/address.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "State/Province"
-msgstr "Stato / provincia"
+msgstr ""
-#. Label of a Table field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the document_states_section (Tab Break) field in DocType 'DocType'
+#. Label of the states (Table) field in DocType 'Customize Form'
+#. Label of the states_head (Section Break) field in DocType 'Workflow'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "States"
-msgstr "Stati"
+msgstr ""
-#. Label of a Table field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "States"
-msgstr "Stati"
-
-#. Label of a Section Break field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
-msgid "States"
-msgstr "Stati"
-
-#. Label of a Table field in DocType 'SMS Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#. Label of the parameters (Table) field in DocType 'SMS Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Static Parameters"
-msgstr "Parametri statici"
+msgstr ""
-#. Label of a Section Break field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the statistics_section (Section Break) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Statistics"
msgstr ""
-#: public/js/frappe/form/dashboard.js:43
+#. Label of the stats_section (Section Break) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/form/dashboard.js:43
+#: frappe/public/js/frappe/form/templates/form_dashboard.html:13
msgid "Stats"
-msgstr "Statistiche"
+msgstr ""
-#. Label of a Section Break field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Stats"
-msgstr "Statistiche"
-
-#. Label of a Select field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#. Label of the stats_time_interval (Select) field in DocType 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
msgid "Stats Time Interval"
-msgstr "Intervallo di tempo delle statistiche"
+msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:391
-msgid "Stats based on last month's performance (from {0} to {1})"
-msgstr "Statistiche basate sul rendimento del mese scorso (da {0} a {1})"
-
-#: social/doctype/energy_point_log/energy_point_log.py:393
-msgid "Stats based on last week's performance (from {0} to {1})"
-msgstr "Statistiche basate sul rendimento della scorsa settimana (da {0} a {1})"
-
-#: public/js/frappe/views/reports/report_view.js:911
+#. Label of the status (Select) field in DocType 'Auto Repeat'
+#. Label of the status (Select) field in DocType 'Contact'
+#. Label of the status (Select) field in DocType 'Activity Log'
+#. Label of the status_section (Section Break) field in DocType 'Communication'
+#. Label of the status (Select) field in DocType 'Communication'
+#. Label of the status (Select) field in DocType 'Data Import'
+#. Label of the status (Select) field in DocType 'Permission Log'
+#. Label of the status (Select) field in DocType 'Prepared Report'
+#. Label of the status (Select) field in DocType 'RQ Job'
+#. Label of the status (Data) field in DocType 'RQ Worker'
+#. Label of the status (Select) field in DocType 'Scheduled Job Log'
+#. Label of the status_section (Section Break) field in DocType 'Scheduled Job
+#. Type'
+#. Label of the status (Select) field in DocType 'Submission Queue'
+#. Label of the status (Select) field in DocType 'Event'
+#. Label of the status (Select) field in DocType 'Kanban Board Column'
+#. Label of the status (Select) field in DocType 'ToDo'
+#. Label of the status (Select) field in DocType 'Email Queue'
+#. Label of the status (Select) field in DocType 'Email Queue Recipient'
+#. Label of the status_section (Section Break) field in DocType 'Newsletter'
+#. Label of the status (Select) field in DocType 'Integration Request'
+#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
+#. Label of the status (Select) field in DocType 'Personal Data Deletion
+#. Request'
+#. Label of the status (Select) field in DocType 'Personal Data Deletion Step'
+#. Label of the status (Select) field in DocType 'Workflow Action'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/data_import/data_import.js:483
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/public/js/frappe/list/list_settings.js:359
+#: frappe/public/js/frappe/views/reports/report_view.js:975
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Status"
-msgstr "Stato"
+msgstr ""
-#. Label of a Select field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Status"
-msgstr "Stato"
-
-#. Label of a Select field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Status"
-msgstr "Stato"
-
-#. Label of a Section Break field in DocType 'Communication'
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Status"
-msgstr "Stato"
-
-#. Label of a Select field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Status"
-msgstr "Stato"
-
-#. Label of a Select field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Status"
-msgstr "Stato"
-
-#. Label of a Select field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Status"
-msgstr "Stato"
-
-#. Label of a Select field in DocType 'Email Queue Recipient'
-#: email/doctype/email_queue_recipient/email_queue_recipient.json
-msgctxt "Email Queue Recipient"
-msgid "Status"
-msgstr "Stato"
-
-#. Label of a Select field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Status"
-msgstr "Stato"
-
-#. Label of a Select field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "Status"
-msgstr "Stato"
-
-#. Label of a Select field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
-msgid "Status"
-msgstr "Stato"
-
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Status"
-msgstr "Stato"
-
-#. Label of a Select field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
-msgid "Status"
-msgstr "Stato"
-
-#. Label of a Select field in DocType 'Personal Data Deletion Request'
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-msgctxt "Personal Data Deletion Request"
-msgid "Status"
-msgstr "Stato"
-
-#. Label of a Select field in DocType 'Personal Data Deletion Step'
-#: website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
-msgctxt "Personal Data Deletion Step"
-msgid "Status"
-msgstr "Stato"
-
-#. Label of a Select field in DocType 'Prepared Report'
-#: core/doctype/prepared_report/prepared_report.json
-msgctxt "Prepared Report"
-msgid "Status"
-msgstr "Stato"
-
-#. Label of a Select field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
-msgid "Status"
-msgstr "Stato"
-
-#. Label of a Data field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
-msgid "Status"
-msgstr "Stato"
-
-#. Label of a Select field in DocType 'Scheduled Job Log'
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-msgctxt "Scheduled Job Log"
-msgid "Status"
-msgstr "Stato"
-
-#. Label of a Section Break field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Status"
-msgstr "Stato"
-
-#. Label of a Select field in DocType 'Submission Queue'
-#: core/doctype/submission_queue/submission_queue.json
-msgctxt "Submission Queue"
-msgid "Status"
-msgstr "Stato"
-
-#. Label of a Select field in DocType 'ToDo'
-#: desk/doctype/todo/todo.json
-msgctxt "ToDo"
-msgid "Status"
-msgstr "Stato"
-
-#. Label of a Select field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
-msgid "Status"
-msgstr "Stato"
-
-#: www/update-password.html:161
+#: frappe/www/update-password.html:163
msgid "Status Updated"
-msgstr "Stato aggiornato"
+msgstr ""
-#: www/message.html:40
+#: frappe/email/doctype/email_queue/email_queue.js:37
+msgid "Status Updated. The email will be picked up in the next scheduled run."
+msgstr ""
+
+#: frappe/www/message.html:24
msgid "Status: {0}"
-msgstr "Stato: {0}"
+msgstr ""
-#. Label of a Link field in DocType 'Onboarding Step Map'
-#: desk/doctype/onboarding_step_map/onboarding_step_map.json
-msgctxt "Onboarding Step Map"
+#. Label of the step (Link) field in DocType 'Onboarding Step Map'
+#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json
msgid "Step"
-msgstr "Passo"
+msgstr ""
-#. Label of a Table field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the steps (Table) field in DocType 'Form Tour'
+#. Label of the steps (Table) field in DocType 'Module Onboarding'
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Steps"
-msgstr "Passi"
+msgstr ""
-#. Label of a Table field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Steps"
-msgstr "Passi"
-
-#: www/qrcode.html:11
+#: frappe/www/qrcode.html:11
msgid "Steps to verify your login"
-msgstr "Procedura per verificare il tuo login"
+msgstr ""
-#: core/doctype/recorder/recorder_list.js:91
+#. Label of the sticky (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/public/js/frappe/form/grid_row.js:438
+msgid "Sticky"
+msgstr ""
+
+#: frappe/core/doctype/recorder/recorder_list.js:87
msgid "Stop"
msgstr ""
-#. Label of a Check field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
+#. Label of the stopped (Check) field in DocType 'Scheduled Job Type'
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Stopped"
-msgstr "Arrestato"
+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 ""
#. Description of the 'Last Known Versions' (Text) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Stores the JSON of last known versions of various installed apps. It is used to show release notes."
-msgstr "Memorizza la JSON delle ultime versioni conosciute di varie applicazioni installate. E 'utilizzato per mostrare le note di rilascio."
+msgstr ""
#. Description of the 'Last Reset Password Key Generated On' (Datetime) field
#. in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "Stores the datetime when the last reset password key was generated."
msgstr ""
-#: utils/password_strength.py:99
+#: frappe/utils/password_strength.py:97
msgid "Straight rows of keys are easy to guess"
-msgstr "file diritte di tasti sono facili da indovinare"
+msgstr ""
-#. Label of a Check field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the strip_exif_metadata_from_uploaded_images (Check) field in
+#. DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Strip EXIF tags from uploaded images"
msgstr ""
-#: public/js/frappe/form/controls/password.js:90
+#: frappe/public/js/frappe/form/controls/password.js:89
msgid "Strong"
msgstr ""
-#. Label of a Tab Break field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the custom_css (Tab Break) field in DocType 'Web Page'
+#. Label of the style (Select) field in DocType 'Workflow State'
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Style"
-msgstr "Stile"
+msgstr ""
-#. Label of a Select field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "Style"
-msgstr "Stile"
-
-#. Label of a Section Break field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#. Label of the section_break_9 (Section Break) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
msgid "Style Settings"
-msgstr "Regolazioni"
+msgstr ""
#. Description of the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange"
-msgstr "Style rappresenta il colore del pulsante: Successo - Verde, Pericolo - Rosso, Inverse - Nero, primario - Dark Blue, Info - Light Blue, Warning - Arancione"
+msgstr ""
-#. Label of a Tab Break field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the stylesheet_section (Tab Break) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Stylesheet"
-msgstr "Foglio di stile"
+msgstr ""
#. Description of the 'Fraction' (Data) field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#: frappe/geo/doctype/currency/currency.json
msgid "Sub-currency. For e.g. \"Cent\""
-msgstr "Sub-valuta. P. es. \"Cent\""
+msgstr ""
#. Description of the 'Subdomain' (Small Text) field in DocType 'Website
#. Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Sub-domain provided by erpnext.com"
-msgstr "Sub-dominio fornito dal erpnext.com"
+msgstr ""
-#. Label of a Small Text field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the subdomain (Small Text) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Subdomain"
-msgstr "Sottodominio"
+msgstr ""
-#: public/js/frappe/views/communication.js:103
-#: public/js/frappe/views/inbox/inbox_view.js:63
+#. Label of the subject (Data) field in DocType 'Auto Repeat'
+#. Label of the subject (Small Text) field in DocType 'Activity Log'
+#. Label of the subject (Text) field in DocType 'Comment'
+#. Label of the subject (Small Text) field in DocType 'Communication'
+#. Label of the subject (Small Text) field in DocType 'Event'
+#. Label of the subject (Text) field in DocType 'Notification Log'
+#. Label of the subject (Data) field in DocType 'Email Template'
+#. Label of the subject (Small Text) field in DocType 'Newsletter'
+#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
+#. Label of the subject (Data) field in DocType 'Notification'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: 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/newsletter/newsletter.json
+#: frappe/email/doctype/notification/notification.js:200
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
-msgstr "Oggetto"
+msgstr ""
-#. Label of a Small Text field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Subject"
-msgstr "Oggetto"
-
-#. Label of a Data field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Subject"
-msgstr "Oggetto"
-
-#. Label of a Text field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Subject"
-msgstr "Oggetto"
-
-#. Label of a Small Text field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Subject"
-msgstr "Oggetto"
-
-#. Label of a Data field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
-msgid "Subject"
-msgstr "Oggetto"
-
-#. Label of a Small Text field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Subject"
-msgstr "Oggetto"
-
-#. Label of a Small Text field in DocType 'Newsletter'
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "Subject"
-msgstr "Oggetto"
-
-#. Label of a Data field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid "Subject"
-msgstr "Oggetto"
-
-#. Label of a Text field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "Subject"
-msgstr "Oggetto"
-
-#. Label of a Select field in DocType 'Calendar View'
-#: desk/doctype/calendar_view/calendar_view.json
-msgctxt "Calendar View"
+#. Label of the subject_field (Data) field in DocType 'DocType'
+#. Label of the subject_field (Data) field in DocType 'Customize Form'
+#. Label of the subject_field (Select) field in DocType 'Calendar View'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "Subject Field"
-msgstr "Campo oggetto"
+msgstr ""
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
-msgid "Subject Field"
-msgstr "Campo oggetto"
-
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Subject Field"
-msgstr "Campo oggetto"
-
-#: core/doctype/doctype/doctype.py:1878
+#: frappe/core/doctype/doctype/doctype.py:1935
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
-msgstr "Il tipo di campo oggetto deve essere Dati, Testo, Testo lungo, Testo piccolo, Editor di testo"
+msgstr ""
#. Name of a DocType
-#: core/doctype/submission_queue/submission_queue.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Submission Queue"
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:138
-#: public/js/frappe/form/quick_entry.js:193
-#: public/js/frappe/form/sidebar/review.js:116
-#: public/js/frappe/ui/capture.js:299
-#: social/doctype/energy_point_log/energy_point_log.js:39
-#: social/doctype/energy_point_settings/energy_point_settings.js:47
-#: website/doctype/web_form/templates/web_form.html:44
-msgid "Submit"
-msgstr "Conferma"
-
-#: public/js/frappe/list/list_view.js:1916
-msgctxt "Button in list view actions menu"
-msgid "Submit"
-msgstr "Conferma"
-
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Submit"
-msgstr "Conferma"
-
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Submit"
-msgstr "Conferma"
-
-#. Label of a Check field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "Submit"
-msgstr "Conferma"
-
-#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Submit"
-msgstr "Conferma"
-
+#. 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'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:138
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/quick_entry.js:225
+#: frappe/public/js/frappe/ui/capture.js:307
msgid "Submit"
-msgstr "Conferma"
-
-#: public/js/frappe/ui/dialog.js:60
-msgctxt "Primary action in dialog"
-msgid "Submit"
-msgstr "Conferma"
-
-#: public/js/frappe/ui/messages.js:97
-msgctxt "Primary action of prompt dialog"
-msgid "Submit"
-msgstr "Conferma"
-
-#: public/js/frappe/desk.js:206
-msgctxt "Submit password for Email Account"
-msgid "Submit"
-msgstr "Conferma"
-
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
-msgid "Submit"
-msgstr "Conferma"
-
-#. Label of a Check field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Submit After Import"
-msgstr "Invia dopo l'importazione"
-
-#. Label of a Data field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Submit Button Label"
msgstr ""
-#: website/doctype/web_form/templates/web_form.html:153
+#: frappe/public/js/frappe/list/list_view.js:2086
+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:62
+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:156
+msgctxt "Button in web form"
msgid "Submit another response"
msgstr ""
-#. Label of a Check field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
+#. Label of the button_label (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Submit button label"
+msgstr ""
+
+#. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128
msgid "Submit on Creation"
msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:400
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:395
msgid "Submit this document to complete this step."
-msgstr "Invia questo documento per completare questo passaggio."
+msgstr ""
-#: public/js/frappe/form/form.js:1194
+#: frappe/public/js/frappe/form/form.js:1221
msgid "Submit this document to confirm"
-msgstr "Presenta questo documento per confermare"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1921
+#: frappe/public/js/frappe/list/list_view.js:2091
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
-msgstr "Invia {0} documenti?"
-
-#: public/js/frappe/model/indicator.js:95
-#: public/js/frappe/ui/filters/filter.js:494
-#: website/doctype/web_form/templates/web_form.html:133
-msgid "Submitted"
-msgstr "Confermato"
+msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
+#: frappe/public/js/frappe/model/indicator.js:95
+#: frappe/public/js/frappe/ui/filters/filter.js:539
+#: frappe/website/doctype/web_form/templates/web_form.html:136
msgid "Submitted"
-msgstr "Confermato"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Submitted"
-msgstr "Confermato"
-
-#: workflow/doctype/workflow/workflow.py:106
+#: frappe/workflow/doctype/workflow/workflow.py:103
msgid "Submitted Document cannot be converted back to draft. Transition row {0}"
-msgstr "I documenti Confermati non possono essere riconvertiti in Bozza. Riga di transazione{0}"
+msgstr ""
-#: public/js/workflow_builder/utils.js:176
+#: frappe/public/js/workflow_builder/utils.js:176
msgid "Submitted document cannot be converted back to draft while transitioning from {0} State to {1} State"
msgstr ""
-#: public/js/frappe/form/save.js:10
+#: frappe/public/js/frappe/form/save.js:10
msgctxt "Freeze message while submitting a document"
msgid "Submitting"
-msgstr "In fase di conferma"
-
-#: desk/doctype/bulk_update/bulk_update.py:91
-msgid "Submitting {0}"
-msgstr "Invio {0}"
-
-#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
-msgid "Subsidiary"
-msgstr "Sussidiario"
-
-#. Label of a Data field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
-msgid "Subtitle"
-msgstr "Sottotitolo"
-
-#. Label of a Data field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Subtitle"
-msgstr "Sottotitolo"
-
-#: core/doctype/data_import/data_import.js:470
-#: desk/doctype/bulk_update/bulk_update.js:31
-#: desk/doctype/desktop_icon/desktop_icon.py:452
-#: public/js/frappe/form/grid.js:1133
-#: public/js/frappe/views/translation_manager.js:21
-#: templates/pages/integrations/gcalendar-success.html:9
-#: workflow/doctype/workflow_action/workflow_action.py:171
-msgid "Success"
-msgstr "Successo"
-
-#. Option for the 'Status' (Select) field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "Success"
-msgstr "Successo"
-
-#. Option for the 'Status' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
-msgid "Success"
-msgstr "Successo"
-
-#. Label of a Check field in DocType 'Data Import Log'
-#: core/doctype/data_import_log/data_import_log.json
-msgctxt "Data Import Log"
-msgid "Success"
-msgstr "Successo"
-
-#. Option for the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "Success"
-msgstr "Successo"
-
-#. Name of a DocType
-#: core/doctype/success_action/success_action.json
-msgid "Success Action"
-msgstr "Success Action"
-
-#. Label of a Data field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Success Message"
-msgstr "Messaggio di conferma"
-
-#. Label of a Text field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Success Message"
-msgstr "Messaggio di conferma"
-
-#. Label of a Data field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Success Title"
msgstr ""
-#. Label of a Data field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
+#: 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'
+#. Label of the subtitle (Data) field in DocType 'Blog Settings'
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Subtitle"
+msgstr ""
+
+#. 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:1170
+#: frappe/public/js/frappe/views/translation_manager.js:21
+#: frappe/templates/includes/login/login.js:230
+#: frappe/templates/includes/login/login.js:236
+#: frappe/templates/includes/login/login.js:269
+#: frappe/templates/includes/login/login.js:277
+#: frappe/templates/pages/integrations/gcalendar-success.html:9
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:171
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+msgid "Success"
+msgstr ""
+
+#. 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 a Data field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the success_url (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Success URL"
-msgstr "Successo URL"
+msgstr ""
-#: www/update-password.html:79
+#. Label of the success_message (Text) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Success message"
+msgstr ""
+
+#. Label of the success_title (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Success title"
+msgstr ""
+
+#: frappe/www/update-password.html:81
msgid "Success! You are good to go 👍"
-msgstr "Successo! Sei bravo ad andare 👍"
+msgstr ""
-#. Label of a Int field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the successful_job_count (Int) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Successful Job Count"
msgstr ""
-#: model/workflow.py:306
+#: frappe/model/workflow.py:307
msgid "Successful Transactions"
-msgstr "Transazioni riuscite"
+msgstr ""
-#: model/rename_doc.py:684
+#: frappe/model/rename_doc.py:699
msgid "Successful: {0} to {1}"
-msgstr "Riuscito: {0} a {1}"
+msgstr ""
-#: social/doctype/energy_point_settings/energy_point_settings.js:41
-msgid "Successfully Done"
-msgstr "Fatto con successo"
-
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113
msgid "Successfully Updated"
-msgstr "Aggiornato con successo"
+msgstr ""
-#: core/doctype/data_import/data_import.js:434
+#: frappe/core/doctype/data_import/data_import.js:423
msgid "Successfully imported {0}"
msgstr ""
-#: desk/doctype/form_tour/form_tour.py:86
+#: frappe/core/doctype/data_import/data_import.js:144
+msgid "Successfully imported {0} out of {1} records."
+msgstr ""
+
+#: frappe/desk/doctype/form_tour/form_tour.py:87
msgid "Successfully reset onboarding status for all users."
msgstr ""
-#: public/js/frappe/views/translation_manager.js:22
+#: frappe/public/js/frappe/views/translation_manager.js:22
msgid "Successfully updated translations"
-msgstr "Traduzioni aggiornate con successo"
+msgstr ""
-#: core/doctype/data_import/data_import.js:442
+#: frappe/core/doctype/data_import/data_import.js:431
msgid "Successfully updated {0}"
msgstr ""
-#: core/doctype/data_import/data_import.js:149
-msgid "Successfully {0} 1 record."
+#: frappe/core/doctype/data_import/data_import.js:149
+msgid "Successfully updated {0} out of {1} records."
msgstr ""
-#: core/doctype/data_import/data_import.js:156
-msgid "Successfully {0} {1} record out of {2}. Click on Export Errored Rows, fix the errors and import again."
+#: frappe/core/doctype/recorder/recorder.js:15
+msgid "Suggest Optimizations"
msgstr ""
-#: core/doctype/data_import/data_import.js:161
-msgid "Successfully {0} {1} records out of {2}. Click on Export Errored Rows, fix the errors and import again."
+#. Label of the suggested_indexes (Table) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "Suggested Indexes"
msgstr ""
-#: core/doctype/data_import/data_import.js:151
-msgid "Successfully {0} {1} records."
-msgstr ""
-
-#: core/doctype/user/user.py:679
+#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
-msgstr "Nome utente consigliata: {0}"
-
-#: public/js/frappe/ui/group_by/group_by.js:20
-msgid "Sum"
-msgstr "Somma"
+msgstr ""
#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Sum"
-msgstr "Somma"
-
#. Option for the 'Function' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/public/js/frappe/ui/group_by/group_by.js:20
msgid "Sum"
-msgstr "Somma"
+msgstr ""
-#: public/js/frappe/ui/group_by/group_by.js:330
+#: frappe/public/js/frappe/ui/group_by/group_by.js:337
msgid "Sum of {0}"
-msgstr "Somma di {0}"
+msgstr ""
-#: public/js/frappe/views/interaction.js:88
+#: frappe/public/js/frappe/views/interaction.js:88
msgid "Summary"
-msgstr "Sommario"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Sunday"
-msgstr "Domenica"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Sunday"
-msgstr "Domenica"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Sunday"
-msgstr "Domenica"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Sunday"
-msgstr "Domenica"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the sunday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Sunday"
-msgstr "Domenica"
+msgstr ""
-#: email/doctype/email_queue/email_queue_list.js:27
+#: frappe/email/doctype/email_queue/email_queue_list.js:27
msgid "Suspend Sending"
-msgstr "sospendere invio"
+msgstr ""
-#: public/js/frappe/ui/capture.js:268
+#: frappe/public/js/frappe/ui/capture.js:276
msgid "Switch Camera"
msgstr ""
-#: public/js/frappe/desk.js:50 public/js/frappe/ui/theme_switcher.js:11
+#: frappe/public/js/frappe/desk.js:96
+#: frappe/public/js/frappe/ui/theme_switcher.js:11
msgid "Switch Theme"
msgstr ""
-#: templates/includes/navbar/navbar_login.html:17
+#: frappe/templates/includes/navbar/navbar_login.html:17
msgid "Switch To Desk"
-msgstr "Vai al Desk"
+msgstr ""
-#: public/js/frappe/ui/capture.js:273
+#: frappe/public/js/frappe/list/list_sidebar.js:319
+msgid "Switch to Frappe CRM for smarter sales"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/capture.js:281
msgid "Switching Camera"
msgstr ""
-#. Label of a Data field in DocType 'Currency'
-#: geo/doctype/currency/currency.json
-msgctxt "Currency"
+#. Label of the symbol (Data) field in DocType 'Currency'
+#: frappe/geo/doctype/currency/currency.json
msgid "Symbol"
-msgstr "Simbolo"
+msgstr ""
-#. Label of a Section Break field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#. Label of the sb_01 (Section Break) field in DocType 'Google Calendar'
+#. Label of the sync (Section Break) field in DocType 'Google Contacts'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Sync"
-msgstr "Sync"
+msgstr ""
-#. Label of a Section Break field in DocType 'Google Contacts'
-#: integrations/doctype/google_contacts/google_contacts.json
-msgctxt "Google Contacts"
-msgid "Sync"
-msgstr "Sync"
-
-#: integrations/doctype/google_calendar/google_calendar.js:28
+#: frappe/integrations/doctype/google_calendar/google_calendar.js:28
msgid "Sync Calendar"
-msgstr "Sincronizza calendario"
+msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.js:28
+#: frappe/integrations/doctype/google_contacts/google_contacts.js:28
msgid "Sync Contacts"
-msgstr "Sincronizzare i contatti"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.js:214
+#. Label of the sync_as_public (Check) field in DocType 'Google Calendar'
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+msgid "Sync events from Google as public"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:256
msgid "Sync on Migrate"
-msgstr "Sync su Migrazione"
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:295
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:312
msgid "Sync token was invalid and has been reset, Retry syncing."
msgstr ""
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#. Label of the sync_with_google_calendar (Check) field in DocType 'Event'
+#: frappe/desk/doctype/event/event.json
msgid "Sync with Google Calendar"
-msgstr "Sincronizza con Google Calendar"
+msgstr ""
-#. Label of a Check field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "Sync with Google Contacts"
-msgstr "Sincronizzazione con Contatti Google"
+msgstr ""
-#: custom/doctype/doctype_layout/doctype_layout.js:46
+#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46
msgid "Sync {0} Fields"
msgstr ""
-#: custom/doctype/doctype_layout/doctype_layout.js:100
+#: frappe/custom/doctype/doctype_layout/doctype_layout.js:100
msgid "Synced Fields"
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.js:31
-#: integrations/doctype/google_contacts/google_contacts.js:31
+#: frappe/integrations/doctype/google_calendar/google_calendar.js:31
+#: frappe/integrations/doctype/google_contacts/google_contacts.js:31
msgid "Syncing"
-msgstr "Sincronizzazione"
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.js:19
+#: frappe/integrations/doctype/google_calendar/google_calendar.js:19
msgid "Syncing {0} of {1}"
-msgstr "Sincronizzazione di {0} di {1}"
+msgstr ""
-#: utils/data.py:2424
+#: frappe/utils/data.py:2494
msgid "Syntax Error"
msgstr ""
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "System"
-msgstr "Sistema"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/system_console/system_console.json
+#: frappe/desk/doctype/system_console/system_console.json
+#: frappe/public/js/frappe/ui/dropdown_console.js:4
msgid "System Console"
-msgstr "Console di sistema"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.py:358
+#: frappe/custom/doctype/custom_field/custom_field.py:408
msgid "System Generated Fields can not be renamed"
msgstr ""
+#. Label of a standard help item
+#. Type: Route
+#: frappe/hooks.py
+msgid "System Health"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "System Health Report"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json
+msgid "System Health Report Errors"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
+msgid "System Health Report Failing Jobs"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
+msgid "System Health Report Queue"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json
+msgid "System Health Report Tables"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
+msgid "System Health Report Workers"
+msgstr ""
+
#. Label of a Card Break in the Build Workspace
-#: core/workspace/build/build.json
+#: frappe/core/workspace/build/build.json
msgid "System Logs"
msgstr ""
#. Name of a role
-#: automation/doctype/assignment_rule/assignment_rule.json
-#: automation/doctype/auto_repeat/auto_repeat.json
-#: automation/doctype/milestone/milestone.json
-#: automation/doctype/milestone_tracker/milestone_tracker.json
-#: contacts/doctype/address/address.json
-#: contacts/doctype/address_template/address_template.json
-#: contacts/doctype/contact/contact.json contacts/doctype/gender/gender.json
-#: contacts/doctype/salutation/salutation.json
-#: core/doctype/access_log/access_log.json
-#: core/doctype/activity_log/activity_log.json
-#: core/doctype/audit_trail/audit_trail.json core/doctype/comment/comment.json
-#: core/doctype/communication/communication.json
-#: core/doctype/custom_docperm/custom_docperm.json
-#: core/doctype/custom_role/custom_role.json
-#: core/doctype/data_export/data_export.json
-#: core/doctype/data_import/data_import.json
-#: core/doctype/data_import_log/data_import_log.json
-#: core/doctype/deleted_document/deleted_document.json
-#: core/doctype/docshare/docshare.json core/doctype/doctype/doctype.json
-#: core/doctype/document_naming_rule/document_naming_rule.json
-#: core/doctype/document_naming_settings/document_naming_settings.json
-#: core/doctype/document_share_key/document_share_key.json
-#: core/doctype/domain/domain.json
-#: core/doctype/domain_settings/domain_settings.json
-#: core/doctype/error_log/error_log.json core/doctype/file/file.json
-#: core/doctype/installed_applications/installed_applications.json
-#: core/doctype/language/language.json
-#: core/doctype/log_settings/log_settings.json
-#: core/doctype/module_def/module_def.json
-#: core/doctype/module_profile/module_profile.json
-#: core/doctype/navbar_settings/navbar_settings.json
-#: core/doctype/package/package.json
-#: core/doctype/package_import/package_import.json
-#: core/doctype/package_release/package_release.json
-#: core/doctype/page/page.json core/doctype/patch_log/patch_log.json
-#: core/doctype/permission_inspector/permission_inspector.json
-#: core/doctype/prepared_report/prepared_report.json
-#: core/doctype/report/report.json core/doctype/role/role.json
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
-#: core/doctype/role_profile/role_profile.json core/doctype/rq_job/rq_job.json
-#: core/doctype/rq_worker/rq_worker.json
-#: core/doctype/scheduled_job_log/scheduled_job_log.json
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-#: core/doctype/session_default_settings/session_default_settings.json
-#: core/doctype/sms_log/sms_log.json
-#: core/doctype/sms_settings/sms_settings.json
-#: core/doctype/submission_queue/submission_queue.json
-#: core/doctype/success_action/success_action.json
-#: core/doctype/system_settings/system_settings.json
-#: core/doctype/translation/translation.json core/doctype/user/user.json
-#: core/doctype/user_group/user_group.json
-#: core/doctype/user_permission/user_permission.json
-#: core/doctype/user_type/user_type.json core/doctype/version/version.json
-#: core/doctype/view_log/view_log.json
-#: custom/doctype/client_script/client_script.json
-#: custom/doctype/custom_field/custom_field.json
-#: custom/doctype/customize_form/customize_form.json
-#: custom/doctype/doctype_layout/doctype_layout.json
-#: custom/doctype/property_setter/property_setter.json
-#: desk/doctype/bulk_update/bulk_update.json
-#: desk/doctype/calendar_view/calendar_view.json
-#: desk/doctype/console_log/console_log.json
-#: desk/doctype/custom_html_block/custom_html_block.json
-#: desk/doctype/dashboard/dashboard.json
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
-#: desk/doctype/desktop_icon/desktop_icon.json desk/doctype/event/event.json
-#: desk/doctype/form_tour/form_tour.json
-#: desk/doctype/global_search_settings/global_search_settings.json
-#: desk/doctype/kanban_board/kanban_board.json
-#: desk/doctype/list_view_settings/list_view_settings.json
-#: desk/doctype/module_onboarding/module_onboarding.json
-#: desk/doctype/note/note.json desk/doctype/number_card/number_card.json
-#: desk/doctype/route_history/route_history.json
-#: desk/doctype/system_console/system_console.json desk/doctype/tag/tag.json
-#: desk/doctype/tag_link/tag_link.json desk/doctype/todo/todo.json
-#: email/doctype/auto_email_report/auto_email_report.json
-#: email/doctype/document_follow/document_follow.json
-#: email/doctype/email_account/email_account.json
-#: email/doctype/email_domain/email_domain.json
-#: email/doctype/email_flag_queue/email_flag_queue.json
-#: email/doctype/email_queue/email_queue.json
-#: email/doctype/email_rule/email_rule.json
-#: email/doctype/email_template/email_template.json
-#: email/doctype/email_unsubscribe/email_unsubscribe.json
-#: email/doctype/notification/notification.json
-#: email/doctype/unhandled_email/unhandled_email.json
-#: geo/doctype/country/country.json geo/doctype/currency/currency.json
-#: integrations/doctype/connected_app/connected_app.json
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-#: integrations/doctype/google_calendar/google_calendar.json
-#: integrations/doctype/google_contacts/google_contacts.json
-#: integrations/doctype/google_drive/google_drive.json
-#: integrations/doctype/google_settings/google_settings.json
-#: integrations/doctype/integration_request/integration_request.json
-#: integrations/doctype/ldap_settings/ldap_settings.json
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-#: integrations/doctype/oauth_client/oauth_client.json
-#: integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.json
-#: integrations/doctype/social_login_key/social_login_key.json
-#: integrations/doctype/token_cache/token_cache.json
-#: integrations/doctype/webhook/webhook.json
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-#: printing/doctype/letter_head/letter_head.json
-#: printing/doctype/network_printer_settings/network_printer_settings.json
-#: printing/doctype/print_format/print_format.json
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-#: printing/doctype/print_heading/print_heading.json
-#: printing/doctype/print_settings/print_settings.json
-#: printing/doctype/print_style/print_style.json
-#: social/doctype/energy_point_log/energy_point_log.json
-#: social/doctype/energy_point_rule/energy_point_rule.json
-#: social/doctype/energy_point_settings/energy_point_settings.json
-#: website/doctype/discussion_reply/discussion_reply.json
-#: website/doctype/discussion_topic/discussion_topic.json
-#: website/doctype/marketing_campaign/marketing_campaign.json
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
-#: website/doctype/personal_data_download_request/personal_data_download_request.json
-#: website/doctype/web_page_view/web_page_view.json
-#: website/doctype/web_template/web_template.json
-#: website/doctype/website_route_meta/website_route_meta.json
-#: workflow/doctype/workflow/workflow.json
-#: workflow/doctype/workflow_action_master/workflow_action_master.json
-#: workflow/doctype/workflow_state/workflow_state.json
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/contacts/doctype/gender/gender.json
+#: frappe/contacts/doctype/salutation/salutation.json
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/api_request_log/api_request_log.json
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/custom_role/custom_role.json
+#: frappe/core/doctype/data_export/data_export.json
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/data_import_log/data_import_log.json
+#: frappe/core/doctype/deleted_document/deleted_document.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+#: frappe/core/doctype/document_share_key/document_share_key.json
+#: frappe/core/doctype/domain/domain.json
+#: frappe/core/doctype/domain_settings/domain_settings.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/file/file.json
+#: frappe/core/doctype/installed_applications/installed_applications.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/log_settings/log_settings.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/module_profile/module_profile.json
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+#: frappe/core/doctype/package/package.json
+#: frappe/core/doctype/package_import/package_import.json
+#: frappe/core/doctype/package_release/package_release.json
+#: frappe/core/doctype/page/page.json
+#: frappe/core/doctype/patch_log/patch_log.json
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
+#: frappe/core/doctype/role_profile/role_profile.json
+#: frappe/core/doctype/role_replication/role_replication.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/scheduler_event/scheduler_event.json
+#: frappe/core/doctype/session_default_settings/session_default_settings.json
+#: frappe/core/doctype/sms_log/sms_log.json
+#: frappe/core/doctype/sms_settings/sms_settings.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/core/doctype/success_action/success_action.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/translation/translation.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_group/user_group.json
+#: frappe/core/doctype/user_permission/user_permission.json
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/core/doctype/version/version.json
+#: frappe/core/doctype/view_log/view_log.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/desk/doctype/calendar_view/calendar_view.json
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+#: frappe/desk/doctype/console_log/console_log.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/global_search_settings/global_search_settings.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/desk/doctype/note/note.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/route_history/route_history.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_rule/email_rule.json
+#: frappe/email/doctype/email_template/email_template.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
+#: frappe/geo/doctype/country/country.json
+#: frappe/geo/doctype/currency/currency.json
+#: frappe/integrations/doctype/connected_app/connected_app.json
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/google_contacts/google_contacts.json
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/printing/doctype/print_heading/print_heading.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/website/doctype/discussion_reply/discussion_reply.json
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/website/doctype/website_route_meta/website_route_meta.json
+#: frappe/workflow/doctype/workflow/workflow.json
+#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "System Manager"
-msgstr "System Manager"
+msgstr ""
-#: desk/page/backups/backups.js:36
+#: frappe/desk/page/backups/backups.js:38
msgid "System Manager privileges required."
msgstr ""
#. Option for the 'Channel' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "System Notification"
-msgstr "Notifica di sistema"
-
-#. Label of a Section Break field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "System Notifications"
msgstr ""
-#. Label of a Check field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
+#. Label of the system_page (Check) field in DocType 'Page'
+#: frappe/core/doctype/page/page.json
msgid "System Page"
-msgstr "Pagina del sistema"
+msgstr ""
#. Name of a DocType
-#: core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "System Settings"
-msgstr "Impostazioni di sistema"
-
-#. Label of a shortcut in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "System Settings"
-msgid "System Settings"
-msgstr "Impostazioni di sistema"
+msgstr ""
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "System managers are allowed by default"
-msgstr "I gestori di sistema sono consentiti per impostazione predefinita"
+msgstr ""
-#: public/js/frappe/utils/number_systems.js:5
+#: frappe/public/js/frappe/utils/number_systems.js:5
msgctxt "Number system"
msgid "T"
msgstr ""
+#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "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 ""
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Tab Break"
+#: frappe/public/js/form_builder/components/Tabs.vue:135
+msgid "Tab Label"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Tab Break"
-msgstr ""
-
-#: core/doctype/data_export/exporter.py:23
-msgid "Table"
-msgstr "Tabella"
-
+#. Label of the table (Data) field in DocType 'Recorder Suggested Index'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Table"
-msgstr "Tabella"
-
#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Table"
-msgstr "Tabella"
-
-#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Table"
-msgstr "Tabella"
-
+#. Label of the table (Data) field in DocType 'System Health Report Tables'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/data_export/exporter.py:23
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json
+#: frappe/printing/page/print_format_builder/print_format_builder_field.html:39
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Table"
-msgstr "Tabella"
+msgstr ""
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Table Break"
-msgstr "Table Break"
+msgstr ""
-#. Label of a Data field in DocType 'DocType Link'
-#: core/doctype/doctype_link/doctype_link.json
-msgctxt "DocType Link"
+#: frappe/core/doctype/version/version_view.html:72
+msgid "Table Field"
+msgstr ""
+
+#. Label of the table_fieldname (Data) field in DocType 'DocType Link'
+#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Table Fieldname"
msgstr ""
-#: core/doctype/doctype/doctype.py:1154
+#: frappe/core/doctype/doctype/doctype.py:1203
msgid "Table Fieldname Missing"
msgstr ""
-#. Label of a HTML field in DocType 'Version'
-#: core/doctype/version/version.json
-msgctxt "Version"
+#. Label of the table_html (HTML) field in DocType 'Version'
+#: frappe/core/doctype/version/version.json
msgid "Table HTML"
-msgstr "Tabella HTML"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Table MultiSelect"
-msgstr "Tavolo MultiSelect"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Table MultiSelect"
-msgstr "Tavolo MultiSelect"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Table MultiSelect"
-msgstr "Tavolo MultiSelect"
+msgstr ""
-#: public/js/frappe/form/grid.js:1132
+#: frappe/custom/doctype/customize_form/customize_form.js:229
+msgid "Table Trimmed"
+msgstr ""
+
+#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
-msgstr "Tabella aggiornata"
+msgstr ""
-#: model/document.py:1366
+#: frappe/model/document.py:1564
msgid "Table {0} cannot be empty"
-msgstr "La Tabella {0} non può essere vuota"
+msgstr ""
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Tabloid"
msgstr ""
#. Name of a DocType
-#: desk/doctype/tag/tag.json
+#: frappe/desk/doctype/tag/tag.json
msgid "Tag"
-msgstr "Etichetta"
+msgstr ""
#. Name of a DocType
-#: desk/doctype/tag_link/tag_link.json
+#: frappe/desk/doctype/tag_link/tag_link.json
msgid "Tag Link"
-msgstr "Tag Link"
+msgstr ""
-#: model/__init__.py:148 model/meta.py:52
-#: public/js/frappe/list/bulk_operations.js:365
-#: public/js/frappe/list/list_sidebar.js:226 public/js/frappe/model/meta.js:204
-#: public/js/frappe/model/model.js:123
-#: public/js/frappe/ui/toolbar/awesome_bar.js:171
+#: frappe/model/meta.py:59
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:81
+#: frappe/public/js/frappe/list/bulk_operations.js:430
+#: frappe/public/js/frappe/list/list_sidebar.html:48
+#: frappe/public/js/frappe/list/list_sidebar.html:60
+#: frappe/public/js/frappe/list/list_sidebar.js:253
+#: frappe/public/js/frappe/model/meta.js:207
+#: frappe/public/js/frappe/model/model.js:133
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:171
msgid "Tags"
-msgstr "Tags"
+msgstr ""
-#: integrations/doctype/google_drive/google_drive.js:28
-msgid "Take Backup"
-msgstr "Prendi backup"
-
-#: integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
-msgid "Take Backup Now"
-msgstr "Prendere Backup adesso"
-
-#: public/js/frappe/ui/capture.js:212
+#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
-msgstr "Fare foto"
+msgstr ""
-#. Label of a Data field in DocType 'Portal Menu Item'
-#: website/doctype/portal_menu_item/portal_menu_item.json
-msgctxt "Portal Menu Item"
+#. Label of the target (Data) field in DocType 'Portal Menu Item'
+#. Label of the target (Small Text) field in DocType 'Website Route Redirect'
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
msgid "Target"
-msgstr "Obiettivo"
+msgstr ""
-#. Label of a Small Text field in DocType 'Website Route Redirect'
-#: website/doctype/website_route_redirect/website_route_redirect.json
-msgctxt "Website Route Redirect"
-msgid "Target"
-msgstr "Obiettivo"
-
-#: desk/doctype/todo/todo_calendar.js:19 desk/doctype/todo/todo_calendar.js:25
+#: frappe/desk/doctype/todo/todo_calendar.js:19
+#: frappe/desk/doctype/todo/todo_calendar.js:25
msgid "Task"
-msgstr "Attività"
+msgstr ""
-#: www/about.html:45
+#. Label of the sb1 (Section Break) field in DocType 'About Us Settings'
+#. Label of the team_members (Table) field in DocType 'About Us Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+#: frappe/www/about.html:45
msgid "Team Members"
-msgstr "Membri del Team"
+msgstr ""
-#. Label of a Section Break field in DocType 'About Us Settings'
-#. Label of a Table field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
-msgid "Team Members"
-msgstr "Membri del Team"
-
-#. Label of a Data field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#. Label of the team_members_heading (Data) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Team Members Heading"
-msgstr "Membri del team Rubrica"
+msgstr ""
-#. Label of a Small Text field in DocType 'About Us Settings'
-#: website/doctype/about_us_settings/about_us_settings.json
-msgctxt "About Us Settings"
+#. Label of the team_members_subtitle (Small Text) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Team Members Subtitle"
msgstr ""
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the telemetry_section (Section Break) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Telemetry"
msgstr ""
-#. Label of a Code field in DocType 'Address Template'
-#: contacts/doctype/address_template/address_template.json
-msgctxt "Address Template"
+#. Label of the template (Link) field in DocType 'Auto Repeat'
+#. Label of the template (Code) field in DocType 'Address Template'
+#. Label of the template (Code) field in DocType 'Print Format Field Template'
+#. Label of the template (Code) field in DocType 'Web Template'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/address_template/address_template.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/website/doctype/web_template/web_template.json
msgid "Template"
-msgstr "Modelli"
+msgstr ""
-#. Label of a Link field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Template"
-msgstr "Modelli"
-
-#. Label of a Code field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
-msgid "Template"
-msgstr "Modelli"
-
-#. Label of a Code field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
-msgid "Template"
-msgstr "Modelli"
-
-#: core/doctype/data_import/importer.py:468
-#: core/doctype/data_import/importer.py:596
+#: frappe/core/doctype/data_import/importer.py:483
+#: frappe/core/doctype/data_import/importer.py:610
msgid "Template Error"
-msgstr "Errore modello"
+msgstr ""
-#. Label of a Data field in DocType 'Print Format Field Template'
-#: printing/doctype/print_format_field_template/print_format_field_template.json
-msgctxt "Print Format Field Template"
+#. Label of the template_file (Data) field in DocType 'Print Format Field
+#. Template'
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
msgid "Template File"
msgstr ""
-#. Label of a Code field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the template_options (Code) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Template Options"
-msgstr "Opzioni modello"
+msgstr ""
-#. Label of a Code field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#. Label of the template_warnings (Code) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
msgid "Template Warnings"
-msgstr "Avvertenze sui modelli"
+msgstr ""
-#: public/js/frappe/views/workspace/blocks/paragraph.js:78
+#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:78
msgid "Templates"
msgstr ""
-#: core/doctype/user/user.py:983
+#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
-msgstr "Temporaneamente disabilitato"
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:94
+#: 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/email/doctype/newsletter/newsletter.py:92
msgid "Test email sent to {0}"
-msgstr "Email di prova inviata a {0}"
+msgstr ""
-#: core/doctype/file/test_file.py:357
+#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
-msgstr "Test_Folder"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Text"
-msgstr "Testo"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Text"
-msgstr "Testo"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Text"
-msgstr "Testo"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
-msgid "Text"
-msgstr "Testo"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
-#: website/doctype/web_template_field/web_template_field.json
-msgctxt "Web Template Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Text"
-msgstr "Testo"
+msgstr ""
-#. Label of a Select field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
+#. Label of the text_align (Select) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
msgid "Text Align"
-msgstr "Allineamento testo"
+msgstr ""
-#. Label of a Link field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the text_color (Link) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Text Color"
-msgstr "Colore testo"
+msgstr ""
-#. Label of a Code field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the text_content (Code) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Text Content"
-msgstr "contenuto Testo"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Text Editor"
-msgstr "Editor di testo"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Text Editor"
-msgstr "Editor di testo"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Text Editor"
-msgstr "Editor di testo"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Text Editor"
-msgstr "Editor di testo"
+msgstr ""
-#: templates/emails/password_reset.html:5
+#: frappe/templates/emails/password_reset.html:5
msgid "Thank you"
-msgstr "Grazie"
+msgstr ""
-#: website/doctype/web_form/templates/web_form.html:137
+#: frappe/www/contact.py:39
+msgid "Thank you for reaching out to us. We will get back to you at the earliest.\n\n\n"
+"Your query:\n\n"
+"{0}"
+msgstr ""
+
+#: frappe/website/doctype/web_form/templates/web_form.html:140
msgid "Thank you for spending your valuable time to fill this form"
-msgstr "Grazie per aver dedicato il tuo prezioso tempo a compilare questo modulo"
+msgstr ""
-#: templates/emails/auto_reply.html:1
+#: frappe/templates/emails/auto_reply.html:1
msgid "Thank you for your email"
-msgstr "Grazie per la vostra e-mail"
+msgstr ""
-#: website/doctype/help_article/templates/help_article.html:27
+#: frappe/website/doctype/help_article/templates/help_article.html:27
msgid "Thank you for your feedback!"
-msgstr "Grazie per il tuo feedback!"
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:332
+#: frappe/email/doctype/newsletter/newsletter.py:332
msgid "Thank you for your interest in subscribing to our updates"
-msgstr "Grazie per il vostro interesse per sottoscrivere i nostri aggiornamenti"
+msgstr ""
-#: templates/emails/new_user.html:16
+#: frappe/templates/includes/contact.js:36
+msgid "Thank you for your message"
+msgstr ""
+
+#: frappe/templates/emails/new_user.html:16
msgid "Thanks"
msgstr ""
-#: templates/emails/auto_repeat_fail.html:3
+#: frappe/templates/emails/auto_repeat_fail.html:3
msgid "The Auto Repeat for this document has been disabled."
-msgstr "La ripetizione automatica di questo documento è stata disabilitata."
+msgstr ""
-#: public/js/frappe/form/grid.js:1155
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
-msgstr "Il formato CSV è sensibile al maiuscolo / minuscolo"
+msgstr ""
#. Description of the 'Client ID' (Data) field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
-msgid ""
-"The Client ID obtained from the Google Cloud Console under \n"
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "The Client ID obtained from the Google Cloud Console under \n"
"\"APIs & Services\" > \"Credentials\"\n"
""
msgstr ""
-#: email/doctype/notification/notification.py:129
+#: frappe/email/doctype/notification/notification.py:201
msgid "The Condition '{0}' is invalid"
-msgstr "La condizione '{0}' non è valido"
+msgstr ""
-#: core/doctype/file/file.py:205
+#: frappe/core/doctype/file/file.py:208
msgid "The File URL you've entered is incorrect"
msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:364
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108
+msgid "The Next Scheduled Date cannot be later than the End Date."
+msgstr ""
+
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:29
+msgid "The Push Relay Server URL key (`push_relay_server_url`) is missing in your site config"
+msgstr ""
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:367
msgid "The User record for this request has been auto-deleted due to inactivity by system admins."
msgstr ""
-#: public/js/frappe/desk.js:127
+#: frappe/public/js/frappe/desk.js:162
msgid "The application has been updated to a new version, please refresh this page"
-msgstr "L'applicazione è stata aggiornata a una nuova versione, è necessario ricaricare la pagina"
+msgstr ""
#. Description of the 'Application Name' (Data) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "The application name will be used in the Login page."
msgstr ""
-#: public/js/frappe/views/interaction.js:324
+#: frappe/public/js/frappe/views/interaction.js:323
msgid "The attachments could not be correctly linked to the new document"
-msgstr "Gli allegati non possono essere collegati correttamente al nuovo documento"
+msgstr ""
#. Description of the 'API Key' (Data) field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
-msgid ""
-"The browser API key obtained from the Google Cloud Console under \n"
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "The browser API key obtained from the Google Cloud Console under \n"
"\"APIs & Services\" > \"Credentials\"\n"
""
msgstr ""
-#: database/database.py:388
+#: frappe/database/database.py:475
msgid "The changes have been reverted."
msgstr ""
-#: core/doctype/data_import/importer.py:962
+#: frappe/core/doctype/data_import/importer.py:1009
msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format."
-msgstr "La colonna {0} ha {1} diversi formati di data. Impostazione automatica di {2} come formato predefinito in quanto è il più comune. Modificare altri valori in questa colonna in questo formato."
+msgstr ""
-#: templates/includes/comments/comments.py:34
+#: frappe/templates/includes/comments/comments.py:34
msgid "The comment cannot be empty"
-msgstr "Il commento non può essere vuoto"
+msgstr ""
-#: public/js/frappe/views/interaction.js:301
+#: frappe/templates/emails/workflow_action.html:9
+msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:658
+msgid "The count shown is an estimated count. Click here to see the accurate count."
+msgstr ""
+
+#. Description of the 'Code' (Data) field in DocType 'Country'
+#: frappe/geo/doctype/country/country.json
+msgid "The country's ISO 3166 ALPHA-2 code."
+msgstr ""
+
+#: frappe/public/js/frappe/views/interaction.js:301
msgid "The document could not be correctly assigned"
-msgstr "Il documento non può essere assegnato correttamente"
+msgstr ""
-#: public/js/frappe/views/interaction.js:295
+#: frappe/public/js/frappe/views/interaction.js:295
msgid "The document has been assigned to {0}"
-msgstr "Il documento è stato assegnato a {0}"
+msgstr ""
#. Description of the 'Parent Document Type' (Link) field in DocType 'Dashboard
#. Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "The document type selected is a child table, so the parent document type is required."
-msgstr ""
-
#. Description of the 'Parent Document Type' (Link) field in DocType 'Number
#. Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/number_card/number_card.json
msgid "The document type selected is a child table, so the parent document type is required."
msgstr ""
-#: core/doctype/user_type/user_type.py:109
+#: frappe/core/doctype/user_type/user_type.py:110
msgid "The field {0} is mandatory"
msgstr ""
-#: core/doctype/file/file.py:143
+#: frappe/core/doctype/file/file.py:145
msgid "The fieldname you've specified in Attached To Field is invalid"
msgstr ""
-#: core/doctype/data_import/importer.py:1035
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:62
+msgid "The following Assignment Days have been repeated: {0}"
+msgstr ""
+
+#: frappe/printing/doctype/letter_head/letter_head.js:30
+msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:1086
msgid "The following values are invalid: {0}. Values must be one of {1}"
msgstr ""
-#: core/doctype/data_import/importer.py:998
+#: frappe/core/doctype/data_import/importer.py:1043
msgid "The following values do not exist for {0}: {1}"
msgstr ""
-#: core/doctype/user_type/user_type.py:88
+#: frappe/core/doctype/user_type/user_type.py:89
msgid "The limit has not set for the user type {0} in the site config file."
msgstr ""
-#: templates/emails/login_with_email_link.html:21
+#: frappe/templates/emails/login_with_email_link.html:21
msgid "The link will expire in {0} minutes"
msgstr ""
-#: www/login.py:178
+#: frappe/www/login.py:194
msgid "The link you trying to login is invalid or expired."
msgstr ""
-#: website/doctype/web_page/web_page.js:125
+#: frappe/website/doctype/web_page/web_page.js:125
msgid "The meta description is an HTML attribute that provides a brief summary of a web page. Search engines such as Google often display the meta description in search results, which can influence click-through rates."
-msgstr "La meta descrizione è un attributo HTML che fornisce un breve riepilogo di una pagina web. I motori di ricerca come Google spesso visualizzano la meta descrizione nei risultati di ricerca, il che può influenzare le percentuali di clic."
+msgstr ""
-#: website/doctype/web_page/web_page.js:132
+#: frappe/website/doctype/web_page/web_page.js:132
msgid "The meta image is unique image representing the content of the page. Images for this Card should be at least 280px in width, and at least 150px in height."
-msgstr "La meta immagine è un'immagine unica che rappresenta il contenuto della pagina. Le immagini per questa scheda devono avere una larghezza di almeno 280 px e un'altezza di almeno 150 px."
+msgstr ""
#. Description of the 'Calendar Name' (Data) field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "The name that will appear in Google Calendar"
-msgstr "Il nome che apparirà in Google Calendar"
+msgstr ""
#. Description of the 'Track Steps' (Check) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "The next tour will start from where the user left off."
msgstr ""
#. Description of the 'Request Timeout' (Int) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "The number of seconds until the request expires"
msgstr ""
-#: www/404.html:18
-msgid "The page you are looking for has gone missing."
+#: frappe/www/update-password.html:88
+msgid "The password of your account has expired."
msgstr ""
-#: www/update-password.html:86
-msgid "The password of your account has expired."
-msgstr "La password del tuo account è scaduta."
-
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:395
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:398
msgid "The process for deletion of {0} data associated with {1} has been initiated."
-msgstr "È stato avviato il processo di eliminazione di {0} dati associati a {1}."
+msgstr ""
#. Description of the 'App ID' (Data) field in DocType 'Google Settings'
-#: integrations/doctype/google_settings/google_settings.json
-msgctxt "Google Settings"
-msgid ""
-"The project number obtained from Google Cloud Console under \n"
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "The project number obtained from Google Cloud Console under \n"
"\"IAM & Admin\" > \"Settings\"\n"
""
msgstr ""
-#: core/doctype/user/user.py:943
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
msgstr ""
-#: core/doctype/user/user.py:945
+#: frappe/core/doctype/user/user.py:991
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: app.py:364 public/js/frappe/request.js:147
+#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
-msgstr "La risorsa che si sta cercando non è disponibile"
+msgstr ""
-#: core/doctype/user_type/user_type.py:113
+#: frappe/core/doctype/user_type/user_type.py:114
msgid "The role {0} should be a custom role."
msgstr ""
-#: core/doctype/audit_trail/audit_trail.py:45
+#: frappe/core/doctype/audit_trail/audit_trail.py:46
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: utils/response.py:321
+#: frappe/utils/response.py:331
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
-#: public/js/frappe/form/grid_row.js:615
-msgid "The total column width cannot be more than 10."
+#: frappe/core/page/permission_manager/permission_manager_help.html:9
+msgid "The system provides many pre-defined roles. You can add new roles to set finer permissions."
msgstr ""
-#: core/doctype/user_type/user_type.py:96
+#: frappe/core/doctype/user_type/user_type.py:97
msgid "The total number of user document types limit has been crossed."
msgstr ""
-#. Description of the 'User Field' (Select) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "The user from this field will be rewarded points"
-msgstr "All'utente di questo campo verranno assegnati punti"
-
-#: public/js/frappe/form/controls/data.js:24
+#: frappe/public/js/frappe/form/controls/data.js:25
msgid "The value you pasted was {0} characters long. Max allowed characters is {1}."
msgstr ""
#. Description of the 'Condition' (Small Text) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "The webhook will be triggered if this expression is true"
-msgstr "Il webhook verrà attivato se questa espressione è vera"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:168
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175
msgid "The {0} is already on auto repeat {1}"
-msgstr "{0} è già in ripetizione automatica {1}"
+msgstr ""
-#. Label of a Section Break field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the section_break_6 (Section Break) field in DocType 'Website
+#. Settings'
+#. Label of the theme (Data) field in DocType 'Website Theme'
+#. Label of the theme_scss (Code) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme"
-msgstr "Tema"
+msgstr ""
-#. Label of a Data field in DocType 'Website Theme'
-#. Label of a Code field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
-msgid "Theme"
-msgstr "Tema"
-
-#: public/js/frappe/ui/theme_switcher.js:130
+#: frappe/public/js/frappe/ui/theme_switcher.js:130
msgid "Theme Changed"
msgstr ""
-#. Label of a Tab Break field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the bootstrap_theme_section (Tab Break) field in DocType 'Website
+#. Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme Configuration"
-msgstr "Configurazione del tema"
+msgstr ""
-#. Label of a Data field in DocType 'Website Theme'
-#: website/doctype/website_theme/website_theme.json
-msgctxt "Website Theme"
+#. Label of the theme_url (Data) field in DocType 'Website Theme'
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme URL"
-msgstr "URL del tema"
+msgstr ""
-#: website/web_template/discussions/discussions.html:3
+#: frappe/workflow/doctype/workflow/workflow.js:125
+msgid "There are documents which have workflow states that do not exist in this Workflow. It is recommended that you add these states to the Workflow and change their states before removing these states."
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:442
+msgid "There are no upcoming events for you."
+msgstr ""
+
+#: frappe/website/web_template/discussions/discussions.html:3
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: website/doctype/web_form/web_form.js:72
-#: website/doctype/web_form/web_form.js:308
+#: frappe/public/js/frappe/views/reports/query_report.js:963
+msgid "There are {0} with the same filters already in the queue:"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.js:81
+#: frappe/website/doctype/web_form/web_form.js:317
msgid "There can be only 9 Page Break fields in a Web Form"
msgstr ""
-#: core/doctype/doctype/doctype.py:1394
+#: frappe/core/doctype/doctype/doctype.py:1443
msgid "There can be only one Fold in a form"
-msgstr "Ci può essere un solo Fold in forma"
+msgstr ""
-#: contacts/doctype/address/address.py:185
+#: frappe/contacts/doctype/address/address.py:183
msgid "There is an error in your Address Template {0}"
-msgstr "C'è un errore nel vostro indirizzo template {0}"
+msgstr ""
-#: core/doctype/data_export/exporter.py:162
+#: frappe/core/doctype/data_export/exporter.py:162
msgid "There is no data to be exported"
-msgstr "Non ci sono dati da esportare"
+msgstr ""
-#: core/doctype/file/file.py:571 utils/file_manager.py:376
+#: frappe/public/js/frappe/ui/notifications/notifications.js:492
+msgid "There is nothing new to show you right now."
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
-msgstr "C'è qualche problema con il file url: {0}"
+msgstr ""
-#: core/page/permission_manager/permission_manager.py:150
+#: frappe/public/js/frappe/views/reports/query_report.js:960
+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 "Ci deve essere atleast regola un permesso."
+msgstr ""
-#: core/doctype/user/user.py:499
-msgid "There should remain at least one System Manager"
-msgstr "Deve esserci almeno un Amministratore di sistema"
-
-#: www/error.py:16
+#: frappe/www/error.py:17
msgid "There was an error building this page"
-msgstr "Si è verificato un errore durante la creazione di questa pagina"
+msgstr ""
-#: public/js/frappe/views/kanban/kanban_view.js:180
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
msgid "There was an error saving filters"
-msgstr "Si è verificato un errore durante il salvataggio dei filtri"
+msgstr ""
-#: public/js/frappe/form/sidebar/attachments.js:201
+#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
-msgstr "Ci sono stati degli errori"
+msgstr ""
-#: public/js/frappe/views/interaction.js:276
+#: frappe/public/js/frappe/views/interaction.js:277
msgid "There were errors while creating the document. Please try again."
-msgstr "Si sono verificati errori durante la creazione del documento. Per favore riprova."
+msgstr ""
-#: public/js/frappe/views/communication.js:728
+#: frappe/public/js/frappe/views/communication.js:837
msgid "There were errors while sending email. Please try again."
-msgstr "Ci sono stati errori durante l'invio email. Riprova."
+msgstr ""
-#: model/naming.py:449
+#: frappe/model/naming.py:494
msgid "There were some errors setting the name, please contact the administrator"
-msgstr "Ci sono stati alcuni errori durante l'impostazione del nome, si prega di contattare l'amministratore"
+msgstr ""
-#: www/404.html:15
-msgid "There's nothing here"
+#. Description of the 'Announcement Widget' (Text Editor) field in DocType
+#. 'Navbar Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+msgid "These announcements will appear inside a dismissible alert below the Navbar."
msgstr ""
#. Description of the 'LDAP Custom Settings' (Section Break) field in DocType
#. 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "These settings are required if 'Custom' LDAP Directory is used"
msgstr ""
#. Description of the 'Defaults' (Section Break) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/core/doctype/user/user.json
msgid "These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values."
-msgstr "Questi valori saranno aggiornati automaticamente nelle transazioni e anche sarà utile per limitare le autorizzazioni per l'utente sulle operazioni che contengono questi valori."
+msgstr ""
-#: www/third_party_apps.html:3 www/third_party_apps.html:13
+#: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14
msgid "Third Party Apps"
-msgstr "Applicazioni di terze parti"
+msgstr ""
-#. Label of a Section Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the third_party_authentication (Section Break) field in DocType
+#. 'User'
+#: frappe/core/doctype/user/user.json
msgid "Third Party Authentication"
-msgstr "Autenticazione di terze parti"
+msgstr ""
-#: geo/doctype/currency/currency.js:8
+#: frappe/geo/doctype/currency/currency.js:8
msgid "This Currency is disabled. Enable to use in transactions"
-msgstr "Questa valuta è disabilitata . Attiva da utilizzare nelle transazioni"
-
-#: geo/utils.py:84
-msgid "This Doctype does not contain latitude and longitude fields"
msgstr ""
-#: geo/utils.py:67
-msgid "This Doctype does not contain location fields"
-msgstr ""
-
-#: public/js/frappe/views/kanban/kanban_view.js:388
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
msgid "This Kanban Board will be private"
-msgstr "Questo consiglio di amministrazione Kanban sarà privata"
+msgstr ""
-#: __init__.py:917
+#: frappe/public/js/frappe/ui/filters/filter.js:666
+msgid "This Month"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:670
+msgid "This Quarter"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:662
+msgid "This Week"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/filters/filter.js:674
+msgid "This Year"
+msgstr ""
+
+#: frappe/custom/doctype/customize_form/customize_form.js:220
+msgid "This action is irreversible. Do you wish to continue?"
+msgstr ""
+
+#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
-msgstr "Questa azione è consentita solo per {}"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:107 public/js/frappe/model/model.js:720
+#: frappe/public/js/frappe/form/toolbar.js:117
+#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
-msgstr "Questo non può essere annullato"
+msgstr ""
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
+#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
-msgstr "Questa scheda sarà disponibile per tutti gli utenti se impostata"
-
-#. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "This chart will be available to all Users if this is set"
-msgstr "Questo grafico sarà disponibile per tutti gli utenti se impostato"
-
-#: desk/doctype/workspace/workspace.js:23
-msgid "This document allows you to edit limited fields. For all kinds of workspace customization, use the Edit button located on the workspace page"
msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:90
-msgid "This document cannot be reverted"
-msgstr "Questo documento non può essere ripristinato"
+#. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+msgid "This chart will be available to all Users if this is set"
+msgstr ""
-#: www/confirm_workflow_action.html:8
+#: frappe/custom/doctype/customize_form/customize_form.js:212
+msgid "This doctype has no orphan fields to trim"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1054
+msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
+msgstr ""
+
+#: frappe/model/delete_doc.py:112
+msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
+msgstr ""
+
+#: frappe/www/confirm_workflow_action.html:8
msgid "This document has been modified after the email was sent."
-msgstr "Questo documento è stato modificato dopo l'invio dell'e-mail."
+msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.js:8
-msgid "This document has been reverted"
-msgstr "Questo documento è stato ripristinato"
+#: frappe/public/js/frappe/form/form.js:1305
+msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
+msgstr ""
-#: public/js/frappe/form/form.js:1075
+#: frappe/public/js/frappe/form/form.js:1102
msgid "This document is already amended, you cannot ammend it again"
-msgstr "Questo documento è già stato modificato, non puoi modificarlo di nuovo"
+msgstr ""
-#: model/document.py:1518
-msgid "This document is currently queued for execution. Please try again"
-msgstr "Questo documento è attualmente in coda per l'esecuzione. Riprova"
+#: frappe/model/document.py:473
+msgid "This document is currently locked and queued for execution. Please try again after some time."
+msgstr ""
-#: templates/emails/auto_repeat_fail.html:7
+#: frappe/templates/emails/auto_repeat_fail.html:7
msgid "This email is autogenerated"
-msgstr "Questa email è autogenerata"
+msgstr ""
-#: printing/doctype/network_printer_settings/network_printer_settings.py:29
-msgid ""
-"This feature can not be used as dependencies are missing.\n"
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:30
+msgid "This feature can not be used as dependencies are missing.\n"
"\t\t\t\tPlease contact your system manager to enable this by installing pycups!"
msgstr ""
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
+msgid "This feature is brand new and still experimental"
+msgstr ""
+
#. Description of the 'Depends On' (Code) field in DocType 'Customize Form
#. Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid ""
-"This field will appear only if the fieldname defined here has value OR the rules are true (examples):\n"
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+msgid "This field will appear only if the fieldname defined here has value OR the rules are true (examples):\n"
"myfield\n"
"eval:doc.myfield=='My Value'\n"
"eval:doc.age>18"
msgstr ""
-#: core/doctype/file/file.js:10
+#: frappe/core/doctype/file/file.py:500
+msgid "This file is attached to a protected document and cannot be deleted."
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FilePreview.vue:76
+msgid "This file is public and can be accessed by anyone, even without logging in. Mark it private to limit access."
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:20
msgid "This file is public. It can be accessed without authentication."
msgstr ""
-#: public/js/frappe/form/form.js:1172
+#: frappe/public/js/frappe/form/form.js:1199
msgid "This form has been modified after you have loaded it"
-msgstr "Questo modulo è stato modificato dopo aver caricato la"
+msgstr ""
-#: public/js/frappe/form/form.js:457
+#: frappe/public/js/frappe/form/form.js:2257
msgid "This form is not editable due to a Workflow."
msgstr ""
#. Description of the 'Is Default' (Check) field in DocType 'Address Template'
-#: contacts/doctype/address_template/address_template.json
-msgctxt "Address Template"
+#: frappe/contacts/doctype/address_template/address_template.json
msgid "This format is used if country specific format is not found"
-msgstr "Questo formato viene utilizzato se il formato specifico per il Paese non viene trovata"
+msgstr ""
+
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.py:52
+msgid "This geolocation provider is not supported yet."
+msgstr ""
#. Description of the 'Header' (HTML Editor) field in DocType 'Website
#. Slideshow'
-#: website/doctype/website_slideshow/website_slideshow.json
-msgctxt "Website Slideshow"
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "This goes above the slideshow."
-msgstr "Questo va al di sopra della presentazione."
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1995
+#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
-msgstr "Questo è un rapporto di background. Si prega di impostare i filtri appropriati e quindi generarne uno nuovo."
+msgstr ""
-#: utils/password_strength.py:162
+#: frappe/utils/password_strength.py:158
msgid "This is a top-10 common password."
-msgstr "Questa è nella top-10 delle password comuni."
+msgstr ""
-#: utils/password_strength.py:164
+#: frappe/utils/password_strength.py:160
msgid "This is a top-100 common password."
-msgstr "Questa è nella top-100 delle password comuni."
+msgstr ""
-#: utils/password_strength.py:166
+#: frappe/utils/password_strength.py:162
msgid "This is a very common password."
-msgstr "Questa è una password molto comune."
+msgstr ""
-#: core/doctype/rq_job/rq_job.js:9
+#: frappe/core/doctype/rq_job/rq_job.js:9
msgid "This is a virtual doctype and data is cleared periodically."
msgstr ""
-#: templates/emails/auto_reply.html:5
+#: frappe/templates/emails/auto_reply.html:5
msgid "This is an automatically generated reply"
-msgstr "Questa è una risposta generata automaticamente"
+msgstr ""
#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog
#. Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "This is an example Google SERP Preview."
-msgstr "Questo è un esempio di anteprima SERP di Google."
+msgstr ""
-#: utils/password_strength.py:168
+#: frappe/utils/password_strength.py:164
msgid "This is similar to a commonly used password."
-msgstr "Questa è simile ad una password comunemente usata."
+msgstr ""
#. Description of the 'Current Value' (Int) field in DocType 'Document Naming
#. Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "This is the number of the last created transaction with this prefix"
-msgstr "Questo è il numero dell'ultimo transazione creata con questo prefisso"
+msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:404
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407
msgid "This link has already been activated for verification."
-msgstr "Questo collegamento è già stato attivato per la verifica."
+msgstr ""
-#: utils/verified_command.py:49
+#: frappe/utils/verified_command.py:49
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
-msgstr "Questo collegamento non è valido o scaduto. Assicurati di aver incollato correttamente."
+msgstr ""
-#: printing/page/print/print.js:403
+#: frappe/printing/page/print/print.js:410
msgid "This may get printed on multiple pages"
-msgstr "Questo può essere stampato su più pagine"
+msgstr ""
-#: utils/goal.py:109
+#: frappe/utils/goal.py:109
msgid "This month"
-msgstr "Questo mese"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:223
+#: frappe/email/doctype/newsletter/newsletter.js:223
msgid "This newsletter is scheduled to be sent on {0}"
msgstr ""
-#: email/doctype/newsletter/newsletter.js:50
+#: frappe/email/doctype/newsletter/newsletter.js:50
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
msgstr ""
-#: templates/emails/auto_email_report.html:57
+#: frappe/public/js/frappe/views/reports/query_report.js:1035
+msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
+msgstr ""
+
+#: frappe/templates/emails/auto_email_report.html:57
msgid "This report was generated on {0}"
-msgstr "Questo rapporto è stato generato su {0}"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:782
+#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
-msgstr "Questo rapporto è stato generato {0}."
+msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:118
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:122
msgid "This request has not yet been approved by the user."
-msgstr "Questa richiesta non è stata ancora approvata dall'utente."
+msgstr ""
-#: templates/includes/navbar/navbar_items.html:95
+#: frappe/templates/includes/navbar/navbar_items.html:95
msgid "This site is in read only mode, full functionality will be restored soon."
msgstr ""
-#: core/doctype/doctype/doctype.js:76
+#: frappe/core/doctype/doctype/doctype.js:73
msgid "This site is running in developer mode. Any change made here will be updated in code."
msgstr ""
-#: website/doctype/web_page/web_page.js:71
-msgid "This title will be used as the title of the webpage as well as in meta tags"
-msgstr "Questo titolo verrà utilizzato come titolo della pagina web e nei meta tag"
+#: frappe/www/attribution.html:11
+msgid "This software is built on top of many open source packages."
+msgstr ""
-#: public/js/frappe/form/controls/base_input.js:120
+#: 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 ""
-#: website/doctype/web_page/web_page.js:85
+#. Description of the 'Max Report Rows' (Int) field in DocType 'System
+#. Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "This value specifies the max number of rows that can be rendered in report view. "
+msgstr ""
+
+#: frappe/website/doctype/web_page/web_page.js:85
msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish"
-msgstr "Questo verrà generato automaticamente quando pubblichi la pagina, puoi anche inserire un percorso tu stesso se lo desideri"
+msgstr ""
#. Description of the 'Callback Message' (Small Text) field in DocType
#. 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "This will be shown in a modal after routing"
-msgstr "Questo verrà mostrato in modo modale dopo il routing"
+msgstr ""
#. Description of the 'Report Description' (Data) field in DocType 'Onboarding
#. Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "This will be shown to the user in a dialog after routing to the report"
-msgstr "Questo verrà mostrato all'utente in una finestra di dialogo dopo l'instradamento al rapporto"
+msgstr ""
-#: www/third_party_apps.html:21
+#: frappe/www/third_party_apps.html:23
msgid "This will log out {0} from all other devices"
-msgstr "Questo verrà eseguito l'accesso da {0} da tutti gli altri dispositivi"
+msgstr ""
-#: templates/emails/delete_data_confirmation.html:3
+#: frappe/templates/emails/delete_data_confirmation.html:3
msgid "This will permanently remove your data."
-msgstr "Questo rimuoverà permanentemente i tuoi dati."
+msgstr ""
-#: desk/doctype/form_tour/form_tour.js:103
+#: frappe/desk/doctype/form_tour/form_tour.js:103
msgid "This will reset this tour and show it to all users. Are you sure?"
msgstr ""
-#: core/doctype/rq_job/rq_job.js:15
+#: frappe/core/doctype/rq_job/rq_job.js:15
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: core/doctype/user/user.py:1209
+#: frappe/core/doctype/user/user.py:1242
msgid "Throttled"
-msgstr "strozzato"
+msgstr ""
-#. Label of a Small Text field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the thumbnail_url (Small Text) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Thumbnail URL"
-msgstr "URL Thumbnail"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Thursday"
-msgstr "Giovedì"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Thursday"
-msgstr "Giovedì"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Thursday"
-msgstr "Giovedì"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Thursday"
-msgstr "Giovedì"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the thursday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Thursday"
-msgstr "Giovedì"
-
-#: email/doctype/newsletter/newsletter.js:118
-msgid "Time"
-msgstr "Tempo"
-
-#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Time"
-msgstr "Tempo"
-
-#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Time"
-msgstr "Tempo"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Time"
-msgstr "Tempo"
-
-#. Label of a Datetime field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
-msgid "Time"
-msgstr "Tempo"
-
+#. Label of the time (Datetime) field in DocType 'Recorder'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Time"
-msgstr "Tempo"
-
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
-msgid "Time"
-msgstr "Tempo"
-
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
-#: website/doctype/web_form_field/web_form_field.json
-msgctxt "Web Form Field"
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/email/doctype/newsletter/newsletter.js:118
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
-msgstr "Tempo"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the time_format (Select) field in DocType 'Language'
+#. Label of the time_format (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Time Format"
-msgstr "Formato orario"
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the time_interval (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Time Interval"
-msgstr "Intervallo di tempo"
+msgstr ""
-#. Label of a Check field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the timeseries (Check) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Time Series"
-msgstr "Serie storiche"
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the based_on (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Time Series Based On"
-msgstr "Serie storiche basate su"
+msgstr ""
-#. Label of a Duration field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the time_taken (Duration) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Time Taken"
msgstr ""
-#. Label of a Int field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Label of the rate_limit_seconds (Int) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
msgid "Time Window (Seconds)"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:395
+#. Label of the time_zone (Select) field in DocType 'System Settings'
+#. Label of the time_zone (Autocomplete) field in DocType 'User'
+#. Label of the time_zone (Data) field in DocType 'Web Page View'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+#: frappe/desk/page/setup_wizard/setup_wizard.js:407
+#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Time Zone"
-msgstr "Fuso Orario"
+msgstr ""
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Time Zone"
-msgstr "Fuso Orario"
-
-#. Label of a Autocomplete field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Time Zone"
-msgstr "Fuso Orario"
-
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
-msgid "Time Zone"
-msgstr "Fuso Orario"
-
-#. Label of a Text field in DocType 'Country'
-#: geo/doctype/country/country.json
-msgctxt "Country"
+#. Label of the time_zones (Text) field in DocType 'Country'
+#: frappe/geo/doctype/country/country.json
msgid "Time Zones"
-msgstr "Fusi Orari"
+msgstr ""
-#. Label of a Data field in DocType 'Country'
-#: geo/doctype/country/country.json
-msgctxt "Country"
+#. Label of the time_format (Data) field in DocType 'Country'
+#: frappe/geo/doctype/country/country.json
msgid "Time format"
-msgstr "Formato orario"
+msgstr ""
-#. Label of a Float field in DocType 'Recorder'
-#: core/doctype/recorder/recorder.json
-msgctxt "Recorder"
+#. Label of the time_in_queries (Float) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
msgid "Time in Queries"
msgstr ""
#. Description of the 'Expiry time of QR Code Image Page' (Int) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Time in seconds to retain QR code image on server. Min:240"
-msgstr "Tempo in secondi per mantenere l'immagine QR del codice sul server. Min: 240"
+msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.py:413
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:413
msgid "Time series based on is required to create a dashboard chart"
-msgstr "Per creare un grafico del dashboard sono necessarie serie temporali basate su"
+msgstr ""
-#: public/js/frappe/form/controls/time.js:104
+#: frappe/public/js/frappe/form/controls/time.js:124
msgid "Time {0} must be in format: {1}"
-msgstr "L'ora {0} deve essere nel formato: {1}"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/core/doctype/data_import/data_import.json
msgid "Timed Out"
msgstr ""
-#: public/js/frappe/ui/theme_switcher.js:64
+#: frappe/public/js/frappe/ui/theme_switcher.js:64
msgid "Timeless Night"
msgstr ""
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the timeline (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "Timeline"
msgstr ""
-#. Label of a Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. Label of the timeline_doctype (Link) field in DocType 'Activity Log'
+#: frappe/core/doctype/activity_log/activity_log.json
msgid "Timeline DocType"
-msgstr "DocType Timeline"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the timeline_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Timeline Field"
-msgstr "Timeline campo"
+msgstr ""
-#. Label of a Section Break field in DocType 'Communication'
-#. Label of a Table field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the timeline_links_sections (Section Break) field in DocType
+#. 'Communication'
+#. Label of the timeline_links (Table) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Timeline Links"
-msgstr "Collegamenti della sequenza temporale"
+msgstr ""
-#. Label of a Dynamic Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
+#. Label of the timeline_name (Dynamic Link) field in DocType 'Activity Log'
+#: frappe/core/doctype/activity_log/activity_log.json
msgid "Timeline Name"
-msgstr "Nome Timeline"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1489
+#: frappe/core/doctype/doctype/doctype.py:1538
msgid "Timeline field must be a Link or Dynamic Link"
-msgstr "campo Timeline deve essere un link o collegamento dinamico"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1485
+#: frappe/core/doctype/doctype/doctype.py:1534
msgid "Timeline field must be a valid fieldname"
-msgstr "campo Timeline deve essere un nome di campo valido"
+msgstr ""
-#. Label of a Duration field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#. Label of the timeout (Duration) field in DocType 'RQ Job'
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "Timeout"
msgstr ""
-#. Label of a Check field in DocType 'Dashboard Chart Source'
-#: desk/doctype/dashboard_chart_source/dashboard_chart_source.json
-msgctxt "Dashboard Chart Source"
+#. Label of the timeout (Int) field in DocType 'Report'
+#: frappe/core/doctype/report/report.json
+msgid "Timeout (In Seconds)"
+msgstr ""
+
+#. Label of the timeseries (Check) field in DocType 'Dashboard Chart Source'
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
msgid "Timeseries"
-msgstr "timeseries"
+msgstr ""
-#: desk/page/leaderboard/leaderboard.js:123
-#: public/js/frappe/ui/filters/filter.js:28
+#. Label of the timespan (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/public/js/frappe/ui/filters/filter.js:28
msgid "Timespan"
-msgstr "Arco di tempo"
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Timespan"
-msgstr "Arco di tempo"
-
-#: core/report/transaction_log_report/transaction_log_report.py:112
+#. Label of the timestamp (Datetime) field in DocType 'Access Log'
+#. Label of the timestamp (Datetime) field in DocType 'Transaction Log'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:112
msgid "Timestamp"
-msgstr "Timestamp"
+msgstr ""
-#. Label of a Datetime field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
-msgid "Timestamp"
-msgstr "Timestamp"
+#: frappe/desk/doctype/system_console/system_console.js:41
+msgid "Tip: Try the new dropdown console using"
+msgstr ""
-#. Label of a Datetime field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
-msgid "Timestamp"
-msgstr "Timestamp"
-
-#: public/js/form_builder/store.js:89
-#: public/js/frappe/views/workspace/workspace.js:599
-#: public/js/frappe/views/workspace/workspace.js:928
-#: public/js/frappe/views/workspace/workspace.js:1175
+#. Label of the title (Data) field in DocType 'DocType State'
+#. Label of the method (Data) field in DocType 'Error Log'
+#. Label of the title (Data) field in DocType 'Page'
+#. Label of the title (Data) field in DocType 'Changelog Feed'
+#. Label of the title (Data) field in DocType 'Form Tour'
+#. Label of the title (Data) field in DocType 'Form Tour Step'
+#. Label of the title (Data) field in DocType 'Module Onboarding'
+#. Label of the title (Data) field in DocType 'Note'
+#. Label of the title (Data) field in DocType 'Onboarding Step'
+#. Label of the title (Data) field in DocType 'System Health Report Errors'
+#. Label of the title (Data) field in DocType 'Workspace'
+#. Label of the title (Data) field in DocType 'Email Group'
+#. Label of the title (Data) field in DocType 'Blog Category'
+#. Label of the title (Data) field in DocType 'Blog Post'
+#. Label of the title (Data) field in DocType 'Blog Settings'
+#. Label of the title (Data) field in DocType 'Discussion Topic'
+#. Label of the title (Data) field in DocType 'Help Article'
+#. Label of the title (Data) field in DocType 'Portal Menu Item'
+#. Label of the title (Data) field in DocType 'Web Form'
+#. Label of the list_title (Data) field in DocType 'Web Form'
+#. Label of the title (Data) field in DocType 'Web Page'
+#. Label of the meta_title (Data) field in DocType 'Web Page'
+#. Label of the title (Data) field in DocType 'Website Sidebar'
+#. Label of the title (Data) field in DocType 'Website Sidebar Item'
+#: frappe/core/doctype/doctype/boilerplate/controller_list.html:14
+#: frappe/core/doctype/doctype/boilerplate/controller_list.html:23
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/page/page.json
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/desk/doctype/note/note.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/email/doctype/email_group/email_group.json
+#: frappe/public/js/frappe/views/workspace/workspace.js:393
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
+#: frappe/website/doctype/help_article/help_article.json
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_sidebar/website_sidebar.json
+#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Title"
-msgstr "Titolo"
+msgstr ""
-#. Label of a Data field in DocType 'Blog Category'
-#: website/doctype/blog_category/blog_category.json
-msgctxt "Blog Category"
-msgid "Title"
-msgstr "Titolo"
-
-#. Label of a Data field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
-msgid "Title"
-msgstr "Titolo"
-
-#. Label of a Data field in DocType 'Blog Settings'
-#: website/doctype/blog_settings/blog_settings.json
-msgctxt "Blog Settings"
-msgid "Title"
-msgstr "Titolo"
-
-#. Label of a Data field in DocType 'Discussion Topic'
-#: website/doctype/discussion_topic/discussion_topic.json
-msgctxt "Discussion Topic"
-msgid "Title"
-msgstr "Titolo"
-
-#. Label of a Data field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Title"
-msgstr "Titolo"
-
-#. Label of a Data field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
-msgid "Title"
-msgstr "Titolo"
-
-#. Label of a Data field in DocType 'Error Log'
-#: core/doctype/error_log/error_log.json
-msgctxt "Error Log"
-msgid "Title"
-msgstr "Titolo"
-
-#. Label of a Data field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Title"
-msgstr "Titolo"
-
-#. Label of a Data field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Title"
-msgstr "Titolo"
-
-#. Label of a Data field in DocType 'Help Article'
-#: website/doctype/help_article/help_article.json
-msgctxt "Help Article"
-msgid "Title"
-msgstr "Titolo"
-
-#. Label of a Data field in DocType 'Module Onboarding'
-#: desk/doctype/module_onboarding/module_onboarding.json
-msgctxt "Module Onboarding"
-msgid "Title"
-msgstr "Titolo"
-
-#. Label of a Data field in DocType 'Note'
-#: desk/doctype/note/note.json
-msgctxt "Note"
-msgid "Title"
-msgstr "Titolo"
-
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
-msgid "Title"
-msgstr "Titolo"
-
-#. Label of a Data field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Title"
-msgstr "Titolo"
-
-#. Label of a Data field in DocType 'Portal Menu Item'
-#: website/doctype/portal_menu_item/portal_menu_item.json
-msgctxt "Portal Menu Item"
-msgid "Title"
-msgstr "Titolo"
-
-#. Label of a Data field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Title"
-msgstr "Titolo"
-
-#. Label of a Data field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Title"
-msgstr "Titolo"
-
-#. Label of a Data field in DocType 'Website Sidebar'
-#: website/doctype/website_sidebar/website_sidebar.json
-msgctxt "Website Sidebar"
-msgid "Title"
-msgstr "Titolo"
-
-#. Label of a Data field in DocType 'Website Sidebar Item'
-#: website/doctype/website_sidebar_item/website_sidebar_item.json
-msgctxt "Website Sidebar Item"
-msgid "Title"
-msgstr "Titolo"
-
-#. Label of a Data field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "Title"
-msgstr "Titolo"
-
-#. Label of a Data field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the title_field (Data) field in DocType 'DocType'
+#. Label of the title_field (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Title Field"
-msgstr "Titolo campo"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Title Field"
-msgstr "Titolo campo"
-
-#. Label of a Data field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the title_prefix (Data) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Title Prefix"
-msgstr "Title Prefix"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1426
+#: frappe/core/doctype/doctype/doctype.py:1475
msgid "Title field must be a valid fieldname"
-msgstr "Campo del titolo deve essere un nome di campo valido"
+msgstr ""
-#: website/doctype/web_page/web_page.js:70
+#: frappe/website/doctype/web_page/web_page.js:70
msgid "Title of the page"
-msgstr "Titolo della pagina"
+msgstr ""
-#: public/js/frappe/views/communication.js:52
-#: public/js/frappe/views/inbox/inbox_view.js:70
+#. Label of the recipients (Code) field in DocType 'Communication'
+#. Label of the recipients (Section Break) field in DocType 'Newsletter'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/permission_log/permission_log.js:12
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
-msgstr "A"
+msgstr ""
-#. Label of a Code field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/public/js/frappe/views/communication.js:53
+msgctxt "Email Recipients"
msgid "To"
-msgstr "A"
+msgstr ""
-#. Label of a Section Break field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
-msgid "To"
-msgstr "A"
-
-#: website/report/website_analytics/website_analytics.js:14
+#. Label of the to_date (Date) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/website/report/website_analytics/website_analytics.js:14
msgid "To Date"
-msgstr "A Data"
+msgstr ""
-#. Label of a Date field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "To Date"
-msgstr "A Data"
-
-#. Label of a Select field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#. Label of the to_date_field (Select) field in DocType 'Auto Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "To Date Field"
-msgstr "Ad oggi campo"
-
-#: desk/doctype/todo/todo_list.js:12
-msgid "To Do"
-msgstr "Da Fare"
+msgstr ""
#. Label of a Link in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "ToDo"
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/todo/todo_list.js:6
msgid "To Do"
-msgstr "Da Fare"
-
-#: public/js/frappe/form/sidebar/review.js:50
-msgid "To User"
-msgstr "All'utente"
+msgstr ""
#. Description of the 'Subject' (Data) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid ""
-"To add dynamic subject, use jinja tags like\n"
-"\n"
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+msgid "To add dynamic subject, use jinja tags like\n\n"
"New {{ doc.doctype }} #{{ doc.name }}
"
msgstr ""
#. Description of the 'Subject' (Data) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
-msgid ""
-"To add dynamic subject, use jinja tags like\n"
-"\n"
+#: frappe/email/doctype/notification/notification.json
+msgid "To add dynamic subject, use jinja tags like\n\n"
"{{ doc.name }} Delivered
"
msgstr ""
#. Description of the 'JSON Request Body' (Code) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid ""
-"To add dynamic values from the document, use jinja tags like\n"
-"\n"
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "To add dynamic values from the document, use jinja tags like\n\n"
"\n"
"{ \"id\": \"{{ doc.name }}\" }\n"
"
\n"
""
msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.py:101
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:107
msgid "To allow more reports update limit in System Settings."
msgstr ""
-#. Label of a Section Break field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the section_break_10 (Section Break) field in DocType
+#. 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "To and CC"
-msgstr "Per e CC"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.js:35
+#. Description of the 'Use First Day of Period' (Check) field in DocType 'Auto
+#. Email Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "To begin the date range at the start of the chosen period. For example, if 'Year' is selected as the period, the report will start from January 1st of the current year."
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:35
msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}."
-msgstr "Per configurare la ripetizione automatica, abilitare "Consenti ripetizione automatica" da {0}."
+msgstr ""
-#: www/login.html:73
+#: frappe/www/login.html:76
msgid "To enable it follow the instructions in the following link: {0}"
-msgstr "Per abilitarlo segui le istruzioni nel seguente link: {0}"
+msgstr ""
-#: desk/doctype/onboarding_step/onboarding_step.js:18
+#: frappe/core/doctype/server_script/server_script.js:40
+msgid "To enable server scripts, read the {0}."
+msgstr ""
+
+#: frappe/desk/doctype/onboarding_step/onboarding_step.js:18
msgid "To export this step as JSON, link it in a Onboarding document and save the document."
msgstr ""
-#: public/js/frappe/views/reports/query_report.js:783
-msgid "To get the updated report, click on {0}."
-msgstr "Per avere un report aggiornato, clicca {0}."
+#: frappe/email/doctype/email_account/email_account.js:126
+msgid "To generate password click {0}"
+msgstr ""
-#: www/me.html:51
-msgid "To manage your authorized third party apps"
+#: frappe/public/js/frappe/views/reports/query_report.js:852
+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'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#: frappe/desk/doctype/system_console/system_console.json
msgid "To print output use print(text)"
msgstr ""
-#: core/doctype/user_type/user_type.py:295
+#: frappe/core/doctype/user_type/user_type.py:291
msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record."
msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.js:8
+#: frappe/integrations/doctype/google_calendar/google_calendar.js:8
msgid "To use Google Calendar, enable {0}."
-msgstr "Per utilizzare Google Calendar, abilita {0}."
+msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.js:8
+#: frappe/integrations/doctype/google_contacts/google_contacts.js:8
msgid "To use Google Contacts, enable {0}."
-msgstr "Per utilizzare i Contatti Google, abilita {0}."
-
-#: integrations/doctype/google_drive/google_drive.js:8
-msgid "To use Google Drive, enable {0}."
-msgstr "Per utilizzare Google Drive, abilita {0}."
+msgstr ""
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "To use Google Indexing, enable Google Settings."
msgstr ""
#. Description of the 'Slack Channel' (Link) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "To use Slack Channel, add a Slack Webhook URL."
msgstr ""
-#: public/js/frappe/utils/diffview.js:43
+#: frappe/public/js/frappe/utils/diffview.js:44
msgid "To version"
msgstr ""
+#. Label of a shortcut in the Tools Workspace
#. Name of a DocType
#. Name of a report
-#: desk/doctype/todo/todo.json desk/report/todo/todo.json
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.json
msgid "ToDo"
-msgstr "Da Fare"
+msgstr ""
-#. Label of a shortcut in the Tools Workspace
-#: automation/workspace/tools/tools.json
-msgctxt "ToDo"
-msgid "ToDo"
-msgstr "Da Fare"
-
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "ToDo"
-msgstr "Da Fare"
-
-#: public/js/frappe/form/controls/date.js:58
-#: public/js/frappe/views/calendar/calendar.js:267
+#: frappe/public/js/frappe/form/controls/date.js:58
+#: frappe/public/js/frappe/ui/filters/filter.js:733
+#: frappe/public/js/frappe/views/calendar/calendar.js:274
msgid "Today"
-msgstr "Oggi"
+msgstr ""
-#: public/js/frappe/ui/notifications/notifications.js:55
-msgid "Today's Events"
-msgstr "Eventi di oggi"
-
-#: public/js/frappe/views/reports/report_view.js:1495
+#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
-msgstr "Attiva / disattiva grafico"
+msgstr ""
#. Label of a standard navbar item
#. Type: Action
-#: hooks.py
+#: frappe/hooks.py
msgid "Toggle Full Width"
msgstr ""
-#: public/js/frappe/views/file/file_view.js:33
+#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
-msgstr "Attiva / disattiva visualizzazione griglia"
+msgstr ""
-#: public/js/frappe/ui/page.js:193 public/js/frappe/ui/page.js:195
-#: public/js/frappe/views/reports/report_view.js:1499
+#: frappe/public/js/frappe/ui/page.js:201
+#: frappe/public/js/frappe/ui/page.js:203
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
-msgstr "Attiva barra laterale"
+msgstr ""
-#: public/js/frappe/list/list_view.js:1681
+#: frappe/public/js/frappe/list/list_view.js:1819
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
-msgstr "Attiva barra laterale"
+msgstr ""
#. Label of a standard navbar item
#. Type: Action
-#: hooks.py
+#: frappe/hooks.py
msgid "Toggle Theme"
msgstr ""
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
-msgstr "Gettone"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/token_cache/token_cache.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Cache"
msgstr ""
-#. Linked DocType in Connected App's connections
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
-msgid "Token Cache"
-msgstr ""
-
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Token Cache"
-msgstr ""
-
-#. Label of a Data field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
+#. Label of the token_type (Data) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Type"
msgstr ""
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the token_uri (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Token URI"
msgstr ""
-#: utils/oauth.py:184
+#: frappe/utils/oauth.py:184
msgid "Token is missing"
-msgstr "Token mancante"
+msgstr ""
-#: desk/doctype/bulk_update/bulk_update.py:70 model/workflow.py:253
+#: frappe/public/js/frappe/ui/filters/filter.js:739
+msgid "Tomorrow"
+msgstr ""
+
+#: frappe/desk/doctype/bulk_update/bulk_update.py:68
+#: frappe/model/workflow.py:254
msgid "Too Many Documents"
msgstr ""
-#: rate_limiter.py:88
+#: frappe/rate_limiter.py:101
msgid "Too Many Requests"
-msgstr "Troppe richieste"
+msgstr ""
-#: database/database.py:387
+#: frappe/database/database.py:474
msgid "Too many changes to database in single action."
msgstr ""
-#: core/doctype/user/user.py:984
+#: frappe/utils/background_jobs.py:730
+msgid "Too many queued background jobs ({0}). Please retry after some time."
+msgstr ""
+
+#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
-msgstr "Troppi utenti hanno effettuato la registrazione per cui l'operazione e' disabilitata. Si prega di riprovare tra un'ora"
+msgstr ""
#. Name of a Workspace
#. Label of a Card Break in the Tools Workspace
-#: automation/workspace/tools/tools.json
+#: frappe/automation/workspace/tools/tools.json
msgid "Tools"
msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:153
msgid "Top"
-msgstr "Superiore"
+msgstr ""
+
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13
+msgid "Top 10"
+msgstr ""
#. Name of a DocType
-#: website/doctype/top_bar_item/top_bar_item.json
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Top Bar Item"
-msgstr "Top Bar articolo"
+msgstr ""
-#. Label of a Table field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the top_bar_items (Table) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Top Bar Items"
-msgstr "Top Articoli Bar"
+msgstr ""
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:245
msgid "Top Center"
msgstr ""
-#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Top Center"
+#. Label of the top_errors (Table) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Top Errors"
msgstr ""
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:244
msgid "Top Left"
msgstr ""
-#: templates/emails/energy_points_summary.html:3
-msgid "Top Performer"
-msgstr "Il più performante"
-
-#: templates/emails/energy_points_summary.html:18
-msgid "Top Reviewer"
-msgstr "Revisore principale"
-
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "Top Right"
-msgstr ""
-
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:246
msgid "Top Right"
msgstr ""
-#: templates/emails/energy_points_summary.html:33
-msgid "Top {0}"
-msgstr "Top {0}"
-
-#. Label of a Link field in DocType 'Discussion Reply'
-#: website/doctype/discussion_reply/discussion_reply.json
-msgctxt "Discussion Reply"
+#. Label of the topic (Link) field in DocType 'Discussion Reply'
+#: frappe/website/doctype/discussion_reply/discussion_reply.json
msgid "Topic"
-msgstr "Argomento"
+msgstr ""
-#: desk/query_report.py:503
+#: frappe/desk/query_report.py:533
+#: frappe/public/js/frappe/views/reports/print_grid.html:45
+#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
-msgstr "Totale"
+msgstr ""
-#. Label of a Int field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. 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_recipients (Int) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Total Recipients"
msgstr ""
-#. Label of a Int field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#. Label of the total_subscribers (Int) field in DocType 'Email Group'
+#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
+#. Email Group'
+#: frappe/email/doctype/email_group/email_group.json
+#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
-msgstr "Totale Iscritti"
+msgstr ""
-#. Label of a Read Only field in DocType 'Newsletter Email Group'
-#: email/doctype/newsletter_email_group/newsletter_email_group.json
-msgctxt "Newsletter Email Group"
-msgid "Total Subscribers"
-msgstr "Totale Iscritti"
+#. 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 a Int field in DocType 'Newsletter'
-#: email/doctype/newsletter/newsletter.json
-msgctxt "Newsletter"
+#. Label of the total_views (Int) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
msgid "Total Views"
msgstr ""
-#. Label of a Duration field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
msgstr ""
#. Description of the 'Initial Sync Count' (Select) field in DocType 'Email
#. Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Total number of emails to sync in initial sync process "
-msgstr "Numero totale di messaggi di posta elettronica per la sincronizzazione in processo di sincronizzazione iniziale"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1181
-#: public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/print_format_builder/ConfigureColumns.vue:12
+msgid "Total:"
+msgstr ""
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
-msgstr "Totali"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1156
+#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
-msgstr "Totals Row"
+msgstr ""
-#. Label of a Data field in DocType 'Error Log'
-#: core/doctype/error_log/error_log.json
-msgctxt "Error Log"
+#. Label of the trace_id (Data) field in DocType 'Error Log'
+#: frappe/core/doctype/error_log/error_log.json
msgid "Trace ID"
msgstr ""
-#. Label of a Code field in DocType 'Patch Log'
-#: core/doctype/patch_log/patch_log.json
-msgctxt "Patch Log"
+#. Label of the traceback (Code) field in DocType 'Patch Log'
+#: frappe/core/doctype/patch_log/patch_log.json
msgid "Traceback"
-msgstr "Rintracciare"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the track_changes (Check) field in DocType 'DocType'
+#. Label of the track_changes (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Track Changes"
-msgstr "Tenere traccia delle modifiche"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Track Changes"
-msgstr "Tenere traccia delle modifiche"
-
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the track_email_status (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Track Email Status"
-msgstr "Traccia lo stato della posta elettronica"
+msgstr ""
-#. Label of a Data field in DocType 'Milestone'
-#: automation/doctype/milestone/milestone.json
-msgctxt "Milestone"
+#. Label of the track_field (Data) field in DocType 'Milestone'
+#: frappe/automation/doctype/milestone/milestone.json
msgid "Track Field"
-msgstr "Traccia campo"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the track_seen (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Track Seen"
-msgstr "Traccia Visto"
+msgstr ""
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the track_steps (Check) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Track Steps"
msgstr ""
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the track_views (Check) field in DocType 'DocType'
+#. Label of the track_views (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Track Views"
-msgstr "Traccia le viste"
-
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Track Views"
-msgstr "Traccia le viste"
+msgstr ""
#. Description of the 'Track Email Status' (Check) field in DocType 'Email
#. Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid ""
-"Track if your email has been opened by the recipient.\n"
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Track if your email has been opened by the recipient.\n"
"
\n"
"Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered \"Opened\""
msgstr ""
-#: public/js/frappe/utils/utils.js:1744
+#. Description of a DocType
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
+msgid "Track milestones for any document"
+msgstr ""
+
+#. Label of a Card Break in the Website Workspace
+#: frappe/website/workspace/website/website.json
+msgid "Tracking"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/utils.js:1781
msgid "Tracking URL generated and copied to clipboard"
msgstr ""
-#. Label of a Small Text field in DocType 'Transaction Log'
-#: core/doctype/transaction_log/transaction_log.json
-msgctxt "Transaction Log"
+#. Label of the transaction_hash (Small Text) field in DocType 'Transaction
+#. Log'
+#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Transaction Hash"
-msgstr "Transazione hash"
+msgstr ""
#. Name of a DocType
-#: core/doctype/transaction_log/transaction_log.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Transaction Log"
-msgstr "Registro delle transazioni"
+msgstr ""
#. Name of a report
-#: core/report/transaction_log_report/transaction_log_report.json
+#: frappe/core/report/transaction_log_report/transaction_log_report.json
msgid "Transaction Log Report"
-msgstr "Rapporto del registro delle transazioni"
+msgstr ""
-#. Label of a Section Break field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#: frappe/desk/page/setup_wizard/install_fixtures.py:31
+msgid "Transgender"
+msgstr ""
+
+#: frappe/public/js/workflow_builder/components/Properties.vue:19
+msgid "Transition Properties"
+msgstr ""
+
+#. Label of the transition_rules (Section Break) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Transition Rules"
-msgstr "Regole di transizione"
+msgstr ""
-#. Label of a Table field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the transitions (Table) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Transitions"
-msgstr "Transizioni"
+msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the translatable (Check) field in DocType 'DocField'
+#. Label of the translatable (Check) field in DocType 'Custom Field'
+#. Label of the translatable (Check) field in DocType 'Customize Form Field'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Translatable"
-msgstr "Traducibile"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Translatable"
-msgstr "Traducibile"
+#: frappe/public/js/frappe/views/reports/query_report.js:2183
+msgid "Translate Data"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Translatable"
-msgstr "Traducibile"
-
-#. Label of a Check field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the translated_doctype (Check) field in DocType 'DocType'
+#. Label of the translated_doctype (Check) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Translate Link Fields"
msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Translate Link Fields"
+#: frappe/public/js/frappe/views/reports/report_view.js:1656
+msgid "Translate values"
msgstr ""
-#: public/js/frappe/views/translation_manager.js:11
+#: frappe/public/js/frappe/views/translation_manager.js:11
msgid "Translate {0}"
-msgstr "Traduci {0}"
+msgstr ""
-#. Label of a Code field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
+#. Label of the translated_text (Code) field in DocType 'Translation'
+#: frappe/core/doctype/translation/translation.json
msgid "Translated Text"
-msgstr "Testo tradotto"
+msgstr ""
#. Name of a DocType
-#: core/doctype/translation/translation.json
+#: frappe/core/doctype/translation/translation.json
msgid "Translation"
-msgstr "Traduzione"
+msgstr ""
-#: public/js/frappe/views/translation_manager.js:46
+#: frappe/public/js/frappe/views/translation_manager.js:46
msgid "Translations"
-msgstr "Traduzioni"
+msgstr ""
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Trash"
-msgstr "Spazzatura"
+msgstr ""
#. Option for the 'View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
-msgid "Tree"
-msgstr "Albero"
-
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Tree"
-msgstr "Albero"
+msgstr ""
+
+#: frappe/public/js/frappe/list/base_list.js:210
+msgid "Tree View"
+msgstr ""
#. Description of the 'Is Tree' (Check) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "Tree structures are implemented using Nested Set"
-msgstr "Le strutture ad albero sono implementate usando Nested Set"
+msgstr ""
-#: public/js/frappe/views/treeview.js:20
+#: frappe/public/js/frappe/views/treeview.js:19
msgid "Tree view is not available for {0}"
-msgstr "La visualizzazione ad albero non è disponibile per {0}"
+msgstr ""
-#. Label of a Data field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the method (Data) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Trigger Method"
-msgstr "Metodo di attivazione"
+msgstr ""
-#: public/js/frappe/ui/keyboard.js:191
+#: frappe/public/js/frappe/ui/keyboard.js:196
msgid "Trigger Primary Action"
-msgstr "Attiva azione primaria"
+msgstr ""
-#: tests/test_translate.py:55
+#: frappe/tests/test_translate.py:55
msgid "Trigger caching"
msgstr ""
#. Description of the 'Trigger Method' (Data) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Trigger on valid methods like \"before_insert\", \"after_update\", etc (will depend on the DocType selected)"
-msgstr "Trigger su metodi validi come "before_insert", "after_update", ecc (dipende dal DocType selezionato)"
+msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:323
+#: frappe/custom/doctype/customize_form/customize_form.js:144
+msgid "Trim Table"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:318
msgid "Try Again"
msgstr ""
-#. Label of a Data field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the try_naming_series (Data) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Try a Naming Series"
msgstr ""
-#: utils/password_strength.py:108
-msgid "Try to avoid repeated words and characters"
-msgstr "Cercate di evitare le parole e caratteri ripetuti"
+#: frappe/printing/page/print/print.js:189
+#: frappe/printing/page/print/print.js:195
+msgid "Try the new Print Designer"
+msgstr ""
-#: utils/password_strength.py:100
+#: 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 "Prova ad utilizzare un modello di tastiera più a lungo con più giri"
+msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Tuesday"
-msgstr "Martedì"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Tuesday"
-msgstr "Martedì"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Tuesday"
-msgstr "Martedì"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Tuesday"
-msgstr "Martedì"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the tuesday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Tuesday"
-msgstr "Martedì"
+msgstr ""
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the two_factor_auth (Check) field in DocType 'Role'
+#. Label of the two_factor_authentication (Section Break) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/role/role.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Two Factor Authentication"
-msgstr "Autenticazione due fattori"
+msgstr ""
-#. Label of a Section Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Two Factor Authentication"
-msgstr "Autenticazione due fattori"
-
-#. Label of a Select field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the two_factor_method (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Two Factor Authentication method"
-msgstr "Metodo di autenticazione due fattori"
+msgstr ""
-#. Label of a Select field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the communication_medium (Select) field in DocType 'Communication'
+#. Label of the fieldtype (Select) field in DocType 'DocField'
+#. Label of the fieldtype (Select) field in DocType 'Customize Form Field'
+#. Label of the type (Data) field in DocType 'Console Log'
+#. Label of the type (Select) field in DocType 'Dashboard Chart'
+#. Label of the type (Select) field in DocType 'Desktop Icon'
+#. Label of the type (Select) field in DocType 'Notification Log'
+#. Label of the type (Select) field in DocType 'Number Card'
+#. Label of the type (Select) field in DocType 'System Console'
+#. Label of the type (Select) field in DocType 'Workspace'
+#. Label of the type (Select) field in DocType 'Workspace Link'
+#. Label of the type (Select) field in DocType 'Workspace Shortcut'
+#. Label of the type (Select) field in DocType 'Web Template'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/console_log/console_log.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/notification_log/notification_log.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/system_console/system_console.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/views/file/file_view.js:337
+#: frappe/public/js/frappe/views/workspace/workspace.js:399
+#: frappe/public/js/frappe/widgets/widget_dialog.js:404
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/www/attribution.html:35
msgid "Type"
-msgstr "Tipo"
+msgstr ""
-#. Label of a Data field in DocType 'Console Log'
-#: desk/doctype/console_log/console_log.json
-msgctxt "Console Log"
-msgid "Type"
-msgstr "Tipo"
-
-#. Label of a Select field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Type"
-msgstr "Tipo"
-
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Type"
-msgstr "Tipo"
-
-#. Label of a Select field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
-msgid "Type"
-msgstr "Tipo"
-
-#. Label of a Select field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Type"
-msgstr "Tipo"
-
-#. Label of a Select field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "Type"
-msgstr "Tipo"
-
-#. Label of a Select field in DocType 'Notification Log'
-#: desk/doctype/notification_log/notification_log.json
-msgctxt "Notification Log"
-msgid "Type"
-msgstr "Tipo"
-
-#. Label of a Select field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Type"
-msgstr "Tipo"
-
-#. Label of a Select field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
-msgid "Type"
-msgstr "Tipo"
-
-#. Label of a Select field in DocType 'Web Template'
-#: website/doctype/web_template/web_template.json
-msgctxt "Web Template"
-msgid "Type"
-msgstr "Tipo"
-
-#. Label of a Select field in DocType 'Workspace Link'
-#: desk/doctype/workspace_link/workspace_link.json
-msgctxt "Workspace Link"
-msgid "Type"
-msgstr "Tipo"
-
-#. Label of a Select field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
-msgid "Type"
-msgstr "Tipo"
-
-#: public/js/frappe/form/controls/comment.js:78
+#: frappe/public/js/frappe/form/controls/comment.js:90
msgid "Type a reply / comment"
msgstr ""
-#: templates/includes/search_template.html:51
+#: frappe/templates/includes/search_template.html:51
msgid "Type something in the search box to search"
-msgstr "Digitare qualcosa nella casella di ricerca per la ricerca"
+msgstr ""
-#: templates/discussions/comment_box.html:8
+#: frappe/templates/discussions/comment_box.html:8
+#: frappe/templates/discussions/reply_section.html:53
+#: frappe/templates/discussions/topic_modal.html:11
msgid "Type title"
msgstr ""
-#: templates/discussions/discussions.js:341
+#: frappe/templates/discussions/discussions.js:341
msgid "Type your reply here..."
msgstr ""
-#: core/doctype/data_export/exporter.py:143
+#: frappe/core/doctype/data_export/exporter.py:143
msgid "Type:"
-msgstr "Tipo:"
+msgstr ""
-#. Label of a Check field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the ui_tour (Check) field in DocType 'Form Tour'
+#. Label of the ui_tour (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "UI Tour"
msgstr ""
-#. Label of a Check field in DocType 'Form Tour Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
-msgid "UI Tour"
+#. Label of the uid (Int) field in DocType 'Communication'
+#. Label of the uid (Data) field in DocType 'Email Flag Queue'
+#. Label of the uid (Data) field in DocType 'Unhandled Email'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
+msgid "UID"
msgstr ""
-#. Label of a Int field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "UID"
-msgstr "UID"
-
-#. Label of a Data field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
-msgid "UID"
-msgstr "UID"
-
-#. Label of a Data field in DocType 'Unhandled Email'
-#: email/doctype/unhandled_email/unhandled_email.json
-msgctxt "Unhandled Email"
-msgid "UID"
-msgstr "UID"
-
-#. Label of a Int field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the uidnext (Int) field in DocType 'Email Account'
+#. Label of the uidnext (Data) field in DocType 'IMAP Folder'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "UIDNEXT"
-msgstr "UIDNEXT"
+msgstr ""
-#. Label of a Data field in DocType 'IMAP Folder'
-#: email/doctype/imap_folder/imap_folder.json
-msgctxt "IMAP Folder"
-msgid "UIDNEXT"
-msgstr "UIDNEXT"
-
-#. Label of a Data field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the uidvalidity (Data) field in DocType 'Email Account'
+#. Label of the uidvalidity (Data) field in DocType 'IMAP Folder'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "UIDVALIDITY"
-msgstr "UIDVALIDITY"
-
-#. Label of a Data field in DocType 'IMAP Folder'
-#: email/doctype/imap_folder/imap_folder.json
-msgctxt "IMAP Folder"
-msgid "UIDVALIDITY"
-msgstr "UIDVALIDITY"
+msgstr ""
#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "UNSEEN"
-msgstr "NON VISIONATO"
+msgstr ""
#. Description of the 'Redirect URIs' (Text) field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
-msgid ""
-"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n"
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n"
"
e.g. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook"
msgstr ""
-#. Label of a Small Text field in DocType 'Integration Request'
-#: integrations/doctype/integration_request/integration_request.json
-msgctxt "Integration Request"
-msgid "URL"
-msgstr "URL"
-
-#. Label of a Data field in DocType 'Top Bar Item'
-#: website/doctype/top_bar_item/top_bar_item.json
-msgctxt "Top Bar Item"
-msgid "URL"
-msgstr "URL"
-
-#. Label of a Data field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "URL"
-msgstr "URL"
-
-#. Label of a Data field in DocType 'Website Slideshow Item'
-#: website/doctype/website_slideshow_item/website_slideshow_item.json
-msgctxt "Website Slideshow Item"
-msgid "URL"
-msgstr "URL"
-
+#. Option for the 'Type' (Select) field in DocType 'Workspace'
#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut'
-#. Label of a Data field in DocType 'Workspace Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#. Label of the url (Data) field in DocType 'Workspace Shortcut'
+#. Label of the url (Small Text) field in DocType 'Integration Request'
+#. Label of the url (Text) field in DocType 'Webhook Request Log'
+#. Label of the url (Data) field in DocType 'Top Bar Item'
+#. Label of the url (Data) field in DocType 'Website Slideshow Item'
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:471
+#: frappe/website/doctype/top_bar_item/top_bar_item.json
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "URL"
-msgstr "URL"
+msgstr ""
#. Description of the 'Documentation Link' (Data) field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#: frappe/core/doctype/doctype/doctype.json
msgid "URL for documentation or help"
-msgstr "URL per documentazione o aiuto"
+msgstr ""
-#: core/doctype/file/file.py:216
+#: frappe/core/doctype/file/file.py:219
msgid "URL must start with http:// or https://"
msgstr ""
-#: website/doctype/web_page/web_page.js:84
+#: frappe/website/doctype/web_page/web_page.js:84
msgid "URL of the page"
-msgstr "URL della pagina"
+msgstr ""
#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item'
-#: website/doctype/website_slideshow_item/website_slideshow_item.json
-msgctxt "Website Slideshow Item"
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "URL to go to on clicking the slideshow image"
-msgstr "URL a cui accedere facendo clic sull'immagine della presentazione"
+msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.py:68
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+#: frappe/website/workspace/website/website.json
+msgid "UTM Campaign"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/workspace/website/website.json
+msgid "UTM Medium"
+msgstr ""
+
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/utm_source/utm_source.json
+#: frappe/website/workspace/website/website.json
+msgid "UTM Source"
+msgstr ""
+
+#. 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 "Impossibile trovare DocType {0}"
+msgstr ""
-#: public/js/frappe/ui/capture.js:330
+#: frappe/public/js/frappe/ui/capture.js:338
msgid "Unable to load camera."
-msgstr "Impossibile caricare la fotocamera."
+msgstr ""
-#: public/js/frappe/model/model.js:258
+#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
-msgstr "Impossibile caricare: {0}"
+msgstr ""
-#: utils/csvutils.py:35
+#: frappe/utils/csvutils.py:37
msgid "Unable to open attached file. Did you export it as CSV?"
-msgstr "Impossibile aprire il file allegato. E' stato esportato in formato CSV?"
+msgstr ""
-#: core/doctype/file/utils.py:99 core/doctype/file/utils.py:128
+#: frappe/core/doctype/file/utils.py:98 frappe/core/doctype/file/utils.py:130
msgid "Unable to read file format for {0}"
-msgstr "Impossibile leggere il formato di file per {0}"
+msgstr ""
-#: core/doctype/communication/email.py:173
+#: frappe/core/doctype/communication/email.py:179
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:439
+#: frappe/public/js/frappe/views/calendar/calendar.js:450
msgid "Unable to update event"
-msgstr "Impossibile aggiornare evento"
+msgstr ""
-#: core/doctype/file/file.py:458
+#: frappe/core/doctype/file/file.py:464
msgid "Unable to write file format for {0}"
-msgstr "Impossibile scrivere il formato di file per {0}"
+msgstr ""
-#. Label of a Code field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#. Label of the unassign_condition (Code) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Unassign Condition"
-msgstr "Condizione di non assegnazione"
+msgstr ""
-#: www/error.py:15
-msgid "Uncaught Server Exception"
-msgstr "Eccezione server non rilevata"
+#: frappe/app.py:376
+msgid "Uncaught Exception"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:93
+#: frappe/public/js/frappe/form/toolbar.js:103
msgid "Unchanged"
-msgstr "immutato"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:450
+#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Undo"
msgstr ""
-#: public/js/frappe/form/toolbar.js:458
+#: frappe/public/js/frappe/form/toolbar.js:523
msgid "Undo last action"
msgstr ""
-#: public/js/frappe/form/sidebar/form_sidebar.js:232
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
+#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
-msgstr "Smetti"
-
-#. Name of a DocType
-#: email/doctype/unhandled_email/unhandled_email.json
-msgid "Unhandled Email"
-msgstr "Email non gestita"
-
-#: public/js/frappe/views/workspace/workspace.js:556
-msgid "Unhide Workspace"
msgstr ""
-#. Label of a Check field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
-msgid "Unique"
-msgstr "Unico"
+#. Name of a DocType
+#: frappe/email/doctype/unhandled_email/unhandled_email.json
+msgid "Unhandled Email"
+msgstr ""
-#. Label of a Check field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Unique"
-msgstr "Unico"
+#. Label of the unhandled_emails (Int) field in DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Unhandled Emails"
+msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. 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 "Unico"
+msgstr ""
-#: public/js/frappe/model/model.js:199
+#: 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 "Colonna sconosciuta: {0}"
+msgstr ""
-#: utils/data.py:1215
+#: frappe/utils/data.py:1246
msgid "Unknown Rounding Method: {}"
msgstr ""
-#: auth.py:299
+#: frappe/auth.py:316
msgid "Unknown User"
-msgstr "Utente sconosciuto"
+msgstr ""
-#: utils/csvutils.py:52
-msgid "Unknown file encoding. Tried utf-8, windows-1250, windows-1252."
-msgstr "Codifica file sconosciuta. Ho provato con utf-8 , windows-1250, windows- 1252."
+#: frappe/utils/csvutils.py:54
+msgid "Unknown file encoding. Tried to use: {0}"
+msgstr ""
-#: core/doctype/submission_queue/submission_queue.js:7
+#: frappe/core/doctype/submission_queue/submission_queue.js:7
msgid "Unlock Reference Document"
msgstr ""
-#: website/doctype/blog_post/blog_post.js:36
-#: website/doctype/web_form/web_form.js:77
+#: frappe/public/js/frappe/form/footer/form_timeline.js:632
+#: frappe/website/doctype/blog_post/blog_post.js:36
+#: frappe/website/doctype/web_form/web_form.js:86
msgid "Unpublish"
msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
-#: email/doctype/email_flag_queue/email_flag_queue.json
-msgctxt "Email Flag Queue"
+#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
msgid "Unread"
-msgstr "Non letto"
+msgstr ""
-#. Label of a Check field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#. Label of the unread_notification_sent (Check) field in DocType
+#. 'Communication'
+#: frappe/core/doctype/communication/communication.json
msgid "Unread Notification Sent"
-msgstr "Notifica inviata non letta"
+msgstr ""
-#: utils/safe_exec.py:438
+#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
msgstr ""
+#: frappe/public/js/frappe/data_import/data_exporter.js:159
+#: frappe/public/js/frappe/form/controls/multicheck.js:166
+msgid "Unselect All"
+msgstr ""
+
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#: frappe/core/doctype/comment/comment.json
msgid "Unshared"
-msgstr "Non condiviso"
+msgstr ""
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Unshared"
-msgstr "Non condiviso"
-
-#: email/queue.py:68
+#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
msgid "Unsubscribe"
-msgstr "Disiscrivi"
+msgstr ""
-#. Label of a Data field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
+#. Label of the unsubscribe_method (Data) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
msgid "Unsubscribe Method"
-msgstr "Modalità di disiscrizione"
+msgstr ""
-#. Label of a Data field in DocType 'Email Queue'
-#: email/doctype/email_queue/email_queue.json
-msgctxt "Email Queue"
-msgid "Unsubscribe Param"
-msgstr "Parametri di disiscrizione"
+#. Label of the unsubscribe_params (Code) field in DocType 'Email Queue'
+#: frappe/email/doctype/email_queue/email_queue.json
+msgid "Unsubscribe Params"
+msgstr ""
-#: email/queue.py:126
+#. Label of the unsubscribed (Check) field in DocType 'Contact'
+#. Label of the unsubscribed (Check) field in DocType 'User'
+#. Label of the unsubscribed (Check) field in DocType 'Email Group Member'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
+#: frappe/email/queue.py:122
msgid "Unsubscribed"
-msgstr "Disiscritto"
+msgstr ""
-#. Label of a Check field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
-msgid "Unsubscribed"
-msgstr "Disiscritto"
-
-#. Label of a Check field in DocType 'Email Group Member'
-#: email/doctype/email_group_member/email_group_member.json
-msgctxt "Email Group Member"
-msgid "Unsubscribed"
-msgstr "Disiscritto"
-
-#. Label of a Check field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Unsubscribed"
-msgstr "Disiscritto"
-
-#: public/js/frappe/data_import/import_preview.js:72
+#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
-msgstr "Colonna senza titolo"
+msgstr ""
-#: core/doctype/file/file.js:28
+#: frappe/core/doctype/file/file.js:38
msgid "Unzip"
-msgstr "Scompattare"
+msgstr ""
-#: public/js/frappe/views/file/file_view.js:132
+#: frappe/public/js/frappe/views/file/file_view.js:132
msgid "Unzipped {0} files"
-msgstr "File {0} decompressi"
+msgstr ""
-#: public/js/frappe/views/file/file_view.js:125
+#: frappe/public/js/frappe/views/file/file_view.js:125
msgid "Unzipping files..."
-msgstr "Decompressione dei file ..."
+msgstr ""
-#: desk/doctype/event/event.py:258
+#: frappe/desk/doctype/event/event.py:269
msgid "Upcoming Events for Today"
-msgstr "Prossimi eventi di oggi"
+msgstr ""
-#: core/doctype/data_import/data_import_list.js:40
-#: core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:23
-#: custom/doctype/customize_form/customize_form.js:370
-#: desk/doctype/bulk_update/bulk_update.js:15
-#: printing/page/print_format_builder/print_format_builder.js:447
-#: printing/page/print_format_builder/print_format_builder.js:501
-#: printing/page/print_format_builder/print_format_builder.js:670
-#: printing/page/print_format_builder/print_format_builder.js:757
-#: public/js/frappe/form/grid_row.js:402
-#: public/js/frappe/views/workspace/workspace.js:647
+#. Label of the update (Button) field in DocType 'Document Naming Settings'
+#: frappe/core/doctype/data_import/data_import_list.js:36
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:23
+#: frappe/custom/doctype/customize_form/customize_form.js:438
+#: frappe/desk/doctype/bulk_update/bulk_update.js:15
+#: frappe/printing/page/print_format_builder/print_format_builder.js:447
+#: frappe/printing/page/print_format_builder/print_format_builder.js:507
+#: frappe/printing/page/print_format_builder/print_format_builder.js:678
+#: frappe/printing/page/print_format_builder/print_format_builder.js:765
+#: frappe/public/js/frappe/form/grid_row.js:411
msgid "Update"
-msgstr "Aggiornare"
+msgstr ""
-#. Label of a Button field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
-msgid "Update"
-msgstr "Aggiornare"
-
-#. Label of a Button field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the update_amendment_naming (Button) field in DocType 'Document
+#. Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Amendment Naming"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:596
-msgid "Update Details"
-msgstr "Dettagli aggiornamento"
-
#. Option for the 'Import Type' (Select) field in DocType 'Data Import'
-#: core/doctype/data_import/data_import.json
-msgctxt "Data Import"
+#: frappe/core/doctype/data_import/data_import.json
msgid "Update Existing Records"
-msgstr "Aggiorna i record esistenti"
+msgstr ""
-#. Label of a Select field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#. Label of the update_field (Select) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Update Field"
-msgstr "Aggiorna Campo"
+msgstr ""
-#: core/doctype/installed_applications/installed_applications.js:6
-#: core/doctype/installed_applications/installed_applications.js:13
+#: frappe/core/doctype/installed_applications/installed_applications.js:6
+#: frappe/core/doctype/installed_applications/installed_applications.js:13
msgid "Update Hooks Resolution Order"
msgstr ""
-#: core/doctype/installed_applications/installed_applications.js:45
+#: frappe/core/doctype/installed_applications/installed_applications.js:45
msgid "Update Order"
msgstr ""
-#. Label of a Section Break field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#: frappe/desk/page/setup_wizard/setup_wizard.js:494
+msgid "Update Password"
+msgstr ""
+
+#. Label of the update_series (Section Break) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Series Counter"
msgstr ""
-#. Label of a Button field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the update_series_start (Button) field in DocType 'Document Naming
+#. Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Series Number"
-msgstr "Aggiorna Numero della Serie"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Update Settings"
-msgstr "Aggiorna impostazioni"
+msgstr ""
-#: public/js/frappe/views/translation_manager.js:13
+#: frappe/public/js/frappe/views/translation_manager.js:13
msgid "Update Translations"
-msgstr "Aggiorna traduzioni"
+msgstr ""
-#. Label of a Small Text field in DocType 'Bulk Update'
-#: desk/doctype/bulk_update/bulk_update.json
-msgctxt "Bulk Update"
+#. Label of the update_value (Small Text) field in DocType 'Bulk Update'
+#. Label of the update_value (Data) field in DocType 'Workflow Document State'
+#: frappe/desk/doctype/bulk_update/bulk_update.json
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Update Value"
-msgstr "Aggiornamento del valore"
+msgstr ""
-#. Label of a Data field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
-msgid "Update Value"
-msgstr "Aggiornamento del valore"
+#: frappe/utils/change_log.py:381
+msgid "Update from Frappe Cloud"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:310
+#: frappe/public/js/frappe/list/bulk_operations.js:375
msgid "Update {0} records"
msgstr ""
-#: desk/doctype/desktop_icon/desktop_icon.py:452
-#: public/js/frappe/web_form/web_form.js:423
-msgid "Updated"
-msgstr "Aggiornato"
-
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
+#. Option for the 'Status' (Select) field in DocType 'Permission Log'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
+#: frappe/desk/doctype/workspace_settings/workspace_settings.py:41
+#: frappe/public/js/frappe/web_form/web_form.js:427
msgid "Updated"
-msgstr "Aggiornato"
-
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Updated"
-msgstr "Aggiornato"
-
-#: desk/doctype/bulk_update/bulk_update.js:32
-msgid "Updated Successfully"
-msgstr "Aggiornato con successo"
-
-#: public/js/frappe/desk.js:420
-msgid "Updated To A New Version 🎉"
-msgstr "Aggiornato a una nuova versione 🎉"
-
-#: public/js/frappe/list/bulk_operations.js:307
-msgid "Updated successfully"
-msgstr "Aggiornato con successo"
-
-#. Label of a Tab Break field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Updates"
msgstr ""
-#: utils/response.py:320
-msgid "Updating"
-msgstr "Aggiornamento"
+#: frappe/desk/doctype/bulk_update/bulk_update.js:32
+msgid "Updated Successfully"
+msgstr ""
-#: public/js/frappe/form/save.js:11
+#: frappe/public/js/frappe/desk.js:452
+msgid "Updated To A New Version 🎉"
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:372
+msgid "Updated successfully"
+msgstr ""
+
+#: frappe/utils/response.py:330
+msgid "Updating"
+msgstr ""
+
+#: frappe/public/js/frappe/form/save.js:11
msgctxt "Freeze message while updating a document"
msgid "Updating"
-msgstr "Aggiornamento"
+msgstr ""
-#: email/doctype/email_queue/email_queue.py:406
+#: frappe/email/doctype/email_queue/email_queue_list.js:49
msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run."
msgstr ""
-#: core/doctype/document_naming_rule/document_naming_rule.js:17
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:17
msgid "Updating counter may lead to document name conflicts if not done properly"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.py:23
+#: frappe/desk/page/setup_wizard/setup_wizard.py:23
msgid "Updating global settings"
msgstr ""
-#: core/doctype/document_naming_settings/document_naming_settings.js:59
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59
msgid "Updating naming series options"
msgstr ""
-#: public/js/frappe/form/toolbar.js:126
+#: frappe/public/js/frappe/form/toolbar.js:136
msgid "Updating related fields..."
msgstr ""
-#: desk/doctype/bulk_update/bulk_update.py:98
+#: frappe/desk/doctype/bulk_update/bulk_update.py:95
msgid "Updating {0}"
-msgstr "Aggiornamento {0}"
+msgstr ""
-#: core/doctype/data_import/data_import.js:36
+#: frappe/core/doctype/data_import/data_import.js:36
msgid "Updating {0} of {1}, {2}"
-msgstr "Aggiornamento {0} di {1}, {2}"
+msgstr ""
-#: public/js/frappe/file_uploader/file_uploader.bundle.js:121
-#: public/js/frappe/file_uploader/file_uploader.bundle.js:122
+#: frappe/public/js/billing.bundle.js:131
+msgid "Upgrade plan"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_sidebar.js:331
+msgid "Upgrade your support experience with Frappe Helpdesk"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131
+#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132
+#: frappe/public/js/frappe/form/grid.js:66
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
-msgstr "Caricare"
+msgstr ""
-#. Label of a Check field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:93
+msgid "Upload Image"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198
+msgid "Upload file"
+msgstr ""
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201
+msgid "Upload {0} files"
+msgstr ""
+
+#. Label of the uploaded_to_dropbox (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Uploaded To Dropbox"
-msgstr "Caricato su Dropbox"
+msgstr ""
-#. Label of a Check field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the uploaded_to_google_drive (Check) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "Uploaded To Google Drive"
-msgstr "Caricato su Google Drive"
+msgstr ""
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#, python-format
-msgctxt "Onboarding Step"
msgid "Use % for any non empty value."
msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the ascii_encode_password (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Use ASCII encoding for password"
-msgstr "Usa la codifica ASCII per la password"
+msgstr ""
-#. Label of a Check field in DocType 'Email Template'
-#: email/doctype/email_template/email_template.json
-msgctxt "Email Template"
+#. Label of the use_first_day_of_period (Check) field in DocType 'Auto Email
+#. Report'
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+msgid "Use First Day of Period"
+msgstr ""
+
+#. Label of the use_html (Check) field in DocType 'Email Template'
+#: frappe/email/doctype/email_template/email_template.json
msgid "Use HTML"
msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the use_imap (Check) field in DocType 'Email Account'
+#. Label of the use_imap (Check) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use IMAP"
-msgstr "Utilizzare IMAP"
+msgstr ""
-#. Label of a Check field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Use IMAP"
-msgstr "Utilizzare IMAP"
+#. Label of the use_number_format_from_currency (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Use Number Format from Currency"
+msgstr ""
-#. Label of a Check field in DocType 'SMS Settings'
-#: core/doctype/sms_settings/sms_settings.json
-msgctxt "SMS Settings"
+#. Label of the use_post (Check) field in DocType 'SMS Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Use POST"
-msgstr "Utilizza POST"
+msgstr ""
-#. Label of a Check field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the use_report_chart (Check) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Use Report Chart"
-msgstr "Usa grafico report"
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the use_ssl (Check) field in DocType 'Email Account'
+#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Account'
+#. Label of the use_ssl (Check) field in DocType 'Email Domain'
+#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use SSL"
-msgstr "Usa SSL"
+msgstr ""
-#. Label of a Check field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Use SSL"
-msgstr "Usa SSL"
-
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the use_starttls (Check) field in DocType 'Email Account'
+#. Label of the use_starttls (Check) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use STARTTLS"
msgstr ""
-#. Label of a Check field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Use STARTTLS"
+#. Label of the use_tls (Check) field in DocType 'Email Account'
+#. Label of the use_tls (Check) field in DocType 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Use TLS"
msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "Use TLS"
-msgstr "Usa TLS"
-
-#. Label of a Check field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
-msgid "Use TLS"
-msgstr "Usa TLS"
-
-#: utils/password_strength.py:44
+#: frappe/utils/password_strength.py:44
msgid "Use a few words, avoid common phrases."
-msgstr "Utilizzare un paio di parole, evitare frasi di uso comune."
+msgstr ""
-#. Label of a Check field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the login_id_is_different (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "Use different Email ID"
msgstr ""
-#: model/db_query.py:434
+#. Description of the 'Detect CSV type' (Check) field in DocType 'Data Import'
+#: frappe/core/doctype/data_import/data_import.json
+msgid "Use if the default settings don't seem to detect your data correctly"
+msgstr ""
+
+#: frappe/model/db_query.py:435
msgid "Use of function {0} in field is restricted"
msgstr ""
-#: model/db_query.py:413
+#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
-msgstr "L'uso della sotto-query o della funzione è limitato"
+msgstr ""
-#: printing/page/print/print.js:272
+#: frappe/printing/page/print/print.js:279
msgid "Use the new Print Format Builder"
msgstr ""
#. Description of the 'Title Field' (Data) field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Use this fieldname to generate title"
-msgstr "Utilizzare questo nome campo per generare titolo"
+msgstr ""
-#. Label of a Check field in DocType 'User Email'
-#: core/doctype/user_email/user_email.json
-msgctxt "User Email"
+#. Description of the 'Always BCC Address' (Data) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Use this, for example, if all sent emails should also be send to an archive."
+msgstr ""
+
+#. Label of the used_oauth (Check) field in DocType 'User Email'
+#: frappe/core/doctype/user_email/user_email.json
msgid "Used OAuth"
msgstr ""
+#. Label of the user (Link) field in DocType 'Assignment Rule User'
+#. Label of the user (Link) field in DocType 'Reminder'
+#. Label of the user (Link) field in DocType 'Activity Log'
+#. Label of the user (Link) field in DocType 'API Request Log'
+#. Label of the user (Link) field in DocType 'Communication'
+#. Label of the user (Link) field in DocType 'DocShare'
+#. Label of the user (Link) field in DocType 'Log Setting User'
+#. Label of the user (Link) field in DocType 'Permission Inspector'
#. Name of a DocType
-#: core/doctype/user/user.json
-#: core/report/permitted_documents_for_user/permitted_documents_for_user.js:8
-#: desk/page/user_profile/user_profile_controller.js:65
-#: templates/emails/energy_points_summary.html:38
-msgid "User"
-msgstr "Utente"
-
-#. Label of a Link field in DocType 'Activity Log'
-#: core/doctype/activity_log/activity_log.json
-msgctxt "Activity Log"
-msgid "User"
-msgstr "Utente"
-
-#. Label of a Link field in DocType 'Assignment Rule User'
-#: automation/doctype/assignment_rule_user/assignment_rule_user.json
-msgctxt "Assignment Rule User"
-msgid "User"
-msgstr "Utente"
-
-#. Label of a Link field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
-msgid "User"
-msgstr "Utente"
-
-#. Label of a Link field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "User"
-msgstr "Utente"
-
-#. Label of a Link field in DocType 'Dashboard Settings'
-#: desk/doctype/dashboard_settings/dashboard_settings.json
-msgctxt "Dashboard Settings"
-msgid "User"
-msgstr "Utente"
-
-#. Label of a Link field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "User"
-msgstr "Utente"
-
-#. Label of a Link field in DocType 'Document Follow'
-#: email/doctype/document_follow/document_follow.json
-msgctxt "Document Follow"
-msgid "User"
-msgstr "Utente"
-
-#. Label of a Link field in DocType 'Energy Point Log'
-#: social/doctype/energy_point_log/energy_point_log.json
-msgctxt "Energy Point Log"
-msgid "User"
-msgstr "Utente"
-
-#. Label of a Link field in DocType 'Google Calendar'
-#: integrations/doctype/google_calendar/google_calendar.json
-msgctxt "Google Calendar"
-msgid "User"
-msgstr "Utente"
-
-#. Label of a Link field in DocType 'Log Setting User'
-#: core/doctype/log_setting_user/log_setting_user.json
-msgctxt "Log Setting User"
-msgid "User"
-msgstr "Utente"
-
-#. Linked DocType in Module Profile's connections
-#: core/doctype/module_profile/module_profile.json
-msgctxt "Module Profile"
-msgid "User"
-msgstr "Utente"
-
-#. Label of a Link field in DocType 'Note Seen By'
-#: desk/doctype/note_seen_by/note_seen_by.json
-msgctxt "Note Seen By"
-msgid "User"
-msgstr "Utente"
-
-#. Label of a Link field in DocType 'Notification Settings'
-#: desk/doctype/notification_settings/notification_settings.json
-msgctxt "Notification Settings"
-msgid "User"
-msgstr "Utente"
-
-#. Label of a Link field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
-msgid "User"
-msgstr "Utente"
-
-#. Label of a Link field in DocType 'OAuth Bearer Token'
-#: integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
-msgctxt "OAuth Bearer Token"
-msgid "User"
-msgstr "Utente"
-
-#. Label of a Link field in DocType 'OAuth Client'
-#: integrations/doctype/oauth_client/oauth_client.json
-msgctxt "OAuth Client"
-msgid "User"
-msgstr "Utente"
-
-#. Label of a Link field in DocType 'Permission Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
-msgid "User"
-msgstr "utente"
-
-#. Label of a Link field in DocType 'Personal Data Download Request'
-#: website/doctype/personal_data_download_request/personal_data_download_request.json
-msgctxt "Personal Data Download Request"
-msgid "User"
-msgstr "Utente"
-
-#. Label of a Link field in DocType 'Reminder'
-#: automation/doctype/reminder/reminder.json
-msgctxt "Reminder"
-msgid "User"
-msgstr "Utente"
-
-#. Linked DocType in Role Profile's connections
-#: core/doctype/role_profile/role_profile.json
-msgctxt "Role Profile"
-msgid "User"
-msgstr "Utente"
-
-#. Label of a Link field in DocType 'Route History'
-#: desk/doctype/route_history/route_history.json
-msgctxt "Route History"
-msgid "User"
-msgstr "Utente"
-
-#. Label of a Link field in DocType 'Token Cache'
-#: integrations/doctype/token_cache/token_cache.json
-msgctxt "Token Cache"
-msgid "User"
-msgstr "Utente"
-
+#. Label of the user (Link) field in DocType 'User Group Member'
+#. Label of the user (Link) field in DocType 'User Permission'
#. Label of a Link in the Users Workspace
#. Label of a shortcut in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "User"
+#. Label of the user (Link) field in DocType 'Dashboard Settings'
+#. Label of the user (Link) field in DocType 'Note Seen By'
+#. Label of the user (Link) field in DocType 'Notification Settings'
+#. Label of the user (Link) field in DocType 'Route History'
+#. Label of the user (Link) field in DocType 'Document Follow'
+#. Label of the user (Link) field in DocType 'Google Calendar'
+#. Label of the user (Link) field in DocType 'OAuth Authorization Code'
+#. Label of the user (Link) field in DocType 'OAuth Bearer Token'
+#. Label of the user (Link) field in DocType 'OAuth Client'
+#. Label of the user (Link) field in DocType 'Token Cache'
+#. Label of the user (Link) field in DocType 'Webhook Request Log'
+#. Label of the user (Link) field in DocType 'Blogger'
+#. Label of the user (Link) field in DocType 'Personal Data Download Request'
+#. Label of the user (Link) field in DocType 'Workflow Action'
+#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/api_request_log/api_request_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/log_setting_user/log_setting_user.json
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_group_member/user_group_member.json
+#: frappe/core/doctype/user_permission/user_permission.json
+#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8
+#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8
+#: frappe/core/workspace/users/users.json
+#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
+#: frappe/desk/doctype/note_seen_by/note_seen_by.json
+#: frappe/desk/doctype/notification_settings/notification_settings.json
+#: frappe/desk/doctype/route_history/route_history.json
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/integrations/doctype/google_calendar/google_calendar.json
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/public/js/frappe/form/templates/set_sharing.html:3
+#: frappe/website/doctype/blogger/blogger.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "User"
-msgstr "Utente"
+msgstr ""
-#. Label of a Link field in DocType 'User Group Member'
-#: core/doctype/user_group_member/user_group_member.json
-msgctxt "User Group Member"
-msgid "User"
-msgstr "Utente"
-
-#. Label of a Link field in DocType 'User Permission'
-#: core/doctype/user_permission/user_permission.json
-msgctxt "User Permission"
-msgid "User"
-msgstr "Utente"
-
-#. Label of a Link field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "User"
-msgstr "Utente"
-
-#. Label of a Link field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
-msgid "User"
-msgstr "Utente"
-
-#. Label of a Link field in DocType 'Access Log'
-#: core/doctype/access_log/access_log.json
-msgctxt "Access Log"
+#. Label of the user (Link) field in DocType 'Access Log'
+#: frappe/core/doctype/access_log/access_log.json
msgid "User "
-msgstr "Utente"
+msgstr ""
-#: core/doctype/has_role/has_role.py:24
+#: frappe/core/doctype/has_role/has_role.py:25
msgid "User '{0}' already has the role '{1}'"
-msgstr "Utente '{0}' già ha il ruolo '{1}'"
+msgstr ""
#. Name of a DocType
-#: core/doctype/report/user_activity_report.json
+#: frappe/core/doctype/report/user_activity_report.json
msgid "User Activity Report"
msgstr ""
#. Name of a DocType
-#: core/doctype/report/user_activity_report_without_sort.json
+#: frappe/core/doctype/report/user_activity_report_without_sort.json
msgid "User Activity Report Without Sort"
msgstr ""
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
+#. Label of the user_agent (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "User Agent"
-msgstr "Agente utente"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the in_create (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "User Cannot Create"
-msgstr "L'utente non può creare"
+msgstr ""
-#. Label of a Check field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the read_only (Check) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "User Cannot Search"
-msgstr "L'utente non può cercare"
+msgstr ""
-#. Label of a Table field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#: frappe/public/js/frappe/desk.js:554
+msgid "User Changed"
+msgstr ""
+
+#. Label of the defaults (Table) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "User Defaults"
-msgstr "Defaults Profilo"
+msgstr ""
-#. Label of a Tab Break field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the user_details_tab (Tab Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "User Details"
msgstr ""
+#. Name of a report
+#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.json
+msgid "User Doctype Permissions"
+msgstr ""
+
#. Name of a DocType
-#: core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "User Document Type"
msgstr ""
-#: core/doctype/user_type/user_type.py:97
+#: frappe/core/doctype/user_type/user_type.py:98
msgid "User Document Types Limit Exceeded"
msgstr ""
#. Name of a DocType
-#: core/doctype/user_email/user_email.json
+#: frappe/core/doctype/user_email/user_email.json
msgid "User Email"
-msgstr "user-mail"
+msgstr ""
-#. Label of a Table field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the user_emails (Table) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "User Emails"
-msgstr "Messaggi di posta elettronica degli utenti"
-
-#. Label of a Select field in DocType 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "User Field"
-msgstr "Campo utente"
+msgstr ""
#. Name of a DocType
-#: core/doctype/user_group/user_group.json
+#: frappe/core/doctype/user_group/user_group.json
msgid "User Group"
msgstr ""
#. Name of a DocType
-#: core/doctype/user_group_member/user_group_member.json
+#: frappe/core/doctype/user_group_member/user_group_member.json
msgid "User Group Member"
msgstr ""
-#. Label of a Table MultiSelect field in DocType 'User Group'
-#: core/doctype/user_group/user_group.json
-msgctxt "User Group"
+#. Label of the user_group_members (Table MultiSelect) field in DocType 'User
+#. Group'
+#: frappe/core/doctype/user_group/user_group.json
msgid "User Group Members"
msgstr ""
-#. Label of a Data field in DocType 'User Social Login'
-#: core/doctype/user_social_login/user_social_login.json
-msgctxt "User Social Login"
+#. Label of the userid (Data) field in DocType 'User Social Login'
+#: frappe/core/doctype/user_social_login/user_social_login.json
msgid "User ID"
-msgstr "ID utente"
+msgstr ""
-#. Label of a Data field in DocType 'Social Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#. Label of the user_id_property (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "User ID Property"
-msgstr "Proprietà ID utente"
+msgstr ""
-#. Label of a Link field in DocType 'Contact'
-#: contacts/doctype/contact/contact.json
-msgctxt "Contact"
+#. Description of a DocType
+#: frappe/website/doctype/blogger/blogger.json
+msgid "User ID of a Blogger"
+msgstr ""
+
+#. Label of the user (Link) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
msgid "User Id"
-msgstr "ID utente"
+msgstr ""
-#. Label of a Select field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. Label of the user_id_field (Select) field in DocType 'User Type'
+#: frappe/core/doctype/user_type/user_type.json
msgid "User Id Field"
msgstr ""
-#: core/doctype/user_type/user_type.py:287
+#: frappe/core/doctype/user_type/user_type.py:283
msgid "User Id Field is mandatory in the user type {0}"
msgstr ""
-#. Label of a Attach Image field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Label of the user_image (Attach Image) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "User Image"
-msgstr "Immagine Utente"
+msgstr ""
-#. Label of a Data field in DocType 'Personal Data Download Request'
-#: website/doctype/personal_data_download_request/personal_data_download_request.json
-msgctxt "Personal Data Download Request"
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:115
+msgid "User Menu"
+msgstr ""
+
+#. Label of the user_name (Data) field in DocType 'Personal Data Download
+#. Request'
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
msgid "User Name"
-msgstr "Nome utente"
+msgstr ""
#. Name of a DocType
-#: core/doctype/user_permission/user_permission.json
+#: frappe/core/doctype/user_permission/user_permission.json
msgid "User Permission"
-msgstr "autorizzazione utente"
-
-#. Linked DocType in User's connections
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "User Permission"
-msgstr "autorizzazione utente"
-
-#: public/js/frappe/views/reports/query_report.js:1772
-#: public/js/frappe/views/reports/report_view.js:1657
-msgid "User Permissions"
-msgstr "Autorizzazioni utente"
-
-#: public/js/frappe/list/list_view.js:1639
-msgctxt "Button in list view menu"
-msgid "User Permissions"
-msgstr "Autorizzazioni utente"
+msgstr ""
#. Label of a Link in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "User Permission"
+#: frappe/core/page/permission_manager/permission_manager_help.html:30
+#: frappe/core/workspace/users/users.json
+#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
-msgstr "Autorizzazioni utente"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:124
-msgid "User Permissions created sucessfully"
-msgstr "Autorizzazioni utente create correttamente"
+#: frappe/public/js/frappe/list/list_view.js:1777
+msgctxt "Button in list view menu"
+msgid "User Permissions"
+msgstr ""
-#. Label of a shortcut in the Users Workspace
-#: core/workspace/users/users.json
-msgid "User Profile"
-msgstr "Profilo utente"
+#: frappe/core/page/permission_manager/permission_manager_help.html:32
+msgid "User Permissions are used to limit users to specific records."
+msgstr ""
-#. Label of a Link field in DocType 'LDAP Group Mapping'
-#: integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
-msgctxt "LDAP Group Mapping"
+#: frappe/core/doctype/user_permission/user_permission_list.js:124
+msgid "User Permissions created successfully"
+msgstr ""
+
+#. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping'
+#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
msgid "User Role"
msgstr ""
#. Name of a DocType
-#: core/doctype/user_select_document_type/user_select_document_type.json
+#: frappe/core/doctype/user_role_profile/user_role_profile.json
+msgid "User Role Profile"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
msgid "User Select Document Type"
msgstr ""
-#. Name of a DocType
-#: core/doctype/user_social_login/user_social_login.json
-msgid "User Social Login"
-msgstr "Accesso sociale dell'utente"
-
-#. Label of a Data field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "User Tags"
-msgstr "Tags Utente"
-
-#. Name of a DocType
-#: core/doctype/user_type/user_type.json core/doctype/user_type/user_type.py:82
-msgid "User Type"
-msgstr "Tipo di utente"
-
-#. Label of a Link field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "User Type"
-msgstr "Tipo di utente"
-
-#. Label of a shortcut in the Users Workspace
-#: core/workspace/users/users.json
-msgctxt "User Type"
-msgid "User Type"
-msgstr "Tipo di utente"
-
-#. Name of a DocType
-#: core/doctype/user_type_module/user_type_module.json
-msgid "User Type Module"
+#. Label of a standard navbar item
+#. Type: Action
+#: frappe/hooks.py
+msgid "User Settings"
msgstr ""
-#. Label of a Table field in DocType 'User Type'
-#: core/doctype/user_type/user_type.json
-msgctxt "User Type"
+#. 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'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "User can login using Email id or Mobile number"
-msgstr "L'utente può accedere usando ID e-mail o numero di cellulare"
+msgstr ""
#. Description of the 'Allow Login using User Name' (Check) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "User can login using Email id or User Name"
-msgstr "L'utente può accedere utilizzando l'ID e-mail o il nome utente"
+msgstr ""
-#: desk/page/user_profile/user_profile_controller.js:26
-msgid "User does not exist"
-msgstr "l'utente non esiste"
+#: frappe/templates/includes/login/login.js:292
+msgid "User does not exist."
+msgstr ""
-#: core/doctype/user_type/user_type.py:82
+#: frappe/core/doctype/user_type/user_type.py:83
msgid "User does not have permission to create the new {0}"
msgstr ""
-#: core/doctype/docshare/docshare.py:55
+#: frappe/core/doctype/docshare/docshare.py:56
msgid "User is mandatory for Share"
-msgstr "L'utente è obbligatorio per Condivisione"
+msgstr ""
-#. Label of a Check field in DocType 'Document Naming Settings'
-#: core/doctype/document_naming_settings/document_naming_settings.json
-msgctxt "Document Naming Settings"
+#. Label of the user_must_always_select (Check) field in DocType 'Document
+#. Naming Settings'
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "User must always select"
-msgstr "L'utente deve sempre selezionare"
+msgstr ""
-#: model/delete_doc.py:224
-msgid "User not allowed to delete {0}: {1}"
-msgstr "L'utente non ha permesso di eliminare {0}: {1}"
-
-#: core/doctype/user_permission/user_permission.py:59
+#: frappe/core/doctype/user_permission/user_permission.py:60
msgid "User permission already exists"
-msgstr "Il permesso dell'utente esiste già"
+msgstr ""
-#: www/login.py:153
+#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
msgstr ""
-#: integrations/doctype/ldap_settings/ldap_settings.py:224
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:225
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: core/doctype/user/user.py:504
+#: frappe/core/doctype/user/user.py:537
msgid "User {0} cannot be deleted"
-msgstr "Utente {0} non può essere eliminato"
+msgstr ""
-#: core/doctype/user/user.py:242
+#: frappe/core/doctype/user/user.py:327
msgid "User {0} cannot be disabled"
-msgstr "Utente {0} non può essere disattivato"
+msgstr ""
-#: core/doctype/user/user.py:564
+#: frappe/core/doctype/user/user.py:603
msgid "User {0} cannot be renamed"
-msgstr "Utente {0} non può essere rinominato"
+msgstr ""
-#: permissions.py:139
+#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
-msgstr "L'utente {0} non ha accesso a questo documento"
+msgstr ""
-#: permissions.py:162
+#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
-msgstr "L'utente {0} non ha accesso al tipo di documento tramite l'autorizzazione del ruolo per il documento {1}"
+msgstr ""
-#: templates/emails/data_deletion_approval.html:1
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:108
+#: frappe/desk/doctype/workspace/workspace.py:275
+msgid "User {0} does not have the permission to create a Workspace."
+msgstr ""
+
+#: frappe/templates/emails/data_deletion_approval.html:1
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:112
msgid "User {0} has requested for data deletion"
-msgstr "L'utente {0} ha richiesto l'eliminazione dei dati"
+msgstr ""
-#: utils/oauth.py:272
+#: frappe/core/doctype/user/user.py:1371
+msgid "User {0} impersonated as {1}"
+msgstr ""
+
+#: frappe/utils/oauth.py:269
msgid "User {0} is disabled"
-msgstr "Utente {0} è disattivato"
+msgstr ""
-#: desk/form/assign_to.py:101
+#: frappe/sessions.py:242
+msgid "User {0} is disabled. Please contact your System Manager."
+msgstr ""
+
+#: frappe/desk/form/assign_to.py:104
msgid "User {0} is not permitted to access this document."
msgstr ""
-#. Label of a Data field in DocType 'Connected App'
-#: integrations/doctype/connected_app/connected_app.json
-msgctxt "Connected App"
+#. Label of the userinfo_uri (Data) field in DocType 'Connected App'
+#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Userinfo URI"
msgstr ""
-#: www/login.py:99
+#. Label of the username (Data) field in DocType 'User'
+#. Label of the username (Data) field in DocType 'User Social Login'
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_social_login/user_social_login.json
+#: frappe/www/login.py:110
msgid "Username"
-msgstr "Nome utente"
+msgstr ""
-#. Label of a Data field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
-msgid "Username"
-msgstr "Nome utente"
-
-#. Label of a Data field in DocType 'User Social Login'
-#: core/doctype/user_social_login/user_social_login.json
-msgctxt "User Social Login"
-msgid "Username"
-msgstr "Nome utente"
-
-#: core/doctype/user/user.py:644
+#: frappe/core/doctype/user/user.py:689
msgid "Username {0} already exists"
-msgstr "Nome utente {0} già presente"
+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
-#: core/workspace/users/users.json
+#. Label of the users_section (Section Break) field in DocType 'System Health
+#. Report'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/core/workspace/users/users.json
+#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
-msgstr "utenti"
+msgstr ""
-#. Label of a Table MultiSelect field in DocType 'Assignment Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
-msgid "Users"
-msgstr "utenti"
+#. Description of the 'Protect Attached Files' (Check) field in DocType
+#. 'DocType'
+#. Description of the 'Protect Attached Files' (Check) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Users are only able to delete attached files if the document is either in draft or if the document is canceled and they are also able to delete the document."
+msgstr ""
-#. Description of the 'Allot Points To Assigned Users' (Check) field in DocType
-#. 'Energy Point Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Users assigned to the reference document will get points."
-msgstr "Gli utenti assegnati al documento di riferimento riceveranno punti."
-
-#: core/page/permission_manager/permission_manager.js:345
+#: frappe/core/page/permission_manager/permission_manager.js:355
msgid "Users with role {0}:"
-msgstr "Utenti con ruolo {0} :"
+msgstr ""
-#: public/js/frappe/ui/theme_switcher.js:70
+#: frappe/public/js/frappe/ui/theme_switcher.js:70
msgid "Uses system's theme to switch between light and dark mode"
msgstr ""
-#: public/js/frappe/desk.js:112
+#: frappe/public/js/frappe/desk.js:154
msgid "Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand."
-msgstr "L'utilizzo di questa console potrebbe consentire agli aggressori di impersonarti e rubare le tue informazioni. Non inserire o incollare codice che non capisci."
+msgstr ""
-#. Label of a Percent field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the utilization (Percent) field in DocType 'System Health Report
+#. Workers'
+#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
+msgid "Utilization"
+msgstr ""
+
+#. Label of the utilization_percent (Percent) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Utilization %"
msgstr ""
#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization
#. Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Valid"
-msgstr "Valido"
+msgstr ""
-#. Label of a Check field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/templates/includes/login/login.js:52
+#: frappe/templates/includes/login/login.js:65
+msgid "Valid Login id required."
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:39
+msgid "Valid email and name required"
+msgstr ""
+
+#. Label of the validate_action (Check) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Validate Field"
-msgstr "Convalida campo"
+msgstr ""
-#: public/js/frappe/web_form/web_form.js:356
+#. Label of the validate_frappe_mail_settings (Button) field in DocType 'Email
+#. Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Validate Frappe Mail Settings"
+msgstr ""
+
+#. Label of the validate_ssl_certificate (Check) field in DocType 'Email
+#. Account'
+#. Label of the validate_ssl_certificate (Check) field in DocType 'Email
+#. Domain'
+#. Label of the validate_ssl_certificate_for_outgoing (Check) field in DocType
+#. 'Email Domain'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
+msgid "Validate SSL Certificate"
+msgstr ""
+
+#: frappe/public/js/frappe/web_form/web_form.js:360
msgid "Validation Error"
-msgstr "errore di convalida"
+msgstr ""
-#. Label of a Select field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. Label of the validity (Select) field in DocType 'OAuth Authorization Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Validity"
-msgstr "Validità"
+msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.js:92
-#: public/js/frappe/list/bulk_operations.js:271
-#: public/js/frappe/list/bulk_operations.js:333
+#. Label of the value (Data) field in DocType 'Milestone'
+#. Label of the defvalue (Text) field in DocType 'DefaultValue'
+#. Label of the value (Data) field in DocType 'Document Naming Rule Condition'
+#. Label of the value (Data) field in DocType 'SMS Parameter'
+#. Label of the value (Data) field in DocType 'Query Parameters'
+#. Label of the value (Small Text) field in DocType 'Webhook Header'
+#. Label of the value (Text) field in DocType 'Website Meta Tag'
+#: frappe/automation/doctype/milestone/milestone.json
+#: frappe/core/doctype/defaultvalue/defaultvalue.json
+#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
+#: frappe/core/doctype/prepared_report/prepared_report.js:8
+#: frappe/core/doctype/sms_parameter/sms_parameter.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439
+#: frappe/desk/doctype/number_card/number_card.js:205
+#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:95
+#: frappe/integrations/doctype/query_parameters/query_parameters.json
+#: frappe/integrations/doctype/webhook_header/webhook_header.json
+#: frappe/public/js/frappe/list/bulk_operations.js:336
+#: frappe/public/js/frappe/list/bulk_operations.js:398
+#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4
+#: frappe/website/doctype/web_form/web_form.js:197
+#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Value"
-msgstr "Valore"
+msgstr ""
-#. Label of a Text field in DocType 'DefaultValue'
-#: core/doctype/defaultvalue/defaultvalue.json
-msgctxt "DefaultValue"
-msgid "Value"
-msgstr "Valore"
-
-#. Label of a Data field in DocType 'Document Naming Rule Condition'
-#: core/doctype/document_naming_rule_condition/document_naming_rule_condition.json
-msgctxt "Document Naming Rule Condition"
-msgid "Value"
-msgstr "Valore"
-
-#. Label of a Data field in DocType 'Milestone'
-#: automation/doctype/milestone/milestone.json
-msgctxt "Milestone"
-msgid "Value"
-msgstr "Valore"
-
-#. Label of a Data field in DocType 'Query Parameters'
-#: integrations/doctype/query_parameters/query_parameters.json
-msgctxt "Query Parameters"
-msgid "Value"
-msgstr "Valore"
-
-#. Label of a Data field in DocType 'SMS Parameter'
-#: core/doctype/sms_parameter/sms_parameter.json
-msgctxt "SMS Parameter"
-msgid "Value"
-msgstr "Valore"
-
-#. Label of a Small Text field in DocType 'Webhook Header'
-#: integrations/doctype/webhook_header/webhook_header.json
-msgctxt "Webhook Header"
-msgid "Value"
-msgstr "Valore"
-
-#. Label of a Text field in DocType 'Website Meta Tag'
-#: website/doctype/website_meta_tag/website_meta_tag.json
-msgctxt "Website Meta Tag"
-msgid "Value"
-msgstr "Valore"
-
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the value_based_on (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Value Based On"
-msgstr "Valore basato su"
-
-#. Option for the 'For Document Event' (Select) field in DocType 'Energy Point
-#. Rule'
-#: social/doctype/energy_point_rule/energy_point_rule.json
-msgctxt "Energy Point Rule"
-msgid "Value Change"
-msgstr "Valore Change"
+msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#: frappe/email/doctype/notification/notification.json
msgid "Value Change"
-msgstr "Valore Change"
+msgstr ""
-#. Label of a Select field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the value_changed (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Value Changed"
-msgstr "Valore Cambiato"
+msgstr ""
-#. Label of a Data field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the property_value (Data) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "Value To Be Set"
-msgstr "Valore da impostare"
+msgstr ""
-#: model/base_document.py:930 model/document.py:648
+#: frappe/model/base_document.py:1054 frappe/model/document.py:833
msgid "Value cannot be changed for {0}"
-msgstr "Il valore non può essere cambiato per {0}"
+msgstr ""
-#: model/document.py:593
+#: frappe/model/document.py:779
msgid "Value cannot be negative for"
-msgstr "Il valore non può essere negativo per"
+msgstr ""
-#: model/document.py:597
+#: frappe/model/document.py:783
msgid "Value cannot be negative for {0}: {1}"
-msgstr "Il valore non può essere negativo per {0}: {1}"
+msgstr ""
-#: custom/doctype/property_setter/property_setter.js:7
+#: frappe/custom/doctype/property_setter/property_setter.js:7
msgid "Value for a check field can be either 0 or 1"
-msgstr "Valore per un campo di controllo può essere 0 o 1"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:611
+#: frappe/custom/doctype/customize_form/customize_form.py:611
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
-msgstr "Il valore per il campo {0} è troppo lungo in {1}. La lunghezza deve essere inferiore a {2} caratteri"
+msgstr ""
-#: model/base_document.py:360
+#: frappe/model/base_document.py:445
msgid "Value for {0} cannot be a list"
-msgstr "Il valore {0} non può essere un elenco"
+msgstr ""
#. Description of the 'Due Date Based On' (Select) field in DocType 'Assignment
#. Rule'
-#: automation/doctype/assignment_rule/assignment_rule.json
-msgctxt "Assignment Rule"
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Value from this field will be set as the due date in the ToDo"
-msgstr "Il valore di questo campo verrà impostato come data di scadenza nel ToDo"
+msgstr ""
-#: model/base_document.py:712
-msgid "Value missing for"
-msgstr "Valore mancante per"
-
-#: core/doctype/data_import/importer.py:698
+#: frappe/core/doctype/data_import/importer.py:714
msgid "Value must be one of {0}"
-msgstr "Il valore deve essere uno di {0}"
+msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. 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 "Valore da convalidare"
+msgstr ""
-#: model/base_document.py:997
+#: frappe/model/base_document.py:1124
msgid "Value too big"
-msgstr "Valore troppo grande"
+msgstr ""
-#: core/doctype/data_import/importer.py:711
+#: frappe/core/doctype/data_import/importer.py:727
msgid "Value {0} missing for {1}"
-msgstr "Valore {0} mancante per {1}"
+msgstr ""
-#: core/doctype/data_import/importer.py:742 utils/data.py:877
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
msgid "Value {0} must be in the valid duration format: d h m s"
-msgstr "Il valore {0} deve essere nel formato di durata valido: dhms"
+msgstr ""
-#: core/doctype/data_import/importer.py:729
+#: frappe/core/doctype/data_import/importer.py:745
+#: frappe/core/doctype/data_import/importer.py:760
msgid "Value {0} must in {1} format"
-msgstr "Il valore {0} deve essere nel formato {1}"
+msgstr ""
+
+#: frappe/core/doctype/version/version_view.html:8
+msgid "Values Changed"
+msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
-#: printing/doctype/print_settings/print_settings.json
-msgctxt "Print Settings"
+#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Verdana"
-msgstr "Verdana"
+msgstr ""
-#: twofactor.py:362
-msgid "Verfication Code"
-msgstr "Codice di verifica"
+#: frappe/templates/includes/login/login.js:333
+msgid "Verification"
+msgstr ""
-#: templates/emails/delete_data_confirmation.html:10
+#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352
+msgid "Verification Code"
+msgstr ""
+
+#: frappe/templates/emails/delete_data_confirmation.html:10
msgid "Verification Link"
-msgstr "Link di verifica"
+msgstr ""
-#: twofactor.py:251
+#: frappe/templates/includes/login/login.js:383
+msgid "Verification code email not sent. Please contact Administrator."
+msgstr ""
+
+#: frappe/twofactor.py:248
msgid "Verification code has been sent to your registered email address."
-msgstr "Il codice di verifica è stato inviato all'indirizzo di posta elettronica registrato."
+msgstr ""
#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
-#: core/doctype/translation/translation.json
-msgctxt "Translation"
+#: frappe/core/doctype/translation/translation.json
msgid "Verified"
-msgstr "verificata"
+msgstr ""
-#: public/js/frappe/ui/messages.js:352
+#: frappe/public/js/frappe/ui/messages.js:359
+#: frappe/templates/includes/login/login.js:337
msgid "Verify"
-msgstr "Verificare"
+msgstr ""
-#: public/js/frappe/ui/messages.js:351
+#: frappe/public/js/frappe/ui/messages.js:358
msgid "Verify Password"
-msgstr "Verifica La Password"
+msgstr ""
+
+#: frappe/templates/includes/login/login.js:171
+msgid "Verifying..."
+msgstr ""
#. Name of a DocType
-#: core/doctype/version/version.json
+#: frappe/core/doctype/version/version.json
msgid "Version"
-msgstr "versione"
+msgstr ""
-#: public/js/frappe/desk.js:131
+#: frappe/public/js/frappe/desk.js:166
msgid "Version Updated"
-msgstr "Versione aggiornata"
+msgstr ""
-#. Label of a Data field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#. Label of the video_url (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Video URL"
-msgstr "URL del video"
+msgstr ""
-#. Label of a Select field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#. Label of the view_name (Select) field in DocType 'Form Tour'
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "View"
msgstr ""
-#: core/doctype/success_action/success_action.js:58
-#: public/js/frappe/form/success_action.js:89
+#: frappe/core/doctype/success_action/success_action.js:60
+#: frappe/public/js/frappe/form/success_action.js:89
msgid "View All"
-msgstr "Guarda tutto"
+msgstr ""
-#: public/js/frappe/form/toolbar.js:507
+#: frappe/public/js/frappe/form/toolbar.js:577
msgid "View Audit Trail"
msgstr ""
-#: templates/includes/likes/likes.py:34
+#: frappe/templates/includes/likes/likes.py:34
msgid "View Blog Post"
msgstr ""
-#: templates/includes/comments/comments.py:58
+#: frappe/templates/includes/comments/comments.py:56
msgid "View Comment"
-msgstr "Vedi commento"
+msgstr ""
-#: public/js/frappe/views/treeview.js:467
+#: frappe/core/doctype/user/user.js:151
+msgid "View Doctype Permissions"
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:4
+msgid "View File"
+msgstr ""
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:220
+msgid "View Full Log"
+msgstr ""
+
+#: frappe/public/js/frappe/views/treeview.js:484
+#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
-msgstr "Visualizza elenco"
+msgstr ""
#. Name of a DocType
-#: core/doctype/view_log/view_log.json
+#: frappe/core/doctype/view_log/view_log.json
msgid "View Log"
-msgstr "Vista del registro"
+msgstr ""
-#: core/doctype/user/user.js:133
-#: core/doctype/user_permission/user_permission.js:24
+#: frappe/core/doctype/user/user.js:142
+#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
-msgstr "Visualizza i documenti consentiti"
+msgstr ""
-#. Label of a Button field in DocType 'Notification'
-#: email/doctype/notification/notification.json
-msgctxt "Notification"
+#. Label of the view_properties (Button) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
msgid "View Properties (via Customize Form)"
-msgstr "Proprietà della vista (attraverso Personalizza modulo)"
-
-#: social/doctype/energy_point_log/energy_point_log_list.js:20
-msgid "View Ref"
-msgstr "Visualizza Rif"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "View Report"
-msgstr "Visualizza rapporto"
+msgstr ""
-#. Label of a Section Break field in DocType 'Customize Form'
-#: custom/doctype/customize_form/customize_form.json
-msgctxt "Customize Form"
+#. Label of the view_settings (Section Break) field in DocType 'DocType'
+#. Label of the view_settings_section (Section Break) field in DocType
+#. 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
msgid "View Settings"
-msgstr "Visualizza impostazioni"
+msgstr ""
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "View Settings"
-msgstr "Visualizza impostazioni"
-
-#. Label of a Check field in DocType 'Role'
-#: core/doctype/role/role.json
-msgctxt "Role"
+#. Label of the view_switcher (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
msgid "View Switcher"
msgstr ""
#. Label of a standard navbar item
#. Type: Action
-#: hooks.py website/doctype/website_settings/website_settings.js:16
+#: frappe/hooks.py
+#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
-msgstr "Visualizza sito web"
-
-#: www/confirm_workflow_action.html:12
-msgid "View document"
-msgstr "Visualizza il documento"
-
-#: core/doctype/file/file.js:31
-msgid "View file"
msgstr ""
-#: templates/emails/auto_email_report.html:60
+#: 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 "Visualizza il tuo rapporto nel tuo browser"
+msgstr ""
-#: templates/emails/print_link.html:2
+#: frappe/templates/emails/print_link.html:2
msgid "View this in your browser"
-msgstr "Visualizza questo nel tuo browser"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.js:43
-#: desk/doctype/calendar_view/calendar_view_list.js:10
-#: desk/doctype/dashboard/dashboard_list.js:10
+#: frappe/public/js/frappe/web_form/web_form.js:454
+msgctxt "Button in web form"
+msgid "View your response"
+msgstr ""
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:43
+#: frappe/desk/doctype/calendar_view/calendar_view_list.js:10
+#: frappe/desk/doctype/dashboard/dashboard_list.js:10
msgid "View {0}"
-msgstr "Visualizza {0}"
+msgstr ""
-#. Label of a Data field in DocType 'View Log'
-#: core/doctype/view_log/view_log.json
-msgctxt "View Log"
+#. Label of the viewed_by (Data) field in DocType 'View Log'
+#: frappe/core/doctype/view_log/view_log.json
msgid "Viewed By"
-msgstr "Visto da"
-
-#. Label of a Card Break in the Build Workspace
-#: core/workspace/build/build.json
-msgid "Views"
msgstr ""
#. Group in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of a Card Break in the Build Workspace
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/workspace/build/build.json
msgid "Views"
msgstr ""
-#. Label of a Check field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the is_virtual (Check) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Virtual"
msgstr ""
-#: model/virtual_doctype.py:78
+#: frappe/model/virtual_doctype.py:76
msgid "Virtual DocType {} requires a static method called {} found {}"
msgstr ""
-#: model/virtual_doctype.py:91
+#: frappe/model/virtual_doctype.py:89
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
msgstr ""
-#. Label of a Section Break field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
+#. Label of the visibility_section (Section Break) field in DocType 'DocField'
+#: frappe/core/doctype/docfield/docfield.json
msgid "Visibility"
msgstr ""
+#: 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'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
+#: frappe/core/doctype/communication/communication.json
msgid "Visit"
-msgstr "Visita"
+msgstr ""
-#: website/doctype/website_route_meta/website_route_meta.js:7
+#: frappe/website/doctype/website_route_meta/website_route_meta.js:7
msgid "Visit Web Page"
-msgstr "Visita la pagina Web"
+msgstr ""
-#. Label of a Data field in DocType 'Web Page View'
-#: website/doctype/web_page_view/web_page_view.json
-msgctxt "Web Page View"
+#. Label of the visitor_id (Data) field in DocType 'Web Page View'
+#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Visitor ID"
msgstr ""
-#: templates/discussions/reply_section.html:38
+#: frappe/templates/discussions/reply_section.html:39
msgid "Want to discuss?"
msgstr ""
#. Option for the 'Address Type' (Select) field in DocType 'Address'
-#: contacts/doctype/address/address.json
-msgctxt "Address"
+#: frappe/contacts/doctype/address/address.json
msgid "Warehouse"
-msgstr "Magazzino"
+msgstr ""
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
-msgstr "Attenzione"
+msgstr ""
-#: public/js/frappe/model/meta.js:179
+#: frappe/custom/doctype/customize_form/customize_form.js:217
+msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1125
+msgid "Warning: Naming is not set"
+msgstr ""
+
+#: frappe/public/js/frappe/model/meta.js:182
msgid "Warning: Unable to find {0} in any table related to {1}"
-msgstr "Avviso: impossibile trovare {0} in nessuna tabella correlata a {1}"
+msgstr ""
#. Description of the 'Counter' (Int) field in DocType 'Document Naming Rule'
-#: core/doctype/document_naming_rule/document_naming_rule.json
-msgctxt "Document Naming Rule"
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Warning: Updating counter may lead to document name conflicts if not done properly"
msgstr ""
-#: website/doctype/help_article/templates/help_article.html:24
+#: frappe/website/doctype/help_article/templates/help_article.html:24
msgid "Was this article helpful?"
-msgstr "questo articolo è stato utile?"
+msgstr ""
+
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:127
+msgid "Watch Tutorial"
+msgstr ""
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
-#: desk/doctype/onboarding_step/onboarding_step.json
-msgctxt "Onboarding Step"
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Watch Video"
-msgstr "Guarda un video"
+msgstr ""
-#: desk/doctype/workspace/workspace.js:38
+#: frappe/desk/doctype/workspace/workspace.js:34
msgid "We do not allow editing of this document. Simply click the Edit button on the workspace page to make your workspace editable and customize it as you wish"
msgstr ""
-#: templates/emails/delete_data_confirmation.html:2
+#: frappe/templates/emails/delete_data_confirmation.html:2
msgid "We have received a request for deletion of {0} data associated with: {1}"
-msgstr "Abbiamo ricevuto una richiesta di cancellazione di {0} dati associati a: {1}"
+msgstr ""
-#: templates/emails/download_data.html:2
+#: frappe/templates/emails/download_data.html:2
msgid "We have received a request from you to download your {0} data associated with: {1}"
-msgstr "Abbiamo ricevuto una tua richiesta di scaricare i tuoi dati {0} associati a: {1}"
+msgstr ""
-#: public/js/frappe/form/controls/password.js:88
+#: frappe/www/attribution.html:12
+msgid "We would like to thank the authors of these packages for their contribution."
+msgstr ""
+
+#: frappe/www/contact.py:50
+msgid "We've received your query!"
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/password.js:87
msgid "Weak"
msgstr ""
#. Name of a DocType
-#: website/doctype/web_form/web_form.json
-msgid "Web Form"
-msgstr "Modulo web"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Web Form"
-msgstr "Modulo web"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Web Form"
-msgstr "Modulo web"
-
#. Label of a Link in the Website Workspace
#. Label of a shortcut in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Web Form"
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/workspace/website/website.json
msgid "Web Form"
-msgstr "Modulo web"
+msgstr ""
#. Name of a DocType
-#: website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Web Form Field"
-msgstr "Campo modulo web"
+msgstr ""
-#. Label of a Table field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
+#. Label of the web_form_fields (Table) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
msgid "Web Form Fields"
-msgstr "Campi modulo web"
+msgstr ""
#. Name of a DocType
-#: website/doctype/web_form_list_column/web_form_list_column.json
+#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Web Form List Column"
msgstr ""
#. Name of a DocType
-#: website/doctype/web_page/web_page.json
-msgid "Web Page"
-msgstr "Pagina Web"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Web Page"
-msgstr "Pagina Web"
-
#. Label of a Link in the Website Workspace
#. Label of a shortcut in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Web Page"
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/workspace/website/website.json
msgid "Web Page"
-msgstr "Pagina Web"
+msgstr ""
#. Name of a DocType
-#: website/doctype/web_page_block/web_page_block.json
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Web Page Block"
-msgstr "Blocco pagina web"
+msgstr ""
-#: public/js/frappe/utils/utils.js:1697
+#: frappe/public/js/frappe/utils/utils.js:1709
msgid "Web Page URL"
msgstr ""
#. Name of a DocType
-#: website/doctype/web_page_view/web_page_view.json
+#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Web Page View"
-msgstr "Visualizzazione pagina Web"
+msgstr ""
#. Label of a Card Break in the Website Workspace
-#: website/workspace/website/website.json
+#: frappe/website/workspace/website/website.json
msgid "Web Site"
-msgstr "Sito web"
+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
-#: website/doctype/web_template/web_template.json
-msgid "Web Template"
-msgstr "Modello Web"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Web Template"
-msgstr "Modello Web"
-
-#. Label of a Link field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
-msgid "Web Template"
-msgstr "Modello Web"
-
-#. Name of a DocType
-#: website/doctype/web_template_field/web_template_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Web Template Field"
-msgstr "Campo modello web"
+msgstr ""
-#. Label of a Code field in DocType 'Web Page Block'
-#: website/doctype/web_page_block/web_page_block.json
-msgctxt "Web Page Block"
+#. Label of the web_template_values (Code) field in DocType 'Web Page Block'
+#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Web Template Values"
-msgstr "Valori del modello web"
+msgstr ""
-#: utils/jinja_globals.py:48
+#: frappe/utils/jinja_globals.py:48
msgid "Web Template is not specified"
msgstr ""
-#. Label of a Section Break field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the web_view (Tab Break) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Web View"
-msgstr "Vista web"
+msgstr ""
#. Name of a DocType
-#: integrations/doctype/webhook/webhook.json
-msgid "Webhook"
-msgstr "Webhook"
-
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
-msgid "Webhook"
-msgstr "Webhook"
-
+#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
#. Label of a Link in the Integrations Workspace
-#: integrations/workspace/integrations/integrations.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/integrations/workspace/integrations/integrations.json
msgid "Webhook"
-msgstr "Webhook"
+msgstr ""
-#. Label of a Link field in DocType 'Webhook Request Log'
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
-msgctxt "Webhook Request Log"
-msgid "Webhook"
-msgstr "Webhook"
+#. 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
-#: integrations/doctype/webhook_data/webhook_data.json
-msgid "Webhook Data"
-msgstr "Dati Webhook"
-
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Webhook Data"
-msgstr "Dati Webhook"
-
-#. Name of a DocType
-#: integrations/doctype/webhook_header/webhook_header.json
+#: frappe/integrations/doctype/webhook_header/webhook_header.json
msgid "Webhook Header"
-msgstr "Intestazione Webhook"
+msgstr ""
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Headers"
-msgstr "Intestazioni Webhook"
+msgstr ""
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the sb_webhook (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Request"
-msgstr "Richiesta di Webhook"
+msgstr ""
+#. Label of a Link in the Build Workspace
#. Name of a DocType
-#: integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/core/workspace/build/build.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Webhook Request Log"
msgstr ""
-#. Linked DocType in Webhook's connections
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
-msgid "Webhook Request Log"
-msgstr ""
-
-#. Label of a Password field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the webhook_secret (Password) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Secret"
-msgstr "Segreto Webhook"
+msgstr ""
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the sb_security (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Security"
-msgstr "Webhook Security"
+msgstr ""
-#. Label of a Section Break field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#. Label of the sb_condition (Section Break) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Trigger"
-msgstr "Trigger Webhook"
+msgstr ""
-#. Label of a Data field in DocType 'Slack Webhook URL'
-#: integrations/doctype/slack_webhook_url/slack_webhook_url.json
-msgctxt "Slack Webhook URL"
+#. Label of the webhook_url (Data) field in DocType 'Slack Webhook URL'
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
msgid "Webhook URL"
-msgstr "URL Webhook"
-
-#. Name of a Workspace
-#: email/doctype/newsletter/newsletter.py:451
-#: website/workspace/website/website.json
-msgid "Website"
-msgstr "Sito Web"
+msgstr ""
#. Group in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
+#. Name of a Workspace
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/email/doctype/newsletter/newsletter.py:457
+#: frappe/public/js/frappe/ui/apps_switcher.js:125
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
+#: frappe/website/workspace/website/website.json
msgid "Website"
-msgstr "Sito Web"
+msgstr ""
#. Name of a report
-#: website/report/website_analytics/website_analytics.json
+#. Label of a Link in the Website Workspace
+#: frappe/website/report/website_analytics/website_analytics.json
+#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
-msgstr "Analisi del sito web"
+msgstr ""
#. Name of a role
-#: core/doctype/comment/comment.json
-#: website/doctype/about_us_settings/about_us_settings.json
-#: website/doctype/blog_category/blog_category.json
-#: website/doctype/blog_post/blog_post.json
-#: website/doctype/blog_settings/blog_settings.json
-#: website/doctype/blogger/blogger.json website/doctype/color/color.json
-#: website/doctype/contact_us_settings/contact_us_settings.json
-#: website/doctype/help_category/help_category.json
-#: website/doctype/portal_settings/portal_settings.json
-#: website/doctype/web_form/web_form.json
-#: website/doctype/web_page/web_page.json
-#: website/doctype/website_script/website_script.json
-#: website/doctype/website_settings/website_settings.json
-#: website/doctype/website_sidebar/website_sidebar.json
-#: website/doctype/website_slideshow/website_slideshow.json
-#: website/doctype/website_theme/website_theme.json
+#: frappe/core/doctype/comment/comment.json
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
+#: frappe/website/doctype/blogger/blogger.json
+#: frappe/website/doctype/color/color.json
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+#: frappe/website/doctype/help_category/help_category.json
+#: frappe/website/doctype/portal_settings/portal_settings.json
+#: frappe/website/doctype/web_form/web_form.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_script/website_script.json
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/doctype/website_sidebar/website_sidebar.json
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
+#: frappe/website/doctype/website_theme/website_theme.json
msgid "Website Manager"
-msgstr "Responsabile sito web"
+msgstr ""
#. Name of a DocType
-#: website/doctype/website_meta_tag/website_meta_tag.json
+#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Website Meta Tag"
-msgstr "Meta tag del sito web"
+msgstr ""
#. Name of a DocType
-#: website/doctype/website_route_meta/website_route_meta.json
-msgid "Website Route Meta"
-msgstr "Meta del percorso del sito Web"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Route Meta"
+#: frappe/website/doctype/website_route_meta/website_route_meta.json
+#: frappe/website/workspace/website/website.json
msgid "Website Route Meta"
-msgstr "Meta del percorso del sito Web"
+msgstr ""
#. Name of a DocType
-#: website/doctype/website_route_redirect/website_route_redirect.json
+#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
msgid "Website Route Redirect"
-msgstr "Reindirizzamento del percorso del sito Web"
+msgstr ""
#. Name of a DocType
-#: website/doctype/website_script/website_script.json
-msgid "Website Script"
-msgstr "Script Sito"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Script"
+#: frappe/website/doctype/website_script/website_script.json
+#: frappe/website/workspace/website/website.json
msgid "Website Script"
-msgstr "Script Sito"
+msgstr ""
-#. Label of a Data field in DocType 'DocType'
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. Label of the website_search_field (Data) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
msgid "Website Search Field"
msgstr ""
-#: core/doctype/doctype/doctype.py:1473
+#: frappe/core/doctype/doctype/doctype.py:1522
msgid "Website Search Field must be a valid fieldname"
msgstr ""
#. Name of a DocType
-#: website/doctype/website_settings/website_settings.json
-msgid "Website Settings"
-msgstr "Impostazioni Sito"
-
#. Label of a Link in the Website Workspace
-#. Label of a shortcut in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Settings"
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/workspace/website/website.json
msgid "Website Settings"
-msgstr "Impostazioni Sito"
+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
-#: website/doctype/website_sidebar/website_sidebar.json
-msgid "Website Sidebar"
-msgstr "Sito Sidebar"
-
-#. Label of a Link field in DocType 'Web Form'
-#: website/doctype/web_form/web_form.json
-msgctxt "Web Form"
-msgid "Website Sidebar"
-msgstr "Sito Sidebar"
-
-#. Label of a Link field in DocType 'Web Page'
-#: website/doctype/web_page/web_page.json
-msgctxt "Web Page"
-msgid "Website Sidebar"
-msgstr "Sito Sidebar"
-
-#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Sidebar"
-msgid "Website Sidebar"
-msgstr "Sito Sidebar"
-
-#. Name of a DocType
-#: website/doctype/website_sidebar_item/website_sidebar_item.json
+#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Website Sidebar Item"
-msgstr "Sito Sidebar Articolo"
+msgstr ""
#. Name of a DocType
-#: website/doctype/website_slideshow/website_slideshow.json
-msgid "Website Slideshow"
-msgstr "Presentazione sito web"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Slideshow"
+#: frappe/website/doctype/website_slideshow/website_slideshow.json
+#: frappe/website/workspace/website/website.json
msgid "Website Slideshow"
-msgstr "Presentazione sito web"
+msgstr ""
#. Name of a DocType
-#: website/doctype/website_slideshow_item/website_slideshow_item.json
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "Website Slideshow Item"
-msgstr "Sito Slideshow articolo"
+msgstr ""
+#. Label of the website_theme (Link) field in DocType 'Website Settings'
#. Name of a DocType
-#: website/doctype/website_theme/website_theme.json
-msgid "Website Theme"
-msgstr "Sito tematico"
-
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Website Theme"
-msgstr "Sito tematico"
-
-#. Label of a Link field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
-msgid "Website Theme"
-msgstr "Sito tematico"
-
#. Label of a Link in the Website Workspace
-#: website/workspace/website/website.json
-msgctxt "Website Theme"
+#: frappe/website/doctype/website_settings/website_settings.json
+#: frappe/website/doctype/website_theme/website_theme.json
+#: frappe/website/workspace/website/website.json
msgid "Website Theme"
-msgstr "Sito tematico"
+msgstr ""
#. Name of a DocType
-#: website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
+#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
msgid "Website Theme Ignore App"
-msgstr "Tema del sito Web Ignora l'app"
+msgstr ""
-#. Label of a Image field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the website_theme_image (Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Website Theme Image"
-msgstr "Sito Theme Immagine"
+msgstr ""
-#. Label of a Code field in DocType 'Website Settings'
-#: website/doctype/website_settings/website_settings.json
-msgctxt "Website Settings"
+#. Label of the website_theme_image_link (Code) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
msgid "Website Theme image link"
msgstr ""
+#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
+#. Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Websocket"
+msgstr ""
+
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
-#: automation/doctype/assignment_rule_day/assignment_rule_day.json
-msgctxt "Assignment Rule Day"
-msgid "Wednesday"
-msgstr "Mercoledì"
-
-#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Wednesday"
-msgstr "Mercoledì"
-
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
-#: automation/doctype/auto_repeat_day/auto_repeat_day.json
-msgctxt "Auto Repeat Day"
-msgid "Wednesday"
-msgstr "Mercoledì"
-
-#. Label of a Check field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Wednesday"
-msgstr "Mercoledì"
-
+#. Option for the 'First Day of the Week' (Select) field in DocType 'Language'
#. Option for the 'First Day of the Week' (Select) field in DocType 'System
#. Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#. Label of the wednesday (Check) field in DocType 'Event'
+#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json
+#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Wednesday"
-msgstr "Mercoledì"
+msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:269
+#: frappe/public/js/frappe/views/calendar/calendar.js:276
msgid "Week"
-msgstr "Settimana"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Weekdays"
-msgstr "Nei giorni feriali"
-
-#: public/js/frappe/utils/common.js:399
-#: website/report/website_analytics/website_analytics.js:24
-msgid "Weekly"
-msgstr "Settimanale"
-
-#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Weekly"
-msgstr "Settimanale"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Weekly"
-msgstr "Settimanale"
-
-#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Weekly"
-msgstr "Settimanale"
-
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#: integrations/doctype/dropbox_settings/dropbox_settings.json
-msgctxt "Dropbox Settings"
-msgid "Weekly"
-msgstr "Settimanale"
-
-#. Option for the 'Point Allocation Periodicity' (Select) field in DocType
-#. 'Energy Point Settings'
-#: social/doctype/energy_point_settings/energy_point_settings.json
-msgctxt "Energy Point Settings"
-msgid "Weekly"
-msgstr "Settimanale"
-
-#. Option for the 'Repeat On' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Weekly"
-msgstr "Settimanale"
-
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#: integrations/doctype/google_drive/google_drive.json
-msgctxt "Google Drive"
-msgid "Weekly"
-msgstr "Settimanale"
-
-#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Weekly"
-msgstr "Settimanale"
-
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgctxt "S3 Backup Settings"
-msgid "Weekly"
-msgstr "Settimanale"
-
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Weekly"
-msgstr "Settimanale"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
-msgid "Weekly"
-msgstr "Settimanale"
-
#. Option for the 'Frequency' (Select) field in DocType 'User'
-#: core/doctype/user/user.json
-msgctxt "User"
+#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Repeat On' (Select) field in DocType 'Event'
+#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
+#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
+#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/doctype/user/user.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/utils/common.js:399
+#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
-msgstr "Settimanale"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Weekly Long"
-msgstr "Long settimanale"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
msgid "Weekly Long"
-msgstr "Long settimanale"
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:372
+#: frappe/desk/page/setup_wizard/setup_wizard.js:384
msgid "Welcome"
msgstr ""
-#. Label of a Link field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#. Label of the welcome_email_template (Link) field in DocType 'System
+#. Settings'
+#. Label of the welcome_email_template (Link) field in DocType 'Email Group'
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/email/doctype/email_group/email_group.json
msgid "Welcome Email Template"
-msgstr "Modello di email di benvenuto"
+msgstr ""
-#. Label of a Link field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Welcome Email Template"
-msgstr "Modello di email di benvenuto"
-
-#. Label of a Data field in DocType 'Email Group'
-#: email/doctype/email_group/email_group.json
-msgctxt "Email Group"
+#. Label of the welcome_url (Data) field in DocType 'Email Group'
+#: frappe/email/doctype/email_group/email_group.json
msgid "Welcome URL"
msgstr ""
#. Name of a Workspace
-#: core/workspace/welcome_workspace/welcome_workspace.json desk/desktop.py:468
+#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
msgid "Welcome Workspace"
msgstr ""
-#: core/doctype/user/user.py:361
+#: frappe/core/doctype/user/user.py:415
msgid "Welcome email sent"
-msgstr "Email di benvenuto inviata con successo"
+msgstr ""
-#: core/doctype/user/user.py:436
+#: frappe/core/doctype/user/user.py:476
msgid "Welcome to {0}"
-msgstr "Benvenuti a {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'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "When enabled this will allow guests to upload files to your application, You can enable this if you wish to collect files from user without having them to log in, for example in job applications web form."
-msgstr "Se abilitato, ciò consentirà agli ospiti di caricare file nella propria applicazione. È possibile abilitarlo se si desidera raccogliere file dall'utente senza doverli accedere, ad esempio nel modulo Web delle applicazioni di lavoro."
+msgstr ""
+
+#. Description of the 'Store Attached PDF Document' (Check) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "When sending document using email, store the PDF on Communication. Warning: This can increase your storage usage."
+msgstr ""
#. Description of the 'Force Web Capture Mode for Uploads' (Check) field in
#. DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected."
msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:440
-msgid "Which view of the associated DocType should this shortcut take you to?"
-msgstr "A quale visualizzazione del DocType associato dovrebbe portarti questo collegamento?"
+#: frappe/core/page/permission_manager/permission_manager_help.html:18
+msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number."
+msgstr ""
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
-msgctxt "Workspace Shortcut"
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
-msgstr "A quale visualizzazione del DocType associato dovrebbe portarti questo collegamento?"
+msgstr ""
-#. Label of a Data field in DocType 'Custom Field'
-#: custom/doctype/custom_field/custom_field.json
-msgctxt "Custom Field"
+#. Label of the width (Data) field in DocType 'DocField'
+#. Label of the width (Int) field in DocType 'Report Column'
+#. Label of the width (Data) field in DocType 'Custom Field'
+#. Label of the width (Data) field in DocType 'Customize Form Field'
+#. Label of the width (Select) field in DocType 'Dashboard Chart Link'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
+#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
-msgstr "Larghezza"
+msgstr ""
-#. Label of a Data field in DocType 'Customize Form Field'
-#: custom/doctype/customize_form_field/customize_form_field.json
-msgctxt "Customize Form Field"
-msgid "Width"
-msgstr "Larghezza"
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:2
+msgid "Widths can be set in px or %."
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart Link'
-#: desk/doctype/dashboard_chart_link/dashboard_chart_link.json
-msgctxt "Dashboard Chart Link"
-msgid "Width"
-msgstr "Larghezza"
-
-#. Label of a Data field in DocType 'DocField'
-#: core/doctype/docfield/docfield.json
-msgctxt "DocField"
-msgid "Width"
-msgstr "Larghezza"
-
-#. Label of a Int field in DocType 'Report Column'
-#: core/doctype/report_column/report_column.json
-msgctxt "Report Column"
-msgid "Width"
-msgstr "Larghezza"
-
-#. Label of a Check field in DocType 'Report Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
+#. Label of the wildcard_filter (Check) field in DocType 'Report Filter'
+#: frappe/core/doctype/report_filter/report_filter.json
msgid "Wildcard Filter"
-msgstr "Filtro con caratteri jolly"
+msgstr ""
#. Description of the 'Wildcard Filter' (Check) field in DocType 'Report
#. Filter'
-#: core/doctype/report_filter/report_filter.json
-msgctxt "Report Filter"
+#: frappe/core/doctype/report_filter/report_filter.json
msgid "Will add \"%\" before and after the query"
msgstr ""
#. Description of the 'Short Name' (Data) field in DocType 'Blogger'
-#: website/doctype/blogger/blogger.json
-msgctxt "Blogger"
+#: frappe/website/doctype/blogger/blogger.json
msgid "Will be used in url (usually first name)."
-msgstr "Saranno utilizzati in url (solitamente nome)."
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:470
+#: frappe/desk/page/setup_wizard/setup_wizard.js:485
msgid "Will be your login ID"
-msgstr "Sarà il tuo ID di login"
+msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:424
+#: frappe/printing/page/print_format_builder/print_format_builder.js:424
msgid "Will only be shown if section headings are enabled"
-msgstr "Verranno visualizzati solo se i titoli di sezione sono abilitati"
+msgstr ""
#. Description of the 'Run Jobs only Daily if Inactive For (Days)' (Int) field
#. in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "Will run scheduled jobs only once a day for inactive sites. Default 4 days if set to 0."
-msgstr "Eseguirà i lavori pianificati solo una volta al giorno per i siti inattivi. Predefinito 4 giorni se impostato su 0."
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
+msgstr ""
-#: public/js/frappe/form/print_utils.js:13
+#: frappe/public/js/frappe/form/print_utils.js:15
msgid "With Letter head"
-msgstr "Con carta intestata"
+msgstr ""
-#: workflow/doctype/workflow/workflow.js:140
-msgid "Worflow States Don't Exist"
-msgstr "Gli stati di Worflow non esistono"
-
-#. Label of a Section Break field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the worker_information_section (Section Break) field in DocType 'RQ
+#. Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Worker Information"
msgstr ""
-#. Label of a Data field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#. Label of the worker_name (Data) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Worker Name"
msgstr ""
-#. Name of a DocType
-#: workflow/doctype/workflow/workflow.json
-msgid "Workflow"
-msgstr "Flusso di lavoro"
-
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#: core/doctype/comment/comment.json
-msgctxt "Comment"
-msgid "Workflow"
-msgstr "Flusso di lavoro"
-
-#. Option for the 'Comment Type' (Select) field in DocType 'Communication'
-#: core/doctype/communication/communication.json
-msgctxt "Communication"
-msgid "Workflow"
-msgstr "Flusso di lavoro"
-
#. Group in DocType's connections
-#. Linked DocType in DocType's connections
-#: core/doctype/doctype/doctype.json
-msgctxt "DocType"
+#. 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 "Flusso di lavoro"
-
-#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Workflow"
-msgid "Workflow"
-msgstr "Flusso di lavoro"
+msgstr ""
#. Name of a DocType
-#: workflow/doctype/workflow_action/workflow_action.json
-#: workflow/doctype/workflow_action/workflow_action.py:486
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:444
msgid "Workflow Action"
-msgstr "Azioni flusso di lavoro"
+msgstr ""
#. Name of a DocType
-#: workflow/doctype/workflow_action_master/workflow_action_master.json
+#. Description of a DocType
+#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
msgid "Workflow Action Master"
-msgstr "Azione Master del flusso di lavoro"
+msgstr ""
-#. Label of a Data field in DocType 'Workflow Action Master'
-#: workflow/doctype/workflow_action_master/workflow_action_master.json
-msgctxt "Workflow Action Master"
+#. Label of the workflow_action_name (Data) field in DocType 'Workflow Action
+#. Master'
+#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
msgid "Workflow Action Name"
-msgstr "Nome Azione del Workflow"
+msgstr ""
#. Name of a DocType
-#: workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
+#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
msgid "Workflow Action Permitted Role"
msgstr ""
#. Description of the 'Is Optional State' (Check) field in DocType 'Workflow
#. Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Workflow Action is not created for optional states"
-msgstr "L'azione del flusso di lavoro non è stata creata per gli stati opzionali"
+msgstr ""
-#: workflow/page/workflow_builder/workflow_builder.js:4
+#: frappe/public/js/workflow_builder/store.js:129
+#: frappe/workflow/doctype/workflow/workflow.js:25
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:4
msgid "Workflow Builder"
msgstr ""
-#. Label of a Data field in DocType 'Workflow Document State'
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
-msgctxt "Workflow Document State"
+#. Label of the workflow_builder_id (Data) field in DocType 'Workflow Document
+#. State'
+#. Label of the workflow_builder_id (Data) field in DocType 'Workflow
+#. Transition'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Workflow Builder ID"
msgstr ""
-#. Label of a Data field in DocType 'Workflow Transition'
-#: workflow/doctype/workflow_transition/workflow_transition.json
-msgctxt "Workflow Transition"
-msgid "Workflow Builder ID"
-msgstr ""
-
-#: workflow/doctype/workflow/workflow.js:11
+#: frappe/workflow/doctype/workflow/workflow.js:11
msgid "Workflow Builder allows you to create workflows visually. You can drag and drop states and link them to create transitions. Also you can update thieir properties from the sidebar."
msgstr ""
-#. Label of a JSON field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the workflow_data (JSON) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Data"
msgstr ""
+#: frappe/public/js/workflow_builder/components/Properties.vue:42
+msgid "Workflow Details"
+msgstr ""
+
#. Name of a DocType
-#: workflow/doctype/workflow_document_state/workflow_document_state.json
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Workflow Document State"
-msgstr "Stato Documento del Workflow"
+msgstr ""
-#. Label of a Data field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the workflow_name (Data) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
-msgstr "Nome Workflow"
+msgstr ""
+#. Label of the workflow_state (Data) field in DocType 'Workflow Action'
#. Name of a DocType
-#: workflow/doctype/workflow_state/workflow_state.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Workflow State"
-msgstr "Stati flusso di lavoro"
+msgstr ""
-#. Label of a Data field in DocType 'Workflow Action'
-#: workflow/doctype/workflow_action/workflow_action.json
-msgctxt "Workflow Action"
-msgid "Workflow State"
-msgstr "Stati flusso di lavoro"
-
-#. Label of a Data field in DocType 'Workflow'
-#: workflow/doctype/workflow/workflow.json
-msgctxt "Workflow"
+#. Label of the workflow_state_field (Data) field in DocType 'Workflow'
+#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow State Field"
-msgstr "Stato del campo flusso di lavoro"
+msgstr ""
-#: model/workflow.py:63
+#: frappe/model/workflow.py:61
msgid "Workflow State not set"
-msgstr "Stato del flusso di lavoro non impostato"
+msgstr ""
-#: model/workflow.py:201 model/workflow.py:209
+#: frappe/model/workflow.py:204 frappe/model/workflow.py:212
msgid "Workflow State transition not allowed from {0} to {1}"
-msgstr "Transizione dello stato del flusso di lavoro non consentita da {0} a {1}"
+msgstr ""
-#: model/workflow.py:327
+#: frappe/workflow/doctype/workflow/workflow.js:140
+msgid "Workflow States Don't Exist"
+msgstr ""
+
+#: frappe/model/workflow.py:328
msgid "Workflow Status"
-msgstr "Stato del flusso di lavoro"
+msgstr ""
#. Name of a DocType
-#: workflow/doctype/workflow_transition/workflow_transition.json
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Workflow Transition"
-msgstr "Transizione del Workflow"
-
-#. Description of the Onboarding Step 'Setup Approval Workflows'
-#: custom/onboarding_step/workflows/workflows.json
-msgid "Workflows allow you to define custom rules for the approval process of a particular document in ERPNext. You can also set complex Workflow Rules and set approval conditions."
msgstr ""
-#. Name of a DocType
-#: desk/doctype/workspace/workspace.json
-#: public/js/frappe/ui/toolbar/search_utils.js:541
-#: public/js/frappe/views/workspace/workspace.js:10
-msgid "Workspace"
+#. Description of a DocType
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+msgid "Workflow state represents the current state of a document."
msgstr ""
-#. Linked DocType in Module Def's connections
-#: core/doctype/module_def/module_def.json
-msgctxt "Module Def"
-msgid "Workspace"
+#: frappe/public/js/workflow_builder/store.js:83
+msgid "Workflow updated successfully"
msgstr ""
+#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
-#: core/workspace/build/build.json
-msgctxt "Workspace"
+#. Name of a DocType
+#. Option for the 'Type' (Select) field in DocType 'Workspace'
+#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557
+#: frappe/public/js/frappe/utils/utils.js:929
+#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
msgstr ""
-#: public/js/frappe/router.js:194
+#: frappe/public/js/frappe/router.js:173
msgid "Workspace {0} does not exist"
msgstr ""
#. Name of a DocType
-#: desk/doctype/workspace_chart/workspace_chart.json
+#: frappe/desk/doctype/workspace_chart/workspace_chart.json
msgid "Workspace Chart"
msgstr ""
#. Name of a DocType
-#: desk/doctype/workspace_custom_block/workspace_custom_block.json
+#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json
msgid "Workspace Custom Block"
msgstr ""
#. Name of a DocType
-#: desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Workspace Link"
msgstr ""
#. Name of a role
-#: desk/doctype/custom_html_block/custom_html_block.json
-#: desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
msgid "Workspace Manager"
msgstr ""
#. Name of a DocType
-#: desk/doctype/workspace_number_card/workspace_number_card.json
+#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json
msgid "Workspace Number Card"
msgstr ""
#. Name of a DocType
-#: desk/doctype/workspace_quick_list/workspace_quick_list.json
+#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
msgid "Workspace Quick List"
msgstr ""
+#. Label of a standard navbar item
+#. Type: Action
#. Name of a DocType
-#: desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+#: frappe/hooks.py
+msgid "Workspace Settings"
+msgstr ""
+
+#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
+#. Settings'
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+msgid "Workspace Setup Completed"
+msgstr ""
+
+#. Name of a DocType
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:1265
-msgid "Workspace {0} Created Successfully"
+#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
+#. Settings'
+#: frappe/desk/doctype/workspace_settings/workspace_settings.json
+msgid "Workspace Visibility"
msgstr ""
-#: public/js/frappe/views/workspace/workspace.js:894
-msgid "Workspace {0} Deleted Successfully"
-msgstr ""
-
-#: public/js/frappe/views/workspace/workspace.js:672
-msgid "Workspace {0} Edited Successfully"
+#: frappe/public/js/frappe/views/workspace/workspace.js:538
+msgid "Workspace {0} created"
msgstr ""
#. Option for the 'View' (Select) field in DocType 'Form Tour'
-#: desk/doctype/form_tour/form_tour.json
-msgctxt "Form Tour"
+#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Workspaces"
msgstr ""
-#. Label of a Check field in DocType 'Custom DocPerm'
-#: core/doctype/custom_docperm/custom_docperm.json
-msgctxt "Custom DocPerm"
-msgid "Write"
-msgstr "Scrivi"
+#: frappe/public/js/frappe/form/footer/form_timeline.js:756
+msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
+msgstr ""
-#. Label of a Check field in DocType 'DocPerm'
-#: core/doctype/docperm/docperm.json
-msgctxt "DocPerm"
-msgid "Write"
-msgstr "Scrivi"
+#: frappe/public/js/frappe/form/footer/form_timeline.js:760
+msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
+msgstr ""
-#. Label of a Check field in DocType 'DocShare'
-#: core/doctype/docshare/docshare.json
-msgctxt "DocShare"
-msgid "Write"
-msgstr "Scrivi"
+#: frappe/desk/page/setup_wizard/setup_wizard.py:41
+msgid "Wrapping up"
+msgstr ""
-#. Label of a Check field in DocType 'User Document Type'
-#: core/doctype/user_document_type/user_document_type.json
-msgctxt "User Document Type"
+#. Label of the write (Check) field in DocType 'Custom DocPerm'
+#. Label of the write (Check) field in DocType 'DocPerm'
+#. Label of the write (Check) field in DocType 'DocShare'
+#. Label of the write (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Write"
-msgstr "Scrivi"
+msgstr ""
-#: model/base_document.py:840
+#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
-msgstr "Valore Fetch From errato"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:464
+#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
-msgstr "Campo dell'asse X."
+msgstr ""
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the x_field (Select) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "X Field"
-msgstr "X Field"
+msgstr ""
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "XLSX"
-msgstr "XLSX"
+msgstr ""
-#. Label of a Table field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
+#. Label of the y_axis (Table) field in DocType 'Dashboard Chart'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Y Axis"
-msgstr "Asse Y"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:471
+#: frappe/public/js/frappe/views/reports/report_view.js:497
msgid "Y Axis Fields"
-msgstr "Campi dell'asse Y."
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1132
+#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
+#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
+#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
-msgstr "Y Field"
-
-#. Label of a Select field in DocType 'Dashboard Chart Field'
-#: desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-msgctxt "Dashboard Chart Field"
-msgid "Y Field"
-msgstr "Y Field"
+msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Yahoo Mail"
-msgstr "Yahoo Mail"
+msgstr ""
#. Option for the 'Service' (Select) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "Yandex.Mail"
-msgstr "Yandex.Mail"
+msgstr ""
-#. Label of a Data field in DocType 'Company History'
-#: website/doctype/company_history/company_history.json
-msgctxt "Company History"
+#. Label of the heatmap_year (Select) field in DocType 'Dashboard Chart'
+#. Label of the year (Data) field in DocType 'Company History'
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/website/doctype/company_history/company_history.json
msgid "Year"
-msgstr "Anno"
-
-#. Label of a Select field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Year"
-msgstr "Anno"
-
-#: public/js/frappe/utils/common.js:403
-msgid "Yearly"
-msgstr "Annuale"
-
-#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
-msgid "Yearly"
-msgstr "Annuale"
+msgstr ""
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
-#: automation/doctype/auto_repeat/auto_repeat.json
-msgctxt "Auto Repeat"
-msgid "Yearly"
-msgstr "Annuale"
-
-#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
-#: desk/doctype/dashboard_chart/dashboard_chart.json
-msgctxt "Dashboard Chart"
-msgid "Yearly"
-msgstr "Annuale"
-
-#. Option for the 'Repeat On' (Select) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
-msgid "Yearly"
-msgstr "Annuale"
-
-#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
-#: desk/doctype/number_card/number_card.json
-msgctxt "Number Card"
-msgid "Yearly"
-msgstr "Annuale"
-
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
-#: core/doctype/scheduled_job_type/scheduled_job_type.json
-msgctxt "Scheduled Job Type"
-msgid "Yearly"
-msgstr "Annuale"
-
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
-#: core/doctype/server_script/server_script.json
-msgctxt "Server Script"
+#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart'
+#. Option for the 'Repeat On' (Select) field in DocType 'Event'
+#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card'
+#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/public/js/frappe/utils/common.js:403
msgid "Yearly"
-msgstr "Annuale"
+msgstr ""
#. Option for the 'Color' (Select) field in DocType 'DocType State'
-#: core/doctype/doctype_state/doctype_state.json
-msgctxt "DocType State"
-msgid "Yellow"
-msgstr ""
-
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
-#: desk/doctype/kanban_board_column/kanban_board_column.json
-msgctxt "Kanban Board Column"
+#: frappe/core/doctype/doctype_state/doctype_state.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Yellow"
msgstr ""
-#: integrations/doctype/webhook/webhook.py:127
-#: integrations/doctype/webhook/webhook.py:137
-#: public/js/form_builder/utils.js:336
-#: public/js/frappe/form/controls/link.js:471
-#: public/js/frappe/list/list_sidebar_group_by.js:223
-#: public/js/frappe/views/reports/query_report.js:1513
-#: website/doctype/help_article/templates/help_article.html:25
-msgid "Yes"
-msgstr "sì"
-
-#: public/js/frappe/ui/messages.js:32
-msgctxt "Approve confirmation dialog"
-msgid "Yes"
-msgstr "sì"
-
-#: public/js/frappe/ui/filters/filter.js:500
-msgctxt "Checkbox is checked"
-msgid "Yes"
-msgstr "sì"
-
-#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP
-#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
-msgid "Yes"
-msgstr "sì"
-
#. Option for the 'Standard' (Select) field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
-msgid "Yes"
-msgstr "sì"
-
-#. Option for the 'Standard' (Select) field in DocType 'Print Format'
-#: printing/doctype/print_format/print_format.json
-msgctxt "Print Format"
-msgid "Yes"
-msgstr "sì"
-
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
-#: core/doctype/report/report.json
-msgctxt "Report"
+#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP
+#. Settings'
+#. Option for the 'Standard' (Select) field in DocType 'Print Format'
+#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
+#: frappe/email/doctype/notification/notification.py:92
+#: frappe/email/doctype/notification/notification.py:96
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
+#: frappe/integrations/doctype/webhook/webhook.py:121
+#: frappe/integrations/doctype/webhook/webhook.py:128
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/form_builder/utils.js:336
+#: frappe/public/js/frappe/form/controls/link.js:494
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
+#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
-msgstr "sì"
+msgstr ""
-#: public/js/frappe/utils/user.js:33
+#: 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 "Tu"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:462
+#: frappe/public/js/frappe/form/footer/form_timeline.js:463
msgid "You Liked"
msgstr ""
-#: public/js/frappe/dom.js:425
+#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
-msgstr "Sei connesso ad internet."
+msgstr ""
-#: permissions.py:417
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:20
+msgid "You are impersonating as another user."
+msgstr ""
+
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:28
+msgid "You are not allowed to access this resource"
+msgstr ""
+
+#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
-msgstr "Non sei autorizzato ad accedere a questo record {0} perché è collegato a {1} '{2}' nel campo {3}"
+msgstr ""
-#: permissions.py:406
+#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
-#: public/js/frappe/views/kanban/kanban_board.bundle.js:69
+#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:68
msgid "You are not allowed to create columns"
-msgstr "Non sei autorizzato a creare colonne"
+msgstr ""
-#: core/doctype/report/report.py:93
+#: frappe/core/doctype/report/report.py:97
msgid "You are not allowed to delete Standard Report"
-msgstr "Non sei autorizzato a eliminare il rapporto standard"
+msgstr ""
-#: website/doctype/website_theme/website_theme.py:74
+#: frappe/website/doctype/website_theme/website_theme.py:73
msgid "You are not allowed to delete a standard Website Theme"
-msgstr "Non è consentito eliminare un tema standard"
+msgstr ""
-#: core/doctype/report/report.py:380
+#: frappe/core/doctype/report/report.py:391
msgid "You are not allowed to edit the report."
msgstr ""
-#: permissions.py:614
+#: frappe/core/doctype/data_import/exporter.py:121
+#: frappe/core/doctype/data_import/exporter.py:125
+#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
+#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
-msgstr "Non puoi esportare {} doctype"
+msgstr ""
-#: public/js/frappe/views/treeview.js:431
+#: frappe/public/js/frappe/views/treeview.js:448
msgid "You are not allowed to print this report"
-msgstr "Non sei autorizzato a stampare questo report"
+msgstr ""
-#: public/js/frappe/views/communication.js:673
+#: frappe/public/js/frappe/views/communication.js:781
msgid "You are not allowed to send emails related to this document"
-msgstr "Non hai i permessi per inviare e-mail relative a questo documento"
+msgstr ""
-#: website/doctype/web_form/web_form.py:463
+#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
-msgstr "Non hai i permessi per aggiornare questo modulo web"
+msgstr ""
-#: public/js/frappe/request.js:35
+#: frappe/public/js/frappe/request.js:37
msgid "You are not connected to Internet. Retry after sometime."
-msgstr "Non sei connesso a Internet. Riprova più tardi."
+msgstr ""
-#: public/js/frappe/web_form/webform_script.js:22
+#: frappe/public/js/frappe/web_form/webform_script.js:22
msgid "You are not permitted to access this page without login."
msgstr ""
-#: www/app.py:25
+#: frappe/www/app.py:27
msgid "You are not permitted to access this page."
-msgstr "Non hai i permessi per accedere a questa pagina."
-
-#: __init__.py:834
-msgid "You are not permitted to access this resource."
msgstr ""
-#: 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 "Ora stai seguendo questo documento. Riceverai aggiornamenti giornalieri via e-mail. Puoi modificarlo in Impostazioni utente."
+#: frappe/__init__.py:676
+msgid "You are not permitted to access this resource. Login to access"
+msgstr ""
-#: core/doctype/installed_applications/installed_applications.py:59
+#: 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:86
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
-#: email/doctype/email_account/email_account.js:221
+#: frappe/email/doctype/email_account/email_account.js:284
msgid "You are selecting Sync Option as ALL, It will resync all read as well as unread message from server. This may also cause the duplication of Communication (emails)."
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:413
+#: frappe/public/js/frappe/form/footer/form_timeline.js:414
msgctxt "Form timeline"
msgid "You attached {0}"
msgstr ""
-#: printing/page/print_format_builder/print_format_builder.js:741
+#: frappe/printing/page/print_format_builder/print_format_builder.js:749
msgid "You can add dynamic properties from the document by using Jinja templating."
-msgstr "È possibile aggiungere proprietà dinamiche del documento utilizzando Jinja templating."
+msgstr ""
-#: templates/emails/new_user.html:22
+#: frappe/printing/doctype/letter_head/letter_head.js:32
+msgid "You can also access wkhtmltopdf variables (valid only in PDF print):"
+msgstr ""
+
+#: frappe/templates/emails/new_user.html:22
msgid "You can also copy-paste following link in your browser"
msgstr ""
-#: templates/emails/download_data.html:9
+#: frappe/templates/emails/download_data.html:9
msgid "You can also copy-paste this "
-msgstr "Puoi anche copiare e incollare questo"
+msgstr ""
-#: templates/emails/delete_data_confirmation.html:11
+#: frappe/templates/emails/delete_data_confirmation.html:11
msgid "You can also copy-paste this {0} to your browser"
-msgstr "Puoi anche copiare e incollare questo {0} nel tuo browser"
+msgstr ""
-#: public/js/frappe/logtypes.js:21
+#: frappe/core/page/permission_manager/permission_manager_help.html:17
+msgid "You can change Submitted documents by cancelling them and then, amending them."
+msgstr ""
+
+#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:199
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:194
msgid "You can continue with the onboarding after exploring this page"
msgstr ""
-#: core/doctype/file/file.py:684
+#: frappe/model/delete_doc.py:136
+msgid "You can disable this {0} instead of deleting it."
+msgstr ""
+
+#: frappe/core/doctype/file/file.py:736
msgid "You can increase the limit from System Settings."
msgstr ""
-#: utils/synchronization.py:48
+#: frappe/utils/synchronization.py:48
msgid "You can manually remove the lock if you think it's safe: {}"
msgstr ""
-#: public/js/frappe/form/controls/markdown_editor.js:74
+#: frappe/public/js/frappe/form/controls/markdown_editor.js:75
msgid "You can only insert images in Markdown fields"
msgstr ""
-#: core/doctype/user_type/user_type.py:103
+#: frappe/public/js/frappe/list/bulk_operations.js:42
+msgid "You can only print upto {0} documents at a time"
+msgstr ""
+
+#: frappe/core/doctype/user_type/user_type.py:104
msgid "You can only set the 3 custom doctypes in the Document Types table."
msgstr ""
-#: handler.py:226
-msgid "You can only upload JPG, PNG, PDF, TXT or Microsoft documents."
+#: frappe/handler.py:182
+msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents."
msgstr ""
-#: core/doctype/data_export/exporter.py:201
+#: frappe/core/doctype/data_export/exporter.py:199
msgid "You can only upload upto 5000 records in one go. (may be less in some cases)"
-msgstr "È possibile caricare solo fino a 5000 record in una volta. (Può essere inferiore in alcuni casi)"
+msgstr ""
-#: desk/query_report.py:336
+#: frappe/website/doctype/web_page/web_page.js:92
+msgid "You can select one from the following,"
+msgstr ""
+
+#. Description of the 'Rate limit for email link login' (Int) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "You can set a high value here if multiple users will be logging in from the same network."
+msgstr ""
+
+#: frappe/desk/query_report.py:343
msgid "You can try changing the filters of your report."
-msgstr "Puoi provare a cambiare i filtri del rapporto."
+msgstr ""
-#: public/js/frappe/form/link_selector.js:30
+#: frappe/core/page/permission_manager/permission_manager_help.html:27
+msgid "You can use Customize Form to set levels on fields."
+msgstr ""
+
+#: frappe/public/js/frappe/form/link_selector.js:30
msgid "You can use wildcard %"
msgstr ""
-#: custom/doctype/customize_form/customize_form.py:387
+#: frappe/custom/doctype/customize_form/customize_form.py:389
msgid "You can't set 'Options' for field {0}"
-msgstr "Non puoi impostare 'Opzioni' per il campo {0}"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:391
+#: frappe/custom/doctype/customize_form/customize_form.py:393
msgid "You can't set 'Translatable' for field {0}"
-msgstr "Non puoi impostare "Translatable" per il campo {0}"
+msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:74
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:74
msgctxt "Form timeline"
msgid "You cancelled this document"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:61
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:61
msgctxt "Form timeline"
msgid "You cancelled this document {1}"
msgstr ""
-#: desk/doctype/dashboard_chart/dashboard_chart.py:417
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:417
msgid "You cannot create a dashboard chart from single DocTypes"
-msgstr "Non è possibile creare un grafico dashboard da singoli DocTypes"
+msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:44
-msgid "You cannot give review points to yourself"
-msgstr "Non puoi dare punti di recensione a te stesso"
-
-#: custom/doctype/customize_form/customize_form.py:383
+#: frappe/custom/doctype/customize_form/customize_form.py:385
msgid "You cannot unset 'Read Only' for field {0}"
-msgstr "Non è possibile rimuovere 'Sola lettura' per il campo {0}"
+msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:121
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125
msgid "You changed the value of {0}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:110
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114
msgid "You changed the value of {0} {1}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:183
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:191
msgid "You changed the values for {0}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:172
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:180
msgid "You changed the values for {0} {1}"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:442
+#: frappe/public/js/frappe/form/footer/form_timeline.js:443
msgctxt "Form timeline"
msgid "You changed {0} to {1}"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:138
-#: public/js/frappe/form/sidebar/form_sidebar.js:106
+#: frappe/public/js/frappe/form/footer/form_timeline.js:140
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:94
msgid "You created this"
msgstr ""
-#: client.py:430
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247
+msgctxt "Form timeline"
+msgid "You created this document {0}"
+msgstr ""
+
+#: frappe/client.py:417
msgid "You do not have Read or Select Permissions for {}"
msgstr ""
-#: public/js/frappe/request.js:174
+#: frappe/public/js/frappe/request.js:177
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
-msgstr "Non si dispone di autorizzazioni sufficienti per accedere a questa risorsa. Si prega di contattare il responsabile per ottenere l'accesso."
-
-#: app.py:355
-msgid "You do not have enough permissions to complete the action"
-msgstr "Non si dispone di autorizzazioni sufficienti per completare l'azione"
-
-#: public/js/frappe/form/sidebar/review.js:91
-msgid "You do not have enough points"
-msgstr "Non hai abbastanza punti"
-
-#: social/doctype/energy_point_log/energy_point_log.py:296
-msgid "You do not have enough review points"
-msgstr "Non hai abbastanza punti di recensione"
-
-#: www/printview.py:369
-msgid "You do not have permission to view this document"
msgstr ""
-#: public/js/frappe/form/form.js:979
+#: frappe/app.py:361
+msgid "You do not have enough permissions to complete the action"
+msgstr ""
+
+#: frappe/desk/query_report.py:831
+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 "Non hai i permessi per cancellare tutti i documenti collegati."
+msgstr ""
-#: desk/query_report.py:39
+#: frappe/desk/query_report.py:42
msgid "You don't have access to Report: {0}"
-msgstr "Non si dispone dell'accesso a Report: {0}"
+msgstr ""
-#: website/doctype/web_form/web_form.py:699
+#: frappe/website/doctype/web_form/web_form.py:769
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: utils/response.py:278
+#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
-msgstr "Non si dispone dell'autorizzazione per accedere a questo file"
+msgstr ""
-#: desk/query_report.py:45
+#: frappe/desk/query_report.py:48
msgid "You don't have permission to get a report on: {0}"
-msgstr "Non hai il permesso di ottenere una relazione su: {0}"
+msgstr ""
-#: website/doctype/web_form/web_form.py:167
+#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
-msgstr "Non hai i permessi per accedere a questo documento"
+msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:156
-msgid "You gained {0} point"
-msgstr "Hai guadagnato {0} punti"
-
-#: social/doctype/energy_point_log/energy_point_log.py:158
-msgid "You gained {0} points"
-msgstr "Hai guadagnato {0} punti"
-
-#: templates/emails/new_message.html:1
+#: frappe/templates/emails/new_message.html:1
msgid "You have a new message from: "
-msgstr "Hai un nuovo messaggio da:"
+msgstr ""
-#: handler.py:123
+#: frappe/handler.py:118
msgid "You have been successfully logged out"
-msgstr "Sei stato disconnesso con successo"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:240
+#: frappe/custom/doctype/customize_form/customize_form.py:244
msgid "You have hit the row size limit on database table: {0}"
msgstr ""
-#: public/js/frappe/list/bulk_operations.js:347
+#: frappe/public/js/frappe/list/bulk_operations.js:412
msgid "You have not entered a value. The field will be set to empty."
msgstr ""
-#: templates/includes/likes/likes.py:31
+#: frappe/templates/includes/likes/likes.py:31
msgid "You have received a ❤️ like on your blog post"
msgstr ""
-#: twofactor.py:455
+#: frappe/twofactor.py:432
msgid "You have to enable Two Factor Auth from System Settings."
msgstr ""
-#: public/js/frappe/model/create_new.js:332
+#: frappe/public/js/frappe/model/create_new.js:328
msgid "You have unsaved changes in this form. Please save before you continue."
-msgstr "Hai delle modifiche non salvate in questo modulo. Prego salvare prima di procedere."
+msgstr ""
-#: core/doctype/log_settings/log_settings.py:127
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:50
+msgid "You have unseen notifications"
+msgstr ""
+
+#: frappe/core/doctype/log_settings/log_settings.py:125
msgid "You have unseen {0}"
-msgstr "Non hai visto {0}"
+msgstr ""
-#: public/js/frappe/list/list_view.js:468
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:192
+msgid "You haven't added any Dashboard Charts or Number Cards yet."
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_view.js:498
msgid "You haven't created a {0} yet"
msgstr ""
-#: rate_limiter.py:150
+#: frappe/rate_limiter.py:166
msgid "You hit the rate limit because of too many requests. Please try after sometime."
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:149
-#: public/js/frappe/form/sidebar/form_sidebar.js:95
+#: frappe/public/js/frappe/form/footer/form_timeline.js:151
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
msgstr ""
-#: public/js/frappe/widgets/widget_dialog.js:308
+#: frappe/public/js/frappe/widgets/widget_dialog.js:352
msgid "You must add atleast one link."
msgstr ""
-#: website/doctype/web_form/web_form.py:669
+#: frappe/website/doctype/web_form/web_form.py:765
msgid "You must be logged in to use this form."
msgstr ""
-#: website/doctype/web_form/web_form.py:503
+#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
-msgstr "Devi effettuare il login per confermare questo modulo"
+msgstr ""
-#: desk/doctype/workspace/workspace.py:69
+#: frappe/model/document.py:356
+msgid "You need the '{0}' permission on {1} {2} to perform this action."
+msgstr ""
+
+#: frappe/desk/doctype/workspace/workspace.py:127
+msgid "You need to be Workspace Manager to delete a public workspace."
+msgstr ""
+
+#: frappe/desk/doctype/workspace/workspace.py:76
msgid "You need to be Workspace Manager to edit this document"
msgstr ""
-#: website/doctype/web_form/web_form.py:90
+#: frappe/www/attribution.py:16
+msgid "You need to be a system user to access this page."
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.py:91
msgid "You need to be in developer mode to edit a Standard Web Form"
-msgstr "È necessario essere in modalità sviluppatore per modificare un modulo web standard"
+msgstr ""
-#: utils/response.py:259
+#: frappe/utils/response.py:272
msgid "You need to be logged in and have System Manager Role to be able to access backups."
-msgstr "Devi essere loggato ed avere il ruolo di Amministratore di sistema per poter accedere ai backup."
+msgstr ""
-#: www/me.py:13 www/third_party_apps.py:10
+#: frappe/www/me.py:13 frappe/www/third_party_apps.py:10
msgid "You need to be logged in to access this page"
-msgstr "Devi essere loggato per accedere a questa pagina"
+msgstr ""
-#: website/doctype/web_form/web_form.py:158
+#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
-msgstr "Devi essere loggato per accedere a questa {0}."
+msgstr ""
-#: www/login.html:73
+#: frappe/public/js/frappe/widgets/links_widget.js:63
+msgid "You need to create these first: "
+msgstr ""
+
+#: frappe/www/login.html:76
msgid "You need to enable JavaScript for your app to work."
-msgstr "Devi abilitare JavaScript per far funzionare la tua app."
+msgstr ""
-#: core/doctype/docshare/docshare.py:62
+#: frappe/core/doctype/docshare/docshare.py:62
msgid "You need to have \"Share\" permission"
-msgstr "È necessario disporre dell'autorizzazione \"Share\""
+msgstr ""
-#: utils/print_format.py:156
+#: frappe/utils/print_format.py:268
msgid "You need to install pycups to use this feature!"
-msgstr "Devi installare pycup per usare questa funzione!"
+msgstr ""
-#: email/doctype/email_account/email_account.py:140
+#: frappe/core/doctype/recorder/recorder.js:38
+msgid "You need to select indexes you want to add first."
+msgstr ""
+
+#: frappe/email/doctype/email_account/email_account.py:160
msgid "You need to set one IMAP folder for {0}"
msgstr ""
-#: model/rename_doc.py:385
-msgid "You need write permission to rename"
-msgstr "È necessario il permesso di scrittura per rinominare"
+#: frappe/model/rename_doc.py:391
+msgid "You need write permission on {0} {1} to merge"
+msgstr ""
-#: client.py:458
+#: frappe/model/rename_doc.py:386
+msgid "You need write permission on {0} {1} to rename"
+msgstr ""
+
+#: frappe/client.py:449
msgid "You need {0} permission to fetch values from {1} {2}"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:418
+#: frappe/public/js/frappe/form/footer/form_timeline.js:419
msgctxt "Form timeline"
msgid "You removed attachment {0}"
msgstr ""
-#: public/js/frappe/widgets/onboarding_widget.js:525
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:520
msgid "You seem good to go!"
-msgstr "Sembri a posto!"
+msgstr ""
-#: public/js/frappe/list/bulk_operations.js:29
+#: frappe/templates/includes/contact.js:20
+msgid "You seem to have written your name instead of your email. Please enter a valid email address so that we can get back."
+msgstr ""
+
+#: frappe/public/js/frappe/list/bulk_operations.js:31
msgid "You selected Draft or Cancelled documents"
-msgstr "Hai selezionato un documento in Bozza o Eliminato"
+msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:48
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:48
msgctxt "Form timeline"
msgid "You submitted this document"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:35
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:35
msgctxt "Form timeline"
msgid "You submitted this document {0}"
msgstr ""
-#: public/js/frappe/form/sidebar/document_follow.js:144
+#: frappe/public/js/frappe/form/sidebar/document_follow.js:144
msgid "You unfollowed this document"
-msgstr "Hai smesso di seguire questo documento"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:182
+#: frappe/public/js/frappe/form/footer/form_timeline.js:183
msgid "You viewed this"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:385
+#: frappe/public/js/frappe/desk.js:551
+msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
+msgstr ""
+
+#: frappe/core/doctype/prepared_report/prepared_report.js:57
+msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download."
+msgstr ""
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:397
msgid "Your Country"
-msgstr "Il tuo Paese"
+msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:377
+#: frappe/desk/page/setup_wizard/setup_wizard.js:389
msgid "Your Language"
-msgstr "La tua lingua"
+msgstr ""
-#: templates/includes/comments/comments.html:21
+#: frappe/templates/includes/comments/comments.html:21
msgid "Your Name"
-msgstr "Il tuo nome"
+msgstr ""
-#: patches/v14_0/update_workspace2.py:34
+#: frappe/public/js/frappe/list/bulk_operations.js:132
+msgid "Your PDF is ready for download"
+msgstr ""
+
+#: frappe/patches/v14_0/update_workspace2.py:34
msgid "Your Shortcuts"
-msgstr "Le tue scorciatoie"
+msgstr ""
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:141
-#: website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:147
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:145
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:151
msgid "Your account has been deleted"
msgstr ""
-#: auth.py:465
+#: frappe/auth.py:514
msgid "Your account has been locked and will resume after {0} seconds"
-msgstr "Il tuo account è stato bloccato e ritornerà attivo dopo {0} secondi"
+msgstr ""
-#: desk/form/assign_to.py:268
+#: frappe/desk/form/assign_to.py:279
msgid "Your assignment on {0} {1} has been removed by {2}"
-msgstr "Il tuo compito su {0} {1} è stato rimosso da {2}"
+msgstr ""
-#: templates/pages/integrations/gcalendar-success.html:11
+#: frappe/core/doctype/file/file.js:73
+msgid "Your browser does not support the audio element."
+msgstr ""
+
+#: frappe/core/doctype/file/file.js:55
+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 "La tua richiesta di connessione a Google Calendar è stata accettata con successo"
+msgstr ""
-#: www/contact.html:35
+#: frappe/www/contact.html:35
msgid "Your email address"
-msgstr "Il tuo indirizzo di posta elettronica"
+msgstr ""
-#: public/js/frappe/web_form/web_form.js:424
+#: frappe/public/js/frappe/web_form/web_form.js:428
msgid "Your form has been successfully updated"
msgstr ""
-#: templates/emails/new_user.html:6
+#: frappe/templates/emails/new_user.html:6
msgid "Your login id is"
-msgstr "Il tuo identificativo per il login è:"
+msgstr ""
-#: www/update-password.html:165
+#: frappe/www/update-password.html:167
msgid "Your new password has been set successfully."
msgstr ""
-#: www/update-password.html:145
+#: frappe/www/update-password.html:147
msgid "Your old password is incorrect."
msgstr ""
#. Description of the 'Email Footer Address' (Small Text) field in DocType
#. 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "Your organization name and address for the email footer."
-msgstr "Il tuo nome dell'organizzazione e l'indirizzo e-mail per il piè di pagina."
+msgstr ""
-#: templates/emails/auto_reply.html:2
+#: frappe/templates/emails/auto_reply.html:2
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
-msgstr "La vostra richiesta è stata ricevuta. Vi risponderemo a breve. Se si dispone di ulteriori informazioni, si prega di rispondere a questa mail."
+msgstr ""
-#: app.py:346
+#: frappe/app.py:354
msgid "Your session has expired, please login again to continue."
-msgstr "La tua sessione è scaduta, ti preghiamo di accedere nuovamente per continuare."
+msgstr ""
-#: templates/emails/verification_code.html:1
+#: frappe/public/js/frappe/ui/toolbar/navbar.html:15
+msgid "Your site is undergoing maintenance or being updated."
+msgstr ""
+
+#: frappe/templates/emails/verification_code.html:1
msgid "Your verification code is {0}"
msgstr ""
-#. Success message of the Module Onboarding 'Website'
-#: website/module_onboarding/website/website.json
-msgid "Your website is all set up!"
-msgstr ""
-
-#: utils/data.py:1518
+#: frappe/utils/data.py:1547
msgid "Zero"
-msgstr "Zero"
+msgstr ""
#. Description of the 'Only Send Records Updated in Last X Hours' (Int) field
#. in DocType 'Auto Email Report'
-#: email/doctype/auto_email_report/auto_email_report.json
-msgctxt "Auto Email Report"
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Zero means send records updated at anytime"
-msgstr "Zero significa inviare registri aggiornati in qualsiasi momento"
+msgstr ""
-#. Label of a Link field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265
+msgid "[Action taken by {0}]"
+msgstr ""
+
+#. Label of the _doctype (Link) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "_doctype"
-msgstr "_doctype"
+msgstr ""
-#. Label of a Link field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#. Label of the _report (Link) field in DocType 'Desktop Icon'
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "_report"
-msgstr "_report"
+msgstr ""
-#: utils/background_jobs.py:94
+#: frappe/database/database.py:361
+msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
+msgstr ""
+
+#: frappe/utils/background_jobs.py:120
msgid "`job_id` paramater is required for deduplication."
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:219
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232
msgid "added rows for {0}"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "adjust"
-msgstr "adatta"
-
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "after_insert"
-msgstr "dopo_inserimento"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "align-center"
-msgstr "Allinea al centro"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "align-justify"
-msgstr "Giustifica"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "align-left"
-msgstr "Allinea a sinistra"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "align-right"
-msgstr "Allinea a destra"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "amend"
-msgstr "Correggi"
+msgstr ""
-#: public/js/frappe/utils/utils.js:396 utils/data.py:1528
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
msgid "and"
-msgstr "e"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "arrow-down"
-msgstr "freccia verso il basso"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "arrow-left"
-msgstr "freccia-sinistra"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "arrow-right"
-msgstr "freccia-destra"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "arrow-up"
-msgstr "freccia-up"
-
-#: public/js/frappe/ui/sort_selector.js:48
+#: frappe/public/js/frappe/ui/sort_selector.html:5
+#: frappe/public/js/frappe/ui/sort_selector.js:48
msgid "ascending"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "asterisk"
-msgstr "asterisco"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "backward"
-msgstr "Indietro"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "ban-circle"
-msgstr "ban-cerchio"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "barcode"
-msgstr "barcode"
-
-#: model/document.py:1337
-msgid "beginning with"
-msgstr "Inizia con"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "bell"
-msgstr "campana"
-
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "blue"
-msgstr "blu"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "bold"
-msgstr "grassetto"
+#: frappe/public/js/frappe/form/workflow.js:35
+msgid "by Role"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "book"
-msgstr "libro"
+#. Label of the profile (Code) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "cProfile Output"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "bookmark"
-msgstr "segnalibro"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "briefcase"
-msgstr "ventiquattrore"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "bullhorn"
-msgstr "megafono"
-
-#: public/js/frappe/ui/toolbar/search_utils.js:270
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
msgid "calendar"
-msgstr "calendario"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "calendar"
-msgstr "calendario"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "camera"
-msgstr "fotocamera"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "cancel"
-msgstr "Annulla"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "canceled"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "certificate"
-msgstr "certificato"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "check"
-msgstr "Seleziona"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "chevron-down"
-msgstr "chevron-down"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "chevron-left"
-msgstr "chevron-sinistra"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "chevron-right"
-msgstr "chevron-destra"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "chevron-up"
-msgstr "chevron-up"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "circle-arrow-down"
-msgstr "cerchio-freccia-giù"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "circle-arrow-left"
-msgstr "cerchio-freccia-sinistra"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "circle-arrow-right"
-msgstr "cerchio-freccia-destra"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "circle-arrow-up"
-msgstr "cerchio-freccia-up"
-
-#: templates/includes/list/filters.html:19
+#: frappe/templates/includes/list/filters.html:19
msgid "clear"
-msgstr "chiaro"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "cog"
-msgstr "COG"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "comment"
-msgstr "commento"
+#: frappe/public/js/frappe/form/templates/timeline_message_box.html:34
+msgid "commented"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "create"
-msgstr "Crea"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "cyan"
msgstr ""
-#: public/js/frappe/utils/utils.js:1113
+#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
-msgstr "d"
-
-#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
-msgid "darkgrey"
-msgstr "grigio scuro"
-
-#: core/page/dashboard_view/dashboard_view.js:65
-msgid "dashboard"
-msgstr "Cruscotto"
-
-#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "dd-mm-yyyy"
-msgstr "gg-mm-aaaa"
-
-#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "dd.mm.yyyy"
-msgstr "gg.mm.aaaa"
-
-#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
-msgid "dd/mm/yyyy"
-msgstr "gg/mm/aaaa"
-
-#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
-msgid "default"
msgstr ""
+#. Option for the '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'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "default"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "deferred"
msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "delete"
-msgstr "Elimina"
+msgstr ""
-#: public/js/frappe/ui/sort_selector.js:48
+#: frappe/public/js/frappe/ui/sort_selector.html:5
+#: frappe/public/js/frappe/ui/sort_selector.js:48
msgid "descending"
msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:163
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163
msgid "document type..., e.g. customer"
-msgstr "tipo documento, p. es. cliente"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "download"
-msgstr "Scarica"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "download-alt"
-msgstr "download-alt"
+msgstr ""
#. Description of the 'Email Account Name' (Data) field in DocType 'Email
#. Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\""
-msgstr "p. es. \"Supporto\",\"Vendite\",\"Mario Rossi\""
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:183
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:183
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
-msgstr "p. es. (55 + 434) / 4 or = Math.sin(Math.PI/2) ..."
+msgstr ""
#. Description of the 'Incoming Server' (Data) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "e.g. pop.gmail.com / imap.gmail.com"
-msgstr "p. es. pop.gmail.com / imap.gmail.com"
-
#. Description of the 'Incoming Server' (Data) field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "e.g. pop.gmail.com / imap.gmail.com"
-msgstr "p. es. pop.gmail.com / imap.gmail.com"
+msgstr ""
#. Description of the 'Default Incoming' (Check) field in DocType 'Email
#. Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#: frappe/email/doctype/email_account/email_account.json
msgid "e.g. replies@yourcomany.com. All replies will come to this inbox."
-msgstr "p. es. replies@yourcomany.com. Tutte le risposte arriveranno su questa casella di posta."
+msgstr ""
#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
-msgid "e.g. smtp.gmail.com"
-msgstr "p. es. smtp.gmail.com"
-
#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Domain'
-#: email/doctype/email_domain/email_domain.json
-msgctxt "Email Domain"
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_domain/email_domain.json
msgid "e.g. smtp.gmail.com"
-msgstr "p. es. smtp.gmail.com"
+msgstr ""
-#: custom/doctype/custom_field/custom_field.js:98
+#: frappe/custom/doctype/custom_field/custom_field.js:98
msgid "e.g.:"
-msgstr "p. es. :"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "edit"
-msgstr "Modifica"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "eject"
-msgstr "espellere"
+#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "emacs"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
-msgid "email"
-msgstr "e-mail"
-
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "email"
-msgstr "e-mail"
+msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:289
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305
msgid "email inbox"
-msgstr "E-mail in arrivo"
+msgstr ""
-#: permissions.py:411 permissions.py:422
-#: public/js/frappe/form/controls/link.js:479
+#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
-msgstr "vuoto"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "envelope"
-msgstr "busta"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "exclamation-sign"
-msgstr "esclamazione-sign"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "export"
-msgstr "Esporta"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "eye-close"
-msgstr "occhio da vicino"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "eye-open"
-msgstr "occhio-apertura"
+msgstr ""
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "facebook"
-msgstr "Facebook"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "facetime-video"
-msgstr "FaceTime-video"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "failed"
msgstr ""
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
-#: integrations/doctype/social_login_key/social_login_key.json
-msgctxt "Social Login Key"
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "fairlogin"
-msgstr "fairlogin"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "fast-backward"
-msgstr "indietro veloce"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "fast-forward"
-msgstr "fast-forward"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "file"
-msgstr "file"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "film"
-msgstr "pellicola"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "filter"
-msgstr "filtro"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "finished"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "fire"
-msgstr "fuoco"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "flag"
-msgstr "bandiera"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "folder-close"
-msgstr "cartella-close"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "folder-open"
-msgstr "cartella-aprire"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "font"
-msgstr "carattere"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "forward"
-msgstr "inoltrare"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "fullscreen"
-msgstr "Schermo intero"
-
-#: public/js/frappe/utils/energy_point_utils.js:61
-msgid "gained by {0} via automatic rule {1}"
-msgstr "guadagnato da {0} tramite la regola automatica {1}"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "gift"
-msgstr "regalo"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "glass"
-msgstr "vetro"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "globe"
-msgstr "mappamondo"
-
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "gray"
msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "green"
-msgstr "verde"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "grey"
msgstr ""
-#: utils/backups.py:375
+#: frappe/utils/backups.py:399
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: public/js/frappe/utils/utils.js:1117
+#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
-msgstr "h"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "hand-down"
-msgstr "mano giù"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "hand-left"
-msgstr "mano sinistra"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "hand-right"
-msgstr "mano destra"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "hand-up"
-msgstr "mano su"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "hdd"
-msgstr "hdd"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "headphones"
-msgstr "auricolare"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "heart"
-msgstr "cuore"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "home"
-msgstr "casa"
-
-#: public/js/frappe/ui/toolbar/search_utils.js:280
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296
msgid "hub"
-msgstr "Hub"
+msgstr ""
-#. Label of a Data field in DocType 'Page'
-#: core/doctype/page/page.json
-msgctxt "Page"
+#. Label of the icon (Data) field in DocType 'Page'
+#: frappe/core/doctype/page/page.json
msgid "icon"
-msgstr "icona"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "import"
-msgstr "Importazione"
+msgstr ""
#. Description of the 'Read Time' (Int) field in DocType 'Blog Post'
-#: website/doctype/blog_post/blog_post.json
-msgctxt "Blog Post"
+#: frappe/website/doctype/blog_post/blog_post.json
msgid "in minutes"
-msgstr "in pochi minuti"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "inbox"
-msgstr "Posta in arrivo"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "indent-left"
-msgstr "indent-left"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "indent-right"
-msgstr "indent-right"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "info-sign"
-msgstr "info-sign"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "italic"
-msgstr "corsivo"
-
-#: templates/signup.html:11 www/login.html:10
+#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
msgstr ""
-#: public/js/frappe/utils/pretty_date.js:46
+#: frappe/public/js/frappe/utils/pretty_date.js:46
msgid "just now"
-msgstr "proprio adesso"
+msgstr ""
-#: desk/desktop.py:254 desk/query_report.py:279
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
msgid "label"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "leaf"
-msgstr "foglia"
-
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "light-blue"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "link"
-msgstr "collegamento"
+msgstr ""
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "linkedin"
-msgstr "linkedin"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "list"
-msgstr "elenco"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "list"
-msgstr "elenco"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "list-alt"
-msgstr "list-alt"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "lock"
-msgstr "bloccare"
-
-#: www/third_party_apps.html:41
+#: frappe/www/third_party_apps.html:43
msgid "logged in"
-msgstr "Collegato"
+msgstr ""
+
+#: frappe/website/doctype/web_form/web_form.js:362
+msgid "login_required"
+msgstr ""
#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
-msgid "long"
-msgstr ""
-
#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "long"
msgstr ""
-#: public/js/frappe/utils/utils.js:1121
+#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
-msgstr "m"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "magnet"
-msgstr "magnete"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "map-marker"
-msgstr "map-marker"
-
-#: model/rename_doc.py:214
+#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
-msgstr "accorpato {0} in {1}"
+msgstr ""
-#: website/doctype/blog_post/templates/blog_post.html:25
-#: website/doctype/blog_post/templates/blog_post_row.html:36
+#: frappe/website/doctype/blog_post/templates/blog_post.html:25
+#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36
msgid "min read"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "minus"
-msgstr "meno"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "minus-sign"
-msgstr "segno meno"
-
+#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "mm-dd-yyyy"
-msgstr "gg-mm-aaaa"
+msgstr ""
+#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "mm/dd/yyyy"
-msgstr "mm/gg/aaaa"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "module"
-msgstr "modulo"
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:178
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:178
msgid "module name..."
-msgstr "nome del modulo ..."
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "move"
-msgstr "mossa"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "music"
-msgstr "musica"
-
-#: public/js/frappe/ui/toolbar/search_utils.js:144
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160
msgid "new"
-msgstr "Crea"
+msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:158
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:158
msgid "new type of document"
-msgstr "nuovo tipo di documento"
+msgstr ""
-#. Label of a Int field in DocType 'Email Account'
-#: email/doctype/email_account/email_account.json
-msgctxt "Email Account"
+#. Label of the no_failed (Int) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
msgid "no failed attempts"
-msgstr "tentativi non riusciti"
+msgstr ""
-#. Label of a Data field in DocType 'OAuth Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#. Label of the nonce (Data) field in DocType 'OAuth Authorization Code'
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "nonce"
msgstr ""
-#: model/document.py:1336
-msgid "none of"
-msgstr "nessuno dei"
-
-#. Label of a Check field in DocType 'Reminder'
-#: automation/doctype/reminder/reminder.json
-msgctxt "Reminder"
+#. Label of the notified (Check) field in DocType 'Reminder'
+#: frappe/automation/doctype/reminder/reminder.json
msgid "notified"
msgstr ""
-#: public/js/frappe/utils/pretty_date.js:25
+#: frappe/public/js/frappe/utils/pretty_date.js:25
msgid "now"
-msgstr "adesso"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "off"
-msgstr "spento"
+#: frappe/public/js/frappe/form/grid_pagination.js:116
+msgid "of"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "ok"
-msgstr "ok"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "ok-circle"
-msgstr "ok-cerchio"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "ok-sign"
-msgstr "ok-sign"
-
-#. Label of a Data field in DocType 'File'
-#: core/doctype/file/file.json
-msgctxt "File"
+#. Label of the old_parent (Data) field in DocType 'File'
+#: frappe/core/doctype/file/file.json
msgid "old_parent"
-msgstr "old_parent"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_cancel"
-msgstr "on_cancel"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_change"
-msgstr "on_change"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_submit"
-msgstr "on_submit"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_trash"
-msgstr "on_trash"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_update"
-msgstr "on_update"
+msgstr ""
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
-#: integrations/doctype/webhook/webhook.json
-msgctxt "Webhook"
+#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_update_after_submit"
-msgstr "on_update_after_submit"
+msgstr ""
-#: model/document.py:1335
-msgid "one of"
-msgstr "uno di"
-
-#: utils/data.py:1535
-msgid "only."
-msgstr "soltanto."
-
-#: public/js/frappe/utils/utils.js:393 www/login.html:87
+#: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90
+#: frappe/www/login.py:112
msgid "or"
-msgstr "oppure"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "orange"
-msgstr "arancione"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "page"
-msgstr "pagina"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "pause"
-msgstr "pausa"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "pencil"
-msgstr "matita"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "picture"
-msgstr "immagine"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "pink"
msgstr ""
#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth
#. Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "plain"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "plane"
-msgstr "piano"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "play"
-msgstr "giocare"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "play-circle"
-msgstr "play-cerchio"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "plus"
-msgstr "più"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "plus-sign"
-msgstr "segno più"
-
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "print"
-msgstr "Stampa"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "print"
-msgstr "Stampa"
-
-#. Label of a HTML field in DocType 'System Console'
-#: desk/doctype/system_console/system_console.json
-msgctxt "System Console"
+#. Label of the processlist (HTML) field in DocType 'System Console'
+#: frappe/desk/doctype/system_console/system_console.json
msgid "processlist"
msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "purple"
-msgstr "viola"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "qrcode"
-msgstr "QRCode"
+msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
-#: desk/doctype/desktop_icon/desktop_icon.json
-msgctxt "Desktop Icon"
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "query-report"
-msgstr "query-report"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "question-sign"
-msgstr "domanda-sign"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "queued"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "random"
-msgstr "casuale"
-
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "read"
-msgstr "Leggi"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "red"
-msgstr "rosso"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "refresh"
-msgstr "ricaricare"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "remove"
-msgstr "rimuovere"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "remove-circle"
-msgstr "remove-cerchio"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "remove-sign"
-msgstr "rimuovere-sign"
-
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:221
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234
msgid "removed rows for {0}"
msgstr ""
-#: model/rename_doc.py:217
+#: frappe/model/rename_doc.py:217
msgid "renamed from {0} to {1}"
-msgstr "rinominato da {0} a {1}"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "repeat"
-msgstr "ripetere"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "report"
-msgstr "Report"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "resize-full"
-msgstr "resize-pieno"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "resize-horizontal"
-msgstr "resize-orizzontale"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "resize-small"
-msgstr "resize-small"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "resize-vertical"
-msgstr "resize-verticale"
-
-#. Label of a HTML field in DocType 'Custom Role'
-#: core/doctype/custom_role/custom_role.json
-msgctxt "Custom Role"
+#. Label of the response (HTML) field in DocType 'Custom Role'
+#: frappe/core/doctype/custom_role/custom_role.json
msgid "response"
-msgstr "risposta"
+msgstr ""
-#: core/doctype/deleted_document/deleted_document.py:60
+#: frappe/core/doctype/deleted_document/deleted_document.py:61
msgid "restored {0} as {1}"
-msgstr "restaurato {0} come {1}"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "retweet"
-msgstr "rispondi"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "road"
-msgstr "stradale"
-
-#: public/js/frappe/utils/utils.js:1125
+#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
-msgstr "S"
+msgstr ""
#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth
#. Authorization Code'
-#: integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
-msgctxt "OAuth Authorization Code"
+#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "s256"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "scheduled"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "screenshot"
-msgstr "screenshot"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "search"
-msgstr "ricerca"
-
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "select"
-msgstr "Selezionare"
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "share"
-msgstr "quota"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "share"
-msgstr "quota"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "share-alt"
-msgstr "share-alt"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "shopping-cart"
-msgstr "shopping cart"
+msgstr ""
#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
-msgid "short"
-msgstr ""
-
#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
-#: core/doctype/rq_worker/rq_worker.json
-msgctxt "RQ Worker"
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "short"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "signal"
-msgstr "segnalare"
-
-#: public/js/frappe/widgets/number_card_widget.js:265
+#: frappe/public/js/frappe/widgets/number_card_widget.js:298
msgid "since last month"
-msgstr "dall'ultimo mese"
+msgstr ""
-#: public/js/frappe/widgets/number_card_widget.js:264
+#: frappe/public/js/frappe/widgets/number_card_widget.js:297
msgid "since last week"
-msgstr "Dalla scorsa settimana"
+msgstr ""
-#: public/js/frappe/widgets/number_card_widget.js:266
+#: frappe/public/js/frappe/widgets/number_card_widget.js:299
msgid "since last year"
-msgstr "dall'anno scorso"
+msgstr ""
-#: public/js/frappe/widgets/number_card_widget.js:263
+#: frappe/public/js/frappe/widgets/number_card_widget.js:296
msgid "since yesterday"
-msgstr "da ieri"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "star"
-msgstr "stella"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "star-empty"
-msgstr "star-vuoto"
+msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
-#: core/doctype/rq_job/rq_job.json
-msgctxt "RQ Job"
+#: frappe/core/doctype/rq_job/rq_job.json
msgid "started"
msgstr ""
-#: desk/page/setup_wizard/setup_wizard.js:194
+#: frappe/desk/page/setup_wizard/setup_wizard.js:201
msgid "starting the setup..."
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "step-backward"
-msgstr "passo indietro"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "step-forward"
-msgstr "passo in avanti"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "stop"
-msgstr "fermare"
-
#. Description of the 'Group Object Class' (Data) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "string value, i.e. group"
msgstr ""
#. Description of the 'LDAP Group Member attribute' (Data) field in DocType
#. 'LDAP Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "string value, i.e. member"
msgstr ""
#. Description of the 'Custom Group Search' (Data) field in DocType 'LDAP
#. Settings'
-#: integrations/doctype/ldap_settings/ldap_settings.json
-msgctxt "LDAP Settings"
+#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "string value, i.e. {0} or uid={0},ou=users,dc=example,dc=com"
msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "submit"
-msgstr "Conferma"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "tag"
-msgstr "Tag"
-
-#: public/js/frappe/ui/toolbar/awesome_bar.js:173
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:173
msgid "tag name..., e.g. #tag"
-msgstr "nome tag ..., ad es. #tag"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "tags"
-msgstr "tag"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "tasks"
-msgstr "compiti"
-
-#: public/js/frappe/ui/toolbar/awesome_bar.js:168
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:168
msgid "text in document type"
-msgstr "testo tipo di documento"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "text-height"
-msgstr "text-height"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "text-width"
-msgstr "text-width"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "th"
-msgstr "th"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "th-large"
-msgstr "th-large"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "th-list"
-msgstr "th-list"
-
-#: public/js/frappe/form/controls/data.js:35
+#: frappe/public/js/frappe/form/controls/data.js:36
msgid "this form"
msgstr ""
-#: tests/test_translate.py:158
+#: frappe/tests/test_translate.py:174
msgid "this shouldn't break"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "thumbs-down"
-msgstr "pollice in giù"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "thumbs-up"
-msgstr "pollice in su"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "time"
-msgstr "tempo"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "tint"
-msgstr "tinta"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "trash"
-msgstr "cestinare"
-
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
-#: website/doctype/social_link_settings/social_link_settings.json
-msgctxt "Social Link Settings"
+#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "twitter"
-msgstr "twitter"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "upload"
-msgstr "caricare"
+#: frappe/public/js/frappe/change_log.html:7
+msgid "updated to {0}"
+msgstr ""
-#: public/js/frappe/ui/filters/filter.js:340
+#: frappe/public/js/frappe/ui/filters/filter.js:361
msgid "use % as wildcard"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "user"
-msgstr "utente"
-
-#: public/js/frappe/ui/filters/filter.js:339
+#: frappe/public/js/frappe/ui/filters/filter.js:360
msgid "values separated by commas"
-msgstr "valori separati da virgole"
+msgstr ""
-#. Label of a HTML field in DocType 'Audit Trail'
-#: core/doctype/audit_trail/audit_trail.json
-msgctxt "Audit Trail"
+#. Label of the version_table (HTML) field in DocType 'Audit Trail'
+#: frappe/core/doctype/audit_trail/audit_trail.json
msgid "version_table"
msgstr ""
-#: automation/doctype/assignment_rule/assignment_rule.py:386
+#: frappe/automation/doctype/assignment_rule/assignment_rule.py:382
msgid "via Assignment Rule"
-msgstr "tramite la regola di assegnazione"
+msgstr ""
-#: core/doctype/data_import/importer.py:259
-#: core/doctype/data_import/importer.py:280
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242
+msgid "via Auto Repeat"
+msgstr ""
+
+#: frappe/core/doctype/data_import/importer.py:271
+#: frappe/core/doctype/data_import/importer.py:292
msgid "via Data Import"
-msgstr "tramite importazione dati"
+msgstr ""
#. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event'
-#: desk/doctype/event/event.json
-msgctxt "Event"
+#: frappe/desk/doctype/event/event.json
msgid "via Google Meet"
msgstr ""
-#: email/doctype/notification/notification.py:214
+#: frappe/email/doctype/notification/notification.py:361
msgid "via Notification"
-msgstr "tramite notifica"
+msgstr ""
-#: public/js/frappe/utils/energy_point_utils.js:46
-msgid "via automatic rule {0} on {1}"
-msgstr "tramite la regola automatica {0} su {1}"
-
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:17
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:17
msgid "via {0}"
-msgstr "tramite {0}"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "volume-down"
-msgstr "volume-giù"
+#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "vim"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "volume-off"
-msgstr "volume-off"
+#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "vscode"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "volume-up"
-msgstr "volume-up"
-
-#: templates/includes/oauth_confirmation.html:5
+#: frappe/templates/includes/oauth_confirmation.html:5
msgid "wants to access the following details from your account"
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "warning-sign"
-msgstr "avvertimento-sign"
-
#. Description of the 'Popover Element' (Check) field in DocType 'Form Tour
#. Step'
-#: desk/doctype/form_tour_step/form_tour_step.json
-msgctxt "Form Tour Step"
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "when clicked on element it will focus popover if present."
msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "wrench"
-msgstr "chiave"
+#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "wkhtmltopdf"
+msgstr ""
+
+#: frappe/printing/page/print/print.js:622
+msgid "wkhtmltopdf 0.12.x (with patched qt)."
+msgstr ""
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
-#: core/doctype/permission_inspector/permission_inspector.json
-#, fuzzy
-msgctxt "Permission Inspector"
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "write"
-msgstr "Scrivi"
+msgstr ""
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
-#: desk/doctype/workspace/workspace.json
-msgctxt "Workspace"
+#: frappe/desk/doctype/workspace/workspace.json
msgid "yellow"
-msgstr "giallo"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:58
+#: frappe/public/js/frappe/utils/pretty_date.js:58
msgid "yesterday"
-msgstr "ieri"
+msgstr ""
+#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
-#: core/doctype/system_settings/system_settings.json
-msgctxt "System Settings"
+#: frappe/core/doctype/language/language.json
+#: frappe/core/doctype/system_settings/system_settings.json
msgid "yyyy-mm-dd"
-msgstr "aaaa-mm-gg"
+msgstr ""
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "zoom-in"
-msgstr "Ingrandisci"
-
-#. Option for the 'Icon' (Select) field in DocType 'Workflow State'
-#: workflow/doctype/workflow_state/workflow_state.json
-msgctxt "Workflow State"
-msgid "zoom-out"
-msgstr "Riduci"
-
-#: desk/doctype/event/event.js:83
-#: integrations/doctype/google_drive/google_drive.js:19
+#: frappe/desk/doctype/event/event.js:87
+#: frappe/public/js/frappe/form/footer/form_timeline.js:547
msgid "{0}"
msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:81
-#: public/js/frappe/ui/toolbar/search_utils.js:82
-msgid "{0} ${label}"
-msgstr ""
-
-#: public/js/frappe/ui/toolbar/search_utils.js:177
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193
msgid "{0} ${skip_list ? \"\" : type}"
msgstr ""
-#: public/js/frappe/ui/toolbar/search_utils.js:182
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198
msgid "{0} ${type}"
msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:77
-#: public/js/frappe/views/gantt/gantt_view.js:54
+#: frappe/public/js/frappe/data_import/data_exporter.js:80
+#: frappe/public/js/frappe/views/gantt/gantt_view.js:54
msgid "{0} ({1})"
msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:76
+#: frappe/public/js/frappe/data_import/data_exporter.js:77
msgid "{0} ({1}) (1 row mandatory)"
-msgstr "{0} ({1}) (1 riga obbligatoria)"
+msgstr ""
-#: public/js/frappe/views/gantt/gantt_view.js:53
+#: frappe/public/js/frappe/views/gantt/gantt_view.js:53
msgid "{0} ({1}) - {2}%"
msgstr ""
-#: public/js/frappe/ui/toolbar/awesome_bar.js:346
-#: public/js/frappe/ui/toolbar/awesome_bar.js:349
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:377
msgid "{0} = {1}"
msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:29
+#: frappe/public/js/frappe/views/calendar/calendar.js:30
msgid "{0} Calendar"
-msgstr "{0} Calendario"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:544
+#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
-msgstr "{0} Grafico"
+msgstr ""
-#: core/page/dashboard_view/dashboard_view.js:67
-#: public/js/frappe/ui/toolbar/search_utils.js:331
-#: public/js/frappe/ui/toolbar/search_utils.js:332
-#: public/js/frappe/utils/utils.js:929
-#: public/js/frappe/views/dashboard/dashboard_view.js:10
+#: frappe/core/page/dashboard_view/dashboard_view.js:67
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
-msgstr "{0} Dashboard"
+msgstr ""
-#: public/js/frappe/form/grid_row.js:456
-#: public/js/frappe/list/list_settings.js:224
-#: public/js/frappe/views/kanban/kanban_settings.js:178
+#: frappe/public/js/frappe/form/grid_row.js:470
+#: frappe/public/js/frappe/list/list_settings.js:227
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
-msgstr "{0} Campi"
+msgstr ""
-#: integrations/doctype/google_calendar/google_calendar.py:360
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:376
msgid "{0} Google Calendar Events synced."
-msgstr "{0} Eventi di Google Calendar sincronizzati."
+msgstr ""
-#: integrations/doctype/google_contacts/google_contacts.py:190
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:193
msgid "{0} Google Contacts synced."
-msgstr "{0} Contatti Google sincronizzati."
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:463
+#: frappe/public/js/frappe/form/footer/form_timeline.js:464
msgid "{0} Liked"
msgstr ""
-#: public/js/frappe/utils/utils.js:923
-#: public/js/frappe/widgets/chart_widget.js:317 www/list.html:4 www/list.html:8
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:83
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:84
+#: frappe/public/js/frappe/widgets/chart_widget.js:358 frappe/www/list.html:4
+#: frappe/www/list.html:8
msgid "{0} List"
-msgstr "{0} Lista"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:37
+#: frappe/public/js/frappe/utils/pretty_date.js:37
msgid "{0} M"
-msgstr "{0} M"
+msgstr ""
-#: public/js/frappe/views/map/map_view.js:14
+#: frappe/public/js/frappe/views/map/map_view.js:14
msgid "{0} Map"
msgstr ""
-#: public/js/frappe/utils/utils.js:926
-msgid "{0} Modules"
-msgstr "{0} Moduli"
-
-#: public/js/frappe/form/quick_entry.js:113
+#: frappe/public/js/frappe/form/quick_entry.js:122
msgid "{0} Name"
-msgstr "{0} Nome"
+msgstr ""
-#: model/base_document.py:1027
+#: frappe/model/base_document.py:1154
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
-#: public/js/frappe/utils/utils.js:920
-#: public/js/frappe/widgets/chart_widget.js:325
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
+#: frappe/public/js/frappe/widgets/chart_widget.js:366
msgid "{0} Report"
-msgstr "{0} Report"
+msgstr ""
-#: public/js/frappe/list/list_settings.js:32
-#: public/js/frappe/views/kanban/kanban_settings.js:26
+#: frappe/public/js/frappe/views/reports/query_report.js:954
+msgid "{0} Reports"
+msgstr ""
+
+#: frappe/public/js/frappe/list/list_settings.js:32
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:26
msgid "{0} Settings"
-msgstr "{0} Impostazioni"
+msgstr ""
-#: public/js/frappe/views/treeview.js:139
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:87
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:88
+#: frappe/public/js/frappe/views/treeview.js:152
msgid "{0} Tree"
-msgstr "{0} Albero"
-
-#: public/js/frappe/list/base_list.js:206
-msgid "{0} View"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:126
-#: public/js/frappe/form/sidebar/form_sidebar.js:86
+#: frappe/public/js/frappe/form/footer/form_timeline.js:128
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:73
msgid "{0} Web page views"
-msgstr "{0} Visualizzazioni di pagina"
+msgstr ""
-#: public/js/frappe/form/link_selector.js:225
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:91
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
+msgid "{0} Workspace"
+msgstr ""
+
+#: frappe/public/js/frappe/form/link_selector.js:225
msgid "{0} added"
-msgstr "{0} aggiunto"
+msgstr ""
-#: public/js/frappe/form/controls/data.js:203
+#: frappe/public/js/frappe/form/controls/data.js:204
msgid "{0} already exists. Select another name"
-msgstr "{0} esiste già. Seleziona un altro nome"
+msgstr ""
-#: email/doctype/email_unsubscribe/email_unsubscribe.py:37
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:36
msgid "{0} already unsubscribed"
-msgstr "{0} iscrizione già cancellata"
+msgstr ""
-#: email/doctype/email_unsubscribe/email_unsubscribe.py:50
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49
msgid "{0} already unsubscribed for {1} {2}"
-msgstr "{0} iscrizione già cancellate per {1} {2}"
+msgstr ""
-#: utils/data.py:1715
+#: frappe/utils/data.py:1740
msgid "{0} and {1}"
-msgstr "{0} e {1}"
-
-#: public/js/frappe/utils/energy_point_utils.js:38
-msgid "{0} appreciated on {1}"
-msgstr "{0} apprezzato su {1}"
-
-#: social/doctype/energy_point_log/energy_point_log.py:126
-#: social/doctype/energy_point_log/energy_point_log.py:163
-msgid "{0} appreciated your work on {1} with {2} point"
-msgstr "{0} ha apprezzato il tuo lavoro su {1} con il punto {2}"
-
-#: social/doctype/energy_point_log/energy_point_log.py:128
-#: social/doctype/energy_point_log/energy_point_log.py:165
-msgid "{0} appreciated your work on {1} with {2} points"
-msgstr "{0} ha apprezzato il tuo lavoro su {1} con {2} punti"
-
-#: public/js/frappe/utils/energy_point_utils.js:53
-msgid "{0} appreciated {1}"
-msgstr "{0} apprezzato {1}"
-
-#: public/js/frappe/form/sidebar/review.js:148
-msgid "{0} appreciation point for {1}"
msgstr ""
-#: public/js/frappe/form/sidebar/review.js:150
-msgid "{0} appreciation points for {1}"
-msgstr ""
-
-#: public/js/frappe/form/sidebar/form_sidebar_users.js:72
+#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:72
msgid "{0} are currently {1}"
-msgstr "{0} sono attualmente {1}"
+msgstr ""
-#: printing/doctype/print_format/print_format.py:89
+#: frappe/printing/doctype/print_format/print_format.py:89
msgid "{0} are required"
-msgstr "{0} sono obbligatori"
+msgstr ""
-#: desk/form/assign_to.py:275
+#: frappe/desk/form/assign_to.py:286
msgid "{0} assigned a new task {1} {2} to you"
-msgstr "{0} ti ha assegnato una nuova attività {1} {2}"
+msgstr ""
-#: desk/doctype/todo/todo.py:48
+#: frappe/desk/doctype/todo/todo.py:48
msgid "{0} assigned {1}: {2}"
-msgstr "{0} assegnato {1}: {2}"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:414
+#: frappe/public/js/frappe/form/footer/form_timeline.js:415
msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:77
+#: frappe/core/doctype/system_settings/system_settings.py:150
+msgid "{0} can not be more than {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:77
msgid "{0} cancelled this document"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:68
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:68
msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: public/js/form_builder/store.js:185
+#: frappe/model/document.py:546
+msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
+msgstr ""
+
+#: frappe/public/js/form_builder/store.js:190
msgid "{0} cannot be hidden and mandatory without any default value"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:124
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128
msgid "{0} changed the value of {1}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:115
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:119
msgid "{0} changed the value of {1} {2}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:186
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:194
msgid "{0} changed the values for {1}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:177
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:185
msgid "{0} changed the values for {1} {2}"
msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:443
+#: frappe/public/js/frappe/form/footer/form_timeline.js:444
msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
msgstr ""
-#: website/doctype/blog_post/blog_post.py:380
+#: frappe/website/doctype/blog_post/blog_post.py:382
msgid "{0} comments"
-msgstr "{0} commenti"
+msgstr ""
-#: public/js/frappe/views/interaction.js:261
+#: frappe/core/doctype/doctype/doctype.py:1605
+msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
+msgstr ""
+
+#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
-msgstr "{0} creato con successo"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:139
-#: public/js/frappe/form/sidebar/form_sidebar.js:107
+#: frappe/public/js/frappe/form/footer/form_timeline.js:141
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:95
msgid "{0} created this"
msgstr ""
-#: public/js/frappe/form/sidebar/review.js:154
-msgid "{0} criticism point for {1}"
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250
+msgctxt "Form timeline"
+msgid "{0} created this document {1}"
msgstr ""
-#: public/js/frappe/form/sidebar/review.js:156
-msgid "{0} criticism points for {1}"
-msgstr ""
-
-#: public/js/frappe/utils/energy_point_utils.js:41
-msgid "{0} criticized on {1}"
-msgstr "{0} criticato su {1}"
-
-#: social/doctype/energy_point_log/energy_point_log.py:132
-#: social/doctype/energy_point_log/energy_point_log.py:170
-msgid "{0} criticized your work on {1} with {2} point"
-msgstr "{0} ha criticato il tuo lavoro su {1} con {2} punti"
-
-#: social/doctype/energy_point_log/energy_point_log.py:134
-#: social/doctype/energy_point_log/energy_point_log.py:172
-msgid "{0} criticized your work on {1} with {2} points"
-msgstr "{0} ha criticato il tuo lavoro su {1} con {2} punti"
-
-#: public/js/frappe/utils/energy_point_utils.js:56
-msgid "{0} criticized {1}"
-msgstr "{0} criticato {1}"
-
-#: public/js/frappe/utils/pretty_date.js:33
+#: frappe/public/js/frappe/utils/pretty_date.js:33
msgid "{0} d"
-msgstr "{0} d"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:60
+#: frappe/public/js/frappe/utils/pretty_date.js:60
msgid "{0} days ago"
-msgstr "{0} giorni fa"
+msgstr ""
-#: website/doctype/website_settings/website_settings.py:96
-#: website/doctype/website_settings/website_settings.py:116
+#: frappe/website/doctype/website_settings/website_settings.py:96
+#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
-msgstr "{0} non esiste nella riga {1}"
+msgstr ""
-#: database/mariadb/schema.py:131 database/postgres/schema.py:184
+#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:184
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
-msgstr "{0} campo non può essere impostato come unica in {1}, in quanto vi sono valori non univoci esistenti"
+msgstr ""
-#: core/doctype/data_import/importer.py:1017
+#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:97
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101
msgid "{0} from {1} to {2}"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:157
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:165
msgid "{0} from {1} to {2} in row #{3}"
msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:120
-msgid "{0} gained {1} point for {2} {3}"
-msgstr "{0} ha guadagnato {1} punto per {2} {3}"
-
-#: templates/emails/energy_points_summary.html:8
-msgid "{0} gained {1} points"
-msgstr ""
-
-#: social/doctype/energy_point_log/energy_point_log.py:122
-msgid "{0} gained {1} points for {2} {3}"
-msgstr "{0} ha guadagnato {1} punti per {2} {3}"
-
-#: templates/emails/energy_points_summary.html:23
-msgid "{0} gave {1} points"
-msgstr ""
-
-#: public/js/frappe/utils/pretty_date.js:29
+#: frappe/public/js/frappe/utils/pretty_date.js:29
msgid "{0} h"
-msgstr "{0} h"
+msgstr ""
-#: core/doctype/user_permission/user_permission.py:76
+#: frappe/core/doctype/user_permission/user_permission.py:77
msgid "{0} has already assigned default value for {1}."
-msgstr "{0} ha già assegnato il valore predefinito per {1}."
+msgstr ""
-#: email/doctype/newsletter/newsletter.py:382
+#: frappe/email/doctype/newsletter/newsletter.py:380
msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} correttamente aggiunto al gruppo e-mail."
+msgstr ""
-#: email/queue.py:127
+#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
-msgstr "{0} ha lasciato la conversazione in {1} {2}"
+msgstr ""
-#: __init__.py:2373
-msgid "{0} has no versions tracked."
-msgstr "{0} non ha alcuna traccia tracciata."
-
-#: public/js/frappe/utils/pretty_date.js:54
+#: frappe/public/js/frappe/utils/pretty_date.js:54
msgid "{0} hours ago"
-msgstr "{0} ore fa"
+msgstr ""
-#: website/doctype/web_form/templates/web_form.html:145
+#: frappe/website/doctype/web_form/templates/web_form.html:148
msgid "{0} if you are not redirected within {1} seconds"
-msgstr "{0} se non vieni reindirizzato entro {1} secondi"
+msgstr ""
-#: website/doctype/website_settings/website_settings.py:102
-#: website/doctype/website_settings/website_settings.py:122
+#: frappe/website/doctype/website_settings/website_settings.py:102
+#: frappe/website/doctype/website_settings/website_settings.py:122
msgid "{0} in row {1} cannot have both URL and child items"
-msgstr "{0} in riga {1} non può avere sia URL che elementi figlio"
+msgstr ""
-#: core/doctype/doctype/doctype.py:916
+#: frappe/core/doctype/doctype/doctype.py:934
msgid "{0} is a mandatory field"
-msgstr "{0} è un campo obbligatorio"
+msgstr ""
-#: core/doctype/file/file.py:503
+#: frappe/core/doctype/file/file.py:544
msgid "{0} is a not a valid zip file"
msgstr ""
-#: core/doctype/doctype/doctype.py:1559
+#: frappe/core/doctype/doctype/doctype.py:1618
msgid "{0} is an invalid Data field."
-msgstr "{0} è un campo dati non valido."
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:147
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154
msgid "{0} is an invalid email address in 'Recipients'"
-msgstr "{0} è un indirizzo email non valido nel campo 'Destinatari'"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1394
+#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
msgstr ""
-#: public/js/frappe/form/sidebar/form_sidebar_users.js:41
-#: public/js/frappe/form/sidebar/form_sidebar_users.js:69
+#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:41
+#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:69
msgid "{0} is currently {1}"
-msgstr "{0} è attualmente {1}"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1363
+#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1383
+#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1373
+#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1413
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
msgstr ""
-#: email/doctype/email_account/email_account.py:169
+#: frappe/email/doctype/email_account/email_account.py:193
msgid "{0} is mandatory"
-msgstr "{0} è obbligatorio"
+msgstr ""
-#: core/doctype/document_naming_rule/document_naming_rule.py:49
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
-#: www/printview.py:350
+#: frappe/www/printview.py:384
msgid "{0} is not a raw printing format."
-msgstr "{0} non è un formato di stampa non elaborato."
+msgstr ""
-#: public/js/frappe/views/calendar/calendar.js:81
+#: frappe/public/js/frappe/views/calendar/calendar.js:82
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr ""
-#: public/js/frappe/form/controls/dynamic_link.js:27
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
+msgid "{0} is not a valid Cron expression."
+msgstr ""
+
+#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
msgid "{0} is not a valid DocType for Dynamic Link"
-msgstr "{0} non è un DocType valido per Dynamic Link"
+msgstr ""
-#: email/doctype/email_group/email_group.py:130 utils/__init__.py:189
+#: frappe/email/doctype/email_group/email_group.py:131
+#: frappe/utils/__init__.py:202
msgid "{0} is not a valid Email Address"
-msgstr "{0} non è un indirizzo e-mail valido"
+msgstr ""
-#: utils/__init__.py:157
+#: frappe/geo/doctype/country/country.py:30
+msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
+msgstr ""
+
+#: frappe/utils/__init__.py:170
msgid "{0} is not a valid Name"
-msgstr "{0} non è un nome valido"
+msgstr ""
-#: utils/__init__.py:136
+#: frappe/utils/__init__.py:149
msgid "{0} is not a valid Phone Number"
-msgstr "{0} non è un numero di telefono valido"
+msgstr ""
-#: model/workflow.py:186
+#: frappe/model/workflow.py:189
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
-msgstr "{0} non è uno stato del flusso di lavoro valido. Aggiorna il tuo flusso di lavoro e riprova."
+msgstr ""
-#: permissions.py:795
+#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: permissions.py:815
+#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
-#: email/doctype/auto_email_report/auto_email_report.py:109
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
msgid "{0} is not a valid report format. Report format should one of the following {1}"
-msgstr "{0} non è un formato di rapporto valido. Il formato del rapporto dovrebbe essere uno dei seguenti {1}"
+msgstr ""
-#: core/doctype/file/file.py:483
+#: frappe/core/doctype/file/file.py:524
msgid "{0} is not a zip file"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1368
+#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1415
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1409
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1419
+#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
msgstr ""
-#: printing/doctype/print_format/print_format.py:166
+#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
-msgstr "{0} è ora il formato di stampa predefinito per il doctype {1}"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1402
+#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
msgstr ""
-#: email/doctype/email_account/email_account.py:263 model/naming.py:201
-#: printing/doctype/print_format/print_format.py:93 utils/csvutils.py:131
+#: frappe/email/doctype/email_account/email_account.py:304
+#: frappe/model/naming.py:218
+#: frappe/printing/doctype/print_format/print_format.py:92
+#: frappe/utils/csvutils.py:156
msgid "{0} is required"
-msgstr "{0} è richiesto"
+msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1418
+#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
msgstr ""
-#: public/js/frappe/views/reports/report_view.js:1397
+#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
msgstr ""
-#: public/js/frappe/list/list_view.js:1556
+#: frappe/public/js/frappe/list/list_view.js:1694
msgid "{0} items selected"
-msgstr "{0} elementi selezionati"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:150
-#: public/js/frappe/form/sidebar/form_sidebar.js:96
+#: frappe/core/doctype/user/user.py:1380
+msgid "{0} just impersonated as you. They gave this reason: {1}"
+msgstr ""
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:152
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
msgstr ""
-#: core/doctype/activity_log/feed.py:13
+#: frappe/core/doctype/activity_log/feed.py:13
msgid "{0} logged in"
-msgstr "{0} ha effettuato l'accesso"
-
-#: core/doctype/activity_log/feed.py:19
-msgid "{0} logged out: {1}"
-msgstr "{0} disconnesso: {1}"
-
-#: public/js/frappe/utils/pretty_date.js:27
-msgid "{0} m"
-msgstr "{0} m"
-
-#: desk/notifications.py:373
-msgid "{0} mentioned you in a comment in {1} {2}"
-msgstr "{0} ti ha menzionato in un commento in {1} {2}"
-
-#: public/js/frappe/utils/pretty_date.js:50
-msgid "{0} minutes ago"
-msgstr "{0} minuti fa"
-
-#: public/js/frappe/utils/pretty_date.js:68
-msgid "{0} months ago"
-msgstr "{0} mesi fa"
-
-#: model/document.py:1564
-msgid "{0} must be after {1}"
-msgstr "{0} deve essere dopo {1}"
-
-#: utils/csvutils.py:136
-msgid "{0} must be one of {1}"
-msgstr "{0} deve essere uno di {1}"
-
-#: model/base_document.py:771
-msgid "{0} must be set first"
-msgstr "{0} deve essere impostato prima"
-
-#: model/base_document.py:629
-msgid "{0} must be unique"
-msgstr "{0} deve essere univoco"
-
-#: core/doctype/language/language.py:42
-msgid ""
-"{0} must begin and end with a letter and can only contain letters,\n"
-"\t\t\t\thyphen or underscore."
msgstr ""
-#: workflow/doctype/workflow/workflow.py:93
+#: 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:1791
+msgid "{0} must be after {1}"
+msgstr ""
+
+#: frappe/model/document.py:1550
+msgid "{0} must be beginning with '{1}'"
+msgstr ""
+
+#: frappe/model/document.py:1552
+msgid "{0} must be equal to '{1}'"
+msgstr ""
+
+#: frappe/model/document.py:1548
+msgid "{0} must be none of {1}"
+msgstr ""
+
+#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+msgid "{0} must be one of {1}"
+msgstr ""
+
+#: frappe/model/base_document.py:876
+msgid "{0} must be set first"
+msgstr ""
+
+#: frappe/model/base_document.py:729
+msgid "{0} must be unique"
+msgstr ""
+
+#: frappe/model/document.py:1554
+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:90
msgid "{0} not a valid State"
-msgstr "{0} non è uno Stato valido"
+msgstr ""
-#: model/rename_doc.py:388
+#: frappe/model/rename_doc.py:394
msgid "{0} not allowed to be renamed"
-msgstr "{0} non può essere rinominato"
+msgstr ""
-#: desk/doctype/desktop_icon/desktop_icon.py:371
+#: frappe/desk/doctype/desktop_icon/desktop_icon.py:365
msgid "{0} not found"
-msgstr "{0} non trovato"
+msgstr ""
-#: core/doctype/report/report.py:416 public/js/frappe/list/list_view.js:956
+#: frappe/core/doctype/report/report.py:427
+#: frappe/public/js/frappe/list/list_view.js:1068
msgid "{0} of {1}"
-msgstr "{0} di {1}"
+msgstr ""
-#: public/js/frappe/list/list_view.js:958
+#: frappe/public/js/frappe/list/list_view.js:1070
msgid "{0} of {1} ({2} rows with children)"
-msgstr "{0} di {1} ({2} righe con figli)"
+msgstr ""
-#: email/doctype/newsletter/newsletter.js:205
+#: frappe/email/doctype/newsletter/newsletter.js:205
msgid "{0} of {1} sent"
msgstr ""
-#: utils/data.py:1705
+#: frappe/utils/data.py:1555
+msgctxt "Money in words"
+msgid "{0} only."
+msgstr ""
+
+#: frappe/utils/data.py:1730
msgid "{0} or {1}"
-msgstr "{0} o {1}"
+msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:177
+#: frappe/core/doctype/user_permission/user_permission_list.js:177
msgid "{0} record deleted"
-msgstr "{0} record eliminato"
+msgstr ""
-#: public/js/frappe/logtypes.js:22
+#: frappe/public/js/frappe/logtypes.js:22
msgid "{0} records are not automatically deleted."
msgstr ""
-#: public/js/frappe/logtypes.js:29
+#: frappe/public/js/frappe/logtypes.js:29
msgid "{0} records are retained for {1} days."
msgstr ""
-#: core/doctype/user_permission/user_permission_list.js:179
+#: frappe/core/doctype/user_permission/user_permission_list.js:179
msgid "{0} records deleted"
-msgstr "{0} record eliminati"
+msgstr ""
-#: public/js/frappe/data_import/data_exporter.js:225
+#: frappe/public/js/frappe/data_import/data_exporter.js:229
msgid "{0} records will be exported"
-msgstr "Verranno esportati {0} record"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:419
+#: frappe/public/js/frappe/form/footer/form_timeline.js:420
msgctxt "Form timeline"
msgid "{0} removed attachment {1}"
msgstr ""
-#: desk/doctype/todo/todo.py:58
+#: frappe/desk/doctype/todo/todo.py:58
msgid "{0} removed their assignment."
msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:139
-#: social/doctype/energy_point_log/energy_point_log.py:178
-msgid "{0} reverted your point on {1}"
-msgstr "{0} ha ripristinato il tuo punto su {1}"
+#: frappe/public/js/frappe/roles_editor.js:62
+msgid "{0} role does not have permission on any doctype"
+msgstr ""
-#: social/doctype/energy_point_log/energy_point_log.py:141
-#: social/doctype/energy_point_log/energy_point_log.py:180
-msgid "{0} reverted your points on {1}"
-msgstr "{0} ha ripristinato i tuoi punti su {1}"
+#: frappe/model/document.py:1784
+msgid "{0} row #{1}: "
+msgstr ""
-#: public/js/frappe/utils/energy_point_utils.js:44
-#: public/js/frappe/utils/energy_point_utils.js:59
-msgid "{0} reverted {1}"
-msgstr "{0} ripristinato {1}"
-
-#: desk/query_report.py:583
+#: frappe/desk/query_report.py:612
msgid "{0} saved successfully"
-msgstr "{0} salvato correttamente"
+msgstr ""
-#: desk/doctype/todo/todo.py:44
+#: frappe/desk/doctype/todo/todo.py:44
msgid "{0} self assigned this task: {1}"
-msgstr "{0} auto assegnato questa attività: {1}"
+msgstr ""
-#: share.py:238
+#: frappe/share.py:233
msgid "{0} shared a document {1} {2} with you"
-msgstr "{0} ha condiviso un documento {1} {2} con te"
+msgstr ""
-#: core/doctype/docshare/docshare.py:79
+#: frappe/core/doctype/docshare/docshare.py:77
msgid "{0} shared this document with everyone"
-msgstr "{0} condiviso questo documento con tutti"
+msgstr ""
-#: core/doctype/docshare/docshare.py:82
+#: frappe/core/doctype/docshare/docshare.py:80
msgid "{0} shared this document with {1}"
-msgstr "{0} ha condiviso questo documento con {1}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:320
+#: frappe/core/doctype/doctype/doctype.py:316
msgid "{0} should be indexed because it's referred in dashboard connections"
msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:136
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141
msgid "{0} should not be same as {1}"
-msgstr "{0} non dovrebbe essere uguale a {1}"
+msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:51
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:51
msgid "{0} submitted this document"
msgstr ""
-#: public/js/frappe/form/footer/version_timeline_content_builder.js:42
+#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:42
msgctxt "Form timeline"
msgid "{0} submitted this document {1}"
msgstr ""
-#: email/doctype/email_group/email_group.py:61
-#: email/doctype/email_group/email_group.py:132
+#: frappe/email/doctype/email_group/email_group.py:62
+#: frappe/email/doctype/email_group/email_group.py:133
msgid "{0} subscribers added"
-msgstr "{0} abbonati aggiunti"
+msgstr ""
-#: email/queue.py:70
+#: frappe/email/queue.py:68
msgid "{0} to stop receiving emails of this type"
-msgstr "{0} per interrompere la ricezione di email di questo tipo"
+msgstr ""
-#: public/js/frappe/form/controls/date_range.js:46
-#: public/js/frappe/form/controls/date_range.js:62
-#: public/js/frappe/form/formatters.js:218
+#: frappe/public/js/frappe/form/controls/date_range.js:48
+#: frappe/public/js/frappe/form/controls/date_range.js:64
+#: frappe/public/js/frappe/form/formatters.js:234
msgid "{0} to {1}"
-msgstr "{0} a {1}"
+msgstr ""
-#: core/doctype/docshare/docshare.py:91
+#: frappe/core/doctype/docshare/docshare.py:89
msgid "{0} un-shared this document with {1}"
-msgstr "{0} ha rimosso la condivisione da questo documento con {1}"
+msgstr ""
-#: custom/doctype/customize_form/customize_form.py:249
+#: frappe/custom/doctype/customize_form/customize_form.py:253
msgid "{0} updated"
-msgstr "{0} aggiornato"
+msgstr ""
-#: public/js/frappe/form/controls/multiselect_list.js:162
+#: frappe/public/js/frappe/form/controls/multiselect_list.js:198
msgid "{0} values selected"
-msgstr "{0} valori selezionati"
+msgstr ""
-#: public/js/frappe/form/footer/form_timeline.js:183
+#: frappe/public/js/frappe/form/footer/form_timeline.js:184
msgid "{0} viewed this"
msgstr ""
-#: public/js/frappe/utils/pretty_date.js:35
+#: frappe/public/js/frappe/utils/pretty_date.js:35
msgid "{0} w"
-msgstr "{0} w"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:64
+#: frappe/public/js/frappe/utils/pretty_date.js:64
msgid "{0} weeks ago"
-msgstr "{0} settimane fa"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:39
+#: frappe/public/js/frappe/utils/pretty_date.js:39
msgid "{0} y"
-msgstr "{0} y"
+msgstr ""
-#: public/js/frappe/utils/pretty_date.js:72
+#: frappe/public/js/frappe/utils/pretty_date.js:72
msgid "{0} years ago"
-msgstr "{0} anni fa"
+msgstr ""
-#: public/js/frappe/form/link_selector.js:219
+#: frappe/public/js/frappe/form/link_selector.js:219
msgid "{0} {1} added"
-msgstr "{0} {1} aggiunto"
+msgstr ""
-#: public/js/frappe/utils/dashboard_utils.js:270
+#: frappe/public/js/frappe/utils/dashboard_utils.js:270
msgid "{0} {1} added to Dashboard {2}"
-msgstr "{0} {1} aggiunto alla dashboard {2}"
+msgstr ""
-#: model/base_document.py:562 model/rename_doc.py:112
+#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
-msgstr "{0} {1} esiste già"
+msgstr ""
-#: model/base_document.py:873
+#: frappe/model/base_document.py:987
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
-msgstr "{0} {1} non può essere \"{2}\". Dovrebbe essere uno di \"{3}\""
+msgstr ""
-#: utils/nestedset.py:343
+#: frappe/utils/nestedset.py:340
msgid "{0} {1} cannot be a leaf node as it has children"
-msgstr "{0} {1} non può essere una foglia dato che ha figli"
+msgstr ""
-#: model/rename_doc.py:377
+#: frappe/model/rename_doc.py:376
msgid "{0} {1} does not exist, select a new target to merge"
-msgstr "{0} {1} non esiste, selezionare un nuovo obiettivo da unire"
+msgstr ""
-#: public/js/frappe/form/form.js:970
+#: frappe/public/js/frappe/form/form.js:951
msgid "{0} {1} is linked with the following submitted documents: {2}"
-msgstr "{0} {1} è collegato ai seguenti documenti inviati: {2}"
+msgstr ""
-#: model/document.py:170 permissions.py:566
+#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
-msgstr "{0} {1} non trovato"
+msgstr ""
-#: model/delete_doc.py:231
+#: frappe/model/delete_doc.py:247
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
-msgstr "{0} {1}: impossibile eliminare il record inviato. Devi prima {2} annullarlo {3}."
+msgstr ""
-#: model/base_document.py:988
+#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
-msgstr "{0}, Riga {1}"
+msgstr ""
-#: model/base_document.py:993
+#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
+msgid "{0}/{1} complete | Please leave this tab open until completion."
+msgstr ""
+
+#: frappe/model/base_document.py:1120
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
-msgstr "{0}: '{1}' ({3}) saranno troncati, il numero massimo di caratteri è pari a {2}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1741
+#: frappe/core/doctype/doctype/doctype.py:1800
msgid "{0}: Cannot set Amend without Cancel"
-msgstr "{0}: Impossibile impostare Modifica senza Annulla"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1759
+#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr "{0}: Impossibile impostare Assegna la Correzione se non Confermabile"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1757
+#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr "{0}: Impossibile Confermare se non Confermabile"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1736
+#: frappe/core/doctype/doctype/doctype.py:1795
msgid "{0}: Cannot set Cancel without Submit"
-msgstr "{0}: Impossibile Annullare senza Confermare"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1743
+#: frappe/core/doctype/doctype/doctype.py:1802
msgid "{0}: Cannot set Import without Create"
-msgstr "{0}: Impossibile impostare Importazione senza Creazione"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1739
+#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr "{0}: Impossibile impostare Invia, Annulla, Modifica senza Scrivere"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1763
+#: frappe/core/doctype/doctype/doctype.py:1822
msgid "{0}: Cannot set import as {1} is not importable"
-msgstr "{0}: Impossibile impostare importazione dato che {1} non è importabile"
+msgstr ""
-#: automation/doctype/auto_repeat/auto_repeat.py:393
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
-msgstr "{0}: Impossibile allegare un nuovo documento ricorrente. Per abilitare l'allegato del documento nell'e-mail di notifica di ripetizione automatica, abilitare {1} in Impostazioni stampa"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1377
+#: frappe/core/doctype/doctype/doctype.py:1426
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
-msgstr "{0}: Il campo '{1}' non può essere impostato come Unico in quanto ha valori non univoci"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1285
+#: frappe/core/doctype/doctype/doctype.py:1334
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
-msgstr "{0}: il campo {1} nella riga {2} non può essere nascosto e obbligatorio senza impostazione predefinita"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1244
+#: frappe/core/doctype/doctype/doctype.py:1293
msgid "{0}: Field {1} of type {2} cannot be mandatory"
-msgstr "{0}: Il campo {1} di tipo {2} non può essere obbligatorio"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1232
+#: frappe/core/doctype/doctype/doctype.py:1281
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
-msgstr "{0}: il nome campo {1} appare più volte nelle righe {2}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1362
+#: frappe/core/doctype/doctype/doctype.py:1413
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
-msgstr "{0}: Il tipo di campo {1} per {2} non può essere univoco"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1698
+#: frappe/core/doctype/doctype/doctype.py:1755
msgid "{0}: No basic permissions set"
-msgstr "{0}: Nessun set di autorizzazioni di base"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1712
+#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
-msgstr "{0}: Solo una regola permessa per lo stesso Ruolo, Livello e {1}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1266
+#: frappe/core/doctype/doctype/doctype.py:1315
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
-msgstr "{0}: Le opzioni devono essere un DocType valido per il campo {1} nella riga {2}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1255
+#: frappe/core/doctype/doctype/doctype.py:1304
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
-msgstr "{0}: Opzioni richieste per il campo Tipo collegamento o Tabella {1} nella riga {2}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1273
+#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
-msgstr "{0}: Le opzioni {1} devono corrispondere al nome del tipo di documento {2} per il campo {3}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1727
+#: frappe/public/js/frappe/form/workflow.js:45
+msgid "{0}: Other permission rules may also apply"
+msgstr ""
+
+#: frappe/core/doctype/doctype/doctype.py:1784
msgid "{0}: Permission at level 0 must be set before higher levels are set"
-msgstr "{0}: L'autorizzazione al livello 0 deve essere impostata prima dei livelli più elevati"
+msgstr ""
-#: public/js/frappe/form/controls/data.js:50
+#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
msgstr ""
-#: core/doctype/doctype/doctype.py:1219
+#: frappe/core/doctype/doctype/doctype.py:1268
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
msgstr ""
-#: contacts/doctype/address/address.js:35
-#: contacts/doctype/contact/contact.js:78
-#: public/js/frappe/views/workspace/workspace.js:169
+#: frappe/contacts/doctype/address/address.js:35
+#: frappe/contacts/doctype/contact/contact.js:88
msgid "{0}: {1}"
msgstr ""
-#: workflow/doctype/workflow_action/workflow_action.py:172
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:172
msgid "{0}: {1} is set to state {2}"
-msgstr "{0}: {1} è impostato per indicare {2}"
+msgstr ""
-#: public/js/frappe/views/reports/query_report.js:1190
+#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
-msgstr "{0}: {1} contro {2}"
+msgstr ""
-#: core/doctype/doctype/doctype.py:1385
+#: frappe/core/doctype/doctype/doctype.py:1434
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
-msgstr "{0}: Il tipo di campo {1} per {2} non può essere indicizzato"
+msgstr ""
-#: public/js/frappe/utils/datatable.js:12
+#: frappe/public/js/frappe/form/quick_entry.js:195
+msgid "{1} saved"
+msgstr ""
+
+#: frappe/public/js/frappe/utils/datatable.js:12
msgid "{count} cell copied"
msgstr ""
-#: public/js/frappe/utils/datatable.js:13
+#: frappe/public/js/frappe/utils/datatable.js:13
msgid "{count} cells copied"
msgstr ""
-#: public/js/frappe/utils/datatable.js:16
+#: frappe/public/js/frappe/utils/datatable.js:16
msgid "{count} row selected"
msgstr ""
-#: public/js/frappe/utils/datatable.js:17
+#: frappe/public/js/frappe/utils/datatable.js:17
msgid "{count} rows selected"
msgstr ""
-#: core/doctype/doctype/doctype.py:1439
+#: frappe/core/doctype/doctype/doctype.py:1488
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
-msgstr "{{{0}}} non è un modello fieldname valido. Dovrebbe essere {{nome_campo}}."
+msgstr ""
-#: public/js/frappe/form/form.js:553
+#: frappe/public/js/frappe/form/form.js:521
msgid "{} Complete"
-msgstr "{} Completare"
+msgstr ""
-#: utils/data.py:2418
+#: frappe/utils/data.py:2488
msgid "{} Invalid python code on line {}"
msgstr ""
-#: utils/data.py:2427
+#: frappe/utils/data.py:2497
msgid "{} Possibly invalid python code.
{}"
msgstr ""
-#: core/doctype/log_settings/log_settings.py:54
+#. Count format of shortcut in the Website Workspace
+#: frappe/website/workspace/website/website.json
+msgid "{} Published"
+msgstr ""
+
+#: frappe/core/doctype/log_settings/log_settings.py:54
msgid "{} does not support automated log clearing."
msgstr ""
-#: core/doctype/audit_trail/audit_trail.py:40
+#: frappe/core/doctype/audit_trail/audit_trail.py:41
msgid "{} field cannot be empty."
msgstr ""
-#: email/doctype/email_account/email_account.py:193
-#: email/doctype/email_account/email_account.py:200
+#: frappe/email/doctype/email_account/email_account.py:223
+#: frappe/email/doctype/email_account/email_account.py:231
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: utils/data.py:123
+#: frappe/utils/data.py:135
msgid "{} is not a valid date string."
-msgstr "{} non è una stringa di data valida."
+msgstr ""
-#: commands/utils.py:519
+#: frappe/commands/utils.py:562
msgid "{} not found in PATH! This is required to access the console."
msgstr ""
-#: database/db_manager.py:81
+#: frappe/database/db_manager.py:99
msgid "{} not found in PATH! This is required to restore the database."
msgstr ""
-#: utils/backups.py:441
+#: frappe/utils/backups.py:466
msgid "{} not found in PATH! This is required to take a backup."
msgstr ""
+#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:5
+#: frappe/public/js/frappe/file_uploader/WebLink.vue:4
+msgid "← Back to upload files"
+msgstr ""
+
diff --git a/frappe/locale/nl.po b/frappe/locale/nl.po
index a9c427a369..51c022ecde 100644
--- a/frappe/locale/nl.po
+++ b/frappe/locale/nl.po
@@ -2,14 +2,14 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-08 09:34+0000\n"
-"PO-Revision-Date: 2025-06-16 15:30\n"
+"POT-Creation-Date: 2025-06-22 09:34+0000\n"
+"PO-Revision-Date: 2025-06-22 16:41\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Dutch\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.13.1\n"
+"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"
@@ -20,7 +20,7 @@ msgstr ""
#: frappe/templates/emails/download_data.html:9
msgid " to your browser"
-msgstr ""
+msgstr "naar uw browser"
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
@@ -36,7 +36,7 @@ msgstr ""
#: frappe/core/doctype/data_export/exporter.py:202
msgid "\"Parent\" signifies the parent table in which this row must be added"
-msgstr ""
+msgstr "\"Bovenliggend\" betekent de bovenliggende tabel waarin deze rij moet worden toegevoegd"
#. Description of the 'Team Members Heading' (Data) field in DocType 'About Us
#. Settings'
@@ -84,7 +84,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.py:362
msgid "'In List View' not allowed for type {0} in row {1}"
-msgstr ""
+msgstr "'In lijst weergave' niet toegestaan voor type {0} in rij {1}"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156
msgid "'Recipients' not specified"
@@ -138,17 +138,17 @@ msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.py:374
msgid "1 Google Calendar Event synced."
-msgstr ""
+msgstr "1 Google Agenda-evenement gesynchroniseerd."
-#: frappe/public/js/frappe/views/reports/query_report.js:951
+#: frappe/public/js/frappe/views/reports/query_report.js:953
msgid "1 Report"
msgstr ""
#: frappe/website/doctype/blog_post/blog_post.py:380
msgid "1 comment"
-msgstr ""
+msgstr "1 reactie"
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:711
msgid "1 day ago"
msgstr ""
@@ -157,19 +157,19 @@ msgid "1 hour"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:709
msgid "1 hour ago"
-msgstr ""
+msgstr "1 uur geleden"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:707
msgid "1 minute ago"
-msgstr ""
+msgstr "1 minuut geleden"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:715
msgid "1 month ago"
-msgstr ""
+msgstr "1 maand geleden"
#: frappe/public/js/print_format_builder/PrintFormat.vue:3
msgid "1 of 2"
@@ -177,39 +177,39 @@ msgstr ""
#: frappe/public/js/frappe/data_import/data_exporter.js:227
msgid "1 record will be exported"
-msgstr ""
+msgstr "1 record wordt geëxporteerd"
-#: frappe/tests/test_utils.py:705
+#: frappe/tests/test_utils.py:706
msgid "1 second ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:713
msgid "1 week ago"
-msgstr ""
+msgstr "1 week geleden"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:717
msgid "1 year ago"
-msgstr ""
+msgstr "1 jaar geleden"
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:710
msgid "2 hours ago"
msgstr ""
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:716
msgid "2 months ago"
msgstr ""
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:714
msgid "2 weeks ago"
msgstr ""
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:718
msgid "2 years ago"
msgstr ""
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:708
msgid "3 minutes ago"
msgstr ""
@@ -223,15 +223,15 @@ msgstr ""
#: frappe/public/js/frappe/data_import/data_exporter.js:37
msgid "5 Records"
-msgstr ""
+msgstr "5 records"
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:712
msgid "5 days ago"
msgstr ""
#: frappe/desk/doctype/bulk_update/bulk_update.py:36
msgid "; not allowed in condition"
-msgstr ""
+msgstr "; niet toegelaten in conditie"
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
@@ -245,7 +245,7 @@ msgstr ""
msgid "<="
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:588
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
msgid "{0} is not a valid URL"
msgstr ""
@@ -557,7 +557,7 @@ msgstr ""
#: frappe/website/doctype/blog_post/blog_post.py:92
msgid "A featured post must have a cover image"
-msgstr ""
+msgstr "Een uitgelicht bericht moet een omslagafbeelding hebben"
#: frappe/custom/doctype/custom_field/custom_field.py:175
msgid "A field with the name {0} already exists in {1}"
@@ -574,7 +574,7 @@ msgstr ""
#: frappe/templates/emails/new_user.html:5
msgid "A new account has been created for you at {0}"
-msgstr ""
+msgstr "Een nieuw account is aangemaakt voor u op {0}"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400
msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}."
@@ -591,7 +591,7 @@ msgstr ""
#: frappe/utils/password_strength.py:169
msgid "A word by itself is easy to guess."
-msgstr ""
+msgstr "Een vrijstaand woord is gemakkelijk te raden."
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -654,10 +654,7 @@ msgid "API"
msgstr ""
#. Label of the api_access (Section Break) field in DocType 'User'
-#. Label of the api_access_section (Section Break) field in DocType 'S3 Backup
-#. Settings'
#: frappe/core/doctype/user/user.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "API Access"
msgstr ""
@@ -744,24 +741,24 @@ msgstr ""
#: frappe/website/doctype/about_us_settings/about_us_settings.json
#: frappe/website/workspace/website/website.json
msgid "About Us Settings"
-msgstr ""
+msgstr "Over Ons Instellingen"
#. Name of a DocType
#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
msgid "About Us Team Member"
-msgstr ""
+msgstr "Over ons Teamlid"
#: frappe/core/doctype/data_import/data_import.js:27
msgid "About {0} minute remaining"
-msgstr ""
+msgstr "Ongeveer {0} minuut resterend"
#: frappe/core/doctype/data_import/data_import.js:28
msgid "About {0} minutes remaining"
-msgstr ""
+msgstr "Ongeveer {0} minuten resterend"
#: frappe/core/doctype/data_import/data_import.js:25
msgid "About {0} seconds remaining"
-msgstr ""
+msgstr "Ongeveer {0} seconden resterend"
#. Label of the access_control_section (Section Break) field in DocType 'Web
#. Form'
@@ -769,17 +766,6 @@ msgstr ""
msgid "Access Control"
msgstr ""
-#. Label of the access_key_id (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key ID"
-msgstr ""
-
-#. Label of the secret_access_key (Password) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key Secret"
-msgstr ""
-
#. Name of a DocType
#. Label of a Link in the Users Workspace
#: frappe/core/doctype/access_log/access_log.json
@@ -830,6 +816,10 @@ msgstr ""
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'
@@ -848,7 +838,7 @@ msgstr ""
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
msgid "Action"
-msgstr ""
+msgstr "Actie"
#. Label of the action (Small Text) field in DocType 'DocType Action'
#: frappe/core/doctype/doctype_action/doctype_action.json
@@ -860,9 +850,9 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1872
+#: frappe/model/document.py:1871
msgid "Action Failed"
-msgstr ""
+msgstr "Actie is mislukt"
#. Label of the action_label (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -909,12 +899,12 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:192
-#: frappe/public/js/frappe/views/reports/query_report.js:205
-#: frappe/public/js/frappe/views/reports/query_report.js:215
-#: frappe/public/js/frappe/views/reports/query_report.js:845
+#: frappe/public/js/frappe/views/reports/query_report.js:190
+#: frappe/public/js/frappe/views/reports/query_report.js:203
+#: frappe/public/js/frappe/views/reports/query_report.js:213
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Actions"
-msgstr ""
+msgstr "Acties"
#. Label of the activate (Check) field in DocType 'Package Import'
#: frappe/core/doctype/package_import/package_import.json
@@ -931,7 +921,7 @@ msgstr ""
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/workflow/doctype/workflow/workflow_list.js:5
msgid "Active"
-msgstr ""
+msgstr "Actief"
#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
@@ -956,7 +946,7 @@ msgstr ""
#: frappe/public/js/frappe/form/dashboard.js:22
#: frappe/public/js/frappe/form/footer/form_timeline.js:60
msgid "Activity"
-msgstr ""
+msgstr "Activiteit"
#. Name of a DocType
#. Label of a Link in the Build Workspace
@@ -965,7 +955,7 @@ msgstr ""
#: frappe/core/workspace/build/build.json
#: frappe/core/workspace/users/users.json
msgid "Activity Log"
-msgstr ""
+msgstr "Activiteitenlogboek"
#: frappe/core/page/permission_manager/permission_manager.js:482
#: frappe/email/doctype/email_group/email_group.js:60
@@ -974,11 +964,11 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:267
-#: frappe/public/js/frappe/views/reports/query_report.js:295
+#: frappe/public/js/frappe/views/reports/query_report.js:265
+#: frappe/public/js/frappe/views/reports/query_report.js:293
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
-msgstr ""
+msgstr "Toevoegen"
#: frappe/public/js/frappe/form/grid_row.js:438
msgid "Add / Remove Columns"
@@ -986,16 +976,16 @@ msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:4
msgid "Add / Update"
-msgstr ""
+msgstr "Toevoegen / bijwerken"
#: frappe/core/page/permission_manager/permission_manager.js:442
msgid "Add A New Rule"
-msgstr ""
+msgstr "Voeg een nieuwe regel toe"
#: frappe/public/js/frappe/views/communication.js:595
#: frappe/public/js/frappe/views/interaction.js:159
msgid "Add Attachment"
-msgstr ""
+msgstr "Voeg bijlage toe"
#. Label of the add_background_image (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
@@ -1016,30 +1006,30 @@ msgstr ""
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:211
+#: frappe/public/js/frappe/views/reports/query_report.js:209
msgid "Add Chart to Dashboard"
-msgstr ""
+msgstr "Grafiek toevoegen aan dashboard"
#: frappe/public/js/frappe/views/treeview.js:301
msgid "Add Child"
-msgstr ""
+msgstr "Onderliggende toevoegen"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1769
-#: frappe/public/js/frappe/views/reports/query_report.js:1772
-#: frappe/public/js/frappe/views/reports/report_view.js:349
-#: frappe/public/js/frappe/views/reports/report_view.js:374
+#: frappe/public/js/frappe/views/reports/query_report.js:1771
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/report_view.js:355
+#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
-msgstr ""
+msgstr "Kolom toevoegen"
#: frappe/core/doctype/communication/communication.js:127
msgid "Add Contact"
-msgstr ""
+msgstr "Contact toevoegen"
#: frappe/desk/doctype/event/event.js:38
msgid "Add Contacts"
-msgstr ""
+msgstr "Contacten toevoegen"
#. Label of the add_container (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
@@ -1052,9 +1042,9 @@ msgid "Add Custom Tags"
msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
-#: frappe/public/js/frappe/widgets/widget_dialog.js:703
+#: frappe/public/js/frappe/widgets/widget_dialog.js:716
msgid "Add Filters"
-msgstr ""
+msgstr "Filters toevoegen"
#. Label of the add_shade (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
@@ -1064,7 +1054,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/group_by/group_by.js:230
#: frappe/public/js/frappe/ui/group_by/group_by.js:427
msgid "Add Group"
-msgstr ""
+msgstr "Groep toevoegen"
#: frappe/core/doctype/recorder/recorder.js:30
msgid "Add Indexes"
@@ -1072,22 +1062,22 @@ msgstr ""
#: frappe/public/js/frappe/form/grid.js:66
msgid "Add Multiple"
-msgstr ""
+msgstr "Meerdere toevoegen"
#: frappe/core/page/permission_manager/permission_manager.js:445
msgid "Add New Permission Rule"
-msgstr ""
+msgstr "Toevoegen nieuwe machtiging regel"
#: frappe/desk/doctype/event/event.js:35 frappe/desk/doctype/event/event.js:42
msgid "Add Participants"
-msgstr ""
+msgstr "Voeg deelnemers toe"
#. 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:806
+#: frappe/core/doctype/user/user.py:808
msgid "Add Roles"
msgstr ""
@@ -1099,7 +1089,7 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/public/js/frappe/views/communication.js:130
msgid "Add Signature"
-msgstr ""
+msgstr "Handtekening toevoegen"
#. Label of the add_bottom_padding (Check) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
@@ -1114,7 +1104,7 @@ msgstr ""
#: frappe/email/doctype/email_group/email_group.js:38
#: frappe/email/doctype/email_group/email_group.js:59
msgid "Add Subscribers"
-msgstr ""
+msgstr "Abonnees toevoegen"
#: frappe/public/js/frappe/list/bulk_operations.js:425
msgid "Add Tags"
@@ -1146,7 +1136,7 @@ msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:6
msgid "Add User Permissions"
-msgstr ""
+msgstr "Gebruikersrechten toevoegen"
#. Label of the add_video_conferencing (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
@@ -1168,7 +1158,7 @@ msgstr ""
#: frappe/templates/includes/comments/comments.html:30
#: frappe/templates/includes/comments/comments.html:47
msgid "Add a comment"
-msgstr ""
+msgstr "Voeg een reactie toe"
#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:28
#: frappe/public/js/form_builder/components/Tabs.vue:192
@@ -1193,7 +1183,7 @@ msgstr ""
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:286
msgid "Add a {0} Chart"
-msgstr ""
+msgstr "Voeg een {0} diagram toe"
#: frappe/public/js/form_builder/components/Section.vue:271
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:115
@@ -1216,7 +1206,7 @@ msgstr ""
#: frappe/custom/doctype/client_script/client_script.js:16
msgid "Add script for Child Table"
-msgstr ""
+msgstr "Script toevoegen voor onderliggende tabel"
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:111
msgid "Add section above"
@@ -1232,7 +1222,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:253
+#: frappe/public/js/frappe/views/reports/query_report.js:251
msgid "Add to Dashboard"
msgstr ""
@@ -1387,11 +1377,11 @@ msgstr ""
msgid "Administrator"
msgstr ""
-#: frappe/core/doctype/user/user.py:1211
+#: frappe/core/doctype/user/user.py:1213
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1205
+#: frappe/core/doctype/user/user.py:1207
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
@@ -1624,12 +1614,6 @@ msgstr ""
msgid "Allow Consecutive Login Attempts "
msgstr ""
-#. Label of the allow_dropbox_access (Button) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Allow Dropbox Access"
-msgstr ""
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
msgid "Allow Google Calendar Access"
msgstr ""
@@ -1638,10 +1622,6 @@ msgstr ""
msgid "Allow Google Contacts Access"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:52
-msgid "Allow Google Drive Access"
-msgstr ""
-
#. Label of the allow_guest (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
@@ -1895,7 +1875,7 @@ msgstr ""
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
-#: frappe/core/doctype/user/user.py:1021
+#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr ""
@@ -1903,11 +1883,11 @@ msgstr ""
msgid "Already in the following Users ToDo list:{0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:896
+#: frappe/public/js/frappe/views/reports/report_view.js:902
msgid "Also adding the dependent currency field {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:909
+#: frappe/public/js/frappe/views/reports/report_view.js:915
msgid "Also adding the status dependency field {0}"
msgstr ""
@@ -1986,7 +1966,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:550
+#: frappe/model/document.py:549
msgid "Amendment Not Allowed"
msgstr ""
@@ -2015,7 +1995,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:35
msgid "Ancestors Of"
-msgstr ""
+msgstr "Voorouders van"
#. Label of the announcement_widget (Text Editor) field in DocType 'Navbar
#. Settings'
@@ -2075,15 +2055,6 @@ msgstr ""
msgid "App"
msgstr ""
-#. Label of the app_access_key (Data) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Access Key"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:22
-msgid "App Access Key and/or Secret Key are not present."
-msgstr ""
-
#. Label of the client_id (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client ID"
@@ -2115,20 +2086,15 @@ msgstr ""
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "App Name"
-msgstr ""
-
-#. Label of the app_secret_key (Password) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Secret Key"
-msgstr ""
+msgstr "App Naam"
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1462
+#: frappe/__init__.py:1465
msgid "App {0} is not installed"
-msgstr ""
+msgstr "App {0} is niet geïnstalleerd"
#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email
#. Account'
@@ -2148,7 +2114,7 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.py:202
msgid "Append To can be one of {0}"
-msgstr ""
+msgstr "Toevoegen aan kan een van {0}"
#. Description of the 'Append To' (Link) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -2194,7 +2160,7 @@ msgstr ""
#: frappe/public/js/frappe/list/list_view.js:1989
msgctxt "Button in list view actions menu"
msgid "Apply Assignment Rule"
-msgstr ""
+msgstr "Toewijzingsregel toepassen"
#: frappe/public/js/frappe/ui/filters/filter_list.js:318
msgid "Apply Filters"
@@ -2237,11 +2203,11 @@ msgstr ""
#: frappe/core/doctype/user_permission/user_permission_list.js:75
msgid "Apply to all Documents Types"
-msgstr ""
+msgstr "Toepassen op alle soorten documenten"
#: frappe/model/workflow.py:266
msgid "Applying: {0}"
-msgstr ""
+msgstr "Toepassen: {0}"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:115
msgid "Approval Required"
@@ -2276,14 +2242,14 @@ msgstr ""
msgid "Are you sure you want to clear the assignments?"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:290
+#: frappe/public/js/frappe/form/grid.js:294
msgid "Are you sure you want to delete all rows?"
-msgstr ""
+msgstr "Weet u zeker dat u alle rijen wilt verwijderen?"
#: 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 "Weet u zeker dat u de bijlage wilt verwijderen?"
#: frappe/public/js/form_builder/components/Section.vue:197
msgctxt "Confirmation dialog message"
@@ -2304,7 +2270,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:965
+#: frappe/public/js/frappe/views/reports/query_report.js:967
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2430,7 +2396,7 @@ msgstr ""
msgid "Assigned By Full Name"
msgstr ""
-#: frappe/model/meta.py:60
+#: 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
@@ -2700,13 +2666,11 @@ msgstr ""
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
#. Contacts'
-#. Label of the authorization_code (Data) field in DocType 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
@@ -2744,12 +2708,6 @@ msgstr ""
msgid "Authorize Google Contacts Access"
msgstr ""
-#. Label of the authorize_google_drive_access (Button) field in DocType 'Google
-#. Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Authorize Google Drive 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"
@@ -2896,11 +2854,11 @@ msgstr ""
msgid "Automatic"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:774
+#: 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:768
+#: frappe/email/doctype/email_account/email_account.py:766
msgid "Automatic Linking can be activated only if Incoming is enabled."
msgstr ""
@@ -3114,66 +3072,14 @@ msgstr ""
msgid "Background Workers"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:170
-msgid "Backing up Data."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:32
-msgid "Backing up to Google Drive."
-msgstr ""
-
-#. Label of a Card Break in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Backup"
-msgstr ""
-
-#. Label of the backup_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Details"
-msgstr ""
-
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
msgstr ""
-#. Label of the backup_files (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Files"
-msgstr ""
-
-#. Label of the backup_folder_id (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder ID"
-msgstr ""
-
-#. Label of the backup_folder_name (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder Name"
-msgstr ""
-
-#. Label of the backup_frequency (Select) field in DocType 'Dropbox Settings'
-#. Label of the frequency (Select) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Frequency"
-msgstr ""
-
-#. Label of the backup_path (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Path"
-msgstr ""
-
#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
msgstr ""
-#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup public and private files along with the database."
-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'
@@ -3187,7 +3093,7 @@ msgstr ""
msgid "Backups (MB)"
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:65
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
msgid "Bad Cron Expression"
msgstr ""
@@ -3584,15 +3490,6 @@ msgstr ""
msgid "Brute Force Security"
msgstr ""
-#. Label of the bucket (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Bucket Name"
-msgstr ""
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:71
-msgid "Bucket {0} not found."
-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"
@@ -3629,7 +3526,7 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1184
+#: frappe/public/js/frappe/form/grid.js:1188
msgid "Bulk Edit {0}"
msgstr ""
@@ -3704,12 +3601,6 @@ msgstr ""
msgid "By default the title is used as meta title, adding a value here will override it."
msgstr ""
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "By default, emails are only sent for failed backups."
-msgstr ""
-
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
@@ -4020,7 +3911,7 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1156
+#: frappe/model/base_document.py:1161
msgid "Cannot Update After Submit"
msgstr ""
@@ -4040,11 +3931,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1012
+#: frappe/model/document.py:1011
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1026
+#: frappe/model/document.py:1025
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -4127,7 +4018,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1032
+#: frappe/model/document.py:1031
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4160,11 +4051,11 @@ msgstr ""
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1128
+#: frappe/public/js/frappe/form/grid.js:1132
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1100
+#: frappe/model/document.py:1099
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4180,7 +4071,7 @@ msgstr ""
msgid "Cannot move row"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:921
+#: frappe/public/js/frappe/views/reports/report_view.js:927
msgid "Cannot remove ID field"
msgstr ""
@@ -4205,11 +4096,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr ""
-#: frappe/model/db_query.py:1125
+#: frappe/model/db_query.py:1126
msgid "Cannot use sub-query in order by"
msgstr ""
-#: frappe/model/db_query.py:1144
+#: frappe/model/db_query.py:1145
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4235,7 +4126,7 @@ msgstr ""
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:261
msgid "Card Label"
msgstr ""
@@ -4377,7 +4268,7 @@ msgstr ""
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:290
+#: frappe/public/js/frappe/views/reports/query_report.js:288
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4397,7 +4288,7 @@ 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:499
+#: frappe/public/js/frappe/views/reports/report_view.js:505
msgid "Chart Type"
msgstr ""
@@ -4511,7 +4402,7 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:638
+#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4604,10 +4495,6 @@ msgstr ""
msgid "Click here to verify"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:47
-msgid "Click on Authorize Google Drive Access to authorize Google Drive Access."
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4634,7 +4521,6 @@ msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
-#: frappe/integrations/doctype/google_drive/google_drive.py:53
#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
msgstr ""
@@ -4808,7 +4694,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4863,9 +4749,9 @@ 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:1229
-#: frappe/public/js/frappe/widgets/widget_dialog.js:533
-#: frappe/public/js/frappe/widgets/widget_dialog.js:681
+#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: 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
@@ -5006,7 +4892,7 @@ msgstr ""
msgid "Comment publicity can only be updated by the original author or a System Manager."
msgstr ""
-#: frappe/model/meta.py:59 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/model/meta.js:209
#: frappe/public/js/frappe/model/model.js:135
#: frappe/website/doctype/web_form/templates/web_form.html:122
@@ -5113,7 +4999,7 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:477
+#: frappe/core/doctype/user/user.py:478
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
@@ -5209,7 +5095,7 @@ msgstr ""
msgid "Configuration"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:481
+#: frappe/public/js/frappe/views/reports/report_view.js:487
msgid "Configure Chart"
msgstr ""
@@ -5546,7 +5432,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1096
+#: frappe/model/document.py:1095
msgid "Could not find {0}"
msgstr ""
@@ -5575,7 +5461,7 @@ msgstr ""
msgid "Count"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:527
+#: frappe/public/js/frappe/widgets/widget_dialog.js:540
msgid "Count Customizations"
msgstr ""
@@ -5583,10 +5469,14 @@ msgstr ""
#. 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:512
+#: 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"
@@ -5637,7 +5527,7 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1261
+#: frappe/public/js/frappe/views/reports/query_report.js:1263
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5651,13 +5541,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:188
-#: frappe/public/js/frappe/views/reports/query_report.js:233
+#: frappe/public/js/frappe/views/reports/query_report.js:186
+#: frappe/public/js/frappe/views/reports/query_report.js:231
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:286
-#: frappe/public/js/frappe/views/reports/query_report.js:1188
+#: frappe/public/js/frappe/views/reports/query_report.js:284
+#: frappe/public/js/frappe/views/reports/query_report.js:1190
msgid "Create Chart"
msgstr ""
@@ -5768,7 +5658,7 @@ msgstr ""
msgid "Created At"
msgstr ""
-#: frappe/model/meta.py:56
+#: 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
@@ -5780,14 +5670,14 @@ 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:51
+#: 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:515
+#: frappe/public/js/frappe/desk.js:523
#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
msgstr ""
@@ -5810,7 +5700,7 @@ msgstr ""
msgid "Cron Format"
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:59
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
msgstr ""
@@ -6207,11 +6097,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -6220,9 +6105,6 @@ msgstr ""
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:398
#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
@@ -6776,7 +6658,7 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/toolbar.js:461
-#: frappe/public/js/frappe/views/reports/report_view.js:1734
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
@@ -6819,7 +6701,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:932
+#: frappe/public/js/frappe/views/reports/query_report.js:934
msgid "Delete and Generate New"
msgstr ""
@@ -6828,7 +6710,7 @@ msgctxt "Button text"
msgid "Delete column"
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:738
+#: frappe/public/js/frappe/form/footer/form_timeline.js:741
msgid "Delete comment?"
msgstr ""
@@ -6914,7 +6796,7 @@ msgstr ""
msgid "Deleting {0} records..."
msgstr ""
-#: frappe/public/js/frappe/model/model.js:741
+#: frappe/public/js/frappe/model/model.js:692
msgid "Deleting {0}..."
msgstr ""
@@ -6960,7 +6842,7 @@ 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:310
+#: frappe/public/js/frappe/widgets/widget_dialog.js:323
#: frappe/www/attribution.html:29
msgid "Dependencies"
msgstr ""
@@ -7074,6 +6956,7 @@ msgstr ""
#: 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
@@ -7371,14 +7254,10 @@ 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:1189
+#: frappe/public/js/frappe/form/grid.js:1193
msgid "Do not edit headers which are preset in the template"
msgstr ""
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:69
-msgid "Do not have permission to access bucket {0}."
-msgstr ""
-
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
@@ -7511,7 +7390,7 @@ 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:466
+#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
msgstr ""
@@ -7571,7 +7450,7 @@ 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:669
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
msgid "Doctype"
msgstr ""
@@ -7689,7 +7568,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:477
+#: frappe/model/document.py:476
msgid "Document Queued"
msgstr ""
@@ -7742,7 +7621,7 @@ msgstr ""
msgid "Document States"
msgstr ""
-#: frappe/model/meta.py:52 frappe/public/js/frappe/model/meta.js:202
+#: 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 ""
@@ -7813,11 +7692,11 @@ msgstr ""
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: frappe/permissions.py:148
+#: frappe/permissions.py:149
msgid "Document Type is not importable"
msgstr ""
-#: frappe/permissions.py:144
+#: frappe/permissions.py:145
msgid "Document Type is not submittable"
msgstr ""
@@ -7846,7 +7725,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1943
+#: frappe/model/document.py:1942
msgid "Document Unlocked"
msgstr ""
@@ -8037,7 +7916,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:835
+#: frappe/public/js/frappe/views/reports/query_report.js:830
msgid "Download Report"
msgstr ""
@@ -8048,7 +7927,7 @@ 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:57
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
msgid "Download Your Data"
msgstr ""
@@ -8104,29 +7983,6 @@ msgstr ""
msgid "Drop files here"
msgstr ""
-#. Label of the dropbox_access_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Access Token"
-msgstr ""
-
-#. Label of the dropbox_refresh_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Refresh Token"
-msgstr ""
-
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Dropbox Settings"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:347
-msgid "Dropbox Setup"
-msgstr ""
-
#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
@@ -8156,7 +8012,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:666 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
@@ -8255,13 +8111,13 @@ msgstr ""
#: 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:668
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:669
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:883
-#: frappe/public/js/frappe/views/reports/query_report.js:1722
+#: frappe/public/js/frappe/views/reports/query_report.js:878
+#: frappe/public/js/frappe/views/reports/query_report.js:1724
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8424,7 +8280,7 @@ msgstr ""
msgid "Edit your workflow visually using the Workflow Builder."
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:672
+#: frappe/public/js/frappe/views/reports/report_view.js:678
#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
msgstr ""
@@ -8525,7 +8381,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:736
+#: frappe/core/doctype/user/user.py:738
msgid "Email Account added multiple times"
msgstr ""
@@ -8533,7 +8389,7 @@ msgstr ""
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:578
+#: frappe/email/doctype/email_account/email_account.py:576
msgid "Email Account {0} Disabled"
msgstr ""
@@ -8759,7 +8615,7 @@ msgstr ""
msgid "Emails Pulled"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:936
+#: frappe/email/doctype/email_account/email_account.py:934
msgid "Emails are already being pulled from this account."
msgstr ""
@@ -8782,11 +8638,9 @@ 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 Drive'
#. 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_drive/google_drive.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
msgstr ""
@@ -8806,11 +8660,6 @@ msgstr ""
msgid "Enable Auto Reply"
msgstr ""
-#. Label of the enabled (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Enable Automatic Backup"
-msgstr ""
-
#. Label of the enable_automatic_linking (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -8969,7 +8818,6 @@ msgstr ""
#. 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 'Dropbox Settings'
#. 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'
@@ -8980,7 +8828,6 @@ msgstr ""
#: 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/dropbox_settings/dropbox_settings.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/public/js/frappe/model/indicator.js:106
@@ -8993,7 +8840,7 @@ msgstr ""
msgid "Enabled Scheduler"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:1012
+#: frappe/email/doctype/email_account/email_account.py:1010
msgid "Enabled email inbox for user {0}"
msgstr ""
@@ -9074,11 +8921,6 @@ msgstr ""
msgid "Ended At"
msgstr ""
-#. Label of the endpoint_url (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Endpoint URL"
-msgstr ""
-
#. Label of the sb_endpoints_section (Section Break) field in DocType
#. 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -9257,7 +9099,7 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:672
+#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9265,15 +9107,15 @@ msgstr ""
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr ""
-#: frappe/model/base_document.py:806
+#: frappe/model/base_document.py:803
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:816
+#: frappe/model/base_document.py:813
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:810
+#: frappe/model/base_document.py:807
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9422,7 +9264,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2069
+#: frappe/public/js/frappe/views/reports/query_report.js:2071
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9448,7 +9290,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9505,8 +9347,8 @@ 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:1757
-#: frappe/public/js/frappe/views/reports/report_view.js:1621
+#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
@@ -9557,11 +9399,11 @@ msgstr ""
msgid "Export Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1632
+#: frappe/public/js/frappe/views/reports/report_view.js:1638
msgid "Export all matching rows?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1642
+#: frappe/public/js/frappe/views/reports/report_view.js:1648
msgid "Export all {0} rows?"
msgstr ""
@@ -9869,8 +9711,8 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:237
-#: frappe/public/js/frappe/views/reports/query_report.js:1816
+#: frappe/public/js/frappe/views/reports/query_report.js:235
+#: frappe/public/js/frappe/views/reports/query_report.js:1818
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9945,7 +9787,7 @@ msgstr ""
msgid "Field {0} does not exist on {1}"
msgstr ""
-#: frappe/desk/form/meta.py:208
+#: frappe/desk/form/meta.py:184
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
@@ -10048,7 +9890,7 @@ msgstr ""
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
-#: frappe/model/db_query.py:144
+#: frappe/model/db_query.py:146
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
@@ -10097,13 +9939,6 @@ msgstr ""
msgid "File '{0}' not found"
msgstr ""
-#. Label of the file_backup (Check) field in DocType 'Dropbox Settings'
-#. Label of the file_backup (Check) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "File Backup"
-msgstr ""
-
#. Label of the private_file_section (Section Break) field in DocType 'Access
#. Log'
#: frappe/core/doctype/access_log/access_log.json
@@ -10304,7 +10139,7 @@ msgstr ""
msgid "Filters {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1421
+#: frappe/public/js/frappe/views/reports/report_view.js:1427
msgid "Filters:"
msgstr ""
@@ -10451,7 +10286,7 @@ msgstr ""
msgid "Following document {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:111
+#: frappe/website/doctype/web_form/web_form.py:108
msgid "Following fields are missing:"
msgstr ""
@@ -10459,7 +10294,7 @@ msgstr ""
msgid "Following fields have invalid values:"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:345
+#: frappe/public/js/frappe/widgets/widget_dialog.js:358
msgid "Following fields have missing values"
msgstr ""
@@ -10602,7 +10437,7 @@ msgstr ""
msgid "For Document Type"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:553
+#: frappe/public/js/frappe/widgets/widget_dialog.js:566
msgid "For Example: {} Open"
msgstr ""
@@ -10631,7 +10466,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/query_report.js:2068
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10784,7 +10619,7 @@ msgstr ""
#. 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:552
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
msgid "Format"
msgstr ""
@@ -10816,7 +10651,7 @@ msgstr ""
#. 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:149
+#: frappe/www/login.py:153
msgid "Frappe"
msgstr ""
@@ -10833,7 +10668,7 @@ msgstr ""
msgid "Frappe Mail"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:549
+#: frappe/email/doctype/email_account/email_account.py:547
msgid "Frappe Mail OAuth Error"
msgstr ""
@@ -10861,13 +10696,11 @@ msgstr ""
#. 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'
-#. Label of the frequency (Select) field in DocType 'Google Drive'
#: 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/integrations/doctype/google_drive/google_drive.json
#: frappe/public/js/frappe/utils/common.js:395
msgid "Frequency"
msgstr ""
@@ -10913,7 +10746,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
+#: frappe/public/js/frappe/views/reports/query_report.js:1779
msgid "From Document Type"
msgstr ""
@@ -10964,16 +10797,16 @@ 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:247
-#: frappe/public/js/frappe/widgets/widget_dialog.js:686
+#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:693
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:670
+#: frappe/__init__.py:677
msgid "Function {0} is not whitelisted."
msgstr ""
@@ -11038,7 +10871,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:877
+#: frappe/public/js/frappe/views/reports/query_report.js:872
msgid "Generate New Report"
msgstr ""
@@ -11326,32 +11159,12 @@ msgstr ""
msgid "Google Contacts Id"
msgstr ""
-#. Name of a DocType
-#. Label of the google_drive_section (Section Break) field in DocType 'Google
-#. Drive'
#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/google_drive/google_drive.json
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:117
-msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:132
-msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:193
-msgid "Google Drive - Could not locate - {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:204
-msgid "Google Drive Backup Successful."
-msgstr ""
-
#. Label of the section_break_7 (Section Break) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -11681,6 +11494,10 @@ msgstr ""
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'
@@ -12004,17 +11821,17 @@ msgstr ""
msgid "Home Settings"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:330
-#: frappe/core/doctype/file/test_file.py:332
-#: frappe/core/doctype/file/test_file.py:396
+#: 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:385
+#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:341
+#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
msgstr ""
@@ -12059,7 +11876,7 @@ msgstr ""
#: frappe/core/doctype/data_import/importer.py:1177
#: frappe/core/doctype/data_import/importer.py:1242
#: frappe/core/doctype/data_import/importer.py:1245
-#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:50
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
#: frappe/public/js/frappe/list/list_settings.js:337
@@ -12071,7 +11888,7 @@ msgid "ID"
msgstr ""
#: frappe/desk/reportview.py:491
-#: frappe/public/js/frappe/views/reports/report_view.js:978
+#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
msgstr ""
@@ -12255,12 +12072,6 @@ msgstr ""
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
msgstr ""
-#. Description of the 'Backup Path' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "If it's empty, it will backup to the root of the bucket."
-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"
@@ -12391,16 +12202,12 @@ msgstr ""
msgid "Ignored Apps"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:348
-msgid "Illegal Access Token. Please try again"
-msgstr ""
-
#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
msgstr ""
-#: frappe/model/db_query.py:451 frappe/model/db_query.py:454
-#: frappe/model/db_query.py:1128
+#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
+#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
msgstr ""
@@ -12749,11 +12556,11 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1592
+#: frappe/public/js/frappe/views/reports/query_report.js:1594
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1584
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Include indentation"
msgstr ""
@@ -12820,11 +12627,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1542
+#: frappe/model/document.py:1541
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1544
+#: frappe/model/document.py:1543
msgid "Incorrect value:"
msgstr ""
@@ -12833,10 +12640,10 @@ msgstr ""
#. 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:53
+#: 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:999
+#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
msgstr ""
@@ -12911,7 +12718,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:1822
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
msgid "Insert After"
msgstr ""
@@ -12927,7 +12734,7 @@ msgstr ""
msgid "Insert Below"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:384
+#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
msgstr ""
@@ -12976,11 +12783,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:818
+#: frappe/permissions.py:827
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:376
+#: frappe/database/query.py:383
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -13098,7 +12905,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:221
#: frappe/public/js/frappe/form/grid_row.js:833
#: frappe/public/js/frappe/form/layout.js:811
-#: frappe/public/js/frappe/views/reports/report_view.js:710
+#: frappe/public/js/frappe/views/reports/report_view.js:716
msgid "Invalid \"depends_on\" expression"
msgstr ""
@@ -13138,7 +12945,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:102
+#: frappe/database/query.py:103
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13183,6 +12990,7 @@ 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 ""
@@ -13207,7 +13015,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1226 frappe/www/update-password.html:123
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
#: frappe/www/update-password.html:247
msgid "Invalid Password"
@@ -13236,7 +13044,7 @@ msgstr ""
#: frappe/core/doctype/file/file.py:220
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
-#: frappe/public/js/frappe/widgets/widget_dialog.js:589
+#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
msgstr ""
@@ -13257,11 +13065,11 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:393
+#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
-#: frappe/model/document.py:1015 frappe/model/document.py:1029
+#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13285,7 +13093,7 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:182
+#: frappe/database/query.py:189
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
@@ -13311,7 +13119,7 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:324
+#: frappe/app.py:317
msgid "Invalid request arguments"
msgstr ""
@@ -13495,7 +13303,7 @@ 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:328
+#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
msgstr ""
@@ -13710,6 +13518,10 @@ msgstr ""
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 ""
@@ -13741,7 +13553,7 @@ msgstr ""
#. 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:498
+#: frappe/public/js/frappe/widgets/widget_dialog.js:511
msgid "Kanban Board"
msgstr ""
@@ -14013,10 +13825,10 @@ msgstr ""
#: 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:300
-#: frappe/public/js/frappe/widgets/widget_dialog.js:453
-#: frappe/public/js/frappe/widgets/widget_dialog.js:630
-#: frappe/public/js/frappe/widgets/widget_dialog.js:663
+#: 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
@@ -14101,11 +13913,6 @@ msgstr ""
msgid "Last Active"
msgstr ""
-#. Label of the last_backup_on (Datetime) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Last Backup On"
-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"
@@ -14190,12 +13997,12 @@ msgstr ""
msgid "Last Synced On"
msgstr ""
-#: frappe/model/meta.py:55 frappe/public/js/frappe/model/meta.js:205
+#: 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:54 frappe/public/js/frappe/model/meta.js:204
+#: 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 ""
@@ -14239,7 +14046,7 @@ msgid "Leave blank to repeat always"
msgstr ""
#: frappe/core/doctype/communication/mixins.py:207
-#: frappe/email/doctype/email_account/email_account.py:722
+#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
msgstr ""
@@ -14458,7 +14265,7 @@ msgstr ""
msgid "Liked"
msgstr ""
-#: frappe/model/meta.py:58 frappe/public/js/frappe/model/meta.js:208
+#: 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 ""
@@ -14473,11 +14280,6 @@ msgstr ""
msgid "Limit"
msgstr ""
-#. Label of the limit_no_of_backups (Check) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Limit Number of DB Backups"
-msgstr ""
-
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14592,11 +14394,11 @@ msgstr ""
#: 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:414
+#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:350
+#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
msgstr ""
@@ -14609,7 +14411,7 @@ msgstr ""
msgid "Link Type"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:346
+#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
msgstr ""
@@ -14761,7 +14563,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1085
+#: frappe/public/js/frappe/views/reports/query_report.js:1087
msgid "Loading"
msgstr ""
@@ -14892,7 +14694,7 @@ msgstr ""
msgid "Login Page"
msgstr ""
-#: frappe/www/login.py:152
+#: frappe/www/login.py:156
msgid "Login To {0}"
msgstr ""
@@ -15159,7 +14961,7 @@ msgstr ""
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:473
+#: frappe/website/doctype/web_form/web_form.py:470
msgid "Mandatory Information missing:"
msgstr ""
@@ -15434,7 +15236,7 @@ msgid "Menu"
msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:242
-#: frappe/public/js/frappe/model/model.js:754
+#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr ""
@@ -15613,7 +15415,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:672
+#: frappe/__init__.py:679
msgid "Method Not Allowed"
msgstr ""
@@ -15690,7 +15492,7 @@ msgstr ""
msgid "Miss"
msgstr ""
-#: frappe/desk/form/meta.py:218
+#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
msgstr ""
@@ -15715,7 +15517,7 @@ msgid "Missing Value"
msgstr ""
#: frappe/public/js/frappe/ui/field_group.js:124
-#: frappe/public/js/frappe/widgets/widget_dialog.js:361
+#: 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"
@@ -15898,8 +15700,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -15907,7 +15707,6 @@ msgstr ""
#: 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/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:400
#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
@@ -16079,7 +15878,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:462
+#: frappe/website/doctype/web_form/web_form.py:459
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16245,7 +16044,7 @@ msgstr ""
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:793
+#: frappe/model/document.py:792
msgid "Negative Value"
msgstr ""
@@ -16350,7 +16149,7 @@ 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:762
+#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr ""
@@ -16384,7 +16183,7 @@ msgstr ""
msgid "New Quick List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
msgstr ""
@@ -16440,26 +16239,26 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
#: frappe/public/js/frappe/form/toolbar.js:558
-#: frappe/public/js/frappe/model/model.js:661
+#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:379
+#: frappe/website/doctype/web_form/web_form.py:376
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:394
+#: frappe/public/js/frappe/views/reports/query_report.js:392
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:386
+#: frappe/public/js/frappe/views/reports/query_report.js:384
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:391
+#: frappe/public/js/frappe/views/reports/query_report.js:389
msgid "New {0} {1} created"
msgstr ""
@@ -16471,7 +16270,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:802
+#: frappe/core/doctype/user/user.py:804
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16633,7 +16432,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16774,7 +16573,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:803
+#: frappe/core/doctype/user/user.py:805
msgid "No Roles Specified"
msgstr ""
@@ -16925,7 +16724,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:827 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16934,7 +16733,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
-#: frappe/model/db_query.py:949
+#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
msgstr ""
@@ -17018,12 +16817,6 @@ msgstr ""
msgid "Non-Conforming"
msgstr ""
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "None"
-msgstr ""
-
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr ""
@@ -17038,7 +16831,7 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr ""
@@ -17059,7 +16852,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:374 frappe/www/404.html:3
+#: frappe/app.py:367 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -17085,9 +16878,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:754 frappe/app.py:367 frappe/desk/calendar.py:26
+#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:711
+#: frappe/website/doctype/web_form/web_form.py:708
#: 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
@@ -17108,7 +16901,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:813
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
-#: frappe/public/js/frappe/views/reports/report_view.js:197
+#: frappe/public/js/frappe/views/reports/report_view.js:203
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
@@ -17139,7 +16932,7 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:264
+#: frappe/core/doctype/user/user.py:265
msgid "Not a valid User Image."
msgstr ""
@@ -17155,7 +16948,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:360
+#: frappe/permissions.py:370
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17175,7 +16968,7 @@ msgstr ""
msgid "Not allowed to print draft documents"
msgstr ""
-#: frappe/permissions.py:212
+#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
msgstr ""
@@ -17191,12 +16984,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:214
+#: frappe/core/doctype/system_settings/system_settings.py:215
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:724
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17222,15 +17015,6 @@ msgstr ""
msgid "Note:"
msgstr ""
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'Dropbox Settings'
-#. Description of the 'Send Email for Successful backup' (Check) field in
-#. DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Note: By default emails for failed backups are sent."
-msgstr ""
-
#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr ""
@@ -17290,13 +17074,10 @@ msgstr ""
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
#. Name of a DocType
-#. Label of the notification_section (Section Break) field in DocType 'S3
-#. Backup Settings'
#: 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
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Notification"
msgstr ""
@@ -17398,7 +17179,7 @@ msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:615
+#: frappe/public/js/frappe/widgets/widget_dialog.js:628
msgid "Number Card"
msgstr ""
@@ -17416,7 +17197,7 @@ 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:645
+#: frappe/public/js/frappe/widgets/widget_dialog.js:658
msgid "Number Cards"
msgstr ""
@@ -17434,15 +17215,6 @@ msgstr ""
msgid "Number of Backups"
msgstr ""
-#. Label of the no_of_backups (Int) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Number of DB Backups"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:54
-msgid "Number of DB backups cannot be less than 1"
-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"
@@ -17458,7 +17230,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:169
+#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17687,7 +17459,7 @@ 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:322
+#: frappe/public/js/frappe/widgets/widget_dialog.js:335
msgid "Onboard"
msgstr ""
@@ -17783,19 +17555,13 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Only change this if you want to use other S3 compatible object storage backends."
-msgstr ""
-
-#: frappe/model/document.py:1232
+#: frappe/model/document.py:1231
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:315
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
msgstr ""
@@ -18044,7 +17810,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:870
+#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
msgstr ""
@@ -18156,7 +17922,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1742
+#: frappe/public/js/frappe/views/reports/query_report.js:1744
msgid "PDF"
msgstr ""
@@ -18455,7 +18221,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:798
+#: frappe/permissions.py:807
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18515,11 +18281,11 @@ msgstr ""
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1079
+#: frappe/core/doctype/user/user.py:1081
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:457
+#: frappe/core/doctype/user/user.py:458
msgid "Password Reset"
msgstr ""
@@ -18553,7 +18319,7 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1078
+#: frappe/core/doctype/user/user.py:1080
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18565,7 +18331,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:869
+#: frappe/core/doctype/user/user.py:871
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18722,7 +18488,7 @@ msgstr ""
msgid "Permanently Submit {0}?"
msgstr ""
-#: frappe/public/js/frappe/model/model.js:733
+#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
msgstr ""
@@ -18883,8 +18649,8 @@ msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:40
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
-#: frappe/public/js/frappe/views/reports/report_view.js:1576
+#: frappe/public/js/frappe/views/reports/report_view.js:1579
+#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
msgstr ""
@@ -18924,7 +18690,7 @@ msgstr ""
msgid "Plant"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:546
+#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
msgstr ""
@@ -18940,7 +18706,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:309
+#: frappe/public/js/frappe/views/reports/query_report.js:307
msgid "Please Set Chart"
msgstr ""
@@ -18956,7 +18722,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1063
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -18984,11 +18750,11 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:946
+#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1059
+#: frappe/core/doctype/user/user.py:1061
msgid "Please check your email for verification"
msgstr ""
@@ -19016,10 +18782,6 @@ msgstr ""
msgid "Please click on the following link to set your new password"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:343
-msgid "Please close this window"
-msgstr ""
-
#: frappe/www/confirm_workflow_action.html:4
msgid "Please confirm your action to {0} this document."
msgstr ""
@@ -19036,7 +18798,7 @@ msgstr ""
msgid "Please create chart first"
msgstr ""
-#: frappe/desk/form/meta.py:214
+#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
msgstr ""
@@ -19048,7 +18810,7 @@ msgstr ""
msgid "Please duplicate this to make changes"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:162
+#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19066,7 +18828,7 @@ msgstr ""
msgid "Please enable pop-ups in your browser"
msgstr ""
-#: frappe/integrations/google_oauth.py:53
+#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
msgstr ""
@@ -19143,7 +18905,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:987
+#: frappe/model/document.py:986
msgid "Please refresh to get the latest document."
msgstr ""
@@ -19167,7 +18929,7 @@ msgstr ""
msgid "Please save the document before removing assignment"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1703
+#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
msgstr ""
@@ -19183,11 +18945,11 @@ msgstr ""
msgid "Please select Entity Type first"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:112
+#: frappe/core/doctype/system_settings/system_settings.py:113
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1181
+#: frappe/public/js/frappe/views/reports/query_report.js:1183
msgid "Please select X and Y fields"
msgstr ""
@@ -19215,7 +18977,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1140
+#: frappe/model/db_query.py:1141
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19237,10 +18999,6 @@ msgstr ""
msgid "Please select {0}"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:305
-msgid "Please set Dropbox access keys in site config or doctype"
-msgstr ""
-
#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
msgstr ""
@@ -19249,7 +19007,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:1404
+#: frappe/public/js/frappe/views/reports/query_report.js:1406
msgid "Please set filters"
msgstr ""
@@ -19269,7 +19027,7 @@ msgstr ""
msgid "Please set the series to be used."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:125
+#: frappe/core/doctype/system_settings/system_settings.py:126
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr ""
@@ -19277,19 +19035,19 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:422
+#: frappe/core/doctype/user/user.py:423
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:434
+#: 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:823
+#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:774
+#: frappe/permissions.py:783
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19318,7 +19076,7 @@ msgstr ""
msgid "Please try again"
msgstr ""
-#: frappe/integrations/google_oauth.py:56
+#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
msgstr ""
@@ -19631,8 +19389,8 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1728
-#: frappe/public/js/frappe/views/reports/report_view.js:1531
+#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr ""
@@ -19875,7 +19633,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
msgstr ""
@@ -20196,7 +19954,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:729
+#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
msgstr ""
@@ -20217,7 +19975,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:554
+#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
msgstr ""
@@ -20250,12 +20008,6 @@ msgstr ""
msgid "Queued for Submission. You can track the progress over {0}."
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:65
-#: frappe/integrations/doctype/google_drive/google_drive.py:153
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:86
-msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr ""
-
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
@@ -20391,7 +20143,7 @@ msgstr ""
msgid "Re-Run in Console"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:728
+#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
msgstr ""
@@ -20493,7 +20245,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:889
+#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
msgstr ""
@@ -20858,11 +20610,11 @@ msgid "Referrer"
msgstr ""
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:548
+#: frappe/public/js/frappe/desk.js:556
#: 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:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1719
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20881,12 +20633,10 @@ 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 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
@@ -20903,7 +20653,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
msgstr ""
@@ -21066,7 +20816,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
#: frappe/public/js/frappe/form/toolbar.js:432
-#: frappe/public/js/frappe/model/model.js:772
+#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
msgstr ""
@@ -21076,7 +20826,7 @@ msgstr ""
msgid "Rename Fieldname"
msgstr ""
-#: frappe/public/js/frappe/model/model.js:759
+#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
msgstr ""
@@ -21140,7 +20890,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:146
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
msgstr ""
@@ -21278,7 +21028,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1902
+#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
msgstr ""
@@ -21330,7 +21080,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1009
+#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
msgstr ""
@@ -21346,11 +21096,11 @@ msgstr ""
msgid "Report updated successfully"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1351
+#: frappe/public/js/frappe/views/reports/report_view.js:1357
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1940
+#: frappe/public/js/frappe/views/reports/query_report.js:1942
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21386,7 +21136,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:925
+#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
msgstr ""
@@ -21836,7 +21586,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:363
+#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -21951,7 +21701,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:855 frappe/model/document.py:778
+#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
msgstr ""
@@ -21964,7 +21714,7 @@ msgstr ""
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:982
msgid "Row #{0}:"
msgstr ""
@@ -22042,7 +21792,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:653
+#: frappe/permissions.py:662
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22086,23 +21836,6 @@ msgstr ""
msgid "Runtime in Seconds"
msgstr ""
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "S3 Backup Settings"
-msgstr ""
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
-msgid "S3 Backup complete!"
-msgstr ""
-
-#. Label of the s3_bucket_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Bucket Details"
-msgstr ""
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
@@ -22243,7 +21976,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/page/print/print.js:858
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/quick_entry.js:185
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
@@ -22253,8 +21986,8 @@ msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
-#: frappe/public/js/frappe/views/reports/query_report.js:1894
-#: frappe/public/js/frappe/views/reports/report_view.js:1720
+#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
@@ -22271,8 +22004,8 @@ msgstr ""
msgid "Save Anyway"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1382
-#: frappe/public/js/frappe/views/reports/report_view.js:1727
+#: frappe/public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
msgstr ""
@@ -22280,7 +22013,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1897
+#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
msgstr ""
@@ -22446,7 +22179,7 @@ msgstr ""
msgid "Scheduler Status"
msgstr ""
-#: frappe/utils/scheduler.py:249
+#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr ""
@@ -22672,7 +22405,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:858
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "See all past reports."
msgstr ""
@@ -22752,7 +22485,7 @@ msgstr ""
msgid "Select Child Table"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:377
+#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
msgstr ""
@@ -23069,31 +22802,11 @@ msgstr ""
msgid "Send Email To Creator"
msgstr ""
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Dropbox Settings'
-#. Label of the send_email_for_successful_backup (Check) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Email for Successful Backup"
-msgstr ""
-
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Email for Successful backup"
-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 email (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Notification To"
-msgstr ""
-
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -23110,14 +22823,6 @@ msgstr ""
msgid "Send Notifications For Email Threads"
msgstr ""
-#. Label of the send_notifications_to (Data) field in DocType 'Dropbox
-#. Settings'
-#. Label of the notify_email (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Notifications To"
-msgstr ""
-
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
msgstr ""
@@ -23376,7 +23081,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:383 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23442,7 +23147,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:360
+#: frappe/app.py:353
msgid "Session Expired"
msgstr ""
@@ -23451,7 +23156,7 @@ msgstr ""
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:119
+#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
msgstr ""
@@ -23474,7 +23179,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:201
+#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
msgstr ""
@@ -23500,7 +23205,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
msgstr ""
@@ -23718,8 +23423,8 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1763
-#: frappe/public/js/frappe/views/reports/report_view.js:1698
+#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23815,6 +23520,15 @@ msgstr ""
msgid "Show \"Call to Action\" in Blog"
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"
@@ -23985,7 +23699,7 @@ msgstr ""
msgid "Show Title in Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1521
+#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
msgstr ""
@@ -24095,7 +23809,7 @@ msgstr ""
msgid "Show {0} List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:495
+#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
msgstr ""
@@ -24130,7 +23844,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
msgstr ""
@@ -24775,7 +24489,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
-#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: frappe/public/js/frappe/views/reports/report_view.js:975
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
@@ -25074,7 +24788,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:1166
+#: frappe/public/js/frappe/form/grid.js:1170
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25171,7 +24885,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:720
+#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
msgstr ""
@@ -25461,11 +25175,9 @@ msgstr ""
#: frappe/geo/doctype/country/country.json
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/connected_app/connected_app.json
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.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_drive/google_drive.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
@@ -25474,7 +25186,6 @@ msgstr ""
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_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
@@ -25599,11 +25310,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1165
+#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1565
+#: frappe/model/document.py:1564
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25622,7 +25333,7 @@ msgstr ""
msgid "Tag Link"
msgstr ""
-#: frappe/model/meta.py:57
+#: 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
@@ -25634,15 +25345,6 @@ msgstr ""
msgid "Tags"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:29
-msgid "Take Backup"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
-msgid "Take Backup Now"
-msgstr ""
-
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
msgstr ""
@@ -25720,12 +25422,12 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1027
+#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
msgstr ""
-#: frappe/core/doctype/translation/test_translation.py:56
-#: frappe/core/doctype/translation/test_translation.py:63
+#: frappe/core/doctype/translation/test_translation.py:47
+#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
msgstr ""
@@ -25734,8 +25436,8 @@ msgstr ""
msgid "Test Job ID"
msgstr ""
-#: frappe/core/doctype/translation/test_translation.py:58
-#: frappe/core/doctype/translation/test_translation.py:66
+#: frappe/core/doctype/translation/test_translation.py:49
+#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
msgstr ""
@@ -25743,7 +25445,7 @@ msgstr ""
msgid "Test email sent to {0}"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:388
+#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25824,7 +25526,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1188
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
msgstr ""
@@ -25992,15 +25694,15 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:987
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:991
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -26012,7 +25714,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:334
+#: frappe/utils/response.py:331
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26073,7 +25775,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26102,7 +25804,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:958
+#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26189,12 +25891,12 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:750
+#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:117
-#: frappe/public/js/frappe/model/model.js:755
+#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr ""
@@ -26232,7 +25934,7 @@ msgstr ""
msgid "This document is already amended, you cannot ammend it again"
msgstr ""
-#: frappe/model/document.py:474
+#: frappe/model/document.py:473
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -26293,7 +25995,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2132
+#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26357,7 +26059,7 @@ msgstr ""
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1033
+#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26365,7 +26067,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:856
+#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
msgstr ""
@@ -26431,7 +26133,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1240
+#: frappe/core/doctype/user/user.py:1242
msgid "Throttled"
msgstr ""
@@ -26782,7 +26484,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:857
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26807,10 +26509,6 @@ msgstr ""
msgid "To use Google Contacts, enable {0}."
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:8
-msgid "To use Google Drive, enable {0}."
-msgstr ""
-
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -26841,7 +26539,7 @@ msgstr ""
msgid "Today"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1564
+#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
msgstr ""
@@ -26857,7 +26555,7 @@ 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:1568
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
msgstr ""
@@ -26913,11 +26611,11 @@ msgstr ""
msgid "Too many changes to database in single action."
msgstr ""
-#: frappe/utils/background_jobs.py:728
+#: 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:1028
+#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -26981,8 +26679,8 @@ msgstr ""
#: frappe/desk/query_report.py:533
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1320
-#: frappe/public/js/frappe/views/reports/report_view.js:1545
+#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr ""
@@ -27045,11 +26743,11 @@ msgstr ""
msgid "Total:"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1250
+#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1225
+#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
msgstr ""
@@ -27162,7 +26860,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2188
+#: frappe/public/js/frappe/views/reports/query_report.js:2183
msgid "Translate Data"
msgstr ""
@@ -27173,7 +26871,7 @@ msgstr ""
msgid "Translate Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1650
+#: frappe/public/js/frappe/views/reports/report_view.js:1656
msgid "Translate values"
msgstr ""
@@ -27321,7 +27019,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/views/file/file_view.js:337
#: frappe/public/js/frappe/views/workspace/workspace.js:399
-#: frappe/public/js/frappe/widgets/widget_dialog.js:391
+#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
msgid "Type"
@@ -27401,7 +27099,7 @@ msgstr ""
#: 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:458
+#: 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"
@@ -27463,7 +27161,7 @@ msgstr ""
msgid "Unable to load camera."
msgstr ""
-#: frappe/public/js/frappe/model/model.js:268
+#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
msgstr ""
@@ -27492,7 +27190,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:383
+#: frappe/app.py:376
msgid "Uncaught Exception"
msgstr ""
@@ -27725,7 +27423,7 @@ msgstr ""
msgid "Updated Successfully"
msgstr ""
-#: frappe/public/js/frappe/desk.js:444
+#: frappe/public/js/frappe/desk.js:452
msgid "Updated To A New Version 🎉"
msgstr ""
@@ -27733,7 +27431,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:333
+#: frappe/utils/response.py:330
msgid "Updating"
msgstr ""
@@ -27807,18 +27505,6 @@ msgstr ""
msgid "Uploaded To Google Drive"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:196
-msgid "Uploading backup to Google Drive."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:201
-msgid "Uploading successful."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:16
-msgid "Uploading to Google Drive"
-msgstr ""
-
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -27902,11 +27588,11 @@ msgstr ""
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:434
+#: frappe/model/db_query.py:435
msgid "Use of function {0} in field is restricted"
msgstr ""
-#: frappe/model/db_query.py:411
+#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
msgstr ""
@@ -28023,7 +27709,7 @@ msgstr ""
msgid "User Cannot Search"
msgstr ""
-#: frappe/public/js/frappe/desk.js:546
+#: frappe/public/js/frappe/desk.js:554
msgid "User Changed"
msgstr ""
@@ -28129,8 +27815,8 @@ 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:1881
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
@@ -28227,7 +27913,7 @@ msgstr ""
msgid "User permission already exists"
msgstr ""
-#: frappe/www/login.py:167
+#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
msgstr ""
@@ -28235,23 +27921,23 @@ msgstr ""
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: frappe/core/doctype/user/user.py:536
+#: frappe/core/doctype/user/user.py:537
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:326
+#: frappe/core/doctype/user/user.py:327
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:602
+#: frappe/core/doctype/user/user.py:603
msgid "User {0} cannot be renamed"
msgstr ""
-#: frappe/permissions.py:138
+#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
msgstr ""
-#: frappe/permissions.py:161
+#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr ""
@@ -28264,7 +27950,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1369
+#: frappe/core/doctype/user/user.py:1371
msgid "User {0} impersonated as {1}"
msgstr ""
@@ -28293,7 +27979,7 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:687
+#: frappe/core/doctype/user/user.py:689
msgid "Username {0} already exists"
msgstr ""
@@ -28433,15 +28119,15 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1049 frappe/model/document.py:834
+#: frappe/model/base_document.py:1054 frappe/model/document.py:833
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:780
+#: frappe/model/document.py:779
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:784
+#: frappe/model/document.py:783
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28472,7 +28158,7 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1124
msgid "Value too big"
msgstr ""
@@ -29073,11 +28759,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -29086,9 +28767,6 @@ msgstr ""
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:399
#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
@@ -29123,11 +28801,11 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:414
+#: frappe/core/doctype/user/user.py:415
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:475
+#: frappe/core/doctype/user/user.py:476
msgid "Welcome to {0}"
msgstr ""
@@ -29160,7 +28838,7 @@ 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:468
+#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
msgstr ""
@@ -29359,7 +29037,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:177
+#: frappe/public/js/frappe/router.js:173
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29429,11 +29107,11 @@ msgstr ""
msgid "Workspaces"
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:753
+#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
msgstr ""
@@ -29452,11 +29130,11 @@ msgstr ""
msgid "Write"
msgstr ""
-#: frappe/model/base_document.py:949
+#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:484
+#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
msgstr ""
@@ -29475,13 +29153,13 @@ msgstr ""
msgid "Y Axis"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:491
+#: frappe/public/js/frappe/views/reports/report_view.js:497
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:1221
+#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
msgstr ""
@@ -29542,7 +29220,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29582,11 +29260,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:409
+#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:398
+#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29609,7 +29287,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:604
+#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29621,7 +29299,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:569
+#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29637,7 +29315,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:669
+#: frappe/__init__.py:676
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29645,7 +29323,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr ""
-#: frappe/core/doctype/installed_applications/installed_applications.py:82
+#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -29809,11 +29487,11 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:368
+#: frappe/app.py:361
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:838
+#: frappe/desk/query_report.py:831
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29825,11 +29503,11 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:772
+#: frappe/website/doctype/web_form/web_form.py:769
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:286 frappe/utils/response.py:290
+#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
msgstr ""
@@ -29837,7 +29515,7 @@ msgstr ""
msgid "You don't have permission to get a report on: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:175
+#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
msgstr ""
@@ -29890,23 +29568,23 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:339
+#: 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:768
+#: frappe/website/doctype/web_form/web_form.py:765
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:609
+#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:357
+#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
@@ -29922,11 +29600,11 @@ msgstr ""
msgid "You need to be a system user to access this page."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:94
+#: 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:275
+#: frappe/utils/response.py:272
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29934,7 +29612,7 @@ msgstr ""
msgid "You need to be logged in to access this page"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:164
+#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
msgstr ""
@@ -30009,7 +29687,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/desk.js:543
+#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -30092,7 +29770,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:354
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -30323,7 +30001,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:403 frappe/permissions.py:414
+#: frappe/permissions.py:412 frappe/permissions.py:423
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30875,7 +30553,7 @@ msgstr ""
msgid "{0} Calendar"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:564
+#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
msgstr ""
@@ -30923,7 +30601,7 @@ msgstr ""
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1149
+#: frappe/model/base_document.py:1154
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -30933,7 +30611,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:952
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
msgstr ""
@@ -30999,7 +30677,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:149
+#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
msgstr ""
@@ -31012,7 +30690,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:547
+#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -31137,7 +30815,7 @@ msgstr ""
msgid "{0} is an invalid email address in 'Recipients'"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1462
+#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
msgstr ""
@@ -31146,27 +30824,27 @@ msgstr ""
msgid "{0} is currently {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1431
+#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1451
+#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1441
+#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1456
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1446
+#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1481
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
msgstr ""
@@ -31186,7 +30864,7 @@ msgstr ""
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:64
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
msgstr ""
@@ -31215,11 +30893,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:787
+#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31231,27 +30909,27 @@ msgstr ""
msgid "{0} is not a zip file"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1436
+#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1483
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1487
+#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:165
+#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1470
+#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
msgstr ""
@@ -31262,11 +30940,11 @@ msgstr ""
msgid "{0} is required"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1486
+#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1465
+#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
msgstr ""
@@ -31274,12 +30952,12 @@ msgstr ""
msgid "{0} items selected"
msgstr ""
-#: frappe/core/doctype/user/user.py:1378
+#: frappe/core/doctype/user/user.py:1380
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:104
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
msgstr ""
@@ -31295,7 +30973,7 @@ msgstr ""
msgid "{0} m"
msgstr ""
-#: frappe/desk/notifications.py:397
+#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
msgstr ""
@@ -31307,35 +30985,35 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1792
+#: frappe/model/document.py:1791
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1551
+#: frappe/model/document.py:1550
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1553
+#: frappe/model/document.py:1552
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1549
+#: frappe/model/document.py:1548
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1547 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:875
+#: frappe/model/base_document.py:876
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:732
+#: frappe/model/base_document.py:729
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1555
+#: frappe/model/document.py:1554
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31410,7 +31088,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1785
+#: frappe/model/document.py:1784
msgid "{0} row #{1}: "
msgstr ""
@@ -31506,11 +31184,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:665 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:987
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -31526,7 +31204,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:260 frappe/permissions.py:558
+#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
msgstr ""
@@ -31534,7 +31212,7 @@ msgstr ""
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1110
+#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
msgstr ""
@@ -31542,7 +31220,7 @@ msgstr ""
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1115
+#: frappe/model/base_document.py:1120
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
@@ -31643,7 +31321,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1279
+#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
msgstr ""
diff --git a/frappe/locale/pl.po b/frappe/locale/pl.po
index ae6ea0aea8..13e21b81da 100644
--- a/frappe/locale/pl.po
+++ b/frappe/locale/pl.po
@@ -2,14 +2,14 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-08 09:34+0000\n"
-"PO-Revision-Date: 2025-06-16 15:29\n"
+"POT-Creation-Date: 2025-06-22 09:34+0000\n"
+"PO-Revision-Date: 2025-06-22 16:40\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Polish\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.13.1\n"
+"Generated-By: Babel 2.16.0\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
"X-Crowdin-Project: frappe\n"
"X-Crowdin-Project-ID: 639578\n"
@@ -140,7 +140,7 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:951
+#: frappe/public/js/frappe/views/reports/query_report.js:953
msgid "1 Report"
msgstr ""
@@ -148,7 +148,7 @@ msgstr ""
msgid "1 comment"
msgstr ""
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:711
msgid "1 day ago"
msgstr ""
@@ -157,17 +157,17 @@ msgid "1 hour"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:709
msgid "1 hour ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:707
msgid "1 minute ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:715
msgid "1 month ago"
msgstr ""
@@ -179,37 +179,37 @@ msgstr ""
msgid "1 record will be exported"
msgstr ""
-#: frappe/tests/test_utils.py:705
+#: frappe/tests/test_utils.py:706
msgid "1 second ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:713
msgid "1 week ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:717
msgid "1 year ago"
msgstr ""
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:710
msgid "2 hours ago"
msgstr ""
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:716
msgid "2 months ago"
msgstr ""
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:714
msgid "2 weeks ago"
msgstr ""
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:718
msgid "2 years ago"
msgstr ""
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:708
msgid "3 minutes ago"
msgstr ""
@@ -225,7 +225,7 @@ msgstr ""
msgid "5 Records"
msgstr ""
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:712
msgid "5 days ago"
msgstr ""
@@ -245,7 +245,7 @@ msgstr ""
msgid "<="
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:588
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
msgid "{0} is not a valid URL"
msgstr ""
@@ -667,10 +667,7 @@ msgid "API"
msgstr ""
#. Label of the api_access (Section Break) field in DocType 'User'
-#. Label of the api_access_section (Section Break) field in DocType 'S3 Backup
-#. Settings'
#: frappe/core/doctype/user/user.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "API Access"
msgstr "Dostęp do API"
@@ -782,17 +779,6 @@ msgstr ""
msgid "Access Control"
msgstr "Ustawienia dostępu"
-#. Label of the access_key_id (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key ID"
-msgstr "Uzyskaj klucz ID"
-
-#. Label of the secret_access_key (Password) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key Secret"
-msgstr "Dostęp do klucza tajnego"
-
#. Name of a DocType
#. Label of a Link in the Users Workspace
#: frappe/core/doctype/access_log/access_log.json
@@ -843,6 +829,10 @@ msgstr ""
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'
@@ -873,7 +863,7 @@ msgstr "Akcja / Trasa"
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1872
+#: frappe/model/document.py:1871
msgid "Action Failed"
msgstr ""
@@ -922,10 +912,10 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:192
-#: frappe/public/js/frappe/views/reports/query_report.js:205
-#: frappe/public/js/frappe/views/reports/query_report.js:215
-#: frappe/public/js/frappe/views/reports/query_report.js:845
+#: frappe/public/js/frappe/views/reports/query_report.js:190
+#: frappe/public/js/frappe/views/reports/query_report.js:203
+#: frappe/public/js/frappe/views/reports/query_report.js:213
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Actions"
msgstr ""
@@ -987,8 +977,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:267
-#: frappe/public/js/frappe/views/reports/query_report.js:295
+#: frappe/public/js/frappe/views/reports/query_report.js:265
+#: frappe/public/js/frappe/views/reports/query_report.js:293
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr ""
@@ -1029,7 +1019,7 @@ msgstr ""
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:211
+#: frappe/public/js/frappe/views/reports/query_report.js:209
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1038,10 +1028,10 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1769
-#: frappe/public/js/frappe/views/reports/query_report.js:1772
-#: frappe/public/js/frappe/views/reports/report_view.js:349
-#: frappe/public/js/frappe/views/reports/report_view.js:374
+#: frappe/public/js/frappe/views/reports/query_report.js:1771
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/report_view.js:355
+#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
msgstr ""
@@ -1065,7 +1055,7 @@ msgid "Add Custom Tags"
msgstr "Dodaj niestandardowe tagi"
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
-#: frappe/public/js/frappe/widgets/widget_dialog.js:703
+#: frappe/public/js/frappe/widgets/widget_dialog.js:716
msgid "Add Filters"
msgstr ""
@@ -1100,7 +1090,7 @@ msgstr ""
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:806
+#: frappe/core/doctype/user/user.py:808
msgid "Add Roles"
msgstr ""
@@ -1245,7 +1235,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:253
+#: frappe/public/js/frappe/views/reports/query_report.js:251
msgid "Add to Dashboard"
msgstr ""
@@ -1400,11 +1390,11 @@ msgstr ""
msgid "Administrator"
msgstr ""
-#: frappe/core/doctype/user/user.py:1211
+#: frappe/core/doctype/user/user.py:1213
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1205
+#: frappe/core/doctype/user/user.py:1207
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
@@ -1637,12 +1627,6 @@ msgstr ""
msgid "Allow Consecutive Login Attempts "
msgstr ""
-#. Label of the allow_dropbox_access (Button) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Allow Dropbox Access"
-msgstr "Zezwalaj na dostęp do Dropbox"
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
msgid "Allow Google Calendar Access"
msgstr ""
@@ -1651,10 +1635,6 @@ msgstr ""
msgid "Allow Google Contacts Access"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:52
-msgid "Allow Google Drive Access"
-msgstr ""
-
#. Label of the allow_guest (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
@@ -1908,7 +1888,7 @@ msgstr "Dozwolone domeny osadzania"
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
-#: frappe/core/doctype/user/user.py:1021
+#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr ""
@@ -1916,11 +1896,11 @@ msgstr ""
msgid "Already in the following Users ToDo list:{0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:896
+#: frappe/public/js/frappe/views/reports/report_view.js:902
msgid "Also adding the dependent currency field {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:909
+#: frappe/public/js/frappe/views/reports/report_view.js:915
msgid "Also adding the status dependency field {0}"
msgstr ""
@@ -1999,7 +1979,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:550
+#: frappe/model/document.py:549
msgid "Amendment Not Allowed"
msgstr "Zmiana niedozwolona"
@@ -2088,15 +2068,6 @@ msgstr ""
msgid "App"
msgstr ""
-#. Label of the app_access_key (Data) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Access Key"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:22
-msgid "App Access Key and/or Secret Key are not present."
-msgstr ""
-
#. Label of the client_id (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client ID"
@@ -2130,16 +2101,11 @@ msgstr ""
msgid "App Name"
msgstr ""
-#. Label of the app_secret_key (Password) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Secret Key"
-msgstr "App klucz tajny"
-
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1462
+#: frappe/__init__.py:1465
msgid "App {0} is not installed"
msgstr ""
@@ -2289,7 +2255,7 @@ msgstr ""
msgid "Are you sure you want to clear the assignments?"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:290
+#: frappe/public/js/frappe/form/grid.js:294
msgid "Are you sure you want to delete all rows?"
msgstr ""
@@ -2317,7 +2283,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:965
+#: frappe/public/js/frappe/views/reports/query_report.js:967
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2443,7 +2409,7 @@ msgstr ""
msgid "Assigned By Full Name"
msgstr "Nadany przez Pełna nazwa"
-#: frappe/model/meta.py:60
+#: 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
@@ -2713,13 +2679,11 @@ msgstr "Autor"
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
#. Contacts'
-#. Label of the authorization_code (Data) field in DocType 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
@@ -2757,12 +2721,6 @@ msgstr "Autoryzuj dostęp do Kalendarza Google"
msgid "Authorize Google Contacts Access"
msgstr "Autoryzuj dostęp do kontaktów Google"
-#. Label of the authorize_google_drive_access (Button) field in DocType 'Google
-#. Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Authorize Google Drive Access"
-msgstr "Autoryzuj dostęp do Dysku Google"
-
#. 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"
@@ -2909,11 +2867,11 @@ msgstr ""
msgid "Automatic"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:774
+#: 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:768
+#: frappe/email/doctype/email_account/email_account.py:766
msgid "Automatic Linking can be activated only if Incoming is enabled."
msgstr ""
@@ -3127,66 +3085,14 @@ msgstr ""
msgid "Background Workers"
msgstr "Pracownicy drugoplanowi"
-#: frappe/integrations/doctype/google_drive/google_drive.py:170
-msgid "Backing up Data."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:32
-msgid "Backing up to Google Drive."
-msgstr ""
-
-#. Label of a Card Break in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Backup"
-msgstr ""
-
-#. Label of the backup_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Details"
-msgstr "Szczegóły kopii zapasowej"
-
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
msgstr ""
-#. Label of the backup_files (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Files"
-msgstr "Kopia zapasowa"
-
-#. Label of the backup_folder_id (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder ID"
-msgstr "Identyfikator folderu kopii zapasowej"
-
-#. Label of the backup_folder_name (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder Name"
-msgstr "Nazwa folderu kopii zapasowej"
-
-#. Label of the backup_frequency (Select) field in DocType 'Dropbox Settings'
-#. Label of the frequency (Select) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Frequency"
-msgstr "Częstotliwość tworzenia kopii zapasowych"
-
-#. Label of the backup_path (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Path"
-msgstr ""
-
#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
msgstr ""
-#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup public and private files along with the database."
-msgstr "Twórz kopie zapasowe plików publicznych i prywatnych wraz z bazą danych."
-
#. 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'
@@ -3200,7 +3106,7 @@ msgstr "Kopie zapasowe"
msgid "Backups (MB)"
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:65
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
msgid "Bad Cron Expression"
msgstr ""
@@ -3597,15 +3503,6 @@ msgstr ""
msgid "Brute Force Security"
msgstr ""
-#. Label of the bucket (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Bucket Name"
-msgstr "Nazwa zasobnika"
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:71
-msgid "Bucket {0} not found."
-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"
@@ -3642,7 +3539,7 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1184
+#: frappe/public/js/frappe/form/grid.js:1188
msgid "Bulk Edit {0}"
msgstr ""
@@ -3717,12 +3614,6 @@ msgstr ""
msgid "By default the title is used as meta title, adding a value here will override it."
msgstr ""
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "By default, emails are only sent for failed backups."
-msgstr ""
-
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
@@ -4033,7 +3924,7 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1156
+#: frappe/model/base_document.py:1161
msgid "Cannot Update After Submit"
msgstr ""
@@ -4053,11 +3944,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1012
+#: frappe/model/document.py:1011
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1026
+#: frappe/model/document.py:1025
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -4140,7 +4031,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1032
+#: frappe/model/document.py:1031
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4173,11 +4064,11 @@ msgstr ""
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1128
+#: frappe/public/js/frappe/form/grid.js:1132
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1100
+#: frappe/model/document.py:1099
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4193,7 +4084,7 @@ msgstr ""
msgid "Cannot move row"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:921
+#: frappe/public/js/frappe/views/reports/report_view.js:927
msgid "Cannot remove ID field"
msgstr ""
@@ -4218,11 +4109,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr ""
-#: frappe/model/db_query.py:1125
+#: frappe/model/db_query.py:1126
msgid "Cannot use sub-query in order by"
msgstr ""
-#: frappe/model/db_query.py:1144
+#: frappe/model/db_query.py:1145
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4248,7 +4139,7 @@ msgstr "Karta"
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:261
msgid "Card Label"
msgstr ""
@@ -4390,7 +4281,7 @@ msgstr "Konfiguracja wykresu"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:290
+#: frappe/public/js/frappe/views/reports/query_report.js:288
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Nazwa wykresu"
@@ -4410,7 +4301,7 @@ msgstr "Źródło wykresu"
#. 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:499
+#: frappe/public/js/frappe/views/reports/report_view.js:505
msgid "Chart Type"
msgstr ""
@@ -4524,7 +4415,7 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:638
+#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4617,10 +4508,6 @@ msgstr ""
msgid "Click here to verify"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:47
-msgid "Click on Authorize Google Drive Access to authorize Google Drive Access."
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4647,7 +4534,6 @@ msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
-#: frappe/integrations/doctype/google_drive/google_drive.py:53
#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
msgstr ""
@@ -4821,7 +4707,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4876,9 +4762,9 @@ 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:1229
-#: frappe/public/js/frappe/widgets/widget_dialog.js:533
-#: frappe/public/js/frappe/widgets/widget_dialog.js:681
+#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: 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
@@ -5019,7 +4905,7 @@ msgstr ""
msgid "Comment publicity can only be updated by the original author or a System Manager."
msgstr ""
-#: frappe/model/meta.py:59 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/model/meta.js:209
#: frappe/public/js/frappe/model/model.js:135
#: frappe/website/doctype/web_form/templates/web_form.html:122
@@ -5126,7 +5012,7 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:477
+#: frappe/core/doctype/user/user.py:478
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
@@ -5222,7 +5108,7 @@ msgstr ""
msgid "Configuration"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:481
+#: frappe/public/js/frappe/views/reports/report_view.js:487
msgid "Configure Chart"
msgstr ""
@@ -5559,7 +5445,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1096
+#: frappe/model/document.py:1095
msgid "Could not find {0}"
msgstr ""
@@ -5588,7 +5474,7 @@ msgstr ""
msgid "Count"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:527
+#: frappe/public/js/frappe/widgets/widget_dialog.js:540
msgid "Count Customizations"
msgstr ""
@@ -5596,10 +5482,14 @@ msgstr ""
#. 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:512
+#: 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"
@@ -5650,7 +5540,7 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1261
+#: frappe/public/js/frappe/views/reports/query_report.js:1263
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5664,13 +5554,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:188
-#: frappe/public/js/frappe/views/reports/query_report.js:233
+#: frappe/public/js/frappe/views/reports/query_report.js:186
+#: frappe/public/js/frappe/views/reports/query_report.js:231
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:286
-#: frappe/public/js/frappe/views/reports/query_report.js:1188
+#: frappe/public/js/frappe/views/reports/query_report.js:284
+#: frappe/public/js/frappe/views/reports/query_report.js:1190
msgid "Create Chart"
msgstr ""
@@ -5781,7 +5671,7 @@ msgstr ""
msgid "Created At"
msgstr ""
-#: frappe/model/meta.py:56
+#: 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
@@ -5793,14 +5683,14 @@ 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:51
+#: 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:515
+#: frappe/public/js/frappe/desk.js:523
#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
msgstr ""
@@ -5823,7 +5713,7 @@ msgstr ""
msgid "Cron Format"
msgstr "Format Cron"
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:59
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
msgstr ""
@@ -6220,11 +6110,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -6233,9 +6118,6 @@ msgstr ""
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:398
#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
@@ -6789,7 +6671,7 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/toolbar.js:461
-#: frappe/public/js/frappe/views/reports/report_view.js:1734
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
@@ -6832,7 +6714,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:932
+#: frappe/public/js/frappe/views/reports/query_report.js:934
msgid "Delete and Generate New"
msgstr ""
@@ -6841,7 +6723,7 @@ msgctxt "Button text"
msgid "Delete column"
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:738
+#: frappe/public/js/frappe/form/footer/form_timeline.js:741
msgid "Delete comment?"
msgstr ""
@@ -6927,7 +6809,7 @@ msgstr ""
msgid "Deleting {0} records..."
msgstr ""
-#: frappe/public/js/frappe/model/model.js:741
+#: frappe/public/js/frappe/model/model.js:692
msgid "Deleting {0}..."
msgstr ""
@@ -6973,7 +6855,7 @@ 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:310
+#: frappe/public/js/frappe/widgets/widget_dialog.js:323
#: frappe/www/attribution.html:29
msgid "Dependencies"
msgstr ""
@@ -7087,6 +6969,7 @@ msgstr ""
#: 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
@@ -7384,14 +7267,10 @@ 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:1189
+#: frappe/public/js/frappe/form/grid.js:1193
msgid "Do not edit headers which are preset in the template"
msgstr ""
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:69
-msgid "Do not have permission to access bucket {0}."
-msgstr ""
-
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
@@ -7524,7 +7403,7 @@ 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:466
+#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
msgstr "Widok DocType"
@@ -7584,7 +7463,7 @@ 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:669
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
msgid "Doctype"
msgstr ""
@@ -7702,7 +7581,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:477
+#: frappe/model/document.py:476
msgid "Document Queued"
msgstr ""
@@ -7755,7 +7634,7 @@ msgstr ""
msgid "Document States"
msgstr "Stany Dokumentu"
-#: frappe/model/meta.py:52 frappe/public/js/frappe/model/meta.js:202
+#: 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 ""
@@ -7826,11 +7705,11 @@ msgstr ""
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: frappe/permissions.py:148
+#: frappe/permissions.py:149
msgid "Document Type is not importable"
msgstr ""
-#: frappe/permissions.py:144
+#: frappe/permissions.py:145
msgid "Document Type is not submittable"
msgstr ""
@@ -7859,7 +7738,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1943
+#: frappe/model/document.py:1942
msgid "Document Unlocked"
msgstr ""
@@ -8050,7 +7929,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:835
+#: frappe/public/js/frappe/views/reports/query_report.js:830
msgid "Download Report"
msgstr ""
@@ -8061,7 +7940,7 @@ 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:57
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
msgid "Download Your Data"
msgstr ""
@@ -8117,29 +7996,6 @@ msgstr ""
msgid "Drop files here"
msgstr ""
-#. Label of the dropbox_access_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Access Token"
-msgstr "Token dostępu do Dropboxa"
-
-#. Label of the dropbox_refresh_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Refresh Token"
-msgstr ""
-
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Dropbox Settings"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:347
-msgid "Dropbox Setup"
-msgstr ""
-
#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
@@ -8169,7 +8025,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:666 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
@@ -8268,13 +8124,13 @@ msgstr ""
#: 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:668
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:669
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:883
-#: frappe/public/js/frappe/views/reports/query_report.js:1722
+#: frappe/public/js/frappe/views/reports/query_report.js:878
+#: frappe/public/js/frappe/views/reports/query_report.js:1724
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8437,7 +8293,7 @@ msgstr ""
msgid "Edit your workflow visually using the Workflow Builder."
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:672
+#: frappe/public/js/frappe/views/reports/report_view.js:678
#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
msgstr ""
@@ -8538,7 +8394,7 @@ msgstr ""
msgid "Email Account Name"
msgstr "Nazwa konta e-mail"
-#: frappe/core/doctype/user/user.py:736
+#: frappe/core/doctype/user/user.py:738
msgid "Email Account added multiple times"
msgstr ""
@@ -8546,7 +8402,7 @@ msgstr ""
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:578
+#: frappe/email/doctype/email_account/email_account.py:576
msgid "Email Account {0} Disabled"
msgstr ""
@@ -8772,7 +8628,7 @@ msgstr ""
msgid "Emails Pulled"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:936
+#: frappe/email/doctype/email_account/email_account.py:934
msgid "Emails are already being pulled from this account."
msgstr ""
@@ -8795,11 +8651,9 @@ 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 Drive'
#. 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_drive/google_drive.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
msgstr "Włączyć"
@@ -8819,11 +8673,6 @@ msgstr ""
msgid "Enable Auto Reply"
msgstr "Włącz automatyczną odpowiedź"
-#. Label of the enabled (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Enable Automatic Backup"
-msgstr "Włącz automatyczną kopię zapasową"
-
#. Label of the enable_automatic_linking (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -8982,7 +8831,6 @@ msgstr ""
#. 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 'Dropbox Settings'
#. 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'
@@ -8993,7 +8841,6 @@ msgstr ""
#: 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/dropbox_settings/dropbox_settings.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/public/js/frappe/model/indicator.js:106
@@ -9006,7 +8853,7 @@ msgstr ""
msgid "Enabled Scheduler"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:1012
+#: frappe/email/doctype/email_account/email_account.py:1010
msgid "Enabled email inbox for user {0}"
msgstr ""
@@ -9087,11 +8934,6 @@ msgstr ""
msgid "Ended At"
msgstr ""
-#. Label of the endpoint_url (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Endpoint URL"
-msgstr "Adres URL punktu końcowego"
-
#. Label of the sb_endpoints_section (Section Break) field in DocType
#. 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -9270,7 +9112,7 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:672
+#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9278,15 +9120,15 @@ msgstr ""
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr ""
-#: frappe/model/base_document.py:806
+#: frappe/model/base_document.py:803
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:816
+#: frappe/model/base_document.py:813
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:810
+#: frappe/model/base_document.py:807
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9435,7 +9277,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2069
+#: frappe/public/js/frappe/views/reports/query_report.js:2071
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9461,7 +9303,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9518,8 +9360,8 @@ 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:1757
-#: frappe/public/js/frappe/views/reports/report_view.js:1621
+#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
@@ -9570,11 +9412,11 @@ msgstr ""
msgid "Export Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1632
+#: frappe/public/js/frappe/views/reports/report_view.js:1638
msgid "Export all matching rows?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1642
+#: frappe/public/js/frappe/views/reports/report_view.js:1648
msgid "Export all {0} rows?"
msgstr ""
@@ -9882,8 +9724,8 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:237
-#: frappe/public/js/frappe/views/reports/query_report.js:1816
+#: frappe/public/js/frappe/views/reports/query_report.js:235
+#: frappe/public/js/frappe/views/reports/query_report.js:1818
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9958,7 +9800,7 @@ msgstr ""
msgid "Field {0} does not exist on {1}"
msgstr ""
-#: frappe/desk/form/meta.py:208
+#: frappe/desk/form/meta.py:184
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
@@ -10061,7 +9903,7 @@ msgstr "Pola Multicheck"
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
-#: frappe/model/db_query.py:144
+#: frappe/model/db_query.py:146
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
@@ -10110,13 +9952,6 @@ msgstr ""
msgid "File '{0}' not found"
msgstr ""
-#. Label of the file_backup (Check) field in DocType 'Dropbox Settings'
-#. Label of the file_backup (Check) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "File Backup"
-msgstr "Kopia zapasowa plików"
-
#. Label of the private_file_section (Section Break) field in DocType 'Access
#. Log'
#: frappe/core/doctype/access_log/access_log.json
@@ -10317,7 +10152,7 @@ msgstr "Filtry będą dostępne za pośrednictwem filters .
msgid "Filters {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1421
+#: frappe/public/js/frappe/views/reports/report_view.js:1427
msgid "Filters:"
msgstr ""
@@ -10464,7 +10299,7 @@ msgstr ""
msgid "Following document {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:111
+#: frappe/website/doctype/web_form/web_form.py:108
msgid "Following fields are missing:"
msgstr ""
@@ -10472,7 +10307,7 @@ msgstr ""
msgid "Following fields have invalid values:"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:345
+#: frappe/public/js/frappe/widgets/widget_dialog.js:358
msgid "Following fields have missing values"
msgstr ""
@@ -10615,7 +10450,7 @@ msgstr ""
msgid "For Document Type"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:553
+#: frappe/public/js/frappe/widgets/widget_dialog.js:566
msgid "For Example: {} Open"
msgstr ""
@@ -10644,7 +10479,7 @@ msgstr ""
msgid "For Value"
msgstr "Dla wartości"
-#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/query_report.js:2068
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10797,7 +10632,7 @@ msgstr "Formularz zakodowany w adresie URL"
#. 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:552
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
msgid "Format"
msgstr ""
@@ -10829,7 +10664,7 @@ msgstr "Jednostki ułamku"
#. 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:149
+#: frappe/www/login.py:153
msgid "Frappe"
msgstr "Frappe"
@@ -10846,7 +10681,7 @@ msgstr ""
msgid "Frappe Mail"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:549
+#: frappe/email/doctype/email_account/email_account.py:547
msgid "Frappe Mail OAuth Error"
msgstr ""
@@ -10874,13 +10709,11 @@ msgstr ""
#. 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'
-#. Label of the frequency (Select) field in DocType 'Google Drive'
#: 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/integrations/doctype/google_drive/google_drive.json
#: frappe/public/js/frappe/utils/common.js:395
msgid "Frequency"
msgstr ""
@@ -10926,7 +10759,7 @@ msgstr ""
msgid "From Date Field"
msgstr "Od pola daty"
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
+#: frappe/public/js/frappe/views/reports/query_report.js:1779
msgid "From Document Type"
msgstr ""
@@ -10977,16 +10810,16 @@ msgstr "Pełna szerokość"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:247
-#: frappe/public/js/frappe/widgets/widget_dialog.js:686
+#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:693
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:670
+#: frappe/__init__.py:677
msgid "Function {0} is not whitelisted."
msgstr ""
@@ -11051,7 +10884,7 @@ msgstr ""
msgid "Generate Keys"
msgstr "Generuj klucze"
-#: frappe/public/js/frappe/views/reports/query_report.js:877
+#: frappe/public/js/frappe/views/reports/query_report.js:872
msgid "Generate New Report"
msgstr ""
@@ -11339,32 +11172,12 @@ msgstr ""
msgid "Google Contacts Id"
msgstr "Identyfikator kontaktów Google"
-#. Name of a DocType
-#. Label of the google_drive_section (Section Break) field in DocType 'Google
-#. Drive'
#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/google_drive/google_drive.json
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:117
-msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:132
-msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:193
-msgid "Google Drive - Could not locate - {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:204
-msgid "Google Drive Backup Successful."
-msgstr ""
-
#. Label of the section_break_7 (Section Break) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -11694,6 +11507,10 @@ msgstr ""
msgid "Headers"
msgstr "Nagłówki"
+#: 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'
@@ -12017,17 +11834,17 @@ msgstr "Strona główna"
msgid "Home Settings"
msgstr "Ustawienia domowe"
-#: frappe/core/doctype/file/test_file.py:330
-#: frappe/core/doctype/file/test_file.py:332
-#: frappe/core/doctype/file/test_file.py:396
+#: 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:385
+#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:341
+#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
msgstr ""
@@ -12072,7 +11889,7 @@ msgstr ""
#: frappe/core/doctype/data_import/importer.py:1177
#: frappe/core/doctype/data_import/importer.py:1242
#: frappe/core/doctype/data_import/importer.py:1245
-#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:50
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
#: frappe/public/js/frappe/list/list_settings.js:337
@@ -12084,7 +11901,7 @@ msgid "ID"
msgstr ""
#: frappe/desk/reportview.py:491
-#: frappe/public/js/frappe/views/reports/report_view.js:978
+#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
msgstr ""
@@ -12268,12 +12085,6 @@ msgstr "Jeśli ta opcja jest włączona, użytkownicy, którzy logują się z og
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
msgstr "Jeśli jest włączona, użytkownicy będą informowani za każdym razem, gdy się zalogują. Jeśli nie jest włączona, użytkownicy będą informowani tylko raz."
-#. Description of the 'Backup Path' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "If it's empty, it will backup to the root of the bucket."
-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"
@@ -12404,16 +12215,12 @@ msgstr "Ignoruj załączników ponad tym rozmiarze"
msgid "Ignored Apps"
msgstr "Ignorowane aplikacje"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:348
-msgid "Illegal Access Token. Please try again"
-msgstr ""
-
#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
msgstr ""
-#: frappe/model/db_query.py:451 frappe/model/db_query.py:454
-#: frappe/model/db_query.py:1128
+#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
+#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
msgstr ""
@@ -12762,11 +12569,11 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr "Wyślij łącze do widoku internetowego dokumentu w wiadomości e-mail"
-#: frappe/public/js/frappe/views/reports/query_report.js:1592
+#: frappe/public/js/frappe/views/reports/query_report.js:1594
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1584
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Include indentation"
msgstr ""
@@ -12833,11 +12640,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1542
+#: frappe/model/document.py:1541
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1544
+#: frappe/model/document.py:1543
msgid "Incorrect value:"
msgstr ""
@@ -12846,10 +12653,10 @@ msgstr ""
#. 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:53
+#: 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:999
+#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
msgstr ""
@@ -12924,7 +12731,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:1822
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
msgid "Insert After"
msgstr ""
@@ -12940,7 +12747,7 @@ msgstr ""
msgid "Insert Below"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:384
+#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
msgstr ""
@@ -12989,11 +12796,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:818
+#: frappe/permissions.py:827
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:376
+#: frappe/database/query.py:383
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -13111,7 +12918,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:221
#: frappe/public/js/frappe/form/grid_row.js:833
#: frappe/public/js/frappe/form/layout.js:811
-#: frappe/public/js/frappe/views/reports/report_view.js:710
+#: frappe/public/js/frappe/views/reports/report_view.js:716
msgid "Invalid \"depends_on\" expression"
msgstr ""
@@ -13151,7 +12958,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:102
+#: frappe/database/query.py:103
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13196,6 +13003,7 @@ 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 ""
@@ -13220,7 +13028,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1226 frappe/www/update-password.html:123
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
#: frappe/www/update-password.html:247
msgid "Invalid Password"
@@ -13249,7 +13057,7 @@ msgstr ""
#: frappe/core/doctype/file/file.py:220
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
-#: frappe/public/js/frappe/widgets/widget_dialog.js:589
+#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
msgstr ""
@@ -13270,11 +13078,11 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:393
+#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
-#: frappe/model/document.py:1015 frappe/model/document.py:1029
+#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13298,7 +13106,7 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:182
+#: frappe/database/query.py:189
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
@@ -13324,7 +13132,7 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:324
+#: frappe/app.py:317
msgid "Invalid request arguments"
msgstr ""
@@ -13508,7 +13316,7 @@ 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:328
+#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
msgstr ""
@@ -13723,6 +13531,10 @@ msgstr ""
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 ""
@@ -13754,7 +13566,7 @@ msgstr ""
#. 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:498
+#: frappe/public/js/frappe/widgets/widget_dialog.js:511
msgid "Kanban Board"
msgstr ""
@@ -14026,10 +13838,10 @@ msgstr ""
#: 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:300
-#: frappe/public/js/frappe/widgets/widget_dialog.js:453
-#: frappe/public/js/frappe/widgets/widget_dialog.js:630
-#: frappe/public/js/frappe/widgets/widget_dialog.js:663
+#: 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
@@ -14114,11 +13926,6 @@ msgstr ""
msgid "Last Active"
msgstr "Czas ostatniej aktywności"
-#. Label of the last_backup_on (Datetime) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Last Backup On"
-msgstr "Ostatnia kopia zapasowa włączona"
-
#. 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"
@@ -14203,12 +14010,12 @@ msgstr ""
msgid "Last Synced On"
msgstr "Ostatnia synchronizacja włączona"
-#: frappe/model/meta.py:55 frappe/public/js/frappe/model/meta.js:205
+#: 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:54 frappe/public/js/frappe/model/meta.js:204
+#: 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 ""
@@ -14252,7 +14059,7 @@ msgid "Leave blank to repeat always"
msgstr "Zostaw puste by zawsze powtarzać"
#: frappe/core/doctype/communication/mixins.py:207
-#: frappe/email/doctype/email_account/email_account.py:722
+#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
msgstr ""
@@ -14471,7 +14278,7 @@ msgstr ""
msgid "Liked"
msgstr ""
-#: frappe/model/meta.py:58 frappe/public/js/frappe/model/meta.js:208
+#: 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 ""
@@ -14486,11 +14293,6 @@ msgstr ""
msgid "Limit"
msgstr ""
-#. Label of the limit_no_of_backups (Check) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Limit Number of DB Backups"
-msgstr "Limit Liczba kopii zapasowych DB"
-
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14605,11 +14407,11 @@ msgstr "link Title"
#: 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:414
+#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
msgstr "Łączyć z"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:350
+#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
msgstr ""
@@ -14622,7 +14424,7 @@ msgstr ""
msgid "Link Type"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:346
+#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
msgstr ""
@@ -14774,7 +14576,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1085
+#: frappe/public/js/frappe/views/reports/query_report.js:1087
msgid "Loading"
msgstr ""
@@ -14905,7 +14707,7 @@ msgstr ""
msgid "Login Page"
msgstr ""
-#: frappe/www/login.py:152
+#: frappe/www/login.py:156
msgid "Login To {0}"
msgstr ""
@@ -15172,7 +14974,7 @@ msgstr "Obowiązkowe zależy od"
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:473
+#: frappe/website/doctype/web_form/web_form.py:470
msgid "Mandatory Information missing:"
msgstr ""
@@ -15447,7 +15249,7 @@ msgid "Menu"
msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:242
-#: frappe/public/js/frappe/model/model.js:754
+#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr ""
@@ -15626,7 +15428,7 @@ msgstr ""
msgid "Method"
msgstr "Metoda"
-#: frappe/__init__.py:672
+#: frappe/__init__.py:679
msgid "Method Not Allowed"
msgstr ""
@@ -15703,7 +15505,7 @@ msgstr ""
msgid "Miss"
msgstr "Panna"
-#: frappe/desk/form/meta.py:218
+#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
msgstr ""
@@ -15728,7 +15530,7 @@ msgid "Missing Value"
msgstr ""
#: frappe/public/js/frappe/ui/field_group.js:124
-#: frappe/public/js/frappe/widgets/widget_dialog.js:361
+#: 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"
@@ -15911,8 +15713,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -15920,7 +15720,6 @@ msgstr ""
#: 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/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:400
#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
@@ -16092,7 +15891,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:462
+#: frappe/website/doctype/web_form/web_form.py:459
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16258,7 +16057,7 @@ msgstr ""
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:793
+#: frappe/model/document.py:792
msgid "Negative Value"
msgstr ""
@@ -16363,7 +16162,7 @@ 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:762
+#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr ""
@@ -16397,7 +16196,7 @@ msgstr ""
msgid "New Quick List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
msgstr ""
@@ -16453,26 +16252,26 @@ msgstr "Wstawiam nową wartość"
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
#: frappe/public/js/frappe/form/toolbar.js:558
-#: frappe/public/js/frappe/model/model.js:661
+#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:379
+#: frappe/website/doctype/web_form/web_form.py:376
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:394
+#: frappe/public/js/frappe/views/reports/query_report.js:392
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:386
+#: frappe/public/js/frappe/views/reports/query_report.js:384
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:391
+#: frappe/public/js/frappe/views/reports/query_report.js:389
msgid "New {0} {1} created"
msgstr ""
@@ -16484,7 +16283,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:802
+#: frappe/core/doctype/user/user.py:804
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16646,7 +16445,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16787,7 +16586,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:803
+#: frappe/core/doctype/user/user.py:805
msgid "No Roles Specified"
msgstr ""
@@ -16938,7 +16737,7 @@ msgstr "Nie rzędów (max 500)"
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:827 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16947,7 +16746,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
-#: frappe/model/db_query.py:949
+#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
msgstr ""
@@ -17031,12 +16830,6 @@ msgstr "Nieujemne"
msgid "Non-Conforming"
msgstr "Niezgodne"
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "None"
-msgstr "Żaden"
-
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr ""
@@ -17051,7 +16844,7 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr ""
@@ -17072,7 +16865,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:374 frappe/www/404.html:3
+#: frappe/app.py:367 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -17098,9 +16891,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:754 frappe/app.py:367 frappe/desk/calendar.py:26
+#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:711
+#: frappe/website/doctype/web_form/web_form.py:708
#: 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
@@ -17121,7 +16914,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:813
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
-#: frappe/public/js/frappe/views/reports/report_view.js:197
+#: frappe/public/js/frappe/views/reports/report_view.js:203
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
@@ -17152,7 +16945,7 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:264
+#: frappe/core/doctype/user/user.py:265
msgid "Not a valid User Image."
msgstr ""
@@ -17168,7 +16961,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:360
+#: frappe/permissions.py:370
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17188,7 +16981,7 @@ msgstr ""
msgid "Not allowed to print draft documents"
msgstr ""
-#: frappe/permissions.py:212
+#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
msgstr ""
@@ -17204,12 +16997,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:214
+#: frappe/core/doctype/system_settings/system_settings.py:215
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:724
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17235,15 +17028,6 @@ msgstr ""
msgid "Note:"
msgstr ""
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'Dropbox Settings'
-#. Description of the 'Send Email for Successful backup' (Check) field in
-#. DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Note: By default emails for failed backups are sent."
-msgstr "Uwaga: Domyślnie wysyłane są wiadomości e-mail dotyczące nieudanych kopii zapasowych."
-
#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr ""
@@ -17303,13 +17087,10 @@ msgstr ""
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
#. Name of a DocType
-#. Label of the notification_section (Section Break) field in DocType 'S3
-#. Backup Settings'
#: 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
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Notification"
msgstr ""
@@ -17411,7 +17192,7 @@ msgstr "Numer"
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:615
+#: frappe/public/js/frappe/widgets/widget_dialog.js:628
msgid "Number Card"
msgstr ""
@@ -17429,7 +17210,7 @@ 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:645
+#: frappe/public/js/frappe/widgets/widget_dialog.js:658
msgid "Number Cards"
msgstr ""
@@ -17447,15 +17228,6 @@ msgstr ""
msgid "Number of Backups"
msgstr "Liczba kopii zapasowych"
-#. Label of the no_of_backups (Int) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Number of DB Backups"
-msgstr "Liczba kopii zapasowych DB"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:54
-msgid "Number of DB backups cannot be less than 1"
-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"
@@ -17471,7 +17243,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:169
+#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17700,7 +17472,7 @@ 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:322
+#: frappe/public/js/frappe/widgets/widget_dialog.js:335
msgid "Onboard"
msgstr ""
@@ -17796,19 +17568,13 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Only change this if you want to use other S3 compatible object storage backends."
-msgstr ""
-
-#: frappe/model/document.py:1232
+#: frappe/model/document.py:1231
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:315
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
msgstr ""
@@ -18057,7 +17823,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:870
+#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
msgstr ""
@@ -18169,7 +17935,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1742
+#: frappe/public/js/frappe/views/reports/query_report.js:1744
msgid "PDF"
msgstr ""
@@ -18468,7 +18234,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:798
+#: frappe/permissions.py:807
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18528,11 +18294,11 @@ msgstr "Nieaktywny"
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1079
+#: frappe/core/doctype/user/user.py:1081
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:457
+#: frappe/core/doctype/user/user.py:458
msgid "Password Reset"
msgstr ""
@@ -18566,7 +18332,7 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1078
+#: frappe/core/doctype/user/user.py:1080
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18578,7 +18344,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:869
+#: frappe/core/doctype/user/user.py:871
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18735,7 +18501,7 @@ msgstr ""
msgid "Permanently Submit {0}?"
msgstr ""
-#: frappe/public/js/frappe/model/model.js:733
+#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
msgstr ""
@@ -18896,8 +18662,8 @@ msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:40
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
-#: frappe/public/js/frappe/views/reports/report_view.js:1576
+#: frappe/public/js/frappe/views/reports/report_view.js:1579
+#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
msgstr ""
@@ -18937,7 +18703,7 @@ msgstr ""
msgid "Plant"
msgstr "Zakład"
-#: frappe/email/doctype/email_account/email_account.py:546
+#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
msgstr ""
@@ -18953,7 +18719,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:309
+#: frappe/public/js/frappe/views/reports/query_report.js:307
msgid "Please Set Chart"
msgstr ""
@@ -18969,7 +18735,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1063
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -18997,11 +18763,11 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:946
+#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1059
+#: frappe/core/doctype/user/user.py:1061
msgid "Please check your email for verification"
msgstr ""
@@ -19029,10 +18795,6 @@ msgstr ""
msgid "Please click on the following link to set your new password"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:343
-msgid "Please close this window"
-msgstr ""
-
#: frappe/www/confirm_workflow_action.html:4
msgid "Please confirm your action to {0} this document."
msgstr ""
@@ -19049,7 +18811,7 @@ msgstr ""
msgid "Please create chart first"
msgstr ""
-#: frappe/desk/form/meta.py:214
+#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
msgstr ""
@@ -19061,7 +18823,7 @@ msgstr ""
msgid "Please duplicate this to make changes"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:162
+#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19079,7 +18841,7 @@ msgstr ""
msgid "Please enable pop-ups in your browser"
msgstr ""
-#: frappe/integrations/google_oauth.py:53
+#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
msgstr ""
@@ -19156,7 +18918,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:987
+#: frappe/model/document.py:986
msgid "Please refresh to get the latest document."
msgstr ""
@@ -19180,7 +18942,7 @@ msgstr ""
msgid "Please save the document before removing assignment"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1703
+#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
msgstr ""
@@ -19196,11 +18958,11 @@ msgstr ""
msgid "Please select Entity Type first"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:112
+#: frappe/core/doctype/system_settings/system_settings.py:113
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1181
+#: frappe/public/js/frappe/views/reports/query_report.js:1183
msgid "Please select X and Y fields"
msgstr ""
@@ -19228,7 +18990,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1140
+#: frappe/model/db_query.py:1141
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19250,10 +19012,6 @@ msgstr ""
msgid "Please select {0}"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:305
-msgid "Please set Dropbox access keys in site config or doctype"
-msgstr ""
-
#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
msgstr ""
@@ -19262,7 +19020,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:1404
+#: frappe/public/js/frappe/views/reports/query_report.js:1406
msgid "Please set filters"
msgstr ""
@@ -19282,7 +19040,7 @@ msgstr ""
msgid "Please set the series to be used."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:125
+#: frappe/core/doctype/system_settings/system_settings.py:126
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr ""
@@ -19290,19 +19048,19 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:422
+#: frappe/core/doctype/user/user.py:423
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:434
+#: 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:823
+#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:774
+#: frappe/permissions.py:783
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19331,7 +19089,7 @@ msgstr ""
msgid "Please try again"
msgstr ""
-#: frappe/integrations/google_oauth.py:56
+#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
msgstr ""
@@ -19644,8 +19402,8 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1728
-#: frappe/public/js/frappe/views/reports/report_view.js:1531
+#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr ""
@@ -19888,7 +19646,7 @@ msgstr "Protip: Dodaj Reference: {{ reference_doctype }} {{ reference_name
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
msgstr ""
@@ -20209,7 +19967,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:729
+#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
msgstr ""
@@ -20230,7 +19988,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:554
+#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
msgstr ""
@@ -20263,12 +20021,6 @@ msgstr ""
msgid "Queued for Submission. You can track the progress over {0}."
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:65
-#: frappe/integrations/doctype/google_drive/google_drive.py:153
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:86
-msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr ""
-
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
@@ -20404,7 +20156,7 @@ msgstr ""
msgid "Re-Run in Console"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:728
+#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
msgstr ""
@@ -20506,7 +20258,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:889
+#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
msgstr ""
@@ -20871,11 +20623,11 @@ msgid "Referrer"
msgstr ""
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:548
+#: frappe/public/js/frappe/desk.js:556
#: 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:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1719
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20894,12 +20646,10 @@ msgstr "Odśwież Arkusz Google"
#. 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 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
@@ -20916,7 +20666,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
msgstr ""
@@ -21079,7 +20829,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
#: frappe/public/js/frappe/form/toolbar.js:432
-#: frappe/public/js/frappe/model/model.js:772
+#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
msgstr ""
@@ -21089,7 +20839,7 @@ msgstr ""
msgid "Rename Fieldname"
msgstr ""
-#: frappe/public/js/frappe/model/model.js:759
+#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
msgstr ""
@@ -21153,7 +20903,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:146
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
msgstr ""
@@ -21291,7 +21041,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1902
+#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
msgstr ""
@@ -21343,7 +21093,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1009
+#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
msgstr ""
@@ -21359,11 +21109,11 @@ msgstr ""
msgid "Report updated successfully"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1351
+#: frappe/public/js/frappe/views/reports/report_view.js:1357
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1940
+#: frappe/public/js/frappe/views/reports/query_report.js:1942
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21399,7 +21149,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:925
+#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
msgstr ""
@@ -21849,7 +21599,7 @@ msgstr ""
msgid "Role and Level"
msgstr "Rola i Poziom"
-#: frappe/core/doctype/user/user.py:363
+#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -21964,7 +21714,7 @@ msgstr "Przekierowania trasy"
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:855 frappe/model/document.py:778
+#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
msgstr ""
@@ -21977,7 +21727,7 @@ msgstr ""
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:982
msgid "Row #{0}:"
msgstr ""
@@ -22055,7 +21805,7 @@ msgstr "Reguła"
msgid "Rule Conditions"
msgstr "Warunki reguł"
-#: frappe/permissions.py:653
+#: frappe/permissions.py:662
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22099,23 +21849,6 @@ msgstr ""
msgid "Runtime in Seconds"
msgstr ""
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "S3 Backup Settings"
-msgstr ""
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
-msgid "S3 Backup complete!"
-msgstr ""
-
-#. Label of the s3_bucket_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Bucket Details"
-msgstr "Szczegóły łyżki S3"
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
@@ -22256,7 +21989,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/page/print/print.js:858
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/quick_entry.js:185
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
@@ -22266,8 +21999,8 @@ msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
-#: frappe/public/js/frappe/views/reports/query_report.js:1894
-#: frappe/public/js/frappe/views/reports/report_view.js:1720
+#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
@@ -22284,8 +22017,8 @@ msgstr ""
msgid "Save Anyway"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1382
-#: frappe/public/js/frappe/views/reports/report_view.js:1727
+#: frappe/public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
msgstr ""
@@ -22293,7 +22026,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1897
+#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
msgstr ""
@@ -22459,7 +22192,7 @@ msgstr ""
msgid "Scheduler Status"
msgstr ""
-#: frappe/utils/scheduler.py:249
+#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr ""
@@ -22685,7 +22418,7 @@ msgstr "Ustawienia Zabezpieczeń"
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:858
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "See all past reports."
msgstr ""
@@ -22765,7 +22498,7 @@ msgstr ""
msgid "Select Child Table"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:377
+#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
msgstr ""
@@ -23082,31 +22815,11 @@ msgstr "Wyślij załączniki e-maila jako PDF (zalecane)"
msgid "Send Email To Creator"
msgstr ""
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Dropbox Settings'
-#. Label of the send_email_for_successful_backup (Check) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Email for Successful Backup"
-msgstr "Wyślij e-mail do udanej kopii zapasowej"
-
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Email for Successful backup"
-msgstr "Wyślij e-mail do udanej kopii zapasowej"
-
#. 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 "Wyślij mi kopię wychodzących wiadomości e-mail"
-#. Label of the email (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Notification To"
-msgstr "Wyślij Powiadomienie do"
-
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -23123,14 +22836,6 @@ msgstr "Wysyłaj powiadomienia o śledzonych przeze mnie dokumentach"
msgid "Send Notifications For Email Threads"
msgstr "Wysyłaj powiadomienia o wątkach e-mail"
-#. Label of the send_notifications_to (Data) field in DocType 'Dropbox
-#. Settings'
-#. Label of the notify_email (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Notifications To"
-msgstr "Wyślij Powiadomienia do"
-
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
msgstr ""
@@ -23389,7 +23094,7 @@ msgstr ""
msgid "Server Action"
msgstr "Działanie serwera"
-#: frappe/app.py:383 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23455,7 +23160,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:360
+#: frappe/app.py:353
msgid "Session Expired"
msgstr ""
@@ -23464,7 +23169,7 @@ msgstr ""
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:119
+#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
msgstr ""
@@ -23487,7 +23192,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr "Ustaw baner z obrazka"
-#: frappe/public/js/frappe/views/reports/query_report.js:201
+#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
msgstr ""
@@ -23513,7 +23218,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
msgstr ""
@@ -23731,8 +23436,8 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1763
-#: frappe/public/js/frappe/views/reports/report_view.js:1698
+#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23828,6 +23533,15 @@ msgstr ""
msgid "Show \"Call to Action\" in Blog"
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"
@@ -23998,7 +23712,7 @@ msgstr "Pokaż tytuł"
msgid "Show Title in Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1521
+#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
msgstr ""
@@ -24108,7 +23822,7 @@ msgstr "Pokaż tytuł w oknie przeglądarki jako "Prefiks - tytuł""
msgid "Show {0} List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:495
+#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
msgstr ""
@@ -24143,7 +23857,7 @@ msgstr "Pasek boczny i Komentarze"
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
msgstr ""
@@ -24788,7 +24502,7 @@ msgstr "Statystyki Interwał czasowy"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
-#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: frappe/public/js/frappe/views/reports/report_view.js:975
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
@@ -25087,7 +24801,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:1166
+#: frappe/public/js/frappe/form/grid.js:1170
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25184,7 +24898,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:720
+#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
msgstr ""
@@ -25474,11 +25188,9 @@ msgstr ""
#: frappe/geo/doctype/country/country.json
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/connected_app/connected_app.json
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.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_drive/google_drive.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
@@ -25487,7 +25199,6 @@ msgstr ""
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_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
@@ -25612,11 +25323,11 @@ msgstr "Tabela MultiSelect"
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1165
+#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1565
+#: frappe/model/document.py:1564
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25635,7 +25346,7 @@ msgstr ""
msgid "Tag Link"
msgstr ""
-#: frappe/model/meta.py:57
+#: 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
@@ -25647,15 +25358,6 @@ msgstr ""
msgid "Tags"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:29
-msgid "Take Backup"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
-msgid "Take Backup Now"
-msgstr ""
-
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
msgstr ""
@@ -25733,12 +25435,12 @@ msgstr "Ostrzeżenia szablonu"
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1027
+#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
msgstr ""
-#: frappe/core/doctype/translation/test_translation.py:56
-#: frappe/core/doctype/translation/test_translation.py:63
+#: frappe/core/doctype/translation/test_translation.py:47
+#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
msgstr ""
@@ -25747,8 +25449,8 @@ msgstr ""
msgid "Test Job ID"
msgstr ""
-#: frappe/core/doctype/translation/test_translation.py:58
-#: frappe/core/doctype/translation/test_translation.py:66
+#: frappe/core/doctype/translation/test_translation.py:49
+#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
msgstr ""
@@ -25756,7 +25458,7 @@ msgstr ""
msgid "Test email sent to {0}"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:388
+#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25837,7 +25539,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1188
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
msgstr ""
@@ -26005,15 +25707,15 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:987
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:991
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -26025,7 +25727,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:334
+#: frappe/utils/response.py:331
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26086,7 +25788,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26115,7 +25817,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:958
+#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26202,12 +25904,12 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:750
+#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:117
-#: frappe/public/js/frappe/model/model.js:755
+#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr ""
@@ -26245,7 +25947,7 @@ msgstr ""
msgid "This document is already amended, you cannot ammend it again"
msgstr ""
-#: frappe/model/document.py:474
+#: frappe/model/document.py:473
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -26306,7 +26008,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr "Występuje ponad slideshow"
-#: frappe/public/js/frappe/views/reports/query_report.js:2132
+#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26370,7 +26072,7 @@ msgstr ""
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1033
+#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26378,7 +26080,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:856
+#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
msgstr ""
@@ -26444,7 +26146,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1240
+#: frappe/core/doctype/user/user.py:1242
msgid "Throttled"
msgstr ""
@@ -26795,7 +26497,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:857
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26820,10 +26522,6 @@ msgstr ""
msgid "To use Google Contacts, enable {0}."
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:8
-msgid "To use Google Drive, enable {0}."
-msgstr ""
-
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -26854,7 +26552,7 @@ msgstr ""
msgid "Today"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1564
+#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
msgstr ""
@@ -26870,7 +26568,7 @@ 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:1568
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
msgstr ""
@@ -26926,11 +26624,11 @@ msgstr ""
msgid "Too many changes to database in single action."
msgstr ""
-#: frappe/utils/background_jobs.py:728
+#: 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:1028
+#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -26994,8 +26692,8 @@ msgstr "Temat"
#: frappe/desk/query_report.py:533
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1320
-#: frappe/public/js/frappe/views/reports/report_view.js:1545
+#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr ""
@@ -27058,11 +26756,11 @@ msgstr ""
msgid "Total:"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1250
+#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1225
+#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
msgstr ""
@@ -27175,7 +26873,7 @@ msgstr "Przejścia"
msgid "Translatable"
msgstr "Przetłumaczalny"
-#: frappe/public/js/frappe/views/reports/query_report.js:2188
+#: frappe/public/js/frappe/views/reports/query_report.js:2183
msgid "Translate Data"
msgstr ""
@@ -27186,7 +26884,7 @@ msgstr ""
msgid "Translate Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1650
+#: frappe/public/js/frappe/views/reports/report_view.js:1656
msgid "Translate values"
msgstr ""
@@ -27334,7 +27032,7 @@ msgstr "Metoda uwierzytelniania dwóch czynników"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/views/file/file_view.js:337
#: frappe/public/js/frappe/views/workspace/workspace.js:399
-#: frappe/public/js/frappe/widgets/widget_dialog.js:391
+#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
msgid "Type"
@@ -27414,7 +27112,7 @@ msgstr ""
#: 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:458
+#: 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"
@@ -27476,7 +27174,7 @@ msgstr ""
msgid "Unable to load camera."
msgstr ""
-#: frappe/public/js/frappe/model/model.js:268
+#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
msgstr ""
@@ -27505,7 +27203,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr "Stan niepodpisania"
-#: frappe/app.py:383
+#: frappe/app.py:376
msgid "Uncaught Exception"
msgstr ""
@@ -27738,7 +27436,7 @@ msgstr ""
msgid "Updated Successfully"
msgstr ""
-#: frappe/public/js/frappe/desk.js:444
+#: frappe/public/js/frappe/desk.js:452
msgid "Updated To A New Version 🎉"
msgstr ""
@@ -27746,7 +27444,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:333
+#: frappe/utils/response.py:330
msgid "Updating"
msgstr ""
@@ -27820,18 +27518,6 @@ msgstr "Przesłano do Dropbox"
msgid "Uploaded To Google Drive"
msgstr "Przesłano na Dysk Google"
-#: frappe/integrations/doctype/google_drive/google_drive.py:196
-msgid "Uploading backup to Google Drive."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:201
-msgid "Uploading successful."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:16
-msgid "Uploading to Google Drive"
-msgstr ""
-
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -27915,11 +27601,11 @@ msgstr ""
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:434
+#: frappe/model/db_query.py:435
msgid "Use of function {0} in field is restricted"
msgstr ""
-#: frappe/model/db_query.py:411
+#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
msgstr ""
@@ -28036,7 +27722,7 @@ msgstr "Użytkownik nie może stworzyć"
msgid "User Cannot Search"
msgstr "Użytkownik nie może szukać"
-#: frappe/public/js/frappe/desk.js:546
+#: frappe/public/js/frappe/desk.js:554
msgid "User Changed"
msgstr ""
@@ -28142,8 +27828,8 @@ 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:1881
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
@@ -28240,7 +27926,7 @@ msgstr "Użytkownik musi zawsze zaznaczyć"
msgid "User permission already exists"
msgstr ""
-#: frappe/www/login.py:167
+#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
msgstr ""
@@ -28248,23 +27934,23 @@ msgstr ""
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: frappe/core/doctype/user/user.py:536
+#: frappe/core/doctype/user/user.py:537
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:326
+#: frappe/core/doctype/user/user.py:327
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:602
+#: frappe/core/doctype/user/user.py:603
msgid "User {0} cannot be renamed"
msgstr ""
-#: frappe/permissions.py:138
+#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
msgstr ""
-#: frappe/permissions.py:161
+#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr ""
@@ -28277,7 +27963,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1369
+#: frappe/core/doctype/user/user.py:1371
msgid "User {0} impersonated as {1}"
msgstr ""
@@ -28306,7 +27992,7 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:687
+#: frappe/core/doctype/user/user.py:689
msgid "Username {0} already exists"
msgstr ""
@@ -28446,15 +28132,15 @@ msgstr "Wartość Zmieniona"
msgid "Value To Be Set"
msgstr "Wartość, którą należy ustawić"
-#: frappe/model/base_document.py:1049 frappe/model/document.py:834
+#: frappe/model/base_document.py:1054 frappe/model/document.py:833
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:780
+#: frappe/model/document.py:779
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:784
+#: frappe/model/document.py:783
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28485,7 +28171,7 @@ msgstr ""
msgid "Value to Validate"
msgstr "Wartość do zweryfikowania"
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1124
msgid "Value too big"
msgstr ""
@@ -29086,11 +28772,6 @@ msgstr "Dni robocze"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -29099,9 +28780,6 @@ msgstr "Dni robocze"
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:399
#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
@@ -29136,11 +28814,11 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:414
+#: frappe/core/doctype/user/user.py:415
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:475
+#: frappe/core/doctype/user/user.py:476
msgid "Welcome to {0}"
msgstr ""
@@ -29173,7 +28851,7 @@ 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:468
+#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
msgstr ""
@@ -29372,7 +29050,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:177
+#: frappe/public/js/frappe/router.js:173
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29442,11 +29120,11 @@ msgstr ""
msgid "Workspaces"
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:753
+#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
msgstr ""
@@ -29465,11 +29143,11 @@ msgstr ""
msgid "Write"
msgstr "Zapisz"
-#: frappe/model/base_document.py:949
+#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:484
+#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
msgstr ""
@@ -29488,13 +29166,13 @@ msgstr ""
msgid "Y Axis"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:491
+#: frappe/public/js/frappe/views/reports/report_view.js:497
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:1221
+#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
msgstr ""
@@ -29555,7 +29233,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29595,11 +29273,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:409
+#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:398
+#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29622,7 +29300,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:604
+#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29634,7 +29312,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:569
+#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29650,7 +29328,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:669
+#: frappe/__init__.py:676
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29658,7 +29336,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr ""
-#: frappe/core/doctype/installed_applications/installed_applications.py:82
+#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -29822,11 +29500,11 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:368
+#: frappe/app.py:361
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:838
+#: frappe/desk/query_report.py:831
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29838,11 +29516,11 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:772
+#: frappe/website/doctype/web_form/web_form.py:769
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:286 frappe/utils/response.py:290
+#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
msgstr ""
@@ -29850,7 +29528,7 @@ msgstr ""
msgid "You don't have permission to get a report on: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:175
+#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
msgstr ""
@@ -29903,23 +29581,23 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:339
+#: 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:768
+#: frappe/website/doctype/web_form/web_form.py:765
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:609
+#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:357
+#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
@@ -29935,11 +29613,11 @@ msgstr ""
msgid "You need to be a system user to access this page."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:94
+#: 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:275
+#: frappe/utils/response.py:272
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29947,7 +29625,7 @@ msgstr ""
msgid "You need to be logged in to access this page"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:164
+#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
msgstr ""
@@ -30022,7 +29700,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/desk.js:543
+#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -30105,7 +29783,7 @@ msgstr "Twoje imię i nazwisko i adres organizacji w stopce e-mail."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:354
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -30336,7 +30014,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:403 frappe/permissions.py:414
+#: frappe/permissions.py:412 frappe/permissions.py:423
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30888,7 +30566,7 @@ msgstr ""
msgid "{0} Calendar"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:564
+#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
msgstr ""
@@ -30936,7 +30614,7 @@ msgstr ""
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1149
+#: frappe/model/base_document.py:1154
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -30946,7 +30624,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:952
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
msgstr ""
@@ -31012,7 +30690,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:149
+#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
msgstr ""
@@ -31025,7 +30703,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:547
+#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -31150,7 +30828,7 @@ msgstr ""
msgid "{0} is an invalid email address in 'Recipients'"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1462
+#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
msgstr ""
@@ -31159,27 +30837,27 @@ msgstr ""
msgid "{0} is currently {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1431
+#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1451
+#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1441
+#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1456
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1446
+#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1481
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
msgstr ""
@@ -31199,7 +30877,7 @@ msgstr ""
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:64
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
msgstr ""
@@ -31228,11 +30906,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:787
+#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31244,27 +30922,27 @@ msgstr ""
msgid "{0} is not a zip file"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1436
+#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1483
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1487
+#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:165
+#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1470
+#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
msgstr ""
@@ -31275,11 +30953,11 @@ msgstr ""
msgid "{0} is required"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1486
+#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1465
+#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
msgstr ""
@@ -31287,12 +30965,12 @@ msgstr ""
msgid "{0} items selected"
msgstr ""
-#: frappe/core/doctype/user/user.py:1378
+#: frappe/core/doctype/user/user.py:1380
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:104
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
msgstr ""
@@ -31308,7 +30986,7 @@ msgstr ""
msgid "{0} m"
msgstr ""
-#: frappe/desk/notifications.py:397
+#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
msgstr ""
@@ -31320,35 +30998,35 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1792
+#: frappe/model/document.py:1791
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1551
+#: frappe/model/document.py:1550
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1553
+#: frappe/model/document.py:1552
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1549
+#: frappe/model/document.py:1548
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1547 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:875
+#: frappe/model/base_document.py:876
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:732
+#: frappe/model/base_document.py:729
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1555
+#: frappe/model/document.py:1554
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31423,7 +31101,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1785
+#: frappe/model/document.py:1784
msgid "{0} row #{1}: "
msgstr ""
@@ -31519,11 +31197,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:665 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:987
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -31539,7 +31217,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:260 frappe/permissions.py:558
+#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
msgstr ""
@@ -31547,7 +31225,7 @@ msgstr ""
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1110
+#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
msgstr ""
@@ -31555,7 +31233,7 @@ msgstr ""
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1115
+#: frappe/model/base_document.py:1120
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
@@ -31656,7 +31334,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1279
+#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
msgstr ""
diff --git a/frappe/locale/pt.po b/frappe/locale/pt.po
index 0de33fc6b4..f4904c1329 100644
--- a/frappe/locale/pt.po
+++ b/frappe/locale/pt.po
@@ -2,14 +2,14 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-08 09:34+0000\n"
-"PO-Revision-Date: 2025-06-11 14:05\n"
+"POT-Creation-Date: 2025-06-22 09:34+0000\n"
+"PO-Revision-Date: 2025-06-22 16:40\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Portuguese\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.13.1\n"
+"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"
@@ -140,7 +140,7 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:951
+#: frappe/public/js/frappe/views/reports/query_report.js:953
msgid "1 Report"
msgstr ""
@@ -148,7 +148,7 @@ msgstr ""
msgid "1 comment"
msgstr ""
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:711
msgid "1 day ago"
msgstr ""
@@ -157,17 +157,17 @@ msgid "1 hour"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:709
msgid "1 hour ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:707
msgid "1 minute ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:715
msgid "1 month ago"
msgstr ""
@@ -179,37 +179,37 @@ msgstr ""
msgid "1 record will be exported"
msgstr ""
-#: frappe/tests/test_utils.py:705
+#: frappe/tests/test_utils.py:706
msgid "1 second ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:713
msgid "1 week ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:717
msgid "1 year ago"
msgstr ""
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:710
msgid "2 hours ago"
msgstr ""
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:716
msgid "2 months ago"
msgstr ""
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:714
msgid "2 weeks ago"
msgstr ""
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:718
msgid "2 years ago"
msgstr ""
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:708
msgid "3 minutes ago"
msgstr ""
@@ -225,7 +225,7 @@ msgstr ""
msgid "5 Records"
msgstr ""
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:712
msgid "5 days ago"
msgstr ""
@@ -245,7 +245,7 @@ msgstr ""
msgid "<="
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:588
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
msgid "{0} is not a valid URL"
msgstr ""
@@ -654,10 +654,7 @@ msgid "API"
msgstr ""
#. Label of the api_access (Section Break) field in DocType 'User'
-#. Label of the api_access_section (Section Break) field in DocType 'S3 Backup
-#. Settings'
#: frappe/core/doctype/user/user.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "API Access"
msgstr ""
@@ -769,17 +766,6 @@ msgstr ""
msgid "Access Control"
msgstr ""
-#. Label of the access_key_id (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key ID"
-msgstr ""
-
-#. Label of the secret_access_key (Password) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key Secret"
-msgstr ""
-
#. Name of a DocType
#. Label of a Link in the Users Workspace
#: frappe/core/doctype/access_log/access_log.json
@@ -830,6 +816,10 @@ msgstr ""
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'
@@ -860,7 +850,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1872
+#: frappe/model/document.py:1871
msgid "Action Failed"
msgstr ""
@@ -909,10 +899,10 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:192
-#: frappe/public/js/frappe/views/reports/query_report.js:205
-#: frappe/public/js/frappe/views/reports/query_report.js:215
-#: frappe/public/js/frappe/views/reports/query_report.js:845
+#: frappe/public/js/frappe/views/reports/query_report.js:190
+#: frappe/public/js/frappe/views/reports/query_report.js:203
+#: frappe/public/js/frappe/views/reports/query_report.js:213
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Actions"
msgstr ""
@@ -974,8 +964,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:267
-#: frappe/public/js/frappe/views/reports/query_report.js:295
+#: frappe/public/js/frappe/views/reports/query_report.js:265
+#: frappe/public/js/frappe/views/reports/query_report.js:293
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr ""
@@ -1016,7 +1006,7 @@ msgstr ""
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:211
+#: frappe/public/js/frappe/views/reports/query_report.js:209
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1025,10 +1015,10 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1769
-#: frappe/public/js/frappe/views/reports/query_report.js:1772
-#: frappe/public/js/frappe/views/reports/report_view.js:349
-#: frappe/public/js/frappe/views/reports/report_view.js:374
+#: frappe/public/js/frappe/views/reports/query_report.js:1771
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/report_view.js:355
+#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
msgstr ""
@@ -1052,7 +1042,7 @@ msgid "Add Custom Tags"
msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
-#: frappe/public/js/frappe/widgets/widget_dialog.js:703
+#: frappe/public/js/frappe/widgets/widget_dialog.js:716
msgid "Add Filters"
msgstr ""
@@ -1087,7 +1077,7 @@ msgstr ""
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:806
+#: frappe/core/doctype/user/user.py:808
msgid "Add Roles"
msgstr ""
@@ -1232,7 +1222,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:253
+#: frappe/public/js/frappe/views/reports/query_report.js:251
msgid "Add to Dashboard"
msgstr ""
@@ -1387,11 +1377,11 @@ msgstr ""
msgid "Administrator"
msgstr ""
-#: frappe/core/doctype/user/user.py:1211
+#: frappe/core/doctype/user/user.py:1213
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1205
+#: frappe/core/doctype/user/user.py:1207
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
@@ -1624,12 +1614,6 @@ msgstr ""
msgid "Allow Consecutive Login Attempts "
msgstr ""
-#. Label of the allow_dropbox_access (Button) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Allow Dropbox Access"
-msgstr ""
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
msgid "Allow Google Calendar Access"
msgstr ""
@@ -1638,10 +1622,6 @@ msgstr ""
msgid "Allow Google Contacts Access"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:52
-msgid "Allow Google Drive Access"
-msgstr ""
-
#. Label of the allow_guest (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
@@ -1895,7 +1875,7 @@ msgstr ""
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
-#: frappe/core/doctype/user/user.py:1021
+#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr ""
@@ -1903,11 +1883,11 @@ msgstr ""
msgid "Already in the following Users ToDo list:{0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:896
+#: frappe/public/js/frappe/views/reports/report_view.js:902
msgid "Also adding the dependent currency field {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:909
+#: frappe/public/js/frappe/views/reports/report_view.js:915
msgid "Also adding the status dependency field {0}"
msgstr ""
@@ -1986,7 +1966,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:550
+#: frappe/model/document.py:549
msgid "Amendment Not Allowed"
msgstr ""
@@ -2075,15 +2055,6 @@ msgstr ""
msgid "App"
msgstr ""
-#. Label of the app_access_key (Data) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Access Key"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:22
-msgid "App Access Key and/or Secret Key are not present."
-msgstr ""
-
#. Label of the client_id (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client ID"
@@ -2117,16 +2088,11 @@ msgstr ""
msgid "App Name"
msgstr ""
-#. Label of the app_secret_key (Password) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Secret Key"
-msgstr ""
-
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1462
+#: frappe/__init__.py:1465
msgid "App {0} is not installed"
msgstr ""
@@ -2276,7 +2242,7 @@ msgstr ""
msgid "Are you sure you want to clear the assignments?"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:290
+#: frappe/public/js/frappe/form/grid.js:294
msgid "Are you sure you want to delete all rows?"
msgstr ""
@@ -2304,7 +2270,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:965
+#: frappe/public/js/frappe/views/reports/query_report.js:967
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2430,7 +2396,7 @@ msgstr ""
msgid "Assigned By Full Name"
msgstr ""
-#: frappe/model/meta.py:60
+#: 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
@@ -2700,13 +2666,11 @@ msgstr ""
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
#. Contacts'
-#. Label of the authorization_code (Data) field in DocType 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
@@ -2744,12 +2708,6 @@ msgstr ""
msgid "Authorize Google Contacts Access"
msgstr ""
-#. Label of the authorize_google_drive_access (Button) field in DocType 'Google
-#. Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Authorize Google Drive 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"
@@ -2896,11 +2854,11 @@ msgstr ""
msgid "Automatic"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:774
+#: 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:768
+#: frappe/email/doctype/email_account/email_account.py:766
msgid "Automatic Linking can be activated only if Incoming is enabled."
msgstr ""
@@ -3114,66 +3072,14 @@ msgstr ""
msgid "Background Workers"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:170
-msgid "Backing up Data."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:32
-msgid "Backing up to Google Drive."
-msgstr ""
-
-#. Label of a Card Break in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Backup"
-msgstr ""
-
-#. Label of the backup_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Details"
-msgstr ""
-
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
msgstr ""
-#. Label of the backup_files (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Files"
-msgstr ""
-
-#. Label of the backup_folder_id (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder ID"
-msgstr ""
-
-#. Label of the backup_folder_name (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder Name"
-msgstr ""
-
-#. Label of the backup_frequency (Select) field in DocType 'Dropbox Settings'
-#. Label of the frequency (Select) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Frequency"
-msgstr ""
-
-#. Label of the backup_path (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Path"
-msgstr ""
-
#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
msgstr ""
-#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup public and private files along with the database."
-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'
@@ -3187,7 +3093,7 @@ msgstr ""
msgid "Backups (MB)"
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:65
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
msgid "Bad Cron Expression"
msgstr ""
@@ -3584,15 +3490,6 @@ msgstr ""
msgid "Brute Force Security"
msgstr ""
-#. Label of the bucket (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Bucket Name"
-msgstr ""
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:71
-msgid "Bucket {0} not found."
-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"
@@ -3629,7 +3526,7 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1184
+#: frappe/public/js/frappe/form/grid.js:1188
msgid "Bulk Edit {0}"
msgstr ""
@@ -3704,12 +3601,6 @@ msgstr ""
msgid "By default the title is used as meta title, adding a value here will override it."
msgstr ""
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "By default, emails are only sent for failed backups."
-msgstr ""
-
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
@@ -4020,7 +3911,7 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1156
+#: frappe/model/base_document.py:1161
msgid "Cannot Update After Submit"
msgstr ""
@@ -4040,11 +3931,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1012
+#: frappe/model/document.py:1011
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1026
+#: frappe/model/document.py:1025
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -4127,7 +4018,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1032
+#: frappe/model/document.py:1031
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4160,11 +4051,11 @@ msgstr ""
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1128
+#: frappe/public/js/frappe/form/grid.js:1132
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1100
+#: frappe/model/document.py:1099
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4180,7 +4071,7 @@ msgstr ""
msgid "Cannot move row"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:921
+#: frappe/public/js/frappe/views/reports/report_view.js:927
msgid "Cannot remove ID field"
msgstr ""
@@ -4205,11 +4096,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr ""
-#: frappe/model/db_query.py:1125
+#: frappe/model/db_query.py:1126
msgid "Cannot use sub-query in order by"
msgstr ""
-#: frappe/model/db_query.py:1144
+#: frappe/model/db_query.py:1145
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4235,7 +4126,7 @@ msgstr ""
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:261
msgid "Card Label"
msgstr ""
@@ -4377,7 +4268,7 @@ msgstr ""
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:290
+#: frappe/public/js/frappe/views/reports/query_report.js:288
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4397,7 +4288,7 @@ 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:499
+#: frappe/public/js/frappe/views/reports/report_view.js:505
msgid "Chart Type"
msgstr ""
@@ -4511,7 +4402,7 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:638
+#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4604,10 +4495,6 @@ msgstr ""
msgid "Click here to verify"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:47
-msgid "Click on Authorize Google Drive Access to authorize Google Drive Access."
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4634,7 +4521,6 @@ msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
-#: frappe/integrations/doctype/google_drive/google_drive.py:53
#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
msgstr ""
@@ -4808,7 +4694,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4863,9 +4749,9 @@ 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:1229
-#: frappe/public/js/frappe/widgets/widget_dialog.js:533
-#: frappe/public/js/frappe/widgets/widget_dialog.js:681
+#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: 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
@@ -5006,7 +4892,7 @@ msgstr ""
msgid "Comment publicity can only be updated by the original author or a System Manager."
msgstr ""
-#: frappe/model/meta.py:59 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/model/meta.js:209
#: frappe/public/js/frappe/model/model.js:135
#: frappe/website/doctype/web_form/templates/web_form.html:122
@@ -5113,7 +4999,7 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:477
+#: frappe/core/doctype/user/user.py:478
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
@@ -5209,7 +5095,7 @@ msgstr ""
msgid "Configuration"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:481
+#: frappe/public/js/frappe/views/reports/report_view.js:487
msgid "Configure Chart"
msgstr ""
@@ -5546,7 +5432,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1096
+#: frappe/model/document.py:1095
msgid "Could not find {0}"
msgstr ""
@@ -5575,7 +5461,7 @@ msgstr ""
msgid "Count"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:527
+#: frappe/public/js/frappe/widgets/widget_dialog.js:540
msgid "Count Customizations"
msgstr ""
@@ -5583,10 +5469,14 @@ msgstr ""
#. 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:512
+#: 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"
@@ -5637,7 +5527,7 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1261
+#: frappe/public/js/frappe/views/reports/query_report.js:1263
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5651,13 +5541,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:188
-#: frappe/public/js/frappe/views/reports/query_report.js:233
+#: frappe/public/js/frappe/views/reports/query_report.js:186
+#: frappe/public/js/frappe/views/reports/query_report.js:231
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:286
-#: frappe/public/js/frappe/views/reports/query_report.js:1188
+#: frappe/public/js/frappe/views/reports/query_report.js:284
+#: frappe/public/js/frappe/views/reports/query_report.js:1190
msgid "Create Chart"
msgstr ""
@@ -5768,7 +5658,7 @@ msgstr ""
msgid "Created At"
msgstr ""
-#: frappe/model/meta.py:56
+#: 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
@@ -5780,14 +5670,14 @@ 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:51
+#: 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:515
+#: frappe/public/js/frappe/desk.js:523
#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
msgstr ""
@@ -5810,7 +5700,7 @@ msgstr ""
msgid "Cron Format"
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:59
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
msgstr ""
@@ -6207,11 +6097,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -6220,9 +6105,6 @@ msgstr ""
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:398
#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
@@ -6776,7 +6658,7 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/toolbar.js:461
-#: frappe/public/js/frappe/views/reports/report_view.js:1734
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
@@ -6819,7 +6701,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:932
+#: frappe/public/js/frappe/views/reports/query_report.js:934
msgid "Delete and Generate New"
msgstr ""
@@ -6828,7 +6710,7 @@ msgctxt "Button text"
msgid "Delete column"
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:738
+#: frappe/public/js/frappe/form/footer/form_timeline.js:741
msgid "Delete comment?"
msgstr ""
@@ -6914,7 +6796,7 @@ msgstr ""
msgid "Deleting {0} records..."
msgstr ""
-#: frappe/public/js/frappe/model/model.js:741
+#: frappe/public/js/frappe/model/model.js:692
msgid "Deleting {0}..."
msgstr ""
@@ -6960,7 +6842,7 @@ 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:310
+#: frappe/public/js/frappe/widgets/widget_dialog.js:323
#: frappe/www/attribution.html:29
msgid "Dependencies"
msgstr ""
@@ -7074,6 +6956,7 @@ msgstr ""
#: 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
@@ -7371,14 +7254,10 @@ 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:1189
+#: frappe/public/js/frappe/form/grid.js:1193
msgid "Do not edit headers which are preset in the template"
msgstr ""
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:69
-msgid "Do not have permission to access bucket {0}."
-msgstr ""
-
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
@@ -7511,7 +7390,7 @@ 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:466
+#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
msgstr ""
@@ -7571,7 +7450,7 @@ 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:669
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
msgid "Doctype"
msgstr ""
@@ -7689,7 +7568,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:477
+#: frappe/model/document.py:476
msgid "Document Queued"
msgstr ""
@@ -7742,7 +7621,7 @@ msgstr ""
msgid "Document States"
msgstr ""
-#: frappe/model/meta.py:52 frappe/public/js/frappe/model/meta.js:202
+#: 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 ""
@@ -7813,11 +7692,11 @@ msgstr ""
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: frappe/permissions.py:148
+#: frappe/permissions.py:149
msgid "Document Type is not importable"
msgstr ""
-#: frappe/permissions.py:144
+#: frappe/permissions.py:145
msgid "Document Type is not submittable"
msgstr ""
@@ -7846,7 +7725,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1943
+#: frappe/model/document.py:1942
msgid "Document Unlocked"
msgstr ""
@@ -8037,7 +7916,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:835
+#: frappe/public/js/frappe/views/reports/query_report.js:830
msgid "Download Report"
msgstr ""
@@ -8048,7 +7927,7 @@ 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:57
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
msgid "Download Your Data"
msgstr ""
@@ -8104,29 +7983,6 @@ msgstr ""
msgid "Drop files here"
msgstr ""
-#. Label of the dropbox_access_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Access Token"
-msgstr ""
-
-#. Label of the dropbox_refresh_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Refresh Token"
-msgstr ""
-
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Dropbox Settings"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:347
-msgid "Dropbox Setup"
-msgstr ""
-
#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
@@ -8156,7 +8012,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:666 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
@@ -8255,13 +8111,13 @@ msgstr ""
#: 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:668
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:669
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:883
-#: frappe/public/js/frappe/views/reports/query_report.js:1722
+#: frappe/public/js/frappe/views/reports/query_report.js:878
+#: frappe/public/js/frappe/views/reports/query_report.js:1724
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8424,7 +8280,7 @@ msgstr ""
msgid "Edit your workflow visually using the Workflow Builder."
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:672
+#: frappe/public/js/frappe/views/reports/report_view.js:678
#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
msgstr ""
@@ -8525,7 +8381,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:736
+#: frappe/core/doctype/user/user.py:738
msgid "Email Account added multiple times"
msgstr ""
@@ -8533,7 +8389,7 @@ msgstr ""
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:578
+#: frappe/email/doctype/email_account/email_account.py:576
msgid "Email Account {0} Disabled"
msgstr ""
@@ -8759,7 +8615,7 @@ msgstr ""
msgid "Emails Pulled"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:936
+#: frappe/email/doctype/email_account/email_account.py:934
msgid "Emails are already being pulled from this account."
msgstr ""
@@ -8782,11 +8638,9 @@ 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 Drive'
#. 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_drive/google_drive.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
msgstr ""
@@ -8806,11 +8660,6 @@ msgstr ""
msgid "Enable Auto Reply"
msgstr ""
-#. Label of the enabled (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Enable Automatic Backup"
-msgstr ""
-
#. Label of the enable_automatic_linking (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -8969,7 +8818,6 @@ msgstr ""
#. 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 'Dropbox Settings'
#. 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'
@@ -8980,7 +8828,6 @@ msgstr ""
#: 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/dropbox_settings/dropbox_settings.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/public/js/frappe/model/indicator.js:106
@@ -8993,7 +8840,7 @@ msgstr ""
msgid "Enabled Scheduler"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:1012
+#: frappe/email/doctype/email_account/email_account.py:1010
msgid "Enabled email inbox for user {0}"
msgstr ""
@@ -9074,11 +8921,6 @@ msgstr ""
msgid "Ended At"
msgstr ""
-#. Label of the endpoint_url (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Endpoint URL"
-msgstr ""
-
#. Label of the sb_endpoints_section (Section Break) field in DocType
#. 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -9257,7 +9099,7 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:672
+#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9265,15 +9107,15 @@ msgstr ""
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr ""
-#: frappe/model/base_document.py:806
+#: frappe/model/base_document.py:803
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:816
+#: frappe/model/base_document.py:813
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:810
+#: frappe/model/base_document.py:807
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9422,7 +9264,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2069
+#: frappe/public/js/frappe/views/reports/query_report.js:2071
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9448,7 +9290,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9505,8 +9347,8 @@ 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:1757
-#: frappe/public/js/frappe/views/reports/report_view.js:1621
+#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
@@ -9557,11 +9399,11 @@ msgstr ""
msgid "Export Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1632
+#: frappe/public/js/frappe/views/reports/report_view.js:1638
msgid "Export all matching rows?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1642
+#: frappe/public/js/frappe/views/reports/report_view.js:1648
msgid "Export all {0} rows?"
msgstr ""
@@ -9869,8 +9711,8 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:237
-#: frappe/public/js/frappe/views/reports/query_report.js:1816
+#: frappe/public/js/frappe/views/reports/query_report.js:235
+#: frappe/public/js/frappe/views/reports/query_report.js:1818
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9945,7 +9787,7 @@ msgstr ""
msgid "Field {0} does not exist on {1}"
msgstr ""
-#: frappe/desk/form/meta.py:208
+#: frappe/desk/form/meta.py:184
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
@@ -10048,7 +9890,7 @@ msgstr ""
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
-#: frappe/model/db_query.py:144
+#: frappe/model/db_query.py:146
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
@@ -10097,13 +9939,6 @@ msgstr ""
msgid "File '{0}' not found"
msgstr ""
-#. Label of the file_backup (Check) field in DocType 'Dropbox Settings'
-#. Label of the file_backup (Check) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "File Backup"
-msgstr ""
-
#. Label of the private_file_section (Section Break) field in DocType 'Access
#. Log'
#: frappe/core/doctype/access_log/access_log.json
@@ -10304,7 +10139,7 @@ msgstr ""
msgid "Filters {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1421
+#: frappe/public/js/frappe/views/reports/report_view.js:1427
msgid "Filters:"
msgstr ""
@@ -10451,7 +10286,7 @@ msgstr ""
msgid "Following document {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:111
+#: frappe/website/doctype/web_form/web_form.py:108
msgid "Following fields are missing:"
msgstr ""
@@ -10459,7 +10294,7 @@ msgstr ""
msgid "Following fields have invalid values:"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:345
+#: frappe/public/js/frappe/widgets/widget_dialog.js:358
msgid "Following fields have missing values"
msgstr ""
@@ -10602,7 +10437,7 @@ msgstr ""
msgid "For Document Type"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:553
+#: frappe/public/js/frappe/widgets/widget_dialog.js:566
msgid "For Example: {} Open"
msgstr ""
@@ -10631,7 +10466,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/query_report.js:2068
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10784,7 +10619,7 @@ msgstr ""
#. 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:552
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
msgid "Format"
msgstr ""
@@ -10816,7 +10651,7 @@ msgstr ""
#. 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:149
+#: frappe/www/login.py:153
msgid "Frappe"
msgstr ""
@@ -10833,7 +10668,7 @@ msgstr ""
msgid "Frappe Mail"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:549
+#: frappe/email/doctype/email_account/email_account.py:547
msgid "Frappe Mail OAuth Error"
msgstr ""
@@ -10861,13 +10696,11 @@ msgstr ""
#. 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'
-#. Label of the frequency (Select) field in DocType 'Google Drive'
#: 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/integrations/doctype/google_drive/google_drive.json
#: frappe/public/js/frappe/utils/common.js:395
msgid "Frequency"
msgstr ""
@@ -10913,7 +10746,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
+#: frappe/public/js/frappe/views/reports/query_report.js:1779
msgid "From Document Type"
msgstr ""
@@ -10964,16 +10797,16 @@ 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:247
-#: frappe/public/js/frappe/widgets/widget_dialog.js:686
+#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:693
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:670
+#: frappe/__init__.py:677
msgid "Function {0} is not whitelisted."
msgstr ""
@@ -11038,7 +10871,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:877
+#: frappe/public/js/frappe/views/reports/query_report.js:872
msgid "Generate New Report"
msgstr ""
@@ -11326,32 +11159,12 @@ msgstr ""
msgid "Google Contacts Id"
msgstr ""
-#. Name of a DocType
-#. Label of the google_drive_section (Section Break) field in DocType 'Google
-#. Drive'
#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/google_drive/google_drive.json
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:117
-msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:132
-msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:193
-msgid "Google Drive - Could not locate - {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:204
-msgid "Google Drive Backup Successful."
-msgstr ""
-
#. Label of the section_break_7 (Section Break) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -11681,6 +11494,10 @@ msgstr ""
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'
@@ -12004,17 +11821,17 @@ msgstr ""
msgid "Home Settings"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:330
-#: frappe/core/doctype/file/test_file.py:332
-#: frappe/core/doctype/file/test_file.py:396
+#: 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:385
+#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:341
+#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
msgstr ""
@@ -12059,7 +11876,7 @@ msgstr ""
#: frappe/core/doctype/data_import/importer.py:1177
#: frappe/core/doctype/data_import/importer.py:1242
#: frappe/core/doctype/data_import/importer.py:1245
-#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:50
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
#: frappe/public/js/frappe/list/list_settings.js:337
@@ -12071,7 +11888,7 @@ msgid "ID"
msgstr ""
#: frappe/desk/reportview.py:491
-#: frappe/public/js/frappe/views/reports/report_view.js:978
+#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
msgstr ""
@@ -12255,12 +12072,6 @@ msgstr ""
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
msgstr ""
-#. Description of the 'Backup Path' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "If it's empty, it will backup to the root of the bucket."
-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"
@@ -12391,16 +12202,12 @@ msgstr ""
msgid "Ignored Apps"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:348
-msgid "Illegal Access Token. Please try again"
-msgstr ""
-
#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
msgstr ""
-#: frappe/model/db_query.py:451 frappe/model/db_query.py:454
-#: frappe/model/db_query.py:1128
+#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
+#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
msgstr ""
@@ -12749,11 +12556,11 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1592
+#: frappe/public/js/frappe/views/reports/query_report.js:1594
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1584
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Include indentation"
msgstr ""
@@ -12820,11 +12627,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1542
+#: frappe/model/document.py:1541
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1544
+#: frappe/model/document.py:1543
msgid "Incorrect value:"
msgstr ""
@@ -12833,10 +12640,10 @@ msgstr ""
#. 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:53
+#: 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:999
+#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
msgstr ""
@@ -12911,7 +12718,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:1822
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
msgid "Insert After"
msgstr ""
@@ -12927,7 +12734,7 @@ msgstr ""
msgid "Insert Below"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:384
+#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
msgstr ""
@@ -12976,11 +12783,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:818
+#: frappe/permissions.py:827
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:376
+#: frappe/database/query.py:383
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -13098,7 +12905,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:221
#: frappe/public/js/frappe/form/grid_row.js:833
#: frappe/public/js/frappe/form/layout.js:811
-#: frappe/public/js/frappe/views/reports/report_view.js:710
+#: frappe/public/js/frappe/views/reports/report_view.js:716
msgid "Invalid \"depends_on\" expression"
msgstr ""
@@ -13138,7 +12945,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:102
+#: frappe/database/query.py:103
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13183,6 +12990,7 @@ 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 ""
@@ -13207,7 +13015,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1226 frappe/www/update-password.html:123
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
#: frappe/www/update-password.html:247
msgid "Invalid Password"
@@ -13236,7 +13044,7 @@ msgstr ""
#: frappe/core/doctype/file/file.py:220
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
-#: frappe/public/js/frappe/widgets/widget_dialog.js:589
+#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
msgstr ""
@@ -13257,11 +13065,11 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:393
+#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
-#: frappe/model/document.py:1015 frappe/model/document.py:1029
+#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13285,7 +13093,7 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:182
+#: frappe/database/query.py:189
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
@@ -13311,7 +13119,7 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:324
+#: frappe/app.py:317
msgid "Invalid request arguments"
msgstr ""
@@ -13495,7 +13303,7 @@ 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:328
+#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
msgstr ""
@@ -13710,6 +13518,10 @@ msgstr ""
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 ""
@@ -13741,7 +13553,7 @@ msgstr ""
#. 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:498
+#: frappe/public/js/frappe/widgets/widget_dialog.js:511
msgid "Kanban Board"
msgstr ""
@@ -14013,10 +13825,10 @@ msgstr ""
#: 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:300
-#: frappe/public/js/frappe/widgets/widget_dialog.js:453
-#: frappe/public/js/frappe/widgets/widget_dialog.js:630
-#: frappe/public/js/frappe/widgets/widget_dialog.js:663
+#: 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
@@ -14101,11 +13913,6 @@ msgstr ""
msgid "Last Active"
msgstr ""
-#. Label of the last_backup_on (Datetime) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Last Backup On"
-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"
@@ -14190,12 +13997,12 @@ msgstr ""
msgid "Last Synced On"
msgstr ""
-#: frappe/model/meta.py:55 frappe/public/js/frappe/model/meta.js:205
+#: 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:54 frappe/public/js/frappe/model/meta.js:204
+#: 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 ""
@@ -14239,7 +14046,7 @@ msgid "Leave blank to repeat always"
msgstr ""
#: frappe/core/doctype/communication/mixins.py:207
-#: frappe/email/doctype/email_account/email_account.py:722
+#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
msgstr ""
@@ -14458,7 +14265,7 @@ msgstr ""
msgid "Liked"
msgstr ""
-#: frappe/model/meta.py:58 frappe/public/js/frappe/model/meta.js:208
+#: 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 ""
@@ -14473,11 +14280,6 @@ msgstr ""
msgid "Limit"
msgstr ""
-#. Label of the limit_no_of_backups (Check) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Limit Number of DB Backups"
-msgstr ""
-
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14592,11 +14394,11 @@ msgstr ""
#: 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:414
+#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:350
+#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
msgstr ""
@@ -14609,7 +14411,7 @@ msgstr ""
msgid "Link Type"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:346
+#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
msgstr ""
@@ -14761,7 +14563,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1085
+#: frappe/public/js/frappe/views/reports/query_report.js:1087
msgid "Loading"
msgstr ""
@@ -14892,7 +14694,7 @@ msgstr ""
msgid "Login Page"
msgstr ""
-#: frappe/www/login.py:152
+#: frappe/www/login.py:156
msgid "Login To {0}"
msgstr ""
@@ -15159,7 +14961,7 @@ msgstr ""
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:473
+#: frappe/website/doctype/web_form/web_form.py:470
msgid "Mandatory Information missing:"
msgstr ""
@@ -15434,7 +15236,7 @@ msgid "Menu"
msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:242
-#: frappe/public/js/frappe/model/model.js:754
+#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr ""
@@ -15613,7 +15415,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:672
+#: frappe/__init__.py:679
msgid "Method Not Allowed"
msgstr ""
@@ -15690,7 +15492,7 @@ msgstr ""
msgid "Miss"
msgstr ""
-#: frappe/desk/form/meta.py:218
+#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
msgstr ""
@@ -15715,7 +15517,7 @@ msgid "Missing Value"
msgstr ""
#: frappe/public/js/frappe/ui/field_group.js:124
-#: frappe/public/js/frappe/widgets/widget_dialog.js:361
+#: 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"
@@ -15898,8 +15700,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -15907,7 +15707,6 @@ msgstr ""
#: 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/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:400
#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
@@ -16079,7 +15878,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:462
+#: frappe/website/doctype/web_form/web_form.py:459
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16245,7 +16044,7 @@ msgstr ""
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:793
+#: frappe/model/document.py:792
msgid "Negative Value"
msgstr ""
@@ -16350,7 +16149,7 @@ 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:762
+#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr ""
@@ -16384,7 +16183,7 @@ msgstr ""
msgid "New Quick List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
msgstr ""
@@ -16440,26 +16239,26 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
#: frappe/public/js/frappe/form/toolbar.js:558
-#: frappe/public/js/frappe/model/model.js:661
+#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:379
+#: frappe/website/doctype/web_form/web_form.py:376
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:394
+#: frappe/public/js/frappe/views/reports/query_report.js:392
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:386
+#: frappe/public/js/frappe/views/reports/query_report.js:384
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:391
+#: frappe/public/js/frappe/views/reports/query_report.js:389
msgid "New {0} {1} created"
msgstr ""
@@ -16471,7 +16270,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:802
+#: frappe/core/doctype/user/user.py:804
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16633,7 +16432,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16774,7 +16573,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:803
+#: frappe/core/doctype/user/user.py:805
msgid "No Roles Specified"
msgstr ""
@@ -16925,7 +16724,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:827 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16934,7 +16733,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
-#: frappe/model/db_query.py:949
+#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
msgstr ""
@@ -17018,12 +16817,6 @@ msgstr ""
msgid "Non-Conforming"
msgstr ""
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "None"
-msgstr ""
-
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr ""
@@ -17038,7 +16831,7 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr ""
@@ -17059,7 +16852,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:374 frappe/www/404.html:3
+#: frappe/app.py:367 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -17085,9 +16878,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:754 frappe/app.py:367 frappe/desk/calendar.py:26
+#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:711
+#: frappe/website/doctype/web_form/web_form.py:708
#: 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
@@ -17108,7 +16901,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:813
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
-#: frappe/public/js/frappe/views/reports/report_view.js:197
+#: frappe/public/js/frappe/views/reports/report_view.js:203
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
@@ -17139,7 +16932,7 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:264
+#: frappe/core/doctype/user/user.py:265
msgid "Not a valid User Image."
msgstr ""
@@ -17155,7 +16948,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:360
+#: frappe/permissions.py:370
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17175,7 +16968,7 @@ msgstr ""
msgid "Not allowed to print draft documents"
msgstr ""
-#: frappe/permissions.py:212
+#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
msgstr ""
@@ -17191,12 +16984,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:214
+#: frappe/core/doctype/system_settings/system_settings.py:215
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:724
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17222,15 +17015,6 @@ msgstr ""
msgid "Note:"
msgstr ""
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'Dropbox Settings'
-#. Description of the 'Send Email for Successful backup' (Check) field in
-#. DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Note: By default emails for failed backups are sent."
-msgstr ""
-
#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr ""
@@ -17290,13 +17074,10 @@ msgstr ""
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
#. Name of a DocType
-#. Label of the notification_section (Section Break) field in DocType 'S3
-#. Backup Settings'
#: 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
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Notification"
msgstr ""
@@ -17398,7 +17179,7 @@ msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:615
+#: frappe/public/js/frappe/widgets/widget_dialog.js:628
msgid "Number Card"
msgstr ""
@@ -17416,7 +17197,7 @@ 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:645
+#: frappe/public/js/frappe/widgets/widget_dialog.js:658
msgid "Number Cards"
msgstr ""
@@ -17434,15 +17215,6 @@ msgstr ""
msgid "Number of Backups"
msgstr ""
-#. Label of the no_of_backups (Int) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Number of DB Backups"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:54
-msgid "Number of DB backups cannot be less than 1"
-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"
@@ -17458,7 +17230,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:169
+#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17687,7 +17459,7 @@ 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:322
+#: frappe/public/js/frappe/widgets/widget_dialog.js:335
msgid "Onboard"
msgstr ""
@@ -17783,19 +17555,13 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Only change this if you want to use other S3 compatible object storage backends."
-msgstr ""
-
-#: frappe/model/document.py:1232
+#: frappe/model/document.py:1231
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:315
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
msgstr ""
@@ -18044,7 +17810,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:870
+#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
msgstr ""
@@ -18156,7 +17922,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1742
+#: frappe/public/js/frappe/views/reports/query_report.js:1744
msgid "PDF"
msgstr ""
@@ -18455,7 +18221,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:798
+#: frappe/permissions.py:807
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18515,11 +18281,11 @@ msgstr ""
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1079
+#: frappe/core/doctype/user/user.py:1081
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:457
+#: frappe/core/doctype/user/user.py:458
msgid "Password Reset"
msgstr ""
@@ -18553,7 +18319,7 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1078
+#: frappe/core/doctype/user/user.py:1080
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18565,7 +18331,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:869
+#: frappe/core/doctype/user/user.py:871
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18722,7 +18488,7 @@ msgstr ""
msgid "Permanently Submit {0}?"
msgstr ""
-#: frappe/public/js/frappe/model/model.js:733
+#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
msgstr ""
@@ -18883,8 +18649,8 @@ msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:40
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
-#: frappe/public/js/frappe/views/reports/report_view.js:1576
+#: frappe/public/js/frappe/views/reports/report_view.js:1579
+#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
msgstr ""
@@ -18924,7 +18690,7 @@ msgstr ""
msgid "Plant"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:546
+#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
msgstr ""
@@ -18940,7 +18706,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:309
+#: frappe/public/js/frappe/views/reports/query_report.js:307
msgid "Please Set Chart"
msgstr ""
@@ -18956,7 +18722,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1063
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -18984,11 +18750,11 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:946
+#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1059
+#: frappe/core/doctype/user/user.py:1061
msgid "Please check your email for verification"
msgstr ""
@@ -19016,10 +18782,6 @@ msgstr ""
msgid "Please click on the following link to set your new password"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:343
-msgid "Please close this window"
-msgstr ""
-
#: frappe/www/confirm_workflow_action.html:4
msgid "Please confirm your action to {0} this document."
msgstr ""
@@ -19036,7 +18798,7 @@ msgstr ""
msgid "Please create chart first"
msgstr ""
-#: frappe/desk/form/meta.py:214
+#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
msgstr ""
@@ -19048,7 +18810,7 @@ msgstr ""
msgid "Please duplicate this to make changes"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:162
+#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19066,7 +18828,7 @@ msgstr ""
msgid "Please enable pop-ups in your browser"
msgstr ""
-#: frappe/integrations/google_oauth.py:53
+#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
msgstr ""
@@ -19143,7 +18905,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:987
+#: frappe/model/document.py:986
msgid "Please refresh to get the latest document."
msgstr ""
@@ -19167,7 +18929,7 @@ msgstr ""
msgid "Please save the document before removing assignment"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1703
+#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
msgstr ""
@@ -19183,11 +18945,11 @@ msgstr ""
msgid "Please select Entity Type first"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:112
+#: frappe/core/doctype/system_settings/system_settings.py:113
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1181
+#: frappe/public/js/frappe/views/reports/query_report.js:1183
msgid "Please select X and Y fields"
msgstr ""
@@ -19215,7 +18977,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1140
+#: frappe/model/db_query.py:1141
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19237,10 +18999,6 @@ msgstr ""
msgid "Please select {0}"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:305
-msgid "Please set Dropbox access keys in site config or doctype"
-msgstr ""
-
#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
msgstr ""
@@ -19249,7 +19007,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:1404
+#: frappe/public/js/frappe/views/reports/query_report.js:1406
msgid "Please set filters"
msgstr ""
@@ -19269,7 +19027,7 @@ msgstr ""
msgid "Please set the series to be used."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:125
+#: frappe/core/doctype/system_settings/system_settings.py:126
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr ""
@@ -19277,19 +19035,19 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:422
+#: frappe/core/doctype/user/user.py:423
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:434
+#: 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:823
+#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:774
+#: frappe/permissions.py:783
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19318,7 +19076,7 @@ msgstr ""
msgid "Please try again"
msgstr ""
-#: frappe/integrations/google_oauth.py:56
+#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
msgstr ""
@@ -19631,8 +19389,8 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1728
-#: frappe/public/js/frappe/views/reports/report_view.js:1531
+#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr ""
@@ -19875,7 +19633,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
msgstr ""
@@ -20196,7 +19954,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:729
+#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
msgstr ""
@@ -20217,7 +19975,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:554
+#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
msgstr ""
@@ -20250,12 +20008,6 @@ msgstr ""
msgid "Queued for Submission. You can track the progress over {0}."
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:65
-#: frappe/integrations/doctype/google_drive/google_drive.py:153
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:86
-msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr ""
-
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
@@ -20391,7 +20143,7 @@ msgstr ""
msgid "Re-Run in Console"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:728
+#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
msgstr ""
@@ -20493,7 +20245,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:889
+#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
msgstr ""
@@ -20858,11 +20610,11 @@ msgid "Referrer"
msgstr ""
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:548
+#: frappe/public/js/frappe/desk.js:556
#: 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:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1719
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20881,12 +20633,10 @@ 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 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
@@ -20903,7 +20653,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
msgstr ""
@@ -21066,7 +20816,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
#: frappe/public/js/frappe/form/toolbar.js:432
-#: frappe/public/js/frappe/model/model.js:772
+#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
msgstr ""
@@ -21076,7 +20826,7 @@ msgstr ""
msgid "Rename Fieldname"
msgstr ""
-#: frappe/public/js/frappe/model/model.js:759
+#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
msgstr ""
@@ -21140,7 +20890,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:146
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
msgstr ""
@@ -21278,7 +21028,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1902
+#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
msgstr ""
@@ -21330,7 +21080,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1009
+#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
msgstr ""
@@ -21346,11 +21096,11 @@ msgstr ""
msgid "Report updated successfully"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1351
+#: frappe/public/js/frappe/views/reports/report_view.js:1357
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1940
+#: frappe/public/js/frappe/views/reports/query_report.js:1942
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21386,7 +21136,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:925
+#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
msgstr ""
@@ -21836,7 +21586,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:363
+#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -21951,7 +21701,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:855 frappe/model/document.py:778
+#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
msgstr ""
@@ -21964,7 +21714,7 @@ msgstr ""
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:982
msgid "Row #{0}:"
msgstr ""
@@ -22042,7 +21792,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:653
+#: frappe/permissions.py:662
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22086,23 +21836,6 @@ msgstr ""
msgid "Runtime in Seconds"
msgstr ""
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "S3 Backup Settings"
-msgstr ""
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
-msgid "S3 Backup complete!"
-msgstr ""
-
-#. Label of the s3_bucket_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Bucket Details"
-msgstr ""
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
@@ -22243,7 +21976,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/page/print/print.js:858
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/quick_entry.js:185
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
@@ -22253,8 +21986,8 @@ msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
-#: frappe/public/js/frappe/views/reports/query_report.js:1894
-#: frappe/public/js/frappe/views/reports/report_view.js:1720
+#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
@@ -22271,8 +22004,8 @@ msgstr ""
msgid "Save Anyway"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1382
-#: frappe/public/js/frappe/views/reports/report_view.js:1727
+#: frappe/public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
msgstr ""
@@ -22280,7 +22013,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1897
+#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
msgstr ""
@@ -22446,7 +22179,7 @@ msgstr ""
msgid "Scheduler Status"
msgstr ""
-#: frappe/utils/scheduler.py:249
+#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr ""
@@ -22672,7 +22405,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:858
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "See all past reports."
msgstr ""
@@ -22752,7 +22485,7 @@ msgstr ""
msgid "Select Child Table"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:377
+#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
msgstr ""
@@ -23069,31 +22802,11 @@ msgstr ""
msgid "Send Email To Creator"
msgstr ""
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Dropbox Settings'
-#. Label of the send_email_for_successful_backup (Check) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Email for Successful Backup"
-msgstr ""
-
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Email for Successful backup"
-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 email (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Notification To"
-msgstr ""
-
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -23110,14 +22823,6 @@ msgstr ""
msgid "Send Notifications For Email Threads"
msgstr ""
-#. Label of the send_notifications_to (Data) field in DocType 'Dropbox
-#. Settings'
-#. Label of the notify_email (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Notifications To"
-msgstr ""
-
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
msgstr ""
@@ -23376,7 +23081,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:383 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23442,7 +23147,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:360
+#: frappe/app.py:353
msgid "Session Expired"
msgstr ""
@@ -23451,7 +23156,7 @@ msgstr ""
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:119
+#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
msgstr ""
@@ -23474,7 +23179,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:201
+#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
msgstr ""
@@ -23500,7 +23205,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
msgstr ""
@@ -23718,8 +23423,8 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1763
-#: frappe/public/js/frappe/views/reports/report_view.js:1698
+#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23815,6 +23520,15 @@ msgstr ""
msgid "Show \"Call to Action\" in Blog"
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"
@@ -23985,7 +23699,7 @@ msgstr ""
msgid "Show Title in Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1521
+#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
msgstr ""
@@ -24095,7 +23809,7 @@ msgstr ""
msgid "Show {0} List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:495
+#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
msgstr ""
@@ -24130,7 +23844,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
msgstr ""
@@ -24775,7 +24489,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
-#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: frappe/public/js/frappe/views/reports/report_view.js:975
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
@@ -25074,7 +24788,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:1166
+#: frappe/public/js/frappe/form/grid.js:1170
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25171,7 +24885,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:720
+#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
msgstr ""
@@ -25461,11 +25175,9 @@ msgstr ""
#: frappe/geo/doctype/country/country.json
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/connected_app/connected_app.json
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.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_drive/google_drive.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
@@ -25474,7 +25186,6 @@ msgstr ""
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_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
@@ -25599,11 +25310,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1165
+#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1565
+#: frappe/model/document.py:1564
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25622,7 +25333,7 @@ msgstr ""
msgid "Tag Link"
msgstr ""
-#: frappe/model/meta.py:57
+#: 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
@@ -25634,15 +25345,6 @@ msgstr ""
msgid "Tags"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:29
-msgid "Take Backup"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
-msgid "Take Backup Now"
-msgstr ""
-
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
msgstr ""
@@ -25720,12 +25422,12 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1027
+#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
msgstr ""
-#: frappe/core/doctype/translation/test_translation.py:56
-#: frappe/core/doctype/translation/test_translation.py:63
+#: frappe/core/doctype/translation/test_translation.py:47
+#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
msgstr ""
@@ -25734,8 +25436,8 @@ msgstr ""
msgid "Test Job ID"
msgstr ""
-#: frappe/core/doctype/translation/test_translation.py:58
-#: frappe/core/doctype/translation/test_translation.py:66
+#: frappe/core/doctype/translation/test_translation.py:49
+#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
msgstr ""
@@ -25743,7 +25445,7 @@ msgstr ""
msgid "Test email sent to {0}"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:388
+#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25824,7 +25526,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1188
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
msgstr ""
@@ -25992,15 +25694,15 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:987
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:991
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -26012,7 +25714,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:334
+#: frappe/utils/response.py:331
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26073,7 +25775,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26102,7 +25804,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:958
+#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26189,12 +25891,12 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:750
+#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:117
-#: frappe/public/js/frappe/model/model.js:755
+#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr ""
@@ -26232,7 +25934,7 @@ msgstr ""
msgid "This document is already amended, you cannot ammend it again"
msgstr ""
-#: frappe/model/document.py:474
+#: frappe/model/document.py:473
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -26293,7 +25995,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2132
+#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26357,7 +26059,7 @@ msgstr ""
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1033
+#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26365,7 +26067,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:856
+#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
msgstr ""
@@ -26431,7 +26133,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1240
+#: frappe/core/doctype/user/user.py:1242
msgid "Throttled"
msgstr ""
@@ -26782,7 +26484,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:857
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26807,10 +26509,6 @@ msgstr ""
msgid "To use Google Contacts, enable {0}."
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:8
-msgid "To use Google Drive, enable {0}."
-msgstr ""
-
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -26841,7 +26539,7 @@ msgstr ""
msgid "Today"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1564
+#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
msgstr ""
@@ -26857,7 +26555,7 @@ 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:1568
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
msgstr ""
@@ -26913,11 +26611,11 @@ msgstr ""
msgid "Too many changes to database in single action."
msgstr ""
-#: frappe/utils/background_jobs.py:728
+#: 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:1028
+#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -26981,8 +26679,8 @@ msgstr ""
#: frappe/desk/query_report.py:533
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1320
-#: frappe/public/js/frappe/views/reports/report_view.js:1545
+#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr ""
@@ -27045,11 +26743,11 @@ msgstr ""
msgid "Total:"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1250
+#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1225
+#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
msgstr ""
@@ -27162,7 +26860,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2188
+#: frappe/public/js/frappe/views/reports/query_report.js:2183
msgid "Translate Data"
msgstr ""
@@ -27173,7 +26871,7 @@ msgstr ""
msgid "Translate Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1650
+#: frappe/public/js/frappe/views/reports/report_view.js:1656
msgid "Translate values"
msgstr ""
@@ -27321,7 +27019,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/views/file/file_view.js:337
#: frappe/public/js/frappe/views/workspace/workspace.js:399
-#: frappe/public/js/frappe/widgets/widget_dialog.js:391
+#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
msgid "Type"
@@ -27401,7 +27099,7 @@ msgstr ""
#: 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:458
+#: 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"
@@ -27463,7 +27161,7 @@ msgstr ""
msgid "Unable to load camera."
msgstr ""
-#: frappe/public/js/frappe/model/model.js:268
+#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
msgstr ""
@@ -27492,7 +27190,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:383
+#: frappe/app.py:376
msgid "Uncaught Exception"
msgstr ""
@@ -27725,7 +27423,7 @@ msgstr ""
msgid "Updated Successfully"
msgstr ""
-#: frappe/public/js/frappe/desk.js:444
+#: frappe/public/js/frappe/desk.js:452
msgid "Updated To A New Version 🎉"
msgstr ""
@@ -27733,7 +27431,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:333
+#: frappe/utils/response.py:330
msgid "Updating"
msgstr ""
@@ -27807,18 +27505,6 @@ msgstr ""
msgid "Uploaded To Google Drive"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:196
-msgid "Uploading backup to Google Drive."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:201
-msgid "Uploading successful."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:16
-msgid "Uploading to Google Drive"
-msgstr ""
-
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -27902,11 +27588,11 @@ msgstr ""
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:434
+#: frappe/model/db_query.py:435
msgid "Use of function {0} in field is restricted"
msgstr ""
-#: frappe/model/db_query.py:411
+#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
msgstr ""
@@ -28023,7 +27709,7 @@ msgstr ""
msgid "User Cannot Search"
msgstr ""
-#: frappe/public/js/frappe/desk.js:546
+#: frappe/public/js/frappe/desk.js:554
msgid "User Changed"
msgstr ""
@@ -28129,8 +27815,8 @@ 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:1881
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
@@ -28227,7 +27913,7 @@ msgstr ""
msgid "User permission already exists"
msgstr ""
-#: frappe/www/login.py:167
+#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
msgstr ""
@@ -28235,23 +27921,23 @@ msgstr ""
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: frappe/core/doctype/user/user.py:536
+#: frappe/core/doctype/user/user.py:537
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:326
+#: frappe/core/doctype/user/user.py:327
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:602
+#: frappe/core/doctype/user/user.py:603
msgid "User {0} cannot be renamed"
msgstr ""
-#: frappe/permissions.py:138
+#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
msgstr ""
-#: frappe/permissions.py:161
+#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr ""
@@ -28264,7 +27950,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1369
+#: frappe/core/doctype/user/user.py:1371
msgid "User {0} impersonated as {1}"
msgstr ""
@@ -28293,7 +27979,7 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:687
+#: frappe/core/doctype/user/user.py:689
msgid "Username {0} already exists"
msgstr ""
@@ -28433,15 +28119,15 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1049 frappe/model/document.py:834
+#: frappe/model/base_document.py:1054 frappe/model/document.py:833
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:780
+#: frappe/model/document.py:779
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:784
+#: frappe/model/document.py:783
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28472,7 +28158,7 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1124
msgid "Value too big"
msgstr ""
@@ -29073,11 +28759,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -29086,9 +28767,6 @@ msgstr ""
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:399
#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
@@ -29123,11 +28801,11 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:414
+#: frappe/core/doctype/user/user.py:415
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:475
+#: frappe/core/doctype/user/user.py:476
msgid "Welcome to {0}"
msgstr ""
@@ -29160,7 +28838,7 @@ 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:468
+#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
msgstr ""
@@ -29359,7 +29037,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:177
+#: frappe/public/js/frappe/router.js:173
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29429,11 +29107,11 @@ msgstr ""
msgid "Workspaces"
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:753
+#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
msgstr ""
@@ -29452,11 +29130,11 @@ msgstr ""
msgid "Write"
msgstr ""
-#: frappe/model/base_document.py:949
+#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:484
+#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
msgstr ""
@@ -29475,13 +29153,13 @@ msgstr ""
msgid "Y Axis"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:491
+#: frappe/public/js/frappe/views/reports/report_view.js:497
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:1221
+#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
msgstr ""
@@ -29542,7 +29220,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Sim"
@@ -29582,11 +29260,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:409
+#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:398
+#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29609,7 +29287,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:604
+#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29621,7 +29299,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:569
+#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29637,7 +29315,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:669
+#: frappe/__init__.py:676
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29645,7 +29323,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr ""
-#: frappe/core/doctype/installed_applications/installed_applications.py:82
+#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -29809,11 +29487,11 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:368
+#: frappe/app.py:361
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:838
+#: frappe/desk/query_report.py:831
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29825,11 +29503,11 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:772
+#: frappe/website/doctype/web_form/web_form.py:769
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:286 frappe/utils/response.py:290
+#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
msgstr ""
@@ -29837,7 +29515,7 @@ msgstr ""
msgid "You don't have permission to get a report on: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:175
+#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
msgstr ""
@@ -29890,23 +29568,23 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:339
+#: 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:768
+#: frappe/website/doctype/web_form/web_form.py:765
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:609
+#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:357
+#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
@@ -29922,11 +29600,11 @@ msgstr ""
msgid "You need to be a system user to access this page."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:94
+#: 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:275
+#: frappe/utils/response.py:272
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29934,7 +29612,7 @@ msgstr ""
msgid "You need to be logged in to access this page"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:164
+#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
msgstr ""
@@ -30009,7 +29687,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/desk.js:543
+#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -30092,7 +29770,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:354
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -30323,7 +30001,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:403 frappe/permissions.py:414
+#: frappe/permissions.py:412 frappe/permissions.py:423
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30875,7 +30553,7 @@ msgstr ""
msgid "{0} Calendar"
msgstr "{0} Calendário"
-#: frappe/public/js/frappe/views/reports/report_view.js:564
+#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
msgstr ""
@@ -30923,7 +30601,7 @@ msgstr ""
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1149
+#: frappe/model/base_document.py:1154
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -30933,7 +30611,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:952
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
msgstr ""
@@ -30999,7 +30677,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:149
+#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
msgstr ""
@@ -31012,7 +30690,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:547
+#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -31137,7 +30815,7 @@ msgstr ""
msgid "{0} is an invalid email address in 'Recipients'"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1462
+#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
msgstr ""
@@ -31146,27 +30824,27 @@ msgstr ""
msgid "{0} is currently {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1431
+#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1451
+#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1441
+#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1456
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1446
+#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1481
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
msgstr ""
@@ -31186,7 +30864,7 @@ msgstr ""
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:64
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
msgstr ""
@@ -31215,11 +30893,11 @@ msgstr "{0} não é um número de telefone válido"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} não é um estado válido do fluxo de trabalho. Atualize o seu fluxo de trabalho e tente novamente."
-#: frappe/permissions.py:787
+#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31231,27 +30909,27 @@ msgstr "{0} não é um formato de relatório válido. O formato do relatório de
msgid "{0} is not a zip file"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1436
+#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1483
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1487
+#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:165
+#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1470
+#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
msgstr ""
@@ -31262,11 +30940,11 @@ msgstr ""
msgid "{0} is required"
msgstr "{0} é obrigatório"
-#: frappe/public/js/frappe/views/reports/report_view.js:1486
+#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1465
+#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
msgstr ""
@@ -31274,12 +30952,12 @@ msgstr ""
msgid "{0} items selected"
msgstr "{0} itens selecionados"
-#: frappe/core/doctype/user/user.py:1378
+#: frappe/core/doctype/user/user.py:1380
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:104
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
msgstr ""
@@ -31295,7 +30973,7 @@ msgstr ""
msgid "{0} m"
msgstr ""
-#: frappe/desk/notifications.py:397
+#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
msgstr "{0} mencionou-o num comentário em {1} {2}"
@@ -31307,35 +30985,35 @@ msgstr "há {0} minutos"
msgid "{0} months ago"
msgstr "há {0} meses"
-#: frappe/model/document.py:1792
+#: frappe/model/document.py:1791
msgid "{0} must be after {1}"
msgstr "{0} deve ser posterior a {1}"
-#: frappe/model/document.py:1551
+#: frappe/model/document.py:1550
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1553
+#: frappe/model/document.py:1552
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1549
+#: frappe/model/document.py:1548
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1547 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} deve ser um dos {1}"
-#: frappe/model/base_document.py:875
+#: frappe/model/base_document.py:876
msgid "{0} must be set first"
msgstr "{0} deve ser definido primeiro"
-#: frappe/model/base_document.py:732
+#: frappe/model/base_document.py:729
msgid "{0} must be unique"
msgstr "{0} deve ser único"
-#: frappe/model/document.py:1555
+#: frappe/model/document.py:1554
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31410,7 +31088,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1785
+#: frappe/model/document.py:1784
msgid "{0} row #{1}: "
msgstr ""
@@ -31506,11 +31184,11 @@ msgstr "{0} {1} adicionado"
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:665 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} já existe"
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:987
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -31526,7 +31204,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:260 frappe/permissions.py:558
+#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
msgstr "{0} {1} não foi encontrado"
@@ -31534,7 +31212,7 @@ msgstr "{0} {1} não foi encontrado"
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:1110
+#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
msgstr ""
@@ -31542,7 +31220,7 @@ msgstr ""
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1115
+#: frappe/model/base_document.py:1120
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
@@ -31643,7 +31321,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1279
+#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
msgstr ""
diff --git a/frappe/locale/pt_BR.po b/frappe/locale/pt_BR.po
index 7e5dc48646..b94411f493 100644
--- a/frappe/locale/pt_BR.po
+++ b/frappe/locale/pt_BR.po
@@ -2,14 +2,14 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-08 09:34+0000\n"
-"PO-Revision-Date: 2025-06-11 14:05\n"
+"POT-Creation-Date: 2025-06-22 09:34+0000\n"
+"PO-Revision-Date: 2025-06-22 16:40\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Portuguese, Brazilian\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.13.1\n"
+"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"
@@ -140,7 +140,7 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:951
+#: frappe/public/js/frappe/views/reports/query_report.js:953
msgid "1 Report"
msgstr ""
@@ -148,7 +148,7 @@ msgstr ""
msgid "1 comment"
msgstr ""
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:711
msgid "1 day ago"
msgstr ""
@@ -157,17 +157,17 @@ msgid "1 hour"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:709
msgid "1 hour ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:707
msgid "1 minute ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:715
msgid "1 month ago"
msgstr ""
@@ -179,37 +179,37 @@ msgstr ""
msgid "1 record will be exported"
msgstr ""
-#: frappe/tests/test_utils.py:705
+#: frappe/tests/test_utils.py:706
msgid "1 second ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:713
msgid "1 week ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:717
msgid "1 year ago"
msgstr ""
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:710
msgid "2 hours ago"
msgstr ""
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:716
msgid "2 months ago"
msgstr ""
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:714
msgid "2 weeks ago"
msgstr ""
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:718
msgid "2 years ago"
msgstr ""
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:708
msgid "3 minutes ago"
msgstr ""
@@ -225,7 +225,7 @@ msgstr ""
msgid "5 Records"
msgstr ""
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:712
msgid "5 days ago"
msgstr ""
@@ -245,7 +245,7 @@ msgstr ""
msgid "<="
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:588
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
msgid "{0} is not a valid URL"
msgstr ""
@@ -654,10 +654,7 @@ msgid "API"
msgstr ""
#. Label of the api_access (Section Break) field in DocType 'User'
-#. Label of the api_access_section (Section Break) field in DocType 'S3 Backup
-#. Settings'
#: frappe/core/doctype/user/user.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "API Access"
msgstr "Acesso API"
@@ -769,17 +766,6 @@ msgstr ""
msgid "Access Control"
msgstr ""
-#. Label of the access_key_id (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key ID"
-msgstr "ID da chave de acesso"
-
-#. Label of the secret_access_key (Password) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key Secret"
-msgstr "Segredo da chave de acesso"
-
#. Name of a DocType
#. Label of a Link in the Users Workspace
#: frappe/core/doctype/access_log/access_log.json
@@ -830,6 +816,10 @@ msgstr "Gerente de Contas"
msgid "Accounts User"
msgstr "Usuário de Contas"
+#: 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'
@@ -860,7 +850,7 @@ msgstr "Ação / Rota"
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1872
+#: frappe/model/document.py:1871
msgid "Action Failed"
msgstr ""
@@ -909,10 +899,10 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:192
-#: frappe/public/js/frappe/views/reports/query_report.js:205
-#: frappe/public/js/frappe/views/reports/query_report.js:215
-#: frappe/public/js/frappe/views/reports/query_report.js:845
+#: frappe/public/js/frappe/views/reports/query_report.js:190
+#: frappe/public/js/frappe/views/reports/query_report.js:203
+#: frappe/public/js/frappe/views/reports/query_report.js:213
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Actions"
msgstr "Ações"
@@ -974,8 +964,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:267
-#: frappe/public/js/frappe/views/reports/query_report.js:295
+#: frappe/public/js/frappe/views/reports/query_report.js:265
+#: frappe/public/js/frappe/views/reports/query_report.js:293
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Adicionar"
@@ -1016,7 +1006,7 @@ msgstr ""
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:211
+#: frappe/public/js/frappe/views/reports/query_report.js:209
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1025,10 +1015,10 @@ 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:1769
-#: frappe/public/js/frappe/views/reports/query_report.js:1772
-#: frappe/public/js/frappe/views/reports/report_view.js:349
-#: frappe/public/js/frappe/views/reports/report_view.js:374
+#: frappe/public/js/frappe/views/reports/query_report.js:1771
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/report_view.js:355
+#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
msgstr ""
@@ -1052,7 +1042,7 @@ msgid "Add Custom Tags"
msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
-#: frappe/public/js/frappe/widgets/widget_dialog.js:703
+#: frappe/public/js/frappe/widgets/widget_dialog.js:716
msgid "Add Filters"
msgstr ""
@@ -1087,7 +1077,7 @@ msgstr "Adicione Participantes"
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:806
+#: frappe/core/doctype/user/user.py:808
msgid "Add Roles"
msgstr ""
@@ -1137,7 +1127,7 @@ msgstr "Adicionar Linha de Total"
#. Label of the add_translate_data (Check) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Add Translate Data"
-msgstr ""
+msgstr "Adicionar Dados Traduzidos"
#. Label of the add_unsubscribe_link (Check) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
@@ -1232,7 +1222,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:253
+#: frappe/public/js/frappe/views/reports/query_report.js:251
msgid "Add to Dashboard"
msgstr ""
@@ -1387,11 +1377,11 @@ msgstr ""
msgid "Administrator"
msgstr "Administrador"
-#: frappe/core/doctype/user/user.py:1211
+#: frappe/core/doctype/user/user.py:1213
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1205
+#: frappe/core/doctype/user/user.py:1207
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
@@ -1624,12 +1614,6 @@ msgstr ""
msgid "Allow Consecutive Login Attempts "
msgstr ""
-#. Label of the allow_dropbox_access (Button) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Allow Dropbox Access"
-msgstr "Permitir Acesso Dropbox"
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
msgid "Allow Google Calendar Access"
msgstr ""
@@ -1638,10 +1622,6 @@ msgstr ""
msgid "Allow Google Contacts Access"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:52
-msgid "Allow Google Drive Access"
-msgstr ""
-
#. Label of the allow_guest (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
@@ -1895,7 +1875,7 @@ msgstr ""
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
-#: frappe/core/doctype/user/user.py:1021
+#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr ""
@@ -1903,11 +1883,11 @@ msgstr ""
msgid "Already in the following Users ToDo list:{0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:896
+#: frappe/public/js/frappe/views/reports/report_view.js:902
msgid "Also adding the dependent currency field {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:909
+#: frappe/public/js/frappe/views/reports/report_view.js:915
msgid "Also adding the status dependency field {0}"
msgstr ""
@@ -1986,7 +1966,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:550
+#: frappe/model/document.py:549
msgid "Amendment Not Allowed"
msgstr ""
@@ -2075,15 +2055,6 @@ msgstr ""
msgid "App"
msgstr "Aplicativo"
-#. Label of the app_access_key (Data) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Access Key"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:22
-msgid "App Access Key and/or Secret Key are not present."
-msgstr ""
-
#. Label of the client_id (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client ID"
@@ -2117,16 +2088,11 @@ msgstr ""
msgid "App Name"
msgstr ""
-#. Label of the app_secret_key (Password) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Secret Key"
-msgstr ""
-
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1462
+#: frappe/__init__.py:1465
msgid "App {0} is not installed"
msgstr ""
@@ -2276,7 +2242,7 @@ msgstr ""
msgid "Are you sure you want to clear the assignments?"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:290
+#: frappe/public/js/frappe/form/grid.js:294
msgid "Are you sure you want to delete all rows?"
msgstr ""
@@ -2304,7 +2270,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:965
+#: frappe/public/js/frappe/views/reports/query_report.js:967
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2430,7 +2396,7 @@ msgstr ""
msgid "Assigned By Full Name"
msgstr "Atribuído por Nome completo"
-#: frappe/model/meta.py:60
+#: 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
@@ -2700,13 +2666,11 @@ msgstr "Autor"
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
#. Contacts'
-#. Label of the authorization_code (Data) field in DocType 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
@@ -2744,12 +2708,6 @@ msgstr "Autorizar acesso ao Google Agenda"
msgid "Authorize Google Contacts Access"
msgstr "Autorizar o acesso dos Contatos do Google"
-#. Label of the authorize_google_drive_access (Button) field in DocType 'Google
-#. Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Authorize Google Drive Access"
-msgstr "Autorizar acesso ao Google Drive"
-
#. 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"
@@ -2896,11 +2854,11 @@ msgstr ""
msgid "Automatic"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:774
+#: 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:768
+#: frappe/email/doctype/email_account/email_account.py:766
msgid "Automatic Linking can be activated only if Incoming is enabled."
msgstr ""
@@ -3114,66 +3072,14 @@ msgstr ""
msgid "Background Workers"
msgstr "Trabalhadores em Segundo Plano"
-#: frappe/integrations/doctype/google_drive/google_drive.py:170
-msgid "Backing up Data."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:32
-msgid "Backing up to Google Drive."
-msgstr ""
-
-#. Label of a Card Break in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Backup"
-msgstr ""
-
-#. Label of the backup_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Details"
-msgstr ""
-
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
msgstr ""
-#. Label of the backup_files (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Files"
-msgstr ""
-
-#. Label of the backup_folder_id (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder ID"
-msgstr ""
-
-#. Label of the backup_folder_name (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder Name"
-msgstr ""
-
-#. Label of the backup_frequency (Select) field in DocType 'Dropbox Settings'
-#. Label of the frequency (Select) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Frequency"
-msgstr "Frequência de Backup"
-
-#. Label of the backup_path (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Path"
-msgstr ""
-
#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
msgstr ""
-#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup public and private files along with the database."
-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'
@@ -3187,7 +3093,7 @@ msgstr ""
msgid "Backups (MB)"
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:65
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
msgid "Bad Cron Expression"
msgstr ""
@@ -3584,15 +3490,6 @@ msgstr ""
msgid "Brute Force Security"
msgstr "Segurança da força bruta"
-#. Label of the bucket (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Bucket Name"
-msgstr "Nome do intervalo"
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:71
-msgid "Bucket {0} not found."
-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"
@@ -3629,7 +3526,7 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1184
+#: frappe/public/js/frappe/form/grid.js:1188
msgid "Bulk Edit {0}"
msgstr ""
@@ -3704,12 +3601,6 @@ msgstr ""
msgid "By default the title is used as meta title, adding a value here will override it."
msgstr ""
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "By default, emails are only sent for failed backups."
-msgstr ""
-
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
@@ -4020,7 +3911,7 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1156
+#: frappe/model/base_document.py:1161
msgid "Cannot Update After Submit"
msgstr ""
@@ -4040,11 +3931,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1012
+#: frappe/model/document.py:1011
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1026
+#: frappe/model/document.py:1025
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -4127,7 +4018,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1032
+#: frappe/model/document.py:1031
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4160,11 +4051,11 @@ msgstr ""
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1128
+#: frappe/public/js/frappe/form/grid.js:1132
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1100
+#: frappe/model/document.py:1099
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4180,7 +4071,7 @@ msgstr ""
msgid "Cannot move row"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:921
+#: frappe/public/js/frappe/views/reports/report_view.js:927
msgid "Cannot remove ID field"
msgstr ""
@@ -4205,11 +4096,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr ""
-#: frappe/model/db_query.py:1125
+#: frappe/model/db_query.py:1126
msgid "Cannot use sub-query in order by"
msgstr ""
-#: frappe/model/db_query.py:1144
+#: frappe/model/db_query.py:1145
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4235,7 +4126,7 @@ msgstr "Cartão"
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:261
msgid "Card Label"
msgstr ""
@@ -4377,7 +4268,7 @@ msgstr "Configuração de Gráfico"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:290
+#: frappe/public/js/frappe/views/reports/query_report.js:288
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Nome do gráfico"
@@ -4397,7 +4288,7 @@ msgstr "Fonte do gráfico"
#. 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:499
+#: frappe/public/js/frappe/views/reports/report_view.js:505
msgid "Chart Type"
msgstr ""
@@ -4511,7 +4402,7 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:638
+#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4604,10 +4495,6 @@ msgstr ""
msgid "Click here to verify"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:47
-msgid "Click on Authorize Google Drive Access to authorize Google Drive Access."
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4634,7 +4521,6 @@ msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
-#: frappe/integrations/doctype/google_drive/google_drive.py:53
#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
msgstr ""
@@ -4808,7 +4694,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Recolher Todos"
@@ -4863,9 +4749,9 @@ 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:1229
-#: frappe/public/js/frappe/widgets/widget_dialog.js:533
-#: frappe/public/js/frappe/widgets/widget_dialog.js:681
+#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: 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
@@ -5006,7 +4892,7 @@ msgstr ""
msgid "Comment publicity can only be updated by the original author or a System Manager."
msgstr ""
-#: frappe/model/meta.py:59 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/model/meta.js:209
#: frappe/public/js/frappe/model/model.js:135
#: frappe/website/doctype/web_form/templates/web_form.html:122
@@ -5113,7 +4999,7 @@ msgstr "Concluído"
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:477
+#: frappe/core/doctype/user/user.py:478
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
@@ -5209,7 +5095,7 @@ msgstr ""
msgid "Configuration"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:481
+#: frappe/public/js/frappe/views/reports/report_view.js:487
msgid "Configure Chart"
msgstr ""
@@ -5546,7 +5432,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1096
+#: frappe/model/document.py:1095
msgid "Could not find {0}"
msgstr ""
@@ -5575,7 +5461,7 @@ msgstr ""
msgid "Count"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:527
+#: frappe/public/js/frappe/widgets/widget_dialog.js:540
msgid "Count Customizations"
msgstr ""
@@ -5583,10 +5469,14 @@ msgstr ""
#. 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:512
+#: 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"
@@ -5637,7 +5527,7 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1261
+#: frappe/public/js/frappe/views/reports/query_report.js:1263
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5651,13 +5541,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:188
-#: frappe/public/js/frappe/views/reports/query_report.js:233
+#: frappe/public/js/frappe/views/reports/query_report.js:186
+#: frappe/public/js/frappe/views/reports/query_report.js:231
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:286
-#: frappe/public/js/frappe/views/reports/query_report.js:1188
+#: frappe/public/js/frappe/views/reports/query_report.js:284
+#: frappe/public/js/frappe/views/reports/query_report.js:1190
msgid "Create Chart"
msgstr ""
@@ -5768,7 +5658,7 @@ msgstr ""
msgid "Created At"
msgstr ""
-#: frappe/model/meta.py:56
+#: 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
@@ -5780,14 +5670,14 @@ 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:51
+#: 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:515
+#: frappe/public/js/frappe/desk.js:523
#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
msgstr ""
@@ -5810,7 +5700,7 @@ msgstr ""
msgid "Cron Format"
msgstr "Formato Cron"
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:59
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
msgstr ""
@@ -6207,11 +6097,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -6220,9 +6105,6 @@ msgstr ""
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:398
#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
@@ -6776,7 +6658,7 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/toolbar.js:461
-#: frappe/public/js/frappe/views/reports/report_view.js:1734
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
@@ -6819,7 +6701,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:932
+#: frappe/public/js/frappe/views/reports/query_report.js:934
msgid "Delete and Generate New"
msgstr ""
@@ -6828,7 +6710,7 @@ msgctxt "Button text"
msgid "Delete column"
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:738
+#: frappe/public/js/frappe/form/footer/form_timeline.js:741
msgid "Delete comment?"
msgstr ""
@@ -6914,7 +6796,7 @@ msgstr ""
msgid "Deleting {0} records..."
msgstr ""
-#: frappe/public/js/frappe/model/model.js:741
+#: frappe/public/js/frappe/model/model.js:692
msgid "Deleting {0}..."
msgstr ""
@@ -6960,7 +6842,7 @@ msgstr "Departamento"
#. 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:310
+#: frappe/public/js/frappe/widgets/widget_dialog.js:323
#: frappe/www/attribution.html:29
msgid "Dependencies"
msgstr ""
@@ -7074,6 +6956,7 @@ msgstr ""
#: 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
@@ -7371,14 +7254,10 @@ 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:1189
+#: frappe/public/js/frappe/form/grid.js:1193
msgid "Do not edit headers which are preset in the template"
msgstr ""
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:69
-msgid "Do not have permission to access bucket {0}."
-msgstr ""
-
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
@@ -7511,7 +7390,7 @@ 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:466
+#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
msgstr ""
@@ -7571,7 +7450,7 @@ 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:669
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
msgid "Doctype"
msgstr ""
@@ -7689,7 +7568,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:477
+#: frappe/model/document.py:476
msgid "Document Queued"
msgstr ""
@@ -7742,7 +7621,7 @@ msgstr ""
msgid "Document States"
msgstr "Documento Unidos"
-#: frappe/model/meta.py:52 frappe/public/js/frappe/model/meta.js:202
+#: 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 ""
@@ -7813,11 +7692,11 @@ msgstr ""
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: frappe/permissions.py:148
+#: frappe/permissions.py:149
msgid "Document Type is not importable"
msgstr ""
-#: frappe/permissions.py:144
+#: frappe/permissions.py:145
msgid "Document Type is not submittable"
msgstr ""
@@ -7846,7 +7725,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1943
+#: frappe/model/document.py:1942
msgid "Document Unlocked"
msgstr ""
@@ -8037,7 +7916,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:835
+#: frappe/public/js/frappe/views/reports/query_report.js:830
msgid "Download Report"
msgstr ""
@@ -8048,7 +7927,7 @@ msgstr "Baixar Modelo"
#: 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:57
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
msgid "Download Your Data"
msgstr ""
@@ -8104,29 +7983,6 @@ msgstr ""
msgid "Drop files here"
msgstr ""
-#. Label of the dropbox_access_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Access Token"
-msgstr ""
-
-#. Label of the dropbox_refresh_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Refresh Token"
-msgstr ""
-
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Dropbox Settings"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:347
-msgid "Dropbox Setup"
-msgstr ""
-
#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
@@ -8156,7 +8012,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:666 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
@@ -8255,13 +8111,13 @@ msgstr ""
#: 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:668
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:669
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:883
-#: frappe/public/js/frappe/views/reports/query_report.js:1722
+#: frappe/public/js/frappe/views/reports/query_report.js:878
+#: frappe/public/js/frappe/views/reports/query_report.js:1724
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8424,7 +8280,7 @@ msgstr ""
msgid "Edit your workflow visually using the Workflow Builder."
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:672
+#: frappe/public/js/frappe/views/reports/report_view.js:678
#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
msgstr ""
@@ -8525,7 +8381,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:736
+#: frappe/core/doctype/user/user.py:738
msgid "Email Account added multiple times"
msgstr ""
@@ -8533,7 +8389,7 @@ msgstr ""
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:578
+#: frappe/email/doctype/email_account/email_account.py:576
msgid "Email Account {0} Disabled"
msgstr ""
@@ -8759,7 +8615,7 @@ msgstr ""
msgid "Emails Pulled"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:936
+#: frappe/email/doctype/email_account/email_account.py:934
msgid "Emails are already being pulled from this account."
msgstr ""
@@ -8782,11 +8638,9 @@ 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 Drive'
#. 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_drive/google_drive.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
msgstr "Permitir"
@@ -8806,11 +8660,6 @@ msgstr ""
msgid "Enable Auto Reply"
msgstr "Ativar resposta automática"
-#. Label of the enabled (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Enable Automatic Backup"
-msgstr ""
-
#. Label of the enable_automatic_linking (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -8969,7 +8818,6 @@ msgstr ""
#. 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 'Dropbox Settings'
#. 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'
@@ -8980,7 +8828,6 @@ msgstr ""
#: 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/dropbox_settings/dropbox_settings.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/public/js/frappe/model/indicator.js:106
@@ -8993,7 +8840,7 @@ msgstr ""
msgid "Enabled Scheduler"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:1012
+#: frappe/email/doctype/email_account/email_account.py:1010
msgid "Enabled email inbox for user {0}"
msgstr ""
@@ -9074,11 +8921,6 @@ msgstr ""
msgid "Ended At"
msgstr ""
-#. Label of the endpoint_url (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Endpoint URL"
-msgstr ""
-
#. Label of the sb_endpoints_section (Section Break) field in DocType
#. 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -9257,7 +9099,7 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:672
+#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9265,15 +9107,15 @@ msgstr ""
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr ""
-#: frappe/model/base_document.py:806
+#: frappe/model/base_document.py:803
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:816
+#: frappe/model/base_document.py:813
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:810
+#: frappe/model/base_document.py:807
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9422,7 +9264,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2069
+#: frappe/public/js/frappe/views/reports/query_report.js:2071
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9448,7 +9290,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Expandir Todos"
@@ -9505,8 +9347,8 @@ 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:1757
-#: frappe/public/js/frappe/views/reports/report_view.js:1621
+#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
@@ -9557,11 +9399,11 @@ msgstr ""
msgid "Export Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1632
+#: frappe/public/js/frappe/views/reports/report_view.js:1638
msgid "Export all matching rows?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1642
+#: frappe/public/js/frappe/views/reports/report_view.js:1648
msgid "Export all {0} rows?"
msgstr ""
@@ -9869,8 +9711,8 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:237
-#: frappe/public/js/frappe/views/reports/query_report.js:1816
+#: frappe/public/js/frappe/views/reports/query_report.js:235
+#: frappe/public/js/frappe/views/reports/query_report.js:1818
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9945,7 +9787,7 @@ msgstr ""
msgid "Field {0} does not exist on {1}"
msgstr ""
-#: frappe/desk/form/meta.py:208
+#: frappe/desk/form/meta.py:184
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
@@ -10048,7 +9890,7 @@ msgstr ""
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
-#: frappe/model/db_query.py:144
+#: frappe/model/db_query.py:146
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
@@ -10097,13 +9939,6 @@ msgstr ""
msgid "File '{0}' not found"
msgstr ""
-#. Label of the file_backup (Check) field in DocType 'Dropbox Settings'
-#. Label of the file_backup (Check) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "File Backup"
-msgstr ""
-
#. Label of the private_file_section (Section Break) field in DocType 'Access
#. Log'
#: frappe/core/doctype/access_log/access_log.json
@@ -10304,7 +10139,7 @@ msgstr ""
msgid "Filters {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1421
+#: frappe/public/js/frappe/views/reports/report_view.js:1427
msgid "Filters:"
msgstr ""
@@ -10451,7 +10286,7 @@ msgstr ""
msgid "Following document {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:111
+#: frappe/website/doctype/web_form/web_form.py:108
msgid "Following fields are missing:"
msgstr ""
@@ -10459,7 +10294,7 @@ msgstr ""
msgid "Following fields have invalid values:"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:345
+#: frappe/public/js/frappe/widgets/widget_dialog.js:358
msgid "Following fields have missing values"
msgstr ""
@@ -10602,7 +10437,7 @@ msgstr ""
msgid "For Document Type"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:553
+#: frappe/public/js/frappe/widgets/widget_dialog.js:566
msgid "For Example: {} Open"
msgstr ""
@@ -10631,7 +10466,7 @@ msgstr ""
msgid "For Value"
msgstr "Por valor"
-#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/query_report.js:2068
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10784,7 +10619,7 @@ msgstr "Codificado em URL do formulário"
#. 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:552
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
msgid "Format"
msgstr ""
@@ -10816,7 +10651,7 @@ msgstr "Unidades Fracionadas"
#. 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:149
+#: frappe/www/login.py:153
msgid "Frappe"
msgstr ""
@@ -10833,7 +10668,7 @@ msgstr ""
msgid "Frappe Mail"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:549
+#: frappe/email/doctype/email_account/email_account.py:547
msgid "Frappe Mail OAuth Error"
msgstr ""
@@ -10861,13 +10696,11 @@ msgstr ""
#. 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'
-#. Label of the frequency (Select) field in DocType 'Google Drive'
#: 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/integrations/doctype/google_drive/google_drive.json
#: frappe/public/js/frappe/utils/common.js:395
msgid "Frequency"
msgstr ""
@@ -10913,7 +10746,7 @@ msgstr "Data De"
msgid "From Date Field"
msgstr "Do campo de data"
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
+#: frappe/public/js/frappe/views/reports/query_report.js:1779
msgid "From Document Type"
msgstr ""
@@ -10964,16 +10797,16 @@ msgstr "Largura completa"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:247
-#: frappe/public/js/frappe/widgets/widget_dialog.js:686
+#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:693
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:670
+#: frappe/__init__.py:677
msgid "Function {0} is not whitelisted."
msgstr ""
@@ -11038,7 +10871,7 @@ msgstr ""
msgid "Generate Keys"
msgstr "Gerar Chaves"
-#: frappe/public/js/frappe/views/reports/query_report.js:877
+#: frappe/public/js/frappe/views/reports/query_report.js:872
msgid "Generate New Report"
msgstr ""
@@ -11326,32 +11159,12 @@ msgstr ""
msgid "Google Contacts Id"
msgstr ""
-#. Name of a DocType
-#. Label of the google_drive_section (Section Break) field in DocType 'Google
-#. Drive'
#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/google_drive/google_drive.json
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:117
-msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:132
-msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:193
-msgid "Google Drive - Could not locate - {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:204
-msgid "Google Drive Backup Successful."
-msgstr ""
-
#. Label of the section_break_7 (Section Break) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -11681,6 +11494,10 @@ msgstr ""
msgid "Headers"
msgstr "Cabeçalhos"
+#: 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'
@@ -12004,17 +11821,17 @@ msgstr "Pagina inicial"
msgid "Home Settings"
msgstr "Configurações iniciais"
-#: frappe/core/doctype/file/test_file.py:330
-#: frappe/core/doctype/file/test_file.py:332
-#: frappe/core/doctype/file/test_file.py:396
+#: 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:385
+#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:341
+#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
msgstr ""
@@ -12059,7 +11876,7 @@ msgstr ""
#: frappe/core/doctype/data_import/importer.py:1177
#: frappe/core/doctype/data_import/importer.py:1242
#: frappe/core/doctype/data_import/importer.py:1245
-#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:50
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
#: frappe/public/js/frappe/list/list_settings.js:337
@@ -12071,7 +11888,7 @@ msgid "ID"
msgstr ""
#: frappe/desk/reportview.py:491
-#: frappe/public/js/frappe/views/reports/report_view.js:978
+#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
msgstr ""
@@ -12255,12 +12072,6 @@ msgstr ""
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
msgstr "Se ativado, os usuários serão notificados sempre que iniciarem sessão. Se não estiver ativado, os usuários só serão notificados uma vez."
-#. Description of the 'Backup Path' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "If it's empty, it will backup to the root of the bucket."
-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"
@@ -12391,16 +12202,12 @@ msgstr "Ignorar anexos maiores que este tamanho"
msgid "Ignored Apps"
msgstr "Aplicativos ignorados"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:348
-msgid "Illegal Access Token. Please try again"
-msgstr ""
-
#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
msgstr ""
-#: frappe/model/db_query.py:451 frappe/model/db_query.py:454
-#: frappe/model/db_query.py:1128
+#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
+#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
msgstr ""
@@ -12749,11 +12556,11 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1592
+#: frappe/public/js/frappe/views/reports/query_report.js:1594
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1584
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Include indentation"
msgstr ""
@@ -12820,11 +12627,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1542
+#: frappe/model/document.py:1541
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1544
+#: frappe/model/document.py:1543
msgid "Incorrect value:"
msgstr ""
@@ -12833,10 +12640,10 @@ msgstr ""
#. 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:53
+#: 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:999
+#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
msgstr ""
@@ -12911,7 +12718,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:1822
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
msgid "Insert After"
msgstr ""
@@ -12927,7 +12734,7 @@ msgstr ""
msgid "Insert Below"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:384
+#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
msgstr ""
@@ -12976,11 +12783,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:818
+#: frappe/permissions.py:827
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:376
+#: frappe/database/query.py:383
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -13098,7 +12905,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:221
#: frappe/public/js/frappe/form/grid_row.js:833
#: frappe/public/js/frappe/form/layout.js:811
-#: frappe/public/js/frappe/views/reports/report_view.js:710
+#: frappe/public/js/frappe/views/reports/report_view.js:716
msgid "Invalid \"depends_on\" expression"
msgstr ""
@@ -13138,7 +12945,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:102
+#: frappe/database/query.py:103
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13183,6 +12990,7 @@ 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 ""
@@ -13207,7 +13015,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1226 frappe/www/update-password.html:123
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
#: frappe/www/update-password.html:247
msgid "Invalid Password"
@@ -13236,7 +13044,7 @@ msgstr ""
#: frappe/core/doctype/file/file.py:220
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
-#: frappe/public/js/frappe/widgets/widget_dialog.js:589
+#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
msgstr "URL inválida"
@@ -13257,11 +13065,11 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:393
+#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
-#: frappe/model/document.py:1015 frappe/model/document.py:1029
+#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13285,7 +13093,7 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:182
+#: frappe/database/query.py:189
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
@@ -13311,7 +13119,7 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:324
+#: frappe/app.py:317
msgid "Invalid request arguments"
msgstr ""
@@ -13495,7 +13303,7 @@ 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:328
+#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
msgstr ""
@@ -13710,6 +13518,10 @@ msgstr ""
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 ""
@@ -13741,7 +13553,7 @@ msgstr ""
#. 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:498
+#: frappe/public/js/frappe/widgets/widget_dialog.js:511
msgid "Kanban Board"
msgstr "Painel Kanban"
@@ -14013,10 +13825,10 @@ msgstr ""
#: 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:300
-#: frappe/public/js/frappe/widgets/widget_dialog.js:453
-#: frappe/public/js/frappe/widgets/widget_dialog.js:630
-#: frappe/public/js/frappe/widgets/widget_dialog.js:663
+#: 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
@@ -14101,11 +13913,6 @@ msgstr ""
msgid "Last Active"
msgstr "Ativo pela última vez"
-#. Label of the last_backup_on (Datetime) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Last Backup On"
-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"
@@ -14190,12 +13997,12 @@ msgstr ""
msgid "Last Synced On"
msgstr "Última sincronização em"
-#: frappe/model/meta.py:55 frappe/public/js/frappe/model/meta.js:205
+#: 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:54 frappe/public/js/frappe/model/meta.js:204
+#: 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 ""
@@ -14239,7 +14046,7 @@ msgid "Leave blank to repeat always"
msgstr "Deixe em branco para repetir sempre"
#: frappe/core/doctype/communication/mixins.py:207
-#: frappe/email/doctype/email_account/email_account.py:722
+#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
msgstr ""
@@ -14458,7 +14265,7 @@ msgstr ""
msgid "Liked"
msgstr ""
-#: frappe/model/meta.py:58 frappe/public/js/frappe/model/meta.js:208
+#: 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 ""
@@ -14473,11 +14280,6 @@ msgstr "Gostos"
msgid "Limit"
msgstr "Limite"
-#. Label of the limit_no_of_backups (Check) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Limit Number of DB Backups"
-msgstr ""
-
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14592,11 +14394,11 @@ msgstr "Título do Link"
#: 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:414
+#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
msgstr "Link para"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:350
+#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
msgstr ""
@@ -14609,7 +14411,7 @@ msgstr ""
msgid "Link Type"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:346
+#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
msgstr ""
@@ -14761,7 +14563,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1085
+#: frappe/public/js/frappe/views/reports/query_report.js:1087
msgid "Loading"
msgstr ""
@@ -14892,7 +14694,7 @@ msgstr ""
msgid "Login Page"
msgstr ""
-#: frappe/www/login.py:152
+#: frappe/www/login.py:156
msgid "Login To {0}"
msgstr ""
@@ -15159,7 +14961,7 @@ msgstr "Obrigatório Depende"
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:473
+#: frappe/website/doctype/web_form/web_form.py:470
msgid "Mandatory Information missing:"
msgstr ""
@@ -15434,7 +15236,7 @@ msgid "Menu"
msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:242
-#: frappe/public/js/frappe/model/model.js:754
+#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "Mesclar com existente"
@@ -15613,7 +15415,7 @@ msgstr ""
msgid "Method"
msgstr "Método"
-#: frappe/__init__.py:672
+#: frappe/__init__.py:679
msgid "Method Not Allowed"
msgstr ""
@@ -15690,7 +15492,7 @@ msgstr ""
msgid "Miss"
msgstr "Senhorita"
-#: frappe/desk/form/meta.py:218
+#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
msgstr ""
@@ -15715,7 +15517,7 @@ msgid "Missing Value"
msgstr ""
#: frappe/public/js/frappe/ui/field_group.js:124
-#: frappe/public/js/frappe/widgets/widget_dialog.js:361
+#: 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"
@@ -15898,8 +15700,6 @@ msgstr "Mês"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -15907,7 +15707,6 @@ msgstr "Mês"
#: 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/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:400
#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
@@ -16079,7 +15878,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:462
+#: frappe/website/doctype/web_form/web_form.py:459
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16245,7 +16044,7 @@ msgstr ""
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:793
+#: frappe/model/document.py:792
msgid "Negative Value"
msgstr ""
@@ -16350,7 +16149,7 @@ 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:762
+#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr ""
@@ -16384,7 +16183,7 @@ msgstr ""
msgid "New Quick List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
msgstr ""
@@ -16440,26 +16239,26 @@ msgstr "Novo valor a ser definido"
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
#: frappe/public/js/frappe/form/toolbar.js:558
-#: frappe/public/js/frappe/model/model.js:661
+#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:379
+#: frappe/website/doctype/web_form/web_form.py:376
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:394
+#: frappe/public/js/frappe/views/reports/query_report.js:392
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:386
+#: frappe/public/js/frappe/views/reports/query_report.js:384
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:391
+#: frappe/public/js/frappe/views/reports/query_report.js:389
msgid "New {0} {1} created"
msgstr ""
@@ -16471,7 +16270,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:802
+#: frappe/core/doctype/user/user.py:804
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16633,7 +16432,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Não"
@@ -16774,7 +16573,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:803
+#: frappe/core/doctype/user/user.py:805
msgid "No Roles Specified"
msgstr ""
@@ -16925,7 +16724,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:827 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16934,7 +16733,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
-#: frappe/model/db_query.py:949
+#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
msgstr ""
@@ -17018,12 +16817,6 @@ msgstr "Não Negativo"
msgid "Non-Conforming"
msgstr "Não conforme"
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "None"
-msgstr "Nenhum"
-
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr ""
@@ -17038,7 +16831,7 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "Não Desejados"
@@ -17059,7 +16852,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:374 frappe/www/404.html:3
+#: frappe/app.py:367 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -17085,9 +16878,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:754 frappe/app.py:367 frappe/desk/calendar.py:26
+#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:711
+#: frappe/website/doctype/web_form/web_form.py:708
#: 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
@@ -17108,7 +16901,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:813
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
-#: frappe/public/js/frappe/views/reports/report_view.js:197
+#: frappe/public/js/frappe/views/reports/report_view.js:203
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
@@ -17139,7 +16932,7 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:264
+#: frappe/core/doctype/user/user.py:265
msgid "Not a valid User Image."
msgstr ""
@@ -17155,7 +16948,7 @@ msgstr ""
msgid "Not active"
msgstr "Inativo"
-#: frappe/permissions.py:360
+#: frappe/permissions.py:370
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17175,7 +16968,7 @@ msgstr ""
msgid "Not allowed to print draft documents"
msgstr ""
-#: frappe/permissions.py:212
+#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
msgstr ""
@@ -17191,12 +16984,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:214
+#: frappe/core/doctype/system_settings/system_settings.py:215
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:724
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Não Permitido"
@@ -17222,15 +17015,6 @@ msgstr ""
msgid "Note:"
msgstr ""
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'Dropbox Settings'
-#. Description of the 'Send Email for Successful backup' (Check) field in
-#. DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Note: By default emails for failed backups are sent."
-msgstr ""
-
#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr ""
@@ -17290,13 +17074,10 @@ msgstr ""
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
#. Name of a DocType
-#. Label of the notification_section (Section Break) field in DocType 'S3
-#. Backup Settings'
#: 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
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Notification"
msgstr ""
@@ -17398,7 +17179,7 @@ msgstr "Número"
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:615
+#: frappe/public/js/frappe/widgets/widget_dialog.js:628
msgid "Number Card"
msgstr ""
@@ -17416,7 +17197,7 @@ 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:645
+#: frappe/public/js/frappe/widgets/widget_dialog.js:658
msgid "Number Cards"
msgstr ""
@@ -17434,15 +17215,6 @@ msgstr "Formato de número"
msgid "Number of Backups"
msgstr "Número de Backups"
-#. Label of the no_of_backups (Int) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Number of DB Backups"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:54
-msgid "Number of DB backups cannot be less than 1"
-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"
@@ -17458,7 +17230,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:169
+#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17687,7 +17459,7 @@ 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:322
+#: frappe/public/js/frappe/widgets/widget_dialog.js:335
msgid "Onboard"
msgstr ""
@@ -17783,19 +17555,13 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Only change this if you want to use other S3 compatible object storage backends."
-msgstr ""
-
-#: frappe/model/document.py:1232
+#: frappe/model/document.py:1231
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:315
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
msgstr ""
@@ -18044,7 +17810,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:870
+#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
msgstr ""
@@ -18156,7 +17922,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1742
+#: frappe/public/js/frappe/views/reports/query_report.js:1744
msgid "PDF"
msgstr ""
@@ -18455,7 +18221,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:798
+#: frappe/permissions.py:807
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18515,11 +18281,11 @@ msgstr "Passivo"
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1079
+#: frappe/core/doctype/user/user.py:1081
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:457
+#: frappe/core/doctype/user/user.py:458
msgid "Password Reset"
msgstr ""
@@ -18553,7 +18319,7 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1078
+#: frappe/core/doctype/user/user.py:1080
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18565,7 +18331,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:869
+#: frappe/core/doctype/user/user.py:871
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18722,7 +18488,7 @@ msgstr ""
msgid "Permanently Submit {0}?"
msgstr ""
-#: frappe/public/js/frappe/model/model.js:733
+#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
msgstr ""
@@ -18883,8 +18649,8 @@ msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:40
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
-#: frappe/public/js/frappe/views/reports/report_view.js:1576
+#: frappe/public/js/frappe/views/reports/report_view.js:1579
+#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
msgstr ""
@@ -18924,7 +18690,7 @@ msgstr ""
msgid "Plant"
msgstr "Fábrica"
-#: frappe/email/doctype/email_account/email_account.py:546
+#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
msgstr ""
@@ -18940,7 +18706,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:309
+#: frappe/public/js/frappe/views/reports/query_report.js:307
msgid "Please Set Chart"
msgstr ""
@@ -18956,7 +18722,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1063
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -18984,11 +18750,11 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:946
+#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1059
+#: frappe/core/doctype/user/user.py:1061
msgid "Please check your email for verification"
msgstr ""
@@ -19016,10 +18782,6 @@ msgstr ""
msgid "Please click on the following link to set your new password"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:343
-msgid "Please close this window"
-msgstr ""
-
#: frappe/www/confirm_workflow_action.html:4
msgid "Please confirm your action to {0} this document."
msgstr ""
@@ -19036,7 +18798,7 @@ msgstr ""
msgid "Please create chart first"
msgstr ""
-#: frappe/desk/form/meta.py:214
+#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
msgstr ""
@@ -19048,7 +18810,7 @@ msgstr ""
msgid "Please duplicate this to make changes"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:162
+#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19066,7 +18828,7 @@ msgstr ""
msgid "Please enable pop-ups in your browser"
msgstr ""
-#: frappe/integrations/google_oauth.py:53
+#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
msgstr ""
@@ -19143,7 +18905,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:987
+#: frappe/model/document.py:986
msgid "Please refresh to get the latest document."
msgstr ""
@@ -19167,7 +18929,7 @@ msgstr ""
msgid "Please save the document before removing assignment"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1703
+#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
msgstr ""
@@ -19183,11 +18945,11 @@ msgstr ""
msgid "Please select Entity Type first"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:112
+#: frappe/core/doctype/system_settings/system_settings.py:113
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1181
+#: frappe/public/js/frappe/views/reports/query_report.js:1183
msgid "Please select X and Y fields"
msgstr ""
@@ -19215,7 +18977,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1140
+#: frappe/model/db_query.py:1141
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19237,10 +18999,6 @@ msgstr ""
msgid "Please select {0}"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:305
-msgid "Please set Dropbox access keys in site config or doctype"
-msgstr ""
-
#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
msgstr ""
@@ -19249,7 +19007,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:1404
+#: frappe/public/js/frappe/views/reports/query_report.js:1406
msgid "Please set filters"
msgstr ""
@@ -19269,7 +19027,7 @@ msgstr ""
msgid "Please set the series to be used."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:125
+#: frappe/core/doctype/system_settings/system_settings.py:126
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr ""
@@ -19277,19 +19035,19 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:422
+#: frappe/core/doctype/user/user.py:423
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:434
+#: 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:823
+#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:774
+#: frappe/permissions.py:783
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19318,7 +19076,7 @@ msgstr ""
msgid "Please try again"
msgstr ""
-#: frappe/integrations/google_oauth.py:56
+#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
msgstr ""
@@ -19631,8 +19389,8 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1728
-#: frappe/public/js/frappe/views/reports/report_view.js:1531
+#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "Impressão"
@@ -19875,7 +19633,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
msgstr ""
@@ -20196,7 +19954,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:729
+#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
msgstr ""
@@ -20217,7 +19975,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:554
+#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
msgstr ""
@@ -20250,12 +20008,6 @@ msgstr ""
msgid "Queued for Submission. You can track the progress over {0}."
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:65
-#: frappe/integrations/doctype/google_drive/google_drive.py:153
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:86
-msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr ""
-
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
@@ -20391,7 +20143,7 @@ msgstr ""
msgid "Re-Run in Console"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:728
+#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
msgstr ""
@@ -20493,7 +20245,7 @@ msgstr ""
msgid "Reason"
msgstr "Motivo"
-#: frappe/public/js/frappe/views/reports/query_report.js:889
+#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
msgstr ""
@@ -20858,11 +20610,11 @@ msgid "Referrer"
msgstr ""
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:548
+#: frappe/public/js/frappe/desk.js:556
#: 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:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1719
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20881,12 +20633,10 @@ msgstr "Atualizar planilha do Google"
#. 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 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
@@ -20903,7 +20653,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
msgstr ""
@@ -21066,7 +20816,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
#: frappe/public/js/frappe/form/toolbar.js:432
-#: frappe/public/js/frappe/model/model.js:772
+#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
msgstr "Renomear"
@@ -21076,7 +20826,7 @@ msgstr "Renomear"
msgid "Rename Fieldname"
msgstr ""
-#: frappe/public/js/frappe/model/model.js:759
+#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
msgstr ""
@@ -21140,7 +20890,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:146
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
msgstr ""
@@ -21278,7 +21028,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1902
+#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
msgstr ""
@@ -21330,7 +21080,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1009
+#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
msgstr ""
@@ -21346,11 +21096,11 @@ msgstr ""
msgid "Report updated successfully"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1351
+#: frappe/public/js/frappe/views/reports/report_view.js:1357
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1940
+#: frappe/public/js/frappe/views/reports/query_report.js:1942
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21386,7 +21136,7 @@ msgstr "Relatórios"
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:925
+#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
msgstr ""
@@ -21836,7 +21586,7 @@ msgstr ""
msgid "Role and Level"
msgstr "Função e Nível"
-#: frappe/core/doctype/user/user.py:363
+#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -21951,7 +21701,7 @@ msgstr "Redirecionamentos de rota"
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:855 frappe/model/document.py:778
+#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
msgstr ""
@@ -21964,7 +21714,7 @@ msgstr ""
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:982
msgid "Row #{0}:"
msgstr ""
@@ -22042,7 +21792,7 @@ msgstr "Regra"
msgid "Rule Conditions"
msgstr "Condições da regra"
-#: frappe/permissions.py:653
+#: frappe/permissions.py:662
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22086,23 +21836,6 @@ msgstr ""
msgid "Runtime in Seconds"
msgstr ""
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "S3 Backup Settings"
-msgstr ""
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
-msgid "S3 Backup complete!"
-msgstr ""
-
-#. Label of the s3_bucket_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Bucket Details"
-msgstr ""
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
@@ -22243,7 +21976,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/page/print/print.js:858
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/quick_entry.js:185
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
@@ -22253,8 +21986,8 @@ msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
-#: frappe/public/js/frappe/views/reports/query_report.js:1894
-#: frappe/public/js/frappe/views/reports/report_view.js:1720
+#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
@@ -22271,8 +22004,8 @@ msgstr ""
msgid "Save Anyway"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1382
-#: frappe/public/js/frappe/views/reports/report_view.js:1727
+#: frappe/public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
msgstr ""
@@ -22280,7 +22013,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1897
+#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
msgstr ""
@@ -22446,7 +22179,7 @@ msgstr "Agendador Inativo"
msgid "Scheduler Status"
msgstr ""
-#: frappe/utils/scheduler.py:249
+#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr ""
@@ -22672,7 +22405,7 @@ msgstr "Configurações de Segurança"
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:858
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "See all past reports."
msgstr ""
@@ -22752,7 +22485,7 @@ msgstr ""
msgid "Select Child Table"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:377
+#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
msgstr ""
@@ -23069,31 +22802,11 @@ msgstr ""
msgid "Send Email To Creator"
msgstr ""
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Dropbox Settings'
-#. Label of the send_email_for_successful_backup (Check) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Email for Successful Backup"
-msgstr ""
-
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Email for Successful backup"
-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 email (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Notification To"
-msgstr "Enviar Notificação para"
-
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -23110,14 +22823,6 @@ msgstr "Enviar notificações para documentos seguidos por mim"
msgid "Send Notifications For Email Threads"
msgstr ""
-#. Label of the send_notifications_to (Data) field in DocType 'Dropbox
-#. Settings'
-#. Label of the notify_email (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Notifications To"
-msgstr "Enviar Notificações para"
-
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
msgstr "Enviar Agora"
@@ -23376,7 +23081,7 @@ msgstr ""
msgid "Server Action"
msgstr "Ação do Servidor"
-#: frappe/app.py:383 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23442,7 +23147,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:360
+#: frappe/app.py:353
msgid "Session Expired"
msgstr ""
@@ -23451,7 +23156,7 @@ msgstr ""
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:119
+#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
msgstr ""
@@ -23474,7 +23179,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:201
+#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
msgstr ""
@@ -23500,7 +23205,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
msgstr ""
@@ -23718,8 +23423,8 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1763
-#: frappe/public/js/frappe/views/reports/report_view.js:1698
+#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23815,6 +23520,15 @@ msgstr ""
msgid "Show \"Call to Action\" in Blog"
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"
@@ -23985,7 +23699,7 @@ msgstr "Mostrar Título"
msgid "Show Title in Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1521
+#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
msgstr ""
@@ -24095,7 +23809,7 @@ msgstr ""
msgid "Show {0} List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:495
+#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
msgstr ""
@@ -24130,7 +23844,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
msgstr ""
@@ -24775,7 +24489,7 @@ msgstr "Intervalo de tempo das estatísticas"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
-#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: frappe/public/js/frappe/views/reports/report_view.js:975
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
@@ -25074,7 +24788,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:1166
+#: frappe/public/js/frappe/form/grid.js:1170
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25171,7 +24885,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:720
+#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
msgstr ""
@@ -25461,11 +25175,9 @@ msgstr ""
#: frappe/geo/doctype/country/country.json
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/connected_app/connected_app.json
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.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_drive/google_drive.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
@@ -25474,7 +25186,6 @@ msgstr ""
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_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
@@ -25599,11 +25310,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1165
+#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1565
+#: frappe/model/document.py:1564
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25622,7 +25333,7 @@ msgstr ""
msgid "Tag Link"
msgstr ""
-#: frappe/model/meta.py:57
+#: 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
@@ -25634,15 +25345,6 @@ msgstr ""
msgid "Tags"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:29
-msgid "Take Backup"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
-msgid "Take Backup Now"
-msgstr ""
-
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
msgstr ""
@@ -25720,12 +25422,12 @@ msgstr "Avisos do modelo"
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1027
+#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
msgstr ""
-#: frappe/core/doctype/translation/test_translation.py:56
-#: frappe/core/doctype/translation/test_translation.py:63
+#: frappe/core/doctype/translation/test_translation.py:47
+#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
msgstr ""
@@ -25734,8 +25436,8 @@ msgstr ""
msgid "Test Job ID"
msgstr ""
-#: frappe/core/doctype/translation/test_translation.py:58
-#: frappe/core/doctype/translation/test_translation.py:66
+#: frappe/core/doctype/translation/test_translation.py:49
+#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
msgstr ""
@@ -25743,7 +25445,7 @@ msgstr ""
msgid "Test email sent to {0}"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:388
+#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25824,7 +25526,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1188
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
msgstr ""
@@ -25992,15 +25694,15 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:987
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:991
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -26012,7 +25714,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:334
+#: frappe/utils/response.py:331
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26073,7 +25775,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26102,7 +25804,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:958
+#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26189,12 +25891,12 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:750
+#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:117
-#: frappe/public/js/frappe/model/model.js:755
+#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr ""
@@ -26232,7 +25934,7 @@ msgstr ""
msgid "This document is already amended, you cannot ammend it again"
msgstr ""
-#: frappe/model/document.py:474
+#: frappe/model/document.py:473
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -26293,7 +25995,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2132
+#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26357,7 +26059,7 @@ msgstr ""
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1033
+#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26365,7 +26067,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:856
+#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
msgstr ""
@@ -26431,7 +26133,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1240
+#: frappe/core/doctype/user/user.py:1242
msgid "Throttled"
msgstr ""
@@ -26782,7 +26484,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:857
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26807,10 +26509,6 @@ msgstr ""
msgid "To use Google Contacts, enable {0}."
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:8
-msgid "To use Google Drive, enable {0}."
-msgstr ""
-
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -26841,7 +26539,7 @@ msgstr ""
msgid "Today"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1564
+#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
msgstr ""
@@ -26857,7 +26555,7 @@ 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:1568
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
msgstr ""
@@ -26913,11 +26611,11 @@ msgstr ""
msgid "Too many changes to database in single action."
msgstr ""
-#: frappe/utils/background_jobs.py:728
+#: 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:1028
+#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -26981,8 +26679,8 @@ msgstr "Tópico"
#: frappe/desk/query_report.py:533
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1320
-#: frappe/public/js/frappe/views/reports/report_view.js:1545
+#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr ""
@@ -27045,11 +26743,11 @@ msgstr ""
msgid "Total:"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1250
+#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
msgstr "Totais"
-#: frappe/public/js/frappe/views/reports/report_view.js:1225
+#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
msgstr ""
@@ -27162,7 +26860,7 @@ msgstr "Transições"
msgid "Translatable"
msgstr "Traduzível"
-#: frappe/public/js/frappe/views/reports/query_report.js:2188
+#: frappe/public/js/frappe/views/reports/query_report.js:2183
msgid "Translate Data"
msgstr ""
@@ -27173,7 +26871,7 @@ msgstr ""
msgid "Translate Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1650
+#: frappe/public/js/frappe/views/reports/report_view.js:1656
msgid "Translate values"
msgstr ""
@@ -27321,7 +27019,7 @@ msgstr "Método de autenticação de dois fatores"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/views/file/file_view.js:337
#: frappe/public/js/frappe/views/workspace/workspace.js:399
-#: frappe/public/js/frappe/widgets/widget_dialog.js:391
+#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
msgid "Type"
@@ -27401,7 +27099,7 @@ msgstr ""
#: 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:458
+#: 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"
@@ -27463,7 +27161,7 @@ msgstr ""
msgid "Unable to load camera."
msgstr ""
-#: frappe/public/js/frappe/model/model.js:268
+#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
msgstr ""
@@ -27492,7 +27190,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr "Desatribuir condição"
-#: frappe/app.py:383
+#: frappe/app.py:376
msgid "Uncaught Exception"
msgstr ""
@@ -27725,7 +27423,7 @@ msgstr ""
msgid "Updated Successfully"
msgstr ""
-#: frappe/public/js/frappe/desk.js:444
+#: frappe/public/js/frappe/desk.js:452
msgid "Updated To A New Version 🎉"
msgstr ""
@@ -27733,7 +27431,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:333
+#: frappe/utils/response.py:330
msgid "Updating"
msgstr ""
@@ -27807,18 +27505,6 @@ msgstr "Enviado para o Dropbox"
msgid "Uploaded To Google Drive"
msgstr "Carregado no Google Drive"
-#: frappe/integrations/doctype/google_drive/google_drive.py:196
-msgid "Uploading backup to Google Drive."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:201
-msgid "Uploading successful."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:16
-msgid "Uploading to Google Drive"
-msgstr ""
-
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -27902,11 +27588,11 @@ msgstr ""
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:434
+#: frappe/model/db_query.py:435
msgid "Use of function {0} in field is restricted"
msgstr ""
-#: frappe/model/db_query.py:411
+#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
msgstr ""
@@ -28023,7 +27709,7 @@ msgstr "O Usuário não pode criar"
msgid "User Cannot Search"
msgstr "O Usuário não pode pesquisar"
-#: frappe/public/js/frappe/desk.js:546
+#: frappe/public/js/frappe/desk.js:554
msgid "User Changed"
msgstr ""
@@ -28129,8 +27815,8 @@ 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:1881
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
@@ -28227,7 +27913,7 @@ msgstr "O Usuário deve sempre selecionar"
msgid "User permission already exists"
msgstr ""
-#: frappe/www/login.py:167
+#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
msgstr ""
@@ -28235,23 +27921,23 @@ msgstr ""
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: frappe/core/doctype/user/user.py:536
+#: frappe/core/doctype/user/user.py:537
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:326
+#: frappe/core/doctype/user/user.py:327
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:602
+#: frappe/core/doctype/user/user.py:603
msgid "User {0} cannot be renamed"
msgstr ""
-#: frappe/permissions.py:138
+#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
msgstr ""
-#: frappe/permissions.py:161
+#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr ""
@@ -28264,7 +27950,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1369
+#: frappe/core/doctype/user/user.py:1371
msgid "User {0} impersonated as {1}"
msgstr ""
@@ -28293,7 +27979,7 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:687
+#: frappe/core/doctype/user/user.py:689
msgid "Username {0} already exists"
msgstr ""
@@ -28433,15 +28119,15 @@ msgstr "Valor Alterado"
msgid "Value To Be Set"
msgstr "Valor a ser definido"
-#: frappe/model/base_document.py:1049 frappe/model/document.py:834
+#: frappe/model/base_document.py:1054 frappe/model/document.py:833
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:780
+#: frappe/model/document.py:779
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:784
+#: frappe/model/document.py:783
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28472,7 +28158,7 @@ msgstr ""
msgid "Value to Validate"
msgstr "Valor para Validar"
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1124
msgid "Value too big"
msgstr ""
@@ -29073,11 +28759,6 @@ msgstr "Dias da Semana"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -29086,9 +28767,6 @@ msgstr "Dias da Semana"
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:399
#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
@@ -29123,11 +28801,11 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:414
+#: frappe/core/doctype/user/user.py:415
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:475
+#: frappe/core/doctype/user/user.py:476
msgid "Welcome to {0}"
msgstr "Bem-vindo Ao {0}"
@@ -29160,7 +28838,7 @@ 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:468
+#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
msgstr ""
@@ -29359,7 +29037,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:177
+#: frappe/public/js/frappe/router.js:173
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29429,11 +29107,11 @@ msgstr ""
msgid "Workspaces"
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:753
+#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
msgstr ""
@@ -29452,11 +29130,11 @@ msgstr "Empacotando"
msgid "Write"
msgstr "Escrever"
-#: frappe/model/base_document.py:949
+#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:484
+#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
msgstr ""
@@ -29475,13 +29153,13 @@ msgstr ""
msgid "Y Axis"
msgstr "Eixo Y"
-#: frappe/public/js/frappe/views/reports/report_view.js:491
+#: frappe/public/js/frappe/views/reports/report_view.js:497
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:1221
+#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
msgstr ""
@@ -29542,7 +29220,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29582,11 +29260,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:409
+#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:398
+#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29609,7 +29287,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:604
+#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29621,7 +29299,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:569
+#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29637,7 +29315,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:669
+#: frappe/__init__.py:676
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29645,7 +29323,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr ""
-#: frappe/core/doctype/installed_applications/installed_applications.py:82
+#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -29809,11 +29487,11 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:368
+#: frappe/app.py:361
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:838
+#: frappe/desk/query_report.py:831
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29825,11 +29503,11 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:772
+#: frappe/website/doctype/web_form/web_form.py:769
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:286 frappe/utils/response.py:290
+#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
msgstr ""
@@ -29837,7 +29515,7 @@ msgstr ""
msgid "You don't have permission to get a report on: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:175
+#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
msgstr ""
@@ -29890,23 +29568,23 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:339
+#: 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:768
+#: frappe/website/doctype/web_form/web_form.py:765
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:609
+#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:357
+#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
@@ -29922,11 +29600,11 @@ msgstr ""
msgid "You need to be a system user to access this page."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:94
+#: 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:275
+#: frappe/utils/response.py:272
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29934,7 +29612,7 @@ msgstr ""
msgid "You need to be logged in to access this page"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:164
+#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
msgstr ""
@@ -30009,7 +29687,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/desk.js:543
+#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -30092,7 +29770,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:354
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -30323,7 +30001,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:403 frappe/permissions.py:414
+#: frappe/permissions.py:412 frappe/permissions.py:423
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30875,7 +30553,7 @@ msgstr ""
msgid "{0} Calendar"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:564
+#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
msgstr ""
@@ -30923,7 +30601,7 @@ msgstr ""
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1149
+#: frappe/model/base_document.py:1154
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -30933,7 +30611,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:952
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
msgstr ""
@@ -30999,7 +30677,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:149
+#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
msgstr ""
@@ -31012,7 +30690,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:547
+#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -31137,7 +30815,7 @@ msgstr ""
msgid "{0} is an invalid email address in 'Recipients'"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1462
+#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
msgstr ""
@@ -31146,27 +30824,27 @@ msgstr ""
msgid "{0} is currently {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1431
+#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1451
+#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1441
+#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1456
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1446
+#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1481
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
msgstr ""
@@ -31186,7 +30864,7 @@ msgstr ""
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:64
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
msgstr ""
@@ -31215,11 +30893,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:787
+#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31231,27 +30909,27 @@ msgstr ""
msgid "{0} is not a zip file"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1436
+#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1483
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1487
+#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:165
+#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1470
+#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
msgstr ""
@@ -31262,11 +30940,11 @@ msgstr ""
msgid "{0} is required"
msgstr "{0} é necessário"
-#: frappe/public/js/frappe/views/reports/report_view.js:1486
+#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1465
+#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
msgstr ""
@@ -31274,12 +30952,12 @@ msgstr ""
msgid "{0} items selected"
msgstr ""
-#: frappe/core/doctype/user/user.py:1378
+#: frappe/core/doctype/user/user.py:1380
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:104
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
msgstr ""
@@ -31295,7 +30973,7 @@ msgstr ""
msgid "{0} m"
msgstr ""
-#: frappe/desk/notifications.py:397
+#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
msgstr ""
@@ -31307,35 +30985,35 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1792
+#: frappe/model/document.py:1791
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1551
+#: frappe/model/document.py:1550
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1553
+#: frappe/model/document.py:1552
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1549
+#: frappe/model/document.py:1548
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1547 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:875
+#: frappe/model/base_document.py:876
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:732
+#: frappe/model/base_document.py:729
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1555
+#: frappe/model/document.py:1554
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31410,7 +31088,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1785
+#: frappe/model/document.py:1784
msgid "{0} row #{1}: "
msgstr ""
@@ -31506,11 +31184,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:665 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:987
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -31526,7 +31204,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:260 frappe/permissions.py:558
+#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
msgstr ""
@@ -31534,7 +31212,7 @@ msgstr ""
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1110
+#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
msgstr ""
@@ -31542,7 +31220,7 @@ msgstr ""
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1115
+#: frappe/model/base_document.py:1120
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
@@ -31643,7 +31321,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1279
+#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
msgstr ""
diff --git a/frappe/locale/ru.po b/frappe/locale/ru.po
index 859cf0cfdb..dbf864041b 100644
--- a/frappe/locale/ru.po
+++ b/frappe/locale/ru.po
@@ -2,14 +2,14 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-08 09:34+0000\n"
-"PO-Revision-Date: 2025-06-16 15:29\n"
+"POT-Creation-Date: 2025-06-22 09:34+0000\n"
+"PO-Revision-Date: 2025-06-22 16:40\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Russian\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.13.1\n"
+"Generated-By: Babel 2.16.0\n"
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
"X-Crowdin-Project: frappe\n"
"X-Crowdin-Project-ID: 639578\n"
@@ -140,7 +140,7 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:951
+#: frappe/public/js/frappe/views/reports/query_report.js:953
msgid "1 Report"
msgstr ""
@@ -148,7 +148,7 @@ msgstr ""
msgid "1 comment"
msgstr ""
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:711
msgid "1 day ago"
msgstr ""
@@ -157,17 +157,17 @@ msgid "1 hour"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:709
msgid "1 hour ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:707
msgid "1 minute ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:715
msgid "1 month ago"
msgstr ""
@@ -179,37 +179,37 @@ msgstr ""
msgid "1 record will be exported"
msgstr ""
-#: frappe/tests/test_utils.py:705
+#: frappe/tests/test_utils.py:706
msgid "1 second ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:713
msgid "1 week ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:717
msgid "1 year ago"
msgstr ""
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:710
msgid "2 hours ago"
msgstr ""
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:716
msgid "2 months ago"
msgstr ""
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:714
msgid "2 weeks ago"
msgstr ""
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:718
msgid "2 years ago"
msgstr ""
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:708
msgid "3 minutes ago"
msgstr ""
@@ -225,7 +225,7 @@ msgstr ""
msgid "5 Records"
msgstr ""
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:712
msgid "5 days ago"
msgstr ""
@@ -245,7 +245,7 @@ msgstr ""
msgid "<="
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:588
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
msgid "{0} is not a valid URL"
msgstr ""
@@ -654,10 +654,7 @@ msgid "API"
msgstr ""
#. Label of the api_access (Section Break) field in DocType 'User'
-#. Label of the api_access_section (Section Break) field in DocType 'S3 Backup
-#. Settings'
#: frappe/core/doctype/user/user.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "API Access"
msgstr ""
@@ -769,17 +766,6 @@ msgstr ""
msgid "Access Control"
msgstr ""
-#. Label of the access_key_id (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key ID"
-msgstr ""
-
-#. Label of the secret_access_key (Password) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key Secret"
-msgstr ""
-
#. Name of a DocType
#. Label of a Link in the Users Workspace
#: frappe/core/doctype/access_log/access_log.json
@@ -830,6 +816,10 @@ msgstr ""
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'
@@ -860,7 +850,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1872
+#: frappe/model/document.py:1871
msgid "Action Failed"
msgstr ""
@@ -909,10 +899,10 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:192
-#: frappe/public/js/frappe/views/reports/query_report.js:205
-#: frappe/public/js/frappe/views/reports/query_report.js:215
-#: frappe/public/js/frappe/views/reports/query_report.js:845
+#: frappe/public/js/frappe/views/reports/query_report.js:190
+#: frappe/public/js/frappe/views/reports/query_report.js:203
+#: frappe/public/js/frappe/views/reports/query_report.js:213
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Actions"
msgstr ""
@@ -974,8 +964,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:267
-#: frappe/public/js/frappe/views/reports/query_report.js:295
+#: frappe/public/js/frappe/views/reports/query_report.js:265
+#: frappe/public/js/frappe/views/reports/query_report.js:293
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr ""
@@ -1016,7 +1006,7 @@ msgstr ""
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:211
+#: frappe/public/js/frappe/views/reports/query_report.js:209
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1025,10 +1015,10 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1769
-#: frappe/public/js/frappe/views/reports/query_report.js:1772
-#: frappe/public/js/frappe/views/reports/report_view.js:349
-#: frappe/public/js/frappe/views/reports/report_view.js:374
+#: frappe/public/js/frappe/views/reports/query_report.js:1771
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/report_view.js:355
+#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
msgstr ""
@@ -1052,7 +1042,7 @@ msgid "Add Custom Tags"
msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
-#: frappe/public/js/frappe/widgets/widget_dialog.js:703
+#: frappe/public/js/frappe/widgets/widget_dialog.js:716
msgid "Add Filters"
msgstr ""
@@ -1087,7 +1077,7 @@ msgstr ""
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:806
+#: frappe/core/doctype/user/user.py:808
msgid "Add Roles"
msgstr ""
@@ -1232,7 +1222,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:253
+#: frappe/public/js/frappe/views/reports/query_report.js:251
msgid "Add to Dashboard"
msgstr ""
@@ -1387,11 +1377,11 @@ msgstr ""
msgid "Administrator"
msgstr ""
-#: frappe/core/doctype/user/user.py:1211
+#: frappe/core/doctype/user/user.py:1213
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1205
+#: frappe/core/doctype/user/user.py:1207
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
@@ -1624,12 +1614,6 @@ msgstr ""
msgid "Allow Consecutive Login Attempts "
msgstr ""
-#. Label of the allow_dropbox_access (Button) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Allow Dropbox Access"
-msgstr ""
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
msgid "Allow Google Calendar Access"
msgstr ""
@@ -1638,10 +1622,6 @@ msgstr ""
msgid "Allow Google Contacts Access"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:52
-msgid "Allow Google Drive Access"
-msgstr ""
-
#. Label of the allow_guest (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
@@ -1895,7 +1875,7 @@ msgstr "Допустимые области встраивания"
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
-#: frappe/core/doctype/user/user.py:1021
+#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr ""
@@ -1903,11 +1883,11 @@ msgstr ""
msgid "Already in the following Users ToDo list:{0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:896
+#: frappe/public/js/frappe/views/reports/report_view.js:902
msgid "Also adding the dependent currency field {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:909
+#: frappe/public/js/frappe/views/reports/report_view.js:915
msgid "Also adding the status dependency field {0}"
msgstr ""
@@ -1986,7 +1966,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:550
+#: frappe/model/document.py:549
msgid "Amendment Not Allowed"
msgstr ""
@@ -2075,15 +2055,6 @@ msgstr ""
msgid "App"
msgstr ""
-#. Label of the app_access_key (Data) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Access Key"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:22
-msgid "App Access Key and/or Secret Key are not present."
-msgstr ""
-
#. Label of the client_id (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client ID"
@@ -2117,16 +2088,11 @@ msgstr ""
msgid "App Name"
msgstr ""
-#. Label of the app_secret_key (Password) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Secret Key"
-msgstr ""
-
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1462
+#: frappe/__init__.py:1465
msgid "App {0} is not installed"
msgstr ""
@@ -2276,7 +2242,7 @@ msgstr ""
msgid "Are you sure you want to clear the assignments?"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:290
+#: frappe/public/js/frappe/form/grid.js:294
msgid "Are you sure you want to delete all rows?"
msgstr ""
@@ -2304,7 +2270,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:965
+#: frappe/public/js/frappe/views/reports/query_report.js:967
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2430,7 +2396,7 @@ msgstr ""
msgid "Assigned By Full Name"
msgstr ""
-#: frappe/model/meta.py:60
+#: 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
@@ -2700,13 +2666,11 @@ msgstr ""
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
#. Contacts'
-#. Label of the authorization_code (Data) field in DocType 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
@@ -2744,12 +2708,6 @@ msgstr ""
msgid "Authorize Google Contacts Access"
msgstr ""
-#. Label of the authorize_google_drive_access (Button) field in DocType 'Google
-#. Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Authorize Google Drive 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"
@@ -2896,11 +2854,11 @@ msgstr ""
msgid "Automatic"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:774
+#: 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:768
+#: frappe/email/doctype/email_account/email_account.py:766
msgid "Automatic Linking can be activated only if Incoming is enabled."
msgstr ""
@@ -3114,66 +3072,14 @@ msgstr ""
msgid "Background Workers"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:170
-msgid "Backing up Data."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:32
-msgid "Backing up to Google Drive."
-msgstr ""
-
-#. Label of a Card Break in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Backup"
-msgstr ""
-
-#. Label of the backup_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Details"
-msgstr ""
-
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
msgstr ""
-#. Label of the backup_files (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Files"
-msgstr ""
-
-#. Label of the backup_folder_id (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder ID"
-msgstr ""
-
-#. Label of the backup_folder_name (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder Name"
-msgstr ""
-
-#. Label of the backup_frequency (Select) field in DocType 'Dropbox Settings'
-#. Label of the frequency (Select) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Frequency"
-msgstr ""
-
-#. Label of the backup_path (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Path"
-msgstr ""
-
#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
msgstr ""
-#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup public and private files along with the database."
-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'
@@ -3187,7 +3093,7 @@ msgstr ""
msgid "Backups (MB)"
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:65
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
msgid "Bad Cron Expression"
msgstr ""
@@ -3584,15 +3490,6 @@ msgstr ""
msgid "Brute Force Security"
msgstr ""
-#. Label of the bucket (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Bucket Name"
-msgstr ""
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:71
-msgid "Bucket {0} not found."
-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"
@@ -3629,7 +3526,7 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1184
+#: frappe/public/js/frappe/form/grid.js:1188
msgid "Bulk Edit {0}"
msgstr ""
@@ -3704,12 +3601,6 @@ msgstr ""
msgid "By default the title is used as meta title, adding a value here will override it."
msgstr ""
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "By default, emails are only sent for failed backups."
-msgstr ""
-
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
@@ -4020,7 +3911,7 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1156
+#: frappe/model/base_document.py:1161
msgid "Cannot Update After Submit"
msgstr ""
@@ -4040,11 +3931,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1012
+#: frappe/model/document.py:1011
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1026
+#: frappe/model/document.py:1025
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -4127,7 +4018,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1032
+#: frappe/model/document.py:1031
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4160,11 +4051,11 @@ msgstr ""
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1128
+#: frappe/public/js/frappe/form/grid.js:1132
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1100
+#: frappe/model/document.py:1099
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4180,7 +4071,7 @@ msgstr ""
msgid "Cannot move row"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:921
+#: frappe/public/js/frappe/views/reports/report_view.js:927
msgid "Cannot remove ID field"
msgstr ""
@@ -4205,11 +4096,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr ""
-#: frappe/model/db_query.py:1125
+#: frappe/model/db_query.py:1126
msgid "Cannot use sub-query in order by"
msgstr ""
-#: frappe/model/db_query.py:1144
+#: frappe/model/db_query.py:1145
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4235,7 +4126,7 @@ msgstr ""
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:261
msgid "Card Label"
msgstr ""
@@ -4377,7 +4268,7 @@ msgstr ""
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:290
+#: frappe/public/js/frappe/views/reports/query_report.js:288
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4397,7 +4288,7 @@ 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:499
+#: frappe/public/js/frappe/views/reports/report_view.js:505
msgid "Chart Type"
msgstr ""
@@ -4511,7 +4402,7 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:638
+#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4604,10 +4495,6 @@ msgstr ""
msgid "Click here to verify"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:47
-msgid "Click on Authorize Google Drive Access to authorize Google Drive Access."
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4634,7 +4521,6 @@ msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
-#: frappe/integrations/doctype/google_drive/google_drive.py:53
#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
msgstr ""
@@ -4808,7 +4694,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4863,9 +4749,9 @@ 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:1229
-#: frappe/public/js/frappe/widgets/widget_dialog.js:533
-#: frappe/public/js/frappe/widgets/widget_dialog.js:681
+#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: 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
@@ -5006,7 +4892,7 @@ msgstr ""
msgid "Comment publicity can only be updated by the original author or a System Manager."
msgstr ""
-#: frappe/model/meta.py:59 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/model/meta.js:209
#: frappe/public/js/frappe/model/model.js:135
#: frappe/website/doctype/web_form/templates/web_form.html:122
@@ -5113,7 +4999,7 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:477
+#: frappe/core/doctype/user/user.py:478
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
@@ -5209,7 +5095,7 @@ msgstr ""
msgid "Configuration"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:481
+#: frappe/public/js/frappe/views/reports/report_view.js:487
msgid "Configure Chart"
msgstr ""
@@ -5546,7 +5432,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1096
+#: frappe/model/document.py:1095
msgid "Could not find {0}"
msgstr ""
@@ -5575,7 +5461,7 @@ msgstr ""
msgid "Count"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:527
+#: frappe/public/js/frappe/widgets/widget_dialog.js:540
msgid "Count Customizations"
msgstr ""
@@ -5583,10 +5469,14 @@ msgstr ""
#. 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:512
+#: 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"
@@ -5637,7 +5527,7 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1261
+#: frappe/public/js/frappe/views/reports/query_report.js:1263
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5651,13 +5541,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:188
-#: frappe/public/js/frappe/views/reports/query_report.js:233
+#: frappe/public/js/frappe/views/reports/query_report.js:186
+#: frappe/public/js/frappe/views/reports/query_report.js:231
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:286
-#: frappe/public/js/frappe/views/reports/query_report.js:1188
+#: frappe/public/js/frappe/views/reports/query_report.js:284
+#: frappe/public/js/frappe/views/reports/query_report.js:1190
msgid "Create Chart"
msgstr ""
@@ -5768,7 +5658,7 @@ msgstr ""
msgid "Created At"
msgstr ""
-#: frappe/model/meta.py:56
+#: 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
@@ -5780,14 +5670,14 @@ 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:51
+#: 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:515
+#: frappe/public/js/frappe/desk.js:523
#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
msgstr ""
@@ -5810,7 +5700,7 @@ msgstr ""
msgid "Cron Format"
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:59
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
msgstr ""
@@ -6207,11 +6097,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -6220,9 +6105,6 @@ msgstr ""
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:398
#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
@@ -6776,7 +6658,7 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/toolbar.js:461
-#: frappe/public/js/frappe/views/reports/report_view.js:1734
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
@@ -6819,7 +6701,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:932
+#: frappe/public/js/frappe/views/reports/query_report.js:934
msgid "Delete and Generate New"
msgstr ""
@@ -6828,7 +6710,7 @@ msgctxt "Button text"
msgid "Delete column"
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:738
+#: frappe/public/js/frappe/form/footer/form_timeline.js:741
msgid "Delete comment?"
msgstr ""
@@ -6914,7 +6796,7 @@ msgstr ""
msgid "Deleting {0} records..."
msgstr ""
-#: frappe/public/js/frappe/model/model.js:741
+#: frappe/public/js/frappe/model/model.js:692
msgid "Deleting {0}..."
msgstr ""
@@ -6960,7 +6842,7 @@ 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:310
+#: frappe/public/js/frappe/widgets/widget_dialog.js:323
#: frappe/www/attribution.html:29
msgid "Dependencies"
msgstr ""
@@ -7074,6 +6956,7 @@ msgstr ""
#: 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
@@ -7371,14 +7254,10 @@ 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:1189
+#: frappe/public/js/frappe/form/grid.js:1193
msgid "Do not edit headers which are preset in the template"
msgstr ""
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:69
-msgid "Do not have permission to access bucket {0}."
-msgstr ""
-
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
@@ -7511,7 +7390,7 @@ 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:466
+#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
msgstr ""
@@ -7571,7 +7450,7 @@ 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:669
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
msgid "Doctype"
msgstr ""
@@ -7689,7 +7568,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:477
+#: frappe/model/document.py:476
msgid "Document Queued"
msgstr ""
@@ -7742,7 +7621,7 @@ msgstr ""
msgid "Document States"
msgstr ""
-#: frappe/model/meta.py:52 frappe/public/js/frappe/model/meta.js:202
+#: 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 ""
@@ -7813,11 +7692,11 @@ msgstr ""
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: frappe/permissions.py:148
+#: frappe/permissions.py:149
msgid "Document Type is not importable"
msgstr ""
-#: frappe/permissions.py:144
+#: frappe/permissions.py:145
msgid "Document Type is not submittable"
msgstr ""
@@ -7846,7 +7725,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1943
+#: frappe/model/document.py:1942
msgid "Document Unlocked"
msgstr ""
@@ -8037,7 +7916,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:835
+#: frappe/public/js/frappe/views/reports/query_report.js:830
msgid "Download Report"
msgstr ""
@@ -8048,7 +7927,7 @@ 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:57
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
msgid "Download Your Data"
msgstr ""
@@ -8104,29 +7983,6 @@ msgstr ""
msgid "Drop files here"
msgstr ""
-#. Label of the dropbox_access_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Access Token"
-msgstr ""
-
-#. Label of the dropbox_refresh_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Refresh Token"
-msgstr ""
-
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Dropbox Settings"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:347
-msgid "Dropbox Setup"
-msgstr ""
-
#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
@@ -8156,7 +8012,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:666 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
@@ -8255,13 +8111,13 @@ msgstr ""
#: 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:668
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:669
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:883
-#: frappe/public/js/frappe/views/reports/query_report.js:1722
+#: frappe/public/js/frappe/views/reports/query_report.js:878
+#: frappe/public/js/frappe/views/reports/query_report.js:1724
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8424,7 +8280,7 @@ msgstr ""
msgid "Edit your workflow visually using the Workflow Builder."
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:672
+#: frappe/public/js/frappe/views/reports/report_view.js:678
#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
msgstr ""
@@ -8525,7 +8381,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:736
+#: frappe/core/doctype/user/user.py:738
msgid "Email Account added multiple times"
msgstr ""
@@ -8533,7 +8389,7 @@ msgstr ""
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:578
+#: frappe/email/doctype/email_account/email_account.py:576
msgid "Email Account {0} Disabled"
msgstr ""
@@ -8759,7 +8615,7 @@ msgstr ""
msgid "Emails Pulled"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:936
+#: frappe/email/doctype/email_account/email_account.py:934
msgid "Emails are already being pulled from this account."
msgstr ""
@@ -8782,11 +8638,9 @@ 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 Drive'
#. 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_drive/google_drive.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
msgstr ""
@@ -8806,11 +8660,6 @@ msgstr ""
msgid "Enable Auto Reply"
msgstr ""
-#. Label of the enabled (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Enable Automatic Backup"
-msgstr ""
-
#. Label of the enable_automatic_linking (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -8969,7 +8818,6 @@ msgstr ""
#. 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 'Dropbox Settings'
#. 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'
@@ -8980,7 +8828,6 @@ msgstr ""
#: 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/dropbox_settings/dropbox_settings.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/public/js/frappe/model/indicator.js:106
@@ -8993,7 +8840,7 @@ msgstr ""
msgid "Enabled Scheduler"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:1012
+#: frappe/email/doctype/email_account/email_account.py:1010
msgid "Enabled email inbox for user {0}"
msgstr ""
@@ -9074,11 +8921,6 @@ msgstr ""
msgid "Ended At"
msgstr ""
-#. Label of the endpoint_url (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Endpoint URL"
-msgstr ""
-
#. Label of the sb_endpoints_section (Section Break) field in DocType
#. 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -9257,7 +9099,7 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:672
+#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9265,15 +9107,15 @@ msgstr ""
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr ""
-#: frappe/model/base_document.py:806
+#: frappe/model/base_document.py:803
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:816
+#: frappe/model/base_document.py:813
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:810
+#: frappe/model/base_document.py:807
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9422,7 +9264,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2069
+#: frappe/public/js/frappe/views/reports/query_report.js:2071
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9448,7 +9290,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9505,8 +9347,8 @@ 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:1757
-#: frappe/public/js/frappe/views/reports/report_view.js:1621
+#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
@@ -9557,11 +9399,11 @@ msgstr ""
msgid "Export Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1632
+#: frappe/public/js/frappe/views/reports/report_view.js:1638
msgid "Export all matching rows?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1642
+#: frappe/public/js/frappe/views/reports/report_view.js:1648
msgid "Export all {0} rows?"
msgstr ""
@@ -9869,8 +9711,8 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:237
-#: frappe/public/js/frappe/views/reports/query_report.js:1816
+#: frappe/public/js/frappe/views/reports/query_report.js:235
+#: frappe/public/js/frappe/views/reports/query_report.js:1818
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9945,7 +9787,7 @@ msgstr ""
msgid "Field {0} does not exist on {1}"
msgstr ""
-#: frappe/desk/form/meta.py:208
+#: frappe/desk/form/meta.py:184
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
@@ -10048,7 +9890,7 @@ msgstr ""
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
-#: frappe/model/db_query.py:144
+#: frappe/model/db_query.py:146
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
@@ -10097,13 +9939,6 @@ msgstr ""
msgid "File '{0}' not found"
msgstr ""
-#. Label of the file_backup (Check) field in DocType 'Dropbox Settings'
-#. Label of the file_backup (Check) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "File Backup"
-msgstr ""
-
#. Label of the private_file_section (Section Break) field in DocType 'Access
#. Log'
#: frappe/core/doctype/access_log/access_log.json
@@ -10304,7 +10139,7 @@ msgstr ""
msgid "Filters {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1421
+#: frappe/public/js/frappe/views/reports/report_view.js:1427
msgid "Filters:"
msgstr ""
@@ -10451,7 +10286,7 @@ msgstr ""
msgid "Following document {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:111
+#: frappe/website/doctype/web_form/web_form.py:108
msgid "Following fields are missing:"
msgstr ""
@@ -10459,7 +10294,7 @@ msgstr ""
msgid "Following fields have invalid values:"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:345
+#: frappe/public/js/frappe/widgets/widget_dialog.js:358
msgid "Following fields have missing values"
msgstr ""
@@ -10602,7 +10437,7 @@ msgstr ""
msgid "For Document Type"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:553
+#: frappe/public/js/frappe/widgets/widget_dialog.js:566
msgid "For Example: {} Open"
msgstr ""
@@ -10631,7 +10466,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/query_report.js:2068
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10784,7 +10619,7 @@ msgstr ""
#. 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:552
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
msgid "Format"
msgstr ""
@@ -10816,7 +10651,7 @@ msgstr ""
#. 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:149
+#: frappe/www/login.py:153
msgid "Frappe"
msgstr ""
@@ -10833,7 +10668,7 @@ msgstr ""
msgid "Frappe Mail"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:549
+#: frappe/email/doctype/email_account/email_account.py:547
msgid "Frappe Mail OAuth Error"
msgstr ""
@@ -10861,13 +10696,11 @@ msgstr ""
#. 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'
-#. Label of the frequency (Select) field in DocType 'Google Drive'
#: 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/integrations/doctype/google_drive/google_drive.json
#: frappe/public/js/frappe/utils/common.js:395
msgid "Frequency"
msgstr ""
@@ -10913,7 +10746,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
+#: frappe/public/js/frappe/views/reports/query_report.js:1779
msgid "From Document Type"
msgstr ""
@@ -10964,16 +10797,16 @@ 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:247
-#: frappe/public/js/frappe/widgets/widget_dialog.js:686
+#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:693
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:670
+#: frappe/__init__.py:677
msgid "Function {0} is not whitelisted."
msgstr ""
@@ -11038,7 +10871,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:877
+#: frappe/public/js/frappe/views/reports/query_report.js:872
msgid "Generate New Report"
msgstr ""
@@ -11326,32 +11159,12 @@ msgstr ""
msgid "Google Contacts Id"
msgstr ""
-#. Name of a DocType
-#. Label of the google_drive_section (Section Break) field in DocType 'Google
-#. Drive'
#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/google_drive/google_drive.json
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:117
-msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:132
-msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:193
-msgid "Google Drive - Could not locate - {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:204
-msgid "Google Drive Backup Successful."
-msgstr ""
-
#. Label of the section_break_7 (Section Break) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -11681,6 +11494,10 @@ msgstr ""
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'
@@ -12004,17 +11821,17 @@ msgstr ""
msgid "Home Settings"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:330
-#: frappe/core/doctype/file/test_file.py:332
-#: frappe/core/doctype/file/test_file.py:396
+#: 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:385
+#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:341
+#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
msgstr ""
@@ -12059,7 +11876,7 @@ msgstr ""
#: frappe/core/doctype/data_import/importer.py:1177
#: frappe/core/doctype/data_import/importer.py:1242
#: frappe/core/doctype/data_import/importer.py:1245
-#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:50
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
#: frappe/public/js/frappe/list/list_settings.js:337
@@ -12071,7 +11888,7 @@ msgid "ID"
msgstr ""
#: frappe/desk/reportview.py:491
-#: frappe/public/js/frappe/views/reports/report_view.js:978
+#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
msgstr ""
@@ -12255,12 +12072,6 @@ msgstr ""
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
msgstr ""
-#. Description of the 'Backup Path' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "If it's empty, it will backup to the root of the bucket."
-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"
@@ -12391,16 +12202,12 @@ msgstr ""
msgid "Ignored Apps"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:348
-msgid "Illegal Access Token. Please try again"
-msgstr ""
-
#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
msgstr ""
-#: frappe/model/db_query.py:451 frappe/model/db_query.py:454
-#: frappe/model/db_query.py:1128
+#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
+#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
msgstr ""
@@ -12749,11 +12556,11 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1592
+#: frappe/public/js/frappe/views/reports/query_report.js:1594
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1584
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Include indentation"
msgstr ""
@@ -12820,11 +12627,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1542
+#: frappe/model/document.py:1541
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1544
+#: frappe/model/document.py:1543
msgid "Incorrect value:"
msgstr ""
@@ -12833,10 +12640,10 @@ msgstr ""
#. 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:53
+#: 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:999
+#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
msgstr ""
@@ -12911,7 +12718,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:1822
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
msgid "Insert After"
msgstr ""
@@ -12927,7 +12734,7 @@ msgstr ""
msgid "Insert Below"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:384
+#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
msgstr ""
@@ -12976,11 +12783,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:818
+#: frappe/permissions.py:827
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:376
+#: frappe/database/query.py:383
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -13098,7 +12905,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:221
#: frappe/public/js/frappe/form/grid_row.js:833
#: frappe/public/js/frappe/form/layout.js:811
-#: frappe/public/js/frappe/views/reports/report_view.js:710
+#: frappe/public/js/frappe/views/reports/report_view.js:716
msgid "Invalid \"depends_on\" expression"
msgstr ""
@@ -13138,7 +12945,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:102
+#: frappe/database/query.py:103
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13183,6 +12990,7 @@ 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 ""
@@ -13207,7 +13015,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1226 frappe/www/update-password.html:123
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
#: frappe/www/update-password.html:247
msgid "Invalid Password"
@@ -13236,7 +13044,7 @@ msgstr ""
#: frappe/core/doctype/file/file.py:220
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
-#: frappe/public/js/frappe/widgets/widget_dialog.js:589
+#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
msgstr ""
@@ -13257,11 +13065,11 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:393
+#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
-#: frappe/model/document.py:1015 frappe/model/document.py:1029
+#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13285,7 +13093,7 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:182
+#: frappe/database/query.py:189
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
@@ -13311,7 +13119,7 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:324
+#: frappe/app.py:317
msgid "Invalid request arguments"
msgstr ""
@@ -13495,7 +13303,7 @@ 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:328
+#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
msgstr ""
@@ -13710,6 +13518,10 @@ msgstr ""
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 ""
@@ -13741,7 +13553,7 @@ msgstr ""
#. 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:498
+#: frappe/public/js/frappe/widgets/widget_dialog.js:511
msgid "Kanban Board"
msgstr ""
@@ -14013,10 +13825,10 @@ msgstr ""
#: 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:300
-#: frappe/public/js/frappe/widgets/widget_dialog.js:453
-#: frappe/public/js/frappe/widgets/widget_dialog.js:630
-#: frappe/public/js/frappe/widgets/widget_dialog.js:663
+#: 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
@@ -14101,11 +13913,6 @@ msgstr ""
msgid "Last Active"
msgstr ""
-#. Label of the last_backup_on (Datetime) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Last Backup On"
-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"
@@ -14190,12 +13997,12 @@ msgstr ""
msgid "Last Synced On"
msgstr ""
-#: frappe/model/meta.py:55 frappe/public/js/frappe/model/meta.js:205
+#: 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:54 frappe/public/js/frappe/model/meta.js:204
+#: 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 ""
@@ -14239,7 +14046,7 @@ msgid "Leave blank to repeat always"
msgstr ""
#: frappe/core/doctype/communication/mixins.py:207
-#: frappe/email/doctype/email_account/email_account.py:722
+#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
msgstr ""
@@ -14458,7 +14265,7 @@ msgstr ""
msgid "Liked"
msgstr ""
-#: frappe/model/meta.py:58 frappe/public/js/frappe/model/meta.js:208
+#: 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 ""
@@ -14473,11 +14280,6 @@ msgstr ""
msgid "Limit"
msgstr ""
-#. Label of the limit_no_of_backups (Check) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Limit Number of DB Backups"
-msgstr ""
-
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14592,11 +14394,11 @@ msgstr ""
#: 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:414
+#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:350
+#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
msgstr ""
@@ -14609,7 +14411,7 @@ msgstr ""
msgid "Link Type"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:346
+#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
msgstr ""
@@ -14761,7 +14563,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1085
+#: frappe/public/js/frappe/views/reports/query_report.js:1087
msgid "Loading"
msgstr ""
@@ -14892,7 +14694,7 @@ msgstr ""
msgid "Login Page"
msgstr ""
-#: frappe/www/login.py:152
+#: frappe/www/login.py:156
msgid "Login To {0}"
msgstr ""
@@ -15159,7 +14961,7 @@ msgstr ""
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:473
+#: frappe/website/doctype/web_form/web_form.py:470
msgid "Mandatory Information missing:"
msgstr ""
@@ -15434,7 +15236,7 @@ msgid "Menu"
msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:242
-#: frappe/public/js/frappe/model/model.js:754
+#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr ""
@@ -15613,7 +15415,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:672
+#: frappe/__init__.py:679
msgid "Method Not Allowed"
msgstr ""
@@ -15690,7 +15492,7 @@ msgstr ""
msgid "Miss"
msgstr ""
-#: frappe/desk/form/meta.py:218
+#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
msgstr ""
@@ -15715,7 +15517,7 @@ msgid "Missing Value"
msgstr ""
#: frappe/public/js/frappe/ui/field_group.js:124
-#: frappe/public/js/frappe/widgets/widget_dialog.js:361
+#: 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"
@@ -15898,8 +15700,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -15907,7 +15707,6 @@ msgstr ""
#: 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/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:400
#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
@@ -16079,7 +15878,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:462
+#: frappe/website/doctype/web_form/web_form.py:459
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16245,7 +16044,7 @@ msgstr ""
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:793
+#: frappe/model/document.py:792
msgid "Negative Value"
msgstr ""
@@ -16350,7 +16149,7 @@ 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:762
+#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr ""
@@ -16384,7 +16183,7 @@ msgstr ""
msgid "New Quick List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
msgstr ""
@@ -16440,26 +16239,26 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
#: frappe/public/js/frappe/form/toolbar.js:558
-#: frappe/public/js/frappe/model/model.js:661
+#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:379
+#: frappe/website/doctype/web_form/web_form.py:376
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:394
+#: frappe/public/js/frappe/views/reports/query_report.js:392
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:386
+#: frappe/public/js/frappe/views/reports/query_report.js:384
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:391
+#: frappe/public/js/frappe/views/reports/query_report.js:389
msgid "New {0} {1} created"
msgstr ""
@@ -16471,7 +16270,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:802
+#: frappe/core/doctype/user/user.py:804
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16633,7 +16432,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16774,7 +16573,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:803
+#: frappe/core/doctype/user/user.py:805
msgid "No Roles Specified"
msgstr ""
@@ -16925,7 +16724,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:827 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16934,7 +16733,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
-#: frappe/model/db_query.py:949
+#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
msgstr ""
@@ -17018,12 +16817,6 @@ msgstr ""
msgid "Non-Conforming"
msgstr ""
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "None"
-msgstr ""
-
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr ""
@@ -17038,7 +16831,7 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr ""
@@ -17059,7 +16852,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:374 frappe/www/404.html:3
+#: frappe/app.py:367 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -17085,9 +16878,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:754 frappe/app.py:367 frappe/desk/calendar.py:26
+#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:711
+#: frappe/website/doctype/web_form/web_form.py:708
#: 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
@@ -17108,7 +16901,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:813
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
-#: frappe/public/js/frappe/views/reports/report_view.js:197
+#: frappe/public/js/frappe/views/reports/report_view.js:203
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
@@ -17139,7 +16932,7 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:264
+#: frappe/core/doctype/user/user.py:265
msgid "Not a valid User Image."
msgstr ""
@@ -17155,7 +16948,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:360
+#: frappe/permissions.py:370
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17175,7 +16968,7 @@ msgstr ""
msgid "Not allowed to print draft documents"
msgstr ""
-#: frappe/permissions.py:212
+#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
msgstr ""
@@ -17191,12 +16984,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:214
+#: frappe/core/doctype/system_settings/system_settings.py:215
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:724
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17222,15 +17015,6 @@ msgstr ""
msgid "Note:"
msgstr ""
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'Dropbox Settings'
-#. Description of the 'Send Email for Successful backup' (Check) field in
-#. DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Note: By default emails for failed backups are sent."
-msgstr ""
-
#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr ""
@@ -17290,13 +17074,10 @@ msgstr ""
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
#. Name of a DocType
-#. Label of the notification_section (Section Break) field in DocType 'S3
-#. Backup Settings'
#: 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
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Notification"
msgstr ""
@@ -17398,7 +17179,7 @@ msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:615
+#: frappe/public/js/frappe/widgets/widget_dialog.js:628
msgid "Number Card"
msgstr ""
@@ -17416,7 +17197,7 @@ 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:645
+#: frappe/public/js/frappe/widgets/widget_dialog.js:658
msgid "Number Cards"
msgstr ""
@@ -17434,15 +17215,6 @@ msgstr ""
msgid "Number of Backups"
msgstr ""
-#. Label of the no_of_backups (Int) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Number of DB Backups"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:54
-msgid "Number of DB backups cannot be less than 1"
-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"
@@ -17458,7 +17230,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:169
+#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17687,7 +17459,7 @@ 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:322
+#: frappe/public/js/frappe/widgets/widget_dialog.js:335
msgid "Onboard"
msgstr ""
@@ -17783,19 +17555,13 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Only change this if you want to use other S3 compatible object storage backends."
-msgstr ""
-
-#: frappe/model/document.py:1232
+#: frappe/model/document.py:1231
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:315
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
msgstr ""
@@ -18044,7 +17810,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:870
+#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
msgstr ""
@@ -18156,7 +17922,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1742
+#: frappe/public/js/frappe/views/reports/query_report.js:1744
msgid "PDF"
msgstr ""
@@ -18455,7 +18221,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:798
+#: frappe/permissions.py:807
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18515,11 +18281,11 @@ msgstr ""
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1079
+#: frappe/core/doctype/user/user.py:1081
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:457
+#: frappe/core/doctype/user/user.py:458
msgid "Password Reset"
msgstr ""
@@ -18553,7 +18319,7 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1078
+#: frappe/core/doctype/user/user.py:1080
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18565,7 +18331,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:869
+#: frappe/core/doctype/user/user.py:871
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18722,7 +18488,7 @@ msgstr ""
msgid "Permanently Submit {0}?"
msgstr ""
-#: frappe/public/js/frappe/model/model.js:733
+#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
msgstr ""
@@ -18883,8 +18649,8 @@ msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:40
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
-#: frappe/public/js/frappe/views/reports/report_view.js:1576
+#: frappe/public/js/frappe/views/reports/report_view.js:1579
+#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
msgstr ""
@@ -18924,7 +18690,7 @@ msgstr ""
msgid "Plant"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:546
+#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
msgstr ""
@@ -18940,7 +18706,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:309
+#: frappe/public/js/frappe/views/reports/query_report.js:307
msgid "Please Set Chart"
msgstr ""
@@ -18956,7 +18722,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1063
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -18984,11 +18750,11 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:946
+#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1059
+#: frappe/core/doctype/user/user.py:1061
msgid "Please check your email for verification"
msgstr ""
@@ -19016,10 +18782,6 @@ msgstr ""
msgid "Please click on the following link to set your new password"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:343
-msgid "Please close this window"
-msgstr ""
-
#: frappe/www/confirm_workflow_action.html:4
msgid "Please confirm your action to {0} this document."
msgstr ""
@@ -19036,7 +18798,7 @@ msgstr ""
msgid "Please create chart first"
msgstr ""
-#: frappe/desk/form/meta.py:214
+#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
msgstr ""
@@ -19048,7 +18810,7 @@ msgstr ""
msgid "Please duplicate this to make changes"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:162
+#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19066,7 +18828,7 @@ msgstr ""
msgid "Please enable pop-ups in your browser"
msgstr ""
-#: frappe/integrations/google_oauth.py:53
+#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
msgstr ""
@@ -19143,7 +18905,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:987
+#: frappe/model/document.py:986
msgid "Please refresh to get the latest document."
msgstr ""
@@ -19167,7 +18929,7 @@ msgstr ""
msgid "Please save the document before removing assignment"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1703
+#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
msgstr ""
@@ -19183,11 +18945,11 @@ msgstr ""
msgid "Please select Entity Type first"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:112
+#: frappe/core/doctype/system_settings/system_settings.py:113
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1181
+#: frappe/public/js/frappe/views/reports/query_report.js:1183
msgid "Please select X and Y fields"
msgstr ""
@@ -19215,7 +18977,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1140
+#: frappe/model/db_query.py:1141
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19237,10 +18999,6 @@ msgstr ""
msgid "Please select {0}"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:305
-msgid "Please set Dropbox access keys in site config or doctype"
-msgstr ""
-
#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
msgstr ""
@@ -19249,7 +19007,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:1404
+#: frappe/public/js/frappe/views/reports/query_report.js:1406
msgid "Please set filters"
msgstr ""
@@ -19269,7 +19027,7 @@ msgstr ""
msgid "Please set the series to be used."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:125
+#: frappe/core/doctype/system_settings/system_settings.py:126
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr ""
@@ -19277,19 +19035,19 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:422
+#: frappe/core/doctype/user/user.py:423
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:434
+#: 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:823
+#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:774
+#: frappe/permissions.py:783
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19318,7 +19076,7 @@ msgstr ""
msgid "Please try again"
msgstr ""
-#: frappe/integrations/google_oauth.py:56
+#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
msgstr ""
@@ -19631,8 +19389,8 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1728
-#: frappe/public/js/frappe/views/reports/report_view.js:1531
+#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr ""
@@ -19875,7 +19633,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
msgstr ""
@@ -20196,7 +19954,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:729
+#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
msgstr ""
@@ -20217,7 +19975,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:554
+#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
msgstr ""
@@ -20250,12 +20008,6 @@ msgstr ""
msgid "Queued for Submission. You can track the progress over {0}."
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:65
-#: frappe/integrations/doctype/google_drive/google_drive.py:153
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:86
-msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr ""
-
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
@@ -20391,7 +20143,7 @@ msgstr ""
msgid "Re-Run in Console"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:728
+#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
msgstr ""
@@ -20493,7 +20245,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:889
+#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
msgstr ""
@@ -20858,11 +20610,11 @@ msgid "Referrer"
msgstr ""
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:548
+#: frappe/public/js/frappe/desk.js:556
#: 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:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1719
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20881,12 +20633,10 @@ 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 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
@@ -20903,7 +20653,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
msgstr ""
@@ -21066,7 +20816,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
#: frappe/public/js/frappe/form/toolbar.js:432
-#: frappe/public/js/frappe/model/model.js:772
+#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
msgstr ""
@@ -21076,7 +20826,7 @@ msgstr ""
msgid "Rename Fieldname"
msgstr ""
-#: frappe/public/js/frappe/model/model.js:759
+#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
msgstr ""
@@ -21140,7 +20890,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:146
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
msgstr ""
@@ -21278,7 +21028,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1902
+#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
msgstr ""
@@ -21330,7 +21080,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1009
+#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
msgstr ""
@@ -21346,11 +21096,11 @@ msgstr ""
msgid "Report updated successfully"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1351
+#: frappe/public/js/frappe/views/reports/report_view.js:1357
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1940
+#: frappe/public/js/frappe/views/reports/query_report.js:1942
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21386,7 +21136,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:925
+#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
msgstr ""
@@ -21836,7 +21586,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:363
+#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -21951,7 +21701,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:855 frappe/model/document.py:778
+#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
msgstr ""
@@ -21964,7 +21714,7 @@ msgstr ""
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:982
msgid "Row #{0}:"
msgstr ""
@@ -22042,7 +21792,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:653
+#: frappe/permissions.py:662
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22086,23 +21836,6 @@ msgstr "Время выполнения в минутах"
msgid "Runtime in Seconds"
msgstr "Время выполнения в секундах"
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "S3 Backup Settings"
-msgstr ""
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
-msgid "S3 Backup complete!"
-msgstr ""
-
-#. Label of the s3_bucket_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Bucket Details"
-msgstr ""
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
@@ -22243,7 +21976,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/page/print/print.js:858
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/quick_entry.js:185
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
@@ -22253,8 +21986,8 @@ msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
-#: frappe/public/js/frappe/views/reports/query_report.js:1894
-#: frappe/public/js/frappe/views/reports/report_view.js:1720
+#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
@@ -22271,8 +22004,8 @@ msgstr ""
msgid "Save Anyway"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1382
-#: frappe/public/js/frappe/views/reports/report_view.js:1727
+#: frappe/public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
msgstr ""
@@ -22280,7 +22013,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1897
+#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
msgstr ""
@@ -22446,7 +22179,7 @@ msgstr ""
msgid "Scheduler Status"
msgstr ""
-#: frappe/utils/scheduler.py:249
+#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr ""
@@ -22672,7 +22405,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:858
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "See all past reports."
msgstr ""
@@ -22752,7 +22485,7 @@ msgstr ""
msgid "Select Child Table"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:377
+#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
msgstr ""
@@ -23069,31 +22802,11 @@ msgstr ""
msgid "Send Email To Creator"
msgstr ""
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Dropbox Settings'
-#. Label of the send_email_for_successful_backup (Check) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Email for Successful Backup"
-msgstr ""
-
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Email for Successful backup"
-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 email (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Notification To"
-msgstr ""
-
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -23110,14 +22823,6 @@ msgstr ""
msgid "Send Notifications For Email Threads"
msgstr ""
-#. Label of the send_notifications_to (Data) field in DocType 'Dropbox
-#. Settings'
-#. Label of the notify_email (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Notifications To"
-msgstr ""
-
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
msgstr ""
@@ -23376,7 +23081,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:383 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23442,7 +23147,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:360
+#: frappe/app.py:353
msgid "Session Expired"
msgstr ""
@@ -23451,7 +23156,7 @@ msgstr ""
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:119
+#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
msgstr ""
@@ -23474,7 +23179,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:201
+#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
msgstr ""
@@ -23500,7 +23205,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
msgstr ""
@@ -23718,8 +23423,8 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1763
-#: frappe/public/js/frappe/views/reports/report_view.js:1698
+#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23815,6 +23520,15 @@ msgstr ""
msgid "Show \"Call to Action\" in Blog"
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"
@@ -23985,7 +23699,7 @@ msgstr ""
msgid "Show Title in Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1521
+#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
msgstr ""
@@ -24095,7 +23809,7 @@ msgstr ""
msgid "Show {0} List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:495
+#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
msgstr ""
@@ -24130,7 +23844,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
msgstr ""
@@ -24775,7 +24489,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
-#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: frappe/public/js/frappe/views/reports/report_view.js:975
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
@@ -25074,7 +24788,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:1166
+#: frappe/public/js/frappe/form/grid.js:1170
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25171,7 +24885,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:720
+#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
msgstr ""
@@ -25461,11 +25175,9 @@ msgstr ""
#: frappe/geo/doctype/country/country.json
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/connected_app/connected_app.json
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.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_drive/google_drive.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
@@ -25474,7 +25186,6 @@ msgstr ""
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_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
@@ -25599,11 +25310,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1165
+#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1565
+#: frappe/model/document.py:1564
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25622,7 +25333,7 @@ msgstr ""
msgid "Tag Link"
msgstr ""
-#: frappe/model/meta.py:57
+#: 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
@@ -25634,15 +25345,6 @@ msgstr ""
msgid "Tags"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:29
-msgid "Take Backup"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
-msgid "Take Backup Now"
-msgstr ""
-
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
msgstr ""
@@ -25720,12 +25422,12 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1027
+#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
msgstr ""
-#: frappe/core/doctype/translation/test_translation.py:56
-#: frappe/core/doctype/translation/test_translation.py:63
+#: frappe/core/doctype/translation/test_translation.py:47
+#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
msgstr ""
@@ -25734,8 +25436,8 @@ msgstr ""
msgid "Test Job ID"
msgstr ""
-#: frappe/core/doctype/translation/test_translation.py:58
-#: frappe/core/doctype/translation/test_translation.py:66
+#: frappe/core/doctype/translation/test_translation.py:49
+#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
msgstr ""
@@ -25743,7 +25445,7 @@ msgstr ""
msgid "Test email sent to {0}"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:388
+#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25824,7 +25526,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1188
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
msgstr ""
@@ -25992,15 +25694,15 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:987
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:991
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -26012,7 +25714,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:334
+#: frappe/utils/response.py:331
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26073,7 +25775,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26102,7 +25804,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:958
+#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26189,12 +25891,12 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:750
+#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:117
-#: frappe/public/js/frappe/model/model.js:755
+#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr ""
@@ -26232,7 +25934,7 @@ msgstr ""
msgid "This document is already amended, you cannot ammend it again"
msgstr ""
-#: frappe/model/document.py:474
+#: frappe/model/document.py:473
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -26293,7 +25995,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2132
+#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26357,7 +26059,7 @@ msgstr ""
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1033
+#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26365,7 +26067,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:856
+#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
msgstr ""
@@ -26431,7 +26133,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1240
+#: frappe/core/doctype/user/user.py:1242
msgid "Throttled"
msgstr ""
@@ -26782,7 +26484,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:857
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26807,10 +26509,6 @@ msgstr ""
msgid "To use Google Contacts, enable {0}."
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:8
-msgid "To use Google Drive, enable {0}."
-msgstr ""
-
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -26841,7 +26539,7 @@ msgstr ""
msgid "Today"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1564
+#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
msgstr ""
@@ -26857,7 +26555,7 @@ 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:1568
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
msgstr ""
@@ -26913,11 +26611,11 @@ msgstr ""
msgid "Too many changes to database in single action."
msgstr ""
-#: frappe/utils/background_jobs.py:728
+#: 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:1028
+#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -26981,8 +26679,8 @@ msgstr ""
#: frappe/desk/query_report.py:533
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1320
-#: frappe/public/js/frappe/views/reports/report_view.js:1545
+#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr ""
@@ -27045,11 +26743,11 @@ msgstr ""
msgid "Total:"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1250
+#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1225
+#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
msgstr ""
@@ -27162,7 +26860,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2188
+#: frappe/public/js/frappe/views/reports/query_report.js:2183
msgid "Translate Data"
msgstr "Перевести данные"
@@ -27173,7 +26871,7 @@ msgstr "Перевести данные"
msgid "Translate Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1650
+#: frappe/public/js/frappe/views/reports/report_view.js:1656
msgid "Translate values"
msgstr ""
@@ -27321,7 +27019,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/views/file/file_view.js:337
#: frappe/public/js/frappe/views/workspace/workspace.js:399
-#: frappe/public/js/frappe/widgets/widget_dialog.js:391
+#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
msgid "Type"
@@ -27401,7 +27099,7 @@ msgstr ""
#: 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:458
+#: 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"
@@ -27463,7 +27161,7 @@ msgstr ""
msgid "Unable to load camera."
msgstr ""
-#: frappe/public/js/frappe/model/model.js:268
+#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
msgstr ""
@@ -27492,7 +27190,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:383
+#: frappe/app.py:376
msgid "Uncaught Exception"
msgstr ""
@@ -27725,7 +27423,7 @@ msgstr ""
msgid "Updated Successfully"
msgstr ""
-#: frappe/public/js/frappe/desk.js:444
+#: frappe/public/js/frappe/desk.js:452
msgid "Updated To A New Version 🎉"
msgstr ""
@@ -27733,7 +27431,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:333
+#: frappe/utils/response.py:330
msgid "Updating"
msgstr ""
@@ -27807,18 +27505,6 @@ msgstr ""
msgid "Uploaded To Google Drive"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:196
-msgid "Uploading backup to Google Drive."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:201
-msgid "Uploading successful."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:16
-msgid "Uploading to Google Drive"
-msgstr ""
-
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -27902,11 +27588,11 @@ msgstr ""
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:434
+#: frappe/model/db_query.py:435
msgid "Use of function {0} in field is restricted"
msgstr ""
-#: frappe/model/db_query.py:411
+#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
msgstr ""
@@ -28023,7 +27709,7 @@ msgstr ""
msgid "User Cannot Search"
msgstr ""
-#: frappe/public/js/frappe/desk.js:546
+#: frappe/public/js/frappe/desk.js:554
msgid "User Changed"
msgstr ""
@@ -28129,8 +27815,8 @@ 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:1881
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
@@ -28227,7 +27913,7 @@ msgstr ""
msgid "User permission already exists"
msgstr ""
-#: frappe/www/login.py:167
+#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
msgstr ""
@@ -28235,23 +27921,23 @@ msgstr ""
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: frappe/core/doctype/user/user.py:536
+#: frappe/core/doctype/user/user.py:537
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:326
+#: frappe/core/doctype/user/user.py:327
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:602
+#: frappe/core/doctype/user/user.py:603
msgid "User {0} cannot be renamed"
msgstr ""
-#: frappe/permissions.py:138
+#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
msgstr ""
-#: frappe/permissions.py:161
+#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr ""
@@ -28264,7 +27950,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1369
+#: frappe/core/doctype/user/user.py:1371
msgid "User {0} impersonated as {1}"
msgstr ""
@@ -28293,7 +27979,7 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:687
+#: frappe/core/doctype/user/user.py:689
msgid "Username {0} already exists"
msgstr ""
@@ -28433,15 +28119,15 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1049 frappe/model/document.py:834
+#: frappe/model/base_document.py:1054 frappe/model/document.py:833
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:780
+#: frappe/model/document.py:779
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:784
+#: frappe/model/document.py:783
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28472,7 +28158,7 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1124
msgid "Value too big"
msgstr ""
@@ -29073,11 +28759,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -29086,9 +28767,6 @@ msgstr ""
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:399
#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
@@ -29123,11 +28801,11 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:414
+#: frappe/core/doctype/user/user.py:415
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:475
+#: frappe/core/doctype/user/user.py:476
msgid "Welcome to {0}"
msgstr ""
@@ -29160,7 +28838,7 @@ 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:468
+#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
msgstr ""
@@ -29359,7 +29037,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:177
+#: frappe/public/js/frappe/router.js:173
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29429,11 +29107,11 @@ msgstr ""
msgid "Workspaces"
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:753
+#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
msgstr ""
@@ -29452,11 +29130,11 @@ msgstr ""
msgid "Write"
msgstr ""
-#: frappe/model/base_document.py:949
+#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:484
+#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
msgstr ""
@@ -29475,13 +29153,13 @@ msgstr ""
msgid "Y Axis"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:491
+#: frappe/public/js/frappe/views/reports/report_view.js:497
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:1221
+#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
msgstr ""
@@ -29542,7 +29220,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29582,11 +29260,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr "Вы не имеете права доступа к этому ресурсу"
-#: frappe/permissions.py:409
+#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:398
+#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29609,7 +29287,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:604
+#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29621,7 +29299,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:569
+#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29637,7 +29315,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:669
+#: frappe/__init__.py:676
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29645,7 +29323,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr ""
-#: frappe/core/doctype/installed_applications/installed_applications.py:82
+#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -29809,11 +29487,11 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:368
+#: frappe/app.py:361
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:838
+#: frappe/desk/query_report.py:831
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29825,11 +29503,11 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:772
+#: frappe/website/doctype/web_form/web_form.py:769
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:286 frappe/utils/response.py:290
+#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
msgstr ""
@@ -29837,7 +29515,7 @@ msgstr ""
msgid "You don't have permission to get a report on: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:175
+#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
msgstr ""
@@ -29890,23 +29568,23 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:339
+#: 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:768
+#: frappe/website/doctype/web_form/web_form.py:765
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:609
+#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:357
+#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr "Для выполнения этого действия вам необходимо разрешение '{0}' на {1} {2} ."
@@ -29922,11 +29600,11 @@ msgstr ""
msgid "You need to be a system user to access this page."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:94
+#: 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:275
+#: frappe/utils/response.py:272
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29934,7 +29612,7 @@ msgstr ""
msgid "You need to be logged in to access this page"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:164
+#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
msgstr ""
@@ -30009,7 +29687,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/desk.js:543
+#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -30092,7 +29770,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:354
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -30323,7 +30001,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:403 frappe/permissions.py:414
+#: frappe/permissions.py:412 frappe/permissions.py:423
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30875,7 +30553,7 @@ msgstr ""
msgid "{0} Calendar"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:564
+#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
msgstr ""
@@ -30923,7 +30601,7 @@ msgstr ""
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1149
+#: frappe/model/base_document.py:1154
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -30933,7 +30611,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:952
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
msgstr ""
@@ -30999,7 +30677,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:149
+#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
msgstr ""
@@ -31012,7 +30690,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:547
+#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr "{0} не может быть изменен, поскольку он не отменен. Пожалуйста, отмените документ перед созданием поправки."
@@ -31137,7 +30815,7 @@ msgstr ""
msgid "{0} is an invalid email address in 'Recipients'"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1462
+#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
msgstr ""
@@ -31146,27 +30824,27 @@ msgstr ""
msgid "{0} is currently {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1431
+#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1451
+#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1441
+#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1456
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1446
+#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1481
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
msgstr ""
@@ -31186,7 +30864,7 @@ msgstr ""
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:64
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
msgstr ""
@@ -31215,11 +30893,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:787
+#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31231,27 +30909,27 @@ msgstr ""
msgid "{0} is not a zip file"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1436
+#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1483
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1487
+#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:165
+#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1470
+#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
msgstr ""
@@ -31262,11 +30940,11 @@ msgstr ""
msgid "{0} is required"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1486
+#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1465
+#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
msgstr ""
@@ -31274,12 +30952,12 @@ msgstr ""
msgid "{0} items selected"
msgstr ""
-#: frappe/core/doctype/user/user.py:1378
+#: frappe/core/doctype/user/user.py:1380
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:104
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
msgstr ""
@@ -31295,7 +30973,7 @@ msgstr ""
msgid "{0} m"
msgstr ""
-#: frappe/desk/notifications.py:397
+#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
msgstr ""
@@ -31307,35 +30985,35 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1792
+#: frappe/model/document.py:1791
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1551
+#: frappe/model/document.py:1550
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1553
+#: frappe/model/document.py:1552
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1549
+#: frappe/model/document.py:1548
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1547 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:875
+#: frappe/model/base_document.py:876
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:732
+#: frappe/model/base_document.py:729
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1555
+#: frappe/model/document.py:1554
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31410,7 +31088,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1785
+#: frappe/model/document.py:1784
msgid "{0} row #{1}: "
msgstr ""
@@ -31506,11 +31184,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:665 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:987
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -31526,7 +31204,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:260 frappe/permissions.py:558
+#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
msgstr ""
@@ -31534,7 +31212,7 @@ msgstr ""
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1110
+#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
msgstr ""
@@ -31542,7 +31220,7 @@ msgstr ""
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "{0}/{1} complete | Пожалуйста, оставьте эту вкладку открытой до завершения."
-#: frappe/model/base_document.py:1115
+#: frappe/model/base_document.py:1120
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
@@ -31643,7 +31321,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1279
+#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
msgstr ""
diff --git a/frappe/locale/sr.po b/frappe/locale/sr.po
new file mode 100644
index 0000000000..b40aa9fd2e
--- /dev/null
+++ b/frappe/locale/sr.po
@@ -0,0 +1,31648 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: frappe\n"
+"Report-Msgid-Bugs-To: developers@frappe.io\n"
+"POT-Creation-Date: 2025-06-22 09:34+0000\n"
+"PO-Revision-Date: 2025-06-23 16:41\n"
+"Last-Translator: developers@frappe.io\n"
+"Language-Team: Serbian (Cyrillic)\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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Crowdin-Project: frappe\n"
+"X-Crowdin-Project-ID: 639578\n"
+"X-Crowdin-Language: sr\n"
+"X-Crowdin-File: /[frappe.frappe] develop/frappe/locale/main.pot\n"
+"X-Crowdin-File-ID: 52\n"
+"Language: sr_SP\n"
+
+#: frappe/templates/emails/download_data.html:9
+msgid " to your browser"
+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 '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 "\"{0}“ није важећа Google Sheets адреса (URL)"
+
+#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:21
+#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:22
+msgid "#{0}"
+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"
+msgstr "${values.doctype_name} је додат у ред за чекање за оптимизацију"
+
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
+msgid "© Frappe Technologies Pvt. Ltd. and contributors"
+msgstr "© Frappe Technologies Pvt. Ltd. and contributors"
+
+#. Label of the head_html (Code) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "<head> HTML"
+msgstr "<head> HTML"
+
+#: frappe/public/js/form_builder/store.js:206
+msgid "'In Global Search' is not allowed for field {0} of type {1}"
+msgstr "'У глобалној претрази' није дозвољено за поље {0} врсте {1}"
+
+#: frappe/core/doctype/doctype/doctype.py:1354
+msgid "'In Global Search' not allowed for type {0} in row {1}"
+msgstr "'У глобалној претрази' није дозвољено за врсту {0} у реду {1}"
+
+#: frappe/public/js/form_builder/store.js:198
+msgid "'In List View' is not allowed for field {0} of type {1}"
+msgstr "'У приказу листе' није дозвољено за поље {0} врсте {1}"
+
+#: frappe/custom/doctype/customize_form/customize_form.py:362
+msgid "'In List View' not allowed for type {0} in row {1}"
+msgstr "'У приказу листе' није дозвољено за врсту {0} у реду {1}"
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156
+msgid "'Recipients' not specified"
+msgstr "'Примаоци' нису наведени"
+
+#: frappe/utils/__init__.py:255
+msgid "'{0}' is not a valid URL"
+msgstr "'{0}' није важећи URL"
+
+#: frappe/core/doctype/doctype/doctype.py:1348
+msgid "'{0}' not allowed for type {1} in row {2}"
+msgstr "'{0}' није дозвољен за врсту {1} у реду {2}"
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:302
+msgid "(Mandatory)"
+msgstr "(Обавезно)"
+
+#: frappe/model/rename_doc.py:704
+msgid "** Failed: {0} to {1}: {2}"
+msgstr "** Неуспешно: {0} до {1}: {2}"
+
+#: frappe/public/js/frappe/list/list_settings.js:135
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111
+msgid "+ Add / Remove Fields"
+msgstr "+ Додај / Уклони поља"
+
+#. Description of the 'Doc Status' (Select) field in DocType 'Workflow Document
+#. State'
+#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
+msgid "0 - Draft; 1 - Submitted; 2 - Cancelled"
+msgstr "0 - Нацрт; 1 - Поднето; 2 - Отказано"
+
+#. Description of the 'Priority' (Int) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "0 is highest"
+msgstr "0 је највише"
+
+#: frappe/public/js/frappe/form/grid_row.js:876
+msgid "1 = True & 0 = False"
+msgstr "1 = тачно и 0 = нетачно"
+
+#. 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 "1 валута = [?] Фракција\n"
+"на пример 1 EUR = 100 центи"
+
+#: frappe/public/js/frappe/form/reminders.js:19
+msgid "1 Day"
+msgstr "1 дан"
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.py:374
+msgid "1 Google Calendar Event synced."
+msgstr "1 догађај из Google Calendar-а је синхронизован."
+
+#: frappe/public/js/frappe/views/reports/query_report.js:953
+msgid "1 Report"
+msgstr "1 извештај"
+
+#: frappe/website/doctype/blog_post/blog_post.py:380
+msgid "1 comment"
+msgstr "1 коментар"
+
+#: frappe/tests/test_utils.py:711
+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:709
+msgid "1 hour ago"
+msgstr "пре 1 сата"
+
+#: frappe/public/js/frappe/utils/pretty_date.js:48
+#: frappe/tests/test_utils.py:707
+msgid "1 minute ago"
+msgstr "пре 1 минут"
+
+#: frappe/public/js/frappe/utils/pretty_date.js:66
+#: frappe/tests/test_utils.py:715
+msgid "1 month ago"
+msgstr "пре 1 месец"
+
+#: frappe/public/js/print_format_builder/PrintFormat.vue:3
+msgid "1 of 2"
+msgstr "1 д 2"
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:227
+msgid "1 record will be exported"
+msgstr "1 запис ће бити извезен"
+
+#: frappe/tests/test_utils.py:706
+msgid "1 second ago"
+msgstr "пре 1 секунде"
+
+#: frappe/public/js/frappe/utils/pretty_date.js:62
+#: frappe/tests/test_utils.py:713
+msgid "1 week ago"
+msgstr "пре 1 недељу"
+
+#: frappe/public/js/frappe/utils/pretty_date.js:70
+#: frappe/tests/test_utils.py:717
+msgid "1 year ago"
+msgstr "пре 1 годину"
+
+#: frappe/tests/test_utils.py:710
+msgid "2 hours ago"
+msgstr "пре 2 сата"
+
+#: frappe/tests/test_utils.py:716
+msgid "2 months ago"
+msgstr "пре 2 месеца"
+
+#: frappe/tests/test_utils.py:714
+msgid "2 weeks ago"
+msgstr "пре 2 недеље"
+
+#: frappe/tests/test_utils.py:718
+msgid "2 years ago"
+msgstr "пре 2 године"
+
+#: frappe/tests/test_utils.py:708
+msgid "3 minutes ago"
+msgstr "пре 3 минута"
+
+#: frappe/public/js/frappe/form/reminders.js:16
+msgid "30 minutes"
+msgstr "30 минута"
+
+#: frappe/public/js/frappe/form/reminders.js:18
+msgid "4 hours"
+msgstr "4 сата"
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:37
+msgid "5 Records"
+msgstr "5 записа"
+
+#: frappe/tests/test_utils.py:712
+msgid "5 days ago"
+msgstr "пре 5 дана"
+
+#: 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 "<="
+
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
+msgid "{0} is not a valid URL"
+msgstr "{0} није важећи URL"
+
+#. 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 " Молимо Вас да не ажурирате јер то може пореметити Ваш образац. Користите поље прилагоди приказ обрасца или прилагођена поља да бисте поставили својства!"
+
+#. 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 "\n"
+" Уредите листу серија у кутији. Правила:\n"
+" \n"
+" - Сваки префикс серије треба бити на новој линији.
\n"
+" - Дозвољени су специјални карактери \"/\" и \"-\"
\n"
+" - \n"
+" Опционо, можете поставити број цифара у серији користећи тачку (.)\n"
+" праћену хеш ознакама (#). На пример, \".####\" означава да ће серија\n"
+" имати четири цифре. Подразумевана вредност је пет цифара.\n"
+"
\n"
+" - \n"
+" Такође можете користити варијабле у називу серије стављајући их\n"
+" између (.) тачака\n"
+"
\n"
+" Подржане варијабле:\n"
+" \n"
+" .YYYY. - година у четири цифре \n"
+" .YY. - година у две цифре \n"
+" .ММ. - месец \n"
+" .DD. - дан у месецу \n"
+" .WW. - недеља у години \n"
+" - \n"
+"
.{fieldname}. - назив поља у документу, на пример\n"
+" филијала\n"
+" \n"
+" .FY. - фискална година (неопходно је да ERPNext буде инсталиран) \n"
+" .ABBR. - скраћеница компаније (неопходно је да ERPNext буде инсталиран) \n"
+"
\n"
+" \n"
+"
\n"
+" Примери:\n"
+" \n"
+" - INV-
\n"
+" - INV-10-
\n"
+" - INVK-
\n"
+" - INV-.YYYY.-.{branch}.-.ММ.-.####
\n"
+"
\n"
+"\n"
+"
\n"
+
+#. 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 "Помоћ за прилагођени CSS
\n\n"
+"Напомене:
\n\n"
+"\n"
+"- Све групе поља (ознака + вредност) имају атрибуте
data-fieldtype и data-fieldname \n"
+"- Све вредности имају класу
value \n"
+"- Сви прекиди секција имају класу
section-break \n"
+"- Сви прекиди колона имају класу
column-break \n"
+"
\n\n"
+"Примери
\n\n"
+"1. Поравнање бројчане вредности лево
\n\n"
+"[data-fieldtype=\"Int\"] .value { text-align: left; }
\n\n"
+"1. Додавање ивице секцијама, осим последње секције
\n\n"
+".section-break { padding: 30px 0px; border-bottom: 1px solid #eee; }\n"
+".section-break:last-child { padding-bottom: 0px; border-bottom: 0px; }
\n"
+
+#. 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 "Помоћ за формат штампе
\n"
+"
\n"
+"Увод
\n"
+"Формати за штампање се обрађују на серверској страни користећи Јinja шаблонски језик. Сви обрасци имају приступ објектудоц који садржи информације о документу који се форматира. Такође можете приступити заједничким алатима преко frappe модула.
\n"
+"За стилизовање је доступан Boostrap CSS оквир, самим тим можете користити целу палету класа.
\n"
+"
\n"
+"Референце
\n"
+"\n"
+"\t- Jinja шаблонски језик
\n"
+"\t- Боотстрап CSS оквир
\n"
+"
\n"
+"
\n"
+"Пример
\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"
+"Уобичајене функције
\n"
+"\n"
+"\t\n"
+"\t\t\n"
+"\t\t\tdoc.get_formatted(\"[fieldname]\", [parent_doc]) \n"
+"\t\t\tДобијање вредности документа форматиране као датум, валута, итд. Прослеђени матични документ doc за поља врсте валута. \n"
+"\t\t \n"
+"\t\t\n"
+"\t\t\tfrappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\") \n"
+"\t\t\tДобијање вредности са другог документа. \n"
+"\t\t \n"
+"\t\n"
+"
\n"
+
+#. 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 "Подразумевани шаблон
\n"
+"Користи Jinja шаблонски језик и сва поља адресе (укључујући прилагођена поља уколико постоје) ће бити доступна
\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"
+"
"
+
+#. 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 "Имејл одговор пример
\n\n"
+"Рок за плаћање наруџбине је истекао\n\n"
+"Трансакција {{ name }} је премашила датум доспећа. Молимо Вас да предузмете одговарајуће радње.\n\n"
+"Детаљи\n\n"
+"- Купац: {{ customer }}\n"
+"- Износ: {{ grand_total }}\n"
+"\n\n"
+"Како добити називе поља
\n\n"
+"Поља која можете користити у свом имејл шаблону су поља у документу из којег шаљете имејл. Поља било којег документа можете пронаћи путем поставки > Прилагоди приказ обрасца и одабиром врсте документа (нпр. Излазна фактура)
\n\n"
+"Шаблонизација
\n\n"
+"Шаблони се компајлирају користећи Јиња језик за шаблоне. Да бисте сазнали више о Jinja, прочитајте ову документацију.
\n"
+
+#. 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 "Пример поруке
\n\n"
+"<h3>Рок за плаћање наруџбине је истекао</h3>\n\n"
+"<p>Трансакција {{ doc.name }} је премашила датум доспећа. Молимо Вас да предузмете одговарајуће радње.</p>\n\n"
+"<!-- прикажи последњи коментар -->\n"
+"{% if comments %}\n"
+"Last comment: {{ comments[-1].comment }} by {{ comments[-1].by }}\n"
+"{% endif %}\n\n"
+"<h4>Детаљи</h4>\n\n"
+"<ul>\n"
+"<li>Купац: {{ doc.customer }}\n"
+"<li>Износ: {{ doc.grand_total }}\n"
+"</ul>\n"
+""
+
+#. 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 "Примери услова:
\n"
+"doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n"
+"
"
+
+#. 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 "Примери услова:
\n"
+"doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n"
+"
\n"
+
+#. Content of the 'Condition description' (HTML) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Multiple webforms can be created for a single doctype. Add filters specific to this webform to display correct record after submission.
For Example:
\n"
+"If you create a separate webform every year to capture feedback from employees add a \n"
+" field named year in doctype and add a filter year = 2023
\n"
+msgstr "Више веб-образаца може бити креирано за један DocType. Додајте филтере специфичне за овај веб-образац како бисте приказали одговарајући запис након слања.
На пример:
\n"
+"Уколико креирате посебан веб-образац сваке године за прикупљање повратних информација од запослених лица додајте \n"
+" поље названо година у DocType-у и додајте филтер година = 2023
\n"
+
+#. 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 "Поставите контекст пре него што се прикаже шаблон. Пример:
\n"
+"
\n"
+"context.project = frappe.get_doc(\"Project\", frappe.form_dict.name)\n"
+"
"
+
+#. 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 "За интеракцију са горе наведеним HTML-ом неопходно је да користите `root_element` као матични селектор
На пример:
// овде је роотелемент подразумевано додељен\n"
+"let some_class_element = root_element.querySelector('.some-class');\n"
+"some_class_element.textContent = \"New content\";\n"
+"
"
+
+#: frappe/twofactor.py:446
+msgid "Your OTP secret on {0} has been reset. If you did not perform this reset and did not request it, please contact your System Administrator immediately.
"
+msgstr "Ваша тајна једнократне лозинке на {0} је ресетована. Уколико нисте извршили ово постављање и нисте га захтевали, одмах контактирајте свог систем администратора.
"
+
+#. 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 "* * * * *\n"
+"┬ ┬ ┬ ┬ ┬\n"
+"│ │ │ │ │\n"
+"│ │ │ │ └ дан у недељи (0 - 6) (0 је недеља)\n"
+"│ │ │ └───── месец (1 - 12)\n"
+"│ │ └────────── дан у месецу (1 - 31)\n"
+"│ └─────────────── час (0 - 23)\n"
+"└──────────────────── минут (0 - 59)\n\n"
+"---\n\n"
+"* - Било која вредност\n"
+"/ - Вредност у корацима\n"
+"
\n"
+
+#. 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 "doc.grand_total > 0
\n\n"
+"Услови треба да буду написани у једноставном пyтхон-у. Користите само својства доступна у обрасцу.
\n"
+"Дозвољене функције:\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"
+"Пример:
doc.creation > frappe.utils.add_to_date(frappe.utils.now_datetime(), days=-5, as_string=True, as_datetime=True)
"
+
+#. Header text in the Welcome Workspace Workspace
+#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
+msgid "Hi,"
+msgstr "Здраво,"
+
+#. Header text in the Integrations Workspace
+#: frappe/integrations/workspace/integrations/integrations.json
+msgid "Reports & Masters"
+msgstr "Извештаји & Мастер подаци"
+
+#: frappe/custom/doctype/custom_field/custom_field.js:39
+msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead."
+msgstr "Упозорење: Ово поље је генерисано од стране система и може бити замењено будућим ажурирањем. Измените га користећи {0}."
+
+#. 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:1034
+msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens"
+msgstr "Назив DocType-а треба да почне са словом и може садржати искључиво слова, бројеве, размаке, доње црте и цртице"
+
+#: frappe/website/doctype/blog_post/blog_post.py:92
+msgid "A featured post must have a cover image"
+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:257
+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 "Нови налог је креиран за Вас на {0}"
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400
+msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}."
+msgstr "Понављајући {0} {1} је креиран за Вас путем аутоматског понављања {2}."
+
+#. 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 "Шаблон већ постоји за поље {0} врсте {1}"
+
+#: 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 "А0"
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A1"
+msgstr "А1"
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A2"
+msgstr "А2"
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A3"
+msgstr "А3"
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A4"
+msgstr "А4"
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A5"
+msgstr "А5"
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A6"
+msgstr "А6"
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A7"
+msgstr "А7"
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A8"
+msgstr "А8"
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "A9"
+msgstr "А9"
+
+#. 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 "API"
+
+#. Label of the api_access (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "API Access"
+msgstr "API приступ"
+
+#. Label of the api_endpoint (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "API Endpoint"
+msgstr "API Endpoint"
+
+#. Label of the api_endpoint_args (Code) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "API Endpoint Args"
+msgstr "API Endpoint Args"
+
+#. Label of the api_key (Data) field in DocType 'User'
+#. Label of the api_key (Data) field in DocType 'Email Account'
+#. Label of the api_key (Password) field in DocType 'Geolocation Settings'
+#. Label of the api_key (Data) field in DocType 'Google Settings'
+#. Label of the sb_01 (Section Break) field in DocType 'Google Settings'
+#. Label of the api_key (Data) field in DocType 'Push Notification Settings'
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+#: frappe/integrations/doctype/google_settings/google_settings.json
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "API Key"
+msgstr "API кључ"
+
+#. 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 "API кључ и тајна за интеракцију са релаy сервером. Ови подаци ће бити аутоматски генерисани када прво обавештење буде послато са било које апликације инсталиране на овом сајту."
+
+#. Description of the 'API Key' (Data) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "API Key cannot be regenerated"
+msgstr "API кључ се не може поново генерисати"
+
+#. 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 "Записивање API захтева"
+
+#. Label of the api_method (Data) field in DocType 'Server Script'
+#: frappe/core/doctype/server_script/server_script.json
+msgid "API Method"
+msgstr "API метода"
+
+#. Name of a DocType
+#: frappe/core/doctype/api_request_log/api_request_log.json
+msgid "API Request Log"
+msgstr "Евиденција API захтева"
+
+#. Label of the api_secret (Password) field in DocType 'User'
+#. Label of the api_secret (Password) field in DocType 'Email Account'
+#. Label of the api_secret (Password) field in DocType 'Push Notification
+#. Settings'
+#: frappe/core/doctype/user/user.json
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "API Secret"
+msgstr "API тајна"
+
+#. 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 "ASC"
+
+#. 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 "Остало је још око {0} минута"
+
+#: frappe/core/doctype/data_import/data_import.js:28
+msgid "About {0} minutes remaining"
+msgstr "Остало је још око {0} минута"
+
+#: frappe/core/doctype/data_import/data_import.js:25
+msgid "About {0} seconds remaining"
+msgstr "Остало је још око {0} секунди"
+
+#. 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 "URL приступног токена"
+
+#: frappe/auth.py:491
+msgid "Access not allowed from this IP Address"
+msgstr "Приступ није дозвољен са ове IP адресе"
+
+#. 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/email/doctype/email_group/email_group.js:72
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:37
+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:1871
+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 "Радња {0} је успешно завршена на {1} {2}. Прегледајте је {3}"
+
+#: frappe/core/doctype/submission_queue/submission_queue.py:116
+msgid "Action {0} failed on {1} {2}. View it {3}"
+msgstr "Радње {0} није успела на {1} {2}. Прегледајте је {3}"
+
+#. 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:190
+#: frappe/public/js/frappe/views/reports/query_report.js:203
+#: frappe/public/js/frappe/views/reports/query_report.js:213
+#: frappe/public/js/frappe/views/reports/query_report.js:840
+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:485
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:101
+#: frappe/public/js/frappe/form/templates/set_sharing.html:68
+#: frappe/public/js/frappe/list/bulk_operations.js:437
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
+#: frappe/public/js/frappe/views/reports/query_report.js:265
+#: frappe/public/js/frappe/views/reports/query_report.js:293
+#: frappe/public/js/frappe/widgets/widget_dialog.js:30
+msgid "Add"
+msgstr "Додај"
+
+#: frappe/public/js/frappe/form/grid_row.js:438
+msgid "Add / Remove Columns"
+msgstr "Додај / Уклони колоне"
+
+#: frappe/core/doctype/user_permission/user_permission_list.js:4
+msgid "Add / Update"
+msgstr "Додај / Ажурирај"
+
+#: frappe/core/page/permission_manager/permission_manager.js:442
+msgid "Add A New Rule"
+msgstr "Додај ново правило"
+
+#: frappe/public/js/frappe/views/communication.js:595
+#: 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:36
+msgid "Add Card to Dashboard"
+msgstr "Додај картицу на контролну таблу"
+
+#: frappe/public/js/frappe/views/reports/query_report.js:209
+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:1771
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/report_view.js:355
+#: frappe/public/js/frappe/views/reports/report_view.js:380
+#: frappe/public/js/print_format_builder/Field.vue:112
+msgid "Add Column"
+msgstr "Додај колону"
+
+#: 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:427
+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:808
+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:130
+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:2004
+msgctxt "Button in list view actions menu"
+msgid "Add Tags"
+msgstr "Додај ознаке"
+
+#: frappe/public/js/frappe/views/communication.js:427
+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 "Додај {0} графикон"
+
+#: frappe/public/js/form_builder/components/Section.vue:271
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:115
+msgid "Add column"
+msgstr "Додај колону"
+
+#: frappe/public/js/form_builder/components/AddFieldButton.vue:9
+#: frappe/public/js/form_builder/components/AddFieldButton.vue:48
+msgid "Add field"
+msgstr "Додај поље"
+
+#: frappe/public/js/form_builder/components/Sidebar.vue:49
+#: frappe/public/js/form_builder/components/Tabs.vue:153
+msgid "Add new tab"
+msgstr "Додај нову картицу"
+
+#: frappe/public/js/print_format_builder/PrintFormatSection.vue:125
+msgid "Add page break"
+msgstr "Додај прелом странице"
+
+#: frappe/custom/doctype/client_script/client_script.js:16
+msgid "Add script for Child Table"
+msgstr "Додај скрипту за зависну табелу"
+
+#: 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:251
+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 "Додај у ову активност слањем имејла на {0}"
+
+#: frappe/public/js/frappe/views/kanban/kanban_column.html:20
+msgid "Add {0}"
+msgstr "Додај {0}"
+
+#: frappe/public/js/frappe/list/list_view.js:286
+msgctxt "Primary action in list view"
+msgid "Add {0}"
+msgstr "Додај {0}"
+
+#. 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 "Додат HTML у одељак <head> веб-странице, првенствено за верификацију веб-сајта и SEO"
+
+#: frappe/core/doctype/log_settings/log_settings.py:81
+msgid "Added default log doctypes: {}"
+msgstr "Подразумевани дневници DocType-ова додати: {}"
+
+#: frappe/public/js/frappe/form/link_selector.js:180
+#: frappe/public/js/frappe/form/link_selector.js:202
+msgid "Added {0} ({1})"
+msgstr "Додато {0} ({1})"
+
+#. 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/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/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Address Line 1"
+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/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Address Line 2"
+msgstr "Адреса, ред 2"
+
+#. 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 "Додаје прилагођену клијентску скрипту у DocType"
+
+#. Description of a DocType
+#: frappe/custom/doctype/custom_field/custom_field.json
+msgid "Adds a custom field to a DocType"
+msgstr "Додаје прилагођено поље у DocType"
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552
+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/transaction_log/transaction_log.json
+#: frappe/core/doctype/user_type/user_type.json
+#: frappe/core/doctype/version/version.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/system_console/system_console.json
+#: frappe/website/doctype/website_theme/website_theme.json
+msgid "Administrator"
+msgstr "Администратор"
+
+#: frappe/core/doctype/user/user.py:1213
+msgid "Administrator Logged In"
+msgstr "Администратор пријављен"
+
+#: frappe/core/doctype/user/user.py:1207
+msgid "Administrator accessed {0} on {1} via IP Address {2}."
+msgstr "Администратор је приступио {0} дана {1} путем IP адресе {2}."
+
+#: 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:335
+#: frappe/public/js/frappe/form/controls/link.js:337
+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:62
+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 "Упозорења и обавештења"
+
+#. 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/printing/doctype/print_heading/print_heading.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "All"
+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:2222
+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 "Сва могућа стања радног тока и улоге у радном току. Опција статуса документа: 0 је \"Сачувано\", 1 је \"Поднето\" и 2 је \"Отказано\""
+
+#: 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 "Дозволи приступ индексирању API-ја"
+
+#. 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 "Дозволи приступ Google Calendar"
+
+#: frappe/integrations/doctype/google_contacts/google_contacts.py:40
+msgid "Allow Google Contacts Access"
+msgstr "Дозволи приступ Google Contacts"
+
+#. 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_guest_to_comment (Check) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Allow Guest to comment"
+msgstr "Дозволи госту да коментарише"
+
+#. Label of 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:407
+#: 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 "Дозволи уређивање иако је постављен радни ток.\n\n"
+"Не врши се никаква радњу уколико радни ток није постављен."
+
+#. 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 "Дозволи кориснику да се пријави тек након овог часа (0-24)"
+
+#. 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 "Дозволи кориснику да се пријави само пре овог часа (0-24)"
+
+#. 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_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 "Дозвољавање DocType, DocType. Будите опрезни!"
+
+#: frappe/core/doctype/user/user.py:1023
+msgid "Already Registered"
+msgstr "Већ регистрован"
+
+#: frappe/desk/form/assign_to.py:137
+msgid "Already in the following Users ToDo list:{0}"
+msgstr "Већ се налази на листи за урадити следећих корисника: {0}"
+
+#: frappe/public/js/frappe/views/reports/report_view.js:902
+msgid "Also adding the dependent currency field {0}"
+msgstr "Такође додавање зависног поља за валуту {0}"
+
+#: frappe/public/js/frappe/views/reports/report_view.js:915
+msgid "Also adding the status dependency field {0}"
+msgstr "Такође додавање поља од зависности статуса {0}"
+
+#. Label of the login_id (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Alternative Email ID"
+msgstr "Алтернативни имејл ИД"
+
+#. Label of the always_bcc (Data) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Always BCC Address"
+msgstr "Увек BCC адреса"
+
+#. 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 'Transaction Log'
+#. Label of the amended_from (Link) field in DocType 'Personal Data Download
+#. Request'
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+msgid "Amended From"
+msgstr "Измењено из"
+
+#: 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:549
+msgid "Amendment Not Allowed"
+msgstr "Измена није дозвољена"
+
+#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:207
+msgid "Amendment naming rules updated."
+msgstr "Правила именовања измена ажурирана."
+
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+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 "Иконица са екстензијом .ico. Требало би да буде размере 16 x 16 пиксела. Генерисано помоћу favicon генератора. [favicon-generator.org]"
+
+#: 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 "Већ постоји други {0} са називом {1}, изаберите други назив"
+
+#. Description of the 'Raw Commands' (Code) field in DocType 'Print Format'
+#: frappe/printing/doctype/print_format/print_format.json
+msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language."
+msgstr "За штампаче се могу користити сви језици засновани на тексту. Писање сирових команди захтева познавање основног језика штампача који обезбеђује произвођач. За детаље о писању тих команди, молимо Вас да се консултујете са развојним приручником који је обезбедио произвођач штампача. Ове команде се обрађују на серверској страни користећи Jinja шаблонски језик."
+
+#: 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 client_id (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Client ID"
+msgstr "ИД клијента апликације"
+
+#. Label of the client_secret (Data) field in DocType 'OAuth Client'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+msgid "App Client Secret"
+msgstr "Тајни кључ клијента апликације"
+
+#. Label of the app_id (Data) field in DocType 'Google Settings'
+#: frappe/integrations/doctype/google_settings/google_settings.json
+msgid "App ID"
+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 (Data) field in DocType 'Changelog Feed'
+#. Label of the app_name (Data) field in DocType 'OAuth Client'
+#. Label of the app_name (Data) field in DocType 'Website Settings'
+#: frappe/core/doctype/installed_applications/installed_applications.js:27
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/desk/doctype/changelog_feed/changelog_feed.json
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "App Name"
+msgstr "Назив апликације"
+
+#: frappe/modules/utils.py:280
+msgid "App not found for module: {0}"
+msgstr "Апликација није пронађена за модул: {0}"
+
+#: frappe/__init__.py:1465
+msgid "App {0} is not installed"
+msgstr "Апликација {0} није инсталирана"
+
+#. 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 "Додај у, може бити једно од {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 "Додај као комуникацију против овог DocType (мора садржати поља: \"Пошиљалац\" и \"Наслов\"). Ова поља се могу дефинисати у одељку подешавање имејла код додатог DocType-а."
+
+#: 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 "Верзија апликације"
+
+#. 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:1989
+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:266
+msgid "Applying: {0}"
+msgstr "Примењивање: {0}"
+
+#: 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 "Ar"
+
+#: 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/public/js/frappe/list/list_view.js:1968
+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:185
+msgid "Are you sure you want to discard the changes?"
+msgstr "Да ли сте сигурни да желите да одбаците промене?"
+
+#: frappe/public/js/frappe/views/reports/query_report.js:967
+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 "Да ли сте сигурни да желите да спојите {0} са {1}?"
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
+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 "Да ли сте сигурни да желите да поново повежете ову комуникацију са {0}?"
+
+#: 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 "Да листе сигурни да желите да уклоните {0} филтер?"
+
+#: 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/email/doctype/newsletter/newsletter.js:60
+msgid "Are you sure you want to send this newsletter now?"
+msgstr "Да ли сте сигурни да желите да пошаљете овај билтен сада?"
+
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
+#: frappe/core/doctype/user_permission/user_permission_list.js:165
+msgid "Are you sure?"
+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 "Arial"
+
+#: 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 "Према Вашем захтеву, Ваш налог и подаци на {0} повезани са имејл адресом {1} су трајно обрисани"
+
+#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Assign Condition"
+msgstr "Додели услов"
+
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:190
+msgid "Assign To"
+msgstr "Додели"
+
+#: frappe/public/js/frappe/list/list_view.js:1950
+msgctxt "Button in list view actions menu"
+msgid "Assign To"
+msgstr "Додели"
+
+#: frappe/public/js/frappe/form/sidebar/assign_to.js:181
+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 "Додељено кориснику / Власник"
+
+#: 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 "Правило доделе није дозвољено за врсту документа {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 "Правила доделе"
+
+#: frappe/desk/doctype/notification_log/notification_log.py:153
+msgid "Assignment Update on {0}"
+msgstr "Ажурирање доделе за {0}"
+
+#: frappe/desk/form/assign_to.py:78
+msgid "Assignment for {0} {1}"
+msgstr "Додела за {0} {1}"
+
+#: frappe/desk/doctype/todo/todo.py:62
+msgid "Assignment of {0} removed by {1}"
+msgstr "Додела за {0} уклоњена од стране {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 "Додељени задаци"
+
+#: frappe/public/js/frappe/form/grid_row.js:680
+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:152
+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 "Приложено уз DocType"
+
+#. 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:142
+msgid "Attached To Name must be a string or an integer"
+msgstr "Приложено уз назив мора бити текст или број"
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
+#: frappe/core/doctype/comment/comment.json
+#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
+msgid "Attachment"
+msgstr "Прилог"
+
+#. 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 "Ограничење прилога (MB)"
+
+#: frappe/core/doctype/file/file.py:324
+#: 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'
+#. Label of the attachments (Table) field in DocType 'Newsletter'
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/email/doctype/newsletter/templates/newsletter.html:47
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
+#: frappe/website/doctype/web_form/templates/web_form.html:106
+msgid "Attachments"
+msgstr "Прилози"
+
+#: frappe/public/js/frappe/form/print_utils.js:91
+msgid "Attempting Connection to QZ Tray..."
+msgstr "Покушава се повезивање са QZ Tray..."
+
+#: frappe/public/js/frappe/form/print_utils.js:107
+msgid "Attempting to launch QZ Tray..."
+msgstr "Покушава се покретање QZ Tray..."
+
+#: frappe/www/attribution.html:9
+msgid "Attribution"
+msgstr "Приписивање"
+
+#. Label of the email_group (Table) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
+msgid "Audience"
+msgstr "Публика"
+
+#. Name of a report
+#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
+msgid "Audit System Hooks"
+msgstr "Audit System Hooks"
+
+#. 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 "Верификуј URL податке"
+
+#. 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 "Аутентификација није успела приликом примања имејлова са имејл налога: {0}."
+
+#. 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_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 "URI за ауторизацију"
+
+#: 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 "Одобри приступ API-ју"
+
+#. 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 "Одобри приступ индексирању API-ја"
+
+#. 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 "Одобри приступ Google Calendar-у"
+
+#. 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 "Одобри приступ Google Contacts"
+
+#. 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 "Одобри URL"
+
+#. 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:165
+msgid "Auto Repeat Day{0} {1} has been repeated."
+msgstr "Дан аутоматског понављања {0} {1} је поновљен."
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448
+msgid "Auto Repeat Document Creation Failed"
+msgstr "Креирање документа за аутоматско понављање није успело"
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.js:117
+msgid "Auto Repeat Schedule"
+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:451
+msgid "Auto Repeat failed for {0}"
+msgstr "Аутоматско понављање није успело за {0}"
+
+#. 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 "Аутоматско додељивање није успело: {0}"
+
+#. Label of the follow_assigned_documents (Check) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "Auto follow documents that are assigned to you"
+msgstr "Аутоматски прати документа која су ти додељена"
+
+#. 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:227
+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:128
+msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings."
+msgstr "Аутоматски примењени филтер за недавне податке. Ову опцију можете онемогућити у подешавањима приказа листе."
+
+#. Label of the auto_account_deletion (Int) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Automatically delete account within (hours)"
+msgstr "Аутоматски обриши налог унутар (сати)"
+
+#. Label of a Card Break in the Tools Workspace
+#: frappe/automation/workspace/tools/tools.json
+msgid "Automation"
+msgstr "Аутоматизација"
+
+#. Label of the avatar (Attach Image) field in DocType 'Blogger'
+#: frappe/website/doctype/blogger/blogger.json
+msgid "Avatar"
+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:342
+msgid "Average of {0}"
+msgstr "Просечна вредност {0}"
+
+#: 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 "Избегавајте низове као што су абц или 6543 јер су лако наслућују"
+
+#: 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 "Б0"
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B1"
+msgstr "Б1"
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B10"
+msgstr "Б10"
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B2"
+msgstr "Б3"
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B3"
+msgstr "Б3"
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B4"
+msgstr "Б4"
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B5"
+msgstr "Б5"
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B6"
+msgstr "Б6"
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B7"
+msgstr "Б7"
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B8"
+msgstr "Б8"
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "B9"
+msgstr "Б9"
+
+#. Label of the bcc (Code) field in DocType 'Communication'
+#. Label of the bcc (Code) field in DocType 'Notification Recipient'
+#: frappe/core/doctype/communication/communication.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
+msgid "BCC"
+msgstr "BCC"
+
+#: frappe/public/js/frappe/views/communication.js:85
+msgctxt "Email Recipients"
+msgid "BCC"
+msgstr "BCC"
+
+#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31
+#: frappe/public/js/frappe/widgets/onboarding_widget.js:181
+msgid "Back"
+msgstr "Назад"
+
+#: 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:182
+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 "Штампање у позадини (неопходно за више од 25 докумената)"
+
+#. 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 "Резервне копије (MB)"
+
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
+msgid "Bad Cron Expression"
+msgstr "Неисправни Cron израз"
+
+#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Banker's Rounding"
+msgstr "Банкарско заокруживање"
+
+#. 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 "HTML кôд за банер"
+
+#. 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 "Основни јединствени назив (DN)"
+
+#. Label of the base_url (Data) field in DocType 'Geolocation Settings'
+#. Label of the base_url (Data) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Base URL"
+msgstr "Основни URL"
+
+#. Label of the based_on (Link) field in DocType 'Language'
+#: frappe/core/doctype/language/language.json
+#: frappe/printing/page/print/print.js:273
+#: frappe/printing/page/print/print.js:327
+msgid "Based On"
+msgstr "На основу"
+
+#. 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'
+#. Label of the bio (Small Text) field in DocType 'Blogger'
+#: frappe/core/doctype/user/user.json
+#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
+#: frappe/website/doctype/blogger/blogger.json
+msgid "Bio"
+msgstr "Биографија"
+
+#. 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 "Блокирано"
+
+#. Label of a Card Break in the Website Workspace
+#: frappe/website/doctype/blog_post/blog_post.py:245
+#: frappe/website/doctype/blog_post/templates/blog_post.html:13
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11
+#: frappe/website/workspace/website/website.json
+msgid "Blog"
+msgstr "Блог"
+
+#. Name of a DocType
+#. Label of the blog_category (Link) field in DocType 'Blog Post'
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/workspace/website/website.json
+msgid "Blog Category"
+msgstr "Категорија блога"
+
+#. Label of the blog_intro (Small Text) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+msgid "Blog Intro"
+msgstr "Увод у блог"
+
+#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Blog Introduction"
+msgstr "Увод у блог"
+
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#. Label of a shortcut in the Website Workspace
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/workspace/website/website.json
+msgid "Blog Post"
+msgstr "Блог објава"
+
+#. Name of a DocType
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Blog Settings"
+msgstr "Подешавање блога"
+
+#. Label of the blog_title (Data) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Blog Title"
+msgstr "Наслов блога"
+
+#. Name of a role
+#. Label of the blogger (Link) field in DocType 'Blog Post'
+#. Name of a DocType
+#. Label of a Link in the Website Workspace
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
+#: frappe/website/doctype/blogger/blogger.json
+#: frappe/website/workspace/website/website.json
+msgid "Blogger"
+msgstr "Блогер"
+
+#. 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 "Неопходни су и DocType и назив"
+
+#: 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 "Бренд HTML код"
+
+#. Label of the banner_image (Attach Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Brand Image"
+msgstr "Слика бренда"
+
+#. 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 "Бренд је оно што се приказује у горњем левом делу траке са алаткама. Уколико је у питању слика, уверите се\n"
+"да има транспарентну позадину и користите <img /> ознаку. Величина мора бити 200 пиксела x 30 пиксела"
+
+#. 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 "Breadcrumbs"
+
+#. Label of the browse_by_category (Check) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Browse by category"
+msgstr "Претражи по категорији"
+
+#. Label of 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 "Brute Force безбедност"
+
+#. 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 "Направи {0}"
+
+#: frappe/templates/includes/footer/footer_powered.html:1
+msgid "Built on {0}"
+msgstr "Направљено {0}"
+
+#. 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:1188
+msgid "Bulk Edit {0}"
+msgstr "Масовно уређивање {0}"
+
+#: frappe/desk/reportview.py:602
+msgid "Bulk Operation Failed"
+msgstr "Масовна операције није успела"
+
+#: frappe/desk/reportview.py:606
+msgid "Bulk Operation Successful"
+msgstr "Масовна операција је успешно завршена"
+
+#: frappe/public/js/frappe/list/bulk_operations.js:131
+msgid "Bulk PDF Export"
+msgstr "Масован извоз PDF"
+
+#. 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:254
+msgid "Bulk approval only support up to 500 documents."
+msgstr "Масовно одобравање подржава највише до 500 докумената."
+
+#: 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 "Масовна операција подржава највише до 500 докумената."
+
+#: frappe/model/workflow.py:243
+msgid "Bulk {0} is enqueued in background."
+msgstr "Масовно {0} је стављено у ред за обраду у позадини."
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#: 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 "Заобиђи проверу ограничених IP адреса уколико је двофакторска верификација омогућена"
+
+#. 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 "Заобиђи двофакторску верификацију за кориснике који се пријављују са ограничених IP адреса"
+
+#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in
+#. DocType 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Bypass restricted IP Address check If Two Factor Auth Enabled"
+msgstr "Заобиђи проверу ограничених IP адреса уколико је двофакторска верификација омогућена"
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "C5E"
+msgstr "C5E"
+
+#: 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 "CC"
+
+#: frappe/public/js/frappe/views/communication.js:76
+msgctxt "Email Recipients"
+msgid "CC"
+msgstr "CC"
+
+#. Label of the cmd (Data) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "CMD"
+msgstr "CMD"
+
+#: 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 "CSS"
+
+#. 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 "CSS класа"
+
+#. 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 "CSS селектор за елемент који желите да истакнете."
+
+#. 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 "CSV"
+
+#. Label of the cta_label (Data) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "CTA Label"
+msgstr "Ознака позива на радњу"
+
+#. Label of the cta_url (Data) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "CTA URL"
+msgstr "URL позива на радњу"
+
+#. 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 "URL позива на радњу"
+
+#. Label of the cta_section (Section Break) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Call to Action"
+msgstr "Позив на радњу"
+
+#. Label of the callback_message (Small Text) field in DocType 'Onboarding
+#. Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Callback Message"
+msgstr "Callback порука"
+
+#. Label of the callback_title (Data) field in DocType 'Onboarding Step'
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+msgid "Callback Title"
+msgstr "Callback наслов"
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
+#: frappe/public/js/frappe/ui/capture.js:334
+msgid "Camera"
+msgstr "Камера"
+
+#. Label of the campaign (Link) field in DocType 'Newsletter'
+#. Label of the campaign (Data) field in DocType 'Web Page View'
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/public/js/frappe/utils/utils.js:1726
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/report/website_analytics/website_analytics.js:39
+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 "Не може се променити назив јер је колона {0} већ присутна у DocType."
+
+#: frappe/core/doctype/doctype/doctype.py:1163
+msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype"
+msgstr "Може се променити на/назад у правило аутоматског повећања само када у 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 "Могу се приказивати само врсте докумената који су повезани са корисничком врстом документа."
+
+#: 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 "Не може се преименовати из {0} у {1} јер {0} не постоји."
+
+#. Label of the cancel (Check) field in DocType 'Custom DocPerm'
+#. Label of the cancel (Check) field in DocType 'DocPerm'
+#. Label of the cancel (Check) field in DocType 'User Document Type'
+#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/doctype/doctype_list.js:130
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/reminders.js:54
+msgid "Cancel"
+msgstr "Откажи"
+
+#: frappe/public/js/frappe/list/list_view.js:2059
+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/email/doctype/newsletter/newsletter.js:132
+msgid "Cancel Scheduling"
+msgstr "Откажи заказивање"
+
+#: frappe/public/js/frappe/list/list_view.js:2064
+msgctxt "Title of confirmation dialog"
+msgid "Cancel {0} documents?"
+msgstr "Откажи {0} документа?"
+
+#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
+#. 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/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 "Отказивање {0}"
+
+#: 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:1161
+msgid "Cannot Update After Submit"
+msgstr "Није могуће ажурирати након подношења"
+
+#: frappe/core/doctype/file/file.py:621
+msgid "Cannot access file path {0}"
+msgstr "Није могуће приступити путањи фајла {0}"
+
+#: frappe/public/js/workflow_builder/utils.js:183
+msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State"
+msgstr "Није могуће отказати пре подношења током транзиције са {0} стања на {1} стање"
+
+#: frappe/workflow/doctype/workflow/workflow.py:109
+msgid "Cannot cancel before submitting. See Transition {0}"
+msgstr "Није могуће отказати пре подношења. Погледај транзицију {0}"
+
+#: frappe/public/js/frappe/list/bulk_operations.js:294
+msgid "Cannot cancel {0}."
+msgstr "Није могуће отказати {0}."
+
+#: frappe/model/document.py:1011
+msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
+msgstr "Није могуће променити статус документа из 0 (нацрт) у 2 (отказан)"
+
+#: frappe/model/document.py:1025
+msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
+msgstr "Није могуће променити статус документа из 1 (поднет) у 0 (нацрт)"
+
+#: frappe/public/js/workflow_builder/utils.js:170
+msgid "Cannot change state of Cancelled Document ({0} State)"
+msgstr "Није могуће променити стање отказаног документа ({0} стање)"
+
+#: frappe/workflow/doctype/workflow/workflow.py:98
+msgid "Cannot change state of Cancelled Document. Transition row {0}"
+msgstr "Није могуће променити стање отказаног документа. Транзициони ред {0}"
+
+#: frappe/core/doctype/doctype/doctype.py:1153
+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 "Није могуће креирати {0} против зависног документа: {1}"
+
+#: frappe/desk/doctype/workspace/workspace.py:272
+msgid "Cannot create private workspace of other users"
+msgstr "Није могуће креирати приватни радни простор за остале кориснике"
+
+#: frappe/core/doctype/file/file.py:153
+msgid "Cannot delete Home and Attachments folders"
+msgstr "Није могуће обрисати почетне и приложене датотеке"
+
+#: frappe/model/delete_doc.py:378
+msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}"
+msgstr "Није могуће обрисати или отказати јер је {0} {1} повезано са {2} {3} {4}"
+
+#: frappe/custom/doctype/customize_form/customize_form.js:369
+msgid "Cannot delete standard action. You can hide it if you want"
+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 "Није могуће обрисати стандардно поље {0}. Можете га сакрити."
+
+#: 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 "Није могуће обрисати системски генерисано поље {0}. Можете га сакрити."
+
+#: frappe/public/js/frappe/list/bulk_operations.js:215
+msgid "Cannot delete {0}"
+msgstr "Није могуће обрисати {0}"
+
+#: frappe/utils/nestedset.py:299
+msgid "Cannot delete {0} as it has child nodes"
+msgstr "Није могуће обрисати {0} јер има зависне чворове"
+
+#: frappe/desk/doctype/dashboard/dashboard.py:48
+msgid "Cannot edit Standard Dashboards"
+msgstr "Није могуће уредити стандардне контролне табле"
+
+#: frappe/email/doctype/notification/notification.py:192
+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:1031
+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:277
+#: frappe/desk/doctype/number_card/number_card.js:364
+msgid "Cannot edit filters for standard number cards"
+msgstr "Није могуће уредити филтере за стандардне бројчане картице"
+
+#: frappe/client.py:166
+msgid "Cannot edit standard fields"
+msgstr "Није могуће уредити стандардна поља"
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127
+msgid "Cannot enable {0} for a non-submittable doctype"
+msgstr "Није могуће дозволити {0} за доцтyпе који се не може поднети"
+
+#: frappe/core/doctype/file/file.py:252
+msgid "Cannot find file {} on disk"
+msgstr "Није могуће пронаћи фајл {} на диску"
+
+#: frappe/core/doctype/file/file.py:561
+msgid "Cannot get file contents of a Folder"
+msgstr "Није могуће преузети садржај фајла из датотеке"
+
+#: frappe/printing/page/print/print.js:844
+msgid "Cannot have multiple printers mapped to a single print format."
+msgstr "Није могуће мапирати више штампача на један формат за штампу."
+
+#: frappe/public/js/frappe/form/grid.js:1132
+msgid "Cannot import table with more than 5000 rows."
+msgstr "Није могуће увозити табелу са више од 5000 редова."
+
+#: frappe/model/document.py:1099
+msgid "Cannot link cancelled document: {0}"
+msgstr "Није могуће повезати отказани документ: {0}"
+
+#: 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 "Није могуће упарити колону {0} ни са једним пољем"
+
+#: frappe/public/js/frappe/form/grid_row.js:175
+msgid "Cannot move row"
+msgstr "Није могуће померити ред"
+
+#: frappe/public/js/frappe/views/reports/report_view.js:927
+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:209
+msgid "Cannot set Notification with event {0} on Document Type {1}"
+msgstr "Није могуће подесити обавештење са догађајем {0} за врсту документа {1}"
+
+#: frappe/core/doctype/docshare/docshare.py:67
+msgid "Cannot share {0} with submit permission as the doctype {1} is not submittable"
+msgstr "Није могуће поделити {0} са дозволом за подношење јер доцтyпе {1} није могуће поднети"
+
+#: frappe/public/js/frappe/list/bulk_operations.js:291
+msgid "Cannot submit {0}."
+msgstr "Није могуће поднети {0}."
+
+#: frappe/desk/doctype/bulk_update/bulk_update.js:26
+#: frappe/public/js/frappe/list/bulk_operations.js:366
+msgid "Cannot update {0}"
+msgstr "Није могуће ажурирати {0}"
+
+#: frappe/model/db_query.py:1126
+msgid "Cannot use sub-query in order by"
+msgstr "Није могуће користити подупит у команди сортирај по"
+
+#: frappe/model/db_query.py:1145
+msgid "Cannot use {0} in order/group by"
+msgstr "Није могуће користити {0} у команди сортирај/групиши по"
+
+#: frappe/public/js/frappe/list/bulk_operations.js:297
+msgid "Cannot {0} {1}."
+msgstr "Није могуће {0} {1}."
+
+#: 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:261
+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 "Назив категорије"
+
+#: frappe/utils/data.py:1520
+msgid "Cent"
+msgstr "Цент"
+
+#. Option for the 'Align' (Select) field in DocType 'Letter Head'
+#. Option for the 'Text Align' (Select) field in DocType 'Web Page'
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: 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/core/report/transaction_log_report/transaction_log_report.py:82
+msgid "Chain Integrity"
+msgstr "Интегритет ланца"
+
+#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log'
+#: frappe/core/doctype/transaction_log/transaction_log.json
+msgid "Chaining Hash"
+msgstr "Хаширање ланца"
+
+#: 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 "Промените почетни / тренутни број у низу за постојећу серију.
\n\n"
+"Упозорење: Неисправно ажурирање бројача можете спречити креирање докумената. "
+
+#. 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:288
+#: 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:505
+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:95
+msgid "Check Request URL"
+msgstr "Провери URL захтева"
+
+#: frappe/email/doctype/newsletter/newsletter.js:18
+msgid "Check broken links"
+msgstr "Провери прекинуте линкове"
+
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
+msgid "Check columns to select, drag to set order."
+msgstr "Провери колоне за означавање, превуци да поставиш редослед."
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454
+msgid "Check the Error Log for more information: {0}"
+msgstr "Провери евиденцију грешака за више информација: {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 "Означи ово уколико не желиш да корисници креирају налог на твом сајту. Корисници неће имати приступ радној површини, осим уколико им експлицитно не обезбедиш."
+
+#. 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 "Означите за приказ пуне нумеричке вредности (нпр. 1.234.567 уместо 1.2М)."
+
+#: frappe/email/doctype/newsletter/newsletter.js:20
+msgid "Checking broken links..."
+msgstr "Проверавање прекинутих линкова..."
+
+#: frappe/public/js/frappe/desk.js:235
+msgid "Checking one moment"
+msgstr "Проверава се, тренутак"
+
+#: 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 "Означавањем овога дошло би до сакривања прилагођених доцтyпе-ова и картице извештаја у одељку линкови"
+
+#: 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 "Означавањем овога дошло би до приказивања текстуалне области где је могуће написати прилагођени javascript који ће се извршавати на овој страници."
+
+#. Label of the checksum_version (Data) field in DocType 'Transaction Log'
+#: frappe/core/doctype/transaction_log/transaction_log.json
+msgid "Checksum Version"
+msgstr "Верзија контролног збира"
+
+#: frappe/www/list.py:85
+msgid "Child DocTypes are not allowed"
+msgstr "Зависни DocType-ови нису дозвољени"
+
+#. 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 "Зависни DocType"
+
+#: frappe/core/doctype/doctype/doctype.py:1647
+msgid "Child Table {0} for field {1}"
+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
+msgid "Child Tables are shown as a Grid in other DocTypes"
+msgstr "Зависне табеле се приказују као табеле у другим DocType-овима"
+
+#: 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/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:432
+msgid "Clear & Add Template"
+msgstr "Очисти и додај шаблон"
+
+#: frappe/public/js/frappe/views/communication.js:111
+msgid "Clear & Add template"
+msgstr "Очисти и додај шаблон"
+
+#: frappe/public/js/frappe/list/list_view.js:1965
+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:433
+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/website/doctype/web_form/templates/web_form.html:147
+msgid "Click here"
+msgstr "Кликните овде"
+
+#: frappe/email/doctype/newsletter/newsletter.py:335
+msgid "Click here to verify"
+msgstr "Кликните овде да верификујете"
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
+msgid "Click on a file to select it."
+msgstr "Кликните на фајл да га одаберете."
+
+#: frappe/templates/emails/login_with_email_link.html:19
+msgid "Click on the button to log in to {0}"
+msgstr "Кликните на дугме да бисте се пријавили на {0}"
+
+#: 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 "Кликните на {0} да генеришете токен за освежавање."
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315
+#: frappe/desk/doctype/number_card/number_card.js:215
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:99
+#: frappe/website/doctype/web_form/web_form.js:236
+msgid "Click table to edit"
+msgstr "Кликните на табелу да бисте је уредили"
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502
+#: frappe/desk/doctype/number_card/number_card.js:402
+msgid "Click to Set Dynamic Filters"
+msgstr "Кликните да поставите динамичке филтере"
+
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372
+#: frappe/desk/doctype/number_card/number_card.js:270
+#: frappe/website/doctype/web_form/web_form.js:262
+msgid "Click to Set Filters"
+msgstr "Кликните да поставите филтере"
+
+#: frappe/public/js/frappe/list/list_view.js:711
+msgid "Click to sort by {0}"
+msgstr "Кликните да сортирате по {0}"
+
+#. 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 'Social Login Key'
+#: frappe/integrations/doctype/google_settings/google_settings.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 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 (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/social_login_key/social_login_key.json
+msgid "Client Secret"
+msgstr "Тајна клијента"
+
+#. Label of the client_urls (Section Break) field in DocType 'Social Login Key'
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+msgid "Client URLs"
+msgstr "URL-ови клијента"
+
+#. 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 "Cmd+Enter да бисте додали коментар"
+
+#. 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:2052
+#: 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 "Може се сажети зависи од (JS)"
+
+#. 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:1231
+#: 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 "Колона 1"
+
+#: frappe/core/doctype/report/boilerplate/controller.py:33
+msgid "Column 2"
+msgstr "Колона 2"
+
+#: frappe/desk/doctype/kanban_board/kanban_board.py:84
+msgid "Column {0} already exist."
+msgstr "Колона {0} већ постоји."
+
+#. Option for the 'Type' (Select) field in DocType 'DocField'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. 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:438
+msgid "Column Width"
+msgstr "Ширина колоне"
+
+#: frappe/public/js/frappe/form/grid_row.js:645
+msgid "Column width cannot be zero."
+msgstr "Ширина колоне не може бити нула."
+
+#: frappe/core/doctype/data_import/data_import.js:380
+msgid "Column {0}"
+msgstr "Колона {0}"
+
+#. 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:396
+msgid "Columns based on"
+msgstr "Колоне засноване на"
+
+#: frappe/integrations/doctype/oauth_client/oauth_client.py:45
+msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed"
+msgstr "Комбинација врсте дозволе ({0}) и врсте одговора ({1}) није дозвољена"
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Comm10E"
+msgstr "Comm10E"
+
+#. 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 "Коментар се може уредити само од власника"
+
+#. Label of the comment_limit (Int) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Comment limit"
+msgstr "Лимит коментара"
+
+#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Comment limit per hour"
+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:122
+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:38
+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:54
+#: frappe/public/js/frappe/utils/diffview.js:28
+msgid "Compare Versions"
+msgstr "Упореди верзије"
+
+#: frappe/core/doctype/server_script/server_script.py:157
+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:478
+#: 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:205
+#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/email/doctype/notification/notification.json
+#: frappe/email/doctype/notification_recipient/notification_recipient.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/website/doctype/web_form/web_form.js:197
+#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
+msgid "Condition"
+msgstr "Услов"
+
+#. Label of the condition_json (JSON) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Condition JSON"
+msgstr "Услов JSON"
+
+#. 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 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:487
+msgid "Configure Chart"
+msgstr "Конфигуришите дијаграм"
+
+#: frappe/public/js/frappe/form/grid_row.js:390
+msgid "Configure Columns"
+msgstr "Конфигуришите колоне"
+
+#: frappe/core/doctype/recorder/recorder_list.js:200
+msgid "Configure Recorder"
+msgstr "Конфигуришите алат за снимање"
+
+#: frappe/public/js/print_format_builder/Field.vue:103
+msgid "Configure columns for {0}"
+msgstr "Конфигуришите колоне за {0}"
+
+#. 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 "Конфигуришите како ће се називати измењени документи.
\n\n"
+"Подразумевано понашање је да се користи бројач за измене, који додаје број на крају оригиналног назива, означавајући верзију која је измењена.
\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 "Конфигуришите различите аспекте како функционише именовање докумената, као што су серије именовања, тренутни бројач."
+
+#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345
+#: frappe/www/update-password.html:53
+msgid "Confirm"
+msgstr "Потврди"
+
+#: frappe/public/js/frappe/ui/messages.js:31
+msgctxt "Title of confirmation dialog"
+msgid "Confirm"
+msgstr "Потврди"
+
+#: frappe/integrations/oauth2.py:120
+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:191
+msgid "Confirm New Password"
+msgstr "Потврди нову лозинку"
+
+#: frappe/www/update-password.html:47
+msgid "Confirm Password"
+msgstr "Потврди лозинку"
+
+#: frappe/templates/emails/data_deletion_approval.html:6
+#: frappe/templates/emails/delete_data_confirmation.html:7
+msgid "Confirm Request"
+msgstr "Потврди захтев"
+
+#: frappe/email/doctype/newsletter/newsletter.py:330
+msgid "Confirm Your Email"
+msgstr "Потврдите Ваш имејл"
+
+#. Label of the confirmation_email_template (Link) field in DocType 'Email
+#. Group'
+#: frappe/email/doctype/email_group/email_group.json
+msgid "Confirmation Email Template"
+msgstr "Шаблон имејла за потврду"
+
+#: frappe/email/doctype/newsletter/newsletter.py:379
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
+msgid "Confirmed"
+msgstr "Потврђено"
+
+#: 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:25
+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:97
+#: frappe/public/js/frappe/form/print_utils.js:121
+msgid "Connected to QZ Tray!"
+msgstr "Повезано са QZ Tray!"
+
+#: 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 "Контакт"
+
+#. 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 "Контакт синхронизован са Google Contacts."
+
+#: 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 "Опције за контакт, попут \"Упит за продају, Упит за подршку\" итд., свака у новом реду или одвојена зарезима."
+
+#: frappe/utils/change_log.py:362
+msgid "Contains {0} security fix"
+msgstr "Садржи {0} исправку безбедности"
+
+#: frappe/utils/change_log.py:360
+msgid "Contains {0} security fixes"
+msgstr "Садржи {0} исправки безбедности"
+
+#. Label of the content (HTML Editor) field in DocType 'Comment'
+#. Label of the content (Text Editor) field in DocType 'Note'
+#. Label of the content (Long Text) field in DocType 'Workspace'
+#. Label of the newsletter_content (Section Break) field in DocType
+#. 'Newsletter'
+#. Label of the content (Text Editor) field in DocType 'Blog Post'
+#. Label of the content (Text Editor) field in DocType 'Help Article'
+#. Label of the section_title (Tab Break) field in DocType 'Web Page'
+#. 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/email/doctype/newsletter/newsletter.json
+#: frappe/public/js/frappe/utils/utils.js:1742
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/help_article/help_article.json
+#: 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_html (HTML Editor) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+msgid "Content (HTML)"
+msgstr "Садржај (HTML)"
+
+#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+msgid "Content (Markdown)"
+msgstr "Садржај (Markdown)"
+
+#. 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 'Newsletter'
+#. Label of the content_type (Select) field in DocType 'Blog Post'
+#. Label of the content_type (Select) field in DocType 'Web Page'
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Content Type"
+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:1033
+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 "Копирај embed code"
+
+#: frappe/public/js/frappe/request.js:620
+msgid "Copy error to clipboard"
+msgstr "Копирај грешку у међуспремник"
+
+#: frappe/public/js/frappe/form/toolbar.js:504
+msgid "Copy 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:122
+msgid "Core DocTypes cannot be customized."
+msgstr "Основни DocType-ови не могу бити прилагођени."
+
+#: frappe/desk/doctype/global_search_settings/global_search_settings.py:36
+msgid "Core Modules {0} cannot be searched in Global Search."
+msgstr "Основни модули {0} се не могу претраживати у глобалној претрази."
+
+#: frappe/printing/page/print/print.js:620
+msgid "Correct version :"
+msgstr "Исправна верзија :"
+
+#: frappe/email/smtp.py:78
+msgid "Could not connect to outgoing email server"
+msgstr "Није било могуће повезати се са сервером за излазне имејлове"
+
+#: frappe/model/document.py:1095
+msgid "Could not find {0}"
+msgstr "Није било могуће пронаћи {0}"
+
+#: frappe/core/doctype/data_import/importer.py:933
+msgid "Could not map column {0} to field {1}"
+msgstr "Није било могуће мапирати колону {0} на поље {1}"
+
+#: frappe/desk/page/setup_wizard/setup_wizard.js:234
+msgid "Could not start up: "
+msgstr "Није било могуће покренути: "
+
+#: frappe/public/js/frappe/web_form/web_form.js:359
+msgid "Couldn't save, please check the data you have entered"
+msgstr "Није било могуће сачувати, проверите унесене податке"
+
+#. 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:325
+#: 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/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:129
+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 "Cr"
+
+#. 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:1263
+#: 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
+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:186
+#: frappe/public/js/frappe/views/reports/query_report.js:231
+msgid "Create Card"
+msgstr "Креирај картицу"
+
+#: frappe/public/js/frappe/views/reports/query_report.js:284
+#: frappe/public/js/frappe/views/reports/query_report.js:1190
+msgid "Create Chart"
+msgstr "Креирај графикон"
+
+#: frappe/public/js/form_builder/components/controls/TableControl.vue:62
+msgid "Create Child Doctype"
+msgstr "Креирај зависни DocType"
+
+#. 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:509
+msgctxt "Create a new document from list view"
+msgid "Create New"
+msgstr "Креирај нови"
+
+#: frappe/core/doctype/doctype/doctype_list.js:100
+msgid "Create New DocType"
+msgstr "Креирај нови DocType"
+
+#: frappe/public/js/frappe/list/list_view_select.js:204
+msgid "Create New Kanban Board"
+msgstr "Креирај нову Канбан таблу"
+
+#: frappe/core/doctype/user/user.js:270
+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:537
+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:311
+#: frappe/public/js/frappe/form/controls/link.js:313
+#: frappe/public/js/frappe/form/link_selector.js:139
+#: frappe/public/js/frappe/list/list_view.js:501
+#: frappe/public/js/frappe/web_form/web_form_list.js:225
+msgid "Create a new {0}"
+msgstr "Креирај нови {0}"
+
+#: frappe/www/login.html:162
+msgid "Create a {0} Account"
+msgstr "Креирај {0} налог"
+
+#. Description of a DocType
+#: frappe/email/doctype/newsletter/newsletter.json
+msgid "Create and send emails to a specific group of subscribers periodically."
+msgstr "Креирај и пошаљи имејлове специфичној групи претплатника периодично."
+
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
+msgid "Create or Edit Print Format"
+msgstr "Креирај или уреди формат штампе"
+
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:34
+msgid "Create or Edit Workflow"
+msgstr "Креирај или уреди радни ток"
+
+#: frappe/public/js/frappe/list/list_view.js:504
+msgid "Create your first {0}"
+msgstr "Креирај свој први {0}"
+
+#: 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:337
+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:64
+msgid "Created Custom Field {0} in {1}"
+msgstr "Креирано прилагођено поље {0} у {1}"
+
+#: 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:523
+#: frappe/public/js/frappe/views/treeview.js:393
+msgid "Creating {0}"
+msgstr "Креирање {0}"
+
+#: 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 "Cron"
+
+#. 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 "Cron формат"
+
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
+msgid "Cron format is required for job types with Cron frequency."
+msgstr "Cron формат је неопходан за врсте задатака са Cron фреквенцијом."
+
+#: 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 "Ctrl + Down"
+
+#: frappe/public/js/frappe/form/grid_row_form.js:42
+msgid "Ctrl + Up"
+msgstr "Ctrl + Up"
+
+#: frappe/templates/includes/comments/comments.html:32
+msgid "Ctrl+Enter to add comment"
+msgstr "Ctrl+Enter да бисте додали коментар"
+
+#. 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 "Прилагођени основни 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 "Прилагођени назив блока"
+
+#. 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 "Прилагођени CSS"
+
+#. 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 "Прилагођено поље {0} је креирао администратор и може се обрисати само путем администраторског налога."
+
+#: frappe/custom/doctype/custom_field/custom_field.py:277
+msgid "Custom Fields can only be added to a standard DocType."
+msgstr "Прилагођена поља могу се искључиво додати у стандардни DocType."
+
+#: frappe/custom/doctype/custom_field/custom_field.py:274
+msgid "Custom Fields cannot be added to core DocTypes."
+msgstr "Прилагођена поља не могу бити додата основним DocType-овима."
+
+#. 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 "Прилагођена претрага групе, уколико је попуњена, мора садржати кориснички резервисани текст {0}, нпр. уид={0},оу=усерс,дц=еxампле,дц=цом"
+
+#: 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 "Прилагођени HTML"
+
+#. Name of a DocType
+#: frappe/desk/doctype/custom_html_block/custom_html_block.json
+msgid "Custom HTML Block"
+msgstr "Прилагођени HTML блок"
+
+#. 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 "Прилагођена HTML подршка"
+
+#: 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 "Прилагођени LDAP директоријум је одабран, молимо Вас да осигурате да су унети 'LDAP атрибут чланова групе' и 'Група класе објекта'"
+
+#. 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 "Прилагођени 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 "Прилагођени мени бочне траке"
+
+#. 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 "Прилагођено поље је успешно преименовано у {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/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 "Прилагођавање за {0} су извезена:
{1}"
+
+#: frappe/printing/page/print/print.js:171
+#: frappe/public/js/frappe/form/templates/print_layout.html:39
+#: frappe/public/js/frappe/form/toolbar.js:597
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
+msgid "Customize"
+msgstr "Прилагоди"
+
+#: frappe/public/js/frappe/list/list_view.js:1802
+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:342
+msgid "Customize Form"
+msgstr "Прилагоди образац"
+
+#: frappe/custom/doctype/customize_form/customize_form.js:100
+msgid "Customize Form - {0}"
+msgstr "Прилагоди образац - {0}"
+
+#. 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 "Прилагоди својства, називе, поља и још много тога за стандардне доцтyпе-ове"
+
+#: 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 "DLE"
+
+#: 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:100
+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:562
+#: frappe/public/js/frappe/utils/utils.js:932
+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 (Long Text) field in DocType 'Transaction Log'
+#. Label of the data (Code) field in DocType 'Version'
+#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
+#. Option for the 'Type' (Select) field in DocType 'Customize Form Field'
+#. Label of the webhook_data (Table) field in DocType 'Webhook'
+#. Label of the data (Code) field in DocType 'Webhook Request Log'
+#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field'
+#. 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/transaction_log/transaction_log.json
+#: frappe/core/doctype/version/version.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Data"
+msgstr "Подаци"
+
+#: 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:614
+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:248
+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 "Искоришћеност величине реда табеле базе података: {0}%, ово ограничава број поља која се могу додати."
+
+#. 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/email/doctype/newsletter/newsletter.js:109
+#: frappe/public/js/frappe/views/interaction.js:80
+#: frappe/website/doctype/web_form_field/web_form_field.json
+msgid "Date"
+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 "Датум {0} мора бити у формату: {1}"
+
+#: 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 "Дан у недељи"
+
+#. 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 "Поштовани/на {0}"
+
+#. Label of the debug_log (Code) field in DocType 'Scheduled Job Log'
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+msgid "Debug Log"
+msgstr "Дебуг евиденција"
+
+#: frappe/public/js/frappe/views/reports/report_utils.js:308
+msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric"
+msgstr "Децимални сепаратор мора бити тачка '.' када наводник није подешен као нумерички"
+
+#: frappe/public/js/frappe/views/reports/report_utils.js:300
+msgid "Decimal Separator must be a single character"
+msgstr "Децимални сепаратор мора бити један знак"
+
+#. Label of the default (Small Text) field in DocType 'DocField'
+#. Label of the default (Small Text) field in DocType 'Report Filter'
+#. Label of the default (Small Text) field in DocType 'Customize Form Field'
+#. Option for the 'Font' (Select) field in DocType 'Print Settings'
+#. 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 "Подразумевана URI за преусмеравање"
+
+#. 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:1376
+msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
+msgstr "Подразумевана вредност 'Означи' врсте поља {0} мора бити или '0' или '1'"
+
+#: frappe/core/doctype/doctype/doctype.py:1389
+msgid "Default value for {0} must be in the list of options."
+msgstr "Подразумевана вредност за {0} мора бити у листи опција."
+
+#: frappe/core/doctype/session_default_settings/session_default_settings.py:38
+msgid "Default {0}"
+msgstr "Подразумевано {0}"
+
+#. 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 a DocType
+#: frappe/workflow/doctype/workflow/workflow.json
+msgid "Defines workflow states and rules for a document."
+msgstr "Дефинише стање радних токова и правила за документ."
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Delayed"
+msgstr "Кашњење"
+
+#. Label of the delete (Check) field in DocType 'Custom DocPerm'
+#. Label of the delete (Check) field in DocType 'DocPerm'
+#. Label of the delete (Check) field in DocType 'User Document Type'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:189
+#: frappe/public/js/frappe/form/footer/form_timeline.js:626
+#: frappe/public/js/frappe/form/grid.js:66
+#: frappe/public/js/frappe/form/toolbar.js:461
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
+#: frappe/public/js/frappe/views/treeview.js:329
+#: 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:2027
+msgctxt "Button in list view actions menu"
+msgid "Delete"
+msgstr "Обриши"
+
+#: frappe/www/me.html:65
+msgid "Delete Account"
+msgstr "Обриши налог"
+
+#: frappe/public/js/frappe/form/grid.js:66
+msgid "Delete All"
+msgstr "Обриши све"
+
+#: frappe/public/js/form_builder/components/Section.vue:196
+msgctxt "Title of confirmation dialog"
+msgid "Delete Column"
+msgstr "Обриши колону"
+
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:10
+msgid "Delete Data"
+msgstr "Обриши податке"
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
+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:934
+msgid "Delete and Generate New"
+msgstr "Обриши и генериши нови"
+
+#: frappe/public/js/form_builder/components/Section.vue:203
+msgctxt "Button text"
+msgid "Delete column"
+msgstr "Обриши колону"
+
+#: frappe/public/js/frappe/form/footer/form_timeline.js:741
+msgid "Delete comment?"
+msgstr "Обриши коментар?"
+
+#: 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:2032
+msgctxt "Title of confirmation dialog"
+msgid "Delete {0} item permanently?"
+msgstr "Трајно обриши {0} ставку?"
+
+#: frappe/public/js/frappe/list/list_view.js:2038
+msgctxt "Title of confirmation dialog"
+msgid "Delete {0} items permanently?"
+msgstr "Трајно обриши {0} ставке?"
+
+#. 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 "Обрисани DocType"
+
+#. 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:606
+msgid "Deleted all documents successfully"
+msgstr "Сви документи су успешно обрисани"
+
+#: frappe/desk/reportview.py:583
+msgid "Deleting {0}"
+msgstr "Брисање {0}"
+
+#: frappe/public/js/frappe/list/bulk_operations.js:202
+msgid "Deleting {0} records..."
+msgstr "Брисање {0} записа..."
+
+#: frappe/public/js/frappe/model/model.js:692
+msgid "Deleting {0}..."
+msgstr "Брисање {0}..."
+
+#. 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:296
+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:8
+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 'Blog Category'
+#. Label of the description (Small Text) field in DocType 'UTM Medium'
+#. Label of the description (Small Text) field in DocType 'UTM Source'
+#. Label of the description (Text) field in DocType 'Web Form Field'
+#. Label of the meta_description (Small Text) field in DocType 'Web Page'
+#. Label of the description (Text) field in DocType 'Website Slideshow Item'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/desk/doctype/onboarding_step/onboarding_step.json
+#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/todo/todo.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/report/todo/todo.py:39
+#: frappe/printing/doctype/print_heading/print_heading.json
+#: frappe/public/js/frappe/form/reminders.js:44
+#: frappe/public/js/frappe/widgets/widget_dialog.js:256
+#: frappe/website/doctype/blog_category/blog_category.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+#: frappe/website/doctype/web_form_field/web_form_field.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
+#: frappe/www/attribution.html:24
+msgid "Description"
+msgstr "Опис"
+
+#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)"
+msgstr "Опис за страницу са листом, у обичном тексту, само пар редова (максимално 200 карактера)"
+
+#. 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/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:153
+#: 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 "Детектуј врсту CSV фајла"
+
+#: 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_comments (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+msgid "Disable Comments"
+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 "Онемогући дељење документа"
+
+#. Label of the disable_likes (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+msgid "Disable Likes"
+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 "Онемогући SMTP сервер аутентификацију"
+
+#. 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'
+#. Label of the disabled (Check) field in DocType 'Blogger'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
+#: frappe/contacts/doctype/address/address.json
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
+#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json
+#: frappe/core/doctype/server_script/server_script.json
+#: frappe/core/doctype/user/user_list.js:14
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/public/js/frappe/form/templates/address_list.html:35
+#: frappe/public/js/frappe/model/indicator.js:108
+#: frappe/public/js/frappe/model/indicator.js:115
+#: frappe/website/doctype/blogger/blogger.json
+msgid "Disabled"
+msgstr "Онемогућено"
+
+#: frappe/email/doctype/email_account/email_account.js:300
+msgid "Disabled Auto Reply"
+msgstr "Онемогући аутоматски одговор"
+
+#: frappe/public/js/frappe/form/toolbar.js:335
+#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71
+#: frappe/public/js/frappe/views/workspace/workspace.js:351
+#: frappe/public/js/frappe/web_form/web_form.js:187
+msgid "Discard"
+msgstr "Одбаци"
+
+#: 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 "Одбаци {0}"
+
+#: frappe/public/js/frappe/web_form/web_form.js:184
+msgid "Discard?"
+msgstr "Одбаци?"
+
+#: frappe/desk/form/save.py:75
+msgid "Discarded"
+msgstr "Одбачено"
+
+#. Description of the 'Suggested Indexes' (Table) field in DocType 'Recorder'
+#: frappe/core/doctype/recorder/recorder.json
+msgid "Disclaimer: These indexes are suggested based on data and queries performed during this recording. These suggestions may or may not help."
+msgstr "Одрицање од одговорности: Ови индекси су предложени на основу података и упита извршених током овог снимања. Ови предлози можда неће бити корисни."
+
+#. Name of a DocType
+#: 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:638
+#: 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 "Приказ зависи од (JS)"
+
+#: 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:1193
+msgid "Do not edit headers which are preset in the template"
+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 "Статус документа следећих стања је промењен:
{0}
\n"
+"\t\t\t\tДа ли желите да ажурирате статус постојећих докумената у тим стањима?
\n"
+"\t\t\t\tОво неће поништити никакве ефекте које је изазвао тренутни статус документа.\n"
+"\t\t\t\t"
+
+#. 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'
+#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/core/doctype/data_export/exporter.py:26
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/core/doctype/permission_inspector/permission_inspector.json
+#: frappe/core/doctype/version/version.json
+#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:15
+#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:38
+#: frappe/core/workspace/build/build.json
+#: frappe/custom/doctype/client_script/client_script.json
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/property_setter/property_setter.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/desk/doctype/workspace_link/workspace_link.json
+#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
+#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:164
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:18
+msgid "DocType"
+msgstr "DocType"
+
+#: frappe/core/doctype/doctype/doctype.py:1577
+msgid "DocType {0} provided for the field {1} must have atleast one Link field"
+msgstr "DocType {0} додељен за поље {1} мора имати барем једно линк поље"
+
+#. 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 радња"
+
+#. 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 догађај"
+
+#. Name of a DocType
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+msgid "DocType Layout"
+msgstr "DocType распоред"
+
+#. Name of a DocType
+#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
+msgid "DocType Layout Field"
+msgstr "Поље распореда 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 линк"
+
+#. 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 стање"
+
+#. 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 приказ"
+
+#: frappe/core/doctype/doctype/doctype.py:656
+msgid "DocType can not be merged"
+msgstr "DocType не може бити спојен"
+
+#: frappe/core/doctype/doctype/doctype.py:650
+msgid "DocType can only be renamed by Administrator"
+msgstr "DocType може бити преименован само од стране администратора"
+
+#. Description of a DocType
+#: frappe/core/doctype/doctype/doctype.json
+msgid "DocType is a Table / Form in the application."
+msgstr "DocType је табела / образац у апликацији."
+
+#: frappe/integrations/doctype/webhook/webhook.py:79
+msgid "DocType must be Submittable for the selected Doc Event"
+msgstr "DocType мора бити подложан подношењу за одабрани догађај документа"
+
+#: frappe/client.py:403
+msgid "DocType must be a string"
+msgstr "DocType мора бити текст"
+
+#: frappe/public/js/form_builder/store.js:154
+msgid "DocType must have atleast one field"
+msgstr "DocType мора имати барем једно поље"
+
+#: frappe/core/doctype/log_settings/log_settings.py:57
+msgid "DocType not supported by Log Settings."
+msgstr "DocType није подржан у подешавањима евиденција."
+
+#. 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 на који је радни ток примењив."
+
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:4
+msgid "DocType required"
+msgstr "DocType је неопходан"
+
+#: frappe/modules/utils.py:175
+msgid "DocType {0} does not exist."
+msgstr "DocType {0} не постоји."
+
+#: frappe/modules/utils.py:238
+msgid "DocType {} not found"
+msgstr "DocType {} није пронађен"
+
+#: frappe/core/doctype/doctype/doctype.py:1028
+msgid "DocType's name should not start or end with whitespace"
+msgstr "Назив DocType-а не сме почињати или завршавати се размаком"
+
+#: frappe/core/doctype/doctype/doctype.js:67
+msgid "DocTypes cannot be modified, please use {0} instead"
+msgstr "DocType не може бити модификован, молимо Вас да користите {0} уместо тога"
+
+#. Label of the ref_doctype (Link) field in DocType 'Document Follow'
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
+msgid "Doctype"
+msgstr "DocType"
+
+#: frappe/core/doctype/doctype/doctype.py:1022
+msgid "Doctype name is limited to {0} characters ({1})"
+msgstr "Doctype назив је ограничен на {0} карактера ({1})"
+
+#: frappe/public/js/frappe/list/bulk_operations.js:3
+msgid "Doctype required"
+msgstr "DocType је неопходан"
+
+#. 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:1211
+msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType"
+msgstr "Ред повезаних докумената #{0}: Није пронађено поље {1} у {2} DocType"
+
+#: frappe/core/doctype/doctype/doctype.py:1231
+msgid "Document Links Row #{0}: Invalid doctype or fieldname."
+msgstr "Ред повезаних докумената #{0}: Неважећи доцтyпе или назив поља."
+
+#: frappe/core/doctype/doctype/doctype.py:1194
+msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
+msgstr "Ред повезаних докумената #{0}: Матични DocType је обавезан за интерне линкове"
+
+#: frappe/core/doctype/doctype/doctype.py:1200
+msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
+msgstr "Ред повезаних докумената #{0}: Назив поља табеле је обавезно за интерне линкове"
+
+#. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder'
+#. Label of the share_name (Dynamic Link) field in DocType 'DocShare'
+#. Label of the document_name (Data) field in DocType 'Transaction Log'
+#. Label of the docname (Data) field in DocType 'Version'
+#. Label of the document_name (Dynamic Link) field in DocType 'Tag Link'
+#. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow'
+#: frappe/automation/doctype/reminder/reminder.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/transaction_log/transaction_log.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:36
+#: frappe/core/doctype/version/version.json
+#: frappe/desk/doctype/tag_link/tag_link.json
+#: frappe/email/doctype/document_follow/document_follow.json
+#: frappe/public/js/frappe/form/form_tour.js:62
+msgid "Document Name"
+msgstr "Назив документа"
+
+#: 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:476
+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:66
+#: 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
+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 "Врста документа {0} је поновљена."
+
+#. 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:1942
+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:1157
+msgid "Document has been cancelled"
+msgstr "Документ је отказан"
+
+#: frappe/public/js/frappe/list/list_view.js:1156
+msgid "Document has been submitted"
+msgstr "Документ је поднет"
+
+#: frappe/public/js/frappe/list/list_view.js:1155
+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 "Документ је преименован из {0} у {1}"
+
+#: frappe/public/js/frappe/form/toolbar.js:164
+msgid "Document renaming from {0} to {1} has been queued"
+msgstr "Преименовање документа из {0} у {1} је стављено у ред за обраду"
+
+#: 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 "Документ {0} је већ обновљен"
+
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:203
+msgid "Document {0} has been set to state {1} by {2}"
+msgstr "Документ {0} је постављен у стање {1} од стране {2}"
+
+#: frappe/client.py:430
+msgid "Document {0} {1} does not exist"
+msgstr "Документ {0} {1} не постоји"
+
+#. 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 "URL документације"
+
+#: 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 "HTML домени"
+
+#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom
+#. Field'
+#: frappe/custom/doctype/custom_field/custom_field.json
+msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
+msgstr "Немојте кодирати HTML тагове попут <script> или знакове попут < or >, јер могу бити намерно коришћени у овом пољу"
+
+#: 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 "Немојте кодирати HTML тагове попут <script> или знакове попут < or >, јер могу бити намерно коришћени у овом пољу"
+
+#: frappe/www/login.html:139 frappe/www/login.html:155
+#: frappe/www/update-password.html:57
+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/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:237
+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 "Преузми PDF"
+
+#: frappe/public/js/frappe/views/reports/query_report.js:830
+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 "Преузми као CSV"
+
+#: frappe/contacts/doctype/contact/contact.js:98
+msgid "Download vCard"
+msgstr "Преузми vCard"
+
+#: frappe/contacts/doctype/contact/contact_list.js:4
+msgid "Download vCards"
+msgstr "Преузми vCard"
+
+#: 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 "Превуци колоне да подесиш редослед. Ширина колона је изражена у процентима. Укупна ширина не сме прелазити 100. Колоне означене црвеном бојом биће уклоњене."
+
+#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:3
+msgid "Drag elements from the sidebar to add. Drag them back to trash."
+msgstr "Превуци елементе са бочне траке да их додаш. Превуци их назад да их уклониш."
+
+#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:296
+msgid "Drag to add state"
+msgstr "Превуци да додаш стање"
+
+#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172
+msgid "Drop files here"
+msgstr "Отпусти фајлове овде"
+
+#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
+#. Settings'
+#: frappe/core/doctype/navbar_settings/navbar_settings.json
+msgid "Dropdowns"
+msgstr "Падајући мени"
+
+#. 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:419
+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:663 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 "Динамички JSON филтери"
+
+#. Label of the dynamic_filters_section (Section Break) field in DocType
+#. 'Number Card'
+#: frappe/desk/doctype/number_card/number_card.json
+msgid "Dynamic Filters Section"
+msgstr "Одељак динамичких филтера"
+
+#. 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:669
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
+#: frappe/public/js/frappe/form/templates/address_list.html:13
+#: frappe/public/js/frappe/form/templates/contact_list.html:13
+#: frappe/public/js/frappe/form/toolbar.js:745
+#: frappe/public/js/frappe/views/reports/query_report.js:878
+#: frappe/public/js/frappe/views/reports/query_report.js:1724
+#: frappe/public/js/frappe/views/workspace/workspace.js:64
+#: frappe/public/js/frappe/widgets/base_widget.js:64
+#: frappe/public/js/frappe/widgets/chart_widget.js:299
+#: frappe/public/js/frappe/widgets/number_card_widget.js:347
+#: frappe/templates/discussions/reply_card.html:29
+#: frappe/templates/discussions/reply_section.html:29
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:84
+msgid "Edit"
+msgstr "Уреди"
+
+#: frappe/public/js/frappe/list/list_view.js:2113
+msgctxt "Button in list view actions menu"
+msgid "Edit"
+msgstr "Уреди"
+
+#: frappe/website/doctype/web_form/templates/web_form.html:23
+msgctxt "Button in web form"
+msgid "Edit"
+msgstr "Уреди"
+
+#: frappe/public/js/frappe/form/grid_row.js:345
+msgctxt "Edit grid row"
+msgid "Edit"
+msgstr "Уреди"
+
+#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:66
+msgid "Edit Address in Form"
+msgstr "Уреди адресу из обрасца"
+
+#: frappe/templates/emails/auto_email_report.html:63
+msgid "Edit Auto Email Report Settings"
+msgstr "Уреди подешавања аутоматског слања извештаја путем имејла"
+
+#: 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 "Уреди прилагођени HTML"
+
+#: frappe/public/js/frappe/form/toolbar.js:616
+msgid "Edit DocType"
+msgstr "Уреди DocType"
+
+#: frappe/public/js/frappe/list/list_view.js:1829
+msgctxt "Button in list view menu"
+msgid "Edit DocType"
+msgstr "Уреди DocType"
+
+#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:42
+#: frappe/workflow/page/workflow_builder/workflow_builder.js:42
+msgid "Edit Existing"
+msgstr "Уреди постојећи"
+
+#: frappe/public/js/frappe/list/list_sidebar_group_by.js:55
+msgid "Edit Filters"
+msgstr "Уреди филтере"
+
+#: frappe/public/js/print_format_builder/PrintFormat.vue:29
+msgid "Edit Footer"
+msgstr "Уреди подножје"
+
+#: frappe/printing/doctype/print_format/print_format.js:28
+msgid "Edit Format"
+msgstr "Уреди формат"
+
+#: 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 "Уреди HTML"
+
+#: 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 "Уреди {0} Doctype"
+
+#: 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:446
+msgctxt "Button in web form"
+msgid "Edit your response"
+msgstr "Уредите Ваш одговор"
+
+#: frappe/workflow/doctype/workflow/workflow.js:18
+msgid "Edit your workflow visually using the Workflow Builder."
+msgstr "Визуално уредите свој радни ток помоћу уређивача радног тока."
+
+#: frappe/public/js/frappe/views/reports/report_view.js:678
+#: frappe/public/js/frappe/widgets/widget_dialog.js:52
+msgid "Edit {0}"
+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/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 "Уређивање {0}"
+
+#. Description of the 'SMS Gateway URL' (Small Text) field in DocType 'SMS
+#. Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
+msgid "Eg. smsgateway.com/api/send_sms.cgi"
+msgstr "Нпр. smsgateway.com/api/send_sms.cgi"
+
+#: frappe/rate_limiter.py:152
+msgid "Either key or IP flag is required."
+msgstr "Неопходан је или кључ или IP заставица."
+
+#. Label of the element_selector (Data) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Element Selector"
+msgstr "Избор елемента"
+
+#. 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 'Event Participants'
+#. Label of the email (Data) field in DocType 'Email Group Member'
+#. Label of the email (Data) field in DocType 'Email Unsubscribe'
+#. Option for the 'Channel' (Select) field in DocType 'Notification'
+#. Label of the email (Data) field in DocType 'Personal Data Deletion Request'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/success_action/success_action.js:59
+#: frappe/core/doctype/system_settings/system_settings.json
+#: frappe/core/doctype/user/user.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/desk/doctype/event_participants/event_participants.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
+#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
+#: frappe/email/doctype/newsletter/newsletter.js:156
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/success_action.js:85
+#: frappe/public/js/frappe/form/toolbar.js:379
+#: frappe/templates/includes/comments/comments.html:25
+#: frappe/templates/signup.html:9
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/www/login.html:8 frappe/www/login.py:104
+msgid "Email"
+msgstr "Имејл"
+
+#. 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:738
+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 "Имејл налог {0} је онемогућен"
+
+#. 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 "Имејл адреса чији подаци из Google Contacts треба да буду синхронизовани."
+
+#: 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'
+#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
+#: frappe/automation/workspace/tools/tools.json
+#: frappe/email/doctype/email_group/email_group.json
+#: frappe/email/doctype/email_group_member/email_group_member.json
+#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
+msgid "Email Group"
+msgstr "Имејл група"
+
+#. 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/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:160
+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 (Check) field in DocType 'Newsletter'
+#. Label of the email_sent (Check) field in DocType 'Blog Post'
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/website/doctype/blog_post/blog_post.json
+msgid "Email Sent"
+msgstr "Имејл послат"
+
+#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
+msgid "Email Sent At"
+msgstr "Имејл послат у"
+
+#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
+#. Label of the email_settings_section (Section Break) field in DocType
+#. 'Customize Form'
+#. 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:104
+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:272
+msgid "Email is mandatory to create User Email"
+msgstr "Имејл је обавезан за креирање корисничког имејла"
+
+#: frappe/public/js/frappe/views/communication.js:816
+msgid "Email not sent to {0} (unsubscribed / disabled)"
+msgstr "Имејл није послат {0} (отказана претплата / онемогућено)"
+
+#: frappe/utils/oauth.py:163
+msgid "Email not verified with {0}"
+msgstr "Имејл није верификован са {0}"
+
+#: 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:137
+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/public/js/form_builder/components/Section.vue:285
+msgid "Empty column"
+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:119
+msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form"
+msgstr "Омогући дозволу за аутоматско понављање за доцтyпе {0} у пољу прилагоди образац"
+
+#. Label of the enable_auto_reply (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+msgid "Enable Auto Reply"
+msgstr "Омогући аутоматски одговор"
+
+#. 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_email_notification (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+msgid "Enable Email Notification"
+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 "Омогући Google API у Google подешавањима."
+
+#. Label of the enable_google_indexing (Check) field in DocType 'Website
+#. Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Enable Google indexing"
+msgstr "Омогући Google индексирање"
+
+#. Label of the enable_incoming (Check) field in DocType 'Email Account'
+#: frappe/email/doctype/email_account/email_account.json
+#: frappe/email/doctype/email_account/email_account.py:225
+msgid "Enable Incoming"
+msgstr "Омогући улазни"
+
+#. 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 "Омогући пријављивање путем друштвених мрежа"
+
+#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Enable Social Sharing"
+msgstr "Омогући дељење путем друштвених мрежа"
+
+#: 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:433
+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 'Enable Email Notification' (Check) field in DocType
+#. 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+msgid "Enable email notification for any comment or likes received on your Blog Post."
+msgstr "Омогући обавештење путем имејла за сваки коментар или лајк на Вашој објави на блогу."
+
+#. 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 "Омогући ако на клик\n"
+"отвара модални прозор."
+
+#. 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'
+#: 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:106
+#: frappe/public/js/frappe/model/indicator.js:117
+#: frappe/website/doctype/portal_menu_item/portal_menu_item.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 "Омогући пријемну пошту имејла за корисника {0}"
+
+#. 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
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved."
+msgstr "Омогућавањем овога региструјете Ваш веб-сајт на централном серверу за слање обавештења за све инсталиране апликације путем Фиребасе Цлоуд Мессагинг-а. Овај сервер чува само токене корисника и евиденције грешака, док се поруке не чувају."
+
+#. Description of the 'Relay Settings' (Section Break) field in DocType 'Push
+#. Notification Settings'
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
+msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. "
+msgstr "Омогућавањем овога региструјете Ваш веб-сајт на централном серверу за слање обавештења за све инсталиране апликације путем Фиребасе Цлоуд Мессагинг-а. Овај сервер чува само токене корисника и евиденције грешака, док се поруке не чувају. "
+
+#. Description of the 'Queue in Background (BETA)' (Check) field in DocType
+#. 'DocType'
+#. 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:197
+msgid "Encryption key is in invalid format!"
+msgstr "Кључ за шифровање је у неважећем формату!"
+
+#: frappe/utils/password.py:212
+msgid "Encryption key is invalid! Please check site_config.json"
+msgstr "Кључ за шифровање је неважећи! Молимо Вас да проверите site_config.json"
+
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:51
+msgid "End"
+msgstr "Крај"
+
+#. Label of the end_date (Date) field in DocType 'Auto Repeat'
+#. Label of the end_date (Date) field in DocType 'Audit Trail'
+#. Label of the end_date (Datetime) field in DocType 'Web Page'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/public/js/frappe/utils/common.js:416
+#: frappe/website/doctype/web_page/web_page.json
+msgid "End Date"
+msgstr "Датум завршетка"
+
+#. 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 "Датум завршетка не може бити пре датума почетка!"
+
+#. 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 "Унесите клијентски ИД и тајну клијента у Google подешавања."
+
+#: frappe/templates/includes/login/login.js:351
+msgid "Enter Code displayed in OTP App."
+msgstr "Унесите шифру приказану у апликацији за једнократну лозинку."
+
+#: frappe/public/js/frappe/views/communication.js:771
+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 "Унесите назив за овај {0}"
+
+#. 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 "Унесите статичке URL параметре (нпр. sender=ERPNext, username=ERPNext, password=1234 итд.)"
+
+#. Description of the 'Message Parameter' (Data) field in DocType 'SMS
+#. Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
+msgid "Enter url parameter for message"
+msgstr "Унесите URL параметар за поруку"
+
+#. Description of the 'Receiver Parameter' (Data) field in DocType 'SMS
+#. Settings'
+#: frappe/core/doctype/sms_settings/sms_settings.json
+msgid "Enter url parameter for receiver nos"
+msgstr "Унесите URL параметар за бројеве примаоца"
+
+#: 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/doctype/communication/communication.json
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/error_log/error_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/desk/page/backups/backups.js:37
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/public/js/frappe/ui/messages.js:22
+msgid "Error"
+msgstr "Грешка"
+
+#: frappe/public/js/frappe/web_form/web_form.js:240
+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:128
+msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
+msgstr "Грешка при повезивању са QZ Tray апликацијом...
Потребно је да имате инсталирану и покренуту QZ Tray апликацију, да бисте могли да користите функцију необрађене штампе.
Кликните овде да бисте преузели и инсталирали QZ Tray.
Кликните овде да бисте научили више о необрађеној штампи.."
+
+#: frappe/email/doctype/email_domain/email_domain.py:32
+msgid "Error connecting via IMAP/POP3: {e}"
+msgstr "Грешка при повезивању путем IMAP/POP3: {e}"
+
+#: frappe/email/doctype/email_domain/email_domain.py:33
+msgid "Error connecting via SMTP: {e}"
+msgstr "Грешка при повезивању путем SMTP: {e}"
+
+#: frappe/email/doctype/email_domain/email_domain.py:101
+msgid "Error has occurred in {0}"
+msgstr "Дошло је до грешке у {0}"
+
+#: 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:598
+#: frappe/email/doctype/notification/notification.py:735
+#: frappe/email/doctype/notification/notification.py:741
+msgid "Error in Notification"
+msgstr "Грешка у обавештењу"
+
+#: frappe/utils/pdf.py:59
+msgid "Error in print format on line {0}: {1}"
+msgstr "Грешка у формату штампе на линији {0}: {1}"
+
+#: frappe/email/doctype/email_account/email_account.py:670
+msgid "Error while connecting to email account {0}"
+msgstr "Грешка при повезивању са имејл налогом {0}"
+
+#: frappe/email/doctype/notification/notification.py:732
+msgid "Error while evaluating Notification {0}. Please fix your template."
+msgstr "Грешка при обради обавештења {0}. Молимо Вас да исправите Ваш шаблон."
+
+#: frappe/model/base_document.py:803
+msgid "Error: Data missing in table {0}"
+msgstr "Грешка: Подаци недостају у табели {0}"
+
+#: frappe/model/base_document.py:813
+msgid "Error: Value missing for {0}: {1}"
+msgstr "Грешка: Вредност недостаје за {0}: {1}"
+
+#: frappe/model/base_document.py:807
+msgid "Error: {0} Row #{1}: Value missing for: {2}"
+msgstr "Грешка: {0} Ред #{1}: Вредност недостаје за: {2}"
+
+#. Label of the errors_generated_in_last_1_day_section (Section Break) field in
+#. DocType 'System Health Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Errors"
+msgstr "Грешке"
+
+#. 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 "Догађај је синхронизован са Google Calendar-ом."
+
+#. Label of the event_type (Data) field in DocType 'Recorder'
+#. Label of the event_type (Select) field in DocType 'Event'
+#: frappe/core/doctype/recorder/recorder.json
+#: frappe/desk/doctype/event/event.json
+msgid "Event Type"
+msgstr "Врста догађаја"
+
+#: frappe/public/js/frappe/ui/notifications/notifications.js:56
+msgid "Events"
+msgstr "Догађаји"
+
+#: frappe/desk/doctype/event/event.py:274
+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 "Пример: \"боје\": [\"#d1d8dd\", \"#ff5858\"]"
+
+#. 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 "Пример: \"/desk\""
+
+#. 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 "Пример: 00001"
+
+#. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType
+#. 'System Settings'
+#: frappe/core/doctype/system_settings/system_settings.json
+msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours."
+msgstr "Пример: Уколико је ово подешено на 24:00, корисник ће аутоматски бити ођављен уколико не буде активан током 24:00 часова."
+
+#. Description of the 'Description' (Small Text) field in DocType 'Assignment
+#. Rule'
+#: frappe/automation/doctype/assignment_rule/assignment_rule.json
+msgid "Example: {{ subject }}"
+msgstr "Пример: {{ subject }}"
+
+#. Option for the 'File Type' (Select) field in DocType 'Data Export'
+#: frappe/core/doctype/data_export/data_export.json
+msgid "Excel"
+msgstr "Excel"
+
+#: 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:125
+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:2071
+msgid "Execution Time: {0} sec"
+msgstr "Време извршавања: {0} секунди"
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Executive"
+msgstr "Executive"
+
+#. 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:2052
+#: frappe/public/js/frappe/views/treeview.js:133
+msgid "Expand All"
+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'
+#: frappe/core/doctype/communication/communication.json
+msgid "Expired"
+msgstr "Истекло"
+
+#. Label of the expires_in (Int) field in DocType 'OAuth Bearer Token'
+#. Label of the expires_in (Int) field in DocType 'Token Cache'
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+msgid "Expires In"
+msgstr "Истиче у"
+
+#. Label of the expires_on (Date) field in DocType 'Document Share Key'
+#: frappe/core/doctype/document_share_key/document_share_key.json
+msgid "Expires On"
+msgstr "Истиче на"
+
+#. 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 "Време истека страница са QR кодом"
+
+#. 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:1759
+#: frappe/public/js/frappe/views/reports/report_view.js:1627
+#: frappe/public/js/frappe/widgets/chart_widget.js:315
+msgid "Export"
+msgstr "Извоз"
+
+#: frappe/public/js/frappe/list/list_view.js:2135
+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 "Извези 1 запис"
+
+#: 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:235
+msgctxt "Export report"
+msgid "Export Report: {0}"
+msgstr "Извоз извештаја: {0}"
+
+#: frappe/public/js/frappe/data_import/data_exporter.js:26
+msgid "Export Type"
+msgstr "Врста извоза"
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1638
+msgid "Export all matching rows?"
+msgstr "Извоз свих редова који се подударају?"
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1648
+msgid "Export all {0} rows?"
+msgstr "Извоз свих {0} редова?"
+
+#: frappe/public/js/frappe/views/file/file_view.js:154
+msgid "Export as zip"
+msgstr "Извоз као зип"
+
+#: frappe/public/js/frappe/utils/tools.js:11
+msgid "Export not allowed. You need {0} role to export."
+msgstr "Извоз није дозвољен. Неопходна је улога {0} за извоз."
+
+#. Description of the 'Export without main header' (Check) field in DocType
+#. 'Data Export'
+#: frappe/core/doctype/data_export/data_export.json
+msgid "Export the data without any header notes and column descriptions"
+msgstr "Извоз података без напомена у заглављу и опису колона"
+
+#. 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 "Извоз {0} записа"
+
+#: frappe/custom/doctype/customize_form/customize_form.js:263
+msgid "Exported permissions will be force-synced on every migrate overriding any other customization."
+msgstr "Извезене дозволе ће бити присилно синхронизоване при свакој миграцији, поништавајући сва друга прилагођавања."
+
+#. 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 "Facebook"
+
+#. 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 "Неуспешне пријаве (последњих 30 дана)"
+
+#: frappe/model/workflow.py:306
+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:137
+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:698
+msgid "Failed to decode token, please provide a valid base64-encoded token."
+msgstr "Неуспешно декодирање токена, молимо Вас да пружите валидан басе64-енкодирани токен."
+
+#: frappe/utils/password.py:211
+msgid "Failed to decrypt key {0}"
+msgstr "Неуспешно дешифровање кључа {0}"
+
+#: frappe/desk/reportview.py:600
+msgid "Failed to delete {0} documents: {1}"
+msgstr "Неуспешно брисање {0} докумената: {1}"
+
+#: frappe/core/doctype/rq_job/rq_job_list.js:33
+msgid "Failed to enable scheduler: {0}"
+msgstr "Неуспешно омогућавање планера: {0}"
+
+#: frappe/email/doctype/notification/notification.py:99
+#: frappe/integrations/doctype/webhook/webhook.py:127
+msgid "Failed to evaluate conditions: {}"
+msgstr "Неуспешна евалуација услова: {}"
+
+#: frappe/types/exporter.py:205
+msgid "Failed to export python type hints"
+msgstr "Неуспешан извоз пyтхон ознака типова"
+
+#: 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:75
+msgid "Failed to get method for command {0} with {1}"
+msgstr "Неуспешно добити методу за команду {0} са {1}"
+
+#: frappe/api/v2.py:46
+msgid "Failed to get method {0} with {1}"
+msgstr "Неуспешно добити методу {0} са {1}"
+
+#: 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 "Неуспешан покушај увоза виртуелног doctype {}, да ли је фајл контролера присутан?"
+
+#: frappe/utils/image.py:75
+msgid "Failed to optimize image: {0}"
+msgstr "Неуспешно оптимизовање слике: {0}"
+
+#: frappe/email/doctype/notification/notification.py:116
+msgid "Failed to render message: {}"
+msgstr "Неуспешно рендеровање поруке: {0}"
+
+#: frappe/email/doctype/notification/notification.py:134
+msgid "Failed to render subject: {}"
+msgstr "Није могуће приказати наслов: {0}"
+
+#: frappe/integrations/frappe_providers/frappecloud_billing.py:94
+msgid "Failed to request login to Frappe Cloud"
+msgstr "Неуспешан покушај пријаве на Frappe Cloud"
+
+#: 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 "Неуспех приликом позивања API-ја {0}"
+
+#. Label of the failing_scheduled_jobs (Table) field in DocType 'System Health
+#. Report'
+#: frappe/desk/doctype/system_health_report/system_health_report.json
+msgid "Failing Scheduled Jobs (last 7 days)"
+msgstr "Неуспешни заказани задаци (последњих 7 дана)"
+
+#: 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 "FavIcon"
+
+#. Label of the fax (Data) field in DocType 'Address'
+#: frappe/contacts/doctype/address/address.json
+msgid "Fax"
+msgstr "Факс"
+
+#. Label of the featured (Check) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19
+msgid "Featured"
+msgstr "Истакнуто"
+
+#: 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:235
+#: frappe/public/js/frappe/views/reports/query_report.js:1818
+#: 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:417
+msgid "Field \"route\" is mandatory for Web Views"
+msgstr "Поље \"путања\" је обавезно за веб-приказе"
+
+#: frappe/core/doctype/doctype/doctype.py:1526
+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:1077
+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:201
+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 "Врста поља не може бити промењена за {0}"
+
+#: frappe/database/database.py:892
+msgid "Field {0} does not exist on {1}"
+msgstr "Поље {0} не постоји у {1}"
+
+#: frappe/desk/form/meta.py:184
+msgid "Field {0} is referring to non-existing doctype {1}."
+msgstr "Поље {0} се односи на непостојећи доцтyпе {1}."
+
+#: frappe/public/js/frappe/form/form.js:1754
+msgid "Field {0} not found."
+msgstr "Поље {0} није пронађено."
+
+#: frappe/email/doctype/notification/notification.py:503
+msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link"
+msgstr "Поље {0} у документу {1} није ни поље за мобилни број, ни линк за купца или корисника"
+
+#. Label of the fieldname (Data) field in DocType 'Report Column'
+#. Label of the fieldname (Data) field in DocType 'Report Filter'
+#. Label of the fieldname (Data) field in DocType 'Custom Field'
+#. Label of the fieldname (Select) field in DocType 'DocType Layout Field'
+#. Label of the fieldname (Select) field in DocType 'Form Tour Step'
+#. Label of the fieldname (Select) field in DocType 'Webhook Data'
+#. Label of the fieldname (Data) field in DocType 'Web Template Field'
+#: frappe/core/doctype/report_column/report_column.json
+#: frappe/core/doctype/report_filter/report_filter.json
+#: frappe/custom/doctype/custom_field/custom_field.js:120
+#: frappe/custom/doctype/custom_field/custom_field.json
+#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+#: frappe/integrations/doctype/webhook_data/webhook_data.json
+#: frappe/public/js/frappe/form/grid_row.js:438
+#: frappe/website/doctype/web_template_field/web_template_field.json
+msgid "Fieldname"
+msgstr "Назив поља"
+
+#: frappe/core/doctype/doctype/doctype.py:270
+msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}"
+msgstr "Назив поља '{0}' је у конфликту са {1} називом {2} у {3}"
+
+#: frappe/core/doctype/doctype/doctype.py:1076
+msgid "Fieldname called {0} must exist to enable autonaming"
+msgstr "Назив поља {0} мора постојати да би се омогућило аутоматско именовање"
+
+#: frappe/database/schema.py:127 frappe/database/schema.py:363
+msgid "Fieldname is limited to 64 characters ({0})"
+msgstr "Назив поља је ограничен на 64 карактера ({0})"
+
+#: 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 "Назив поља које ће бити DocType за ово линк поље."
+
+#: frappe/public/js/form_builder/store.js:175
+msgid "Fieldname {0} appears multiple times"
+msgstr "Назив поља {0} се појављује више пута"
+
+#: frappe/database/schema.py:353
+msgid "Fieldname {0} cannot have special characters like {1}"
+msgstr "Назив поља {0} не може садржати специјалне карактере попут {1}"
+
+#: frappe/core/doctype/doctype/doctype.py:1907
+msgid "Fieldname {0} conflicting with meta object"
+msgstr "Назив поље {0} је у конфликту са мета објектом"
+
+#: frappe/core/doctype/doctype/doctype.py:496
+#: frappe/public/js/form_builder/utils.js:302
+msgid "Fieldname {0} is restricted"
+msgstr "Назив поља {0} је ограничен"
+
+#. Label of the fields (Table) field in DocType 'DocType'
+#. Label of the fields_section (Section Break) field in DocType 'DocType'
+#. Label of the fields_tab (Tab Break) field in DocType 'DocType'
+#. Label of the fields_section_break (Section Break) field in DocType
+#. 'Customize Form'
+#. Label of the fields (Table) field in DocType 'Customize Form'
+#. Label of the fields (Table) field in DocType 'DocType Layout'
+#. Label of the fields (Code) field in DocType 'Kanban Board'
+#. Label of the fields_html (HTML) field in DocType 'List View Settings'
+#. Label of the fields (Code) field in DocType 'List View Settings'
+#. Label of the fields (Small Text) field in DocType 'Personal Data Deletion
+#. Step'
+#. Label of the fields (Table) field in DocType 'Web Template'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+#: frappe/custom/doctype/doctype_layout/doctype_layout.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+#: frappe/public/js/frappe/list/list_settings.js:135
+#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111
+#: frappe/public/js/print_format_builder/PrintFormatControls.vue:83
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+#: frappe/website/doctype/web_template/web_template.json
+msgid "Fields"
+msgstr "Поља"
+
+#. 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:410
+msgid "Fields `file_name` or `file_url` must be set for File"
+msgstr "Поља `file_name` или `file_url` морају бити постављена за фајл"
+
+#: frappe/model/db_query.py:146
+msgid "Fields must be a list or tuple when as_list is enabled"
+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 "Врста поља не може бити промењена са {0} на {1}"
+
+#: frappe/custom/doctype/customize_form/customize_form.py:588
+msgid "Fieldtype cannot be changed from {0} to {1} in row {2}"
+msgstr "Врста поља не може бити промењена са {0} на {1} у реду {2}"
+
+#. 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:478
+msgid "File \"{0}\" was skipped because of invalid file type"
+msgstr "Фајл \"{0}\" је прескочен због неважеће врсте фајла"
+
+#: frappe/core/doctype/file/utils.py:128
+msgid "File '{0}' not found"
+msgstr "Фајл '{0}' није пронађен"
+
+#. 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 "URL фајла"
+
+#: frappe/desk/page/backups/backups.py:107
+msgid "File backup is ready"
+msgstr "Резервна копија фајла је спремна"
+
+#: frappe/core/doctype/file/file.py:624
+msgid "File name cannot have {0}"
+msgstr "Назив фајле не може садржати {0}"
+
+#: frappe/utils/csvutils.py:28
+msgid "File not attached"
+msgstr "Фајл није приложен"
+
+#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200
+#: frappe/utils/file_manager.py:221
+msgid "File size exceeded the maximum allowed size of {0} MB"
+msgstr "Величина фајла је премашила маскималну дозвољену величину од {0} MB"
+
+#: frappe/public/js/frappe/request.js:198
+msgid "File too big"
+msgstr "Фајл је превелики"
+
+#: frappe/core/doctype/file/file.py:375
+msgid "File type of {0} is not allowed"
+msgstr "Врста фајла {0} није дозвољена"
+
+#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426
+msgid "File {0} does not exist"
+msgstr "Фајл {0} не постоји"
+
+#. 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:205
+#: frappe/desk/doctype/number_card/number_card.js:336
+#: frappe/email/doctype/auto_email_report/auto_email_report.js:93
+#: frappe/public/js/frappe/list/base_list.js:953
+#: frappe/public/js/frappe/ui/filters/filter_list.js:134
+#: frappe/website/doctype/web_form/web_form.js:197
+msgid "Filter"
+msgstr "Филтер"
+
+#: 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/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/blog_post/blog_post.py:268
+#: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45
+msgid "Filtered by \"{0}\""
+msgstr "Филтрирани по \"{0}\""
+
+#. Label of the filters (Code) field in DocType 'Access Log'
+#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report'
+#. Label of the filters (Small Text) field in DocType 'Prepared Report'
+#. Label of the filters_section (Section Break) field in DocType 'Report'
+#. Label of the filters (Table) field in DocType 'Report'
+#. Label of the filters_section (Section Break) field in DocType 'Dashboard
+#. Chart'
+#. Label of the filters (Code) field in DocType 'Kanban Board'
+#. Label of the filters (Long Text) field in DocType 'List Filter'
+#. Label of the filters (Text) field in DocType 'Auto Email Report'
+#. Label of the filters (Section Break) field in DocType 'Notification'
+#: frappe/core/doctype/access_log/access_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/report/report.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/kanban_board/kanban_board.json
+#: frappe/desk/doctype/list_filter/list_filter.json
+#: frappe/email/doctype/auto_email_report/auto_email_report.json
+#: frappe/email/doctype/notification/notification.json
+msgid "Filters"
+msgstr "Филтери"
+
+#. 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_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 "JSON филтера"
+
+#. 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:510
+msgid "Filters applied for {0}"
+msgstr "Филтери примењени за {0}"
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:188
+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 "Филтери ће бити доступни путем филтера.
Пошаљи излаз као result = [result], или за историјски стил data = [columns], [result]"
+
+#: frappe/public/js/frappe/ui/filters/filter_list.js:133
+msgid "Filters {0}"
+msgstr "Филтери {0}"
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1427
+msgid "Filters:"
+msgstr "Филтери:"
+
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572
+msgid "Find '{0}' in ..."
+msgstr "Пронађи '{0}' у ..."
+
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329
+#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144
+msgid "Find {0} in {1}"
+msgstr "Пронађи {0} у {1}"
+
+#. 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'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/user/user.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/report/transaction_log_report/transaction_log_report.py:49
+msgid "First Transaction"
+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:1450
+msgid "Fold can not be at the end of the form"
+msgstr "Склапање не може бити на крају обрасца"
+
+#: frappe/core/doctype/doctype/doctype.py:1448
+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:472
+msgid "Folder {0} is not empty"
+msgstr "Датотека {0} није празна"
+
+#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Folio"
+msgstr "Фолио"
+
+#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
+#: frappe/public/js/frappe/form/toolbar.js:876
+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:130
+msgid "Following Report Filters have missing values:"
+msgstr "Следећи филтери извештаја имају недостајуће вредности:"
+
+#: frappe/desk/form/document_follow.py:63
+msgid "Following document {0}"
+msgstr "Следећи документ {0}"
+
+#: 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 "Следећа поља имају недостајуће вредности:"
+
+#: frappe/email/doctype/newsletter/newsletter.js:30
+msgid "Following links are broken in the email content: {0}"
+msgstr "Следећи линкови су покидани у садржају имејла: {0}"
+
+#. Label of the font (Select) field in DocType 'Print Settings'
+#: frappe/printing/doctype/print_settings/print_settings.json
+msgid "Font"
+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 "HTML подножја"
+
+#: frappe/printing/doctype/letter_head/letter_head.py:75
+msgid "Footer HTML set from attachment {0}"
+msgstr "HTML подножја постављен из прилога {0}"
+
+#. Label of the footer_image_section (Section Break) field in DocType 'Letter
+#. Head'
+#: frappe/printing/doctype/letter_head/letter_head.json
+msgid "Footer Image"
+msgstr "Слика подножја"
+
+#. 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:116
+msgid "Footer might not be visible as {0} option is disabled
"
+msgstr "Подножје можда неће бити видљиво јер је опција {0} онемогућена /project/<name>"
+msgstr "Мапирај параметре путање у променљиве обрасца. Пример /project/<name>"
+
+#: frappe/core/doctype/data_import/importer.py:924
+msgid "Mapping column {0} to field {1}"
+msgstr "Мапирање колоне {0} у поље {1}"
+
+#. 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 "MariaDB променљиве"
+
+#: 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 'Content Type' (Select) field in DocType 'Newsletter'
+#. Option for the 'Message Type' (Select) field in DocType 'Notification'
+#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
+#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:92
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Markdown"
+msgstr "Markdown"
+
+#. 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 "Уређивач Markdown"
+
+#. 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 "Максимално 500 записа истовремено"
+
+#. 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 "Максимална величина фајла (MB)"
+
+#. 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 "Максималан број аутоматских извештаја по кориснику"
+
+#: frappe/core/doctype/doctype/doctype.py:1342
+msgid "Max width for type Currency is 100px in row {0}"
+msgstr "Максимална ширина за врсту валуте је 100 пиксела у реду {0}"
+
+#. 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:320
+msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
+msgstr "Достигнут је максимални број прилога од {0} за {1} {2}."
+
+#. Label of the total_fields (Select) field in DocType 'List View Settings'
+#: frappe/desk/doctype/list_view_settings/list_view_settings.json
+msgid "Maximum Number of Fields"
+msgstr "Максималан број поља"
+
+#: frappe/public/js/frappe/form/sidebar/attachments.js:38
+msgid "Maximum attachment limit of {0} has been reached."
+msgstr "Достигнут је максимални број прилога од {0}."
+
+#: frappe/model/rename_doc.py:690
+msgid "Maximum {0} rows allowed"
+msgstr "Дозвољено је највише {0} редова"
+
+#: 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:1734
+#: 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:196
+#: 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 "Искоришћеност меморије у MB"
+
+#. 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:307
+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 (Text Editor) field in DocType 'Newsletter'
+#. Label of the message_sb (Section Break) field in DocType 'Notification'
+#. Label of the message (Code) field in DocType 'Notification'
+#. Label of the message (Text) field in DocType 'Workflow Document State'
+#: 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/newsletter/newsletter.json
+#: frappe/email/doctype/notification/notification.js:201
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/ui/messages.js:182
+#: frappe/public/js/frappe/views/communication.js:123
+#: 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_html (HTML Editor) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
+msgid "Message (HTML)"
+msgstr "Порука (HTML)"
+
+#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
+msgid "Message (Markdown)"
+msgstr "Порука (Markdown)"
+
+#. Label of the message_examples (HTML) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Message Examples"
+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:950
+msgid "Message clipped"
+msgstr "Порука је скраћена"
+
+#: frappe/email/doctype/email_account/email_account.py:344
+msgid "Message from server: {0}"
+msgstr "Порука са сервера: {0}"
+
+#: 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 "Мета"
+
+#. Label of the meta_description (Small Text) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:124
+msgid "Meta Description"
+msgstr "Мета опис"
+
+#. Label of the meta_image (Attach Image) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:131
+msgid "Meta Image"
+msgstr "Мета слика"
+
+#. Label of the meta_tags (Section Break) field in DocType 'Blog Post'
+#. Label of the metatags_section (Section Break) field in DocType 'Web Page'
+#. Label of the meta_tags (Table) field in DocType 'Website Route Meta'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.json
+#: frappe/website/doctype/website_route_meta/website_route_meta.json
+msgid "Meta Tags"
+msgstr "Мета ознаке"
+
+#. Label of the meta_title (Data) field in DocType 'Blog Post'
+#: frappe/website/doctype/blog_post/blog_post.json
+#: frappe/website/doctype/web_page/web_page.js:117
+msgid "Meta Title"
+msgstr "Мета наслов"
+
+#. 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 "Мета наслов за SEO"
+
+#. 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:679
+msgid "Method Not Allowed"
+msgstr "Метода није дозвољена"
+
+#: frappe/desk/doctype/number_card/number_card.py:73
+msgid "Method is required to create a number card"
+msgstr "Метода је неопходна да би се креирала бројчана картица"
+
+#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
+#: 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 "Средње име"
+
+#. 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 "Мањи"
+
+#. 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 "Недостајући DocType"
+
+#: frappe/core/doctype/doctype/doctype.py:1526
+msgid "Missing Field"
+msgstr "Недостајуће поље"
+
+#: frappe/public/js/frappe/form/save.js:131
+msgid "Missing Fields"
+msgstr "Недостајућа поља"
+
+#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
+msgid "Missing Filters Required"
+msgstr "Недостајући обавезни филтери"
+
+#: frappe/desk/form/assign_to.py:110
+msgid "Missing Permission"
+msgstr "Недостајуће дозволе"
+
+#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
+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 the modal_trigger (Check) field in DocType 'Form Tour Step'
+#: frappe/desk/doctype/form_tour_step/form_tour_step.json
+msgid "Modal Trigger"
+msgstr "Покретач модалног прозора"
+
+#: frappe/core/report/transaction_log_report/transaction_log_report.py:106
+msgid "Modified By"
+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:30
+#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json
+#: frappe/core/doctype/user_type_module/user_type_module.json
+#: frappe/desk/doctype/dashboard/dashboard.json
+#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
+#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
+#: frappe/desk/doctype/form_tour/form_tour.json
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/desk/doctype/number_card/number_card.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/email/doctype/notification/notification.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/public/js/frappe/utils/utils.js:926
+#: 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 "HTML модула"
+
+#. Label of the module_name (Data) field in DocType 'Module Def'
+#. Label of the module_name (Data) field in DocType 'Desktop Icon'
+#: frappe/core/doctype/module_def/module_def.json
+#: frappe/desk/doctype/desktop_icon/desktop_icon.json
+msgid "Module Name"
+msgstr "Назив модула"
+
+#. 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 "HTML модули"
+
+#. 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 "Monospace"
+
+#: 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'
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/user/user.json
+msgid "More Information"
+msgstr "Више информација"
+
+#: 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 "Више чланака о {0}"
+
+#. Description of the 'Footer' (Text Editor) field in DocType 'About Us
+#. Settings'
+#: frappe/website/doctype/about_us_settings/about_us_settings.json
+msgid "More content for the bottom of the page."
+msgstr "Додатни садржај за дно странице."
+
+#: frappe/public/js/frappe/ui/sort_selector.js:193
+msgid "Most Used"
+msgstr "Највише коришћено"
+
+#: frappe/utils/password.py:76
+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:193
+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:168
+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 "Mozilla не подржава :has(), стога можете користити матични селектор као решење"
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:43
+msgid "Mr"
+msgstr "Господин"
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:47
+msgid "Mrs"
+msgstr "Госпођа"
+
+#: frappe/desk/page/setup_wizard/install_fixtures.py:44
+msgid "Ms"
+msgstr "Госпођица"
+
+#: frappe/utils/nestedset.py:331
+msgid "Multiple root nodes not allowed."
+msgstr "Више коренских чворова није дозвољено."
+
+#. 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 "Мора бити URL Google Sheets -а који је јавно доступан"
+
+#. 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 "Мора бити затворен у '()' и укључивати '{0}', који је резервисани текст за корисничко/улоговано име, нпр. (&(objectclass=user)(uid={0}))"
+
+#. Description of the 'Image Field' (Data) field in DocType 'DocType'
+#. Description of the 'Image Field' (Data) field in DocType 'Customize Form'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/custom/doctype/customize_form/customize_form.json
+msgid "Must be of type \"Attach Image\""
+msgstr "Мора бити врсте \"Приложи слику\""
+
+#: frappe/desk/query_report.py:208
+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 "Mx"
+
+#: frappe/templates/includes/web_sidebar.html:41
+#: frappe/website/doctype/web_form/web_form.py:459
+#: frappe/website/doctype/website_settings/website_settings.py:181
+#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
+msgid "My Account"
+msgstr "Мој налог"
+
+#: 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 "MyISAM"
+
+#: frappe/workflow/doctype/workflow/workflow.js:19
+msgid "NOTE: If you add states or transitions in the table, it will be reflected in the Workflow Builder but you will have to position them manually. Also Workflow Builder is currently in BETA."
+msgstr "НАПОМЕНА: Уколико додате стања или транзиције у табели, оне ће бити приказане у уређивачу радног тока, али ћете морати ручно да их поставите. Такође, уређивач радног тока је тренутно у БЕТА фази."
+
+#. 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 "НАПОМЕНА: Овај оквир ће бити уклоњен. Молимо Вас да поново поставите LDAP да бисте радили на новим подешавањима"
+
+#. Label of the fieldname (Data) field in DocType 'DocField'
+#. Label of the fieldname (Data) field in DocType 'Customize Form Field'
+#. Label of the label (Data) field in DocType 'Workspace'
+#. Label of the webhook_name (Data) field in DocType 'Slack Webhook URL'
+#: frappe/core/doctype/docfield/docfield.json
+#: frappe/core/doctype/doctype/doctype_list.js:22
+#: frappe/custom/doctype/customize_form_field/customize_form_field.json
+#: frappe/desk/doctype/workspace/workspace.json
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
+#: frappe/public/js/frappe/form/layout.js:77
+#: frappe/public/js/frappe/form/multi_select_dialog.js:240
+#: frappe/public/js/frappe/form/save.js:107
+#: frappe/public/js/frappe/views/file/file_view.js:97
+#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
+msgid "Name"
+msgstr "Назив"
+
+#: frappe/integrations/doctype/webhook/webhook.js:29
+msgid "Name (Doc Name)"
+msgstr "Назив (Документа)"
+
+#: frappe/desk/utils.py:22
+msgid "Name already taken, please set a new name"
+msgstr "Назив је већ заузет, молимо Вас да поставите нови назив"
+
+#: frappe/model/naming.py:504
+msgid "Name cannot contain special characters like {0}"
+msgstr "Назив не може садржати специјалне карактере као што је {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 "Назив врсте документа (DocType) са којим желите да буде повезано ово поље, нпр. купац"
+
+#: frappe/printing/page/print_format_builder/print_format_builder.js:117
+msgid "Name of the new Print Format"
+msgstr "Назив новог формата за штампање"
+
+#: frappe/model/naming.py:499
+msgid "Name of {0} cannot be {1}"
+msgstr "Назив {0} не може бити {1}"
+
+#: 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"
+"Reference: {{ reference_doctype }} {{ reference_name }} to send document reference"
+msgstr "Савет: Додаје Reference: {{ reference_doctype }} {{ reference_name }} да пошаљете референцу документа"
+
+#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22
+msgid "Proceed"
+msgstr "Настави"
+
+#: frappe/public/js/frappe/views/reports/query_report.js:930
+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 "Профил"
+
+#: frappe/public/js/frappe/socketio_client.js:82
+msgid "Progress"
+msgstr "Напредак"
+
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+msgid "Project"
+msgstr "Пројекат"
+
+#. Label of the property (Data) field in DocType 'Property Setter'
+#: frappe/core/doctype/version/version_view.html:12
+#: frappe/core/doctype/version/version_view.html:37
+#: frappe/core/doctype/version/version_view.html:74
+#: frappe/custom/doctype/property_setter/property_setter.json
+msgid "Property"
+msgstr "Својство"
+
+#. 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 "Поставка својства поништава стандардно својство DocType-а или поља"
+
+#. 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:501
+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: \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 "Овде поставите филтере. На пример:\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"
+""
+
+#. 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 "Постави путању до дозвољених функција које ће вратити податке за бројчану картицу у следећем формату:\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"
+"}"
+
+#: 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:313
+#: 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 "Подешавање за страницу о нама"
+
+#. Description of a DocType
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Settings to control blog categories and interactions like comments and likes"
+msgstr "Подешавања за управљање категоријама блога и интеракцијама као што су коментари и лајкови"
+
+#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
+#: frappe/core/doctype/doctype/doctype.json
+#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567
+msgid "Setup"
+msgstr "Поставке"
+
+#: 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:1765
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
+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 "Подели {0} са"
+
+#. 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 "Подељено са следећим корисницима са правом приступа за читање: {0}"
+
+#. 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 "Продавница"
+
+#. Label of the short_name (Data) field in DocType 'Blogger'
+#: frappe/website/doctype/blogger/blogger.json
+msgid "Short Name"
+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
+msgid "Show"
+msgstr "Прикажи"
+
+#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings'
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Show \"Call to Action\" in Blog"
+msgstr "Прикажи \"Позив на радњу\" у блогу"
+
+#. Label of 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 "Прикажи све"
+
+#: 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 "Прикажи грешку"
+
+#: frappe/public/js/frappe/form/layout.js:579
+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:407
+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 "Прикажи листу процеса"
+
+#: 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 "Прикажи бочну траку"
+
+#: frappe/public/js/frappe/list/list_sidebar.html:77
+#: frappe/public/js/frappe/list/list_view.js:1704
+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:1527
+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 "Прикажи след грешке"
+
+#: 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 "Прикажи све активности"
+
+#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24
+msgid "Show all blogs"
+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 "Прикажи као cc"
+
+#. 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_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:273
+#: frappe/public/js/frappe/form/layout.js:291
+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 "Прикажи листу {0}"
+
+#: frappe/public/js/frappe/views/reports/report_view.js:501
+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 "Приказано само први {0} редова од укупно {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 "Бочна трака"
+
+#. 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:1018
+msgid "Sign Up is disabled"
+msgstr "Регистрација је онемогућена"
+
+#: frappe/templates/signup.html:16 frappe/www/login.html:140
+#: frappe/www/login.html:156 frappe/www/update-password.html:58
+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 '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тхон израз, пример: статус ин (\"Неважеће\")"
+
+#. 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'"
+
+#. 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:125
+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
+msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
+msgstr "Јединствене врсте имају само један запис, без повезаних табела. Вредности се чувају у табели tabSingles"
+
+#: frappe/database/database.py:284
+msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
+msgstr "Страница је у режиму искључиво за читање због одржавања или ажурирања странице, ова радња се тренутно не може извршити. Молимо Вас да покушате поново касније."
+
+#: frappe/public/js/frappe/views/file/file_view.js:337
+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 "Величина (MB)"
+
+#: 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'
+#: frappe/integrations/doctype/oauth_client/oauth_client.json
+#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_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 "Прескакање дуплираних колона {0}"
+
+#: 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 "Прескакање колоне {0}"
+
+#: frappe/modules/utils.py:176
+msgid "Skipping fixture syncing for doctype {0} from file {1}"
+msgstr "Прескакање синхронизације података за доцтyпе {0} из фајла {1}"
+
+#: frappe/core/doctype/data_import/data_import.js:39
+msgid "Skipping {0} of {1}, {2}"
+msgstr "Прескакање {0} од {1}, {2}"
+
+#. Label of the skype (Data) field in DocType 'Contact Us Settings'
+#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
+msgid "Skype"
+msgstr "Skype"
+
+#. Option for the 'Channel' (Select) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Slack"
+msgstr "Slack"
+
+#. Label of the slack_webhook_url (Link) field in DocType 'Notification'
+#: frappe/email/doctype/notification/notification.json
+msgid "Slack Channel"
+msgstr "Slack канал"
+
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65
+msgid "Slack Webhook Error"
+msgstr "Slack Webhook грешка"
+
+#. 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 "Slack Webhook URL"
+
+#. Label of the slideshow (Link) field in DocType 'Web Page'
+#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Slideshow"
+msgstr "Презентација"
+
+#. 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 "Slug"
+
+#. 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 "Најмања фракција валуте (новчић) у циркулацији. На пример 1 цент за USD треба бити унет као 0.01"
+
+#: frappe/printing/doctype/letter_head/letter_head.js:32
+msgid "Snippet and more variables: {0}"
+msgstr "Делимични приказ и више варијабли: {0}"
+
+#. 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 "SocketIO пинг провера"
+
+#. 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 "SocketIO транспортни режим"
+
+#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
+#: frappe/core/doctype/communication/communication.json
+msgid "Soft-Bounced"
+msgstr "Привремено неуспешно"
+
+#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
+msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
+msgstr "Неке колоне могу бити исечене приликом штампања у PDF формату. Покушајте да број колона буде мањи од 10."
+
+#. 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 "Неки директоријуми захтевају другачији назив за датотеку послато, нпр. \"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 "Неке функције можда неће радити у Вашем интернет претраживачу. Молимо Вас да ажурирате интернет претраживач на најновију верзију."
+
+#: 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 "Дошло је до грешке приликом генерисања токена. Кликните на {0} да бисте генерисали нови."
+
+#: frappe/templates/includes/login/login.js:293
+msgid "Something went wrong."
+msgstr "Дошло је до грешке."
+
+#: frappe/public/js/frappe/views/pageview.js:114
+msgid "Sorry! I could not find what you were looking for."
+msgstr "Опростите! Нисам могао да пронађем оно што сте тражили."
+
+#: frappe/public/js/frappe/views/pageview.js:122
+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:1550
+msgid "Sort field {0} must be a valid fieldname"
+msgstr "Поље за сортирање {0} мора бити важећи назив поља"
+
+#. Label of the source (Data) field in DocType 'Web Page View'
+#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
+#: frappe/public/js/frappe/ui/toolbar/about.js:8
+#: frappe/public/js/frappe/utils/utils.js:1717
+#: frappe/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 "Извор"
+
+#. 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 "SparkPost"
+
+#: 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 "Специјални карактери осим '-', '#', '.', '/', '{{' i '}}' нису дозвољени у серији именовања {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 "Одредите прилагођени временско ограничење, подразумевано временско ограничење је 1500 секунди"
+
+#. Description of the 'Allowed embedding domains' (Small Text) field in DocType
+#. 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin."
+msgstr "Одредите домене или порекла која имају дозволу да буду уграђена у овај образац. Унесите један домен по линији (нпр. https://example.com). Уколико нису наведени сви домени, образац може бити уграђен само у оквиру истог порекла."
+
+#. Label of the splash_image (Attach Image) field in DocType 'Website Settings'
+#: frappe/website/doctype/website_settings/website_settings.json
+msgid "Splash Image"
+msgstr "Спласх слика"
+
+#: frappe/desk/reportview.py:419
+#: frappe/public/js/frappe/web_form/web_form_list.js:175
+#: frappe/templates/print_formats/standard_macros.html:44
+msgid "Sr"
+msgstr "Ср"
+
+#: 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 "Stack Trace"
+
+#. 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:78
+msgid "Standard DocType can not be deleted."
+msgstr "Стандардни DocType не може бити обрисан."
+
+#: frappe/core/doctype/doctype/doctype.py:228
+msgid "Standard DocType cannot have default print format, use Customize Form"
+msgstr "Стандардни DocType не може имати подразумевани формат штампе, користите поље прилагоди образац"
+
+#: 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:75
+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:354
+msgid "Standard Reports cannot be deleted"
+msgstr "Стандардни извештаји не могу бити обрисани"
+
+#: frappe/desk/reportview.py:325
+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 "Стандардна врста корисника {0} не може бити обрисана."
+
+#: frappe/core/doctype/recorder/recorder_list.js:87
+#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
+#: frappe/printing/page/print/print.js:296
+#: frappe/printing/page/print/print.js:343
+msgid "Start"
+msgstr "Почетак"
+
+#. Label of the start_date (Date) field in DocType 'Auto Repeat'
+#. Label of the start_date (Date) field in DocType 'Audit Trail'
+#. Label of the start_date (Datetime) field in DocType 'Web Page'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142
+#: frappe/core/doctype/audit_trail/audit_trail.json
+#: frappe/public/js/frappe/utils/common.js:409
+#: frappe/website/doctype/web_page/web_page.json
+msgid "Start Date"
+msgstr "Датум почетка"
+
+#. 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 "Покрени TLS"
+
+#. 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 "Покретање Frappe ..."
+
+#. 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/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:24
+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 '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_section (Section Break) field in DocType 'Newsletter'
+#. Label of the status (Select) field in DocType 'Integration Request'
+#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
+#. Label of the status (Select) field in DocType 'Personal Data Deletion
+#. Request'
+#. Label of the status (Select) field in DocType 'Personal Data Deletion Step'
+#. Label of the status (Select) field in DocType 'Workflow Action'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/contacts/doctype/contact/contact.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: frappe/core/doctype/communication/communication.json
+#: frappe/core/doctype/data_import/data_import.js:483
+#: frappe/core/doctype/data_import/data_import.json
+#: frappe/core/doctype/permission_log/permission_log.json
+#: frappe/core/doctype/prepared_report/prepared_report.json
+#: frappe/core/doctype/rq_job/rq_job.json
+#: frappe/core/doctype/rq_worker/rq_worker.json
+#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
+#: frappe/core/doctype/submission_queue/submission_queue.json
+#: frappe/desk/doctype/event/event.json
+#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
+#: frappe/desk/doctype/todo/todo.json
+#: frappe/email/doctype/email_queue/email_queue.json
+#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
+#: frappe/email/doctype/newsletter/newsletter.json
+#: frappe/integrations/doctype/integration_request/integration_request.json
+#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
+#: frappe/public/js/frappe/list/list_settings.js:359
+#: frappe/public/js/frappe/views/reports/report_view.js:975
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
+#: frappe/workflow/doctype/workflow_action/workflow_action.json
+msgid "Status"
+msgstr "Статус"
+
+#: frappe/www/update-password.html:163
+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 "Статус: {0}"
+
+#. Label of the step (Link) field in DocType 'Onboarding Step Map'
+#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json
+msgid "Step"
+msgstr "Корак"
+
+#. 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:438
+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 "Искоришћеност простора (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 "Искоришћеност простора по табелама"
+
+#. 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 "Спреми приложени PDF документ"
+
+#. 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 "Чува JSON последњих познатих верзија различитих инсталираних апликација. Користи се за приказивање напомена о верзијама."
+
+#. 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 "Уклони EXIF ознаке са отпремљених слика"
+
+#: 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 "Stylesheet"
+
+#. 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 "Поддомен који обезбеђује erpnext.com"
+
+#. 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 (Small Text) field in DocType 'Newsletter'
+#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
+#. Label of the subject (Data) field in DocType 'Notification'
+#: frappe/automation/doctype/auto_repeat/auto_repeat.json
+#: frappe/core/doctype/activity_log/activity_log.json
+#: 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/newsletter/newsletter.json
+#: frappe/email/doctype/notification/notification.js:200
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/views/communication.js:116
+#: frappe/public/js/frappe/views/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:1935
+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'
+#: frappe/core/doctype/custom_docperm/custom_docperm.json
+#: frappe/core/doctype/docperm/docperm.json
+#: frappe/core/doctype/docshare/docshare.json
+#: frappe/core/doctype/user_document_type/user_document_type.json
+#: frappe/core/doctype/user_permission/user_permission_list.js:138
+#: frappe/email/doctype/notification/notification.json
+#: frappe/public/js/frappe/form/quick_entry.js:225
+#: frappe/public/js/frappe/ui/capture.js:307
+msgid "Submit"
+msgstr "Поднеси"
+
+#: frappe/public/js/frappe/list/list_view.js:2086
+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:62
+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:156
+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:128
+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:2091
+msgctxt "Title of confirmation dialog"
+msgid "Submit {0} documents?"
+msgstr "Поднеси {0} докумената?"
+
+#. 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:136
+msgid "Submitted"
+msgstr "Поднето"
+
+#: frappe/workflow/doctype/workflow/workflow.py:103
+msgid "Submitted Document cannot be converted back to draft. Transition row {0}"
+msgstr "Поднети документ се не може вратити у нацрт. Ред транзиције {0}"
+
+#: frappe/public/js/workflow_builder/utils.js:176
+msgid "Submitted document cannot be converted back to draft while transitioning from {0} State to {1} State"
+msgstr "Поднети документ се не може вратити у нацрт приликом транзиције из {0} стања у {1} стање"
+
+#: 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 "Подношење {0}"
+
+#. 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'
+#. Label of the subtitle (Data) field in DocType 'Blog Settings'
+#: frappe/desk/doctype/module_onboarding/module_onboarding.json
+#: frappe/website/doctype/blog_settings/blog_settings.json
+msgid "Subtitle"
+msgstr "Поднаслов"
+
+#. 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:1170
+#: frappe/public/js/frappe/views/translation_manager.js:21
+#: frappe/templates/includes/login/login.js:230
+#: frappe/templates/includes/login/login.js:236
+#: frappe/templates/includes/login/login.js:269
+#: frappe/templates/includes/login/login.js:277
+#: frappe/templates/pages/integrations/gcalendar-success.html:9
+#: frappe/workflow/doctype/workflow_action/workflow_action.py:171
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+msgid "Success"
+msgstr "Успех"
+
+#. 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 "URI након успеха"
+
+#. Label of the success_url (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Success URL"
+msgstr "URL након успеха"
+
+#. Label of the success_message (Text) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Success message"
+msgstr "Порука о успеху"
+
+#. Label of the success_title (Data) field in DocType 'Web Form'
+#: frappe/website/doctype/web_form/web_form.json
+msgid "Success title"
+msgstr "Наслов успеха"
+
+#: frappe/www/update-password.html:81
+msgid "Success! You are good to go 👍"
+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:307
+msgid "Successful Transactions"
+msgstr "Успешне трансакције"
+
+#: frappe/model/rename_doc.py:699
+msgid "Successful: {0} to {1}"
+msgstr "Успешно: {0} до {1}"
+
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100
+#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113
+msgid "Successfully Updated"
+msgstr "Успешно ажурирано"
+
+#: frappe/core/doctype/data_import/data_import.js:423
+msgid "Successfully imported {0}"
+msgstr "Успешно увезено {0}"
+
+#: frappe/core/doctype/data_import/data_import.js:144
+msgid "Successfully imported {0} out of {1} records."
+msgstr "Успешно увезено {0} од {1} записа."
+
+#: 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 "Успешно ажурирано {0}"
+
+#: frappe/core/doctype/data_import/data_import.js:149
+msgid "Successfully updated {0} out of {1} records."
+msgstr "Успешно ажурирано {0} од {1} записа."
+
+#: 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:722
+msgid "Suggested Username: {0}"
+msgstr "Предложено корисничко име: {0}"
+
+#. 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:337
+msgid "Sum of {0}"
+msgstr "Збир за {0}"
+
+#: 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 CRM за паметнију продају"
+
+#: 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 "Синхронизуј догађаје из Google-а као јавне"
+
+#: 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 "Синхронизуј са Google Calendar-ом"
+
+#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact'
+#: frappe/contacts/doctype/contact/contact.json
+msgid "Sync with Google Contacts"
+msgstr "Синхронизуј са Google Contacts"
+
+#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46
+msgid "Sync {0} Fields"
+msgstr "Синхронизуј {0} поља"
+
+#: 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 "Синхронизовање {0} од {1}"
+
+#: frappe/utils/data.py:2494
+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_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/push_notification_settings/push_notification_settings.json
+#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
+#: frappe/integrations/doctype/social_login_key/social_login_key.json
+#: frappe/integrations/doctype/token_cache/token_cache.json
+#: frappe/integrations/doctype/webhook/webhook.json
+#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
+#: frappe/printing/doctype/letter_head/letter_head.json
+#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
+#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
+#: frappe/printing/doctype/print_heading/print_heading.json
+#: frappe/printing/doctype/print_settings/print_settings.json
+#: frappe/printing/doctype/print_style/print_style.json
+#: frappe/website/doctype/discussion_reply/discussion_reply.json
+#: frappe/website/doctype/discussion_topic/discussion_topic.json
+#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
+#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
+#: frappe/website/doctype/utm_campaign/utm_campaign.json
+#: frappe/website/doctype/utm_medium/utm_medium.json
+#: frappe/website/doctype/utm_source/utm_source.json
+#: frappe/website/doctype/web_page_view/web_page_view.json
+#: frappe/website/doctype/web_template/web_template.json
+#: frappe/website/doctype/website_route_meta/website_route_meta.json
+#: frappe/workflow/doctype/workflow/workflow.json
+#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
+#: frappe/workflow/doctype/workflow_state/workflow_state.json
+msgid "System Manager"
+msgstr "Систем менаџер"
+
+#: 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 "Т"
+
+#. 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:72
+msgid "Table Field"
+msgstr "Поље табеле"
+
+#. Label of the table_fieldname (Data) field in DocType 'DocType Link'
+#: frappe/core/doctype/doctype_link/doctype_link.json
+msgid "Table Fieldname"
+msgstr "Назив поља табеле"
+
+#: frappe/core/doctype/doctype/doctype.py:1203
+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 "HTML табеле"
+
+#. 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:1169
+msgid "Table updated"
+msgstr "Табела ажурирана"
+
+#: frappe/model/document.py:1564
+msgid "Table {0} cannot be empty"
+msgstr "Табела {0} не може бити празна"
+
+#. 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 "Циљ"
+
+#: frappe/desk/doctype/todo/todo_calendar.js:19
+#: frappe/desk/doctype/todo/todo_calendar.js:25
+msgid "Task"
+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:1029
+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/email/doctype/newsletter/newsletter.py:92
+msgid "Test email sent to {0}"
+msgstr "Тестни имејл послат на {0}"
+
+#: frappe/core/doctype/file/test_file.py:379
+msgid "Test_Folder"
+msgstr "ТестДатотека"
+
+#. 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 "Хвала Вам што сте нас контактирали. Јавићемо Вам се у најкраћем могућем року.\n\n\n"
+"Ваше питање:\n\n"
+"{0}"
+
+#: frappe/website/doctype/web_form/templates/web_form.html:140
+msgid "Thank you for spending your valuable time to fill this form"
+msgstr "Хвала Вам што сте издвојили своје драгоцене време да попуните овај образац"
+
+#: 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/email/doctype/newsletter/newsletter.py:332
+msgid "Thank you for your interest in subscribing to our updates"
+msgstr "Хвала Вам на интересовању за пријаву на наша обавештења"
+
+#: frappe/templates/includes/contact.js:36
+msgid "Thank you for your message"
+msgstr "Хвала Вам на поруци"
+
+#: 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:1192
+msgid "The CSV format is case sensitive"
+msgstr "CSV формат разликује велика и мала слова"
+
+#. 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 "ИД клијента добијен путем Google Cloud конзоле у одељку \n"
+"\"APIs & Services\" > \"Credentials\"\n"
+""
+
+#: frappe/email/doctype/notification/notification.py:201
+msgid "The Condition '{0}' is invalid"
+msgstr "Услов '{0}' је неважећи"
+
+#: frappe/core/doctype/file/file.py:208
+msgid "The File URL you've entered is incorrect"
+msgstr "Унета URL адреса фајла није исправна"
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108
+msgid "The Next Scheduled Date cannot be later than the End Date."
+msgstr "Следећи планирани датум не може бити после датума завршетка."
+
+#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:29
+msgid "The Push Relay Server URL key (`push_relay_server_url`) is missing in your site config"
+msgstr "Кључ URL адресе Push Relay сервера (`push_relay_server_url`) недостаје у конфигурацији сајта"
+
+#: 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 "API кључ за интернет претраживач добијен путем Google Cloud конзоле, у одељку \n"
+"\"APIs & Services\" > \"Credentials\"\n"
+""
+
+#: frappe/database/database.py:475
+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 "Колона {0} садржи {1} различитих формата датума. Аутоматски се поставља {2} као подразумевани формат јер је најчешћи. Молимо Вас да промените остале вредности у овој колони у овај формат."
+
+#: frappe/templates/includes/comments/comments.py:34
+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:658
+msgid "The count shown is an estimated count. Click here to see the accurate count."
+msgstr "Приказан број процена. Кликните овде да видите тачан број."
+
+#. Description of the 'Code' (Data) field in DocType 'Country'
+#: frappe/geo/doctype/country/country.json
+msgid "The country's ISO 3166 ALPHA-2 code."
+msgstr "ISO 3166 ALPHA-2 шифра државе."
+
+#: 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 "Документ је додељен кориснику {0}"
+
+#. 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 "Поље {0} је обавезно"
+
+#: frappe/core/doctype/file/file.py:145
+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 "Следећи дани за задатак су поновљени: {0}"
+
+#: frappe/printing/doctype/letter_head/letter_head.js:30
+msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'"
+msgstr "Следећа скрипта заглавља ће додати тренутни датум у елемент класе 'хеадер-цонтент' у 'HTML заглавље'"
+
+#: frappe/core/doctype/data_import/importer.py:1086
+msgid "The following values are invalid: {0}. Values must be one of {1}"
+msgstr "Следеће вредности нису важеће: {0}. Дозвољене вредности су: {1}"
+
+#: frappe/core/doctype/data_import/importer.py:1043
+msgid "The following values do not exist for {0}: {1}"
+msgstr "Следеће вредности не постоје за: {0}: {1}"
+
+#: frappe/core/doctype/user_type/user_type.py:89
+msgid "The limit has not set for the user type {0} in the site config file."
+msgstr "Ограничење није постављено за врсту корисника {0} у конфигурационом фајлу сајта."
+
+#: frappe/templates/emails/login_with_email_link.html:21
+msgid "The link will expire in {0} minutes"
+msgstr "Линк истиче за {0} минута"
+
+#: 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 "Мета опис је HTML атрибут који даје кратак сажетак веб-странице. Интернет претраживачи попут Google-а често приказују мета опис у резултатима претраге, што може утицати на број кликова."
+
+#: frappe/website/doctype/web_page/web_page.js:132
+msgid "The meta image is unique image representing the content of the page. Images for this Card should be at least 280px in width, and at least 150px in height."
+msgstr "Мета слика је јединствена слика која представља садржај странице. Слике за ову картицу треба да буду најмање 280 пиксела широке и најмање 150 пиксела високе."
+
+#. 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 "Назив који ће се појавити у Google Calendar-у"
+
+#. 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:88
+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 "Покренут је процес брисања података {0} повезаних са {1}."
+
+#. 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 "Број пројекта добијен путем Google Cloud конзоле, у одељку \n"
+"\"IAM & Admin\" > \"Settings\"\n"
+""
+
+#: frappe/core/doctype/user/user.py:989
+msgid "The reset password link has been expired"
+msgstr "Линк за ресетовање лозинке је истекао"
+
+#: frappe/core/doctype/user/user.py:991
+msgid "The reset password link has either been used before or is invalid"
+msgstr "Линк за ресетовање лозинке је већ коришћен или је неважећи"
+
+#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+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 "Улога {0} треба да буде прилагођена улога."
+
+#: frappe/core/doctype/audit_trail/audit_trail.py:46
+msgid "The selected document {0} is not a {1}."
+msgstr "Изабрани документ {0} није {1}."
+
+#: frappe/utils/response.py:331
+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 "Унета вредност има {0} карактера. Максималан дозвољени број карактера је {1}."
+
+#. Description of the 'Condition' (Small Text) field in DocType 'Webhook'
+#: frappe/integrations/doctype/webhook/webhook.json
+msgid "The webhook will be triggered if this expression is true"
+msgstr "Webhook ће бити активиран уколико је овај израз тачан"
+
+#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175
+msgid "The {0} is already on auto repeat {1}"
+msgstr "{0} је већ постављен на аутоматско понављање {1}"
+
+#. 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 "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 "Постоје документи са стањима у радном току која не постоје у тренутном радном току. Препорука је да их прво додате у радни ток, а затим измените њихова стања пре него што их уклоните."
+
+#: 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 "Нема {0} за овај {1}, зашто не бисте започели један!"
+
+#: frappe/public/js/frappe/views/reports/query_report.js:963
+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
+msgid "There can be only 9 Page Break fields in a Web Form"
+msgstr "У веб-обрасцу може бити највише 9 поља за прелом странице"
+
+#: frappe/core/doctype/doctype/doctype.py:1443
+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 "Дошло је до грешке у шаблону адресе {0}"
+
+#: frappe/core/doctype/data_export/exporter.py:162
+msgid "There is no data to be exported"
+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:618 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:960
+msgid "There is {0} with the same filters already in the queue:"
+msgstr "Већ постоји {0} са истим филтерима у реду чекања:"
+
+#: 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:182
+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:837
+msgid "There were errors while sending email. Please try again."
+msgstr "Дошло је до грешке приликом слања имејла. Молимо Вас да покушате поново."
+
+#: frappe/model/naming.py:494
+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 '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 "Ова подешавања су обавезна уколико се користи 'Прилагођени' LDAP директоријум"
+
+#. Description of the 'Defaults' (Section Break) field in DocType 'User'
+#: frappe/core/doctype/user/user.json
+msgid "These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values."
+msgstr "Ове вредности ће се аутоматски ажурирати у трансакцијама и биће корисне за ограничавање дозвола за овог корисника у трансакцијама које их садрже."
+
+#: 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:390
+msgid "This Kanban Board will be private"
+msgstr "Ова Канбан табла ће бити приватна"
+
+#: frappe/public/js/frappe/ui/filters/filter.js:666
+msgid "This Month"
+msgstr "Овај месец"
+
+#: frappe/public/js/frappe/ui/filters/filter.js:670
+msgid "This Quarter"
+msgstr "Овај квартал"
+
+#: frappe/public/js/frappe/ui/filters/filter.js:662
+msgid "This Week"
+msgstr "Ове недеље"
+
+#: frappe/public/js/frappe/ui/filters/filter.js:674
+msgid "This Year"
+msgstr "Ове године"
+
+#: frappe/custom/doctype/customize_form/customize_form.js:220
+msgid "This action is irreversible. Do you wish to continue?"
+msgstr "Ова радња је неповратна. Да ли желите да наставите?"
+
+#: frappe/__init__.py:757
+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 "Ово се не може опозвати"
+
+#. 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 "Овај доцтyпе нема неповезаних поља која треба уклонити"
+
+#: frappe/core/doctype/doctype/doctype.py:1054
+msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
+msgstr "Овај доцтyпе има неизвршене миграције, покрените 'bench migrate' пре измене како бисте избегли губитак измена."
+
+#: frappe/model/delete_doc.py:112
+msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
+msgstr "Овај документ се не може тренутно обрисати јер га други корисник уређује. Покушајте поново касније."
+
+#: 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. New {{ doc.doctype }} #{{ doc.name }}New {{ doc.doctype }} #{{ doc.name }}{{ doc.name }} Delivered{{ doc.name }} Delivered{ \"id\": \"{{ doc.name }}\" }\n"
+"\n"
+"{ \"id\": \"{{ doc.name }}\" }\n"
+"\n"
+"print(text)"
+msgstr "За штампање излаза користите print(text)"
+
+#: frappe/core/doctype/user_type/user_type.py:291
+msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record."
+msgstr "Да бисте доделили улогу {0} кориснику {1}, подесите поље {2} као {3} у једном од врсте записа {4}."
+
+#: frappe/integrations/doctype/google_calendar/google_calendar.js:8
+msgid "To use Google Calendar, enable {0}."
+msgstr "За коришћење Google Calendar-а, омогућите {0}."
+
+#: frappe/integrations/doctype/google_contacts/google_contacts.js:8
+msgid "To use Google Contacts, enable {0}."
+msgstr "За коришћење Google Contacts, омогућите {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 "За коришћење Google Indexing, омогућите Google подешавања."
+
+#. 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 "За коришћење Slack Channel, додајте Slack Webhook URL."
+
+#: 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:1570
+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:1574
+msgid "Toggle Sidebar"
+msgstr "Пребаци бочну траку"
+
+#: frappe/public/js/frappe/list/list_view.js:1819
+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_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 "URI токена"
+
+#: 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:254
+msgid "Too Many Documents"
+msgstr "Превише докумената"
+
+#: frappe/rate_limiter.py:101
+msgid "Too Many Requests"
+msgstr "Превише захтева"
+
+#: frappe/database/database.py:474
+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 "Превише задатака у позадини у реду чекања ({0}). Молимо Вас да покушате поново касније."
+
+#: frappe/core/doctype/user/user.py:1030
+msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
+msgstr "Превише корисника се регистровало у последње време, стога је регистрација привремено онемогућена. Покушајте поново за сат времена"
+
+#. 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 "Најбољих 10"
+
+#. 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:533
+#: frappe/public/js/frappe/views/reports/print_grid.html:45
+#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/report_view.js:1551
+msgid "Total"
+msgstr "Укупно"
+
+#. 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 "Укупан број грешака (последњих 1 дан)"
+
+#: 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_recipients (Int) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
+msgid "Total Recipients"
+msgstr "Укупно примаоца"
+
+#. Label of the total_subscribers (Int) field in DocType 'Email Group'
+#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
+#. Email Group'
+#: frappe/email/doctype/email_group/email_group.json
+#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
+msgid "Total Subscribers"
+msgstr "Укупно претплатника"
+
+#. 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_views (Int) field in DocType 'Newsletter'
+#: frappe/email/doctype/newsletter/newsletter.json
+msgid "Total Views"
+msgstr "Укупно прегледа"
+
+#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
+#: frappe/core/doctype/rq_worker/rq_worker.json
+msgid "Total Working Time"
+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:1256
+msgid "Totals"
+msgstr "Укупно"
+
+#: frappe/public/js/frappe/views/reports/report_view.js:1231
+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"
+"filtera. Reference: {{ reference_doctype }} {{ reference_name
msgid "Proceed"
msgstr "Nastavi"
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
msgstr "Ipak nastavi"
@@ -20393,7 +20151,7 @@ msgstr "Upit mora biti vrste SELECT ili read-only."
msgid "Queue"
msgstr "Red"
-#: frappe/utils/background_jobs.py:729
+#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
msgstr "Red preopterećen"
@@ -20414,7 +20172,7 @@ msgstr "Vrste redova"
msgid "Queue in Background (BETA)"
msgstr "Red u pozadini (BETA)"
-#: frappe/utils/background_jobs.py:554
+#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
msgstr "Red treba da bude jedan od {0}"
@@ -20447,12 +20205,6 @@ msgstr "Stavljeno u red od strane"
msgid "Queued for Submission. You can track the progress over {0}."
msgstr "U redu za podnošenje. Možete pratiti napredak preko {0}."
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:65
-#: frappe/integrations/doctype/google_drive/google_drive.py:153
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:86
-msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr "U redu za rezervnu kopiju. Može potrajati od nekoliko minuta do sat vremena."
-
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
msgstr "U redu za rezervnu kopiju. Dobićete imejl sa linkom za preuzimanje"
@@ -20588,7 +20340,7 @@ msgstr "Podešavanja neobrađene štampe"
msgid "Re-Run in Console"
msgstr "Ponovo pokreni u konzoli"
-#: frappe/email/doctype/email_account/email_account.py:728
+#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
msgstr "Re:"
@@ -20690,7 +20442,7 @@ msgstr "U realnom vremenu (SocketIO)"
msgid "Reason"
msgstr "Razlog"
-#: frappe/public/js/frappe/views/reports/query_report.js:889
+#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
msgstr "Obnovi"
@@ -21055,11 +20807,11 @@ msgid "Referrer"
msgstr "Izvor pristupa"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:548
+#: frappe/public/js/frappe/desk.js:556
#: 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:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1719
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21078,12 +20830,10 @@ msgstr "Osveži Google Sheet"
#. 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 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
@@ -21100,7 +20850,7 @@ msgstr "Osvežavanje"
msgid "Refreshing..."
msgstr "Osvežavanje..."
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
msgstr "Registrovano, ali onemogućeno"
@@ -21263,7 +21013,7 @@ msgstr "Uklonjeno"
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
#: frappe/public/js/frappe/form/toolbar.js:432
-#: frappe/public/js/frappe/model/model.js:772
+#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
msgstr "Preimenuj"
@@ -21273,7 +21023,7 @@ msgstr "Preimenuj"
msgid "Rename Fieldname"
msgstr "Preimenuj naziv polja"
-#: frappe/public/js/frappe/model/model.js:759
+#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
msgstr "Preimenuj {0}"
@@ -21337,7 +21087,7 @@ msgstr "Ponavljanja kao \"aaa\" se lako naslućuju"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "Ponavljanja kao \"abcabcabc\" su samo malo teža za naslutiti od \"abc\""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:146
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
msgstr "Ponovljeno {0}"
@@ -21475,7 +21225,7 @@ msgstr "Menadžer izveštavanja"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1902
+#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
msgstr "Naziv izveštaja"
@@ -21488,13 +21238,13 @@ msgstr "Naziv izveštaja, polje izveštaja i funkcija su neophodni za kreiranje
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Report Ref DocType"
-msgstr "Referentni DocType izveštaja"
+msgstr "Referentni DocType izveštaj"
#. 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 "Referentni DocType izveštaja"
+msgstr "Referentni DocType izveštaj"
#. Label of the report_type (Select) field in DocType 'Report'
#. Label of the report_type (Data) field in DocType 'Onboarding Step'
@@ -21527,7 +21277,7 @@ msgstr "Izveštaj nema podataka, molimo Vas da izmenite filtere ili promenite na
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Izveštaj nema numeričkih polja, molimo Vas da promenite naziv izveštaja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1009
+#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
msgstr "Izveštaj je pokrenut, kliknite da biste pogledali status"
@@ -21543,11 +21293,11 @@ msgstr "Izveštaj je istekao."
msgid "Report updated successfully"
msgstr "Izveštaj je uspešno ažuriran"
-#: frappe/public/js/frappe/views/reports/report_view.js:1351
+#: frappe/public/js/frappe/views/reports/report_view.js:1357
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:1940
+#: frappe/public/js/frappe/views/reports/query_report.js:1942
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."
@@ -21583,7 +21333,7 @@ msgstr "Izveštaji"
msgid "Reports & Masters"
msgstr "Izveštaji i master podaci"
-#: frappe/public/js/frappe/views/reports/query_report.js:925
+#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
msgstr "Izveštaji su već u redu"
@@ -21610,7 +21360,7 @@ msgstr "Podaci zahteva"
#. Request'
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Request Description"
-msgstr "Opsi zahteva"
+msgstr "Opis zahteva"
#. Label of the request_headers (Code) field in DocType 'Recorder'
#. Label of the request_headers (Code) field in DocType 'Integration Request'
@@ -22033,7 +21783,7 @@ msgstr "Replikacija uloga"
msgid "Role and Level"
msgstr "Uloga i nivo"
-#: frappe/core/doctype/user/user.py:363
+#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
msgstr "Uloga je postavljena prema vrsti korisnika {0}"
@@ -22075,13 +21825,13 @@ msgstr "Dodeljene uloge"
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
msgid "Roles HTML"
-msgstr "HTML uloga"
+msgstr "HTML uloge"
#. 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 "HTML uloga"
+msgstr "HTML uloge"
#: frappe/core/page/permission_manager/permission_manager_help.html:7
msgid "Roles can be set for users from their User page."
@@ -22148,7 +21898,7 @@ msgstr "Preusmeravanje putanje"
msgid "Route: Example \"/app\""
msgstr "Putanja: Primer \"/app\""
-#: frappe/model/base_document.py:855 frappe/model/document.py:778
+#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
msgstr "Red"
@@ -22161,7 +21911,7 @@ msgstr "Red #"
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:977
+#: frappe/model/base_document.py:982
msgid "Row #{0}:"
msgstr "Red #{0}:"
@@ -22226,7 +21976,7 @@ msgstr "Redovi uklonjeni"
#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Rows Threshold for Grid Search"
-msgstr ""
+msgstr "Prag redova za pretragu u tabeli"
#. Label of the rule (Select) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
@@ -22239,7 +21989,7 @@ msgstr "Pravilo"
msgid "Rule Conditions"
msgstr "Uslovi pravila"
-#: frappe/permissions.py:653
+#: frappe/permissions.py:662
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Pravilo za ovu vrstu doctype, uloga, nivo dozvole i ukoliko vlasnik već postoji."
@@ -22283,23 +22033,6 @@ msgstr "Vreme izvršavanja u minutima"
msgid "Runtime in Seconds"
msgstr "Vreme izvršavanja u sekundama"
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "S3 Backup Settings"
-msgstr "S3 podešavanje rezervne kopije"
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
-msgid "S3 Backup complete!"
-msgstr "S3 rezervna kopija završena!"
-
-#. Label of the s3_bucket_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Bucket Details"
-msgstr "Detalji S3 rezervoara"
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
@@ -22440,7 +22173,7 @@ msgstr "Subota"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/page/print/print.js:858
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/quick_entry.js:185
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
@@ -22450,8 +22183,8 @@ msgstr "Subota"
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
-#: frappe/public/js/frappe/views/reports/query_report.js:1894
-#: frappe/public/js/frappe/views/reports/report_view.js:1720
+#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
@@ -22468,8 +22201,8 @@ msgstr "Sačuvaj API tajnu: {0}"
msgid "Save Anyway"
msgstr "Ipak sačuvaj"
-#: frappe/public/js/frappe/views/reports/report_view.js:1382
-#: frappe/public/js/frappe/views/reports/report_view.js:1727
+#: frappe/public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
msgstr "Sačuvaj kao"
@@ -22477,7 +22210,7 @@ msgstr "Sačuvaj kao"
msgid "Save Customizations"
msgstr "Sačuvaj prilagođavanja"
-#: frappe/public/js/frappe/views/reports/query_report.js:1897
+#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
msgstr "Sačuvaj izveštaj"
@@ -22643,7 +22376,7 @@ msgstr "Planer je neaktivan"
msgid "Scheduler Status"
msgstr "Status planera"
-#: frappe/utils/scheduler.py:249
+#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr "Planer se ne može ponovo omogućiti dok je režim održavanja aktivan."
@@ -22869,7 +22602,7 @@ msgstr "Podešavanja bezbednosti"
msgid "See all Activity"
msgstr "Pogledaj sve aktivnosti"
-#: frappe/public/js/frappe/views/reports/query_report.js:858
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "See all past reports."
msgstr "Pogledaj sve prethodne izveštaje."
@@ -22949,7 +22682,7 @@ msgstr "Izaberi priloge"
msgid "Select Child Table"
msgstr "Izaberi zavisnu tabelu"
-#: frappe/public/js/frappe/views/reports/report_view.js:377
+#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
msgstr "Izaberi kolonu"
@@ -23266,31 +22999,11 @@ msgstr "Pošalji štampane priloge u PDF formatu (preporučeno)"
msgid "Send Email To Creator"
msgstr "Pošalji imejl autoru"
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Dropbox Settings'
-#. Label of the send_email_for_successful_backup (Check) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Email for Successful Backup"
-msgstr "Pošalji imejl o uspešnoj rezervnoj kopiji"
-
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Email for Successful backup"
-msgstr "Pošalji imejl o uspešnoj rezervnoj kopiji"
-
#. 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 "Pošalji mi kopiju izlaznih imejlova"
-#. Label of the email (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Notification To"
-msgstr "Pošalji obaveštenje ka"
-
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -23307,14 +23020,6 @@ msgstr "Pošalji obaveštenje za dokumenta koje pratim"
msgid "Send Notifications For Email Threads"
msgstr "Pošalji obaveštenje za imejl prepiske"
-#. Label of the send_notifications_to (Data) field in DocType 'Dropbox
-#. Settings'
-#. Label of the notify_email (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Notifications To"
-msgstr "Pošalji obaveštenje ka"
-
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
msgstr "Pošalji sada"
@@ -23573,7 +23278,7 @@ msgstr "Serija {0} je već iskorišćena u {1}"
msgid "Server Action"
msgstr "Serverska radnja"
-#: frappe/app.py:383 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Serverska greška"
@@ -23639,7 +23344,7 @@ msgstr "Podrazumevane vrednosti sesije"
msgid "Session Defaults Saved"
msgstr "Podrazumevane vrednosti sesije su sačuvane"
-#: frappe/app.py:360
+#: frappe/app.py:353
msgid "Session Expired"
msgstr "Sesija je istekla"
@@ -23648,7 +23353,7 @@ msgstr "Sesija je istekla"
msgid "Session Expiry (idle timeout)"
msgstr "Istek sesije (vreme neaktivnosti)"
-#: frappe/core/doctype/system_settings/system_settings.py:119
+#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
msgstr "Istek sesije mora biti u formatu {0}"
@@ -23671,7 +23376,7 @@ msgstr "Postavi"
msgid "Set Banner from Image"
msgstr "Postavi baner iz slike"
-#: frappe/public/js/frappe/views/reports/query_report.js:201
+#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
msgstr "Postavi grafikon"
@@ -23697,7 +23402,7 @@ msgstr "Postavi filtere"
msgid "Set Filters for {0}"
msgstr "Postavi filtere za {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
msgstr "Postavi nivo"
@@ -23939,8 +23644,8 @@ msgstr "Postavke > Korisnik"
msgid "Setup > User Permissions"
msgstr "Postavke > Korisničke dozvole"
-#: frappe/public/js/frappe/views/reports/query_report.js:1763
-#: frappe/public/js/frappe/views/reports/report_view.js:1698
+#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Postavke automatskog imejla"
@@ -24036,6 +23741,15 @@ msgstr "Prikaži"
msgid "Show \"Call to Action\" in Blog"
msgstr "Prikaži \"Poziv na radnju\" u blogu"
+#. 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 "Prikaži tačan datum i vreme u vremenskom redosledu"
+
#. Label of the absolute_value (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Absolute Values"
@@ -24102,7 +23816,7 @@ msgstr "Prikaži ceo obrazac?"
#. Label of the show_full_number (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Show Full Number"
-msgstr ""
+msgstr "Prikaži ceo broj"
#: frappe/public/js/frappe/ui/keyboard.js:234
msgid "Show Keyboard Shortcuts"
@@ -24206,7 +23920,7 @@ msgstr "Prikaži naslov"
msgid "Show Title in Link Fields"
msgstr "Prikaži naslov u poljima za link"
-#: frappe/public/js/frappe/views/reports/report_view.js:1521
+#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
msgstr "Prikaži ukupne vrednosti"
@@ -24316,7 +24030,7 @@ msgstr "Prikaži naslov u internet pretraživaču kao \"Prefiks - naslov\""
msgid "Show {0} List"
msgstr "Prikaži listu {0}"
-#: frappe/public/js/frappe/views/reports/report_view.js:495
+#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
msgstr "Prikaz samo numeričkih polja iz izveštaja"
@@ -24351,7 +24065,7 @@ msgstr "Bočna traka i komentari"
msgid "Sign Up and Confirmation"
msgstr "Registracija i potvrda"
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
msgstr "Registracija je onemogućena"
@@ -24996,7 +24710,7 @@ msgstr "Vremenski interval statistike"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
-#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: frappe/public/js/frappe/views/reports/report_view.js:975
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
@@ -25295,7 +25009,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:1166
+#: frappe/public/js/frappe/form/grid.js:1170
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25392,7 +25106,7 @@ msgstr "Predloži optimizacije"
msgid "Suggested Indexes"
msgstr "Predloži indekse"
-#: frappe/core/doctype/user/user.py:720
+#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
msgstr "Predloženo korisničko ime: {0}"
@@ -25682,11 +25396,9 @@ msgstr "Evidencije sistema"
#: frappe/geo/doctype/country/country.json
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/connected_app/connected_app.json
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.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_drive/google_drive.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
@@ -25695,7 +25407,6 @@ msgstr "Evidencije sistema"
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_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
@@ -25820,11 +25531,11 @@ msgstr "Višestruki odabir u tabeli"
msgid "Table Trimmed"
msgstr "Skraćena tabela"
-#: frappe/public/js/frappe/form/grid.js:1165
+#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
msgstr "Tabela ažurirana"
-#: frappe/model/document.py:1565
+#: frappe/model/document.py:1564
msgid "Table {0} cannot be empty"
msgstr "Tabela {0} ne može biti prazna"
@@ -25843,7 +25554,7 @@ msgstr "Oznaka"
msgid "Tag Link"
msgstr "Link oznake"
-#: frappe/model/meta.py:57
+#: 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
@@ -25855,15 +25566,6 @@ msgstr "Link oznake"
msgid "Tags"
msgstr "Oznake"
-#: frappe/integrations/doctype/google_drive/google_drive.js:29
-msgid "Take Backup"
-msgstr "Napravi rezervnu kopiju"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
-msgid "Take Backup Now"
-msgstr "Napravi rezervnu kopiju sada"
-
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
msgstr "Napravi fotografiju"
@@ -25941,12 +25643,12 @@ msgstr "Upozorenja u šablonu"
msgid "Templates"
msgstr "Šabloni"
-#: frappe/core/doctype/user/user.py:1027
+#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
msgstr "Privremeno onemogućeno"
-#: frappe/core/doctype/translation/test_translation.py:56
-#: frappe/core/doctype/translation/test_translation.py:63
+#: frappe/core/doctype/translation/test_translation.py:47
+#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
msgstr "Testni podaci"
@@ -25955,8 +25657,8 @@ msgstr "Testni podaci"
msgid "Test Job ID"
msgstr "ID testnog zadatka"
-#: frappe/core/doctype/translation/test_translation.py:58
-#: frappe/core/doctype/translation/test_translation.py:66
+#: frappe/core/doctype/translation/test_translation.py:49
+#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
msgstr "Testiraj španski"
@@ -25964,7 +25666,7 @@ msgstr "Testiraj španski"
msgid "Test email sent to {0}"
msgstr "Testni imejl poslat na {0}"
-#: frappe/core/doctype/file/test_file.py:388
+#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Test_Datoteka"
@@ -26047,7 +25749,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:1188
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
msgstr "CSV format razlikuje velika i mala slova"
@@ -26221,15 +25923,15 @@ msgstr "Broj projekta dobijen putem Google Cloud konzole, u odeljku "
-#: frappe/core/doctype/user/user.py:987
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
msgstr "Link za resetovanje lozinke je istekao"
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:991
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:375 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Resurs koji tražite nije dostupan"
@@ -26241,7 +25943,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:334
+#: frappe/utils/response.py:331
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."
@@ -26302,7 +26004,7 @@ msgstr "Nemate predstojećih događaja."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "Nema {0} za ovaj {1}, zašto ne biste započeli jedan!"
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "There are {0} with the same filters already in the queue:"
msgstr "Već postoji {0} sa istim filterima u redu čekanja:"
@@ -26331,7 +26033,7 @@ msgstr "Trenutno nema ničeg novog da se prikaže."
msgid "There is some problem with the file url: {0}"
msgstr "Došlo je do problema sa URL adresom fajla: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:958
+#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
msgstr "Već postoji {0} sa istim filterima u redu čekanja:"
@@ -26418,12 +26120,12 @@ msgstr "Ove godine"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Ova radnja je nepovratna. Da li želite da nastavite?"
-#: frappe/__init__.py:750
+#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
msgstr "Ova radnja je dozvoljena samo za {}"
#: frappe/public/js/frappe/form/toolbar.js:117
-#: frappe/public/js/frappe/model/model.js:755
+#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "Ovo se ne može opozvati"
@@ -26461,7 +26163,7 @@ msgstr "Ovaj dokument ima nesačuvane izmene koje možda neće biti prikazane u
msgid "This document is already amended, you cannot ammend it again"
msgstr "Ovaj dokument je već izmenjen i ne može ponovo biti izmenjen"
-#: frappe/model/document.py:474
+#: frappe/model/document.py:473
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr "Ovaj dokument je trenutno zaključan i čeka na izvršenje. Pokušajte ponovo kasnije."
@@ -26526,7 +26228,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:2132
+#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Ovo je izveštaj koji se generiše u pozadini. Postavite odgovarajuće filtere i zatim generišite novi izveštaj."
@@ -26590,7 +26292,7 @@ msgstr "Ovaj bilten je zakazan za slanje na {0}"
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
msgstr "Ovaj bilten je zakazan za slanje za kasniji datum. Da li ste sigurni da želite da ga pošaljete sada?"
-#: frappe/public/js/frappe/views/reports/query_report.js:1033
+#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Ovaj izveštaj sadrži {0} redova i preveliki je za prikaz u internet pretraživaču, umesto toga možete ga {1}."
@@ -26598,7 +26300,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:856
+#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
msgstr "Ovaj izveštaj je generisan {0}."
@@ -26630,7 +26332,7 @@ msgstr "Ova vrednost je preuzeta iz polja {1} objekta {0}"
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "This value specifies the max number of rows that can be rendered in report view. "
-msgstr ""
+msgstr "Ova vrednost određuje maksimalan broj redova koji se mogu prikazati u prikazu izveštaja. "
#: 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"
@@ -26664,7 +26366,7 @@ msgstr "Ovo će resetovati obilazak i prikazati je svim korisnicima. Da li ste s
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr "Ovo će trenutno prekinuti zadatak i može biti rizično, da li ste sigurni? "
-#: frappe/core/doctype/user/user.py:1240
+#: frappe/core/doctype/user/user.py:1242
msgid "Throttled"
msgstr "Zagušeno"
@@ -26853,7 +26555,7 @@ msgstr "Vremenski žig"
#: frappe/desk/doctype/system_console/system_console.js:41
msgid "Tip: Try the new dropdown console using"
-msgstr ""
+msgstr "Savet: Isprobajte novi padajući meni za konzolu pomoću"
#. Label of the title (Data) field in DocType 'DocType State'
#. Label of the method (Data) field in DocType 'Error Log'
@@ -27021,7 +26723,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:857
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "To get the updated report, click on {0}."
msgstr "Za ažurirani izveštaj kliknite na {0}."
@@ -27046,10 +26748,6 @@ msgstr "Za korišćenje Google Calendar-a, omogućite {0}."
msgid "To use Google Contacts, enable {0}."
msgstr "Za korišćenje Google Contacts, omogućite {0}."
-#: frappe/integrations/doctype/google_drive/google_drive.js:8
-msgid "To use Google Drive, enable {0}."
-msgstr "Za korišćenje Google Drive, omogućite {0}."
-
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -27080,7 +26778,7 @@ msgstr "Za uraditi"
msgid "Today"
msgstr "Danas"
-#: frappe/public/js/frappe/views/reports/report_view.js:1564
+#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
msgstr "Prebaci grafikon"
@@ -27096,7 +26794,7 @@ msgstr "Prebaci u prikaz mreže"
#: frappe/public/js/frappe/ui/page.js:201
#: frappe/public/js/frappe/ui/page.js:203
-#: frappe/public/js/frappe/views/reports/report_view.js:1568
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
msgstr "Prebaci bočnu traku"
@@ -27152,11 +26850,11 @@ msgstr "Previše zahteva"
msgid "Too many changes to database in single action."
msgstr "Previše promena baze podatka u jednoj radnji."
-#: frappe/utils/background_jobs.py:728
+#: frappe/utils/background_jobs.py:730
msgid "Too many queued background jobs ({0}). Please retry after some time."
msgstr "Previše zadataka u pozadini u redu čekanja ({0}). Molimo Vas da pokušate ponovo kasnije."
-#: frappe/core/doctype/user/user.py:1028
+#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "Previše korisnika se registrovalo u poslednje vreme, stoga je registracija privremeno onemogućena. Pokušajte ponovo za sat vremena"
@@ -27174,7 +26872,7 @@ msgstr "Gore"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13
msgid "Top 10"
-msgstr "Najbolji 10"
+msgstr "Najboljih 10"
#. Name of a DocType
#: frappe/website/doctype/top_bar_item/top_bar_item.json
@@ -27220,8 +26918,8 @@ msgstr "Tema"
#: frappe/desk/query_report.py:533
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1320
-#: frappe/public/js/frappe/views/reports/report_view.js:1545
+#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr "Ukupno"
@@ -27284,11 +26982,11 @@ msgstr "Ukupan broj imejl poruka za sinhronizaciju tokom početnog procesa "
msgid "Total:"
msgstr "Ukupno:"
-#: frappe/public/js/frappe/views/reports/report_view.js:1250
+#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
msgstr "Ukupno"
-#: frappe/public/js/frappe/views/reports/report_view.js:1225
+#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
msgstr "Ukupno redova"
@@ -27403,7 +27101,7 @@ msgstr "Tranizicija"
msgid "Translatable"
msgstr "Moguće prevođenje"
-#: frappe/public/js/frappe/views/reports/query_report.js:2188
+#: frappe/public/js/frappe/views/reports/query_report.js:2183
msgid "Translate Data"
msgstr "Prevedi podatke"
@@ -27414,7 +27112,7 @@ msgstr "Prevedi podatke"
msgid "Translate Link Fields"
msgstr "Prevedi polja sa linkovima"
-#: frappe/public/js/frappe/views/reports/report_view.js:1650
+#: frappe/public/js/frappe/views/reports/report_view.js:1656
msgid "Translate values"
msgstr "Prevedi vrednosti"
@@ -27562,7 +27260,7 @@ msgstr "Metod dvofaktorske autentifikacije"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/views/file/file_view.js:337
#: frappe/public/js/frappe/views/workspace/workspace.js:399
-#: frappe/public/js/frappe/widgets/widget_dialog.js:391
+#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
msgid "Type"
@@ -27643,7 +27341,7 @@ msgstr "URI adrese za primanje autorizacionog koda nakon što korisnik dozvoli p
#: 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:458
+#: 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"
@@ -27705,7 +27403,7 @@ msgstr "Nije moguće pronaći DocType {0}"
msgid "Unable to load camera."
msgstr "Nije moguće učitati kameru."
-#: frappe/public/js/frappe/model/model.js:268
+#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
msgstr "Nije moguće učitati: {0}"
@@ -27734,7 +27432,7 @@ msgstr "Nije moguće upisati format fajla za {0}"
msgid "Unassign Condition"
msgstr "Ukloni dodeljivanje uslova"
-#: frappe/app.py:383
+#: frappe/app.py:376
msgid "Uncaught Exception"
msgstr "Neuhvaćeni izuzetak"
@@ -27967,7 +27665,7 @@ msgstr "Ažurirano"
msgid "Updated Successfully"
msgstr "Uspešno ažurirano"
-#: frappe/public/js/frappe/desk.js:444
+#: frappe/public/js/frappe/desk.js:452
msgid "Updated To A New Version 🎉"
msgstr "Ažurirano na novu verziju 🎉"
@@ -27975,7 +27673,7 @@ msgstr "Ažurirano na novu verziju 🎉"
msgid "Updated successfully"
msgstr "Uspešno ažurirano"
-#: frappe/utils/response.py:333
+#: frappe/utils/response.py:330
msgid "Updating"
msgstr "Ažuriranje"
@@ -28049,18 +27747,6 @@ msgstr "Otpremljeno na Dropbox"
msgid "Uploaded To Google Drive"
msgstr "Otpremljeno na Google Drive"
-#: frappe/integrations/doctype/google_drive/google_drive.py:196
-msgid "Uploading backup to Google Drive."
-msgstr "Otpremanje rezervne kopije na Google Drive."
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:201
-msgid "Uploading successful."
-msgstr "Otpremanje je uspešno."
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:16
-msgid "Uploading to Google Drive"
-msgstr "Otpremanje na Google Drive"
-
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -28144,11 +27830,11 @@ 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:434
+#: frappe/model/db_query.py:435
msgid "Use of function {0} in field is restricted"
msgstr "Korišćenje funkcije {0} u polju je ograničeno"
-#: frappe/model/db_query.py:411
+#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
msgstr "Korišćenje podupita ili funkcije je ograničeno"
@@ -28265,7 +27951,7 @@ msgstr "Korisnik ne može da kreira"
msgid "User Cannot Search"
msgstr "Korisnik ne može da pretražuje"
-#: frappe/public/js/frappe/desk.js:546
+#: frappe/public/js/frappe/desk.js:554
msgid "User Changed"
msgstr "Korisnik promenjen"
@@ -28371,8 +28057,8 @@ 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:1881
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "Korisničke dozvole"
@@ -28469,7 +28155,7 @@ msgstr "Korisnik mora uvek da izabere"
msgid "User permission already exists"
msgstr "Korisnička dozvola već postoji"
-#: frappe/www/login.py:167
+#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
msgstr "Korisnik sa imejl adresom {0} ne postoji"
@@ -28477,23 +28163,23 @@ msgstr "Korisnik sa imejl adresom {0} ne postoji"
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr "Korisnik sa imejlom: {0} ne postoji u sistemu. Molimo Vas da kontaktirate 'Sistem administratora' da kreira korisnika za Vas."
-#: frappe/core/doctype/user/user.py:536
+#: frappe/core/doctype/user/user.py:537
msgid "User {0} cannot be deleted"
msgstr "Korisnik {0} ne može biti obrisan"
-#: frappe/core/doctype/user/user.py:326
+#: frappe/core/doctype/user/user.py:327
msgid "User {0} cannot be disabled"
msgstr "Korisnik {0} ne može biti onemogućen"
-#: frappe/core/doctype/user/user.py:602
+#: frappe/core/doctype/user/user.py:603
msgid "User {0} cannot be renamed"
msgstr "Korisnik {0} ne može biti preimenovan"
-#: frappe/permissions.py:138
+#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
msgstr "Korisnik {0} nema pristup ovom dokumentu"
-#: frappe/permissions.py:161
+#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr "Korisnik {0} nema pristup doctype putem dozvole uloge za dokument {1}"
@@ -28506,7 +28192,7 @@ msgstr "Korisnik {0} nema dozvolu da kreira radni prostor."
msgid "User {0} has requested for data deletion"
msgstr "Korisnik {0} je zatražio brisanje podataka"
-#: frappe/core/doctype/user/user.py:1369
+#: frappe/core/doctype/user/user.py:1371
msgid "User {0} impersonated as {1}"
msgstr "Korisnik {0} se predstavlja kao {1}"
@@ -28535,7 +28221,7 @@ msgstr "URI sa podacima o korisniku"
msgid "Username"
msgstr "Korisničko ime"
-#: frappe/core/doctype/user/user.py:687
+#: frappe/core/doctype/user/user.py:689
msgid "Username {0} already exists"
msgstr "Korisničko ime {0} već postoji"
@@ -28675,15 +28361,15 @@ msgstr "Vrednost promenjena"
msgid "Value To Be Set"
msgstr "Vrednost koju treba postaviti"
-#: frappe/model/base_document.py:1049 frappe/model/document.py:834
+#: frappe/model/base_document.py:1054 frappe/model/document.py:833
msgid "Value cannot be changed for {0}"
msgstr "Vrednost se ne može promeniti za {0}"
-#: frappe/model/document.py:780
+#: frappe/model/document.py:779
msgid "Value cannot be negative for"
msgstr "Vrednost ne može biti negativna za"
-#: frappe/model/document.py:784
+#: frappe/model/document.py:783
msgid "Value cannot be negative for {0}: {1}"
msgstr "Vrednost ne može biti negativna za {0}: {1}"
@@ -28714,7 +28400,7 @@ msgstr "Vrednost mora biti jedna od {0}"
msgid "Value to Validate"
msgstr "Vrednost za validaciju"
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1124
msgid "Value too big"
msgstr "Vrednost je prevelika"
@@ -29315,11 +29001,6 @@ msgstr "Radni dani"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -29328,9 +29009,6 @@ msgstr "Radni dani"
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:399
#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
@@ -29365,11 +29043,11 @@ msgstr "URL za dobrodošlicu"
msgid "Welcome Workspace"
msgstr "Dobro došli u radni prostor"
-#: frappe/core/doctype/user/user.py:414
+#: frappe/core/doctype/user/user.py:415
msgid "Welcome email sent"
msgstr "Imejl dobrodošlice je poslat"
-#: frappe/core/doctype/user/user.py:475
+#: frappe/core/doctype/user/user.py:476
msgid "Welcome to {0}"
msgstr "Dobro došli u {0}"
@@ -29402,7 +29080,7 @@ msgstr "Kada izmenite dokument nakon što je otkazan i sačuvan, dobiće novi br
#. 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:468
+#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
msgstr "Na koji prikaz povezane vrste DocType treba da vodi ova prečica?"
@@ -29601,7 +29279,7 @@ msgstr "Radni tok je uspešno ažuriran"
msgid "Workspace"
msgstr "Radni prostor"
-#: frappe/public/js/frappe/router.js:177
+#: frappe/public/js/frappe/router.js:173
msgid "Workspace {0} does not exist"
msgstr "Radni prostor {0} ne postoji"
@@ -29671,11 +29349,11 @@ msgstr "Radni prostor {0} je kreiran"
msgid "Workspaces"
msgstr "Radni prostori"
-#: frappe/public/js/frappe/form/footer/form_timeline.js:753
+#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
msgstr "Da li želite da objavite ovaj komentar? Ovo znači da će postati vidljiv korisnicima veb-sajta/portala."
-#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
msgstr "Da li želite da povučete ovaj komentar? Ovo znači da više neće biti vidljiv korisnicima veb-sajta/portala."
@@ -29694,11 +29372,11 @@ msgstr "Završavanje"
msgid "Write"
msgstr "Izmena"
-#: frappe/model/base_document.py:949
+#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
msgstr "Pogrešna vrednost u polju preuzmi iz"
-#: frappe/public/js/frappe/views/reports/report_view.js:484
+#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
msgstr "Polje X ose"
@@ -29717,13 +29395,13 @@ msgstr "XLSX"
msgid "Y Axis"
msgstr "Y osa"
-#: frappe/public/js/frappe/views/reports/report_view.js:491
+#: frappe/public/js/frappe/views/reports/report_view.js:497
msgid "Y Axis Fields"
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:1221
+#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
msgstr "Y polje"
@@ -29784,7 +29462,7 @@ msgstr "Žuta"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Da"
@@ -29824,11 +29502,11 @@ msgstr "Prijavljeni ste kao drugi korisnik."
msgid "You are not allowed to access this resource"
msgstr "Nemate dozvolu da pristupite ovom resursu"
-#: frappe/permissions.py:409
+#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "Nemate dozvolu da pristupite ovom zapisu {0} jer je povezan sa {1} '{2}' u polju {3}"
-#: frappe/permissions.py:398
+#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "Nemate dozvolu da pristupite ovom zapisu {0} jer je povezan sa {1} '{2}' u redu {3}, polje {4}"
@@ -29851,7 +29529,7 @@ msgstr "Nemate dozvolu da uređujete izveštaj."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:604
+#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
msgstr "Nemate dozvolu da izvezete doctype {}"
@@ -29863,7 +29541,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:569
+#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
msgstr "Nemate dozvolu da ažurirate ovaj dokument veb-obrasca"
@@ -29879,15 +29557,15 @@ msgstr "Nije Vam dozvoljeno da pristupite ovoj stranici bez prijavljivanja."
msgid "You are not permitted to access this page."
msgstr "Nemate dozvolu da pristupite ovoj stranici."
-#: frappe/__init__.py:669
+#: frappe/__init__.py:676
msgid "You are not permitted to access this resource. Login to access"
-msgstr ""
+msgstr "Nemate dozvolu za pristup ovom resursu. Prijavite se za pristup"
#: frappe/public/js/frappe/form/sidebar/document_follow.js:131
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr "Sada pratite ovaj dokument. Dobijaćete dnevna obaveštenja putem imejla. Možete ovo promeniti u podešavanjima korisnika."
-#: frappe/core/doctype/installed_applications/installed_applications.py:82
+#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
msgstr "Dozvoljeno Vam je da ažurirate redosled, nemojte uklanjati ili dodavati aplikacije."
@@ -30041,7 +29719,7 @@ msgstr "Kreirali ste ovo"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247
msgctxt "Form timeline"
msgid "You created this document {0}"
-msgstr ""
+msgstr "Vi ste kreirali ovaj dokument {0}"
#: frappe/client.py:417
msgid "You do not have Read or Select Permissions for {}"
@@ -30051,11 +29729,11 @@ msgstr "Nemate dozvolu za čitanje ili izbor za {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Nemate dovoljno dozvola za pristup ovom resursu. Obratite se svom menadžeru za pristup."
-#: frappe/app.py:368
+#: frappe/app.py:361
msgid "You do not have enough permissions to complete the action"
msgstr "Nemate dovoljno dozvola da dovršite ovu radnju"
-#: frappe/desk/query_report.py:838
+#: frappe/desk/query_report.py:831
msgid "You do not have permission to access {0}: {1}."
msgstr "Nemate dozvolu za pristup {0}: {1}."
@@ -30067,11 +29745,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:772
+#: frappe/website/doctype/web_form/web_form.py:769
msgid "You don't have permission to access the {0} DocType."
msgstr "Nemate dozvole za pristup DocType-u {0}."
-#: frappe/utils/response.py:286 frappe/utils/response.py:290
+#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
msgstr "Nemate dozvolu za pristup ovom fajlu"
@@ -30079,7 +29757,7 @@ msgstr "Nemate dozvolu za pristup ovom fajlu"
msgid "You don't have permission to get a report on: {0}"
msgstr "Nemate dozvolu da dobijate izveštaj za: {0}"
-#: frappe/website/doctype/web_form/web_form.py:175
+#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
msgstr "Nemate dozvolu za pristup ovom dokumentu"
@@ -30132,23 +29810,23 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr "Dostigli ste ograničenje broja zahteva zbog prevelikog broja zahteva. Molimo Vas pokušajte ponovo kasnije."
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
msgstr "Vi ste poslednji put ovo uredili"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:339
+#: frappe/public/js/frappe/widgets/widget_dialog.js:352
msgid "You must add atleast one link."
msgstr "Morate dodati barem jedan link."
-#: frappe/website/doctype/web_form/web_form.py:768
+#: frappe/website/doctype/web_form/web_form.py:765
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:609
+#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
msgstr "Morate biti prijavljeni da biste podneli ovaj obrazac"
-#: frappe/model/document.py:357
+#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr "Neophodna Vam je dozvola '{0}' na {1} {2} da biste izvršili ovu radnju."
@@ -30164,11 +29842,11 @@ msgstr "Morate biti menadžer radnog prostora da biste uredili ovaj dokument"
msgid "You need to be a system user to access this page."
msgstr "Morate biti sistemski korisnik da biste pristupili ovoj stranici."
-#: frappe/website/doctype/web_form/web_form.py:94
+#: frappe/website/doctype/web_form/web_form.py:91
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:275
+#: frappe/utils/response.py:272
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."
@@ -30176,7 +29854,7 @@ msgstr "Morate biti prijavljeni i imati ulogu sistem menadžera da biste pristup
msgid "You need to be logged in to access this page"
msgstr "Morate biti prijavljeni da biste pristupili ovoj stranici"
-#: frappe/website/doctype/web_form/web_form.py:164
+#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
msgstr "Morate biti prijavljeni da biste pristupili ovom {0}."
@@ -30251,13 +29929,13 @@ msgstr "Prestali ste da pratite ovaj dokument"
msgid "You viewed this"
msgstr "Pregledali ste ovo"
-#: frappe/public/js/frappe/desk.js:543
+#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr "Prijavljeni ste kao drugi korisnik na drugoj kartici. Osvežite ovu stranicu da biste nastavili rad u sistemu."
#: frappe/core/doctype/prepared_report/prepared_report.js:57
msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download."
-msgstr ""
+msgstr "Vaš CSV fajl se generiše i biće prikazan u sekciji prilozi kada bude spreman. Takođe, biće Vam poslato obaveštenje kada fajl bude dostupan za preuzimanje."
#: frappe/desk/page/setup_wizard/setup_wizard.js:397
msgid "Your Country"
@@ -30334,7 +30012,7 @@ msgstr "Naziv i adresa Vaše organizacije za podnožje imejla."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Vaš upit je primljen. Odgovorićemo Vam uskoro, ukoliko imate dodatne informacije molimo Vas da odgovorite na ovu poruku."
-#: frappe/app.py:361
+#: frappe/app.py:354
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 +30243,7 @@ msgstr "imejl"
msgid "email inbox"
msgstr "prijemna pošta imejla"
-#: frappe/permissions.py:403 frappe/permissions.py:414
+#: frappe/permissions.py:412 frappe/permissions.py:423
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "prazno"
@@ -31011,7 +30689,7 @@ msgstr "putem pravila dodele"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242
msgid "via Auto Repeat"
-msgstr ""
+msgstr "putem automatskog ponavljanja"
#: frappe/core/doctype/data_import/importer.py:271
#: frappe/core/doctype/data_import/importer.py:292
@@ -31117,7 +30795,7 @@ msgstr "{0} = {1}"
msgid "{0} Calendar"
msgstr "{0} kalendar"
-#: frappe/public/js/frappe/views/reports/report_view.js:564
+#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
msgstr "{0} grafikon"
@@ -31165,7 +30843,7 @@ msgstr "{0} mapa"
msgid "{0} Name"
msgstr "{0} naziv"
-#: frappe/model/base_document.py:1149
+#: frappe/model/base_document.py:1154
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}"
@@ -31175,7 +30853,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:952
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
msgstr "{0} izveštaji"
@@ -31241,7 +30919,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr "{0} priložen {1}"
-#: frappe/core/doctype/system_settings/system_settings.py:149
+#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
msgstr "{0} ne može biti veće od {1}"
@@ -31254,7 +30932,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} je otkazao ovaj dokument {1}"
-#: frappe/model/document.py:547
+#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr "{0} ne može biti izmenjen jer nije otkazan. Molimo Vas da otkažete dokument pre nego što napravite izmenu."
@@ -31303,7 +30981,7 @@ msgstr "{0} je kreirao ovo"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250
msgctxt "Form timeline"
msgid "{0} created this document {1}"
-msgstr ""
+msgstr "dokument {1} je kreiran od strane {0}"
#: frappe/public/js/frappe/utils/pretty_date.js:33
msgid "{0} d"
@@ -31379,7 +31057,7 @@ msgstr "{0} nije važeće polje za podatak."
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "{0} nije važeća imejl adresa u 'Primaoci'"
-#: frappe/public/js/frappe/views/reports/report_view.js:1462
+#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
msgstr "{0} je između {1} i {2}"
@@ -31388,27 +31066,27 @@ msgstr "{0} je između {1} i {2}"
msgid "{0} is currently {1}"
msgstr "{0} je trenutno {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1431
+#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
msgstr "{0} je jednako {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1451
+#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
msgstr "{0} je veće ili jednako {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1441
+#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
msgstr "{0} je veće od {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1456
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
msgstr "{0} je manje ili jednako {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1446
+#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
msgstr "{0} je manje od {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1481
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
msgstr "{0} je kao {1}"
@@ -31428,7 +31106,7 @@ msgstr "{0} nije format za neobrađeno štampanje."
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr "{0} nije važeći kalendar. Preusmeravanje na podrazumevani kalendar."
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:64
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
msgstr "{0} nije važeći Cron izraz."
@@ -31457,11 +31135,11 @@ msgstr "{0} nije važeći broj telefona"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} nije važeće stanje radnog toka. Molimo Vas da ažurirate svoj radni tok i pokušate ponovo."
-#: frappe/permissions.py:787
+#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} nije važeći matični DocType za {1}"
-#: frappe/permissions.py:807
+#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} nije važeće matično polje za {1}"
@@ -31473,27 +31151,27 @@ msgstr "{0} nije važeći format izveštaja. Format izveštaja treba da bude jed
msgid "{0} is not a zip file"
msgstr "{0} nije zip fajl"
-#: frappe/public/js/frappe/views/reports/report_view.js:1436
+#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
msgstr "{0} nije jednako {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1483
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
msgstr "{0} nije kao {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
msgstr "{0} nije jedan od {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1487
+#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
msgstr "{0} nije postavljen"
-#: frappe/printing/doctype/print_format/print_format.py:165
+#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} je sada podrazumevani format za štampanje za {1} doctype"
-#: frappe/public/js/frappe/views/reports/report_view.js:1470
+#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
msgstr "{0} je jedno od {1}"
@@ -31504,11 +31182,11 @@ msgstr "{0} je jedno od {1}"
msgid "{0} is required"
msgstr "{0} je neophodno"
-#: frappe/public/js/frappe/views/reports/report_view.js:1486
+#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
msgstr "{0} je postavljeno"
-#: frappe/public/js/frappe/views/reports/report_view.js:1465
+#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
msgstr "{0} je unutar {1}"
@@ -31516,12 +31194,12 @@ msgstr "{0} je unutar {1}"
msgid "{0} items selected"
msgstr "odabrano {0} stavki"
-#: frappe/core/doctype/user/user.py:1378
+#: frappe/core/doctype/user/user.py:1380
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} se upravo predstavio kao Vi. Naveo je sledeći razlog: {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:104
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
msgstr "{0} je poslednji put ovo uredio"
@@ -31537,7 +31215,7 @@ msgstr "{0} se odjavio: {1}"
msgid "{0} m"
msgstr "{0} m"
-#: frappe/desk/notifications.py:397
+#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
msgstr "{0} Vas je pomenuo u komentaru u {1} {2}"
@@ -31549,35 +31227,35 @@ msgstr "pre {0} minuta"
msgid "{0} months ago"
msgstr "pre {0} meseci"
-#: frappe/model/document.py:1792
+#: frappe/model/document.py:1791
msgid "{0} must be after {1}"
msgstr "{0} mora biti nakon {1}"
-#: frappe/model/document.py:1551
+#: frappe/model/document.py:1550
msgid "{0} must be beginning with '{1}'"
msgstr "{0} mora počinjati sa '{1}'"
-#: frappe/model/document.py:1553
+#: frappe/model/document.py:1552
msgid "{0} must be equal to '{1}'"
msgstr "{0} mora biti jednako '{1}'"
-#: frappe/model/document.py:1549
+#: frappe/model/document.py:1548
msgid "{0} must be none of {1}"
msgstr "{0} ne sme biti nijedno od {1}"
-#: frappe/model/document.py:1547 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} mora biti jedan od {1}"
-#: frappe/model/base_document.py:875
+#: frappe/model/base_document.py:876
msgid "{0} must be set first"
msgstr "{0} mora prvo biti postavljeno"
-#: frappe/model/base_document.py:732
+#: frappe/model/base_document.py:729
msgid "{0} must be unique"
msgstr "{0} mora biti jedinstveno"
-#: frappe/model/document.py:1555
+#: frappe/model/document.py:1554
msgid "{0} must be {1} {2}"
msgstr "{0} mora biti {1} {2}"
@@ -31652,7 +31330,7 @@ msgstr "{0} je uklonio svoj zadatak."
msgid "{0} role does not have permission on any doctype"
msgstr "Uloga {0} nema dozvole ni za jednu vrstu dokumenta"
-#: frappe/model/document.py:1785
+#: frappe/model/document.py:1784
msgid "{0} row #{1}: "
msgstr "{0} red#{1}: "
@@ -31748,11 +31426,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:665 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} već postoji"
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:987
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}\""
@@ -31768,7 +31446,7 @@ msgstr "{0} {1} ne postoji, izaberite novo tačku za spajanje"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} je povezan sa sledećim podnetim dokumentima: {2}"
-#: frappe/model/document.py:260 frappe/permissions.py:558
+#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
msgstr "{0} {1} nije pronađen"
@@ -31776,7 +31454,7 @@ msgstr "{0} {1} nije pronađen"
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:1110
+#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
msgstr "{0}, red {1}"
@@ -31784,7 +31462,7 @@ 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:1115
+#: frappe/model/base_document.py:1120
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}"
@@ -31885,7 +31563,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:1279
+#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} u odnosu na {2}"
diff --git a/frappe/locale/sv.po b/frappe/locale/sv.po
index 45dc07247d..9110367e65 100644
--- a/frappe/locale/sv.po
+++ b/frappe/locale/sv.po
@@ -2,14 +2,14 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-08 09:34+0000\n"
-"PO-Revision-Date: 2025-06-12 14:56\n"
+"POT-Creation-Date: 2025-06-22 09:34+0000\n"
+"PO-Revision-Date: 2025-06-22 16:40\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Swedish\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.13.1\n"
+"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"
@@ -140,7 +140,7 @@ msgstr "1 dag"
msgid "1 Google Calendar Event synced."
msgstr "1 Google Kalender Händelse Synkroniserad."
-#: frappe/public/js/frappe/views/reports/query_report.js:951
+#: frappe/public/js/frappe/views/reports/query_report.js:953
msgid "1 Report"
msgstr "1 Rapport"
@@ -148,7 +148,7 @@ msgstr "1 Rapport"
msgid "1 comment"
msgstr "1 kommentar"
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:711
msgid "1 day ago"
msgstr "1 dag sedan"
@@ -157,17 +157,17 @@ msgid "1 hour"
msgstr "1 timme"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:709
msgid "1 hour ago"
msgstr "1 timme sedan"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:707
msgid "1 minute ago"
msgstr "1 minut sedan"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:715
msgid "1 month ago"
msgstr "1 månad sedan"
@@ -179,37 +179,37 @@ msgstr "1 av 2"
msgid "1 record will be exported"
msgstr "1 post exporteras"
-#: frappe/tests/test_utils.py:705
+#: frappe/tests/test_utils.py:706
msgid "1 second ago"
msgstr "1 sekund sedan"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:713
msgid "1 week ago"
msgstr "1 vecka sedan"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:717
msgid "1 year ago"
msgstr "1 år sedan"
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:710
msgid "2 hours ago"
msgstr "2 timmar sedan"
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:716
msgid "2 months ago"
msgstr "2 månader sedan"
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:714
msgid "2 weeks ago"
msgstr "2 veckor sedan"
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:718
msgid "2 years ago"
msgstr "2 år sedan"
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:708
msgid "3 minutes ago"
msgstr "3 minuter sedan"
@@ -225,7 +225,7 @@ msgstr "4 timmar"
msgid "5 Records"
msgstr "5 Poster"
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:712
msgid "5 days ago"
msgstr "5 dagar sedan"
@@ -245,7 +245,7 @@ msgstr "<"
msgid "<="
msgstr "<="
-#: frappe/public/js/frappe/widgets/widget_dialog.js:588
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
msgid "{0} is not a valid URL"
msgstr "{0} är inte giltig URL"
@@ -836,10 +836,7 @@ msgid "API"
msgstr "API"
#. Label of the api_access (Section Break) field in DocType 'User'
-#. Label of the api_access_section (Section Break) field in DocType 'S3 Backup
-#. Settings'
#: frappe/core/doctype/user/user.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "API Access"
msgstr "API Åtkomst"
@@ -951,17 +948,6 @@ msgstr "Cirka {0} sekunder kvar"
msgid "Access Control"
msgstr "Åtkomstkontroll"
-#. Label of the access_key_id (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key ID"
-msgstr "Åtkomst Nyckel ID"
-
-#. Label of the secret_access_key (Password) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key Secret"
-msgstr "Åtkomst Nyckel Hemlighet"
-
#. Name of a DocType
#. Label of a Link in the Users Workspace
#: frappe/core/doctype/access_log/access_log.json
@@ -1012,6 +998,10 @@ msgstr "Bokgöring Ansvarig"
msgid "Accounts User"
msgstr "Bokföring Användare"
+#: frappe/public/js/frappe/form/dashboard.js:510
+msgid "Accurate count can not be fetched, click here to view all documents"
+msgstr "Exakt antal kan inte hämtas, klicka här för att se alla dokument"
+
#. Label of the action (Select) field in DocType 'Amended Document Naming
#. Settings'
#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
@@ -1042,7 +1032,7 @@ msgstr "Åtgärd / Sökväg"
msgid "Action Complete"
msgstr "Åtgärd Klar"
-#: frappe/model/document.py:1872
+#: frappe/model/document.py:1871
msgid "Action Failed"
msgstr "Åtgärd Misslyckades"
@@ -1091,10 +1081,10 @@ msgstr "Åtgärd {0} misslyckades {1} {2}. Visa {3}"
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:192
-#: frappe/public/js/frappe/views/reports/query_report.js:205
-#: frappe/public/js/frappe/views/reports/query_report.js:215
-#: frappe/public/js/frappe/views/reports/query_report.js:845
+#: frappe/public/js/frappe/views/reports/query_report.js:190
+#: frappe/public/js/frappe/views/reports/query_report.js:203
+#: frappe/public/js/frappe/views/reports/query_report.js:213
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Actions"
msgstr "Åtgärder"
@@ -1156,8 +1146,8 @@ msgstr "Aktivitet Logg"
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:267
-#: frappe/public/js/frappe/views/reports/query_report.js:295
+#: frappe/public/js/frappe/views/reports/query_report.js:265
+#: frappe/public/js/frappe/views/reports/query_report.js:293
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Lägg till"
@@ -1198,7 +1188,7 @@ msgstr "Lägg till Kant Längst Upp"
msgid "Add Card to Dashboard"
msgstr "Lägg till i Översikt Panel"
-#: frappe/public/js/frappe/views/reports/query_report.js:211
+#: frappe/public/js/frappe/views/reports/query_report.js:209
msgid "Add Chart to Dashboard"
msgstr "Lägg till Diagram i Översikt Panel"
@@ -1207,10 +1197,10 @@ 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:1769
-#: frappe/public/js/frappe/views/reports/query_report.js:1772
-#: frappe/public/js/frappe/views/reports/report_view.js:349
-#: frappe/public/js/frappe/views/reports/report_view.js:374
+#: frappe/public/js/frappe/views/reports/query_report.js:1771
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/report_view.js:355
+#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
msgstr "Lägg till Kolumn"
@@ -1234,7 +1224,7 @@ msgid "Add Custom Tags"
msgstr "Lägg till Anpassade Taggar"
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
-#: frappe/public/js/frappe/widgets/widget_dialog.js:703
+#: frappe/public/js/frappe/widgets/widget_dialog.js:716
msgid "Add Filters"
msgstr "Lägg till Filtrar"
@@ -1269,7 +1259,7 @@ msgstr "Lägg till Deltagare"
msgid "Add Query Parameters"
msgstr "Lägg till Fråge Parametrar"
-#: frappe/core/doctype/user/user.py:806
+#: frappe/core/doctype/user/user.py:808
msgid "Add Roles"
msgstr "Lägg till Roller"
@@ -1414,7 +1404,7 @@ msgid "Add tab"
msgstr "Lägg till flik"
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:253
+#: frappe/public/js/frappe/views/reports/query_report.js:251
msgid "Add to Dashboard"
msgstr "Lägg till i Översikt Panel"
@@ -1510,7 +1500,7 @@ msgstr "Adress Benämning"
#: frappe/contacts/doctype/address/address.py:72
msgid "Address Title is mandatory."
-msgstr "Adress Benämning erfodras."
+msgstr "Adress Benämning erfordras."
#. Label of the address_type (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
@@ -1569,11 +1559,11 @@ msgstr "Administration"
msgid "Administrator"
msgstr "Administratör"
-#: frappe/core/doctype/user/user.py:1211
+#: frappe/core/doctype/user/user.py:1213
msgid "Administrator Logged In"
msgstr "Administratör Inloggad"
-#: frappe/core/doctype/user/user.py:1205
+#: frappe/core/doctype/user/user.py:1207
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "Administratör loggade in {0} {1} via IP Adress {2}."
@@ -1656,7 +1646,7 @@ msgstr "Efter Godkännande"
#: frappe/desk/doctype/number_card/number_card.py:62
msgid "Aggregate Field is required to create a number card"
-msgstr "Aggregerad fält erfodras för att skapa nummerkort"
+msgstr "Aggregerad Fält erfordras för att skapa nummerkort"
#. Label of the aggregate_function_based_on (Select) field in DocType
#. 'Dashboard Chart'
@@ -1669,7 +1659,7 @@ msgstr "Aggregerad Funktion baserad på"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:410
msgid "Aggregate Function field is required to create a dashboard chart"
-msgstr "Aggregerad Funktion fält erfodras att skapa Översikt Panel Diagram"
+msgstr "Aggregerad Funktion fält erfordras att skapa Översikt Panel Diagram"
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
@@ -1806,12 +1796,6 @@ msgstr "Tillåt Massredigering"
msgid "Allow Consecutive Login Attempts "
msgstr "Antal Tillåtna Inloggning Försök i Följd "
-#. Label of the allow_dropbox_access (Button) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Allow Dropbox Access"
-msgstr "Auktorisera Dropbox Åtkomst"
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
msgid "Allow Google Calendar Access"
msgstr "Tillåt Google Kalender Åtkomst"
@@ -1820,10 +1804,6 @@ msgstr "Tillåt Google Kalender Åtkomst"
msgid "Allow Google Contacts Access"
msgstr "Tillåt Google Kontakter Åtkomst"
-#: frappe/integrations/doctype/google_drive/google_drive.py:52
-msgid "Allow Google Drive Access"
-msgstr "Tillåt Google Drive Åtkomst"
-
#. Label of the allow_guest (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
@@ -2078,7 +2058,7 @@ msgstr "Tillåtna inbäddning av domäner"
msgid "Allowing DocType, DocType. Be careful!"
msgstr "Tillåter DocType, DocType. Var försiktig!"
-#: frappe/core/doctype/user/user.py:1021
+#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr "Redan Registrerad"
@@ -2086,11 +2066,11 @@ msgstr "Redan Registrerad"
msgid "Already in the following Users ToDo list:{0}"
msgstr "Redan i följande Användare Att-Göra lista: {0}"
-#: frappe/public/js/frappe/views/reports/report_view.js:896
+#: frappe/public/js/frappe/views/reports/report_view.js:902
msgid "Also adding the dependent currency field {0}"
msgstr "Lägger till beroende valuta fält {0}"
-#: frappe/public/js/frappe/views/reports/report_view.js:909
+#: frappe/public/js/frappe/views/reports/report_view.js:915
msgid "Also adding the status dependency field {0}"
msgstr "Lägger till status beroende fält {0}"
@@ -2169,7 +2149,7 @@ msgstr "Ändring"
msgid "Amendment Naming Override"
msgstr "Ändring Nummer Serie Åsidosättande "
-#: frappe/model/document.py:550
+#: frappe/model/document.py:549
msgid "Amendment Not Allowed"
msgstr "Ändring Ej Tillåten"
@@ -2258,15 +2238,6 @@ msgstr "Förutom System Ansvarig kan roller med Ange användarbehörighet rätt
msgid "App"
msgstr "App"
-#. Label of the app_access_key (Data) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Access Key"
-msgstr "Åtkomst Nyckel"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:22
-msgid "App Access Key and/or Secret Key are not present."
-msgstr "App Åtkomst Nyckel och/eller Hemlig Nyckel finns inte."
-
#. Label of the client_id (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client ID"
@@ -2300,16 +2271,11 @@ msgstr "App Logotyp "
msgid "App Name"
msgstr "App Namn"
-#. Label of the app_secret_key (Password) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Secret Key"
-msgstr "Hemliget"
-
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr "App hittades inte för modul: {0}"
-#: frappe/__init__.py:1462
+#: frappe/__init__.py:1465
msgid "App {0} is not installed"
msgstr "App {0} är inte installerad"
@@ -2428,7 +2394,7 @@ msgstr "Tillämpar: {0}"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:115
msgid "Approval Required"
-msgstr "Godkännande Erfodras"
+msgstr "Godkännande Erfordras"
#. Label of a standard navbar item
#. Type: Route
@@ -2459,7 +2425,7 @@ msgstr "Arkiverade Kolumner"
msgid "Are you sure you want to clear the assignments?"
msgstr "Är du säker på att du vill ta bort tilldelningar?"
-#: frappe/public/js/frappe/form/grid.js:290
+#: frappe/public/js/frappe/form/grid.js:294
msgid "Are you sure you want to delete all rows?"
msgstr "Är du säker på att du vill ta bort alla rader?"
@@ -2487,7 +2453,7 @@ msgstr "Är du säker på att du vill ta bort flik? Alla avsnitt och fält i fli
msgid "Are you sure you want to discard the changes?"
msgstr "Är du säker på att du vill ignorera ändringar?"
-#: frappe/public/js/frappe/views/reports/query_report.js:965
+#: frappe/public/js/frappe/views/reports/query_report.js:967
msgid "Are you sure you want to generate a new report?"
msgstr "Är du säker på att du vill skapa ny rapport?"
@@ -2613,7 +2579,7 @@ msgstr "Tilldelad Av"
msgid "Assigned By Full Name"
msgstr "Tilldelad Av Fullständig Namn"
-#: frappe/model/meta.py:60
+#: 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
@@ -2697,15 +2663,15 @@ msgstr "Uppgifter"
#: frappe/public/js/frappe/form/grid_row.js:680
msgid "At least one column is required to show in the grid."
-msgstr "Minst en kolumn erfodras för att visas i rutnätet."
+msgstr "Minst en kolumn erfordras för att visas i rutnät."
#: frappe/website/doctype/web_form/web_form.js:73
msgid "At least one field is required in Web Form Fields Table"
-msgstr "Minst ett fält erfodras i Webbformulär Fält Tabell"
+msgstr "Minst ett fält erfordras i Webbformulär Fält Tabell"
#: frappe/core/doctype/data_export/data_export.js:44
msgid "At least one field of Parent Document Type is mandatory"
-msgstr "Minst ett fält av Överordnad Dokument Typ erfodras"
+msgstr "Minst ett fält av Överordnad Dokument Typ erfordras"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -2883,13 +2849,11 @@ msgstr "Skapad Av"
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
#. Contacts'
-#. Label of the authorization_code (Data) field in DocType 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
@@ -2927,12 +2891,6 @@ msgstr "Auktorisera Google Kalender Åtkomst"
msgid "Authorize Google Contacts Access"
msgstr "Auktorisera Google Kontakter Åtkomst"
-#. Label of the authorize_google_drive_access (Button) field in DocType 'Google
-#. Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Authorize Google Drive Access"
-msgstr "Auktorisera Google Drive Åtkomst"
-
#. 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"
@@ -3079,11 +3037,11 @@ msgstr "Automatiskt Meddelande"
msgid "Automatic"
msgstr "Automatisk"
-#: frappe/email/doctype/email_account/email_account.py:774
+#: frappe/email/doctype/email_account/email_account.py:772
msgid "Automatic Linking can be activated only for one Email Account."
msgstr "Automatisk länkning kan endast aktiveras för ett E-post konto."
-#: frappe/email/doctype/email_account/email_account.py:768
+#: frappe/email/doctype/email_account/email_account.py:766
msgid "Automatic Linking can be activated only if Incoming is enabled."
msgstr "Automatisk länkning kan endast aktiveras om Inkommande E-post är aktiverad."
@@ -3297,66 +3255,14 @@ msgstr "Bakgrundsutskrift (erfordras för >25 dokument)"
msgid "Background Workers"
msgstr "Bakgrund Tjänster"
-#: frappe/integrations/doctype/google_drive/google_drive.py:170
-msgid "Backing up Data."
-msgstr "Säkerhetskopierar Data."
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:32
-msgid "Backing up to Google Drive."
-msgstr "Säkerhetskopierar till Google Drive."
-
-#. Label of a Card Break in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Backup"
-msgstr "Säkerhetskopiering"
-
-#. Label of the backup_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Details"
-msgstr "Säkerhetskopiering Detaljer"
-
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
msgstr "Säkerhetskopiering Kryptering Nyckel"
-#. Label of the backup_files (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Files"
-msgstr "Säkerhetskopiera Filer"
-
-#. Label of the backup_folder_id (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder ID"
-msgstr "Säkerhetskopiering Mapp ID"
-
-#. Label of the backup_folder_name (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder Name"
-msgstr "Säkerhetskopiering Mapp Namn"
-
-#. Label of the backup_frequency (Select) field in DocType 'Dropbox Settings'
-#. Label of the frequency (Select) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Frequency"
-msgstr "Säkerhetskopiering Intervall"
-
-#. Label of the backup_path (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Path"
-msgstr "Säkerhetskopiering Sökväg"
-
#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
msgstr "Säkerhetskopiering är redan i kö. Du kommer att få E-post meddelande med hämtning länk"
-#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup public and private files along with the database."
-msgstr "Säkerhetskopiera publika och privata filer tillsammans med databas."
-
#. 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'
@@ -3370,7 +3276,7 @@ msgstr "Säkerhetskopior"
msgid "Backups (MB)"
msgstr "Säkerhetskopior (MB)"
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:65
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
msgid "Bad Cron Expression"
msgstr "Fel Cron Uttryck"
@@ -3666,12 +3572,12 @@ msgstr "Bot"
#: frappe/printing/page/print_format_builder/print_format_builder.js:126
msgid "Both DocType and Name required"
-msgstr "Både DocType och Namn erfodras"
+msgstr "Både DocType och Namn erfordras"
#: frappe/templates/includes/login/login.js:24
#: frappe/templates/includes/login/login.js:96
msgid "Both login and password required"
-msgstr "Både användarnamn och lösenord erfodras"
+msgstr "Både användarnamn och lösenord erfordras"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -3768,15 +3674,6 @@ msgstr "Webbläsare stöds inte"
msgid "Brute Force Security"
msgstr "Inloggning Säkerhet"
-#. Label of the bucket (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Bucket Name"
-msgstr "Skop Namn"
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:71
-msgid "Bucket {0} not found."
-msgstr "Skop {0} hittades inte."
-
#. 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"
@@ -3813,7 +3710,7 @@ msgstr "Massborttagning"
msgid "Bulk Edit"
msgstr "Mass Redigera"
-#: frappe/public/js/frappe/form/grid.js:1184
+#: frappe/public/js/frappe/form/grid.js:1188
msgid "Bulk Edit {0}"
msgstr "Mass Redigera {0}"
@@ -3888,12 +3785,6 @@ msgstr "Efter \"Nummer Serie\"."
msgid "By default the title is used as meta title, adding a value here will override it."
msgstr "Som standard används benämning som metabenämning. Att lägga till värde här kommer att åsidosätta standard värde."
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "By default, emails are only sent for failed backups."
-msgstr "Som standard skickas e-postmeddelanden endast för misslyckade säkerhetskopior."
-
#. 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
@@ -4204,7 +4095,7 @@ msgstr "Kan inte Hämta Värden"
msgid "Cannot Remove"
msgstr "Kan inte Ta Bort"
-#: frappe/model/base_document.py:1156
+#: frappe/model/base_document.py:1161
msgid "Cannot Update After Submit"
msgstr "Kan inte Uppdatera efter Godkännande"
@@ -4224,11 +4115,11 @@ msgstr "Kan inte annullera före godkännande.Se Övergång {0}"
msgid "Cannot cancel {0}."
msgstr "Kan inte annullera {0}."
-#: frappe/model/document.py:1012
+#: frappe/model/document.py:1011
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr "Kan inte ändra dokument status från 0 (Utkast) till 2 (Annullerad)"
-#: frappe/model/document.py:1026
+#: frappe/model/document.py:1025
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "Kan inte ändra dokument status från 1 (Godkänd) till 0 (Utkast)"
@@ -4311,7 +4202,7 @@ msgstr "Kan inte redigera standard diagram"
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "Kan inte redigera standard rapport.Kopiera och skapa ny"
-#: frappe/model/document.py:1032
+#: frappe/model/document.py:1031
msgid "Cannot edit cancelled document"
msgstr "Kan inte redigera annullerad dokument"
@@ -4344,11 +4235,11 @@ 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:1128
+#: frappe/public/js/frappe/form/grid.js:1132
msgid "Cannot import table with more than 5000 rows."
msgstr "Kan inte importera tabell med fler än 5000 rader."
-#: frappe/model/document.py:1100
+#: frappe/model/document.py:1099
msgid "Cannot link cancelled document: {0}"
msgstr "Kan inte länka annullerad dokument: {0}"
@@ -4364,7 +4255,7 @@ msgstr "Kan inte avstäma kolumn {0} med något fält"
msgid "Cannot move row"
msgstr "Kan inte flytta rad"
-#: frappe/public/js/frappe/views/reports/report_view.js:921
+#: frappe/public/js/frappe/views/reports/report_view.js:927
msgid "Cannot remove ID field"
msgstr "Kan inte ta bort ID fält"
@@ -4389,11 +4280,11 @@ msgstr "Kan inte godkänna {0}."
msgid "Cannot update {0}"
msgstr "Kan inte uppdatera {0}"
-#: frappe/model/db_query.py:1125
+#: frappe/model/db_query.py:1126
msgid "Cannot use sub-query in order by"
msgstr "Kan inte använda underfråga i ordna efter"
-#: frappe/model/db_query.py:1144
+#: frappe/model/db_query.py:1145
msgid "Cannot use {0} in order/group by"
msgstr "Kan inte använda {0} i ordna/gruppera efter"
@@ -4419,7 +4310,7 @@ msgstr "Kort"
msgid "Card Break"
msgstr "Kort Brytning"
-#: frappe/public/js/frappe/views/reports/query_report.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:261
msgid "Card Label"
msgstr "Kort Titel"
@@ -4562,7 +4453,7 @@ msgstr "Diagram Inställningar"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:290
+#: frappe/public/js/frappe/views/reports/query_report.js:288
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Diagram Namn"
@@ -4582,7 +4473,7 @@ msgstr "Diagram Källa"
#. 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:499
+#: frappe/public/js/frappe/views/reports/report_view.js:505
msgid "Chart Type"
msgstr "Diagram Typ"
@@ -4696,7 +4587,7 @@ msgstr "Underordnad tabell {0} för fält {1}"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Underordnade Tabeller visas som rutnät i andra DocTyper"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:638
+#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "Välj Befintligt Kort eller skapa Ny Kort"
@@ -4789,10 +4680,6 @@ msgstr "Klicka här"
msgid "Click here to verify"
msgstr "Klicka här att verifiera"
-#: frappe/integrations/doctype/google_drive/google_drive.js:47
-msgid "Click on Authorize Google Drive Access to authorize Google Drive Access."
-msgstr "Klicka på Auktorisera Google Drive Access för att auktorisera Google Drive Access."
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "Klicka på fil för att välja det."
@@ -4819,7 +4706,6 @@ msgstr "Klicka på länk nedan att verifiera begäran"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
-#: frappe/integrations/doctype/google_drive/google_drive.py:53
#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
msgstr "Klicka på {0} att skapa Uppdatering Token."
@@ -4993,7 +4879,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Fäll In"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Fäll In Alla"
@@ -5048,9 +4934,9 @@ 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:1229
-#: frappe/public/js/frappe/widgets/widget_dialog.js:533
-#: frappe/public/js/frappe/widgets/widget_dialog.js:681
+#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: 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
@@ -5191,7 +5077,7 @@ msgstr "Kommentar per timme"
msgid "Comment publicity can only be updated by the original author or a System Manager."
msgstr "Kommentar publicitet kan endast uppdateras av den ursprungliga författaren eller System Ansvarig."
-#: frappe/model/meta.py:59 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/model/meta.js:209
#: frappe/public/js/frappe/model/model.js:135
#: frappe/website/doctype/web_form/templates/web_form.html:122
@@ -5298,7 +5184,7 @@ msgstr "Klar"
msgid "Complete By"
msgstr "Klar Senast"
-#: frappe/core/doctype/user/user.py:477
+#: frappe/core/doctype/user/user.py:478
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Slutför Registrering"
@@ -5394,7 +5280,7 @@ msgstr "Villkor"
msgid "Configuration"
msgstr "Konfiguration"
-#: frappe/public/js/frappe/views/reports/report_view.js:481
+#: frappe/public/js/frappe/views/reports/report_view.js:487
msgid "Configure Chart"
msgstr "Försäljning Order Diagram"
@@ -5733,7 +5619,7 @@ msgstr "Rätt version : "
msgid "Could not connect to outgoing email server"
msgstr "Kan inte ansluta till utgående E-post Server"
-#: frappe/model/document.py:1096
+#: frappe/model/document.py:1095
msgid "Could not find {0}"
msgstr "Kunde inte hitta {0}"
@@ -5762,7 +5648,7 @@ msgstr "Kunde inte spara. Kontrollera angivna uppgifter"
msgid "Count"
msgstr "Antal"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:527
+#: frappe/public/js/frappe/widgets/widget_dialog.js:540
msgid "Count Customizations"
msgstr "Antal Anpassningar"
@@ -5770,10 +5656,14 @@ msgstr "Antal Anpassningar"
#. 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:512
+#: frappe/public/js/frappe/widgets/widget_dialog.js:525
msgid "Count Filter"
msgstr "Antal & Filter"
+#: frappe/public/js/frappe/form/dashboard.js:509
+msgid "Count of linked documents"
+msgstr "Antal länkade dokument"
+
#. Label of the counter (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Counter"
@@ -5824,7 +5714,7 @@ msgstr "Cr"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1261
+#: frappe/public/js/frappe/views/reports/query_report.js:1263
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5838,13 +5728,13 @@ msgstr "Skapa & Fortsätt"
msgid "Create Address"
msgstr "Skapa Adress"
-#: frappe/public/js/frappe/views/reports/query_report.js:188
-#: frappe/public/js/frappe/views/reports/query_report.js:233
+#: frappe/public/js/frappe/views/reports/query_report.js:186
+#: frappe/public/js/frappe/views/reports/query_report.js:231
msgid "Create Card"
msgstr "Skapa Kort"
-#: frappe/public/js/frappe/views/reports/query_report.js:286
-#: frappe/public/js/frappe/views/reports/query_report.js:1188
+#: frappe/public/js/frappe/views/reports/query_report.js:284
+#: frappe/public/js/frappe/views/reports/query_report.js:1190
msgid "Create Chart"
msgstr "Skapa Diagram"
@@ -5955,7 +5845,7 @@ msgstr "Skapad"
msgid "Created At"
msgstr "Skapad"
-#: frappe/model/meta.py:56
+#: 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
@@ -5967,14 +5857,14 @@ msgid "Created Custom Field {0} in {1}"
msgstr "Skapade Anpassad Fält {0} i {1}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241
-#: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:51
+#: 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 "Skapad"
-#: frappe/public/js/frappe/desk.js:515
+#: frappe/public/js/frappe/desk.js:523
#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
msgstr "Skapar {0}"
@@ -5997,9 +5887,9 @@ msgstr "Cron"
msgid "Cron Format"
msgstr "Cron Format"
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:59
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
-msgstr "Cron format erfodras för jobbtyper med Cron frekvens."
+msgstr "Cron format erfordras för jobbtyper med Cron frekvens."
#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:34
msgid "Crop"
@@ -6394,11 +6284,6 @@ msgstr "UTKAST"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -6407,9 +6292,6 @@ msgstr "UTKAST"
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:398
#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
@@ -6963,7 +6845,7 @@ msgstr "Försenad"
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/toolbar.js:461
-#: frappe/public/js/frappe/views/reports/report_view.js:1734
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
@@ -7006,7 +6888,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Ta bort Flik"
-#: frappe/public/js/frappe/views/reports/query_report.js:932
+#: frappe/public/js/frappe/views/reports/query_report.js:934
msgid "Delete and Generate New"
msgstr "Ta bort och Skapa Ny"
@@ -7015,7 +6897,7 @@ msgctxt "Button text"
msgid "Delete column"
msgstr "Ta bort kolumn"
-#: frappe/public/js/frappe/form/footer/form_timeline.js:738
+#: frappe/public/js/frappe/form/footer/form_timeline.js:741
msgid "Delete comment?"
msgstr "Ta bort Kommentar?"
@@ -7101,7 +6983,7 @@ msgstr "Tar Bort {0}"
msgid "Deleting {0} records..."
msgstr "Tar Bort {0} post(er)..."
-#: frappe/public/js/frappe/model/model.js:741
+#: frappe/public/js/frappe/model/model.js:692
msgid "Deleting {0}..."
msgstr "Tar Bort {0}..."
@@ -7147,7 +7029,7 @@ msgstr "Avdelning"
#. 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:310
+#: frappe/public/js/frappe/widgets/widget_dialog.js:323
#: frappe/www/attribution.html:29
msgid "Dependencies"
msgstr "Beroenden "
@@ -7261,6 +7143,7 @@ msgstr "Skrivbord Tema"
#: 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
@@ -7558,14 +7441,10 @@ 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:1189
+#: frappe/public/js/frappe/form/grid.js:1193
msgid "Do not edit headers which are preset in the template"
msgstr "Ändra inte rubriker som är förinställda i mall"
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:69
-msgid "Do not have permission to access bucket {0}."
-msgstr "Behörigheter saknas att komma åt skop {0}."
-
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr "Vill du fortfarande fortsätta?"
@@ -7701,7 +7580,7 @@ msgstr "DocType Tillstånd"
#. 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:466
+#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
msgstr "DocType Vy"
@@ -7741,7 +7620,7 @@ msgstr "DocType Arbetsflöde kan tillämpas på."
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:4
msgid "DocType required"
-msgstr "DocType erfodras"
+msgstr "DocType erfordras"
#: frappe/modules/utils.py:175
msgid "DocType {0} does not exist."
@@ -7761,7 +7640,7 @@ msgstr "DocTypes kan inte ändras, använd {0} istället"
#. 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:669
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
msgid "Doctype"
msgstr "DocType"
@@ -7837,11 +7716,11 @@ msgstr "Dokument Länkar Rad #{0}: Ogiltig doctype eller fältnamn."
#: frappe/core/doctype/doctype/doctype.py:1194
msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links"
-msgstr "Dokument Länkar Rad #{0}: Överordnad doctype erfodras för interna länkar"
+msgstr "Dokument Länkar Rad #{0}: Överordnad doctype erfordras för interna länkar"
#: frappe/core/doctype/doctype/doctype.py:1200
msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links"
-msgstr "Dokument Länkar Rad #{0}: Tabell Fält namn erfodras för interna länkar"
+msgstr "Dokument Länkar Rad #{0}: Tabell Fält namn erfordras för interna länkar"
#. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder'
#. Label of the share_name (Dynamic Link) field in DocType 'DocShare'
@@ -7879,7 +7758,7 @@ msgstr "Dokument Namn Regel Villkor"
msgid "Document Naming Settings"
msgstr "Dokument Namn Inställningar"
-#: frappe/model/document.py:477
+#: frappe/model/document.py:476
msgid "Document Queued"
msgstr "Dokument i Kö"
@@ -7932,7 +7811,7 @@ msgstr "Dokument Delning Rapport"
msgid "Document States"
msgstr "Dokument Tillstånd"
-#: frappe/model/meta.py:52 frappe/public/js/frappe/model/meta.js:202
+#: 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 "Dokument Tillstånd"
@@ -8001,13 +7880,13 @@ msgstr "DocType"
#: frappe/desk/doctype/number_card/number_card.py:59
msgid "Document Type and Function are required to create a number card"
-msgstr "Dokument Typ och Funktion erfodras för att skapa nummerkort"
+msgstr "Dokument Typ och Funktion erfordras för att skapa nummerkort"
-#: frappe/permissions.py:148
+#: frappe/permissions.py:149
msgid "Document Type is not importable"
msgstr "DocType kan inte importeras"
-#: frappe/permissions.py:144
+#: frappe/permissions.py:145
msgid "Document Type is not submittable"
msgstr "DocType kan inte godkännas"
@@ -8036,7 +7915,7 @@ msgid "Document Types and Permissions"
msgstr "Dokument Typer och Behörigheter"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1943
+#: frappe/model/document.py:1942
msgid "Document Unlocked"
msgstr "Dokument Upplåst"
@@ -8074,7 +7953,7 @@ msgstr "Dokument namn byte från {0} till {1} är i kö"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:397
msgid "Document type is required to create a dashboard chart"
-msgstr "Dokument Typ erfodras för att skapa Översikt Panel Diagram"
+msgstr "Dokument Typ erfordras för att skapa Översikt Panel Diagram"
#: frappe/core/doctype/deleted_document/deleted_document.py:45
msgid "Document {0} Already Restored"
@@ -8227,7 +8106,7 @@ msgstr "Nedladdning Länk"
msgid "Download PDF"
msgstr "Ladda ner PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:835
+#: frappe/public/js/frappe/views/reports/query_report.js:830
msgid "Download Report"
msgstr "Ladda ner Rapport"
@@ -8238,7 +8117,7 @@ msgstr "Ladda ner Mall"
#: 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:57
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
msgid "Download Your Data"
msgstr "Ladda ner Data"
@@ -8294,29 +8173,6 @@ msgstr "Dra för att lägga till tillstånd"
msgid "Drop files here"
msgstr "Släpp filer här"
-#. Label of the dropbox_access_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Access Token"
-msgstr "Dropbox Åtkomst Token"
-
-#. Label of the dropbox_refresh_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Refresh Token"
-msgstr "Dropbox Refresh Token"
-
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Dropbox Settings"
-msgstr "Dropbox Inställningar"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:347
-msgid "Dropbox Setup"
-msgstr "Dropbox Inställningar"
-
#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
@@ -8346,7 +8202,7 @@ msgstr "Kopiera Post"
msgid "Duplicate Filter Name"
msgstr "Kopiera Filter Namn"
-#: frappe/model/base_document.py:666 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Kopiera Namn"
@@ -8445,13 +8301,13 @@ msgstr "ESC"
#: 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:668
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:669
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:883
-#: frappe/public/js/frappe/views/reports/query_report.js:1722
+#: frappe/public/js/frappe/views/reports/query_report.js:878
+#: frappe/public/js/frappe/views/reports/query_report.js:1724
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8614,7 +8470,7 @@ msgstr "Redigera din respons"
msgid "Edit your workflow visually using the Workflow Builder."
msgstr "Redigera arbetsflöde visuellt med Arbetsflöde Generator."
-#: frappe/public/js/frappe/views/reports/report_view.js:672
+#: frappe/public/js/frappe/views/reports/report_view.js:678
#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
msgstr "Redigera {0}"
@@ -8644,7 +8500,7 @@ msgstr "T.ex. smsgateway.com/api/send_sms.cgi"
#: frappe/rate_limiter.py:152
msgid "Either key or IP flag is required."
-msgstr "Antingen nyckel eller IP erfodras."
+msgstr "Antingen nyckel eller IP erfordras."
#. Label of the element_selector (Data) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -8715,7 +8571,7 @@ msgstr "E-post Konto Inaktiverad"
msgid "Email Account Name"
msgstr "E-post Konto Namn"
-#: frappe/core/doctype/user/user.py:736
+#: frappe/core/doctype/user/user.py:738
msgid "Email Account added multiple times"
msgstr "E-post Konto lagt till flera gånger"
@@ -8723,7 +8579,7 @@ msgstr "E-post Konto lagt till flera gånger"
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
msgstr "E-post Konto inte konfigurerad. Skapa ny E-post Konto från Inställningar > E-post Konto"
-#: frappe/email/doctype/email_account/email_account.py:578
+#: frappe/email/doctype/email_account/email_account.py:576
msgid "Email Account {0} Disabled"
msgstr "E-postkonto {0} Inaktiverad"
@@ -8949,7 +8805,7 @@ msgstr "E-post "
msgid "Emails Pulled"
msgstr "E-post Hämtade"
-#: frappe/email/doctype/email_account/email_account.py:936
+#: frappe/email/doctype/email_account/email_account.py:934
msgid "Emails are already being pulled from this account."
msgstr "E-post meddelanden hämtas redan från detta konto."
@@ -8972,11 +8828,9 @@ msgstr "Tom kolumn"
#. 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 Drive'
#. 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_drive/google_drive.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
msgstr "Aktivera"
@@ -8996,11 +8850,6 @@ msgstr "Aktivera Tillåt Återkommande för DocType {0} i Anpassa Formulär"
msgid "Enable Auto Reply"
msgstr "Aktivera Autosvar"
-#. Label of the enabled (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Enable Automatic Backup"
-msgstr "Aktivera Automatisk Säkerhetskopiering"
-
#. Label of the enable_automatic_linking (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -9160,7 +9009,6 @@ msgstr "Aktivera Webbplats Spårning i App"
#. 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 'Dropbox Settings'
#. 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'
@@ -9171,7 +9019,6 @@ msgstr "Aktivera Webbplats Spårning i App"
#: 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/dropbox_settings/dropbox_settings.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/public/js/frappe/model/indicator.js:106
@@ -9184,7 +9031,7 @@ msgstr "Aktiverad"
msgid "Enabled Scheduler"
msgstr "Aktiverad Schemaläggare"
-#: frappe/email/doctype/email_account/email_account.py:1012
+#: frappe/email/doctype/email_account/email_account.py:1010
msgid "Enabled email inbox for user {0}"
msgstr "E-post Konto Aktiverad för {0}"
@@ -9265,11 +9112,6 @@ msgstr "Slut Datum kan inte vara före Start Datum!"
msgid "Ended At"
msgstr "Slutade Kl"
-#. Label of the endpoint_url (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Endpoint URL"
-msgstr "Slutpunkt URL"
-
#. Label of the sb_endpoints_section (Section Break) field in DocType
#. 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -9448,7 +9290,7 @@ msgstr "Fel i Avisering"
msgid "Error in print format on line {0}: {1}"
msgstr "Fel i Utskrift Format på rad {0}: {1}"
-#: frappe/email/doctype/email_account/email_account.py:672
+#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "Fel vid anslutning till E-post Konto {0}"
@@ -9456,15 +9298,15 @@ msgstr "Fel vid anslutning till E-post Konto {0}"
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr "Fel vid test av Avisering {0}. Fixa Mall."
-#: frappe/model/base_document.py:806
+#: frappe/model/base_document.py:803
msgid "Error: Data missing in table {0}"
msgstr "Fel: Data saknas i tabell {0}"
-#: frappe/model/base_document.py:816
+#: frappe/model/base_document.py:813
msgid "Error: Value missing for {0}: {1}"
msgstr "Fel: Värdet saknas för {0}: {1}"
-#: frappe/model/base_document.py:810
+#: frappe/model/base_document.py:807
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "Fel: {0} Rad #{1}: Värde saknas för: {2}"
@@ -9613,7 +9455,7 @@ msgstr "Exekverar Kod"
msgid "Executing..."
msgstr "Kör..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2069
+#: frappe/public/js/frappe/views/reports/query_report.js:2071
msgid "Execution Time: {0} sec"
msgstr "Exekvering Tid: {0} sek"
@@ -9639,7 +9481,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Expandera"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Expandera Alla"
@@ -9696,8 +9538,8 @@ 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:1757
-#: frappe/public/js/frappe/views/reports/report_view.js:1621
+#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Export"
@@ -9748,11 +9590,11 @@ msgstr "Exportera Rapport: {0}"
msgid "Export Type"
msgstr "Export Typ"
-#: frappe/public/js/frappe/views/reports/report_view.js:1632
+#: frappe/public/js/frappe/views/reports/report_view.js:1638
msgid "Export all matching rows?"
msgstr "Exportera alla matchande rader?"
-#: frappe/public/js/frappe/views/reports/report_view.js:1642
+#: frappe/public/js/frappe/views/reports/report_view.js:1648
msgid "Export all {0} rows?"
msgstr "Exportera alla {0} rader? "
@@ -9762,7 +9604,7 @@ msgstr "Exportera som zip fil"
#: frappe/public/js/frappe/utils/tools.js:11
msgid "Export not allowed. You need {0} role to export."
-msgstr "Export ej tillåtet.{0} roll erfodras för att exportera."
+msgstr "Export ej tillåtet.{0} roll erfordras för att exportera."
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
@@ -10060,8 +9902,8 @@ msgstr "Hämtar standard Global Sökning dokument."
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:237
-#: frappe/public/js/frappe/views/reports/query_report.js:1816
+#: frappe/public/js/frappe/views/reports/query_report.js:235
+#: frappe/public/js/frappe/views/reports/query_report.js:1818
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10069,15 +9911,15 @@ msgstr "Fält"
#: frappe/core/doctype/doctype/doctype.py:417
msgid "Field \"route\" is mandatory for Web Views"
-msgstr "Fält \"\"sökväg\"\" erfodras för Webb Vyer"
+msgstr "Fält \"\"sökväg\"\" erfordras för Webb Vyer"
#: frappe/core/doctype/doctype/doctype.py:1526
msgid "Field \"title\" is mandatory if \"Website Search Field\" is set."
-msgstr "Fält \"benämning\" erfodras om \"Webbplats Sökfält\" är angiven."
+msgstr "Fält \"benämning\" erfordras om \"Webbplats Sökfält\" är angiven."
#: frappe/desk/doctype/bulk_update/bulk_update.js:17
msgid "Field \"value\" is mandatory. Please specify value to be updated"
-msgstr "Fält 'värde' erfodras. Ange värde som ska uppdateras"
+msgstr "Fält 'värde' erfordras. Ange värde som ska uppdateras"
#. Label of the description (Text) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
@@ -10136,7 +9978,7 @@ msgstr "Fält Typ kan inte ändras för {0}"
msgid "Field {0} does not exist on {1}"
msgstr "Fält {0} finns inte på {1}"
-#: frappe/desk/form/meta.py:208
+#: frappe/desk/form/meta.py:184
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr "Fält {0} hänvisar till icke-existerande doctype {1}."
@@ -10239,7 +10081,7 @@ msgstr "Fält Multicheck"
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"
-#: frappe/model/db_query.py:144
+#: frappe/model/db_query.py:146
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"
@@ -10288,13 +10130,6 @@ msgstr "Fil \"{0}\" hoppades över på grund av ogiltig filtyp"
msgid "File '{0}' not found"
msgstr "Fil '{0}' hittades inte"
-#. Label of the file_backup (Check) field in DocType 'Dropbox Settings'
-#. Label of the file_backup (Check) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "File Backup"
-msgstr "Fil Säkerhetskopiering"
-
#. Label of the private_file_section (Section Break) field in DocType 'Access
#. Log'
#: frappe/core/doctype/access_log/access_log.json
@@ -10495,7 +10330,7 @@ msgstr "Filter är tillgänglig via filters .
Skicka utdata
msgid "Filters {0}"
msgstr "Filter {0}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1421
+#: frappe/public/js/frappe/views/reports/report_view.js:1427
msgid "Filters:"
msgstr "Filter:"
@@ -10642,7 +10477,7 @@ msgstr "Följande Rapport Filter saknar värden:"
msgid "Following document {0}"
msgstr "Följer dokument {0}"
-#: frappe/website/doctype/web_form/web_form.py:111
+#: frappe/website/doctype/web_form/web_form.py:108
msgid "Following fields are missing:"
msgstr "Följande fält saknas:"
@@ -10650,7 +10485,7 @@ msgstr "Följande fält saknas:"
msgid "Following fields have invalid values:"
msgstr "Följande fält har ogiltiga värden:"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:345
+#: frappe/public/js/frappe/widgets/widget_dialog.js:358
msgid "Following fields have missing values"
msgstr "Följande fält saknar värde"
@@ -10793,7 +10628,7 @@ msgstr "För Dokument"
msgid "For Document Type"
msgstr "För Dokument Typ"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:553
+#: frappe/public/js/frappe/widgets/widget_dialog.js:566
msgid "For Example: {} Open"
msgstr "Till exempel: {} Öppna"
@@ -10822,7 +10657,7 @@ msgstr "För Användare"
msgid "For Value"
msgstr "För Värde"
-#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/query_report.js:2068
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "För jämförelse, använd >5, <10 eller = 324. För intervall, använd 5:10 (för värden mellan 5 och 10)."
@@ -10975,7 +10810,7 @@ msgstr "Formulär URL Kodad"
#. 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:552
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
msgid "Format"
msgstr "Format"
@@ -11007,7 +10842,7 @@ msgstr "Bråkdel Enheter"
#. 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:149
+#: frappe/www/login.py:153
msgid "Frappe"
msgstr "Frappe"
@@ -11024,7 +10859,7 @@ msgstr "Frappe Light"
msgid "Frappe Mail"
msgstr "Frappe Mail"
-#: frappe/email/doctype/email_account/email_account.py:549
+#: frappe/email/doctype/email_account/email_account.py:547
msgid "Frappe Mail OAuth Error"
msgstr "Frappe Mail OAuth fel"
@@ -11052,13 +10887,11 @@ msgstr "Gratis"
#. 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'
-#. Label of the frequency (Select) field in DocType 'Google Drive'
#: 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/integrations/doctype/google_drive/google_drive.json
#: frappe/public/js/frappe/utils/common.js:395
msgid "Frequency"
msgstr "Intervall"
@@ -11104,7 +10937,7 @@ msgstr "Från Datum"
msgid "From Date Field"
msgstr "Från Datum"
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
+#: frappe/public/js/frappe/views/reports/query_report.js:1779
msgid "From Document Type"
msgstr "Från DocType"
@@ -11155,16 +10988,16 @@ msgstr "Full Bredd"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:247
-#: frappe/public/js/frappe/widgets/widget_dialog.js:686
+#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Funktion"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:693
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
msgstr "Funktion Baserad på"
-#: frappe/__init__.py:670
+#: frappe/__init__.py:677
msgid "Function {0} is not whitelisted."
msgstr "Funktion {0} är inte vitlistad."
@@ -11229,7 +11062,7 @@ msgstr "Allmän"
msgid "Generate Keys"
msgstr "Skapa Nycklar"
-#: frappe/public/js/frappe/views/reports/query_report.js:877
+#: frappe/public/js/frappe/views/reports/query_report.js:872
msgid "Generate New Report"
msgstr "Skapa Ny Rapport"
@@ -11280,7 +11113,7 @@ msgstr "Hämta Fält"
#: frappe/printing/doctype/letter_head/letter_head.js:32
msgid "Get Header and Footer wkhtmltopdf variables"
-msgstr "Hämta Sidhuvud och Sidfot wkhtmltopdf variabler"
+msgstr "Hämta Brevhuvud och Brevfot wkhtmltopdf variabler"
#: frappe/public/js/frappe/form/multi_select_dialog.js:86
msgid "Get Items"
@@ -11517,32 +11350,12 @@ msgstr "Google Kontakter - kunde inte uppdatera kontakt i Google Kontakter {0},
msgid "Google Contacts Id"
msgstr "Google Kontakter ID"
-#. Name of a DocType
-#. Label of the google_drive_section (Section Break) field in DocType 'Google
-#. Drive'
#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/google_drive/google_drive.json
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr "Google Drive"
-#: frappe/integrations/doctype/google_drive/google_drive.py:117
-msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}"
-msgstr "Google Drive - kunde inte skapa mapp i Google Drive - Felkod {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:132
-msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}"
-msgstr "Google Drive - kunde inte hitta mapp i Google Drive - Felkod {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:193
-msgid "Google Drive - Could not locate - {0}"
-msgstr "Google Drive - Kunde inte hitta - {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:204
-msgid "Google Drive Backup Successful."
-msgstr "Google Drive Säkerhetskopiering Klar."
-
#. Label of the section_break_7 (Section Break) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -11667,7 +11480,7 @@ msgstr "Gruppera Efter Typ"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408
msgid "Group By field is required to create a dashboard chart"
-msgstr "Gruppera Efter Fält erfodras för att skapa Översikt Panel"
+msgstr "Gruppera Efter Fält erfordras för att skapa Översikt Panel"
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
@@ -11848,12 +11661,12 @@ msgstr "HTML från bilaga {0}"
#. Label of the header_script (Code) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Header Script"
-msgstr "Sidhuvud Skript"
+msgstr "Brevhuvud Skript"
#. Label of the sb2 (Section Break) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Header and Breadcrumbs"
-msgstr "Sidhuvud och Brödsmulor"
+msgstr "Brevhuvud och Brödsmulor"
#. Label of the section_break_38 (Tab Break) field in DocType 'Website
#. Settings'
@@ -11863,7 +11676,7 @@ msgstr "Sidhuvud, Robotar"
#: frappe/printing/doctype/letter_head/letter_head.js:30
msgid "Header/Footer scripts can be used to add dynamic behaviours."
-msgstr "Skript för Sidhuvud/Sidfot kan användas för att lägga till dynamisk beteende."
+msgstr "Skript för Brevhuvud/Brevfot kan användas för att lägga till dynamisk beteende."
#. Label of the webhook_headers (Table) field in DocType 'Webhook'
#. Label of the headers (Code) field in DocType 'Webhook Request Log'
@@ -11872,6 +11685,10 @@ msgstr "Skript för Sidhuvud/Sidfot kan användas för att lägga till dynamisk
msgid "Headers"
msgstr "Huvud Rubriker"
+#: frappe/email/email_body.py:322
+msgid "Headers must be a dictionary"
+msgstr "Rubriker måste vara ordbok"
+
#. 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'
@@ -12195,17 +12012,17 @@ msgstr "Webbplats"
msgid "Home Settings"
msgstr "Webbplats Inställningar"
-#: frappe/core/doctype/file/test_file.py:330
-#: frappe/core/doctype/file/test_file.py:332
-#: frappe/core/doctype/file/test_file.py:396
+#: 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 "Hem/Test Mapp 1"
-#: frappe/core/doctype/file/test_file.py:385
+#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
msgstr "Hem/Test Mapp 1 / Test Mapp 3"
-#: frappe/core/doctype/file/test_file.py:341
+#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
msgstr "Hem/Test Mapp 2"
@@ -12250,7 +12067,7 @@ msgstr "Antar att du inte har tillgång till någon arbetsyta ännu, men du kan
#: frappe/core/doctype/data_import/importer.py:1177
#: frappe/core/doctype/data_import/importer.py:1242
#: frappe/core/doctype/data_import/importer.py:1245
-#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:50
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
#: frappe/public/js/frappe/list/list_settings.js:337
@@ -12262,7 +12079,7 @@ msgid "ID"
msgstr "ID"
#: frappe/desk/reportview.py:491
-#: frappe/public/js/frappe/views/reports/report_view.js:978
+#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
msgstr "ID"
@@ -12446,12 +12263,6 @@ msgstr "Om aktiverad, kommer Användare som loggar in från begränsad IP adress
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
msgstr "Om aktiverad kommer användarna att få meddelande varje gång de loggar in. Om inte aktiverad kommer användarna att få meddelande en gång."
-#. Description of the 'Backup Path' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "If it's empty, it will backup to the root of the bucket."
-msgstr "Om inte angiven kommer säkerhetskopia att skapas i roten av katalogen."
-
#. 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"
@@ -12582,16 +12393,12 @@ msgstr "Ignorera bifogade filer över denna storlek"
msgid "Ignored Apps"
msgstr "Ignorerade Appar"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:348
-msgid "Illegal Access Token. Please try again"
-msgstr "Ej Ttillåten Tillgång Token. Försök igen"
-
#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
msgstr "Ej Tillåten Dokument Status för {0}"
-#: frappe/model/db_query.py:451 frappe/model/db_query.py:454
-#: frappe/model/db_query.py:1128
+#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
+#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
msgstr "Ej Tillåten SQL Data förfråga"
@@ -12940,11 +12747,11 @@ 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:1592
+#: frappe/public/js/frappe/views/reports/query_report.js:1594
msgid "Include filters"
msgstr "Inkludera Filter"
-#: frappe/public/js/frappe/views/reports/query_report.js:1584
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Include indentation"
msgstr "Inkludera Fördjupning"
@@ -13011,11 +12818,11 @@ msgstr "Felaktig Användare eller Lösenord"
msgid "Incorrect Verification code"
msgstr "Felaktig Verifiering Kod"
-#: frappe/model/document.py:1542
+#: frappe/model/document.py:1541
msgid "Incorrect value in row {0}:"
msgstr "Felaktigt värde i rad {0}:"
-#: frappe/model/document.py:1544
+#: frappe/model/document.py:1543
msgid "Incorrect value:"
msgstr "Felaktigt värde:"
@@ -13024,10 +12831,10 @@ msgstr "Felaktigt värde:"
#. 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:53
+#: 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:999
+#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
msgstr "Index"
@@ -13102,7 +12909,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:1822
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
msgid "Insert After"
msgstr "Infoga Efter"
@@ -13118,7 +12925,7 @@ msgstr "Infoga Efter fält '{0}' som anges i Anpassad Fält '{1}', med Etikett '
msgid "Insert Below"
msgstr "Infoga Nedan"
-#: frappe/public/js/frappe/views/reports/report_view.js:384
+#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
msgstr "Infoga Kolumn Före {0}"
@@ -13167,11 +12974,11 @@ msgstr "Instruktioner"
msgid "Instructions Emailed"
msgstr "Instruktioner skickade per E-post"
-#: frappe/permissions.py:818
+#: frappe/permissions.py:827
msgid "Insufficient Permission Level for {0}"
msgstr "Otillräckliga Behörigheter för ändring av {0}"
-#: frappe/database/query.py:376
+#: frappe/database/query.py:383
msgid "Insufficient Permission for {0}"
msgstr "Otillräckliga Behörigheter för ändring av {0}"
@@ -13289,7 +13096,7 @@ msgstr "Ogiltig"
#: frappe/public/js/form_builder/utils.js:221
#: frappe/public/js/frappe/form/grid_row.js:833
#: frappe/public/js/frappe/form/layout.js:811
-#: frappe/public/js/frappe/views/reports/report_view.js:710
+#: frappe/public/js/frappe/views/reports/report_view.js:716
msgid "Invalid \"depends_on\" expression"
msgstr "Ogiltig 'depends_on' uttryck"
@@ -13329,7 +13136,7 @@ msgstr "Ogiltigt Datum"
msgid "Invalid DocType"
msgstr "Ogiltig DocType"
-#: frappe/database/query.py:102
+#: frappe/database/query.py:103
msgid "Invalid DocType: {0}"
msgstr "Ogiltig DocType: {0}"
@@ -13374,6 +13181,7 @@ msgid "Invalid Naming Series: {}"
msgstr "Ogiltig Nummer Serie: {}"
#: frappe/core/doctype/rq_job/rq_job.py:113
+#: frappe/core/doctype/rq_job/rq_job.py:122
msgid "Invalid Operation"
msgstr "Ogiltig Åtgärd"
@@ -13398,7 +13206,7 @@ msgstr "Ogiltig Åsidosättning"
msgid "Invalid Parameters."
msgstr "Ogiltiga Parametrar"
-#: frappe/core/doctype/user/user.py:1226 frappe/www/update-password.html:123
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
#: frappe/www/update-password.html:247
msgid "Invalid Password"
@@ -13427,7 +13235,7 @@ msgstr "Ogiltig Övergång"
#: frappe/core/doctype/file/file.py:220
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
-#: frappe/public/js/frappe/widgets/widget_dialog.js:589
+#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
msgstr "Ogiltig URL"
@@ -13448,11 +13256,11 @@ msgstr "Ogiltig Webbhook Hemlighet"
msgid "Invalid aggregate function"
msgstr "Ogiltig aggregatfunktion"
-#: frappe/public/js/frappe/views/reports/report_view.js:393
+#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "Ogiltig Kolumn"
-#: frappe/model/document.py:1015 frappe/model/document.py:1029
+#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "Ogiltig dokument status"
@@ -13476,7 +13284,7 @@ msgstr "Ogiltig Fält Namn '{0}' i automatisk namn"
msgid "Invalid file path: {0}"
msgstr "Ogiltig Sökväg: {0}"
-#: frappe/database/query.py:182
+#: frappe/database/query.py:189
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "Ogiltig Filter: {0}"
@@ -13502,7 +13310,7 @@ msgstr "Ogiltig eller skadat innehåll för import"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Ogiltigt omdirigering regex på rad #{}: {}"
-#: frappe/app.py:324
+#: frappe/app.py:317
msgid "Invalid request arguments"
msgstr "Ogiltiga begäran argument"
@@ -13686,7 +13494,7 @@ msgstr "Är Publicerad Fält måste vara giltig Fält Namn"
#. 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:328
+#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
msgstr "Är Dataförfråga Rapport"
@@ -13901,6 +13709,10 @@ msgstr "Jobb Status"
msgid "Job Stopped Successfully"
msgstr "Jobb Stoppad"
+#: frappe/core/doctype/rq_job/rq_job.py:121
+msgid "Job is in {0} state and can't be cancelled"
+msgstr "Jobb har {0} tillstånd och kan inte avbrytas"
+
#: frappe/core/doctype/rq_job/rq_job.py:113
msgid "Job is not running."
msgstr "Jobb Inaktiv"
@@ -13932,7 +13744,7 @@ msgstr "Anslagstavla"
#. 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:498
+#: frappe/public/js/frappe/widgets/widget_dialog.js:511
msgid "Kanban Board"
msgstr "Anslagstavla Bord"
@@ -14204,10 +14016,10 @@ msgstr "LDAP Inställningar felaktiga. validering svar var: {0}"
#: 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:300
-#: frappe/public/js/frappe/widgets/widget_dialog.js:453
-#: frappe/public/js/frappe/widgets/widget_dialog.js:630
-#: frappe/public/js/frappe/widgets/widget_dialog.js:663
+#: 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
@@ -14228,7 +14040,7 @@ msgstr "Etikett och Typ"
#: frappe/custom/doctype/custom_field/custom_field.py:145
msgid "Label is mandatory"
-msgstr "Etikett erfodras"
+msgstr "Etikett erfordras"
#. Label of the sb0 (Section Break) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -14292,11 +14104,6 @@ msgstr "Senaste 90 Dagar"
msgid "Last Active"
msgstr "Senast Aktiv"
-#. Label of the last_backup_on (Datetime) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Last Backup On"
-msgstr "Senaste Säkerhetskopiering"
-
#. 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"
@@ -14381,12 +14188,12 @@ msgstr "Senast Synkroniserad"
msgid "Last Synced On"
msgstr "Senast Synkroniserad"
-#: frappe/model/meta.py:55 frappe/public/js/frappe/model/meta.js:205
+#: 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 "Senast Uppdaterad Av"
-#: frappe/model/meta.py:54 frappe/public/js/frappe/model/meta.js:204
+#: 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 "Senast Uppdaterad"
@@ -14430,7 +14237,7 @@ msgid "Leave blank to repeat always"
msgstr "Lämna tom för ingen slut datum"
#: frappe/core/doctype/communication/mixins.py:207
-#: frappe/email/doctype/email_account/email_account.py:722
+#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
msgstr "Lämna denna konversation"
@@ -14546,7 +14353,7 @@ msgstr "Brevhuvud"
#. Label of the source (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Letter Head Based On"
-msgstr "Sidhuvud Baserad På"
+msgstr "Brevhuvud Baserad På"
#. Label of the letter_head_image_section (Section Break) field in DocType
#. 'Letter Head'
@@ -14649,7 +14456,7 @@ msgstr "Gillar på {0}: {1}"
msgid "Liked"
msgstr "Gillad"
-#: frappe/model/meta.py:58 frappe/public/js/frappe/model/meta.js:208
+#: 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 "Gillad Av"
@@ -14664,11 +14471,6 @@ msgstr "Gillar"
msgid "Limit"
msgstr "Begränsa"
-#. Label of the limit_no_of_backups (Check) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Limit Number of DB Backups"
-msgstr "Begränsa antal Databas Säkerhetskopior"
-
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14783,11 +14585,11 @@ msgstr "Länk Benämning"
#: 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:414
+#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
msgstr "Länk Till"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:350
+#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
msgstr "Länk Till i Rad"
@@ -14800,7 +14602,7 @@ msgstr "Länk Till i Rad"
msgid "Link Type"
msgstr "Länk Typ"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:346
+#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
msgstr "Länk Typ i Rad"
@@ -14952,7 +14754,7 @@ msgstr "Läs in mer"
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1085
+#: frappe/public/js/frappe/views/reports/query_report.js:1087
msgid "Loading"
msgstr "Laddar"
@@ -15083,7 +14885,7 @@ msgstr "Inloggning Sätt"
msgid "Login Page"
msgstr "Inloggning Sida"
-#: frappe/www/login.py:152
+#: frappe/www/login.py:156
msgid "Login To {0}"
msgstr "Logga in på {0}"
@@ -15097,7 +14899,7 @@ msgstr "Logga in och visa i Webbläsare"
#: frappe/website/doctype/web_form/web_form.js:367
msgid "Login is required to see web form list view. Enable {0} to see list settings"
-msgstr "Inloggning erfodras för att se webbformulär lista. Aktivera {0} för att se list inställningar"
+msgstr "Inloggning erfordras för att se webbformulär lista. Aktivera {0} för att se list inställningar"
#: frappe/templates/includes/login/login.js:69
msgid "Login link sent to your email"
@@ -15350,7 +15152,7 @@ msgstr "Erfordrad Beroende Av"
msgid "Mandatory Depends On (JS)"
msgstr "Erfodrad Beroende Av (JS)"
-#: frappe/website/doctype/web_form/web_form.py:473
+#: frappe/website/doctype/web_form/web_form.py:470
msgid "Mandatory Information missing:"
msgstr "Erfodrad Information saknas:"
@@ -15625,7 +15427,7 @@ msgid "Menu"
msgstr "Meny"
#: frappe/public/js/frappe/form/toolbar.js:242
-#: frappe/public/js/frappe/model/model.js:754
+#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "Slå samman med befintlig"
@@ -15804,13 +15606,13 @@ msgstr "Meta Benämning för SEO"
msgid "Method"
msgstr "Sätt"
-#: frappe/__init__.py:672
+#: frappe/__init__.py:679
msgid "Method Not Allowed"
msgstr "Metod ej Tillåten"
#: frappe/desk/doctype/number_card/number_card.py:73
msgid "Method is required to create a number card"
-msgstr "Sätt erfodras för att skapa nummerkort"
+msgstr "Sätt erfordras för att skapa nummerkort"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -15881,7 +15683,7 @@ msgstr "Felkonfigurerad"
msgid "Miss"
msgstr "Fröken"
-#: frappe/desk/form/meta.py:218
+#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
msgstr "Saknar DocType"
@@ -15906,7 +15708,7 @@ msgid "Missing Value"
msgstr "Värde Saknas"
#: frappe/public/js/frappe/ui/field_group.js:124
-#: frappe/public/js/frappe/widgets/widget_dialog.js:361
+#: 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"
@@ -16089,8 +15891,6 @@ msgstr "Månad"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -16098,7 +15898,6 @@ msgstr "Månad"
#: 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/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:400
#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
@@ -16270,7 +16069,7 @@ msgid "Mx"
msgstr "Mx"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:462
+#: frappe/website/doctype/web_form/web_form.py:459
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16379,7 +16178,7 @@ msgstr "Nummer Serie"
#: frappe/model/naming.py:260
msgid "Naming Series mandatory"
-msgstr "Nummer Serie erfodras"
+msgstr "Nummer Serie erfordras"
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#. Label of the top_bar (Section Break) field in DocType 'Website Settings'
@@ -16436,9 +16235,9 @@ msgstr "Navigation Inställningar"
#: frappe/desk/doctype/workspace/workspace.py:319
msgid "Need Workspace Manager role to edit private workspace of other users"
-msgstr "Arbetsyta Ansvarig roll erfodras för att redigera andra användares privat arbetsyta"
+msgstr "Arbetsyta Ansvarig roll erfordras för att redigera andra användares privat arbetsyta"
-#: frappe/model/document.py:793
+#: frappe/model/document.py:792
msgid "Negative Value"
msgstr "Negativ Värde"
@@ -16543,7 +16342,7 @@ msgstr "Ny Meddelande från Webbplats Kontakt Sida"
#. 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:762
+#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "Ny Namn"
@@ -16577,7 +16376,7 @@ msgstr "Ny Utskrift Format Namn"
msgid "New Quick List"
msgstr "Ny Snabb Lista"
-#: frappe/public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
msgstr "Ny Rapport Namn"
@@ -16633,26 +16432,26 @@ msgstr "Ny värde att ange"
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
#: frappe/public/js/frappe/form/toolbar.js:558
-#: frappe/public/js/frappe/model/model.js:661
+#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:379
+#: frappe/website/doctype/web_form/web_form.py:376
msgid "New {0}"
msgstr "Ny {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:394
+#: frappe/public/js/frappe/views/reports/query_report.js:392
msgid "New {0} Created"
msgstr "Ny {0} skapad"
-#: frappe/public/js/frappe/views/reports/query_report.js:386
+#: frappe/public/js/frappe/views/reports/query_report.js:384
msgid "New {0} {1} added to Dashboard {2}"
msgstr "Ny {0} {1} har lagts till i Översikt Panel {2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:391
+#: frappe/public/js/frappe/views/reports/query_report.js:389
msgid "New {0} {1} created"
msgstr "Ny {0} {1} skapad"
@@ -16664,7 +16463,7 @@ msgstr "Ny {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "Nya {} versioner för följande appar finns tillgängliga"
-#: frappe/core/doctype/user/user.py:802
+#: frappe/core/doctype/user/user.py:804
msgid "Newly created user {0} has no roles enabled."
msgstr "Nyskapad användare {0} har inga roller aktiverade."
@@ -16826,7 +16625,7 @@ msgstr "Nästa på Klick"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Nej"
@@ -16967,7 +16766,7 @@ msgstr "Inga Träffar"
msgid "No Results found"
msgstr "Inga Träffar"
-#: frappe/core/doctype/user/user.py:803
+#: frappe/core/doctype/user/user.py:805
msgid "No Roles Specified"
msgstr "Inga Roller Specificerade"
@@ -17118,7 +16917,7 @@ msgstr "Antal Rader (Max 500)"
msgid "No of Sent SMS"
msgstr "Antal Skickade SMS"
-#: frappe/__init__.py:827 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Ingen Behörighet för {0}"
@@ -17127,7 +16926,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "Behörigheter saknas att '{0}' {1}"
-#: frappe/model/db_query.py:949
+#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
msgstr "Behörigheter saknas att läsa {0}"
@@ -17211,12 +17010,6 @@ msgstr "Ej Negativ"
msgid "Non-Conforming"
msgstr "Ej Kompatibel"
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "None"
-msgstr "Ingen"
-
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr "Ingen: Slut på Arbetsflöde"
@@ -17231,7 +17024,7 @@ msgstr "Normaliserade Kopior"
msgid "Normalized Query"
msgstr "Normaliserad Fråga"
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "Ej Tillåtet"
@@ -17252,7 +17045,7 @@ msgstr "Ej Underordnad Av"
msgid "Not Equals"
msgstr "Inte Lika"
-#: frappe/app.py:374 frappe/www/404.html:3
+#: frappe/app.py:367 frappe/www/404.html:3
msgid "Not Found"
msgstr "Hittades Inte"
@@ -17278,9 +17071,9 @@ msgstr "Ej Länkad till någon post"
msgid "Not Nullable"
msgstr "Ej Nollställbar"
-#: frappe/__init__.py:754 frappe/app.py:367 frappe/desk/calendar.py:26
+#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:711
+#: frappe/website/doctype/web_form/web_form.py:708
#: 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
@@ -17301,7 +17094,7 @@ msgstr "Ej Publicerad"
#: frappe/public/js/frappe/form/toolbar.js:813
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
-#: frappe/public/js/frappe/views/reports/report_view.js:197
+#: frappe/public/js/frappe/views/reports/report_view.js:203
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
@@ -17332,7 +17125,7 @@ msgstr "Ej Angiven"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "Ej giltig Komma Separerad Värde (CSV Fil)"
-#: frappe/core/doctype/user/user.py:264
+#: frappe/core/doctype/user/user.py:265
msgid "Not a valid User Image."
msgstr "Ej giltig Användare Bild."
@@ -17348,7 +17141,7 @@ msgstr "Ej giltig Användare"
msgid "Not active"
msgstr "Inte Aktiv"
-#: frappe/permissions.py:360
+#: frappe/permissions.py:370
msgid "Not allowed for {0}: {1}"
msgstr "Ej tillåtet för {0}: {1}"
@@ -17368,7 +17161,7 @@ msgstr "Ej Tillåtet att skriva ut annullerade dokument"
msgid "Not allowed to print draft documents"
msgstr "Ej Tillåtet att skriva ut utkast av dokument"
-#: frappe/permissions.py:212
+#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
msgstr "Ej Tillåtet via kontroll behörighet koll"
@@ -17384,12 +17177,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:214
+#: frappe/core/doctype/system_settings/system_settings.py:215
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:724
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "Ej Tillåtet"
@@ -17415,15 +17208,6 @@ msgstr "Avisering Visad Av"
msgid "Note:"
msgstr "Notera:"
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'Dropbox Settings'
-#. Description of the 'Send Email for Successful backup' (Check) field in
-#. DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Note: By default emails for failed backups are sent."
-msgstr "Obs: Som standard skickas E-post meddelande för misslyckade säkerhetskopior."
-
#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "Obs: Om du ändrar sidnamn bryts tidigare URL till den här sidan."
@@ -17483,13 +17267,10 @@ msgstr "Inget att uppdatera"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
#. Name of a DocType
-#. Label of the notification_section (Section Break) field in DocType 'S3
-#. Backup Settings'
#: 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
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Notification"
msgstr "Aviseringar"
@@ -17591,7 +17372,7 @@ msgstr "Nummer"
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:615
+#: frappe/public/js/frappe/widgets/widget_dialog.js:628
msgid "Number Card"
msgstr "Nummer Kort"
@@ -17609,7 +17390,7 @@ msgstr "Nummer Kort Namn"
#. 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:645
+#: frappe/public/js/frappe/widgets/widget_dialog.js:658
msgid "Number Cards"
msgstr "Nummer Kort"
@@ -17627,15 +17408,6 @@ msgstr "Nummer Format"
msgid "Number of Backups"
msgstr "Antal Säkerhetskopior"
-#. Label of the no_of_backups (Int) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Number of DB Backups"
-msgstr "Antal Databas Säkerhetskopior"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:54
-msgid "Number of DB backups cannot be less than 1"
-msgstr "Antal Databas Säkerhetskopior kan inte vara mindre än 1"
-
#. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Number of Groups"
@@ -17651,7 +17423,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:169
+#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
msgstr "Antal säkerhetskopior måste vara än noll."
@@ -17761,7 +17533,7 @@ msgstr "OTP Hemlighet Återställning - {0}"
#: frappe/twofactor.py:464
msgid "OTP Secret has been reset. Re-registration will be required on next login."
-msgstr "OTP Hemlighet är återställd. Omgistrering erfodras vid nästa inloggning."
+msgstr "OTP Hemlighet är återställd. Registrering erfordras vid nästa inloggning."
#: frappe/templates/includes/login/login.js:355
msgid "OTP setup using OTP App was not completed. Please contact Administrator."
@@ -17880,7 +17652,7 @@ msgstr "{0}, {1} skrev"
#. 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:322
+#: frappe/public/js/frappe/widgets/widget_dialog.js:335
msgid "Onboard"
msgstr "Introduktion"
@@ -17976,19 +17748,13 @@ msgstr "Endast Workspace Manager kan redigera offentliga arbetsytor"
msgid "Only allowed to export customizations in developer mode"
msgstr "Endast tillåtet att exportera anpassningar i utvecklarläge"
-#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Only change this if you want to use other S3 compatible object storage backends."
-msgstr "Ändra endast detta om du vill använda andra S3-kompatibla objekt lagring backends."
-
-#: frappe/model/document.py:1232
+#: frappe/model/document.py:1231
msgid "Only draft documents can be discarded"
msgstr "Endast utkast dokument kan ångras"
#. 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:315
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
msgstr "Endast för"
@@ -18237,7 +18003,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:870
+#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
msgstr "Alternativ inte angiven för länk fält {0}"
@@ -18349,7 +18115,7 @@ msgstr "PATCH"
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1742
+#: frappe/public/js/frappe/views/reports/query_report.js:1744
msgid "PDF"
msgstr "PDF"
@@ -18595,7 +18361,7 @@ msgstr "Överordnad Dokument Typ"
#: frappe/desk/doctype/number_card/number_card.py:65
msgid "Parent Document Type is required to create a number card"
-msgstr "Överordnad Dokument Typ erfodras för att skapa nummerkort"
+msgstr "Överordnad Dokument Typ erfordras för att skapa nummerkort"
#. Label of the parent_element_selector (Data) field in DocType 'Form Tour
#. Step'
@@ -18638,7 +18404,7 @@ msgstr "Överordnad Tabell"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:404
msgid "Parent document type is required to create a dashboard chart"
-msgstr "Överordnad Dokument Typ erfodras för att skapa ett Översikt Panel Diagram"
+msgstr "Överordnad Dokument Typ erfordras för att skapa ett Översikt Panel 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."
@@ -18648,13 +18414,13 @@ msgstr "Överordnad är namn på dokument som data kommer att läggas till."
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr "Gruppering av överordnad till underordnad eller underordnad till överordnad är inte tillåten."
-#: frappe/permissions.py:798
+#: frappe/permissions.py:807
msgid "Parentfield not specified in {0}: {1}"
msgstr "Överordnad fält är inte specificerad i {0}: {1}"
#: frappe/client.py:467
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
-msgstr "Överordnad typ, Överordnad och Överordnad fält erfodras för att infoga underordnad post"
+msgstr "Överordnad typ, Överordnad och Överordnad fält erfordras för att infoga underordnad post"
#. Label of the partial (Check) field in DocType 'Personal Data Deletion Step'
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
@@ -18708,11 +18474,11 @@ msgstr "Passiv"
msgid "Password"
msgstr "Lösenord"
-#: frappe/core/doctype/user/user.py:1079
+#: frappe/core/doctype/user/user.py:1081
msgid "Password Email Sent"
msgstr "Lösenord skickat via E-post"
-#: frappe/core/doctype/user/user.py:457
+#: frappe/core/doctype/user/user.py:458
msgid "Password Reset"
msgstr "Lösenord Återställning"
@@ -18736,7 +18502,7 @@ msgstr "Lösenord för Bas DN"
#: frappe/email/doctype/email_account/email_account.py:189
msgid "Password is required or select Awaiting Password"
-msgstr "Lösenord erfodras eller välj Väntar på Lösenord"
+msgstr "Lösenord erfordras eller välj Väntar på Lösenord"
#: frappe/public/js/frappe/desk.js:212
msgid "Password missing in Email Account"
@@ -18746,7 +18512,7 @@ msgstr "Lösenord saknas i E-post Konto"
msgid "Password not found for {0} {1} {2}"
msgstr "Lösenord hittades inte för {0} {1} {2}"
-#: frappe/core/doctype/user/user.py:1078
+#: frappe/core/doctype/user/user.py:1080
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Instruktioner för återställning av lösenord är skickade till {}'s e-post"
@@ -18758,7 +18524,7 @@ msgstr "Lösenord angiven"
msgid "Password size exceeded the maximum allowed size"
msgstr "Lösenord längd överskred maximum tillåten längd."
-#: frappe/core/doctype/user/user.py:869
+#: frappe/core/doctype/user/user.py:871
msgid "Password size exceeded the maximum allowed size."
msgstr "Lösenord längd överskred maximum tillåten längd."
@@ -18915,7 +18681,7 @@ msgstr "Annullera {0}? "
msgid "Permanently Submit {0}?"
msgstr "Godkänn {0}?"
-#: frappe/public/js/frappe/model/model.js:733
+#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
msgstr "Permanent ta bort {0}?"
@@ -19076,8 +18842,8 @@ 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:40
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
-#: frappe/public/js/frappe/views/reports/report_view.js:1576
+#: frappe/public/js/frappe/views/reports/report_view.js:1579
+#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
msgstr "Välj Kolumner"
@@ -19117,7 +18883,7 @@ msgstr "Vanlig Text"
msgid "Plant"
msgstr "Anläggning"
-#: frappe/email/doctype/email_account/email_account.py:546
+#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
msgstr "Auktorisera OAuth för E-post Konto {0}"
@@ -19133,7 +18899,7 @@ msgstr "Kopiera Webbplats Tema för att anpassa."
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "Installera ldap3 bibliotek via pip3 för att använda ldap funktion."
-#: frappe/public/js/frappe/views/reports/query_report.js:309
+#: frappe/public/js/frappe/views/reports/query_report.js:307
msgid "Please Set Chart"
msgstr "Skapa Diagram"
@@ -19149,7 +18915,7 @@ msgstr "Lägg till ämne i E-post"
msgid "Please add a valid comment."
msgstr "Lägg till giltig kommentar."
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1063
msgid "Please ask your administrator to verify your sign-up"
msgstr "Be Administratör att verifiera din registrering"
@@ -19177,11 +18943,11 @@ msgstr "Kontrollera OpenID Configuration URL"
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:946
+#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "Kontrollera värde för uppsättning 'Hämta från' för fält {0}"
-#: frappe/core/doctype/user/user.py:1059
+#: frappe/core/doctype/user/user.py:1061
msgid "Please check your email for verification"
msgstr "Kontrollera din E-post för verifiering"
@@ -19209,10 +18975,6 @@ msgstr "Klicka på följande länk och följ instruktioner från denna sida. {0}
msgid "Please click on the following link to set your new password"
msgstr "Klicka på följande länk för att ange ny lösenord"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:343
-msgid "Please close this window"
-msgstr "Stäng detta fönster"
-
#: frappe/www/confirm_workflow_action.html:4
msgid "Please confirm your action to {0} this document."
msgstr "Bekräfta åtgärd till {0} detta dokument."
@@ -19229,7 +18991,7 @@ msgstr "Skapa Kort först"
msgid "Please create chart first"
msgstr "Skapa Diagram först"
-#: frappe/desk/form/meta.py:214
+#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
msgstr "Ta bort fält från {0} eller lägg till erfodrad doctype."
@@ -19241,7 +19003,7 @@ msgstr "Ändra inte mall huvud rubriker."
msgid "Please duplicate this to make changes"
msgstr "Kopiera för att göra ändringar"
-#: frappe/core/doctype/system_settings/system_settings.py:162
+#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr "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."
@@ -19259,7 +19021,7 @@ msgstr "Aktivera PopUp"
msgid "Please enable pop-ups in your browser"
msgstr "Aktivera popup fönster i webbläsare"
-#: frappe/integrations/google_oauth.py:53
+#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
msgstr "Aktivera {} innan du fortsätter."
@@ -19336,7 +19098,7 @@ msgstr "Logga in för att lämna kommentar."
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."
-#: frappe/model/document.py:987
+#: frappe/model/document.py:986
msgid "Please refresh to get the latest document."
msgstr "Uppdatera för att se senaste dokument."
@@ -19360,7 +19122,7 @@ msgstr "Spara dokument före tilldelning"
msgid "Please save the document before removing assignment"
msgstr "Spara dokument före radering av tilldelning"
-#: frappe/public/js/frappe/views/reports/report_view.js:1703
+#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
msgstr "Spara Rapport"
@@ -19376,11 +19138,11 @@ msgstr "Välj DocType"
msgid "Please select Entity Type first"
msgstr "Välj Entitet Typ"
-#: frappe/core/doctype/system_settings/system_settings.py:112
+#: frappe/core/doctype/system_settings/system_settings.py:113
msgid "Please select Minimum Password Score"
msgstr "Välj Minsta Lösenord Värde"
-#: frappe/public/js/frappe/views/reports/query_report.js:1181
+#: frappe/public/js/frappe/views/reports/query_report.js:1183
msgid "Please select X and Y fields"
msgstr "Välj X och Y fält"
@@ -19408,7 +19170,7 @@ msgstr "Välj giltig datum filter"
msgid "Please select applicable Doctypes"
msgstr "Välj tillämpliga DocTypes"
-#: frappe/model/db_query.py:1140
+#: frappe/model/db_query.py:1141
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"
@@ -19430,10 +19192,6 @@ msgstr "Välj LDAP Katalog Server"
msgid "Please select {0}"
msgstr "Välj {0}"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:305
-msgid "Please set Dropbox access keys in site config or doctype"
-msgstr "Ange Dropbox Åtkomst Nycklar i Inställningar eller DocType"
-
#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
msgstr "Ange E-postadress"
@@ -19442,7 +19200,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:1404
+#: frappe/public/js/frappe/views/reports/query_report.js:1406
msgid "Please set filters"
msgstr "Ange Filter"
@@ -19462,7 +19220,7 @@ msgstr "Ange följande dokument i Översikt Panel som standard."
msgid "Please set the series to be used."
msgstr "Ange Nummer Serie som ska användas"
-#: frappe/core/doctype/system_settings/system_settings.py:125
+#: frappe/core/doctype/system_settings/system_settings.py:126
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"
@@ -19470,19 +19228,19 @@ msgstr "Konfigurera SMS före du anger den som Autentisering Sätt via SMS Inst
msgid "Please setup a message first"
msgstr "Försäljning Order Meddelande"
-#: frappe/core/doctype/user/user.py:422
+#: frappe/core/doctype/user/user.py:423
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "Ange Standard E-post Konto från Inställningar > E-post > E-post Konto"
-#: frappe/email/doctype/email_account/email_account.py:434
+#: frappe/email/doctype/email_account/email_account.py:432
msgid "Please setup default outgoing Email Account from Tools > Email Account"
msgstr "Ange standard utgående e-postkonto från Verktyg > E-postkonto"
-#: frappe/public/js/frappe/model/model.js:823
+#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
msgstr "Specificera"
-#: frappe/permissions.py:774
+#: frappe/permissions.py:783
msgid "Please specify a valid parent DocType for {0}"
msgstr "Ange giltig överordnad DocType för {0}"
@@ -19511,7 +19269,7 @@ msgstr "Ange Värde Fält som måste kontrolleras"
msgid "Please try again"
msgstr "Försök igen"
-#: frappe/integrations/google_oauth.py:56
+#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
msgstr "Uppdatera {} innan du fortsätter."
@@ -19824,8 +19582,8 @@ msgstr "Primär nyckel för doctype {0} kan inte ändras eftersom det finns befi
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1728
-#: frappe/public/js/frappe/views/reports/report_view.js:1531
+#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "Utskrift"
@@ -20068,7 +19826,7 @@ msgstr "Tips: Lägg Referens: {{ reference_doctype }} {{ reference_name }}
msgid "Proceed"
msgstr "Fortsätt"
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
msgstr "Fortsätt Ändå"
@@ -20389,7 +20147,7 @@ msgstr "Dataförfråga måste vara av typen SELECT eller skrivskyddad WITH."
msgid "Queue"
msgstr "Kö"
-#: frappe/utils/background_jobs.py:729
+#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
msgstr "Kö Överbelastad"
@@ -20410,7 +20168,7 @@ msgstr "Kö Typ(er)"
msgid "Queue in Background (BETA)"
msgstr "Kö i Bakgrund (Beta)"
-#: frappe/utils/background_jobs.py:554
+#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
msgstr "Kö ska vara en av {0}"
@@ -20443,12 +20201,6 @@ msgstr "I Kö Av"
msgid "Queued for Submission. You can track the progress over {0}."
msgstr "I Kö för Godkännade. Du kan spåra framsteg över {0}."
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:65
-#: frappe/integrations/doctype/google_drive/google_drive.py:153
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:86
-msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr "I Kö för Säkerhetskopiering. Det kan ta mellan några minuter till en timme."
-
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
msgstr "I Kö för Säkerhetskopiering. Du kommer att få E-post meddelande med hämtning länk"
@@ -20584,7 +20336,7 @@ msgstr "Direkt Utskrift Inställningar "
msgid "Re-Run in Console"
msgstr "Kör igen i Konsol"
-#: frappe/email/doctype/email_account/email_account.py:728
+#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
msgstr "Sv:"
@@ -20686,7 +20438,7 @@ msgstr "Realtid (SocketIO)"
msgid "Reason"
msgstr "Anledning"
-#: frappe/public/js/frappe/views/reports/query_report.js:889
+#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
msgstr "Uppdatera"
@@ -20896,7 +20648,7 @@ msgstr "Referens DocType"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26
msgid "Reference DocType and Reference Name are required"
-msgstr "Referens DocType och Referens Namn erfodras"
+msgstr "Referens DocType och Referens Namn erfordras"
#. Label of the ref_docname (Dynamic Link) field in DocType 'Submission Queue'
#. Label of the reference_docname (Dynamic Link) field in DocType 'Discussion
@@ -21051,11 +20803,11 @@ msgid "Referrer"
msgstr "Referens"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:548
+#: frappe/public/js/frappe/desk.js:556
#: 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:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1719
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21074,12 +20826,10 @@ msgstr "Uppdatera Google Sheet"
#. 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 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
@@ -21096,7 +20846,7 @@ msgstr "Uppdaterar"
msgid "Refreshing..."
msgstr "Uppdaterar..."
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
msgstr "Registrerad men inaktiverad"
@@ -21259,7 +21009,7 @@ msgstr "Borttagen"
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
#: frappe/public/js/frappe/form/toolbar.js:432
-#: frappe/public/js/frappe/model/model.js:772
+#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
msgstr "Ändra Namn"
@@ -21269,7 +21019,7 @@ msgstr "Ändra Namn"
msgid "Rename Fieldname"
msgstr "Ändra Fältnamn"
-#: frappe/public/js/frappe/model/model.js:759
+#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
msgstr "Ändra Namn {0}"
@@ -21293,7 +21043,7 @@ msgstr "Upprepa"
#. 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 "Upprepa Sidhuvud och Sidfot"
+msgstr "Upprepa Brevhuvud och Brevfot"
#. Label of the repeat_on (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
@@ -21333,7 +21083,7 @@ msgstr "Upprepningar som 'AAA' är lätt att gissa"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "Upprepningar som 'abcabcabc' är endast något svårare att gissa än 'abc'"
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:146
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
msgstr "Upprepas {0}"
@@ -21471,13 +21221,13 @@ 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:1902
+#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
msgstr "Rapport Namn"
#: frappe/desk/doctype/number_card/number_card.py:69
msgid "Report Name, Report Field and Fucntion are required to create a number card"
-msgstr "Rapport Namn, Rapport Fält och Funktion erfodras för att skapa nummerkort"
+msgstr "Rapport Namn, Rapport Fält och Funktion erfordras för att skapa nummerkort"
#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Link'
#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Shortcut'
@@ -21523,7 +21273,7 @@ msgstr "Rapport har ingen data, ändra filter eller ändra rapport namn"
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Rapport har inga numeriska fält, ändra rapport namn"
-#: frappe/public/js/frappe/views/reports/query_report.js:1009
+#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
msgstr "Rapport initierad, klicka för att se status"
@@ -21539,11 +21289,11 @@ msgstr "Rapport förföll."
msgid "Report updated successfully"
msgstr "Rapport är uppdaterad"
-#: frappe/public/js/frappe/views/reports/report_view.js:1351
+#: frappe/public/js/frappe/views/reports/report_view.js:1357
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:1940
+#: frappe/public/js/frappe/views/reports/query_report.js:1942
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."
@@ -21579,7 +21329,7 @@ msgstr "Rapporter"
msgid "Reports & Masters"
msgstr "Rapporter & Inställningar"
-#: frappe/public/js/frappe/views/reports/query_report.js:925
+#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
msgstr "Rapporter redan i Kö"
@@ -22029,7 +21779,7 @@ msgstr "Rollreplikering"
msgid "Role and Level"
msgstr "Roll och Nivå"
-#: frappe/core/doctype/user/user.py:363
+#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
msgstr "Rollen angiven enligt användare typ {0}"
@@ -22144,7 +21894,7 @@ msgstr "Sökväg Omdirigeringar"
msgid "Route: Example \"/app\""
msgstr "Sökväg: Exempel \"/app\""
-#: frappe/model/base_document.py:855 frappe/model/document.py:778
+#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
msgstr "Rad"
@@ -22157,13 +21907,13 @@ msgstr "Rad #"
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:977
+#: frappe/model/base_document.py:982
msgid "Row #{0}:"
msgstr "Rad # {0}:"
#: frappe/core/doctype/doctype/doctype.py:491
msgid "Row #{}: Fieldname is required"
-msgstr "Rad # {}: Fältnamn erfodras"
+msgstr "Rad # {}: Fältnamn erfordras"
#. Label of the row_format (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -22235,7 +21985,7 @@ msgstr "Regel"
msgid "Rule Conditions"
msgstr "Regel Villkor"
-#: frappe/permissions.py:653
+#: frappe/permissions.py:662
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Regel för denna kombination av doctype, roll, åtkomstnivå och om ansvarig redan finns."
@@ -22279,23 +22029,6 @@ msgstr "Körtid i Minuter"
msgid "Runtime in Seconds"
msgstr "Körtid i Sekunder"
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "S3 Backup Settings"
-msgstr "S3 Säkerhetskopia Inställningar"
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
-msgid "S3 Backup complete!"
-msgstr "S3 Säkerhetskopia klar!"
-
-#. Label of the s3_bucket_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Bucket Details"
-msgstr "S3 Skop Detaljer"
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
@@ -22338,7 +22071,7 @@ msgstr "SMS inte skickad. Kontakta Administratör."
#: frappe/email/doctype/email_account/email_account.py:212
msgid "SMTP Server is required"
-msgstr "SMTP Server erfodras"
+msgstr "SMTP Server erfordras"
#. Option for the 'Type' (Select) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
@@ -22436,7 +22169,7 @@ msgstr "Lördag"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/page/print/print.js:858
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/quick_entry.js:185
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
@@ -22446,8 +22179,8 @@ msgstr "Lördag"
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
-#: frappe/public/js/frappe/views/reports/query_report.js:1894
-#: frappe/public/js/frappe/views/reports/report_view.js:1720
+#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
@@ -22464,8 +22197,8 @@ msgstr "Spara API Hemlighet: {0}"
msgid "Save Anyway"
msgstr "Spara Ändå"
-#: frappe/public/js/frappe/views/reports/report_view.js:1382
-#: frappe/public/js/frappe/views/reports/report_view.js:1727
+#: frappe/public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
msgstr "Spara Som"
@@ -22473,7 +22206,7 @@ msgstr "Spara Som"
msgid "Save Customizations"
msgstr "Spara Anpassningar"
-#: frappe/public/js/frappe/views/reports/query_report.js:1897
+#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
msgstr "Spara Rapport"
@@ -22639,7 +22372,7 @@ msgstr "Schemaläggare Inaktiv"
msgid "Scheduler Status"
msgstr "Schemaläggare Status"
-#: frappe/utils/scheduler.py:249
+#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr "Schemaläggare kan inte återaktiveras när underhåll läge är aktiv."
@@ -22865,7 +22598,7 @@ msgstr "Säkerhet Inställningar"
msgid "See all Activity"
msgstr "Visa All Aktivitet"
-#: frappe/public/js/frappe/views/reports/query_report.js:858
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "See all past reports."
msgstr "Visa alla tidigare rapporter."
@@ -22945,7 +22678,7 @@ msgstr "Välj Bilagor"
msgid "Select Child Table"
msgstr "Välj Undertabell"
-#: frappe/public/js/frappe/views/reports/report_view.js:377
+#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
msgstr "Välj Kolumn"
@@ -23262,31 +22995,11 @@ msgstr "Skicka E-post Bilagor som PDF (Rekommenderas)"
msgid "Send Email To Creator"
msgstr "Skicka e-post till Ägare"
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Dropbox Settings'
-#. Label of the send_email_for_successful_backup (Check) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Email for Successful Backup"
-msgstr "Skicka E-post för Säkerhetskopiering Klar"
-
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Email for Successful backup"
-msgstr "Skicka E-post för Säkerhetskopiering Klar"
-
#. 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 "Skicka Kopia till mig av Utgående E-post"
-#. Label of the email (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Notification To"
-msgstr "Skicka Avisering till"
-
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -23303,14 +23016,6 @@ msgstr "Skicka Avisering för Dokument på min Följ Lista"
msgid "Send Notifications For Email Threads"
msgstr "Skicka Avisering för E-post Trådar"
-#. Label of the send_notifications_to (Data) field in DocType 'Dropbox
-#. Settings'
-#. Label of the notify_email (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Notifications To"
-msgstr "Skicka Aviseringar till"
-
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
msgstr "Skicka Nu"
@@ -23569,7 +23274,7 @@ msgstr "Nummer Serie {0} används redan i {1}"
msgid "Server Action"
msgstr "Server Åtgärd"
-#: frappe/app.py:383 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Server Fel"
@@ -23635,7 +23340,7 @@ msgstr "Session Inställningar"
msgid "Session Defaults Saved"
msgstr "Session Inställningar Sparade"
-#: frappe/app.py:360
+#: frappe/app.py:353
msgid "Session Expired"
msgstr "Session Förföll"
@@ -23644,7 +23349,7 @@ msgstr "Session Förföll"
msgid "Session Expiry (idle timeout)"
msgstr "Session Förfaller (Tid av Inaktivitet)"
-#: frappe/core/doctype/system_settings/system_settings.py:119
+#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
msgstr "Session Förfallo tid måste vara i format {0}"
@@ -23667,7 +23372,7 @@ msgstr "Ange"
msgid "Set Banner from Image"
msgstr "Ange Banderoll från Bild"
-#: frappe/public/js/frappe/views/reports/query_report.js:201
+#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
msgstr "Skapa Diagram"
@@ -23693,7 +23398,7 @@ msgstr "Ange Filter"
msgid "Set Filters for {0}"
msgstr "Ange Filter för {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
msgstr "Ange Nivå"
@@ -23935,8 +23640,8 @@ 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:1763
-#: frappe/public/js/frappe/views/reports/report_view.js:1698
+#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Automatisk E-post Rapport"
@@ -24032,6 +23737,15 @@ msgstr "Visa"
msgid "Show \"Call to Action\" in Blog"
msgstr "Visa \"Funktion Knapp\" i Blogg"
+#. 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 "Visa Absolut Datum och Tid i Tidslinjen"
+
#. Label of the absolute_value (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Absolute Values"
@@ -24202,7 +23916,7 @@ msgstr "Visa Benämning"
msgid "Show Title in Link Fields"
msgstr "Visa Benämning i Länk Fält"
-#: frappe/public/js/frappe/views/reports/report_view.js:1521
+#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
msgstr "Visa Totalt"
@@ -24312,7 +24026,7 @@ msgstr "Visar Benämning i webbläsare fönster som 'Prefix - Benämning'"
msgid "Show {0} List"
msgstr "Visa {0} Lista"
-#: frappe/public/js/frappe/views/reports/report_view.js:495
+#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
msgstr "Visar endast Numeriska fält från Rapport"
@@ -24347,7 +24061,7 @@ msgstr "Sidofält och Kommentarer"
msgid "Sign Up and Confirmation"
msgstr "Registrering och Bekräftelse"
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
msgstr "Registrering är inaktiverad"
@@ -24992,7 +24706,7 @@ msgstr "Statistik Tid Intervall"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
-#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: frappe/public/js/frappe/views/reports/report_view.js:975
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
@@ -25291,7 +25005,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:1166
+#: frappe/public/js/frappe/form/grid.js:1170
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25388,7 +25102,7 @@ msgstr "Föreslå Optimeringar"
msgid "Suggested Indexes"
msgstr "Föreslagen Indexering"
-#: frappe/core/doctype/user/user.py:720
+#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
msgstr "Föreslagen Användarnamn: {0}"
@@ -25678,11 +25392,9 @@ msgstr "System Logg"
#: frappe/geo/doctype/country/country.json
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/connected_app/connected_app.json
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.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_drive/google_drive.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
@@ -25691,7 +25403,6 @@ msgstr "System Logg"
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_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
@@ -25722,7 +25433,7 @@ msgstr "System Ansvarig"
#: frappe/desk/page/backups/backups.js:38
msgid "System Manager privileges required."
-msgstr "System Ansvarig behörigheter erfodras."
+msgstr "System Ansvarig behörigheter erfordras."
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
@@ -25816,11 +25527,11 @@ msgstr "Tabell FlerVal"
msgid "Table Trimmed"
msgstr "Tabell Optimerad"
-#: frappe/public/js/frappe/form/grid.js:1165
+#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
msgstr "Tabell Uppdaterad"
-#: frappe/model/document.py:1565
+#: frappe/model/document.py:1564
msgid "Table {0} cannot be empty"
msgstr "Tabell {0} kan inte vara tom"
@@ -25839,7 +25550,7 @@ msgstr "Tagg"
msgid "Tag Link"
msgstr "Tagg Länk"
-#: frappe/model/meta.py:57
+#: 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
@@ -25851,15 +25562,6 @@ msgstr "Tagg Länk"
msgid "Tags"
msgstr "Taggar"
-#: frappe/integrations/doctype/google_drive/google_drive.js:29
-msgid "Take Backup"
-msgstr "Ta Säkerhetskopia"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
-msgid "Take Backup Now"
-msgstr "Ta Säkerhetskopia Nu"
-
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
msgstr "Ta Foto"
@@ -25937,12 +25639,12 @@ msgstr "Mall Varningar"
msgid "Templates"
msgstr "Mallar"
-#: frappe/core/doctype/user/user.py:1027
+#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
msgstr "Tillfälligt Inaktiverad"
-#: frappe/core/doctype/translation/test_translation.py:56
-#: frappe/core/doctype/translation/test_translation.py:63
+#: frappe/core/doctype/translation/test_translation.py:47
+#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
msgstr "Testdata"
@@ -25951,8 +25653,8 @@ msgstr "Testdata"
msgid "Test Job ID"
msgstr "Test Jobb ID"
-#: frappe/core/doctype/translation/test_translation.py:58
-#: frappe/core/doctype/translation/test_translation.py:66
+#: frappe/core/doctype/translation/test_translation.py:49
+#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
msgstr "Testa Spanska"
@@ -25960,7 +25662,7 @@ msgstr "Testa Spanska"
msgid "Test email sent to {0}"
msgstr "Test E-post skickad till {0}"
-#: frappe/core/doctype/file/test_file.py:388
+#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Test Mapp"
@@ -26043,7 +25745,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:1188
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
msgstr "CSV format är skiftläge känslig"
@@ -26135,11 +25837,11 @@ msgstr "Dokument är tilldelad till {0}"
#: 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 "Vald Dokument Typ är underordnad tabell, så överordnad Dokument Typ erfodras."
+msgstr "Vald Dokument Typ är underordnad tabell, så överordnad Dokument Typ erfordras."
#: frappe/core/doctype/user_type/user_type.py:110
msgid "The field {0} is mandatory"
-msgstr "Fält {0} erfodras"
+msgstr "Fält {0} erfordras"
#: frappe/core/doctype/file/file.py:145
msgid "The fieldname you've specified in Attached To Field is invalid"
@@ -26151,7 +25853,7 @@ msgstr "Följande Tilldelning Dagar är återkommande: {0}"
#: frappe/printing/doctype/letter_head/letter_head.js:30
msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'"
-msgstr "Följande Sidhuvud Skript kommer att lägga till aktuell datum till ett element i \"Sidhuvud HTML\" med klass \"header-content\""
+msgstr "Följande Brevhuvud Skript kommer att lägga till aktuell datum till ett element i \"Brevhuvud HTML\" med klass \"header-content\""
#: frappe/core/doctype/data_import/importer.py:1086
msgid "The following values are invalid: {0}. Values must be one of {1}"
@@ -26213,15 +25915,15 @@ msgstr "Projekt Nummer erhålln från Google Cloud Console under "
-#: frappe/core/doctype/user/user.py:987
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
msgstr "Länk för återställning av lösenord har upphört att gälla"
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:991
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:375 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Resurs är inte tillgänglig"
@@ -26233,7 +25935,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:334
+#: frappe/utils/response.py:331
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."
@@ -26294,7 +25996,7 @@ msgstr "Det finns inga kommande händelser för dig."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "Det finns inga {0} för denna {1}, varför startar du inte en!"
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "There are {0} with the same filters already in the queue:"
msgstr "Det finns {0} med samma filter redan i kö:"
@@ -26323,7 +26025,7 @@ msgstr "Det finns inget nytt att visa dig just nu."
msgid "There is some problem with the file url: {0}"
msgstr "Det finns problem med fil url: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:958
+#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
msgstr "Det finns {0} med samma filter som redan finns i kö:"
@@ -26365,7 +26067,7 @@ msgstr "Dessa meddelande kommer att visas i en avviserbar varning under Navigeri
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "These settings are required if 'Custom' LDAP Directory is used"
-msgstr "Dessa inställningar erfodras om \"Anpassad\" LDAP Katalog Server används"
+msgstr "Dessa inställningar erfordras om \"Anpassad\" LDAP Katalog Server används"
#. Description of the 'Defaults' (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -26410,12 +26112,12 @@ msgstr "I År"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Denna åtgärd är oåterkallelig. Vill du fortsätta?"
-#: frappe/__init__.py:750
+#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
msgstr "Åtgärd är endast tillåten för {}"
#: frappe/public/js/frappe/form/toolbar.js:117
-#: frappe/public/js/frappe/model/model.js:755
+#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "Detta kan inte ångras"
@@ -26453,7 +26155,7 @@ msgstr "Detta dokument har osparade ändringar som kanske inte visas i slutlig P
msgid "This document is already amended, you cannot ammend it again"
msgstr "Detta dokument är redan ändrad, du kan inte ändra det igen"
-#: frappe/model/document.py:474
+#: frappe/model/document.py:473
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr "Detta dokument är för närvarande låst och står i kö för exekvering. Försök igen senare."
@@ -26517,7 +26219,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:2132
+#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Detta är bakgrund rapport. Ange lämplig filter och skapa ny rapport."
@@ -26581,7 +26283,7 @@ msgstr "Detta nyhetsbrev är planerat att skickas {0}"
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
msgstr "Detta nyhetsbrev var planerat att skickas vid ett senare datum. Är du säker på att du vill skicka den nu?"
-#: frappe/public/js/frappe/views/reports/query_report.js:1033
+#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Denna rapport innehåller {0} rader och är för stor för att visas i webbläsare. Du kan {1} denna rapport istället."
@@ -26589,7 +26291,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:856
+#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
msgstr "Denna rapport skapades {0}."
@@ -26655,7 +26357,7 @@ msgstr "Detta återställer Formulär Tur och visar den för alla användare. Ä
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr "Detta avslutar jobb omedelbart och kan vara farligt, är du säker?"
-#: frappe/core/doctype/user/user.py:1240
+#: frappe/core/doctype/user/user.py:1242
msgid "Throttled"
msgstr "Strypt"
@@ -26763,7 +26465,7 @@ msgstr "Tid i sekunder att behålla QR Kod Bild på server. Min: 240{0} does not exist"
msgstr "Arbetsyta {0} finns inte"
@@ -29660,11 +29338,11 @@ msgstr "Arbetsyta {0} skapad"
msgid "Workspaces"
msgstr "Arbetsytor"
-#: frappe/public/js/frappe/form/footer/form_timeline.js:753
+#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
msgstr "Vill du publicera denna kommentar? Detta innebär att den blir synlig för webbplatsens/portalens användare."
-#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
msgstr "Vill du inaktivera denna kommentar? Detta innebär att den inte längre kommer att vara synlig för webbplatsens/portalens användare."
@@ -29683,11 +29361,11 @@ msgstr "Slutför"
msgid "Write"
msgstr "Skriva"
-#: frappe/model/base_document.py:949
+#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
msgstr "Fel Hämtning Från Värde"
-#: frappe/public/js/frappe/views/reports/report_view.js:484
+#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
msgstr "X Axel Fält"
@@ -29706,13 +29384,13 @@ msgstr "XLSX"
msgid "Y Axis"
msgstr "Y Axel"
-#: frappe/public/js/frappe/views/reports/report_view.js:491
+#: frappe/public/js/frappe/views/reports/report_view.js:497
msgid "Y Axis Fields"
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:1221
+#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
msgstr "Y Fält"
@@ -29773,7 +29451,7 @@ msgstr "Gul"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Ja"
@@ -29813,11 +29491,11 @@ msgstr "Du efterliknar som en annan användare."
msgid "You are not allowed to access this resource"
msgstr "Du har inte behörighet att komma åt denna resurs"
-#: frappe/permissions.py:409
+#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "Du har inte tillgång till denna {0} post eftersom den är länkad till {1} '{2}' i fält {3}"
-#: frappe/permissions.py:398
+#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "Du har inte tillgång till denna {0} post eftersom den är länkad till {1} '{2}' i rad {3}, fält {4}"
@@ -29840,7 +29518,7 @@ msgstr "Du har inte behörighet att redigera rapport."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:604
+#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
msgstr "Du har inte behörighet att exportera {} doctype"
@@ -29852,7 +29530,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:569
+#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
msgstr "Du har inte behörighet att uppdatera denna Webb Formulär Dokument"
@@ -29868,7 +29546,7 @@ msgstr "Du har inte behörighet att komma åt denna sida utan inloggning."
msgid "You are not permitted to access this page."
msgstr "Du har inte behörighet att komma åt den här sidan."
-#: frappe/__init__.py:669
+#: frappe/__init__.py:676
msgid "You are not permitted to access this resource. Login to access"
msgstr "Du har inte tillåtelse att komma åt denna resurs. Logga in för att komma åt"
@@ -29876,7 +29554,7 @@ msgstr "Du har inte tillåtelse att komma åt denna resurs. Logga in för att ko
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr "Du följer nu detta dokument och kommer att få dagliga uppdateringar via e-post. Ändra detta i Användare Inställningar."
-#: frappe/core/doctype/installed_applications/installed_applications.py:82
+#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
msgstr "Du får bara uppdatera ordning, inte ta bort eller lägga till appar."
@@ -30040,11 +29718,11 @@ msgstr "Du har inte Läs eller Val Behörigheter för {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Du har inte behörighet för att komma åt denna resurs. Kontakta Administratör ."
-#: frappe/app.py:368
+#: frappe/app.py:361
msgid "You do not have enough permissions to complete the action"
msgstr "Du har inte behörighet att slutföra åtgärd"
-#: frappe/desk/query_report.py:838
+#: frappe/desk/query_report.py:831
msgid "You do not have permission to access {0}: {1}."
msgstr "Du har inte behörighet att komma åt {0}: {1}."
@@ -30056,11 +29734,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:772
+#: frappe/website/doctype/web_form/web_form.py:769
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:286 frappe/utils/response.py:290
+#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
msgstr "Du har inte behörighet att komma åt den här filen"
@@ -30068,7 +29746,7 @@ msgstr "Du har inte behörighet att komma åt den här filen"
msgid "You don't have permission to get a report on: {0}"
msgstr "Du har inte behörighet att hämta rapport {0}"
-#: frappe/website/doctype/web_form/web_form.py:175
+#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
msgstr "Du har inte behörighet till detta dokument"
@@ -30121,23 +29799,23 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr "Du nådde gräns på grund av för många förfrågningar. Försök igen senare."
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
-msgstr "Du ändrade detta för"
+msgstr "Du ändrade detta"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:339
+#: frappe/public/js/frappe/widgets/widget_dialog.js:352
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:768
+#: frappe/website/doctype/web_form/web_form.py:765
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:609
+#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
msgstr "Du måste logga in för att godkänna detta formulär"
-#: frappe/model/document.py:357
+#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr "Du behöver '{0}' behörighet på {1} {2} för att utföra denna åtgärd."
@@ -30153,11 +29831,11 @@ msgstr "Du måste vara Arbetsyta Ansvarig för att redigera detta dokument"
msgid "You need to be a system user to access this page."
msgstr "Du måste vara systemanvändare för att komma åt denna sida."
-#: frappe/website/doctype/web_form/web_form.py:94
+#: frappe/website/doctype/web_form/web_form.py:91
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:275
+#: frappe/utils/response.py:272
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."
@@ -30165,7 +29843,7 @@ msgstr "Du måste vara inloggad och ha System Ansvarig roll för att kunna ha ti
msgid "You need to be logged in to access this page"
msgstr "Du måste vara inloggad för att ha tillgång till den här sida"
-#: frappe/website/doctype/web_form/web_form.py:164
+#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
msgstr "Du måste vara inloggad för att ha tillgång till den här {0}."
@@ -30240,7 +29918,7 @@ msgstr "Du slutade följa detta dokument"
msgid "You viewed this"
msgstr "Du visade detta"
-#: frappe/public/js/frappe/desk.js:543
+#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr "Inloggad som annan användare från annan flik. Uppdatera dennna sidan för att fortsätta använda system."
@@ -30323,7 +30001,7 @@ msgstr "Bolag Namn och Adress för E-post Sidfot."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Din fråga har mottagits. Vi kommer att svara inom kort. Om du har någon ytterligare information, vänligen svara på detta mail."
-#: frappe/app.py:361
+#: frappe/app.py:354
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."
@@ -30365,7 +30043,7 @@ msgstr "\"as_iterator\" fungerar bara med \"as_list=True\" eller \"as_dict=True\
#: frappe/utils/background_jobs.py:120
msgid "`job_id` paramater is required for deduplication."
-msgstr "'job_id'parameter erfodras för deduplicering."
+msgstr "'job_id'parameter erfordras för deduplicering."
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232
msgid "added rows for {0}"
@@ -30554,7 +30232,7 @@ msgstr "E-post"
msgid "email inbox"
msgstr "e-post inkorg"
-#: frappe/permissions.py:403 frappe/permissions.py:414
+#: frappe/permissions.py:412 frappe/permissions.py:423
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "tom"
@@ -30604,7 +30282,7 @@ msgstr "grå"
#: frappe/utils/backups.py:399
msgid "gzip not found in PATH! This is required to take a backup."
-msgstr "gzip hittades inte i SÖKVÄG! Erfodras för att skapa säkerhetskopia."
+msgstr "gzip hittades inte i SÖKVÄG! Erfordras för att skapa säkerhetskopia."
#: frappe/public/js/frappe/form/controls/duration.js:209
#: frappe/public/js/frappe/utils/utils.js:1120
@@ -31091,7 +30769,7 @@ msgstr "{0} ({1})"
#: frappe/public/js/frappe/data_import/data_exporter.js:77
msgid "{0} ({1}) (1 row mandatory)"
-msgstr "{0} ({1}) (1 rad erfodras)"
+msgstr "{0} ({1}) (1 rad erfordras)"
#: frappe/public/js/frappe/views/gantt/gantt_view.js:53
msgid "{0} ({1}) - {2}%"
@@ -31106,7 +30784,7 @@ msgstr "{0} = {1}"
msgid "{0} Calendar"
msgstr "{0} Kalender"
-#: frappe/public/js/frappe/views/reports/report_view.js:564
+#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
msgstr "{0} Diagram"
@@ -31154,7 +30832,7 @@ msgstr "{0} Karta"
msgid "{0} Name"
msgstr "{0} Namn"
-#: frappe/model/base_document.py:1149
+#: frappe/model/base_document.py:1154
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}"
@@ -31164,7 +30842,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:952
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
msgstr "{0} Rapporter"
@@ -31215,7 +30893,7 @@ msgstr "{0} är för närvarande {1}"
#: frappe/printing/doctype/print_format/print_format.py:89
msgid "{0} are required"
-msgstr "{0} erfodras"
+msgstr "{0} erfordras"
#: frappe/desk/form/assign_to.py:286
msgid "{0} assigned a new task {1} {2} to you"
@@ -31230,7 +30908,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr "{0} bifogade {1}"
-#: frappe/core/doctype/system_settings/system_settings.py:149
+#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
msgstr "{0} kan inte vara fler än {1}"
@@ -31243,13 +30921,13 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} annullerade detta dokument {1}"
-#: frappe/model/document.py:547
+#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr "{0} kan inte ändras eftersom det inte är annullerat. Annullera dokument innan du skapar ändring."
#: frappe/public/js/form_builder/store.js:190
msgid "{0} cannot be hidden and mandatory without any default value"
-msgstr "{0} kan inte döljas och erfodras utan något standard värde"
+msgstr "{0} kan inte döljas och erfordras utan något standard värde"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128
msgid "{0} changed the value of {1}"
@@ -31368,7 +31046,7 @@ msgstr "{0} är ogiltig Data Fält."
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "{0} är ogiltig E-post i 'Mottagare'"
-#: frappe/public/js/frappe/views/reports/report_view.js:1462
+#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
msgstr "{0} är mellan {1} och {2}"
@@ -31377,27 +31055,27 @@ msgstr "{0} är mellan {1} och {2}"
msgid "{0} is currently {1}"
msgstr "{0} är för närvarande {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1431
+#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
msgstr "{0} är lika med {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1451
+#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
msgstr "{0} är större än eller lika med {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1441
+#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
msgstr "{0} är större än {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1456
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
msgstr "{0} är mindre än eller lika med {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1446
+#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
msgstr "{0} är mindre än {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1481
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
msgstr "{0} är som {1}"
@@ -31417,7 +31095,7 @@ msgstr "{0} är inte Direkt Utskrift Mall."
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr "{0} är inte giltig Kalender. Omdirigerar till standard Kalender."
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:64
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
msgstr "{0} är inte giltigt Cron uttryck"
@@ -31446,11 +31124,11 @@ msgstr "{0} är inte giltigt Telefon Nummer"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} är inte giltig tillstånd för Arbetsflöde. Uppdatera Arbetsflöde och försök igen."
-#: frappe/permissions.py:787
+#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} är inte en giltig överordnad DocType för {1}"
-#: frappe/permissions.py:807
+#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} är inte ett giltigt överordnat fält för {1}"
@@ -31462,27 +31140,27 @@ msgstr "{0} är inte ett giltigt rapport format. Rapport Format ska vara en av f
msgid "{0} is not a zip file"
msgstr "{0} är inte en zip-fil"
-#: frappe/public/js/frappe/views/reports/report_view.js:1436
+#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
msgstr "{0} är inte lika med {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1483
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
msgstr "{0} är inte som {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
msgstr "{0} är inte en av {1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1487
+#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
msgstr "{0} är inte angiven"
-#: frappe/printing/doctype/print_format/print_format.py:165
+#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} är nu standard utskrift format för {1} DocType"
-#: frappe/public/js/frappe/views/reports/report_view.js:1470
+#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
msgstr "{0} är en av {1}"
@@ -31491,13 +31169,13 @@ msgstr "{0} är en av {1}"
#: frappe/printing/doctype/print_format/print_format.py:92
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
-msgstr "{0} erfodras"
+msgstr "{0} erfordras"
-#: frappe/public/js/frappe/views/reports/report_view.js:1486
+#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
msgstr "{0} är angiven"
-#: frappe/public/js/frappe/views/reports/report_view.js:1465
+#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
msgstr "{0} är inom {1}"
@@ -31505,12 +31183,12 @@ msgstr "{0} är inom {1}"
msgid "{0} items selected"
msgstr "{0} artiklar valda"
-#: frappe/core/doctype/user/user.py:1378
+#: frappe/core/doctype/user/user.py:1380
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0} efterliknade som du. De gav detta skäl: {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:104
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
msgstr "{0} redigerade detta"
@@ -31526,7 +31204,7 @@ msgstr "{0} loggade ut: {1}"
msgid "{0} m"
msgstr "{0} m"
-#: frappe/desk/notifications.py:397
+#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
msgstr "{0} hänvisade dig i kommentar i {1} {2}"
@@ -31538,35 +31216,35 @@ msgstr "{0} minuter sedan"
msgid "{0} months ago"
msgstr "{0} månader sedan"
-#: frappe/model/document.py:1792
+#: frappe/model/document.py:1791
msgid "{0} must be after {1}"
msgstr "{0} måste vara efter {1}"
-#: frappe/model/document.py:1551
+#: frappe/model/document.py:1550
msgid "{0} must be beginning with '{1}'"
msgstr "{0} måste börja med '{1}'"
-#: frappe/model/document.py:1553
+#: frappe/model/document.py:1552
msgid "{0} must be equal to '{1}'"
msgstr "{0} måste vara lika med '{1}'"
-#: frappe/model/document.py:1549
+#: frappe/model/document.py:1548
msgid "{0} must be none of {1}"
msgstr "{0} måste inte vara någon av {1}"
-#: frappe/model/document.py:1547 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} måste vara en av {1}"
-#: frappe/model/base_document.py:875
+#: frappe/model/base_document.py:876
msgid "{0} must be set first"
msgstr "{0} måste anges först"
-#: frappe/model/base_document.py:732
+#: frappe/model/base_document.py:729
msgid "{0} must be unique"
msgstr "{0} måste vara unik"
-#: frappe/model/document.py:1555
+#: frappe/model/document.py:1554
msgid "{0} must be {1} {2}"
msgstr "{0} måste vara {1} {2}"
@@ -31641,7 +31319,7 @@ msgstr "{0} tog bort sin tilldelning."
msgid "{0} role does not have permission on any doctype"
msgstr "{0} roll har inte tillstånd på någon doctype"
-#: frappe/model/document.py:1785
+#: frappe/model/document.py:1784
msgid "{0} row #{1}: "
msgstr "{0} rad #{1}: "
@@ -31737,11 +31415,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:665 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} finns redan"
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:987
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}\""
@@ -31757,7 +31435,7 @@ msgstr "{0} {1} finns inte, välj ett nytt mål för att slå samman"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} är länkad till följande godkända dokument: {2}"
-#: frappe/model/document.py:260 frappe/permissions.py:558
+#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
msgstr "{0} {1} hittades inte"
@@ -31765,7 +31443,7 @@ msgstr "{0} {1} hittades inte"
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:1110
+#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
msgstr "{0}, Rad {1}"
@@ -31773,7 +31451,7 @@ 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:1115
+#: frappe/model/base_document.py:1120
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}"
@@ -31815,11 +31493,11 @@ msgstr "{0}: Fält '{1}' kan inte anges som unikt eftersom det inte har unika v
#: frappe/core/doctype/doctype/doctype.py:1334
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
-msgstr "{0}: Fält {1} på rad {2} kan inte döljas och erfodras utan standard"
+msgstr "{0}: Fält {1} på rad {2} kan inte döljas och erfordras utan standard"
#: frappe/core/doctype/doctype/doctype.py:1293
msgid "{0}: Field {1} of type {2} cannot be mandatory"
-msgstr "{0}: Fält {1} av typ {2} kan inte erfodras"
+msgstr "{0}: Fält {1} av typ {2} kan inte erfordras"
#: frappe/core/doctype/doctype/doctype.py:1281
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
@@ -31843,7 +31521,7 @@ msgstr "{0}: Alternativ måste vara giltig DocType för Fält {1} på rad {2}"
#: frappe/core/doctype/doctype/doctype.py:1304
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
-msgstr "{0}: Alternativ som erfodras för Länk eller Tabell Typ {1} på rad {2}"
+msgstr "{0}: Alternativ som erfordras för Länk eller Tabell Typ {1} på rad {2}"
#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
@@ -31874,7 +31552,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:1279
+#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} mot {2}"
@@ -31942,15 +31620,15 @@ msgstr "{} är inte giltig datum sträng."
#: frappe/commands/utils.py:562
msgid "{} not found in PATH! This is required to access the console."
-msgstr "{} hittades inte i Sökväg! Detta erfodras för att komma åt konsol."
+msgstr "{} hittades inte i Sökväg! Detta erfordras för att komma åt konsol."
#: frappe/database/db_manager.py:99
msgid "{} not found in PATH! This is required to restore the database."
-msgstr "{} hittades inte i Sökväg! Detta erfodras för att återställa databas."
+msgstr "{} hittades inte i Sökväg! Detta erfordras för att återställa databas."
#: frappe/utils/backups.py:466
msgid "{} not found in PATH! This is required to take a backup."
-msgstr "{} hittades inte i Sökväg! Detta erfodras för att ta säkerhetskopia."
+msgstr "{} hittades inte i Sökväg! Detta erfordras för att ta säkerhetskopia."
#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:5
#: frappe/public/js/frappe/file_uploader/WebLink.vue:4
diff --git a/frappe/locale/th.po b/frappe/locale/th.po
index e131d39e3e..4491b9aac4 100644
--- a/frappe/locale/th.po
+++ b/frappe/locale/th.po
@@ -2,14 +2,14 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-08 09:34+0000\n"
-"PO-Revision-Date: 2025-06-11 14:05\n"
+"POT-Creation-Date: 2025-06-22 09:34+0000\n"
+"PO-Revision-Date: 2025-06-22 16:40\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Thai\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.13.1\n"
+"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"
@@ -140,7 +140,7 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:951
+#: frappe/public/js/frappe/views/reports/query_report.js:953
msgid "1 Report"
msgstr ""
@@ -148,7 +148,7 @@ msgstr ""
msgid "1 comment"
msgstr ""
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:711
msgid "1 day ago"
msgstr ""
@@ -157,17 +157,17 @@ msgid "1 hour"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:709
msgid "1 hour ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:707
msgid "1 minute ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:715
msgid "1 month ago"
msgstr ""
@@ -179,37 +179,37 @@ msgstr ""
msgid "1 record will be exported"
msgstr ""
-#: frappe/tests/test_utils.py:705
+#: frappe/tests/test_utils.py:706
msgid "1 second ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:713
msgid "1 week ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:717
msgid "1 year ago"
msgstr ""
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:710
msgid "2 hours ago"
msgstr ""
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:716
msgid "2 months ago"
msgstr ""
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:714
msgid "2 weeks ago"
msgstr ""
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:718
msgid "2 years ago"
msgstr ""
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:708
msgid "3 minutes ago"
msgstr ""
@@ -225,7 +225,7 @@ msgstr ""
msgid "5 Records"
msgstr ""
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:712
msgid "5 days ago"
msgstr ""
@@ -245,7 +245,7 @@ msgstr ""
msgid "<="
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:588
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
msgid "{0} is not a valid URL"
msgstr ""
@@ -654,10 +654,7 @@ msgid "API"
msgstr ""
#. Label of the api_access (Section Break) field in DocType 'User'
-#. Label of the api_access_section (Section Break) field in DocType 'S3 Backup
-#. Settings'
#: frappe/core/doctype/user/user.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "API Access"
msgstr ""
@@ -769,17 +766,6 @@ msgstr ""
msgid "Access Control"
msgstr ""
-#. Label of the access_key_id (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key ID"
-msgstr ""
-
-#. Label of the secret_access_key (Password) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key Secret"
-msgstr ""
-
#. Name of a DocType
#. Label of a Link in the Users Workspace
#: frappe/core/doctype/access_log/access_log.json
@@ -830,6 +816,10 @@ msgstr ""
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'
@@ -860,7 +850,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1872
+#: frappe/model/document.py:1871
msgid "Action Failed"
msgstr ""
@@ -909,10 +899,10 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:192
-#: frappe/public/js/frappe/views/reports/query_report.js:205
-#: frappe/public/js/frappe/views/reports/query_report.js:215
-#: frappe/public/js/frappe/views/reports/query_report.js:845
+#: frappe/public/js/frappe/views/reports/query_report.js:190
+#: frappe/public/js/frappe/views/reports/query_report.js:203
+#: frappe/public/js/frappe/views/reports/query_report.js:213
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Actions"
msgstr ""
@@ -974,8 +964,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:267
-#: frappe/public/js/frappe/views/reports/query_report.js:295
+#: frappe/public/js/frappe/views/reports/query_report.js:265
+#: frappe/public/js/frappe/views/reports/query_report.js:293
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr ""
@@ -1016,7 +1006,7 @@ msgstr ""
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:211
+#: frappe/public/js/frappe/views/reports/query_report.js:209
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1025,10 +1015,10 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1769
-#: frappe/public/js/frappe/views/reports/query_report.js:1772
-#: frappe/public/js/frappe/views/reports/report_view.js:349
-#: frappe/public/js/frappe/views/reports/report_view.js:374
+#: frappe/public/js/frappe/views/reports/query_report.js:1771
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/report_view.js:355
+#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
msgstr ""
@@ -1052,7 +1042,7 @@ msgid "Add Custom Tags"
msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
-#: frappe/public/js/frappe/widgets/widget_dialog.js:703
+#: frappe/public/js/frappe/widgets/widget_dialog.js:716
msgid "Add Filters"
msgstr ""
@@ -1087,7 +1077,7 @@ msgstr ""
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:806
+#: frappe/core/doctype/user/user.py:808
msgid "Add Roles"
msgstr ""
@@ -1232,7 +1222,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:253
+#: frappe/public/js/frappe/views/reports/query_report.js:251
msgid "Add to Dashboard"
msgstr ""
@@ -1387,11 +1377,11 @@ msgstr ""
msgid "Administrator"
msgstr ""
-#: frappe/core/doctype/user/user.py:1211
+#: frappe/core/doctype/user/user.py:1213
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1205
+#: frappe/core/doctype/user/user.py:1207
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
@@ -1624,12 +1614,6 @@ msgstr ""
msgid "Allow Consecutive Login Attempts "
msgstr ""
-#. Label of the allow_dropbox_access (Button) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Allow Dropbox Access"
-msgstr ""
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
msgid "Allow Google Calendar Access"
msgstr ""
@@ -1638,10 +1622,6 @@ msgstr ""
msgid "Allow Google Contacts Access"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:52
-msgid "Allow Google Drive Access"
-msgstr ""
-
#. Label of the allow_guest (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
@@ -1895,7 +1875,7 @@ msgstr ""
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
-#: frappe/core/doctype/user/user.py:1021
+#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr ""
@@ -1903,11 +1883,11 @@ msgstr ""
msgid "Already in the following Users ToDo list:{0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:896
+#: frappe/public/js/frappe/views/reports/report_view.js:902
msgid "Also adding the dependent currency field {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:909
+#: frappe/public/js/frappe/views/reports/report_view.js:915
msgid "Also adding the status dependency field {0}"
msgstr ""
@@ -1986,7 +1966,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:550
+#: frappe/model/document.py:549
msgid "Amendment Not Allowed"
msgstr ""
@@ -2075,15 +2055,6 @@ msgstr ""
msgid "App"
msgstr ""
-#. Label of the app_access_key (Data) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Access Key"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:22
-msgid "App Access Key and/or Secret Key are not present."
-msgstr ""
-
#. Label of the client_id (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client ID"
@@ -2117,16 +2088,11 @@ msgstr ""
msgid "App Name"
msgstr ""
-#. Label of the app_secret_key (Password) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Secret Key"
-msgstr ""
-
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1462
+#: frappe/__init__.py:1465
msgid "App {0} is not installed"
msgstr ""
@@ -2276,7 +2242,7 @@ msgstr ""
msgid "Are you sure you want to clear the assignments?"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:290
+#: frappe/public/js/frappe/form/grid.js:294
msgid "Are you sure you want to delete all rows?"
msgstr ""
@@ -2304,7 +2270,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:965
+#: frappe/public/js/frappe/views/reports/query_report.js:967
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2430,7 +2396,7 @@ msgstr ""
msgid "Assigned By Full Name"
msgstr ""
-#: frappe/model/meta.py:60
+#: 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
@@ -2700,13 +2666,11 @@ msgstr ""
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
#. Contacts'
-#. Label of the authorization_code (Data) field in DocType 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
@@ -2744,12 +2708,6 @@ msgstr ""
msgid "Authorize Google Contacts Access"
msgstr ""
-#. Label of the authorize_google_drive_access (Button) field in DocType 'Google
-#. Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Authorize Google Drive 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"
@@ -2896,11 +2854,11 @@ msgstr ""
msgid "Automatic"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:774
+#: 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:768
+#: frappe/email/doctype/email_account/email_account.py:766
msgid "Automatic Linking can be activated only if Incoming is enabled."
msgstr ""
@@ -3114,66 +3072,14 @@ msgstr ""
msgid "Background Workers"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:170
-msgid "Backing up Data."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:32
-msgid "Backing up to Google Drive."
-msgstr ""
-
-#. Label of a Card Break in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Backup"
-msgstr ""
-
-#. Label of the backup_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Details"
-msgstr ""
-
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
msgstr ""
-#. Label of the backup_files (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Files"
-msgstr ""
-
-#. Label of the backup_folder_id (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder ID"
-msgstr ""
-
-#. Label of the backup_folder_name (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder Name"
-msgstr ""
-
-#. Label of the backup_frequency (Select) field in DocType 'Dropbox Settings'
-#. Label of the frequency (Select) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Frequency"
-msgstr ""
-
-#. Label of the backup_path (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Path"
-msgstr ""
-
#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
msgstr ""
-#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup public and private files along with the database."
-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'
@@ -3187,7 +3093,7 @@ msgstr ""
msgid "Backups (MB)"
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:65
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
msgid "Bad Cron Expression"
msgstr ""
@@ -3584,15 +3490,6 @@ msgstr ""
msgid "Brute Force Security"
msgstr ""
-#. Label of the bucket (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Bucket Name"
-msgstr ""
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:71
-msgid "Bucket {0} not found."
-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"
@@ -3629,7 +3526,7 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1184
+#: frappe/public/js/frappe/form/grid.js:1188
msgid "Bulk Edit {0}"
msgstr ""
@@ -3704,12 +3601,6 @@ msgstr ""
msgid "By default the title is used as meta title, adding a value here will override it."
msgstr ""
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "By default, emails are only sent for failed backups."
-msgstr ""
-
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
@@ -4020,7 +3911,7 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1156
+#: frappe/model/base_document.py:1161
msgid "Cannot Update After Submit"
msgstr ""
@@ -4040,11 +3931,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1012
+#: frappe/model/document.py:1011
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1026
+#: frappe/model/document.py:1025
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -4127,7 +4018,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1032
+#: frappe/model/document.py:1031
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4160,11 +4051,11 @@ msgstr ""
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1128
+#: frappe/public/js/frappe/form/grid.js:1132
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1100
+#: frappe/model/document.py:1099
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4180,7 +4071,7 @@ msgstr ""
msgid "Cannot move row"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:921
+#: frappe/public/js/frappe/views/reports/report_view.js:927
msgid "Cannot remove ID field"
msgstr ""
@@ -4205,11 +4096,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr ""
-#: frappe/model/db_query.py:1125
+#: frappe/model/db_query.py:1126
msgid "Cannot use sub-query in order by"
msgstr ""
-#: frappe/model/db_query.py:1144
+#: frappe/model/db_query.py:1145
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4235,7 +4126,7 @@ msgstr ""
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:261
msgid "Card Label"
msgstr ""
@@ -4377,7 +4268,7 @@ msgstr ""
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:290
+#: frappe/public/js/frappe/views/reports/query_report.js:288
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4397,7 +4288,7 @@ 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:499
+#: frappe/public/js/frappe/views/reports/report_view.js:505
msgid "Chart Type"
msgstr ""
@@ -4511,7 +4402,7 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:638
+#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4604,10 +4495,6 @@ msgstr ""
msgid "Click here to verify"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:47
-msgid "Click on Authorize Google Drive Access to authorize Google Drive Access."
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4634,7 +4521,6 @@ msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
-#: frappe/integrations/doctype/google_drive/google_drive.py:53
#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
msgstr ""
@@ -4808,7 +4694,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4863,9 +4749,9 @@ 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:1229
-#: frappe/public/js/frappe/widgets/widget_dialog.js:533
-#: frappe/public/js/frappe/widgets/widget_dialog.js:681
+#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: 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
@@ -5006,7 +4892,7 @@ msgstr ""
msgid "Comment publicity can only be updated by the original author or a System Manager."
msgstr ""
-#: frappe/model/meta.py:59 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/model/meta.js:209
#: frappe/public/js/frappe/model/model.js:135
#: frappe/website/doctype/web_form/templates/web_form.html:122
@@ -5113,7 +4999,7 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:477
+#: frappe/core/doctype/user/user.py:478
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
@@ -5209,7 +5095,7 @@ msgstr ""
msgid "Configuration"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:481
+#: frappe/public/js/frappe/views/reports/report_view.js:487
msgid "Configure Chart"
msgstr ""
@@ -5546,7 +5432,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1096
+#: frappe/model/document.py:1095
msgid "Could not find {0}"
msgstr ""
@@ -5575,7 +5461,7 @@ msgstr ""
msgid "Count"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:527
+#: frappe/public/js/frappe/widgets/widget_dialog.js:540
msgid "Count Customizations"
msgstr ""
@@ -5583,10 +5469,14 @@ msgstr ""
#. 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:512
+#: 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"
@@ -5637,7 +5527,7 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1261
+#: frappe/public/js/frappe/views/reports/query_report.js:1263
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5651,13 +5541,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:188
-#: frappe/public/js/frappe/views/reports/query_report.js:233
+#: frappe/public/js/frappe/views/reports/query_report.js:186
+#: frappe/public/js/frappe/views/reports/query_report.js:231
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:286
-#: frappe/public/js/frappe/views/reports/query_report.js:1188
+#: frappe/public/js/frappe/views/reports/query_report.js:284
+#: frappe/public/js/frappe/views/reports/query_report.js:1190
msgid "Create Chart"
msgstr ""
@@ -5768,7 +5658,7 @@ msgstr ""
msgid "Created At"
msgstr ""
-#: frappe/model/meta.py:56
+#: 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
@@ -5780,14 +5670,14 @@ 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:51
+#: 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:515
+#: frappe/public/js/frappe/desk.js:523
#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
msgstr ""
@@ -5810,7 +5700,7 @@ msgstr ""
msgid "Cron Format"
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:59
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
msgstr ""
@@ -6207,11 +6097,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -6220,9 +6105,6 @@ msgstr ""
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:398
#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
@@ -6776,7 +6658,7 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/toolbar.js:461
-#: frappe/public/js/frappe/views/reports/report_view.js:1734
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
@@ -6819,7 +6701,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:932
+#: frappe/public/js/frappe/views/reports/query_report.js:934
msgid "Delete and Generate New"
msgstr ""
@@ -6828,7 +6710,7 @@ msgctxt "Button text"
msgid "Delete column"
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:738
+#: frappe/public/js/frappe/form/footer/form_timeline.js:741
msgid "Delete comment?"
msgstr ""
@@ -6914,7 +6796,7 @@ msgstr ""
msgid "Deleting {0} records..."
msgstr ""
-#: frappe/public/js/frappe/model/model.js:741
+#: frappe/public/js/frappe/model/model.js:692
msgid "Deleting {0}..."
msgstr ""
@@ -6960,7 +6842,7 @@ 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:310
+#: frappe/public/js/frappe/widgets/widget_dialog.js:323
#: frappe/www/attribution.html:29
msgid "Dependencies"
msgstr ""
@@ -7074,6 +6956,7 @@ msgstr ""
#: 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
@@ -7371,14 +7254,10 @@ 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:1189
+#: frappe/public/js/frappe/form/grid.js:1193
msgid "Do not edit headers which are preset in the template"
msgstr ""
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:69
-msgid "Do not have permission to access bucket {0}."
-msgstr ""
-
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
@@ -7511,7 +7390,7 @@ 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:466
+#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
msgstr ""
@@ -7571,7 +7450,7 @@ 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:669
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
msgid "Doctype"
msgstr ""
@@ -7689,7 +7568,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:477
+#: frappe/model/document.py:476
msgid "Document Queued"
msgstr ""
@@ -7742,7 +7621,7 @@ msgstr ""
msgid "Document States"
msgstr ""
-#: frappe/model/meta.py:52 frappe/public/js/frappe/model/meta.js:202
+#: 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 ""
@@ -7813,11 +7692,11 @@ msgstr ""
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: frappe/permissions.py:148
+#: frappe/permissions.py:149
msgid "Document Type is not importable"
msgstr ""
-#: frappe/permissions.py:144
+#: frappe/permissions.py:145
msgid "Document Type is not submittable"
msgstr ""
@@ -7846,7 +7725,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1943
+#: frappe/model/document.py:1942
msgid "Document Unlocked"
msgstr ""
@@ -8037,7 +7916,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:835
+#: frappe/public/js/frappe/views/reports/query_report.js:830
msgid "Download Report"
msgstr ""
@@ -8048,7 +7927,7 @@ 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:57
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
msgid "Download Your Data"
msgstr ""
@@ -8104,29 +7983,6 @@ msgstr ""
msgid "Drop files here"
msgstr ""
-#. Label of the dropbox_access_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Access Token"
-msgstr ""
-
-#. Label of the dropbox_refresh_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Refresh Token"
-msgstr ""
-
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Dropbox Settings"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:347
-msgid "Dropbox Setup"
-msgstr ""
-
#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
@@ -8156,7 +8012,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:666 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
@@ -8255,13 +8111,13 @@ msgstr ""
#: 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:668
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:669
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:883
-#: frappe/public/js/frappe/views/reports/query_report.js:1722
+#: frappe/public/js/frappe/views/reports/query_report.js:878
+#: frappe/public/js/frappe/views/reports/query_report.js:1724
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8424,7 +8280,7 @@ msgstr ""
msgid "Edit your workflow visually using the Workflow Builder."
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:672
+#: frappe/public/js/frappe/views/reports/report_view.js:678
#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
msgstr ""
@@ -8525,7 +8381,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:736
+#: frappe/core/doctype/user/user.py:738
msgid "Email Account added multiple times"
msgstr ""
@@ -8533,7 +8389,7 @@ msgstr ""
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:578
+#: frappe/email/doctype/email_account/email_account.py:576
msgid "Email Account {0} Disabled"
msgstr ""
@@ -8759,7 +8615,7 @@ msgstr ""
msgid "Emails Pulled"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:936
+#: frappe/email/doctype/email_account/email_account.py:934
msgid "Emails are already being pulled from this account."
msgstr ""
@@ -8782,11 +8638,9 @@ 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 Drive'
#. 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_drive/google_drive.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
msgstr ""
@@ -8806,11 +8660,6 @@ msgstr ""
msgid "Enable Auto Reply"
msgstr ""
-#. Label of the enabled (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Enable Automatic Backup"
-msgstr ""
-
#. Label of the enable_automatic_linking (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -8969,7 +8818,6 @@ msgstr ""
#. 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 'Dropbox Settings'
#. 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'
@@ -8980,7 +8828,6 @@ msgstr ""
#: 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/dropbox_settings/dropbox_settings.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/public/js/frappe/model/indicator.js:106
@@ -8993,7 +8840,7 @@ msgstr ""
msgid "Enabled Scheduler"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:1012
+#: frappe/email/doctype/email_account/email_account.py:1010
msgid "Enabled email inbox for user {0}"
msgstr ""
@@ -9074,11 +8921,6 @@ msgstr ""
msgid "Ended At"
msgstr ""
-#. Label of the endpoint_url (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Endpoint URL"
-msgstr ""
-
#. Label of the sb_endpoints_section (Section Break) field in DocType
#. 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -9257,7 +9099,7 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:672
+#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9265,15 +9107,15 @@ msgstr ""
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr ""
-#: frappe/model/base_document.py:806
+#: frappe/model/base_document.py:803
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:816
+#: frappe/model/base_document.py:813
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:810
+#: frappe/model/base_document.py:807
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9422,7 +9264,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2069
+#: frappe/public/js/frappe/views/reports/query_report.js:2071
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9448,7 +9290,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9505,8 +9347,8 @@ 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:1757
-#: frappe/public/js/frappe/views/reports/report_view.js:1621
+#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
@@ -9557,11 +9399,11 @@ msgstr ""
msgid "Export Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1632
+#: frappe/public/js/frappe/views/reports/report_view.js:1638
msgid "Export all matching rows?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1642
+#: frappe/public/js/frappe/views/reports/report_view.js:1648
msgid "Export all {0} rows?"
msgstr ""
@@ -9869,8 +9711,8 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:237
-#: frappe/public/js/frappe/views/reports/query_report.js:1816
+#: frappe/public/js/frappe/views/reports/query_report.js:235
+#: frappe/public/js/frappe/views/reports/query_report.js:1818
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9945,7 +9787,7 @@ msgstr ""
msgid "Field {0} does not exist on {1}"
msgstr ""
-#: frappe/desk/form/meta.py:208
+#: frappe/desk/form/meta.py:184
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
@@ -10048,7 +9890,7 @@ msgstr ""
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
-#: frappe/model/db_query.py:144
+#: frappe/model/db_query.py:146
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
@@ -10097,13 +9939,6 @@ msgstr ""
msgid "File '{0}' not found"
msgstr ""
-#. Label of the file_backup (Check) field in DocType 'Dropbox Settings'
-#. Label of the file_backup (Check) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "File Backup"
-msgstr ""
-
#. Label of the private_file_section (Section Break) field in DocType 'Access
#. Log'
#: frappe/core/doctype/access_log/access_log.json
@@ -10304,7 +10139,7 @@ msgstr ""
msgid "Filters {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1421
+#: frappe/public/js/frappe/views/reports/report_view.js:1427
msgid "Filters:"
msgstr ""
@@ -10451,7 +10286,7 @@ msgstr ""
msgid "Following document {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:111
+#: frappe/website/doctype/web_form/web_form.py:108
msgid "Following fields are missing:"
msgstr ""
@@ -10459,7 +10294,7 @@ msgstr ""
msgid "Following fields have invalid values:"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:345
+#: frappe/public/js/frappe/widgets/widget_dialog.js:358
msgid "Following fields have missing values"
msgstr ""
@@ -10602,7 +10437,7 @@ msgstr ""
msgid "For Document Type"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:553
+#: frappe/public/js/frappe/widgets/widget_dialog.js:566
msgid "For Example: {} Open"
msgstr ""
@@ -10631,7 +10466,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/query_report.js:2068
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10784,7 +10619,7 @@ msgstr ""
#. 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:552
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
msgid "Format"
msgstr ""
@@ -10816,7 +10651,7 @@ msgstr ""
#. 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:149
+#: frappe/www/login.py:153
msgid "Frappe"
msgstr ""
@@ -10833,7 +10668,7 @@ msgstr ""
msgid "Frappe Mail"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:549
+#: frappe/email/doctype/email_account/email_account.py:547
msgid "Frappe Mail OAuth Error"
msgstr ""
@@ -10861,13 +10696,11 @@ msgstr ""
#. 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'
-#. Label of the frequency (Select) field in DocType 'Google Drive'
#: 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/integrations/doctype/google_drive/google_drive.json
#: frappe/public/js/frappe/utils/common.js:395
msgid "Frequency"
msgstr ""
@@ -10913,7 +10746,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
+#: frappe/public/js/frappe/views/reports/query_report.js:1779
msgid "From Document Type"
msgstr ""
@@ -10964,16 +10797,16 @@ 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:247
-#: frappe/public/js/frappe/widgets/widget_dialog.js:686
+#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:693
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:670
+#: frappe/__init__.py:677
msgid "Function {0} is not whitelisted."
msgstr ""
@@ -11038,7 +10871,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:877
+#: frappe/public/js/frappe/views/reports/query_report.js:872
msgid "Generate New Report"
msgstr ""
@@ -11326,32 +11159,12 @@ msgstr ""
msgid "Google Contacts Id"
msgstr ""
-#. Name of a DocType
-#. Label of the google_drive_section (Section Break) field in DocType 'Google
-#. Drive'
#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/google_drive/google_drive.json
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:117
-msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:132
-msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:193
-msgid "Google Drive - Could not locate - {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:204
-msgid "Google Drive Backup Successful."
-msgstr ""
-
#. Label of the section_break_7 (Section Break) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -11681,6 +11494,10 @@ msgstr ""
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'
@@ -12004,17 +11821,17 @@ msgstr ""
msgid "Home Settings"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:330
-#: frappe/core/doctype/file/test_file.py:332
-#: frappe/core/doctype/file/test_file.py:396
+#: 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:385
+#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:341
+#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
msgstr ""
@@ -12059,7 +11876,7 @@ msgstr ""
#: frappe/core/doctype/data_import/importer.py:1177
#: frappe/core/doctype/data_import/importer.py:1242
#: frappe/core/doctype/data_import/importer.py:1245
-#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:50
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
#: frappe/public/js/frappe/list/list_settings.js:337
@@ -12071,7 +11888,7 @@ msgid "ID"
msgstr ""
#: frappe/desk/reportview.py:491
-#: frappe/public/js/frappe/views/reports/report_view.js:978
+#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
msgstr ""
@@ -12255,12 +12072,6 @@ msgstr ""
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
msgstr ""
-#. Description of the 'Backup Path' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "If it's empty, it will backup to the root of the bucket."
-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"
@@ -12391,16 +12202,12 @@ msgstr ""
msgid "Ignored Apps"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:348
-msgid "Illegal Access Token. Please try again"
-msgstr ""
-
#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
msgstr ""
-#: frappe/model/db_query.py:451 frappe/model/db_query.py:454
-#: frappe/model/db_query.py:1128
+#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
+#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
msgstr ""
@@ -12749,11 +12556,11 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1592
+#: frappe/public/js/frappe/views/reports/query_report.js:1594
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1584
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Include indentation"
msgstr ""
@@ -12820,11 +12627,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1542
+#: frappe/model/document.py:1541
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1544
+#: frappe/model/document.py:1543
msgid "Incorrect value:"
msgstr ""
@@ -12833,10 +12640,10 @@ msgstr ""
#. 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:53
+#: 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:999
+#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
msgstr ""
@@ -12911,7 +12718,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:1822
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
msgid "Insert After"
msgstr ""
@@ -12927,7 +12734,7 @@ msgstr ""
msgid "Insert Below"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:384
+#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
msgstr ""
@@ -12976,11 +12783,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:818
+#: frappe/permissions.py:827
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:376
+#: frappe/database/query.py:383
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -13098,7 +12905,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:221
#: frappe/public/js/frappe/form/grid_row.js:833
#: frappe/public/js/frappe/form/layout.js:811
-#: frappe/public/js/frappe/views/reports/report_view.js:710
+#: frappe/public/js/frappe/views/reports/report_view.js:716
msgid "Invalid \"depends_on\" expression"
msgstr ""
@@ -13138,7 +12945,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:102
+#: frappe/database/query.py:103
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13183,6 +12990,7 @@ 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 ""
@@ -13207,7 +13015,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1226 frappe/www/update-password.html:123
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
#: frappe/www/update-password.html:247
msgid "Invalid Password"
@@ -13236,7 +13044,7 @@ msgstr ""
#: frappe/core/doctype/file/file.py:220
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
-#: frappe/public/js/frappe/widgets/widget_dialog.js:589
+#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
msgstr ""
@@ -13257,11 +13065,11 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:393
+#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
-#: frappe/model/document.py:1015 frappe/model/document.py:1029
+#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13285,7 +13093,7 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:182
+#: frappe/database/query.py:189
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
@@ -13311,7 +13119,7 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:324
+#: frappe/app.py:317
msgid "Invalid request arguments"
msgstr ""
@@ -13495,7 +13303,7 @@ 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:328
+#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
msgstr ""
@@ -13710,6 +13518,10 @@ msgstr ""
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 ""
@@ -13741,7 +13553,7 @@ msgstr ""
#. 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:498
+#: frappe/public/js/frappe/widgets/widget_dialog.js:511
msgid "Kanban Board"
msgstr ""
@@ -14013,10 +13825,10 @@ msgstr ""
#: 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:300
-#: frappe/public/js/frappe/widgets/widget_dialog.js:453
-#: frappe/public/js/frappe/widgets/widget_dialog.js:630
-#: frappe/public/js/frappe/widgets/widget_dialog.js:663
+#: 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
@@ -14101,11 +13913,6 @@ msgstr ""
msgid "Last Active"
msgstr ""
-#. Label of the last_backup_on (Datetime) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Last Backup On"
-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"
@@ -14190,12 +13997,12 @@ msgstr ""
msgid "Last Synced On"
msgstr ""
-#: frappe/model/meta.py:55 frappe/public/js/frappe/model/meta.js:205
+#: 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:54 frappe/public/js/frappe/model/meta.js:204
+#: 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 ""
@@ -14239,7 +14046,7 @@ msgid "Leave blank to repeat always"
msgstr ""
#: frappe/core/doctype/communication/mixins.py:207
-#: frappe/email/doctype/email_account/email_account.py:722
+#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
msgstr ""
@@ -14458,7 +14265,7 @@ msgstr ""
msgid "Liked"
msgstr ""
-#: frappe/model/meta.py:58 frappe/public/js/frappe/model/meta.js:208
+#: 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 ""
@@ -14473,11 +14280,6 @@ msgstr ""
msgid "Limit"
msgstr ""
-#. Label of the limit_no_of_backups (Check) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Limit Number of DB Backups"
-msgstr ""
-
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14592,11 +14394,11 @@ msgstr ""
#: 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:414
+#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:350
+#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
msgstr ""
@@ -14609,7 +14411,7 @@ msgstr ""
msgid "Link Type"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:346
+#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
msgstr ""
@@ -14761,7 +14563,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1085
+#: frappe/public/js/frappe/views/reports/query_report.js:1087
msgid "Loading"
msgstr ""
@@ -14892,7 +14694,7 @@ msgstr ""
msgid "Login Page"
msgstr ""
-#: frappe/www/login.py:152
+#: frappe/www/login.py:156
msgid "Login To {0}"
msgstr ""
@@ -15159,7 +14961,7 @@ msgstr ""
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:473
+#: frappe/website/doctype/web_form/web_form.py:470
msgid "Mandatory Information missing:"
msgstr ""
@@ -15434,7 +15236,7 @@ msgid "Menu"
msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:242
-#: frappe/public/js/frappe/model/model.js:754
+#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr ""
@@ -15613,7 +15415,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:672
+#: frappe/__init__.py:679
msgid "Method Not Allowed"
msgstr ""
@@ -15690,7 +15492,7 @@ msgstr ""
msgid "Miss"
msgstr ""
-#: frappe/desk/form/meta.py:218
+#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
msgstr ""
@@ -15715,7 +15517,7 @@ msgid "Missing Value"
msgstr ""
#: frappe/public/js/frappe/ui/field_group.js:124
-#: frappe/public/js/frappe/widgets/widget_dialog.js:361
+#: 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"
@@ -15898,8 +15700,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -15907,7 +15707,6 @@ msgstr ""
#: 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/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:400
#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
@@ -16079,7 +15878,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:462
+#: frappe/website/doctype/web_form/web_form.py:459
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16245,7 +16044,7 @@ msgstr ""
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:793
+#: frappe/model/document.py:792
msgid "Negative Value"
msgstr ""
@@ -16350,7 +16149,7 @@ 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:762
+#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr ""
@@ -16384,7 +16183,7 @@ msgstr ""
msgid "New Quick List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
msgstr ""
@@ -16440,26 +16239,26 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
#: frappe/public/js/frappe/form/toolbar.js:558
-#: frappe/public/js/frappe/model/model.js:661
+#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:379
+#: frappe/website/doctype/web_form/web_form.py:376
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:394
+#: frappe/public/js/frappe/views/reports/query_report.js:392
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:386
+#: frappe/public/js/frappe/views/reports/query_report.js:384
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:391
+#: frappe/public/js/frappe/views/reports/query_report.js:389
msgid "New {0} {1} created"
msgstr ""
@@ -16471,7 +16270,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:802
+#: frappe/core/doctype/user/user.py:804
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16633,7 +16432,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16774,7 +16573,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:803
+#: frappe/core/doctype/user/user.py:805
msgid "No Roles Specified"
msgstr ""
@@ -16925,7 +16724,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:827 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16934,7 +16733,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
-#: frappe/model/db_query.py:949
+#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
msgstr ""
@@ -17018,12 +16817,6 @@ msgstr ""
msgid "Non-Conforming"
msgstr ""
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "None"
-msgstr ""
-
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr ""
@@ -17038,7 +16831,7 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr ""
@@ -17059,7 +16852,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:374 frappe/www/404.html:3
+#: frappe/app.py:367 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -17085,9 +16878,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:754 frappe/app.py:367 frappe/desk/calendar.py:26
+#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:711
+#: frappe/website/doctype/web_form/web_form.py:708
#: 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
@@ -17108,7 +16901,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:813
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
-#: frappe/public/js/frappe/views/reports/report_view.js:197
+#: frappe/public/js/frappe/views/reports/report_view.js:203
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
@@ -17139,7 +16932,7 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:264
+#: frappe/core/doctype/user/user.py:265
msgid "Not a valid User Image."
msgstr ""
@@ -17155,7 +16948,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:360
+#: frappe/permissions.py:370
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17175,7 +16968,7 @@ msgstr ""
msgid "Not allowed to print draft documents"
msgstr ""
-#: frappe/permissions.py:212
+#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
msgstr ""
@@ -17191,12 +16984,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:214
+#: frappe/core/doctype/system_settings/system_settings.py:215
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:724
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17222,15 +17015,6 @@ msgstr ""
msgid "Note:"
msgstr ""
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'Dropbox Settings'
-#. Description of the 'Send Email for Successful backup' (Check) field in
-#. DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Note: By default emails for failed backups are sent."
-msgstr ""
-
#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr ""
@@ -17290,13 +17074,10 @@ msgstr ""
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
#. Name of a DocType
-#. Label of the notification_section (Section Break) field in DocType 'S3
-#. Backup Settings'
#: 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
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Notification"
msgstr ""
@@ -17398,7 +17179,7 @@ msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:615
+#: frappe/public/js/frappe/widgets/widget_dialog.js:628
msgid "Number Card"
msgstr ""
@@ -17416,7 +17197,7 @@ 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:645
+#: frappe/public/js/frappe/widgets/widget_dialog.js:658
msgid "Number Cards"
msgstr ""
@@ -17434,15 +17215,6 @@ msgstr ""
msgid "Number of Backups"
msgstr ""
-#. Label of the no_of_backups (Int) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Number of DB Backups"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:54
-msgid "Number of DB backups cannot be less than 1"
-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"
@@ -17458,7 +17230,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:169
+#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17687,7 +17459,7 @@ 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:322
+#: frappe/public/js/frappe/widgets/widget_dialog.js:335
msgid "Onboard"
msgstr ""
@@ -17783,19 +17555,13 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Only change this if you want to use other S3 compatible object storage backends."
-msgstr ""
-
-#: frappe/model/document.py:1232
+#: frappe/model/document.py:1231
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:315
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
msgstr ""
@@ -18044,7 +17810,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:870
+#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
msgstr ""
@@ -18156,7 +17922,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1742
+#: frappe/public/js/frappe/views/reports/query_report.js:1744
msgid "PDF"
msgstr ""
@@ -18455,7 +18221,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:798
+#: frappe/permissions.py:807
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18515,11 +18281,11 @@ msgstr ""
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1079
+#: frappe/core/doctype/user/user.py:1081
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:457
+#: frappe/core/doctype/user/user.py:458
msgid "Password Reset"
msgstr ""
@@ -18553,7 +18319,7 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1078
+#: frappe/core/doctype/user/user.py:1080
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18565,7 +18331,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:869
+#: frappe/core/doctype/user/user.py:871
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18722,7 +18488,7 @@ msgstr ""
msgid "Permanently Submit {0}?"
msgstr ""
-#: frappe/public/js/frappe/model/model.js:733
+#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
msgstr ""
@@ -18883,8 +18649,8 @@ msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:40
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
-#: frappe/public/js/frappe/views/reports/report_view.js:1576
+#: frappe/public/js/frappe/views/reports/report_view.js:1579
+#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
msgstr ""
@@ -18924,7 +18690,7 @@ msgstr ""
msgid "Plant"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:546
+#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
msgstr ""
@@ -18940,7 +18706,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:309
+#: frappe/public/js/frappe/views/reports/query_report.js:307
msgid "Please Set Chart"
msgstr ""
@@ -18956,7 +18722,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1063
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -18984,11 +18750,11 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:946
+#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1059
+#: frappe/core/doctype/user/user.py:1061
msgid "Please check your email for verification"
msgstr ""
@@ -19016,10 +18782,6 @@ msgstr ""
msgid "Please click on the following link to set your new password"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:343
-msgid "Please close this window"
-msgstr ""
-
#: frappe/www/confirm_workflow_action.html:4
msgid "Please confirm your action to {0} this document."
msgstr ""
@@ -19036,7 +18798,7 @@ msgstr ""
msgid "Please create chart first"
msgstr ""
-#: frappe/desk/form/meta.py:214
+#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
msgstr ""
@@ -19048,7 +18810,7 @@ msgstr ""
msgid "Please duplicate this to make changes"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:162
+#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19066,7 +18828,7 @@ msgstr ""
msgid "Please enable pop-ups in your browser"
msgstr ""
-#: frappe/integrations/google_oauth.py:53
+#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
msgstr ""
@@ -19143,7 +18905,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:987
+#: frappe/model/document.py:986
msgid "Please refresh to get the latest document."
msgstr ""
@@ -19167,7 +18929,7 @@ msgstr ""
msgid "Please save the document before removing assignment"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1703
+#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
msgstr ""
@@ -19183,11 +18945,11 @@ msgstr ""
msgid "Please select Entity Type first"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:112
+#: frappe/core/doctype/system_settings/system_settings.py:113
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1181
+#: frappe/public/js/frappe/views/reports/query_report.js:1183
msgid "Please select X and Y fields"
msgstr ""
@@ -19215,7 +18977,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1140
+#: frappe/model/db_query.py:1141
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19237,10 +18999,6 @@ msgstr ""
msgid "Please select {0}"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:305
-msgid "Please set Dropbox access keys in site config or doctype"
-msgstr ""
-
#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
msgstr ""
@@ -19249,7 +19007,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:1404
+#: frappe/public/js/frappe/views/reports/query_report.js:1406
msgid "Please set filters"
msgstr ""
@@ -19269,7 +19027,7 @@ msgstr ""
msgid "Please set the series to be used."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:125
+#: frappe/core/doctype/system_settings/system_settings.py:126
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr ""
@@ -19277,19 +19035,19 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:422
+#: frappe/core/doctype/user/user.py:423
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:434
+#: 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:823
+#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:774
+#: frappe/permissions.py:783
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19318,7 +19076,7 @@ msgstr ""
msgid "Please try again"
msgstr ""
-#: frappe/integrations/google_oauth.py:56
+#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
msgstr ""
@@ -19631,8 +19389,8 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1728
-#: frappe/public/js/frappe/views/reports/report_view.js:1531
+#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr ""
@@ -19875,7 +19633,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
msgstr ""
@@ -20196,7 +19954,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:729
+#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
msgstr ""
@@ -20217,7 +19975,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:554
+#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
msgstr ""
@@ -20250,12 +20008,6 @@ msgstr ""
msgid "Queued for Submission. You can track the progress over {0}."
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:65
-#: frappe/integrations/doctype/google_drive/google_drive.py:153
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:86
-msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr ""
-
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
@@ -20391,7 +20143,7 @@ msgstr ""
msgid "Re-Run in Console"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:728
+#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
msgstr ""
@@ -20493,7 +20245,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:889
+#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
msgstr ""
@@ -20858,11 +20610,11 @@ msgid "Referrer"
msgstr ""
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:548
+#: frappe/public/js/frappe/desk.js:556
#: 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:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1719
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20881,12 +20633,10 @@ 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 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
@@ -20903,7 +20653,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
msgstr ""
@@ -21066,7 +20816,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
#: frappe/public/js/frappe/form/toolbar.js:432
-#: frappe/public/js/frappe/model/model.js:772
+#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
msgstr ""
@@ -21076,7 +20826,7 @@ msgstr ""
msgid "Rename Fieldname"
msgstr ""
-#: frappe/public/js/frappe/model/model.js:759
+#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
msgstr ""
@@ -21140,7 +20890,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:146
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
msgstr ""
@@ -21278,7 +21028,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1902
+#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
msgstr ""
@@ -21330,7 +21080,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1009
+#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
msgstr ""
@@ -21346,11 +21096,11 @@ msgstr ""
msgid "Report updated successfully"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1351
+#: frappe/public/js/frappe/views/reports/report_view.js:1357
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1940
+#: frappe/public/js/frappe/views/reports/query_report.js:1942
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21386,7 +21136,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:925
+#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
msgstr ""
@@ -21836,7 +21586,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:363
+#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -21951,7 +21701,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:855 frappe/model/document.py:778
+#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
msgstr ""
@@ -21964,7 +21714,7 @@ msgstr ""
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:982
msgid "Row #{0}:"
msgstr ""
@@ -22042,7 +21792,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:653
+#: frappe/permissions.py:662
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22086,23 +21836,6 @@ msgstr ""
msgid "Runtime in Seconds"
msgstr ""
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "S3 Backup Settings"
-msgstr ""
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
-msgid "S3 Backup complete!"
-msgstr ""
-
-#. Label of the s3_bucket_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Bucket Details"
-msgstr ""
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
@@ -22243,7 +21976,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/page/print/print.js:858
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/quick_entry.js:185
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
@@ -22253,8 +21986,8 @@ msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
-#: frappe/public/js/frappe/views/reports/query_report.js:1894
-#: frappe/public/js/frappe/views/reports/report_view.js:1720
+#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
@@ -22271,8 +22004,8 @@ msgstr ""
msgid "Save Anyway"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1382
-#: frappe/public/js/frappe/views/reports/report_view.js:1727
+#: frappe/public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
msgstr ""
@@ -22280,7 +22013,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1897
+#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
msgstr ""
@@ -22446,7 +22179,7 @@ msgstr ""
msgid "Scheduler Status"
msgstr ""
-#: frappe/utils/scheduler.py:249
+#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr ""
@@ -22672,7 +22405,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:858
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "See all past reports."
msgstr ""
@@ -22752,7 +22485,7 @@ msgstr ""
msgid "Select Child Table"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:377
+#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
msgstr ""
@@ -23069,31 +22802,11 @@ msgstr ""
msgid "Send Email To Creator"
msgstr ""
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Dropbox Settings'
-#. Label of the send_email_for_successful_backup (Check) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Email for Successful Backup"
-msgstr ""
-
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Email for Successful backup"
-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 email (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Notification To"
-msgstr ""
-
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -23110,14 +22823,6 @@ msgstr ""
msgid "Send Notifications For Email Threads"
msgstr ""
-#. Label of the send_notifications_to (Data) field in DocType 'Dropbox
-#. Settings'
-#. Label of the notify_email (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Notifications To"
-msgstr ""
-
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
msgstr ""
@@ -23376,7 +23081,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:383 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23442,7 +23147,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:360
+#: frappe/app.py:353
msgid "Session Expired"
msgstr ""
@@ -23451,7 +23156,7 @@ msgstr ""
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:119
+#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
msgstr ""
@@ -23474,7 +23179,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:201
+#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
msgstr ""
@@ -23500,7 +23205,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
msgstr ""
@@ -23718,8 +23423,8 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1763
-#: frappe/public/js/frappe/views/reports/report_view.js:1698
+#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23815,6 +23520,15 @@ msgstr ""
msgid "Show \"Call to Action\" in Blog"
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"
@@ -23985,7 +23699,7 @@ msgstr ""
msgid "Show Title in Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1521
+#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
msgstr ""
@@ -24095,7 +23809,7 @@ msgstr ""
msgid "Show {0} List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:495
+#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
msgstr ""
@@ -24130,7 +23844,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
msgstr ""
@@ -24775,7 +24489,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
-#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: frappe/public/js/frappe/views/reports/report_view.js:975
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
@@ -25074,7 +24788,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:1166
+#: frappe/public/js/frappe/form/grid.js:1170
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25171,7 +24885,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:720
+#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
msgstr ""
@@ -25461,11 +25175,9 @@ msgstr ""
#: frappe/geo/doctype/country/country.json
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/connected_app/connected_app.json
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.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_drive/google_drive.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
@@ -25474,7 +25186,6 @@ msgstr ""
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_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
@@ -25599,11 +25310,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1165
+#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1565
+#: frappe/model/document.py:1564
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25622,7 +25333,7 @@ msgstr ""
msgid "Tag Link"
msgstr ""
-#: frappe/model/meta.py:57
+#: 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
@@ -25634,15 +25345,6 @@ msgstr ""
msgid "Tags"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:29
-msgid "Take Backup"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
-msgid "Take Backup Now"
-msgstr ""
-
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
msgstr ""
@@ -25720,12 +25422,12 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1027
+#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
msgstr ""
-#: frappe/core/doctype/translation/test_translation.py:56
-#: frappe/core/doctype/translation/test_translation.py:63
+#: frappe/core/doctype/translation/test_translation.py:47
+#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
msgstr ""
@@ -25734,8 +25436,8 @@ msgstr ""
msgid "Test Job ID"
msgstr ""
-#: frappe/core/doctype/translation/test_translation.py:58
-#: frappe/core/doctype/translation/test_translation.py:66
+#: frappe/core/doctype/translation/test_translation.py:49
+#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
msgstr ""
@@ -25743,7 +25445,7 @@ msgstr ""
msgid "Test email sent to {0}"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:388
+#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25824,7 +25526,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1188
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
msgstr ""
@@ -25992,15 +25694,15 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:987
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:991
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -26012,7 +25714,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:334
+#: frappe/utils/response.py:331
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26073,7 +25775,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26102,7 +25804,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:958
+#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26189,12 +25891,12 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:750
+#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:117
-#: frappe/public/js/frappe/model/model.js:755
+#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr ""
@@ -26232,7 +25934,7 @@ msgstr ""
msgid "This document is already amended, you cannot ammend it again"
msgstr ""
-#: frappe/model/document.py:474
+#: frappe/model/document.py:473
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -26293,7 +25995,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2132
+#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26357,7 +26059,7 @@ msgstr ""
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1033
+#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26365,7 +26067,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:856
+#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
msgstr ""
@@ -26431,7 +26133,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1240
+#: frappe/core/doctype/user/user.py:1242
msgid "Throttled"
msgstr ""
@@ -26782,7 +26484,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:857
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26807,10 +26509,6 @@ msgstr ""
msgid "To use Google Contacts, enable {0}."
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:8
-msgid "To use Google Drive, enable {0}."
-msgstr ""
-
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -26841,7 +26539,7 @@ msgstr ""
msgid "Today"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1564
+#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
msgstr ""
@@ -26857,7 +26555,7 @@ 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:1568
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
msgstr ""
@@ -26913,11 +26611,11 @@ msgstr ""
msgid "Too many changes to database in single action."
msgstr ""
-#: frappe/utils/background_jobs.py:728
+#: 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:1028
+#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -26981,8 +26679,8 @@ msgstr ""
#: frappe/desk/query_report.py:533
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1320
-#: frappe/public/js/frappe/views/reports/report_view.js:1545
+#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr ""
@@ -27045,11 +26743,11 @@ msgstr ""
msgid "Total:"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1250
+#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1225
+#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
msgstr ""
@@ -27162,7 +26860,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2188
+#: frappe/public/js/frappe/views/reports/query_report.js:2183
msgid "Translate Data"
msgstr ""
@@ -27173,7 +26871,7 @@ msgstr ""
msgid "Translate Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1650
+#: frappe/public/js/frappe/views/reports/report_view.js:1656
msgid "Translate values"
msgstr ""
@@ -27321,7 +27019,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/views/file/file_view.js:337
#: frappe/public/js/frappe/views/workspace/workspace.js:399
-#: frappe/public/js/frappe/widgets/widget_dialog.js:391
+#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
msgid "Type"
@@ -27401,7 +27099,7 @@ msgstr ""
#: 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:458
+#: 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"
@@ -27463,7 +27161,7 @@ msgstr ""
msgid "Unable to load camera."
msgstr ""
-#: frappe/public/js/frappe/model/model.js:268
+#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
msgstr ""
@@ -27492,7 +27190,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:383
+#: frappe/app.py:376
msgid "Uncaught Exception"
msgstr ""
@@ -27725,7 +27423,7 @@ msgstr ""
msgid "Updated Successfully"
msgstr ""
-#: frappe/public/js/frappe/desk.js:444
+#: frappe/public/js/frappe/desk.js:452
msgid "Updated To A New Version 🎉"
msgstr ""
@@ -27733,7 +27431,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:333
+#: frappe/utils/response.py:330
msgid "Updating"
msgstr ""
@@ -27807,18 +27505,6 @@ msgstr ""
msgid "Uploaded To Google Drive"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:196
-msgid "Uploading backup to Google Drive."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:201
-msgid "Uploading successful."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:16
-msgid "Uploading to Google Drive"
-msgstr ""
-
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -27902,11 +27588,11 @@ msgstr ""
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:434
+#: frappe/model/db_query.py:435
msgid "Use of function {0} in field is restricted"
msgstr ""
-#: frappe/model/db_query.py:411
+#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
msgstr ""
@@ -28023,7 +27709,7 @@ msgstr ""
msgid "User Cannot Search"
msgstr ""
-#: frappe/public/js/frappe/desk.js:546
+#: frappe/public/js/frappe/desk.js:554
msgid "User Changed"
msgstr ""
@@ -28129,8 +27815,8 @@ 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:1881
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
@@ -28227,7 +27913,7 @@ msgstr ""
msgid "User permission already exists"
msgstr ""
-#: frappe/www/login.py:167
+#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
msgstr ""
@@ -28235,23 +27921,23 @@ msgstr ""
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: frappe/core/doctype/user/user.py:536
+#: frappe/core/doctype/user/user.py:537
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:326
+#: frappe/core/doctype/user/user.py:327
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:602
+#: frappe/core/doctype/user/user.py:603
msgid "User {0} cannot be renamed"
msgstr ""
-#: frappe/permissions.py:138
+#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
msgstr ""
-#: frappe/permissions.py:161
+#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr ""
@@ -28264,7 +27950,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1369
+#: frappe/core/doctype/user/user.py:1371
msgid "User {0} impersonated as {1}"
msgstr ""
@@ -28293,7 +27979,7 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:687
+#: frappe/core/doctype/user/user.py:689
msgid "Username {0} already exists"
msgstr ""
@@ -28433,15 +28119,15 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1049 frappe/model/document.py:834
+#: frappe/model/base_document.py:1054 frappe/model/document.py:833
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:780
+#: frappe/model/document.py:779
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:784
+#: frappe/model/document.py:783
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28472,7 +28158,7 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1124
msgid "Value too big"
msgstr ""
@@ -29073,11 +28759,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -29086,9 +28767,6 @@ msgstr ""
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:399
#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
@@ -29123,11 +28801,11 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:414
+#: frappe/core/doctype/user/user.py:415
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:475
+#: frappe/core/doctype/user/user.py:476
msgid "Welcome to {0}"
msgstr ""
@@ -29160,7 +28838,7 @@ 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:468
+#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
msgstr ""
@@ -29359,7 +29037,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:177
+#: frappe/public/js/frappe/router.js:173
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29429,11 +29107,11 @@ msgstr ""
msgid "Workspaces"
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:753
+#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
msgstr ""
@@ -29452,11 +29130,11 @@ msgstr ""
msgid "Write"
msgstr ""
-#: frappe/model/base_document.py:949
+#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:484
+#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
msgstr ""
@@ -29475,13 +29153,13 @@ msgstr ""
msgid "Y Axis"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:491
+#: frappe/public/js/frappe/views/reports/report_view.js:497
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:1221
+#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
msgstr ""
@@ -29542,7 +29220,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29582,11 +29260,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:409
+#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:398
+#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29609,7 +29287,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:604
+#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29621,7 +29299,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:569
+#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29637,7 +29315,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:669
+#: frappe/__init__.py:676
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29645,7 +29323,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr ""
-#: frappe/core/doctype/installed_applications/installed_applications.py:82
+#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -29809,11 +29487,11 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:368
+#: frappe/app.py:361
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:838
+#: frappe/desk/query_report.py:831
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29825,11 +29503,11 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:772
+#: frappe/website/doctype/web_form/web_form.py:769
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:286 frappe/utils/response.py:290
+#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
msgstr ""
@@ -29837,7 +29515,7 @@ msgstr ""
msgid "You don't have permission to get a report on: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:175
+#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
msgstr ""
@@ -29890,23 +29568,23 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:339
+#: 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:768
+#: frappe/website/doctype/web_form/web_form.py:765
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:609
+#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:357
+#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
@@ -29922,11 +29600,11 @@ msgstr ""
msgid "You need to be a system user to access this page."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:94
+#: 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:275
+#: frappe/utils/response.py:272
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29934,7 +29612,7 @@ msgstr ""
msgid "You need to be logged in to access this page"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:164
+#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
msgstr ""
@@ -30009,7 +29687,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/desk.js:543
+#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -30092,7 +29770,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:354
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -30323,7 +30001,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:403 frappe/permissions.py:414
+#: frappe/permissions.py:412 frappe/permissions.py:423
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30875,7 +30553,7 @@ msgstr ""
msgid "{0} Calendar"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:564
+#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
msgstr ""
@@ -30923,7 +30601,7 @@ msgstr ""
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1149
+#: frappe/model/base_document.py:1154
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -30933,7 +30611,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:952
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
msgstr ""
@@ -30999,7 +30677,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:149
+#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
msgstr ""
@@ -31012,7 +30690,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:547
+#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -31137,7 +30815,7 @@ msgstr ""
msgid "{0} is an invalid email address in 'Recipients'"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1462
+#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
msgstr ""
@@ -31146,27 +30824,27 @@ msgstr ""
msgid "{0} is currently {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1431
+#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1451
+#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1441
+#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1456
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1446
+#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1481
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
msgstr ""
@@ -31186,7 +30864,7 @@ msgstr ""
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:64
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
msgstr ""
@@ -31215,11 +30893,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:787
+#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31231,27 +30909,27 @@ msgstr ""
msgid "{0} is not a zip file"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1436
+#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1483
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1487
+#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:165
+#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1470
+#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
msgstr ""
@@ -31262,11 +30940,11 @@ msgstr ""
msgid "{0} is required"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1486
+#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1465
+#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
msgstr ""
@@ -31274,12 +30952,12 @@ msgstr ""
msgid "{0} items selected"
msgstr ""
-#: frappe/core/doctype/user/user.py:1378
+#: frappe/core/doctype/user/user.py:1380
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:104
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
msgstr ""
@@ -31295,7 +30973,7 @@ msgstr ""
msgid "{0} m"
msgstr ""
-#: frappe/desk/notifications.py:397
+#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
msgstr ""
@@ -31307,35 +30985,35 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1792
+#: frappe/model/document.py:1791
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1551
+#: frappe/model/document.py:1550
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1553
+#: frappe/model/document.py:1552
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1549
+#: frappe/model/document.py:1548
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1547 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:875
+#: frappe/model/base_document.py:876
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:732
+#: frappe/model/base_document.py:729
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1555
+#: frappe/model/document.py:1554
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31410,7 +31088,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1785
+#: frappe/model/document.py:1784
msgid "{0} row #{1}: "
msgstr ""
@@ -31506,11 +31184,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:665 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:987
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -31526,7 +31204,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:260 frappe/permissions.py:558
+#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
msgstr ""
@@ -31534,7 +31212,7 @@ msgstr ""
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1110
+#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
msgstr ""
@@ -31542,7 +31220,7 @@ msgstr ""
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1115
+#: frappe/model/base_document.py:1120
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
@@ -31643,7 +31321,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1279
+#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
msgstr ""
diff --git a/frappe/locale/tr.po b/frappe/locale/tr.po
index 8a4e7e0242..5a7356b12c 100644
--- a/frappe/locale/tr.po
+++ b/frappe/locale/tr.po
@@ -2,14 +2,14 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-08 09:34+0000\n"
-"PO-Revision-Date: 2025-06-11 14:05\n"
+"POT-Creation-Date: 2025-06-22 09:34+0000\n"
+"PO-Revision-Date: 2025-06-22 16:40\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Turkish\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.13.1\n"
+"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"
@@ -141,7 +141,7 @@ msgstr "1 Gün"
msgid "1 Google Calendar Event synced."
msgstr "1 Google Takvim Etkinliği senkronize edildi."
-#: frappe/public/js/frappe/views/reports/query_report.js:951
+#: frappe/public/js/frappe/views/reports/query_report.js:953
msgid "1 Report"
msgstr "1 Rapor"
@@ -149,7 +149,7 @@ msgstr "1 Rapor"
msgid "1 comment"
msgstr "1 yorum"
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:711
msgid "1 day ago"
msgstr "1 gün önce"
@@ -158,17 +158,17 @@ msgid "1 hour"
msgstr "1 saat"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:709
msgid "1 hour ago"
msgstr "1 Saat Önce"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:707
msgid "1 minute ago"
msgstr "1 Dakika Önce"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:715
msgid "1 month ago"
msgstr "1 Ay Önce"
@@ -180,37 +180,37 @@ msgstr "1 / 2"
msgid "1 record will be exported"
msgstr "1 Kayıt Dışa Aktarılacak"
-#: frappe/tests/test_utils.py:705
+#: frappe/tests/test_utils.py:706
msgid "1 second ago"
msgstr "1 saniye önce"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:713
msgid "1 week ago"
msgstr "1 Hafta Önce"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:717
msgid "1 year ago"
msgstr "1 Yıl Önce"
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:710
msgid "2 hours ago"
msgstr "2 saat önce"
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:716
msgid "2 months ago"
msgstr "2 ay önce"
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:714
msgid "2 weeks ago"
msgstr "2 hafta önce"
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:718
msgid "2 years ago"
msgstr "2 yıl önce"
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:708
msgid "3 minutes ago"
msgstr "3 dakika önce"
@@ -226,7 +226,7 @@ msgstr "4 Saat"
msgid "5 Records"
msgstr "5 Kayıt"
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:712
msgid "5 days ago"
msgstr "5 Gün Önce"
@@ -246,7 +246,7 @@ msgstr "<"
msgid "<="
msgstr "<="
-#: frappe/public/js/frappe/widgets/widget_dialog.js:588
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
msgid "{0} is not a valid URL"
msgstr "{0} geçerli bir URL değil"
@@ -839,10 +839,7 @@ msgid "API"
msgstr "API"
#. Label of the api_access (Section Break) field in DocType 'User'
-#. Label of the api_access_section (Section Break) field in DocType 'S3 Backup
-#. Settings'
#: frappe/core/doctype/user/user.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "API Access"
msgstr "API Erişimi"
@@ -954,17 +951,6 @@ msgstr "Yaklaşık {0} saniye kaldı"
msgid "Access Control"
msgstr "Erişim Kontrolü"
-#. Label of the access_key_id (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key ID"
-msgstr "Erişim Anahtarı Kimliği"
-
-#. Label of the secret_access_key (Password) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key Secret"
-msgstr "Erişim Gizli Anahtarı"
-
#. Name of a DocType
#. Label of a Link in the Users Workspace
#: frappe/core/doctype/access_log/access_log.json
@@ -1015,6 +1001,10 @@ msgstr "Hesap Yöneticisi"
msgid "Accounts User"
msgstr "Muhasebe Kullanıcısı"
+#: 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'
@@ -1045,7 +1035,7 @@ msgstr "Aksiyon / Rota"
msgid "Action Complete"
msgstr "Eylem Tamamlandı"
-#: frappe/model/document.py:1872
+#: frappe/model/document.py:1871
msgid "Action Failed"
msgstr "Eylem Başarısız"
@@ -1094,10 +1084,10 @@ msgstr "Eylem {0} {1} {2} tarihinde başarısız oldu. Görüntüle {3}"
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:192
-#: frappe/public/js/frappe/views/reports/query_report.js:205
-#: frappe/public/js/frappe/views/reports/query_report.js:215
-#: frappe/public/js/frappe/views/reports/query_report.js:845
+#: frappe/public/js/frappe/views/reports/query_report.js:190
+#: frappe/public/js/frappe/views/reports/query_report.js:203
+#: frappe/public/js/frappe/views/reports/query_report.js:213
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Actions"
msgstr "İşlemler"
@@ -1159,8 +1149,8 @@ msgstr "Aktivite Günlüğü"
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:267
-#: frappe/public/js/frappe/views/reports/query_report.js:295
+#: frappe/public/js/frappe/views/reports/query_report.js:265
+#: frappe/public/js/frappe/views/reports/query_report.js:293
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "Yeni"
@@ -1201,7 +1191,7 @@ msgstr "Üste Kenarlık Ekle"
msgid "Add Card to Dashboard"
msgstr "Kartı Panoya Ekle"
-#: frappe/public/js/frappe/views/reports/query_report.js:211
+#: frappe/public/js/frappe/views/reports/query_report.js:209
msgid "Add Chart to Dashboard"
msgstr "Gösterge Paneline Grafik Ekle"
@@ -1210,10 +1200,10 @@ msgid "Add Child"
msgstr "Alt öğe ekle"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1769
-#: frappe/public/js/frappe/views/reports/query_report.js:1772
-#: frappe/public/js/frappe/views/reports/report_view.js:349
-#: frappe/public/js/frappe/views/reports/report_view.js:374
+#: frappe/public/js/frappe/views/reports/query_report.js:1771
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/report_view.js:355
+#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
msgstr "Sütun Ekle"
@@ -1237,7 +1227,7 @@ msgid "Add Custom Tags"
msgstr "Özel Etiket Ekle"
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
-#: frappe/public/js/frappe/widgets/widget_dialog.js:703
+#: frappe/public/js/frappe/widgets/widget_dialog.js:716
msgid "Add Filters"
msgstr "Filtreleri Ekle"
@@ -1272,7 +1262,7 @@ msgstr "Katılımcı Ekle"
msgid "Add Query Parameters"
msgstr "Sorgu Parametreleri Ekle"
-#: frappe/core/doctype/user/user.py:806
+#: frappe/core/doctype/user/user.py:808
msgid "Add Roles"
msgstr "Rol Ekle"
@@ -1417,7 +1407,7 @@ msgid "Add tab"
msgstr "Sekme Ekle"
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:253
+#: frappe/public/js/frappe/views/reports/query_report.js:251
msgid "Add to Dashboard"
msgstr "Gösterge Paneline Ekle"
@@ -1572,11 +1562,11 @@ msgstr "Yönetim"
msgid "Administrator"
msgstr "Yönetici"
-#: frappe/core/doctype/user/user.py:1211
+#: frappe/core/doctype/user/user.py:1213
msgid "Administrator Logged In"
msgstr "Yönetici Giriş Yaptı"
-#: frappe/core/doctype/user/user.py:1205
+#: frappe/core/doctype/user/user.py:1207
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "Yönetici, IP Adresi {2} üzerinden {1} yoluyla {0} adresine erişim sağladı."
@@ -1809,12 +1799,6 @@ msgstr "Toplu Düzenlemeye İzin Ver"
msgid "Allow Consecutive Login Attempts "
msgstr "Arka Arkaya Oturum Açma Denemelerine İzin Ver"
-#. Label of the allow_dropbox_access (Button) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Allow Dropbox Access"
-msgstr "Dropbox Erişimine İzin Ver"
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
msgid "Allow Google Calendar Access"
msgstr "Google Takvim Erişimine İzin Ver"
@@ -1823,10 +1807,6 @@ msgstr "Google Takvim Erişimine İzin Ver"
msgid "Allow Google Contacts Access"
msgstr "Google Kişiler Erişimine İzin Ver"
-#: frappe/integrations/doctype/google_drive/google_drive.py:52
-msgid "Allow Google Drive Access"
-msgstr "Google Drive Erişimine İzin Ver"
-
#. Label of the allow_guest (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
@@ -2081,7 +2061,7 @@ msgstr "İzin verilen gömülü alan adları"
msgid "Allowing DocType, DocType. Be careful!"
msgstr "DocType için izin veriliyor. Dikkatli olun!"
-#: frappe/core/doctype/user/user.py:1021
+#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr "Zaten kayıltı"
@@ -2089,11 +2069,11 @@ msgstr "Zaten kayıltı"
msgid "Already in the following Users ToDo list:{0}"
msgstr "Zaten şu Kullanıcıların Yapılacaklar listesinde:{0}"
-#: frappe/public/js/frappe/views/reports/report_view.js:896
+#: frappe/public/js/frappe/views/reports/report_view.js:902
msgid "Also adding the dependent currency field {0}"
msgstr "Bağımlı para birimi alanı da ekleniyor {0}"
-#: frappe/public/js/frappe/views/reports/report_view.js:909
+#: frappe/public/js/frappe/views/reports/report_view.js:915
msgid "Also adding the status dependency field {0}"
msgstr "Durum bağımlılığı alanı da ekleniyor {0}"
@@ -2172,7 +2152,7 @@ msgstr "Değiştiriliyor"
msgid "Amendment Naming Override"
msgstr "Değişiklik Adlandırma Geçersiz Kılma"
-#: frappe/model/document.py:550
+#: frappe/model/document.py:549
msgid "Amendment Not Allowed"
msgstr "Değişikliğe İzin Verilmiyor"
@@ -2261,15 +2241,6 @@ msgstr "Sistem Yöneticisi haricinde, Kullanıcı İzinlerini Ayarlama hakkına
msgid "App"
msgstr "Uygulama"
-#. Label of the app_access_key (Data) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Access Key"
-msgstr "Uygulama Erişim Anahtarı"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:22
-msgid "App Access Key and/or Secret Key are not present."
-msgstr "Uygulama Erişim Anahtarı ve/veya Gizli Anahtar mevcut değil."
-
#. Label of the client_id (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client ID"
@@ -2303,16 +2274,11 @@ msgstr "Uygulama Logosu"
msgid "App Name"
msgstr "Uygulama İsmi"
-#. Label of the app_secret_key (Password) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Secret Key"
-msgstr "Uygulama Gizli Anahtarı"
-
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr "Modül için uygulama bulunamadı: {0}"
-#: frappe/__init__.py:1462
+#: frappe/__init__.py:1465
msgid "App {0} is not installed"
msgstr "{0} Uygulaması yüklü değil"
@@ -2462,7 +2428,7 @@ msgstr "Arşivlenmiş Sütunlar"
msgid "Are you sure you want to clear the assignments?"
msgstr "Atamaları temizlemek istediğinizen emin misiniz?"
-#: frappe/public/js/frappe/form/grid.js:290
+#: frappe/public/js/frappe/form/grid.js:294
msgid "Are you sure you want to delete all rows?"
msgstr "Tüm satırları silmek istediğinizden emin misiniz?"
@@ -2490,7 +2456,7 @@ msgstr "Sekmeyi silmek istediğinizden emin misiniz? Sekmedeki alanlarla birlikt
msgid "Are you sure you want to discard the changes?"
msgstr "Değişiklikleri iptal etmek istediğinizden emin misiniz?"
-#: frappe/public/js/frappe/views/reports/query_report.js:965
+#: frappe/public/js/frappe/views/reports/query_report.js:967
msgid "Are you sure you want to generate a new report?"
msgstr "Yeni bir rapor oluşturmak istediğinizden emin misiniz?"
@@ -2616,7 +2582,7 @@ msgstr "Atamayı Yapan"
msgid "Assigned By Full Name"
msgstr "Atanan Kişinin Tam Adı"
-#: frappe/model/meta.py:60
+#: 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
@@ -2886,13 +2852,11 @@ msgstr "Yazar"
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
#. Contacts'
-#. Label of the authorization_code (Data) field in DocType 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
@@ -2930,12 +2894,6 @@ msgstr "Google Takvim Erişimini Yetkilendirin"
msgid "Authorize Google Contacts Access"
msgstr "Google Contacts Erişimini Yetkilendirin"
-#. Label of the authorize_google_drive_access (Button) field in DocType 'Google
-#. Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Authorize Google Drive Access"
-msgstr "Google Drive Erişimini Yetkilendirin"
-
#. 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"
@@ -3082,11 +3040,11 @@ msgstr "Otomatik Mesaj"
msgid "Automatic"
msgstr "Otomatik"
-#: frappe/email/doctype/email_account/email_account.py:774
+#: frappe/email/doctype/email_account/email_account.py:772
msgid "Automatic Linking can be activated only for one Email Account."
msgstr "Otomatik Bağlama yalnızca bir E-posta Hesabı için etkinleştirilebilir."
-#: frappe/email/doctype/email_account/email_account.py:768
+#: frappe/email/doctype/email_account/email_account.py:766
msgid "Automatic Linking can be activated only if Incoming is enabled."
msgstr "Otomatik Bağlama yalnızca Gelen etkinleştirildiğinde etkinleştirilebilir."
@@ -3300,66 +3258,14 @@ msgstr "Arka Plan Baskısı ( En az 25 belge ve üstü)"
msgid "Background Workers"
msgstr "Arkaplan Görevleri"
-#: frappe/integrations/doctype/google_drive/google_drive.py:170
-msgid "Backing up Data."
-msgstr "Veriler Yedekleniyor."
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:32
-msgid "Backing up to Google Drive."
-msgstr "Google Drive'a yedekleniyor."
-
-#. Label of a Card Break in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Backup"
-msgstr "Yedekleme"
-
-#. Label of the backup_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Details"
-msgstr "Yedekleme Ayrıntıları"
-
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
msgstr "Yedekleme Şifreleme Anahtarı"
-#. Label of the backup_files (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Files"
-msgstr "Yedek Dosyaları"
-
-#. Label of the backup_folder_id (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder ID"
-msgstr "Yedekleme Klasörü ID"
-
-#. Label of the backup_folder_name (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder Name"
-msgstr "Yedekleme Klasörü Adı"
-
-#. Label of the backup_frequency (Select) field in DocType 'Dropbox Settings'
-#. Label of the frequency (Select) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Frequency"
-msgstr "Yedekleme Sıklığı"
-
-#. Label of the backup_path (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Path"
-msgstr "Yedekleme Yolu"
-
#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
msgstr "Yedekleme sıraya alındı. İndirme bağlantısını içeren bir e-posta alacaksınız."
-#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup public and private files along with the database."
-msgstr "Veritabanı ile birlikte genel ve özel dosyaları yedekleyin."
-
#. 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'
@@ -3373,7 +3279,7 @@ msgstr "Yedekler"
msgid "Backups (MB)"
msgstr "Yedeklemeler (MB)"
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:65
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
msgid "Bad Cron Expression"
msgstr "Hatalı Cron İfadesi"
@@ -3771,15 +3677,6 @@ msgstr "Tarayıcı desteklenmiyor"
msgid "Brute Force Security"
msgstr "Katı Güvenlik Önlemi"
-#. Label of the bucket (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Bucket Name"
-msgstr ""
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:71
-msgid "Bucket {0} not found."
-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"
@@ -3816,7 +3713,7 @@ msgstr "Toplu Silme"
msgid "Bulk Edit"
msgstr "Toplu Düzenleme"
-#: frappe/public/js/frappe/form/grid.js:1184
+#: frappe/public/js/frappe/form/grid.js:1188
msgid "Bulk Edit {0}"
msgstr "Toplu {0} Düzenleme"
@@ -3891,12 +3788,6 @@ msgstr "\"Adlandırma Serisi\" alanına göre"
msgid "By default the title is used as meta title, adding a value here will override it."
msgstr "Varsayılan olarak başlık meta başlık olarak kullanılır, buraya bir değer eklemek bunu geçersiz kılacaktır."
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "By default, emails are only sent for failed backups."
-msgstr "Varsayılan olarak yalnızca başarısız yedeklemeler için e-posta gönderilir."
-
#. 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
@@ -4207,7 +4098,7 @@ msgstr "Değerler Getirilemiyor"
msgid "Cannot Remove"
msgstr "Kaldırılamıyor"
-#: frappe/model/base_document.py:1156
+#: frappe/model/base_document.py:1161
msgid "Cannot Update After Submit"
msgstr "Belge Gönderildikten Sonra Güncelleme Yapılamaz"
@@ -4227,11 +4118,11 @@ msgstr "Göndermeden önce iptal edilemez. Geçişe bakın {0}"
msgid "Cannot cancel {0}."
msgstr "{0} iptal edilemez."
-#: frappe/model/document.py:1012
+#: frappe/model/document.py:1011
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr "Docstatus (Doctype Durumu) 0 değerinden (Taslak) 2 değerine (İptal Edildi) değiştirilemiyor"
-#: frappe/model/document.py:1026
+#: frappe/model/document.py:1025
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "Docstatus (Doctype Durumu) 1 değerinden (Gönderildi) 0 değerine (Taslak) değiştirilemiyor"
@@ -4314,7 +4205,7 @@ msgstr "Standart grafikler düzenlenemez"
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "Standart bir raporu düzenleyemezsiniz. Lütfen bir kopyasını veya yeni bir rapor oluşturun."
-#: frappe/model/document.py:1032
+#: frappe/model/document.py:1031
msgid "Cannot edit cancelled document"
msgstr "İptal edilen belge düzenlenemez"
@@ -4347,11 +4238,11 @@ msgstr "Bir Klasörün dosya içerikleri alınamıyor"
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "Tek bir yazdırma biçimine birden fazla yazıcı ile eşleşme yapılamaz."
-#: frappe/public/js/frappe/form/grid.js:1128
+#: frappe/public/js/frappe/form/grid.js:1132
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1100
+#: frappe/model/document.py:1099
msgid "Cannot link cancelled document: {0}"
msgstr "İptal edilen belgeye bağlantı verilemiyor: {0}"
@@ -4367,7 +4258,7 @@ msgstr "{0} sütunu herhangi bir alanla eşleştirilemiyor"
msgid "Cannot move row"
msgstr "Satır taşınamıyor"
-#: frappe/public/js/frappe/views/reports/report_view.js:921
+#: frappe/public/js/frappe/views/reports/report_view.js:927
msgid "Cannot remove ID field"
msgstr "ID Alanı Kaldırılamaz"
@@ -4392,11 +4283,11 @@ msgstr "{0} gönderilemiyor."
msgid "Cannot update {0}"
msgstr "{0} güncellenemiyor"
-#: frappe/model/db_query.py:1125
+#: frappe/model/db_query.py:1126
msgid "Cannot use sub-query in order by"
msgstr "Alt sorguyu şu sırayla kullanamazsınız"
-#: frappe/model/db_query.py:1144
+#: frappe/model/db_query.py:1145
msgid "Cannot use {0} in order/group by"
msgstr "{0} sıraya/gruplamaya göre kullanılamaz"
@@ -4422,7 +4313,7 @@ msgstr "Kart"
msgid "Card Break"
msgstr "Kart Sonu"
-#: frappe/public/js/frappe/views/reports/query_report.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:261
msgid "Card Label"
msgstr "Kart Etiketi"
@@ -4565,7 +4456,7 @@ msgstr "Grafik Yapılandırması"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:290
+#: frappe/public/js/frappe/views/reports/query_report.js:288
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "Grafik Adı"
@@ -4585,7 +4476,7 @@ msgstr "Grafik Kaynağı"
#. 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:499
+#: frappe/public/js/frappe/views/reports/report_view.js:505
msgid "Chart Type"
msgstr "Grafik Türü"
@@ -4699,7 +4590,7 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Alt Tablolar, diğer DocType'larda Tablo olarak gösterilir."
-#: frappe/public/js/frappe/widgets/widget_dialog.js:638
+#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "Mevcut Kartı Seçin veya Yeni Kart Oluşturun"
@@ -4792,10 +4683,6 @@ msgstr "Buraya tıklayın"
msgid "Click here to verify"
msgstr "Doğrulamak için buraya tıklayın"
-#: frappe/integrations/doctype/google_drive/google_drive.js:47
-msgid "Click on Authorize Google Drive Access to authorize Google Drive Access."
-msgstr "Google Drive Erişimini yetkilendirmek için Google Drive Erişimini Yetkilendir öğesine tıklayın."
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "Seçmek için bir dosyaya tıklayın."
@@ -4822,7 +4709,6 @@ msgstr "Talebinizi doğrulamak için aşağıdaki bağlantıya tıklayın"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
-#: frappe/integrations/doctype/google_drive/google_drive.py:53
#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
msgstr ""
@@ -4996,7 +4882,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "Daralt"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "Tümünü Daralt"
@@ -5051,9 +4937,9 @@ 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:1229
-#: frappe/public/js/frappe/widgets/widget_dialog.js:533
-#: frappe/public/js/frappe/widgets/widget_dialog.js:681
+#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: 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
@@ -5194,7 +5080,7 @@ msgstr "Saatlik yorum limiti"
msgid "Comment publicity can only be updated by the original author or a System Manager."
msgstr ""
-#: frappe/model/meta.py:59 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/model/meta.js:209
#: frappe/public/js/frappe/model/model.js:135
#: frappe/website/doctype/web_form/templates/web_form.html:122
@@ -5301,7 +5187,7 @@ msgstr "Tamamla"
msgid "Complete By"
msgstr "Tamamlayan"
-#: frappe/core/doctype/user/user.py:477
+#: frappe/core/doctype/user/user.py:478
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "Kaydı Tamamla"
@@ -5397,7 +5283,7 @@ msgstr "Koşullar"
msgid "Configuration"
msgstr "Yapılandırma"
-#: frappe/public/js/frappe/views/reports/report_view.js:481
+#: frappe/public/js/frappe/views/reports/report_view.js:487
msgid "Configure Chart"
msgstr "Grafiği Yapılandır"
@@ -5736,7 +5622,7 @@ msgstr "Doğru versiyon:"
msgid "Could not connect to outgoing email server"
msgstr "Giden e-posta sunucusuna bağlanamadı"
-#: frappe/model/document.py:1096
+#: frappe/model/document.py:1095
msgid "Could not find {0}"
msgstr "{0} bulunamadı."
@@ -5765,7 +5651,7 @@ msgstr "Kaydedilemedi, lütfen girdiğiniz verileri kontrol edin"
msgid "Count"
msgstr "Sayı"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:527
+#: frappe/public/js/frappe/widgets/widget_dialog.js:540
msgid "Count Customizations"
msgstr "Sayım Özelleştirmeleri"
@@ -5773,10 +5659,14 @@ msgstr "Sayım Özelleştirmeleri"
#. 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:512
+#: frappe/public/js/frappe/widgets/widget_dialog.js:525
msgid "Count Filter"
msgstr "Adet Filtresi"
+#: 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"
@@ -5827,7 +5717,7 @@ msgstr "Alacak"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1261
+#: frappe/public/js/frappe/views/reports/query_report.js:1263
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5841,13 +5731,13 @@ msgstr "Oluştur & Devam Et"
msgid "Create Address"
msgstr "Adres Oluştur"
-#: frappe/public/js/frappe/views/reports/query_report.js:188
-#: frappe/public/js/frappe/views/reports/query_report.js:233
+#: frappe/public/js/frappe/views/reports/query_report.js:186
+#: frappe/public/js/frappe/views/reports/query_report.js:231
msgid "Create Card"
msgstr "Kart Oluştur"
-#: frappe/public/js/frappe/views/reports/query_report.js:286
-#: frappe/public/js/frappe/views/reports/query_report.js:1188
+#: frappe/public/js/frappe/views/reports/query_report.js:284
+#: frappe/public/js/frappe/views/reports/query_report.js:1190
msgid "Create Chart"
msgstr "Grafik Oluştur"
@@ -5958,7 +5848,7 @@ msgstr "Oluşturdu"
msgid "Created At"
msgstr "Oluşturulma Zamanı"
-#: frappe/model/meta.py:56
+#: 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
@@ -5970,14 +5860,14 @@ msgid "Created Custom Field {0} in {1}"
msgstr "{0} özel alanı {1} için oluşturuldu."
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241
-#: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:51
+#: 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 "Oluşturulma Zamanı"
-#: frappe/public/js/frappe/desk.js:515
+#: frappe/public/js/frappe/desk.js:523
#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
msgstr "{0} Oluşturuluyor"
@@ -6000,7 +5890,7 @@ msgstr "Zamanlanmış Görev"
msgid "Cron Format"
msgstr "Cron Formatı"
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:59
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
msgstr ""
@@ -6397,11 +6287,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -6410,9 +6295,6 @@ msgstr ""
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:398
#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
@@ -6966,7 +6848,7 @@ msgstr "Gecikti"
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/toolbar.js:461
-#: frappe/public/js/frappe/views/reports/report_view.js:1734
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
@@ -7009,7 +6891,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "Sekmeyi Sil"
-#: frappe/public/js/frappe/views/reports/query_report.js:932
+#: frappe/public/js/frappe/views/reports/query_report.js:934
msgid "Delete and Generate New"
msgstr "Sil ve Yeni Oluştur"
@@ -7018,7 +6900,7 @@ msgctxt "Button text"
msgid "Delete column"
msgstr "Sütunu sil"
-#: frappe/public/js/frappe/form/footer/form_timeline.js:738
+#: frappe/public/js/frappe/form/footer/form_timeline.js:741
msgid "Delete comment?"
msgstr "Yorumu sil?"
@@ -7104,7 +6986,7 @@ msgstr "{0} Siliniyor"
msgid "Deleting {0} records..."
msgstr "{0} Kayıt Siliniyor..."
-#: frappe/public/js/frappe/model/model.js:741
+#: frappe/public/js/frappe/model/model.js:692
msgid "Deleting {0}..."
msgstr "Siliniyor {0}..."
@@ -7150,7 +7032,7 @@ msgstr "Departman"
#. 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:310
+#: frappe/public/js/frappe/widgets/widget_dialog.js:323
#: frappe/www/attribution.html:29
msgid "Dependencies"
msgstr "Bağımlılıklar"
@@ -7264,6 +7146,7 @@ msgstr "Tema"
#: 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
@@ -7561,14 +7444,10 @@ msgstr "Yeni Kullanıcı Oluşturmayın "
msgid "Do not create new user if user with email does not exist in the system"
msgstr "E-postası olan kullanıcı sistemde mevcut değilse yeni kullanıcı oluşturmayın"
-#: frappe/public/js/frappe/form/grid.js:1189
+#: frappe/public/js/frappe/form/grid.js:1193
msgid "Do not edit headers which are preset in the template"
msgstr "Şablonda önceden ayarlanmış başlıkları düzenlemeyin"
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:69
-msgid "Do not have permission to access bucket {0}."
-msgstr "{0} kovasına erişim izniniz yok."
-
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr "Hala devam etmek istiyor musunuz?"
@@ -7701,7 +7580,7 @@ msgstr "DocType Durumu"
#. 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:466
+#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
msgstr "DocType Görünümü"
@@ -7761,7 +7640,7 @@ msgstr "DocType değiştirelemiyor, lütfen bunun yerine {0} modülünü kullan
#. 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:669
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
msgid "Doctype"
msgstr "BelgeTipi"
@@ -7879,7 +7758,7 @@ msgstr "Adlandırma Kuralı Koşulu"
msgid "Document Naming Settings"
msgstr "Belge Adlandırma Ayarları"
-#: frappe/model/document.py:477
+#: frappe/model/document.py:476
msgid "Document Queued"
msgstr "Belge Kuyruğa Alındı"
@@ -7932,7 +7811,7 @@ msgstr "Belge Paylaşım Raporu"
msgid "Document States"
msgstr "Belge Durumları"
-#: frappe/model/meta.py:52 frappe/public/js/frappe/model/meta.js:202
+#: 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 "Belge Durumu"
@@ -8003,11 +7882,11 @@ msgstr "Belge Türü"
msgid "Document Type and Function are required to create a number card"
msgstr "Veri Kartı oluşturmak için Belge Türü ve Fonksiyon gereklidir"
-#: frappe/permissions.py:148
+#: frappe/permissions.py:149
msgid "Document Type is not importable"
msgstr "Belge Türü içe aktarılamıyor"
-#: frappe/permissions.py:144
+#: frappe/permissions.py:145
msgid "Document Type is not submittable"
msgstr "Belge Türü gönderilebilir değil"
@@ -8036,7 +7915,7 @@ msgid "Document Types and Permissions"
msgstr "Belge Türleri ve İzinler"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1943
+#: frappe/model/document.py:1942
msgid "Document Unlocked"
msgstr "Belge Kilidi Açıldı"
@@ -8227,7 +8106,7 @@ msgstr "İndirme linki"
msgid "Download PDF"
msgstr "PDF İndir"
-#: frappe/public/js/frappe/views/reports/query_report.js:835
+#: frappe/public/js/frappe/views/reports/query_report.js:830
msgid "Download Report"
msgstr "Raporu İndir"
@@ -8238,7 +8117,7 @@ msgstr "Şablonu İndir"
#: 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:57
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
msgid "Download Your Data"
msgstr "Verilerinizi İndirin"
@@ -8294,29 +8173,6 @@ msgstr "Durum eklemek için sürükleyin"
msgid "Drop files here"
msgstr "Dosyaları buraya sürükleyin"
-#. Label of the dropbox_access_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Access Token"
-msgstr "Dropbox Erişim Tokenı"
-
-#. Label of the dropbox_refresh_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Refresh Token"
-msgstr "Dropbox Yenileme Tokenı"
-
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Dropbox Settings"
-msgstr "Dropbox Ayarları"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:347
-msgid "Dropbox Setup"
-msgstr "Dropbox Kurulumu"
-
#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
@@ -8346,7 +8202,7 @@ msgstr "Yinelenen Giriş"
msgid "Duplicate Filter Name"
msgstr "Yinelenen Filtre Adı"
-#: frappe/model/base_document.py:666 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "Çoklu İsim"
@@ -8445,13 +8301,13 @@ msgstr ""
#: 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:668
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:669
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:883
-#: frappe/public/js/frappe/views/reports/query_report.js:1722
+#: frappe/public/js/frappe/views/reports/query_report.js:878
+#: frappe/public/js/frappe/views/reports/query_report.js:1724
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8614,7 +8470,7 @@ msgstr "Yanıtınızı düzenleyin"
msgid "Edit your workflow visually using the Workflow Builder."
msgstr "İş Akışı Oluşturucu'yu kullanarak iş akışınızı görsel olarak düzenleyin."
-#: frappe/public/js/frappe/views/reports/report_view.js:672
+#: frappe/public/js/frappe/views/reports/report_view.js:678
#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
msgstr "{0} Düzenle"
@@ -8715,7 +8571,7 @@ msgstr "E-posta Hesabı Devre Dışı Bırakıldı."
msgid "Email Account Name"
msgstr "E-posta Hesap Adı"
-#: frappe/core/doctype/user/user.py:736
+#: frappe/core/doctype/user/user.py:738
msgid "Email Account added multiple times"
msgstr "E-posta Hesabı birden çok kez eklendi"
@@ -8723,7 +8579,7 @@ msgstr "E-posta Hesabı birden çok kez eklendi"
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
msgstr "E-posta Hesabı ayarlanmamış. Lütfen Ayarlar > E-posta Hesabı bölümünden yeni bir E-posta Hesabı oluşturun"
-#: frappe/email/doctype/email_account/email_account.py:578
+#: frappe/email/doctype/email_account/email_account.py:576
msgid "Email Account {0} Disabled"
msgstr ""
@@ -8949,7 +8805,7 @@ msgstr "E-postalar"
msgid "Emails Pulled"
msgstr "E-postalar Çekildi"
-#: frappe/email/doctype/email_account/email_account.py:936
+#: frappe/email/doctype/email_account/email_account.py:934
msgid "Emails are already being pulled from this account."
msgstr "E-postalar zaten bu hesaptan çekiliyor."
@@ -8972,11 +8828,9 @@ msgstr "Boş sütun"
#. 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 Drive'
#. 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_drive/google_drive.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
msgstr "Etkinleştir"
@@ -8996,11 +8850,6 @@ msgstr "Formu Özelleştir'de {0} doctype için Otomatik Tekrara İzin Ver'i etk
msgid "Enable Auto Reply"
msgstr "Otomatik Cevabı Etkinleştir"
-#. Label of the enabled (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Enable Automatic Backup"
-msgstr "Otomatik Yedeklemeyi Etkinleştir"
-
#. Label of the enable_automatic_linking (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -9159,7 +9008,6 @@ msgstr "Uygulama içi web sitesi izlemeyi etkinleştirin"
#. 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 'Dropbox Settings'
#. 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'
@@ -9170,7 +9018,6 @@ msgstr "Uygulama içi web sitesi izlemeyi etkinleştirin"
#: 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/dropbox_settings/dropbox_settings.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/public/js/frappe/model/indicator.js:106
@@ -9183,7 +9030,7 @@ msgstr "Etkin"
msgid "Enabled Scheduler"
msgstr "Zamanlayıcıyı Etkinleştir"
-#: frappe/email/doctype/email_account/email_account.py:1012
+#: frappe/email/doctype/email_account/email_account.py:1010
msgid "Enabled email inbox for user {0}"
msgstr "{0} kullanıcısı için e-posta gelen kutusu etkinleştirildi"
@@ -9264,11 +9111,6 @@ msgstr "Bitiş Tarihi, Başlangıç Tarihi'nden önce olamaz!"
msgid "Ended At"
msgstr "Bitiş"
-#. Label of the endpoint_url (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Endpoint URL"
-msgstr "Uç Nokta URL'si"
-
#. Label of the sb_endpoints_section (Section Break) field in DocType
#. 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -9447,7 +9289,7 @@ msgstr "Hata Bildirimi"
msgid "Error in print format on line {0}: {1}"
msgstr "{0} satırındaki yazdırma biçiminde hata: {1}"
-#: frappe/email/doctype/email_account/email_account.py:672
+#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "E-posta hesabına bağlanırken hata oluştu {0}"
@@ -9455,15 +9297,15 @@ msgstr "E-posta hesabına bağlanırken hata oluştu {0}"
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr "{0} Bildirim değerlendirilirken hata oluştu. Lütfen şablonunuzu düzeltin."
-#: frappe/model/base_document.py:806
+#: frappe/model/base_document.py:803
msgid "Error: Data missing in table {0}"
msgstr "Hata: {0} tablosunda veri eksik"
-#: frappe/model/base_document.py:816
+#: frappe/model/base_document.py:813
msgid "Error: Value missing for {0}: {1}"
msgstr "Hata: {0} için değer eksik: {1}"
-#: frappe/model/base_document.py:810
+#: frappe/model/base_document.py:807
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "Hata: {0} Satır #{1}: {2} için değer eksik"
@@ -9612,7 +9454,7 @@ msgstr ""
msgid "Executing..."
msgstr "Çalıştırılıyor..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2069
+#: frappe/public/js/frappe/views/reports/query_report.js:2071
msgid "Execution Time: {0} sec"
msgstr "Oluşturma Süresi: {0} sn"
@@ -9638,7 +9480,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "Genişlet"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "Tümünü Genişlet"
@@ -9695,8 +9537,8 @@ msgstr "QR Kod Resim Sayfasının Sona Erme Süresi"
#: frappe/core/doctype/recorder/recorder_list.js:37
#: frappe/public/js/frappe/data_import/data_exporter.js:92
#: frappe/public/js/frappe/data_import/data_exporter.js:243
-#: frappe/public/js/frappe/views/reports/query_report.js:1757
-#: frappe/public/js/frappe/views/reports/report_view.js:1621
+#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "Dışarı Aktar"
@@ -9747,11 +9589,11 @@ msgstr "Raporu Dışarı Aktar: {0}"
msgid "Export Type"
msgstr "Dışa Aktarma Türü"
-#: frappe/public/js/frappe/views/reports/report_view.js:1632
+#: frappe/public/js/frappe/views/reports/report_view.js:1638
msgid "Export all matching rows?"
msgstr "Eşleşen tüm satırlar dışarı aktarılsın mı?"
-#: frappe/public/js/frappe/views/reports/report_view.js:1642
+#: frappe/public/js/frappe/views/reports/report_view.js:1648
msgid "Export all {0} rows?"
msgstr "Tüm {0} satırları dışarı aktarılacak?"
@@ -10059,8 +9901,8 @@ msgstr "Varsayılan Global Arama belgeleri getiriliyor."
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:237
-#: frappe/public/js/frappe/views/reports/query_report.js:1816
+#: frappe/public/js/frappe/views/reports/query_report.js:235
+#: frappe/public/js/frappe/views/reports/query_report.js:1818
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10135,7 +9977,7 @@ msgstr "Alan türü {0} için değiştirilemez"
msgid "Field {0} does not exist on {1}"
msgstr "{0} alanı {1} üzerinde mevcut değil"
-#: frappe/desk/form/meta.py:208
+#: frappe/desk/form/meta.py:184
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr "{0} alanı varolmayan {1} doctype ile referansa sahip."
@@ -10238,7 +10080,7 @@ msgstr "Alanlar Çoklu Kontrol"
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr "Dosya için `file_name` veya `file_url` alanları ayarlanmalıdır"
-#: frappe/model/db_query.py:144
+#: frappe/model/db_query.py:146
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
@@ -10287,13 +10129,6 @@ msgstr ""
msgid "File '{0}' not found"
msgstr "{0} İsimli Dosya Bulunamadı"
-#. Label of the file_backup (Check) field in DocType 'Dropbox Settings'
-#. Label of the file_backup (Check) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "File Backup"
-msgstr "Dosya Yedeği"
-
#. Label of the private_file_section (Section Break) field in DocType 'Access
#. Log'
#: frappe/core/doctype/access_log/access_log.json
@@ -10494,7 +10329,7 @@ msgstr "Filtrelere filtreleriaracılığıyla erişilebilir.
5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "Karşılaştırmak için >5, <10 veya =324 kullanın. Örneğin 5-10 arasındaki değerleri göstermek için, 5:10 kullanın."
@@ -10975,7 +10810,7 @@ msgstr ""
#. 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:552
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
msgid "Format"
msgstr "Biçim"
@@ -11007,7 +10842,7 @@ msgstr "Kesir Birimleri"
#. 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:149
+#: frappe/www/login.py:153
msgid "Frappe"
msgstr "ERP"
@@ -11024,7 +10859,7 @@ msgstr "Açık Tema"
msgid "Frappe Mail"
msgstr "Frappe Mail"
-#: frappe/email/doctype/email_account/email_account.py:549
+#: frappe/email/doctype/email_account/email_account.py:547
msgid "Frappe Mail OAuth Error"
msgstr "Frappe Mail OAuth Hatası"
@@ -11052,13 +10887,11 @@ msgstr "Serbest"
#. 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'
-#. Label of the frequency (Select) field in DocType 'Google Drive'
#: 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/integrations/doctype/google_drive/google_drive.json
#: frappe/public/js/frappe/utils/common.js:395
msgid "Frequency"
msgstr "Sıklık"
@@ -11104,7 +10937,7 @@ msgstr "Başlama Tarihi"
msgid "From Date Field"
msgstr "Başlangıç Tarihi Alanı"
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
+#: frappe/public/js/frappe/views/reports/query_report.js:1779
msgid "From Document Type"
msgstr "Belge Türü"
@@ -11155,16 +10988,16 @@ msgstr "Tam Genişlik"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:247
-#: frappe/public/js/frappe/widgets/widget_dialog.js:686
+#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "Fonksiyon"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:693
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:670
+#: frappe/__init__.py:677
msgid "Function {0} is not whitelisted."
msgstr "{0} fonksiyonu beyaz listeye eklenmemiş."
@@ -11229,7 +11062,7 @@ msgstr "Genel"
msgid "Generate Keys"
msgstr "Anahtar Oluştur"
-#: frappe/public/js/frappe/views/reports/query_report.js:877
+#: frappe/public/js/frappe/views/reports/query_report.js:872
msgid "Generate New Report"
msgstr "Yeni Rapor Oluştur"
@@ -11517,32 +11350,12 @@ msgstr "Google Kişiler - Google Kişiler'den kişiler senkronize edilemedi {0},
msgid "Google Contacts Id"
msgstr "Google Kişiler Kimliği"
-#. Name of a DocType
-#. Label of the google_drive_section (Section Break) field in DocType 'Google
-#. Drive'
#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/google_drive/google_drive.json
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr "Google Drive"
-#: frappe/integrations/doctype/google_drive/google_drive.py:117
-msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}"
-msgstr "Google Drive - Google Drive'da klasör oluşturulamadı - Hata Kodu {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:132
-msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}"
-msgstr "Google Drive - Google Drive'da klasör bulunamadı - Hata Kodu {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:193
-msgid "Google Drive - Could not locate - {0}"
-msgstr "Google Drive - Bulunamadı - {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:204
-msgid "Google Drive Backup Successful."
-msgstr "Google Drive Yedekleme Başarılı."
-
#. Label of the section_break_7 (Section Break) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -11872,6 +11685,10 @@ msgstr ""
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'
@@ -12195,17 +12012,17 @@ msgstr "Ana Sayfa"
msgid "Home Settings"
msgstr "Ana Sayfa Ayarları"
-#: frappe/core/doctype/file/test_file.py:330
-#: frappe/core/doctype/file/test_file.py:332
-#: frappe/core/doctype/file/test_file.py:396
+#: 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 "Ana Sayfa/Test Klasörü 1"
-#: frappe/core/doctype/file/test_file.py:385
+#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
msgstr "Ana Sayfa/Test Klasörü 1/Test Klasörü 3"
-#: frappe/core/doctype/file/test_file.py:341
+#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
msgstr "Ana Sayfa/Test Klasörü 2"
@@ -12250,7 +12067,7 @@ msgstr "Sanırım henüz herhangi bir çalışma alanına erişiminiz yok, ancak
#: frappe/core/doctype/data_import/importer.py:1177
#: frappe/core/doctype/data_import/importer.py:1242
#: frappe/core/doctype/data_import/importer.py:1245
-#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:50
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
#: frappe/public/js/frappe/list/list_settings.js:337
@@ -12262,7 +12079,7 @@ msgid "ID"
msgstr "ID"
#: frappe/desk/reportview.py:491
-#: frappe/public/js/frappe/views/reports/report_view.js:978
+#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
msgstr "ID"
@@ -12446,12 +12263,6 @@ msgstr "Etkinleştirilirse, Sınırlı IP Adresinden oturum açan kullanıcılar
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
msgstr "Etkinleştirilirse, kullanıcılar her oturum açtıklarında bilgilendirilir. Etkinleştirilmezse, kullanıcılar yalnızca bir kez bilgilendirilir."
-#. Description of the 'Backup Path' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "If it's empty, it will backup to the root of the bucket."
-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"
@@ -12582,16 +12393,12 @@ msgstr "Bu boyuttan büyük ekleri yoksay"
msgid "Ignored Apps"
msgstr "Yoksayılan Uygulamalar"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:348
-msgid "Illegal Access Token. Please try again"
-msgstr ""
-
#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
msgstr "{0} için Uygun Olmayan Belge Durumu"
-#: frappe/model/db_query.py:451 frappe/model/db_query.py:454
-#: frappe/model/db_query.py:1128
+#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
+#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
msgstr "Geçersiz SQL Sorgusu"
@@ -12940,11 +12747,11 @@ msgstr "Uygulamalardan Temayı Dahil Et"
msgid "Include Web View Link in Email"
msgstr "Web Görünümü Bağlantısını E-postaya Ekle"
-#: frappe/public/js/frappe/views/reports/query_report.js:1592
+#: frappe/public/js/frappe/views/reports/query_report.js:1594
msgid "Include filters"
msgstr "Filtreleri dahil et"
-#: frappe/public/js/frappe/views/reports/query_report.js:1584
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Include indentation"
msgstr "Girintiyi dahil et"
@@ -13011,11 +12818,11 @@ msgstr "Hatalı Kullanıcı Adı veya Şifre"
msgid "Incorrect Verification code"
msgstr "Hatalı Doğrulama Kodu"
-#: frappe/model/document.py:1542
+#: frappe/model/document.py:1541
msgid "Incorrect value in row {0}:"
msgstr "Satırlarda yanlış değer var {0}:"
-#: frappe/model/document.py:1544
+#: frappe/model/document.py:1543
msgid "Incorrect value:"
msgstr "Geçersiz değer: "
@@ -13024,10 +12831,10 @@ msgstr "Geçersiz değer: "
#. 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:53
+#: 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:999
+#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
msgstr "Dizin"
@@ -13102,7 +12909,7 @@ msgstr "Yukarı Ekle"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1822
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
msgid "Insert After"
msgstr "Sonrasına Ekle"
@@ -13118,7 +12925,7 @@ msgstr ""
msgid "Insert Below"
msgstr "Aşağıya Ekle"
-#: frappe/public/js/frappe/views/reports/report_view.js:384
+#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
msgstr "{0} Sütunundan Önce Ekle"
@@ -13167,11 +12974,11 @@ msgstr "Talimatlar"
msgid "Instructions Emailed"
msgstr "Talimatlar E-postayla Gönderildi"
-#: frappe/permissions.py:818
+#: frappe/permissions.py:827
msgid "Insufficient Permission Level for {0}"
msgstr "{0} için Yetersiz İzin Seviyesi"
-#: frappe/database/query.py:376
+#: frappe/database/query.py:383
msgid "Insufficient Permission for {0}"
msgstr "{0} için Yetki Verilmemiş"
@@ -13289,7 +13096,7 @@ msgstr "Geçersiz"
#: frappe/public/js/form_builder/utils.js:221
#: frappe/public/js/frappe/form/grid_row.js:833
#: frappe/public/js/frappe/form/layout.js:811
-#: frappe/public/js/frappe/views/reports/report_view.js:710
+#: frappe/public/js/frappe/views/reports/report_view.js:716
msgid "Invalid \"depends_on\" expression"
msgstr "Geçersiz \"depends_on\" ifadesi"
@@ -13329,7 +13136,7 @@ msgstr "Geçersiz Tarih"
msgid "Invalid DocType"
msgstr "Geçersiz DocType"
-#: frappe/database/query.py:102
+#: frappe/database/query.py:103
msgid "Invalid DocType: {0}"
msgstr "Geçersiz DocType: {0}"
@@ -13374,6 +13181,7 @@ msgid "Invalid Naming Series: {}"
msgstr "Geçersiz Adlandırma Serisi: {}"
#: frappe/core/doctype/rq_job/rq_job.py:113
+#: frappe/core/doctype/rq_job/rq_job.py:122
msgid "Invalid Operation"
msgstr "Geçersiz İşlem"
@@ -13398,7 +13206,7 @@ msgstr "Hatalı Geçersiz Kılma"
msgid "Invalid Parameters."
msgstr "Geçersiz Parametreler."
-#: frappe/core/doctype/user/user.py:1226 frappe/www/update-password.html:123
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
#: frappe/www/update-password.html:247
msgid "Invalid Password"
@@ -13427,7 +13235,7 @@ msgstr "Geçersiz Geçiş"
#: frappe/core/doctype/file/file.py:220
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
-#: frappe/public/js/frappe/widgets/widget_dialog.js:589
+#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
msgstr "Geçersiz URL"
@@ -13448,11 +13256,11 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:393
+#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "Geçersiz Sütun"
-#: frappe/model/document.py:1015 frappe/model/document.py:1029
+#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "Geçersiz docstatus"
@@ -13476,7 +13284,7 @@ msgstr "Otomatik adlandırmada geçersiz alan adı '{0}'"
msgid "Invalid file path: {0}"
msgstr "Geçersiz dosya yolu: {0}"
-#: frappe/database/query.py:182
+#: frappe/database/query.py:189
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "Geçersiz filtre: {0}"
@@ -13502,7 +13310,7 @@ msgstr "İçe aktarma için geçersiz veya bozuk içerik"
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:324
+#: frappe/app.py:317
msgid "Invalid request arguments"
msgstr "Geçersiz istek değişkenleri"
@@ -13686,7 +13494,7 @@ msgstr "Yayınlandı Alan geçerli bir alan olmalıdır"
#. 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:328
+#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
msgstr "Sorgu Raporu"
@@ -13901,6 +13709,10 @@ msgstr "İş Durumu"
msgid "Job Stopped Successfully"
msgstr "İş Başarıyla Durduruldu"
+#: 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 "İş çalışmıyor."
@@ -13932,7 +13744,7 @@ msgstr "Kanban"
#. 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:498
+#: frappe/public/js/frappe/widgets/widget_dialog.js:511
msgid "Kanban Board"
msgstr "Kanban Kurulu"
@@ -14204,10 +14016,10 @@ msgstr "LDAP ayarları hatalı. doğrulama yanıtı şöyleydi: {0}"
#: 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:300
-#: frappe/public/js/frappe/widgets/widget_dialog.js:453
-#: frappe/public/js/frappe/widgets/widget_dialog.js:630
-#: frappe/public/js/frappe/widgets/widget_dialog.js:663
+#: 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
@@ -14292,11 +14104,6 @@ msgstr "Son 90 Gün"
msgid "Last Active"
msgstr "Son Aktivite"
-#. Label of the last_backup_on (Datetime) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Last Backup On"
-msgstr "Son Yedekleme Tarihi"
-
#. 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"
@@ -14381,12 +14188,12 @@ msgstr "Son Senkronizasyon"
msgid "Last Synced On"
msgstr "Son Senkronizasyon"
-#: frappe/model/meta.py:55 frappe/public/js/frappe/model/meta.js:205
+#: 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 "Son Güncelleyen"
-#: frappe/model/meta.py:54 frappe/public/js/frappe/model/meta.js:204
+#: 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 "Son Güncelleme Zamanı"
@@ -14430,7 +14237,7 @@ msgid "Leave blank to repeat always"
msgstr "Her zaman tekrarlamak için boş bırakın"
#: frappe/core/doctype/communication/mixins.py:207
-#: frappe/email/doctype/email_account/email_account.py:722
+#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
msgstr "Bu konuşmadan ayrıl"
@@ -14649,7 +14456,7 @@ msgstr "Beğen {0}: {1}"
msgid "Liked"
msgstr "Beğendi"
-#: frappe/model/meta.py:58 frappe/public/js/frappe/model/meta.js:208
+#: 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 "Beğenen"
@@ -14664,11 +14471,6 @@ msgstr "Beğeniler"
msgid "Limit"
msgstr "Limit"
-#. Label of the limit_no_of_backups (Check) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Limit Number of DB Backups"
-msgstr "Yedekleme Sayısını Sınırla"
-
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14783,11 +14585,11 @@ msgstr "Bağlantı Başlığı"
#: 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:414
+#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
msgstr "Bağlantı"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:350
+#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
msgstr "Satır İçi Bağlantı"
@@ -14800,7 +14602,7 @@ msgstr "Satır İçi Bağlantı"
msgid "Link Type"
msgstr "Bağlantı Türü"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:346
+#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
msgstr "Satırdaki Bağlantı Türü"
@@ -14952,7 +14754,7 @@ msgstr "Daha fazla yükle"
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1085
+#: frappe/public/js/frappe/views/reports/query_report.js:1087
msgid "Loading"
msgstr "Yükleniyor"
@@ -15083,7 +14885,7 @@ msgstr "Giriş Yöntemleri"
msgid "Login Page"
msgstr "Giriş Sayfası"
-#: frappe/www/login.py:152
+#: frappe/www/login.py:156
msgid "Login To {0}"
msgstr "{0} Giriş Yapın"
@@ -15350,7 +15152,7 @@ msgstr "Zorunluluk Bağlılığı"
msgid "Mandatory Depends On (JS)"
msgstr "Zorunluluk Bağlılığı (JS)"
-#: frappe/website/doctype/web_form/web_form.py:473
+#: frappe/website/doctype/web_form/web_form.py:470
msgid "Mandatory Information missing:"
msgstr "Zorunlu bilgi eksik:"
@@ -15625,7 +15427,7 @@ msgid "Menu"
msgstr "Menü"
#: frappe/public/js/frappe/form/toolbar.js:242
-#: frappe/public/js/frappe/model/model.js:754
+#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "Varolan ile Birleştir"
@@ -15804,7 +15606,7 @@ msgstr "SEO için meta başlık"
msgid "Method"
msgstr "Yöntem"
-#: frappe/__init__.py:672
+#: frappe/__init__.py:679
msgid "Method Not Allowed"
msgstr "İzin Verilmeyen Method"
@@ -15881,7 +15683,7 @@ msgstr "Yanlış yapılandırılmış"
msgid "Miss"
msgstr "Bayan"
-#: frappe/desk/form/meta.py:218
+#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
msgstr "Eksik DocType"
@@ -15906,7 +15708,7 @@ msgid "Missing Value"
msgstr "Eksik Değer"
#: frappe/public/js/frappe/ui/field_group.js:124
-#: frappe/public/js/frappe/widgets/widget_dialog.js:361
+#: 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"
@@ -16089,8 +15891,6 @@ msgstr "Ay"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -16098,7 +15898,6 @@ msgstr "Ay"
#: 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/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:400
#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
@@ -16270,7 +16069,7 @@ msgid "Mx"
msgstr "Bayan"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:462
+#: frappe/website/doctype/web_form/web_form.py:459
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16438,7 +16237,7 @@ msgstr "Gezinme Ayarları"
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "Diğer kullanıcıların özel çalışma alanlarını düzenlemek için Çalışma Alanı Yöneticisi rolü gerekli."
-#: frappe/model/document.py:793
+#: frappe/model/document.py:792
msgid "Negative Value"
msgstr "Negatif Değer"
@@ -16543,7 +16342,7 @@ msgstr "Web Sitesi İletişim Sayfasından Yeni Mesaj"
#. 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:762
+#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "Yeni İsim"
@@ -16577,7 +16376,7 @@ msgstr "Yeni Baskı Formatı Adı"
msgid "New Quick List"
msgstr "Yeni Hızlı Liste"
-#: frappe/public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
msgstr "Yeni Rapor İsmi"
@@ -16633,26 +16432,26 @@ msgstr "Ayarlanacak yeni değer"
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
#: frappe/public/js/frappe/form/toolbar.js:558
-#: frappe/public/js/frappe/model/model.js:661
+#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:379
+#: frappe/website/doctype/web_form/web_form.py:376
msgid "New {0}"
msgstr "Yeni {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:394
+#: frappe/public/js/frappe/views/reports/query_report.js:392
msgid "New {0} Created"
msgstr "Yeni {0} Oluşturuldu"
-#: frappe/public/js/frappe/views/reports/query_report.js:386
+#: frappe/public/js/frappe/views/reports/query_report.js:384
msgid "New {0} {1} added to Dashboard {2}"
msgstr "Yeni {0} {1}, {2} Panosuna eklendi."
-#: frappe/public/js/frappe/views/reports/query_report.js:391
+#: frappe/public/js/frappe/views/reports/query_report.js:389
msgid "New {0} {1} created"
msgstr "Yeni {0} {1} oluşturuldu"
@@ -16664,7 +16463,7 @@ msgstr "Yeni {0}: {1}"
msgid "New {} releases for the following apps are available"
msgstr "Aşağıdaki uygulamalar için yeni {} sürümler kullanıma sunuldu"
-#: frappe/core/doctype/user/user.py:802
+#: frappe/core/doctype/user/user.py:804
msgid "Newly created user {0} has no roles enabled."
msgstr "{0} kullanıcısı için rol belirlenmedi."
@@ -16826,7 +16625,7 @@ msgstr "Sonraki Tıklamada"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "Hayır"
@@ -16967,7 +16766,7 @@ msgstr "Sonuç Yok"
msgid "No Results found"
msgstr "Uygun Sonuç Bulunamadı"
-#: frappe/core/doctype/user/user.py:803
+#: frappe/core/doctype/user/user.py:805
msgid "No Roles Specified"
msgstr "Rol Belirlenmedi"
@@ -17118,7 +16917,7 @@ msgstr "Satır Sayısı (Maksimum 500)"
msgid "No of Sent SMS"
msgstr "Gönderilen SMS sayısı"
-#: frappe/__init__.py:827 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "{0} İçin Yetki Yok"
@@ -17127,7 +16926,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
-#: frappe/model/db_query.py:949
+#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
msgstr "Okuma {0} izni yok"
@@ -17211,12 +17010,6 @@ msgstr "Negatif Olmayan"
msgid "Non-Conforming"
msgstr "Uygun Olmayan"
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "None"
-msgstr "Yok"
-
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr "Yok: İş Akışı Sonu"
@@ -17231,7 +17024,7 @@ msgstr "Normalleştirilmiş Kopyalar"
msgid "Normalized Query"
msgstr "Normalleştirilmiş Sorgu"
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "İzin verilmedi"
@@ -17252,7 +17045,7 @@ msgstr "Aynı Kategoride Değil"
msgid "Not Equals"
msgstr "Eşit Değil"
-#: frappe/app.py:374 frappe/www/404.html:3
+#: frappe/app.py:367 frappe/www/404.html:3
msgid "Not Found"
msgstr "Bulunamadı"
@@ -17278,9 +17071,9 @@ msgstr "Herhangi bir kayıtla bağlantılı değil"
msgid "Not Nullable"
msgstr "Boş Bırakılamaz"
-#: frappe/__init__.py:754 frappe/app.py:367 frappe/desk/calendar.py:26
+#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:711
+#: frappe/website/doctype/web_form/web_form.py:708
#: 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
@@ -17301,7 +17094,7 @@ msgstr "Yayınlanmadı"
#: frappe/public/js/frappe/form/toolbar.js:813
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
-#: frappe/public/js/frappe/views/reports/report_view.js:197
+#: frappe/public/js/frappe/views/reports/report_view.js:203
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
@@ -17332,7 +17125,7 @@ msgstr "Ayarlanmamış"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "Virgülle Ayrılmış Geçerli Bir CSV Dosyası Değil"
-#: frappe/core/doctype/user/user.py:264
+#: frappe/core/doctype/user/user.py:265
msgid "Not a valid User Image."
msgstr "Geçerli bir Kullanıcı Resmi değil."
@@ -17348,7 +17141,7 @@ msgstr "Geçerli bir kullanıcı değil"
msgid "Not active"
msgstr "Aktif değil"
-#: frappe/permissions.py:360
+#: frappe/permissions.py:370
msgid "Not allowed for {0}: {1}"
msgstr "{0} için izin verilmiyor: {1}"
@@ -17368,7 +17161,7 @@ msgstr "İptal edilen belgeleri yazdırmasına izin verilmiyor"
msgid "Not allowed to print draft documents"
msgstr "Taslak belgelerin yazdırılmasına izin verilmiyor"
-#: frappe/permissions.py:212
+#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
msgstr "Denetleyici izin kontrolü ile izin verilmiyor"
@@ -17384,12 +17177,12 @@ msgstr "Geliştirici modunda değil"
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "Geliştirici Modunda değil! site_config.json dosyasına ayarlayın veya 'Özel' DocType yapın."
-#: frappe/core/doctype/system_settings/system_settings.py:214
+#: frappe/core/doctype/system_settings/system_settings.py:215
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:724
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "İzin verilmedi"
@@ -17415,15 +17208,6 @@ msgstr "Notu Gören"
msgid "Note:"
msgstr "Not:"
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'Dropbox Settings'
-#. Description of the 'Send Email for Successful backup' (Check) field in
-#. DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Note: By default emails for failed backups are sent."
-msgstr "Not: Varsayılan olarak, başarısız yedeklemeler için e-postalar gönderilir."
-
#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "Not: Sayfa Adının değiştirilmesi, bu sayfanın önceki bağlantısını bozacaktır."
@@ -17483,13 +17267,10 @@ msgstr "Güncellenecek bir şey yok"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
#. Name of a DocType
-#. Label of the notification_section (Section Break) field in DocType 'S3
-#. Backup Settings'
#: 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
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Notification"
msgstr "Bildirim"
@@ -17591,7 +17372,7 @@ msgstr "Numara"
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:615
+#: frappe/public/js/frappe/widgets/widget_dialog.js:628
msgid "Number Card"
msgstr "Veri Kartı"
@@ -17609,7 +17390,7 @@ msgstr "Veri Kartı İsmi"
#. 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:645
+#: frappe/public/js/frappe/widgets/widget_dialog.js:658
msgid "Number Cards"
msgstr "Veri Kartları"
@@ -17627,15 +17408,6 @@ msgstr "Sayı Formatı"
msgid "Number of Backups"
msgstr "Yedekleme Sayısı"
-#. Label of the no_of_backups (Int) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Number of DB Backups"
-msgstr "Yedekleme Sayısı"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:54
-msgid "Number of DB backups cannot be less than 1"
-msgstr "Veritabanı yedeklemelerinin sayısı 1'den az olamaz"
-
#. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Number of Groups"
@@ -17651,7 +17423,7 @@ msgstr "Sorgu Sayısı"
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:169
+#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
msgstr "Yedekleme sayısı sıfırdan büyük olmalıdır."
@@ -17880,7 +17652,7 @@ 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:322
+#: frappe/public/js/frappe/widgets/widget_dialog.js:335
msgid "Onboard"
msgstr "Modül Tanıtımı"
@@ -17976,19 +17748,13 @@ msgstr "Yalnızca Çalışma Alanı Yöneticisi genel çalışma alanlarını d
msgid "Only allowed to export customizations in developer mode"
msgstr "Özelleştirmelerin yalnızca geliştirici modunda dışa aktarılmasına izin verilir"
-#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Only change this if you want to use other S3 compatible object storage backends."
-msgstr "Yalnızca diğer S3 uyumlu nesne depolama arka uçlarını kullanmak istiyorsanız bunu değiştirin."
-
-#: frappe/model/document.py:1232
+#: frappe/model/document.py:1231
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:315
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
msgstr "Sadece"
@@ -18237,7 +18003,7 @@ msgstr "Varsayılan değeri ayarlamadan önce {0} seçenekleri ayarlanmalıdır.
msgid "Options is required for field {0} of type {1}"
msgstr "{1} türündeki {0} alanı için seçenekler gereklidir"
-#: frappe/model/base_document.py:870
+#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
msgstr "{0} bağlantı alanı için ayarlanmamış seçenekler"
@@ -18349,7 +18115,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1742
+#: frappe/public/js/frappe/views/reports/query_report.js:1744
msgid "PDF"
msgstr "PDF"
@@ -18648,7 +18414,7 @@ msgstr "Üst öğe, verilerin ekleneceği belgenin adıdır."
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:798
+#: frappe/permissions.py:807
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18708,11 +18474,11 @@ msgstr "Pasif"
msgid "Password"
msgstr "Şifre"
-#: frappe/core/doctype/user/user.py:1079
+#: frappe/core/doctype/user/user.py:1081
msgid "Password Email Sent"
msgstr "Şifre E-postası Gönderildi"
-#: frappe/core/doctype/user/user.py:457
+#: frappe/core/doctype/user/user.py:458
msgid "Password Reset"
msgstr "Şifre Sıfırlama"
@@ -18746,7 +18512,7 @@ msgstr "E-posta Hesabında Şifre Eksik"
msgid "Password not found for {0} {1} {2}"
msgstr "{0} {1} {2} için şifre bulunamadı"
-#: frappe/core/doctype/user/user.py:1078
+#: frappe/core/doctype/user/user.py:1080
msgid "Password reset instructions have been sent to {}'s email"
msgstr "Şifre sıfırlama talimatları {}'in e-postasına gönderildi"
@@ -18758,7 +18524,7 @@ msgstr "Şifre ayarlandı"
msgid "Password size exceeded the maximum allowed size"
msgstr "Şifre boyutu izin verilen maksimum boyutu aştı"
-#: frappe/core/doctype/user/user.py:869
+#: frappe/core/doctype/user/user.py:871
msgid "Password size exceeded the maximum allowed size."
msgstr "Şifre boyutu izin verilen maksimum boyutu aştı."
@@ -18915,7 +18681,7 @@ msgstr "{0} Kalıcı Olarak İptal Et"
msgid "Permanently Submit {0}?"
msgstr "{0} Kalıcı Olarak Kaydedilecek"
-#: frappe/public/js/frappe/model/model.js:733
+#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
msgstr "{0} öğesi kalıcı olarak silinecek."
@@ -19076,8 +18842,8 @@ msgid "Phone Number {0} set in field {1} is not valid."
msgstr "{1} alanına girilen Telefon Numarası {0} geçerli değil."
#: frappe/public/js/frappe/form/print_utils.js:40
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
-#: frappe/public/js/frappe/views/reports/report_view.js:1576
+#: frappe/public/js/frappe/views/reports/report_view.js:1579
+#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
msgstr "Sütunları Seç"
@@ -19117,7 +18883,7 @@ msgstr "Düz Metin"
msgid "Plant"
msgstr "Fabrika"
-#: frappe/email/doctype/email_account/email_account.py:546
+#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
msgstr "Lütfen E-posta Hesabı için OAuth'u Yetkilendirin {0}"
@@ -19133,7 +18899,7 @@ msgstr "Lütfen özelleştirmek için bu Web Sitesi Temasını çoğaltın."
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "Ldap işlevselliğini kullanmak için lütfen pip aracılığıyla ldap3 kütüphanesini yükleyin."
-#: frappe/public/js/frappe/views/reports/query_report.js:309
+#: frappe/public/js/frappe/views/reports/query_report.js:307
msgid "Please Set Chart"
msgstr "Lütfen Tabloyu Ayarlayın"
@@ -19149,7 +18915,7 @@ msgstr "Lütfen e-postanıza bir konu ekleyin"
msgid "Please add a valid comment."
msgstr "Lütfen geçerli bir yorum ekleyin."
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1063
msgid "Please ask your administrator to verify your sign-up"
msgstr "Lütfen yöneticinizden kayıt işleminizin doğrulamasını isteyin"
@@ -19177,11 +18943,11 @@ msgstr "Lütfen OpenID Yapılandırma URL'sini kontrol edin"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "Lütfen Gösterge Tablosu Grafiği için ayarlanan filtre değerlerini kontrol edin: {}"
-#: frappe/model/base_document.py:946
+#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1059
+#: frappe/core/doctype/user/user.py:1061
msgid "Please check your email for verification"
msgstr "Doğrulama için lütfen e-postanızı kontrol edin"
@@ -19209,10 +18975,6 @@ msgstr "Lütfen aşağıdaki bağlantıya tıklayın ve sayfadaki talimatları i
msgid "Please click on the following link to set your new password"
msgstr "Yeni şifrenizi belirlemek için lütfen aşağıdaki bağlantıya tıklayın"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:343
-msgid "Please close this window"
-msgstr "Lütfen bu pencereyi kapatın"
-
#: frappe/www/confirm_workflow_action.html:4
msgid "Please confirm your action to {0} this document."
msgstr ""
@@ -19229,7 +18991,7 @@ msgstr "Lütfen Önce Veri Kartı oluşturun"
msgid "Please create chart first"
msgstr "Lütfen önce grafik oluşturun"
-#: frappe/desk/form/meta.py:214
+#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
msgstr "Lütfen alanı {0} adresinden silin veya gerekli doctype'ı ekleyin."
@@ -19241,7 +19003,7 @@ msgstr "Lütfen şablon başlıklarını değiştirmeyin."
msgid "Please duplicate this to make changes"
msgstr "Lütfen değişiklik yapmak için bunu çoğaltın"
-#: frappe/core/doctype/system_settings/system_settings.py:162
+#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr "Kullanıcı adı/şifre tabanlı girişi devre dışı bırakmadan önce lütfen en az bir Sosyal Giriş Anahtarını veya LDAP'yi veya E-posta Bağlantısıyla Giriş Yapın'ı etkinleştirin."
@@ -19259,7 +19021,7 @@ msgstr "Pop-up etkinleştirin"
msgid "Please enable pop-ups in your browser"
msgstr "Lütfen tarayıcınızda açılır pencereleri etkinleştirin"
-#: frappe/integrations/google_oauth.py:53
+#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
msgstr "Devam etmeden önce lütfen {} ayarını etkinleştirin."
@@ -19336,7 +19098,7 @@ msgstr "Yorum göndermek için lütfen üye girişi yapın."
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "Lütfen Referans İletişim Belgelerinin döngüsel olarak bağlantılı olmadığından emin olun."
-#: frappe/model/document.py:987
+#: frappe/model/document.py:986
msgid "Please refresh to get the latest document."
msgstr "En son versiyonu almak için lütfen sayfayı yenileyin."
@@ -19360,7 +19122,7 @@ msgstr "Lütfen atamadan önce belgeyi kaydedin"
msgid "Please save the document before removing assignment"
msgstr "Lütfen atamayı kaldırmadan önce belgeyi kaydedin"
-#: frappe/public/js/frappe/views/reports/report_view.js:1703
+#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
msgstr "Lütfen önce raporu kaydedin."
@@ -19376,11 +19138,11 @@ msgstr "Lütfen önce DocType'ı seçin"
msgid "Please select Entity Type first"
msgstr "Lütfen önce Varlık Türünü seçin"
-#: frappe/core/doctype/system_settings/system_settings.py:112
+#: frappe/core/doctype/system_settings/system_settings.py:113
msgid "Please select Minimum Password Score"
msgstr "Lütfen Minimum Şifre Puanını seçin"
-#: frappe/public/js/frappe/views/reports/query_report.js:1181
+#: frappe/public/js/frappe/views/reports/query_report.js:1183
msgid "Please select X and Y fields"
msgstr "Lütfen X ve Y alanlarını seçin"
@@ -19408,7 +19170,7 @@ msgstr "Lütfen geçerli bir tarih filtresi seçin"
msgid "Please select applicable Doctypes"
msgstr "Lütfen geçerli DocType'ları seçin"
-#: frappe/model/db_query.py:1140
+#: frappe/model/db_query.py:1141
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "Lütfen sıralamak/gruplamak için {0} en az 1 sütun seçin"
@@ -19430,10 +19192,6 @@ msgstr "Lütfen kullanılmakta olan LDAP Dizinini seçin"
msgid "Please select {0}"
msgstr "Lütfen {0} seçiniz"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:305
-msgid "Please set Dropbox access keys in site config or doctype"
-msgstr "Lütfen Dropbox erişim anahtarlarını site yapılandırmasında veya belge türünde ayarlayın"
-
#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
msgstr "Lütfen E-posta Adresini ayarlayın"
@@ -19442,7 +19200,7 @@ msgstr "Lütfen E-posta Adresini ayarlayın"
msgid "Please set a printer mapping for this print format in the Printer Settings"
msgstr "Lütfen Yazıcı Ayarları'nda bu yazdırma biçimi için bir yazıcı eşlemesi ayarlayın"
-#: frappe/public/js/frappe/views/reports/query_report.js:1404
+#: frappe/public/js/frappe/views/reports/query_report.js:1406
msgid "Please set filters"
msgstr "Lütfen filtreleri ayarlayın"
@@ -19462,7 +19220,7 @@ msgstr "Lütfen öncelikle bu Gösterge Tablosundaki aşağıdaki belgeleri stan
msgid "Please set the series to be used."
msgstr "Lütfen kullanılacak seriyi ayarlayın."
-#: frappe/core/doctype/system_settings/system_settings.py:125
+#: frappe/core/doctype/system_settings/system_settings.py:126
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr ""
@@ -19470,19 +19228,19 @@ msgstr ""
msgid "Please setup a message first"
msgstr "Lütfen önce bir mesaj ayarlayın"
-#: frappe/core/doctype/user/user.py:422
+#: frappe/core/doctype/user/user.py:423
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "Lütfen Ayarlar > E-posta Hesabı bölümünden varsayılan giden E-posta Hesabını ayarlayın"
-#: frappe/email/doctype/email_account/email_account.py:434
+#: 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:823
+#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
msgstr "Lütfen belirtiniz"
-#: frappe/permissions.py:774
+#: frappe/permissions.py:783
msgid "Please specify a valid parent DocType for {0}"
msgstr "Lütfen {0} için geçerli bir üst DocType belirtin"
@@ -19511,7 +19269,7 @@ msgstr "Lütfen hangi değer alanının kontrol edilmesi gerektiğini belirtin"
msgid "Please try again"
msgstr "Lütfen tekrar deneyin"
-#: frappe/integrations/google_oauth.py:56
+#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
msgstr "Devam etmeden önce lütfen {} öğesini güncelleyin."
@@ -19824,8 +19582,8 @@ msgstr "{0} belge türünün birincil anahtarı mevcut değerler olduğundan de
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1728
-#: frappe/public/js/frappe/views/reports/report_view.js:1531
+#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "Yazdır"
@@ -20068,7 +19826,7 @@ msgstr "İpucu: Belge referansını göndermek için Referans: {{ reference_doct
msgid "Proceed"
msgstr "Devam Et"
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
msgstr "Yine de Devam Et"
@@ -20389,7 +20147,7 @@ msgstr "Sorgu SELECT veya salt okunur WITH türünde olmalıdır."
msgid "Queue"
msgstr "Kuyruk"
-#: frappe/utils/background_jobs.py:729
+#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
msgstr ""
@@ -20410,7 +20168,7 @@ msgstr "Sorgu Türleri"
msgid "Queue in Background (BETA)"
msgstr "Arka Plan Kuyruğu (Beta)"
-#: frappe/utils/background_jobs.py:554
+#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
msgstr ""
@@ -20443,12 +20201,6 @@ msgstr ""
msgid "Queued for Submission. You can track the progress over {0}."
msgstr "Gönderim için sıraya alındı. İlerlemeyi {0} üzerinden takip edebilirsiniz."
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:65
-#: frappe/integrations/doctype/google_drive/google_drive.py:153
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:86
-msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr "Yedekleme için sıraya alındı. Birkaç dakika ila bir saat sürebilir."
-
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
msgstr "Yedekleme sıraya alındı. İndirme bağlantısını içeren bir e-posta alacaksınız."
@@ -20584,7 +20336,7 @@ msgstr ""
msgid "Re-Run in Console"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:728
+#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
msgstr "Cvp:"
@@ -20686,7 +20438,7 @@ msgstr "Gerçek Zamanlı (Socket.IO)"
msgid "Reason"
msgstr "Nedeni"
-#: frappe/public/js/frappe/views/reports/query_report.js:889
+#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
msgstr "Yeniden Oluştur"
@@ -21051,11 +20803,11 @@ msgid "Referrer"
msgstr "Referans Olan"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:548
+#: frappe/public/js/frappe/desk.js:556
#: 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:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1719
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21074,12 +20826,10 @@ msgstr "Google E-Tablosunu Yenile"
#. 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 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
@@ -21096,7 +20846,7 @@ msgstr "Yenileniyor"
msgid "Refreshing..."
msgstr "Yenileniyor..."
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
msgstr "Kayıtlı ancak devre dışı"
@@ -21259,7 +21009,7 @@ msgstr "Kaldırıldı"
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
#: frappe/public/js/frappe/form/toolbar.js:432
-#: frappe/public/js/frappe/model/model.js:772
+#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
msgstr "Yeniden Adlandır"
@@ -21269,7 +21019,7 @@ msgstr "Yeniden Adlandır"
msgid "Rename Fieldname"
msgstr "Alanı Yeniden Adlandır"
-#: frappe/public/js/frappe/model/model.js:759
+#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
msgstr "Yeniden Adlandır"
@@ -21333,7 +21083,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:146
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
msgstr "Tekrarlar {0}"
@@ -21471,7 +21221,7 @@ msgstr "Rapor Yöneticisi"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1902
+#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
msgstr "Rapor İsmi"
@@ -21523,7 +21273,7 @@ msgstr "Raporda veri yok, lütfen filtreleri veya Rapor Adını değiştirin"
msgid "Report has no numeric fields, please change the Report Name"
msgstr "Raporda sayısal alan yok, lütfen Rapor Adını değiştirin"
-#: frappe/public/js/frappe/views/reports/query_report.js:1009
+#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
msgstr "Rapor başlatıldı, durumu görüntülemek için tıklayın"
@@ -21539,11 +21289,11 @@ msgstr "Rapor zaman aşımına uğradı."
msgid "Report updated successfully"
msgstr "Rapor başarıyla güncellendi"
-#: frappe/public/js/frappe/views/reports/report_view.js:1351
+#: frappe/public/js/frappe/views/reports/report_view.js:1357
msgid "Report was not saved (there were errors)"
msgstr "Rapor Kaydedilemedi (hatalar içeriyor)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1940
+#: frappe/public/js/frappe/views/reports/query_report.js:1942
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "10'dan fazla sütun içeren rapor Yatay modda daha iyi görünür."
@@ -21579,7 +21329,7 @@ msgstr "Raporlar"
msgid "Reports & Masters"
msgstr "Raporlar & Kayıtlar"
-#: frappe/public/js/frappe/views/reports/query_report.js:925
+#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
msgstr "Raporlar zaten Kuyrukta"
@@ -22029,7 +21779,7 @@ msgstr ""
msgid "Role and Level"
msgstr "Rol ve Seviye"
-#: frappe/core/doctype/user/user.py:363
+#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
msgstr "Rol, {0} kullanıcısı türüne göre ayarlandı"
@@ -22144,7 +21894,7 @@ msgstr "Rota Yönlendirmeleri"
msgid "Route: Example \"/app\""
msgstr "Rota: Örnek \"/app\""
-#: frappe/model/base_document.py:855 frappe/model/document.py:778
+#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
msgstr "Satır"
@@ -22157,7 +21907,7 @@ msgstr "Satır #"
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr "Satır # {0}: Yönetici olmayan kullanıcı {1} rolünü özel doctype'a ayarlayamaz"
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:982
msgid "Row #{0}:"
msgstr "Satır #{0}:"
@@ -22235,7 +21985,7 @@ msgstr "Kural"
msgid "Rule Conditions"
msgstr "Kural Koşulları"
-#: frappe/permissions.py:653
+#: frappe/permissions.py:662
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Bu belge türüne ilişkin kural, rol, izin düzeyi ve eğer sahibiyle birleşimi zaten mevcut."
@@ -22279,23 +22029,6 @@ msgstr ""
msgid "Runtime in Seconds"
msgstr ""
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "S3 Backup Settings"
-msgstr "S3 Yedekleme Ayarları"
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
-msgid "S3 Backup complete!"
-msgstr "S3 Yedeklemesi tamamlandı!"
-
-#. Label of the s3_bucket_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Bucket Details"
-msgstr ""
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
@@ -22436,7 +22169,7 @@ msgstr "Cumartesi"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/page/print/print.js:858
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/quick_entry.js:185
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
@@ -22446,8 +22179,8 @@ msgstr "Cumartesi"
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
-#: frappe/public/js/frappe/views/reports/query_report.js:1894
-#: frappe/public/js/frappe/views/reports/report_view.js:1720
+#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
@@ -22464,8 +22197,8 @@ msgstr "API Gizli Anahtarını Kaydet: {0}"
msgid "Save Anyway"
msgstr "Yine de Kaydet"
-#: frappe/public/js/frappe/views/reports/report_view.js:1382
-#: frappe/public/js/frappe/views/reports/report_view.js:1727
+#: frappe/public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
msgstr "Farklı Kaydet"
@@ -22473,7 +22206,7 @@ msgstr "Farklı Kaydet"
msgid "Save Customizations"
msgstr "Özelleştirmeleri Kaydet"
-#: frappe/public/js/frappe/views/reports/query_report.js:1897
+#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
msgstr "Raporu Kaydet"
@@ -22639,7 +22372,7 @@ msgstr "Zamanlayıcı Etkin Değil"
msgid "Scheduler Status"
msgstr "Zamanlayıcı Durumu"
-#: frappe/utils/scheduler.py:249
+#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr "Bakım modu aktifken zamanlayıcı yeniden etkinleştirilemez."
@@ -22865,7 +22598,7 @@ msgstr "Güvenlik Ayarları"
msgid "See all Activity"
msgstr "Tüm Aktiviteleri Göster"
-#: frappe/public/js/frappe/views/reports/query_report.js:858
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "See all past reports."
msgstr "Tüm geçmiş raporları görün."
@@ -22945,7 +22678,7 @@ msgstr "Dosya Seçimi"
msgid "Select Child Table"
msgstr "Alt Tabloyu Seçin"
-#: frappe/public/js/frappe/views/reports/report_view.js:377
+#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
msgstr "Sütun Seç"
@@ -23262,31 +22995,11 @@ msgstr "E-Posta Gönder Ekleri PDF Olarak Yazdır (Önerilen)"
msgid "Send Email To Creator"
msgstr ""
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Dropbox Settings'
-#. Label of the send_email_for_successful_backup (Check) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Email for Successful Backup"
-msgstr "Başarılı Yedekleme için E-posta Gönder"
-
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Email for Successful backup"
-msgstr "Başarılı yedekleme için E-posta Gönder"
-
#. 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 "E-postaların Kopyasını Gönder"
-#. Label of the email (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Notification To"
-msgstr "Bildirimi Gönder"
-
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -23303,14 +23016,6 @@ msgstr "Takip Ettiğim Dökümanlarla İlgili Bildirim Gönder"
msgid "Send Notifications For Email Threads"
msgstr "E-posta Konuları İçin Bildirim Gönder"
-#. Label of the send_notifications_to (Data) field in DocType 'Dropbox
-#. Settings'
-#. Label of the notify_email (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Notifications To"
-msgstr "Bildirimleri Gönder"
-
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
msgstr "Şimdi Gönder"
@@ -23569,7 +23274,7 @@ msgstr "Seri {0} zaten {1} adresinde kullanılıyor"
msgid "Server Action"
msgstr "Sunucu Aksiyonu"
-#: frappe/app.py:383 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Sunucu Hatası"
@@ -23635,7 +23340,7 @@ msgstr "Oturum Varsayılanları"
msgid "Session Defaults Saved"
msgstr "Oturum Varsayılanları Kaydedildi"
-#: frappe/app.py:360
+#: frappe/app.py:353
msgid "Session Expired"
msgstr "Oturum Sonlandırıldı"
@@ -23644,7 +23349,7 @@ msgstr "Oturum Sonlandırıldı"
msgid "Session Expiry (idle timeout)"
msgstr "Oturum Sonlanma Süresi"
-#: frappe/core/doctype/system_settings/system_settings.py:119
+#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
msgstr "Oturum Süresi {0} formatında olmalıdır"
@@ -23667,7 +23372,7 @@ msgstr "Ayarla"
msgid "Set Banner from Image"
msgstr "Resimden Banner Ayarla"
-#: frappe/public/js/frappe/views/reports/query_report.js:201
+#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
msgstr "Grafiği Ayarla"
@@ -23693,7 +23398,7 @@ msgstr "Filtreleri Ayarlayın"
msgid "Set Filters for {0}"
msgstr "{0} İçin Filtreleri Ayarla"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
msgstr "Seviye Ayarla"
@@ -23935,8 +23640,8 @@ msgstr "Kurulum > Kullanıcı"
msgid "Setup > User Permissions"
msgstr "Kurulum > Kullanıcı İzinleri"
-#: frappe/public/js/frappe/views/reports/query_report.js:1763
-#: frappe/public/js/frappe/views/reports/report_view.js:1698
+#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "Otomatik E-Postayı Ayarla"
@@ -24032,6 +23737,15 @@ msgstr "Göster"
msgid "Show \"Call to Action\" in Blog"
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"
@@ -24202,7 +23916,7 @@ msgstr "Başlığı Göster"
msgid "Show Title in Link Fields"
msgstr "Bağlantı Alanlarında Başlığı Göster"
-#: frappe/public/js/frappe/views/reports/report_view.js:1521
+#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
msgstr "Toplamı Göster"
@@ -24312,7 +24026,7 @@ msgstr ""
msgid "Show {0} List"
msgstr "{0} Listesini Göster"
-#: frappe/public/js/frappe/views/reports/report_view.js:495
+#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
msgstr "Rapordan yalnızca Sayısal alanlar gösteriliyor"
@@ -24347,7 +24061,7 @@ msgstr "Kenar Çubuğu ve Yorumlar"
msgid "Sign Up and Confirmation"
msgstr "Kayıt ve Doğrulama"
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
msgstr "Kaydolma devre dışı bırakıldı"
@@ -24992,7 +24706,7 @@ msgstr "Zaman Aralığı"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
-#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: frappe/public/js/frappe/views/reports/report_view.js:975
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
@@ -25291,7 +25005,7 @@ msgstr "Alt Başlık"
#: frappe/core/doctype/data_import_log/data_import_log.json
#: frappe/desk/doctype/bulk_update/bulk_update.js:31
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446
-#: frappe/public/js/frappe/form/grid.js:1166
+#: frappe/public/js/frappe/form/grid.js:1170
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25388,7 +25102,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:720
+#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
msgstr "Önerilen Kullanıcı Adı: {0}"
@@ -25678,11 +25392,9 @@ msgstr "Sistem Günlükleri"
#: frappe/geo/doctype/country/country.json
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/connected_app/connected_app.json
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.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_drive/google_drive.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
@@ -25691,7 +25403,6 @@ msgstr "Sistem Günlükleri"
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_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
@@ -25816,11 +25527,11 @@ msgstr "Tablo Çoklu Seçim"
msgid "Table Trimmed"
msgstr "Tablo Temizlendi"
-#: frappe/public/js/frappe/form/grid.js:1165
+#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
msgstr "Tablo güncellendi"
-#: frappe/model/document.py:1565
+#: frappe/model/document.py:1564
msgid "Table {0} cannot be empty"
msgstr "Tablo {0} boş olamaz"
@@ -25839,7 +25550,7 @@ msgstr "Etiket"
msgid "Tag Link"
msgstr "Etiket Bağlantısı"
-#: frappe/model/meta.py:57
+#: 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
@@ -25851,15 +25562,6 @@ msgstr "Etiket Bağlantısı"
msgid "Tags"
msgstr "Etiketler"
-#: frappe/integrations/doctype/google_drive/google_drive.js:29
-msgid "Take Backup"
-msgstr "Yedekle"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
-msgid "Take Backup Now"
-msgstr "Şimdi Yedek Alın"
-
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
msgstr "Fotoğraf Çek"
@@ -25937,12 +25639,12 @@ msgstr "Şablon Uyarıları"
msgid "Templates"
msgstr "Şablonlar"
-#: frappe/core/doctype/user/user.py:1027
+#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
msgstr "Geçici Olarak Devre Dışı"
-#: frappe/core/doctype/translation/test_translation.py:56
-#: frappe/core/doctype/translation/test_translation.py:63
+#: frappe/core/doctype/translation/test_translation.py:47
+#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
msgstr "Test Verisi"
@@ -25951,8 +25653,8 @@ msgstr "Test Verisi"
msgid "Test Job ID"
msgstr "Test İş ID"
-#: frappe/core/doctype/translation/test_translation.py:58
-#: frappe/core/doctype/translation/test_translation.py:66
+#: frappe/core/doctype/translation/test_translation.py:49
+#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
msgstr "İspanyolca Test"
@@ -25960,7 +25662,7 @@ msgstr "İspanyolca Test"
msgid "Test email sent to {0}"
msgstr "Test e-postası {0} adresine gönderildi"
-#: frappe/core/doctype/file/test_file.py:388
+#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Test_Klasoru"
@@ -26043,7 +25745,7 @@ msgstr "Teşekkürler"
msgid "The Auto Repeat for this document has been disabled."
msgstr "Bu belge için Otomatik Tekrarlama devre dışı bırakıldı."
-#: frappe/public/js/frappe/form/grid.js:1188
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
msgstr "CSV formatı büyük/küçük harfe duyarlıdır"
@@ -26217,15 +25919,15 @@ msgstr "Google Cloud Console'dan altında elde edilen proje numarası"
-#: frappe/core/doctype/user/user.py:987
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
msgstr "Şifre sıfırlama bağlantısının süresi doldu"
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:991
msgid "The reset password link has either been used before or is invalid"
msgstr "Şifre sıfırlama bağlantısı daha önce kullanılmış veya geçersiz"
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Aradığınız kaynak mevcut değil"
@@ -26237,7 +25939,7 @@ msgstr "{0} rolü özel bir rol olmalıdır."
msgid "The selected document {0} is not a {1}."
msgstr "Seçilen belge {0} bir {1} değildir."
-#: frappe/utils/response.py:334
+#: frappe/utils/response.py:331
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Sistem güncelleniyor. Lütfen birkaç dakika sonra tekrar yenileyin."
@@ -26298,7 +26000,7 @@ msgstr "Sizin için yaklaşan bir etkinlik bulunamadı."
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "There are {0} with the same filters already in the queue:"
msgstr "Aynı filtrelere sahip {0} zaten kuyrukta mevcut:"
@@ -26327,7 +26029,7 @@ msgstr "Şu anda size gösterecek yeni bir şey yok."
msgid "There is some problem with the file url: {0}"
msgstr "Dosya URL'sinde bir sorun var: {0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:958
+#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
msgstr "Aynı filtrelere sahip {0} kuyrukta zaten mevcut:"
@@ -26414,12 +26116,12 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Bu eylem geri döndürülemez. Devam etmek istiyor musunuz?"
-#: frappe/__init__.py:750
+#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
msgstr "Bu eylem yalnızca {} için izin verilir"
#: frappe/public/js/frappe/form/toolbar.js:117
-#: frappe/public/js/frappe/model/model.js:755
+#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "Bu işlem geri alınamaz"
@@ -26457,7 +26159,7 @@ msgstr "Bu belgede son PDF'de görünmeyebilecek kaydedilmemiş değişiklikler
msgid "This document is already amended, you cannot ammend it again"
msgstr "Bu belge zaten değiştirilmiş, tekrar değiştiremezsiniz"
-#: frappe/model/document.py:474
+#: frappe/model/document.py:473
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr "Bu belge şu anda kilitli ve yürütülmek üzere sıraya alınmış durumda. Lütfen bir süre sonra tekrar deneyin."
@@ -26518,7 +26220,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr "Bu slayt gösterisinin üstüne gelir."
-#: frappe/public/js/frappe/views/reports/query_report.js:2132
+#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr "Bu bir arka plan raporudur. Lütfen uygun filtreleri ayarlayın ve ardından yeni bir tane oluşturun."
@@ -26582,7 +26284,7 @@ msgstr "Bu bültenin {0} adresine gönderilmesi planlanmaktadır."
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
msgstr "Bu bültenin daha sonraki bir tarihte gönderilmesi planlanmıştı. Şimdi göndermek istediğinizden emin misiniz?"
-#: frappe/public/js/frappe/views/reports/query_report.js:1033
+#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Bu rapor {0} satırları içerir ve tarayıcıda görüntülenemeyecek kadar büyüktür, bunun yerine bu raporu {1} adresinde bulabilirsiniz."
@@ -26590,7 +26292,7 @@ msgstr "Bu rapor {0} satırları içerir ve tarayıcıda görüntülenemeyecek k
msgid "This report was generated on {0}"
msgstr "Bu rapor {0} adresinde oluşturuldu"
-#: frappe/public/js/frappe/views/reports/query_report.js:856
+#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
msgstr "Bu rapor {0} oluşturuldu."
@@ -26656,7 +26358,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr "Bu işi hemen sonlandırmak tehlikeli olabilir, emin misiniz? "
-#: frappe/core/doctype/user/user.py:1240
+#: frappe/core/doctype/user/user.py:1242
msgid "Throttled"
msgstr ""
@@ -27014,7 +26716,7 @@ msgstr "Bu adımı JSON olarak dışa aktarmak için, bunu bir Onboarding belges
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:857
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "To get the updated report, click on {0}."
msgstr "Güncellenmiş raporu almak için {0} adresine tıklayın."
@@ -27039,10 +26741,6 @@ msgstr "Google Takvim'i kullanmak için {0} ayarını etkinleştirin."
msgid "To use Google Contacts, enable {0}."
msgstr "Google Kişiler'i kullanmak için {0} ayarını etkinleştirin."
-#: frappe/integrations/doctype/google_drive/google_drive.js:8
-msgid "To use Google Drive, enable {0}."
-msgstr "Google Drive'ı kullanmak için {0} öğesini etkinleştirin."
-
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -27073,7 +26771,7 @@ msgstr "Yapılacaklar"
msgid "Today"
msgstr "Bugün"
-#: frappe/public/js/frappe/views/reports/report_view.js:1564
+#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
msgstr "Grafiği Aç/Kapat"
@@ -27089,7 +26787,7 @@ msgstr "Izgara Görünümü"
#: 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:1568
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
msgstr "Kenar Çubuğunu Aç/Kapat"
@@ -27145,11 +26843,11 @@ msgstr "Çok Fazla İstek"
msgid "Too many changes to database in single action."
msgstr "Tek bir işlemde veritabanında çok fazla değişiklik yapıldı."
-#: frappe/utils/background_jobs.py:728
+#: 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:1028
+#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "Son zamanlarda çok fazla kullanıcı kaydoldu, bu yüzden kayıt devre dışı bırakıldı. Lütfen bir saat sonra tekrar deneyin"
@@ -27213,8 +26911,8 @@ msgstr "Konu"
#: frappe/desk/query_report.py:533
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1320
-#: frappe/public/js/frappe/views/reports/report_view.js:1545
+#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr "Toplam"
@@ -27277,11 +26975,11 @@ msgstr "İlk senkronizasyon işleminde senkronize edilecek toplam e-posta sayıs
msgid "Total:"
msgstr "Toplam:"
-#: frappe/public/js/frappe/views/reports/report_view.js:1250
+#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
msgstr "Toplamlar"
-#: frappe/public/js/frappe/views/reports/report_view.js:1225
+#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
msgstr "Toplam Satır"
@@ -27396,7 +27094,7 @@ msgstr "Geçişler"
msgid "Translatable"
msgstr "Çevirilebilir"
-#: frappe/public/js/frappe/views/reports/query_report.js:2188
+#: frappe/public/js/frappe/views/reports/query_report.js:2183
msgid "Translate Data"
msgstr ""
@@ -27407,7 +27105,7 @@ msgstr ""
msgid "Translate Link Fields"
msgstr "Bağlantı Alanlarını Çevir"
-#: frappe/public/js/frappe/views/reports/report_view.js:1650
+#: frappe/public/js/frappe/views/reports/report_view.js:1656
msgid "Translate values"
msgstr "Değerleri çevir"
@@ -27555,7 +27253,7 @@ msgstr "2 Adımlı Doğrulama Metodu"
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/views/file/file_view.js:337
#: frappe/public/js/frappe/views/workspace/workspace.js:399
-#: frappe/public/js/frappe/widgets/widget_dialog.js:391
+#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
msgid "Type"
@@ -27636,7 +27334,7 @@ msgstr "Kullanıcı erişime izin verdiğinde yetkilendirme kodunu ve hata yanı
#: 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:458
+#: 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"
@@ -27698,7 +27396,7 @@ msgstr ""
msgid "Unable to load camera."
msgstr "Kamera Yüklenemedi"
-#: frappe/public/js/frappe/model/model.js:268
+#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
msgstr "Yükleme başarısız: {0}"
@@ -27727,7 +27425,7 @@ msgstr "{0} için dosya biçimi yazılamıyor"
msgid "Unassign Condition"
msgstr "Koşulu Kaldır"
-#: frappe/app.py:383
+#: frappe/app.py:376
msgid "Uncaught Exception"
msgstr ""
@@ -27960,7 +27658,7 @@ msgstr "Güncellendi"
msgid "Updated Successfully"
msgstr "Başarıyla Güncellendi"
-#: frappe/public/js/frappe/desk.js:444
+#: frappe/public/js/frappe/desk.js:452
msgid "Updated To A New Version 🎉"
msgstr "Yeni Bir Sürüme Güncellendi 🎉"
@@ -27968,7 +27666,7 @@ msgstr "Yeni Bir Sürüme Güncellendi 🎉"
msgid "Updated successfully"
msgstr "Başarıyla Güncellendi"
-#: frappe/utils/response.py:333
+#: frappe/utils/response.py:330
msgid "Updating"
msgstr "Güncelleniyor"
@@ -28042,18 +27740,6 @@ msgstr "Dropbox'a Yüklendi"
msgid "Uploaded To Google Drive"
msgstr "Google Drive'a Yüklendi"
-#: frappe/integrations/doctype/google_drive/google_drive.py:196
-msgid "Uploading backup to Google Drive."
-msgstr "Yedekleme Google Drive'a yükleniyor."
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:201
-msgid "Uploading successful."
-msgstr "Yükleme başarılı."
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:16
-msgid "Uploading to Google Drive"
-msgstr "Google Drive'a yükleniyor"
-
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -28137,11 +27823,11 @@ msgstr "Farklı E-posta Kimliği kullan"
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr "Varsayılan ayarların verilerinizi doğru şekilde algılamadığını düşünüyorsanız kullanın"
-#: frappe/model/db_query.py:434
+#: frappe/model/db_query.py:435
msgid "Use of function {0} in field is restricted"
msgstr ""
-#: frappe/model/db_query.py:411
+#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
msgstr ""
@@ -28258,7 +27944,7 @@ msgstr "Kullanıcı Oluşturamaz"
msgid "User Cannot Search"
msgstr "Kullanıcı Arama Yapamaz"
-#: frappe/public/js/frappe/desk.js:546
+#: frappe/public/js/frappe/desk.js:554
msgid "User Changed"
msgstr "Kullanıcı Değiştirildi"
@@ -28364,8 +28050,8 @@ msgstr "Kullanıcı İzinleri"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
#: frappe/core/workspace/users/users.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1881
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr "Kullanıcı İzinleri"
@@ -28462,7 +28148,7 @@ msgstr "Kullanıcı Her Zaman Seçmeli"
msgid "User permission already exists"
msgstr "Kullanıcı izni zaten mevcut"
-#: frappe/www/login.py:167
+#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
msgstr "{0} e-posta adresine sahip kullanıcı mevcut değil"
@@ -28470,23 +28156,23 @@ msgstr "{0} e-posta adresine sahip kullanıcı mevcut değil"
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr "E-posta adresi: {0} olan kullanıcı sistemde mevcut değil. Lütfen 'Sistem Yöneticisi'nden kullanıcıyı sizin için oluşturmasını isteyin."
-#: frappe/core/doctype/user/user.py:536
+#: frappe/core/doctype/user/user.py:537
msgid "User {0} cannot be deleted"
msgstr "Kullanıcı {0} silinemez"
-#: frappe/core/doctype/user/user.py:326
+#: frappe/core/doctype/user/user.py:327
msgid "User {0} cannot be disabled"
msgstr "Kullanıcı {0} devre dışı bırakılamaz"
-#: frappe/core/doctype/user/user.py:602
+#: frappe/core/doctype/user/user.py:603
msgid "User {0} cannot be renamed"
msgstr "Kullanıcı {0} yeniden adlandırılamaz"
-#: frappe/permissions.py:138
+#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
msgstr "{0} kullanıcısı bu erişim için gerekli yetkiye sahip değil"
-#: frappe/permissions.py:161
+#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr ""
@@ -28499,7 +28185,7 @@ msgstr "Kullanıcı {0} bir Çalışma Alanı oluşturma iznine sahip değil."
msgid "User {0} has requested for data deletion"
msgstr "{0} isimli Kullanıcı veri silme talebinde bulundu"
-#: frappe/core/doctype/user/user.py:1369
+#: frappe/core/doctype/user/user.py:1371
msgid "User {0} impersonated as {1}"
msgstr "{0}, {1} olarak kullanıyor"
@@ -28528,7 +28214,7 @@ msgstr ""
msgid "Username"
msgstr "Kullanıcı Adı"
-#: frappe/core/doctype/user/user.py:687
+#: frappe/core/doctype/user/user.py:689
msgid "Username {0} already exists"
msgstr "Kullanıcı adı {0} zaten var"
@@ -28668,15 +28354,15 @@ msgstr "Değer Değişti"
msgid "Value To Be Set"
msgstr "Ayarlanacak Değer"
-#: frappe/model/base_document.py:1049 frappe/model/document.py:834
+#: frappe/model/base_document.py:1054 frappe/model/document.py:833
msgid "Value cannot be changed for {0}"
msgstr "{0} Değeri Değiştirilemez"
-#: frappe/model/document.py:780
+#: frappe/model/document.py:779
msgid "Value cannot be negative for"
msgstr "Değer negatif olamaz"
-#: frappe/model/document.py:784
+#: frappe/model/document.py:783
msgid "Value cannot be negative for {0}: {1}"
msgstr "{0} için değer negatif olamaz : {1}"
@@ -28707,7 +28393,7 @@ msgstr "{0} değerlerinden biri olmalıdır"
msgid "Value to Validate"
msgstr "Doğrulanacak Değer"
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1124
msgid "Value too big"
msgstr "Değer çok büyük"
@@ -29308,11 +28994,6 @@ msgstr "Hafta İçi"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -29321,9 +29002,6 @@ msgstr "Hafta İçi"
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:399
#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
@@ -29358,11 +29036,11 @@ msgstr "Hoş Geldiniz Bağlantısı"
msgid "Welcome Workspace"
msgstr "Çalışma Alanına Hoşgeldiniz"
-#: frappe/core/doctype/user/user.py:414
+#: frappe/core/doctype/user/user.py:415
msgid "Welcome email sent"
msgstr "Hoşgeldiniz e-postası gönderildi"
-#: frappe/core/doctype/user/user.py:475
+#: frappe/core/doctype/user/user.py:476
msgid "Welcome to {0}"
msgstr "Hoşgeldiniz {0}"
@@ -29395,7 +29073,7 @@ msgstr "İptal ettikten sonra bir belgeyi düzelttiğinizde ve kaydettiğinizde,
#. 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:468
+#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
msgstr "Bu kısayol sizi ilişkili DocType'ın hangi görünümüne götürmelidir?"
@@ -29594,7 +29272,7 @@ msgstr "İş akışı başarıyla güncellendi"
msgid "Workspace"
msgstr "Çalışma Alanı"
-#: frappe/public/js/frappe/router.js:177
+#: frappe/public/js/frappe/router.js:173
msgid "Workspace {0} does not exist"
msgstr "Çalışma Alanı {0} mevcut değil"
@@ -29664,11 +29342,11 @@ msgstr "{0} Çalışma Alanı Oluşturuldu"
msgid "Workspaces"
msgstr "Çalışma Alanları"
-#: frappe/public/js/frappe/form/footer/form_timeline.js:753
+#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
msgstr ""
@@ -29687,11 +29365,11 @@ msgstr "Son dokunuşlar"
msgid "Write"
msgstr "Yazma"
-#: frappe/model/base_document.py:949
+#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:484
+#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
msgstr "X Ekseni Alanı"
@@ -29710,13 +29388,13 @@ msgstr "XLSX"
msgid "Y Axis"
msgstr "Y Ekseni"
-#: frappe/public/js/frappe/views/reports/report_view.js:491
+#: frappe/public/js/frappe/views/reports/report_view.js:497
msgid "Y Axis Fields"
msgstr "Y Ekseni Alanları"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1221
+#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
msgstr "Y Alanı"
@@ -29777,7 +29455,7 @@ msgstr "Sarı"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "Evet"
@@ -29817,11 +29495,11 @@ msgstr "Başka bir kullanıcı gibi davranıyorsunuz."
msgid "You are not allowed to access this resource"
msgstr "Bu kaynağa erişim izniniz yok"
-#: frappe/permissions.py:409
+#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:398
+#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29844,7 +29522,7 @@ msgstr "Raporu düzenlemenize izin verilmiyor."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:604
+#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
msgstr "{} doctype'ı dışa aktarmanıza izin verilmiyor"
@@ -29856,7 +29534,7 @@ msgstr "Bu raporu yazdırmanıza izin verilmiyor"
msgid "You are not allowed to send emails related to this document"
msgstr "Bu belge ile ilişkili e-posta göndermenize izin verilmiyor"
-#: frappe/website/doctype/web_form/web_form.py:569
+#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
msgstr "Bu Web Form Belgesini güncelleme izniniz yok"
@@ -29872,7 +29550,7 @@ msgstr "Giriş yapmadan bu sayfaya erişmenize izin verilmiyor."
msgid "You are not permitted to access this page."
msgstr "Bu sayfaya erişim yetkiniz bulunmamaktadır."
-#: frappe/__init__.py:669
+#: frappe/__init__.py:676
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29880,7 +29558,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr "Şu anda bu belgeyi takip ediyorsunuz. Günlük güncellemeleri e-posta yoluyla alacaksınız. Bunu Kullanıcı Ayarları'ndan değiştirebilirsiniz."
-#: frappe/core/doctype/installed_applications/installed_applications.py:82
+#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
msgstr "Sadece siparişi güncellemenize izin verilir, uygulama ekleme veya kaldırma işlemi yapamazsınız."
@@ -30044,11 +29722,11 @@ msgstr "{} için Okuma veya Seçme İzniniz yok"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Bu kaynağa erişmek için yeterli izniniz yok. Erişim için lütfen yöneticinizle iletişime geçin."
-#: frappe/app.py:368
+#: frappe/app.py:361
msgid "You do not have enough permissions to complete the action"
msgstr "İşlemi tamamlamak için yeterli izniniz yok"
-#: frappe/desk/query_report.py:838
+#: frappe/desk/query_report.py:831
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -30060,11 +29738,11 @@ msgstr "Bağlantılı tüm belgeleri iptal etme yetkiniz yok."
msgid "You don't have access to Report: {0}"
msgstr "Rapora erişiminiz yok: {0}"
-#: frappe/website/doctype/web_form/web_form.py:772
+#: frappe/website/doctype/web_form/web_form.py:769
msgid "You don't have permission to access the {0} DocType."
msgstr "{0} isimli DocType erişimi için izniniz yok."
-#: frappe/utils/response.py:286 frappe/utils/response.py:290
+#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
msgstr "Bu dosyaya erişmek için gerekli izinlere sahip değilsiniz"
@@ -30072,7 +29750,7 @@ msgstr "Bu dosyaya erişmek için gerekli izinlere sahip değilsiniz"
msgid "You don't have permission to get a report on: {0}"
msgstr "{0} Raporunu almak için izniniz yok."
-#: frappe/website/doctype/web_form/web_form.py:175
+#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
msgstr "Bu belgeye erişmek için gerekli izinlere sahip değilsiniz"
@@ -30125,23 +29803,23 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr "Çok fazla istek nedeniyle izin verilen sınıra ulaştınız. Lütfen bir süre sonra tekrar deneyin."
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
msgstr "Düzenlediniz"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:339
+#: frappe/public/js/frappe/widgets/widget_dialog.js:352
msgid "You must add atleast one link."
msgstr "En az bir bağlantı eklemelisiniz."
-#: frappe/website/doctype/web_form/web_form.py:768
+#: frappe/website/doctype/web_form/web_form.py:765
msgid "You must be logged in to use this form."
msgstr "Bu formu kullanabilmek için giriş yapmalısınız."
-#: frappe/website/doctype/web_form/web_form.py:609
+#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
msgstr "Bu formu göndermek için giriş yapmalısınız"
-#: frappe/model/document.py:357
+#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
@@ -30157,11 +29835,11 @@ msgstr "Bu belgeyi düzenlemek için Çalışma Alanı Yöneticisi olmanız gere
msgid "You need to be a system user to access this page."
msgstr "Bu sayfaya erişebilmek için sistem kullanıcısı olmanız gerekmektedir."
-#: frappe/website/doctype/web_form/web_form.py:94
+#: frappe/website/doctype/web_form/web_form.py:91
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Standart Web Formlarını düzenlemeniz için geliştirici modunda olmanız gerekiyor"
-#: frappe/utils/response.py:275
+#: frappe/utils/response.py:272
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Yedeklemelere erişmek için oturum açmanız ve Sistem Yöneticisi yetkilerine sahip olmanız gerekir."
@@ -30169,7 +29847,7 @@ msgstr "Yedeklemelere erişmek için oturum açmanız ve Sistem Yöneticisi yetk
msgid "You need to be logged in to access this page"
msgstr "Bu sayfaya erişmek için giriş yapmanız gerekmektedir"
-#: frappe/website/doctype/web_form/web_form.py:164
+#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
msgstr "{0} adresine erişmek için giriş yapmış olmanız gerekiyor."
@@ -30244,7 +29922,7 @@ msgstr "Bu belgeyi takip etmeyi bıraktınız"
msgid "You viewed this"
msgstr "Bunu görüntülediniz"
-#: frappe/public/js/frappe/desk.js:543
+#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr "Başka bir sekmeden başka bir kullanıcı olarak oturum açtınız. Sistemi kullanmaya devam etmek için bu sayfayı yenileyin."
@@ -30327,7 +30005,7 @@ msgstr "E-posta alt bilgisi için kuruluşunuzun adı ve adresi."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Sorgunuz alındı. Kısa süre içinde geri dönüş yapacağız. Ek bilgileriniz varsa, lütfen bu e-postayı yanıtlayın."
-#: frappe/app.py:361
+#: frappe/app.py:354
msgid "Your session has expired, please login again to continue."
msgstr "Oturumunuzun süresi doldu, devam etmek için lütfen tekrar giriş yapın."
@@ -30558,7 +30236,7 @@ msgstr "e-posta"
msgid "email inbox"
msgstr "e-posta gelen kutusu"
-#: frappe/permissions.py:403 frappe/permissions.py:414
+#: frappe/permissions.py:412 frappe/permissions.py:423
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "boş"
@@ -31110,7 +30788,7 @@ msgstr "{0} = {1}"
msgid "{0} Calendar"
msgstr "{0} Takvimi"
-#: frappe/public/js/frappe/views/reports/report_view.js:564
+#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
msgstr "{0} Grafiği"
@@ -31158,7 +30836,7 @@ msgstr "{0} Harita"
msgid "{0} Name"
msgstr "{0} İsmi"
-#: frappe/model/base_document.py:1149
+#: frappe/model/base_document.py:1154
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -31168,7 +30846,7 @@ msgstr ""
msgid "{0} Report"
msgstr "{0} Raporu"
-#: frappe/public/js/frappe/views/reports/query_report.js:952
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
msgstr "{0} Raporları"
@@ -31234,7 +30912,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr "{0} {1} dosyasını ekledi."
-#: frappe/core/doctype/system_settings/system_settings.py:149
+#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
msgstr "{0} {1} değerinden fazla olamaz"
@@ -31247,7 +30925,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0} bu belgeyi iptal etti {1}"
-#: frappe/model/document.py:547
+#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr "{0} iptal edilmediği için düzeltilemez. Lütfen bir düzeltme yapmadan önce belgeyi iptal edin."
@@ -31372,7 +31050,7 @@ msgstr "{0} geçersiz bir Veri alanıdır."
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "{0} 'Alıcılar' bölümünde geçersiz bir e-posta adresi var"
-#: frappe/public/js/frappe/views/reports/report_view.js:1462
+#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
msgstr ""
@@ -31381,27 +31059,27 @@ msgstr ""
msgid "{0} is currently {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1431
+#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
msgstr "{0} ile {1} eşittir"
-#: frappe/public/js/frappe/views/reports/report_view.js:1451
+#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
msgstr "{0} değeri {1} değerinden büyük veya eşittir"
-#: frappe/public/js/frappe/views/reports/report_view.js:1441
+#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
msgstr "{0} değeri {1} değerinden büyüktür"
-#: frappe/public/js/frappe/views/reports/report_view.js:1456
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
msgstr "{0} değeri {1} değerinden küçük veya eşittir"
-#: frappe/public/js/frappe/views/reports/report_view.js:1446
+#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
msgstr "{0} değeri {1} değerinden küçüktür"
-#: frappe/public/js/frappe/views/reports/report_view.js:1481
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
msgstr "{0} {1} gibi"
@@ -31421,7 +31099,7 @@ msgstr ""
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr "{0} geçerli bir Takvim değil. Varsayılan Takvime yönlendiriliyor."
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:64
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
msgstr ""
@@ -31450,11 +31128,11 @@ msgstr "{0} geçerli bir Telefon Numarası değil"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} geçerli bir İş Akışı Durumu değil. Lütfen İş Akışınızı güncelleyin ve tekrar deneyin."
-#: frappe/permissions.py:787
+#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0}, {1} için geçerli bir üst DocType değildir."
-#: frappe/permissions.py:807
+#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0}, {1} için geçerli bir üst alan değil"
@@ -31466,27 +31144,27 @@ msgstr "{0} geçerli bir rapor biçimi değil. Rapor biçimi aşağıdakilerden
msgid "{0} is not a zip file"
msgstr "{0} bir zip dosyası değil"
-#: frappe/public/js/frappe/views/reports/report_view.js:1436
+#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
msgstr "{0} ile {1} eşit değildir"
-#: frappe/public/js/frappe/views/reports/report_view.js:1483
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
msgstr "{0} ile {1} benzer değil"
-#: frappe/public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1487
+#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
msgstr "{0} ayarlanmamış"
-#: frappe/printing/doctype/print_format/print_format.py:165
+#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
msgstr "{0} artık {1} belge türü için varsayılan yazdırma biçimidir"
-#: frappe/public/js/frappe/views/reports/report_view.js:1470
+#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
msgstr ""
@@ -31497,11 +31175,11 @@ msgstr ""
msgid "{0} is required"
msgstr "{0} içerir"
-#: frappe/public/js/frappe/views/reports/report_view.js:1486
+#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
msgstr "{0} ayarlandı"
-#: frappe/public/js/frappe/views/reports/report_view.js:1465
+#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
msgstr ""
@@ -31509,12 +31187,12 @@ msgstr ""
msgid "{0} items selected"
msgstr "{0} Kayıt Seçildi"
-#: frappe/core/doctype/user/user.py:1378
+#: frappe/core/doctype/user/user.py:1380
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:104
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
msgstr "{0} düzenledi."
@@ -31530,7 +31208,7 @@ msgstr "{0} çıkış yaptı: {1}"
msgid "{0} m"
msgstr "{0} d"
-#: frappe/desk/notifications.py:397
+#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
msgstr "{0} {1} {2} adresindeki bir yorumda sizden bahsetti"
@@ -31542,35 +31220,35 @@ msgstr "{0} dakika önce"
msgid "{0} months ago"
msgstr "{0} ay önce"
-#: frappe/model/document.py:1792
+#: frappe/model/document.py:1791
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1551
+#: frappe/model/document.py:1550
msgid "{0} must be beginning with '{1}'"
msgstr "{0} '{1}' ile başlamalıdır"
-#: frappe/model/document.py:1553
+#: frappe/model/document.py:1552
msgid "{0} must be equal to '{1}'"
msgstr "{0} '{1}' değerine eşit olmalıdır"
-#: frappe/model/document.py:1549
+#: frappe/model/document.py:1548
msgid "{0} must be none of {1}"
msgstr "{0} hiçbiri {1} olmamalıdır"
-#: frappe/model/document.py:1547 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:875
+#: frappe/model/base_document.py:876
msgid "{0} must be set first"
msgstr "{0} önce ayarlanmalıdır"
-#: frappe/model/base_document.py:732
+#: frappe/model/base_document.py:729
msgid "{0} must be unique"
msgstr "{0} benzersiz olmalıdır"
-#: frappe/model/document.py:1555
+#: frappe/model/document.py:1554
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31645,7 +31323,7 @@ msgstr "{0} atamalarını kaldırdı."
msgid "{0} role does not have permission on any doctype"
msgstr "{0} rolünün herhangi bir DocType üzerinde izni yok."
-#: frappe/model/document.py:1785
+#: frappe/model/document.py:1784
msgid "{0} row #{1}: "
msgstr "{0} satır #{1}: "
@@ -31741,11 +31419,11 @@ msgstr "{0} {1} Eklendi"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0}: {1}, {2} Panosuna eklendi."
-#: frappe/model/base_document.py:665 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0} {1} zaten mevcut."
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:987
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -31761,7 +31439,7 @@ msgstr "{0} {1} mevcut değil, birleştirmek için yeni bir hedef seçin"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} önceden kaydedilmiş dökümanlarla bağlantılı: {2}"
-#: frappe/model/document.py:260 frappe/permissions.py:558
+#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
msgstr "{0} {1} bulunamadı."
@@ -31769,7 +31447,7 @@ msgstr "{0} {1} bulunamadı."
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr "{0} {1}: Gönderilen kayıt silinemez. Önce {2} İptal {3} işlemini gerçekleştirin."
-#: frappe/model/base_document.py:1110
+#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
msgstr "{0}, Satır {1}"
@@ -31777,7 +31455,7 @@ msgstr "{0}, Satır {1}"
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1115
+#: frappe/model/base_document.py:1120
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
@@ -31878,7 +31556,7 @@ msgstr "{0}: {1}"
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1279
+#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
msgstr "{0}: {1} ile {2}"
diff --git a/frappe/locale/vi.po b/frappe/locale/vi.po
index 135db3c172..ffa74f3f7b 100644
--- a/frappe/locale/vi.po
+++ b/frappe/locale/vi.po
@@ -2,14 +2,14 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-08 09:34+0000\n"
-"PO-Revision-Date: 2025-06-16 15:30\n"
+"POT-Creation-Date: 2025-06-22 09:34+0000\n"
+"PO-Revision-Date: 2025-06-22 16:41\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Vietnamese\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.13.1\n"
+"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"
@@ -140,7 +140,7 @@ msgstr ""
msgid "1 Google Calendar Event synced."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:951
+#: frappe/public/js/frappe/views/reports/query_report.js:953
msgid "1 Report"
msgstr ""
@@ -148,7 +148,7 @@ msgstr ""
msgid "1 comment"
msgstr ""
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:711
msgid "1 day ago"
msgstr ""
@@ -157,17 +157,17 @@ msgid "1 hour"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:709
msgid "1 hour ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:707
msgid "1 minute ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:715
msgid "1 month ago"
msgstr ""
@@ -179,37 +179,37 @@ msgstr ""
msgid "1 record will be exported"
msgstr ""
-#: frappe/tests/test_utils.py:705
+#: frappe/tests/test_utils.py:706
msgid "1 second ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:713
msgid "1 week ago"
msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:717
msgid "1 year ago"
msgstr ""
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:710
msgid "2 hours ago"
msgstr ""
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:716
msgid "2 months ago"
msgstr ""
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:714
msgid "2 weeks ago"
msgstr ""
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:718
msgid "2 years ago"
msgstr ""
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:708
msgid "3 minutes ago"
msgstr ""
@@ -225,7 +225,7 @@ msgstr ""
msgid "5 Records"
msgstr ""
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:712
msgid "5 days ago"
msgstr ""
@@ -245,7 +245,7 @@ msgstr ""
msgid "<="
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:588
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
msgid "{0} is not a valid URL"
msgstr ""
@@ -654,10 +654,7 @@ msgid "API"
msgstr ""
#. Label of the api_access (Section Break) field in DocType 'User'
-#. Label of the api_access_section (Section Break) field in DocType 'S3 Backup
-#. Settings'
#: frappe/core/doctype/user/user.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "API Access"
msgstr ""
@@ -769,17 +766,6 @@ msgstr ""
msgid "Access Control"
msgstr ""
-#. Label of the access_key_id (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key ID"
-msgstr ""
-
-#. Label of the secret_access_key (Password) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key Secret"
-msgstr ""
-
#. Name of a DocType
#. Label of a Link in the Users Workspace
#: frappe/core/doctype/access_log/access_log.json
@@ -830,6 +816,10 @@ msgstr ""
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'
@@ -860,7 +850,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1872
+#: frappe/model/document.py:1871
msgid "Action Failed"
msgstr ""
@@ -909,10 +899,10 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:192
-#: frappe/public/js/frappe/views/reports/query_report.js:205
-#: frappe/public/js/frappe/views/reports/query_report.js:215
-#: frappe/public/js/frappe/views/reports/query_report.js:845
+#: frappe/public/js/frappe/views/reports/query_report.js:190
+#: frappe/public/js/frappe/views/reports/query_report.js:203
+#: frappe/public/js/frappe/views/reports/query_report.js:213
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Actions"
msgstr ""
@@ -974,8 +964,8 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:267
-#: frappe/public/js/frappe/views/reports/query_report.js:295
+#: frappe/public/js/frappe/views/reports/query_report.js:265
+#: frappe/public/js/frappe/views/reports/query_report.js:293
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr ""
@@ -1016,7 +1006,7 @@ msgstr ""
msgid "Add Card to Dashboard"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:211
+#: frappe/public/js/frappe/views/reports/query_report.js:209
msgid "Add Chart to Dashboard"
msgstr ""
@@ -1025,10 +1015,10 @@ msgid "Add Child"
msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1769
-#: frappe/public/js/frappe/views/reports/query_report.js:1772
-#: frappe/public/js/frappe/views/reports/report_view.js:349
-#: frappe/public/js/frappe/views/reports/report_view.js:374
+#: frappe/public/js/frappe/views/reports/query_report.js:1771
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/report_view.js:355
+#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
msgstr ""
@@ -1052,7 +1042,7 @@ msgid "Add Custom Tags"
msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
-#: frappe/public/js/frappe/widgets/widget_dialog.js:703
+#: frappe/public/js/frappe/widgets/widget_dialog.js:716
msgid "Add Filters"
msgstr ""
@@ -1087,7 +1077,7 @@ msgstr ""
msgid "Add Query Parameters"
msgstr ""
-#: frappe/core/doctype/user/user.py:806
+#: frappe/core/doctype/user/user.py:808
msgid "Add Roles"
msgstr ""
@@ -1232,7 +1222,7 @@ msgid "Add tab"
msgstr ""
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:253
+#: frappe/public/js/frappe/views/reports/query_report.js:251
msgid "Add to Dashboard"
msgstr ""
@@ -1387,11 +1377,11 @@ msgstr ""
msgid "Administrator"
msgstr ""
-#: frappe/core/doctype/user/user.py:1211
+#: frappe/core/doctype/user/user.py:1213
msgid "Administrator Logged In"
msgstr ""
-#: frappe/core/doctype/user/user.py:1205
+#: frappe/core/doctype/user/user.py:1207
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr ""
@@ -1624,12 +1614,6 @@ msgstr ""
msgid "Allow Consecutive Login Attempts "
msgstr ""
-#. Label of the allow_dropbox_access (Button) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Allow Dropbox Access"
-msgstr ""
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
msgid "Allow Google Calendar Access"
msgstr ""
@@ -1638,10 +1622,6 @@ msgstr ""
msgid "Allow Google Contacts Access"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:52
-msgid "Allow Google Drive Access"
-msgstr ""
-
#. Label of the allow_guest (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
@@ -1895,7 +1875,7 @@ msgstr ""
msgid "Allowing DocType, DocType. Be careful!"
msgstr ""
-#: frappe/core/doctype/user/user.py:1021
+#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr ""
@@ -1903,11 +1883,11 @@ msgstr ""
msgid "Already in the following Users ToDo list:{0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:896
+#: frappe/public/js/frappe/views/reports/report_view.js:902
msgid "Also adding the dependent currency field {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:909
+#: frappe/public/js/frappe/views/reports/report_view.js:915
msgid "Also adding the status dependency field {0}"
msgstr ""
@@ -1986,7 +1966,7 @@ msgstr ""
msgid "Amendment Naming Override"
msgstr ""
-#: frappe/model/document.py:550
+#: frappe/model/document.py:549
msgid "Amendment Not Allowed"
msgstr ""
@@ -2075,15 +2055,6 @@ msgstr ""
msgid "App"
msgstr ""
-#. Label of the app_access_key (Data) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Access Key"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:22
-msgid "App Access Key and/or Secret Key are not present."
-msgstr ""
-
#. Label of the client_id (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client ID"
@@ -2117,16 +2088,11 @@ msgstr ""
msgid "App Name"
msgstr ""
-#. Label of the app_secret_key (Password) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Secret Key"
-msgstr ""
-
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1462
+#: frappe/__init__.py:1465
msgid "App {0} is not installed"
msgstr ""
@@ -2276,7 +2242,7 @@ msgstr ""
msgid "Are you sure you want to clear the assignments?"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:290
+#: frappe/public/js/frappe/form/grid.js:294
msgid "Are you sure you want to delete all rows?"
msgstr ""
@@ -2304,7 +2270,7 @@ msgstr ""
msgid "Are you sure you want to discard the changes?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:965
+#: frappe/public/js/frappe/views/reports/query_report.js:967
msgid "Are you sure you want to generate a new report?"
msgstr ""
@@ -2430,7 +2396,7 @@ msgstr ""
msgid "Assigned By Full Name"
msgstr ""
-#: frappe/model/meta.py:60
+#: 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
@@ -2700,13 +2666,11 @@ msgstr ""
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
#. Contacts'
-#. Label of the authorization_code (Data) field in DocType 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
@@ -2744,12 +2708,6 @@ msgstr ""
msgid "Authorize Google Contacts Access"
msgstr ""
-#. Label of the authorize_google_drive_access (Button) field in DocType 'Google
-#. Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Authorize Google Drive 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"
@@ -2896,11 +2854,11 @@ msgstr ""
msgid "Automatic"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:774
+#: 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:768
+#: frappe/email/doctype/email_account/email_account.py:766
msgid "Automatic Linking can be activated only if Incoming is enabled."
msgstr ""
@@ -3114,66 +3072,14 @@ msgstr ""
msgid "Background Workers"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:170
-msgid "Backing up Data."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:32
-msgid "Backing up to Google Drive."
-msgstr ""
-
-#. Label of a Card Break in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Backup"
-msgstr ""
-
-#. Label of the backup_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Details"
-msgstr ""
-
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
msgstr ""
-#. Label of the backup_files (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Files"
-msgstr ""
-
-#. Label of the backup_folder_id (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder ID"
-msgstr ""
-
-#. Label of the backup_folder_name (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder Name"
-msgstr ""
-
-#. Label of the backup_frequency (Select) field in DocType 'Dropbox Settings'
-#. Label of the frequency (Select) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Frequency"
-msgstr ""
-
-#. Label of the backup_path (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Path"
-msgstr ""
-
#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
msgstr ""
-#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup public and private files along with the database."
-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'
@@ -3187,7 +3093,7 @@ msgstr ""
msgid "Backups (MB)"
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:65
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
msgid "Bad Cron Expression"
msgstr ""
@@ -3584,15 +3490,6 @@ msgstr ""
msgid "Brute Force Security"
msgstr ""
-#. Label of the bucket (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Bucket Name"
-msgstr ""
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:71
-msgid "Bucket {0} not found."
-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"
@@ -3629,7 +3526,7 @@ msgstr ""
msgid "Bulk Edit"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1184
+#: frappe/public/js/frappe/form/grid.js:1188
msgid "Bulk Edit {0}"
msgstr ""
@@ -3704,12 +3601,6 @@ msgstr ""
msgid "By default the title is used as meta title, adding a value here will override it."
msgstr ""
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "By default, emails are only sent for failed backups."
-msgstr ""
-
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
@@ -4020,7 +3911,7 @@ msgstr ""
msgid "Cannot Remove"
msgstr ""
-#: frappe/model/base_document.py:1156
+#: frappe/model/base_document.py:1161
msgid "Cannot Update After Submit"
msgstr ""
@@ -4040,11 +3931,11 @@ msgstr ""
msgid "Cannot cancel {0}."
msgstr ""
-#: frappe/model/document.py:1012
+#: frappe/model/document.py:1011
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr ""
-#: frappe/model/document.py:1026
+#: frappe/model/document.py:1025
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr ""
@@ -4127,7 +4018,7 @@ msgstr ""
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr ""
-#: frappe/model/document.py:1032
+#: frappe/model/document.py:1031
msgid "Cannot edit cancelled document"
msgstr ""
@@ -4160,11 +4051,11 @@ msgstr ""
msgid "Cannot have multiple printers mapped to a single print format."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1128
+#: frappe/public/js/frappe/form/grid.js:1132
msgid "Cannot import table with more than 5000 rows."
msgstr ""
-#: frappe/model/document.py:1100
+#: frappe/model/document.py:1099
msgid "Cannot link cancelled document: {0}"
msgstr ""
@@ -4180,7 +4071,7 @@ msgstr ""
msgid "Cannot move row"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:921
+#: frappe/public/js/frappe/views/reports/report_view.js:927
msgid "Cannot remove ID field"
msgstr ""
@@ -4205,11 +4096,11 @@ msgstr ""
msgid "Cannot update {0}"
msgstr ""
-#: frappe/model/db_query.py:1125
+#: frappe/model/db_query.py:1126
msgid "Cannot use sub-query in order by"
msgstr ""
-#: frappe/model/db_query.py:1144
+#: frappe/model/db_query.py:1145
msgid "Cannot use {0} in order/group by"
msgstr ""
@@ -4235,7 +4126,7 @@ msgstr ""
msgid "Card Break"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:261
msgid "Card Label"
msgstr ""
@@ -4377,7 +4268,7 @@ msgstr ""
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:290
+#: frappe/public/js/frappe/views/reports/query_report.js:288
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr ""
@@ -4397,7 +4288,7 @@ 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:499
+#: frappe/public/js/frappe/views/reports/report_view.js:505
msgid "Chart Type"
msgstr ""
@@ -4511,7 +4402,7 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:638
+#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4604,10 +4495,6 @@ msgstr ""
msgid "Click here to verify"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:47
-msgid "Click on Authorize Google Drive Access to authorize Google Drive Access."
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4634,7 +4521,6 @@ msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
-#: frappe/integrations/doctype/google_drive/google_drive.py:53
#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
msgstr ""
@@ -4808,7 +4694,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr ""
@@ -4863,9 +4749,9 @@ 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:1229
-#: frappe/public/js/frappe/widgets/widget_dialog.js:533
-#: frappe/public/js/frappe/widgets/widget_dialog.js:681
+#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: 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
@@ -5006,7 +4892,7 @@ msgstr ""
msgid "Comment publicity can only be updated by the original author or a System Manager."
msgstr ""
-#: frappe/model/meta.py:59 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/model/meta.js:209
#: frappe/public/js/frappe/model/model.js:135
#: frappe/website/doctype/web_form/templates/web_form.html:122
@@ -5113,7 +4999,7 @@ msgstr ""
msgid "Complete By"
msgstr ""
-#: frappe/core/doctype/user/user.py:477
+#: frappe/core/doctype/user/user.py:478
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr ""
@@ -5209,7 +5095,7 @@ msgstr ""
msgid "Configuration"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:481
+#: frappe/public/js/frappe/views/reports/report_view.js:487
msgid "Configure Chart"
msgstr ""
@@ -5546,7 +5432,7 @@ msgstr ""
msgid "Could not connect to outgoing email server"
msgstr ""
-#: frappe/model/document.py:1096
+#: frappe/model/document.py:1095
msgid "Could not find {0}"
msgstr ""
@@ -5575,7 +5461,7 @@ msgstr ""
msgid "Count"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:527
+#: frappe/public/js/frappe/widgets/widget_dialog.js:540
msgid "Count Customizations"
msgstr ""
@@ -5583,10 +5469,14 @@ msgstr ""
#. 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:512
+#: 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"
@@ -5637,7 +5527,7 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1261
+#: frappe/public/js/frappe/views/reports/query_report.js:1263
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5651,13 +5541,13 @@ msgstr ""
msgid "Create Address"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:188
-#: frappe/public/js/frappe/views/reports/query_report.js:233
+#: frappe/public/js/frappe/views/reports/query_report.js:186
+#: frappe/public/js/frappe/views/reports/query_report.js:231
msgid "Create Card"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:286
-#: frappe/public/js/frappe/views/reports/query_report.js:1188
+#: frappe/public/js/frappe/views/reports/query_report.js:284
+#: frappe/public/js/frappe/views/reports/query_report.js:1190
msgid "Create Chart"
msgstr ""
@@ -5768,7 +5658,7 @@ msgstr ""
msgid "Created At"
msgstr ""
-#: frappe/model/meta.py:56
+#: 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
@@ -5780,14 +5670,14 @@ 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:51
+#: 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:515
+#: frappe/public/js/frappe/desk.js:523
#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
msgstr ""
@@ -5810,7 +5700,7 @@ msgstr ""
msgid "Cron Format"
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:59
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
msgstr ""
@@ -6207,11 +6097,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -6220,9 +6105,6 @@ msgstr ""
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:398
#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
@@ -6776,7 +6658,7 @@ msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/toolbar.js:461
-#: frappe/public/js/frappe/views/reports/report_view.js:1734
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
@@ -6819,7 +6701,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:932
+#: frappe/public/js/frappe/views/reports/query_report.js:934
msgid "Delete and Generate New"
msgstr ""
@@ -6828,7 +6710,7 @@ msgctxt "Button text"
msgid "Delete column"
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:738
+#: frappe/public/js/frappe/form/footer/form_timeline.js:741
msgid "Delete comment?"
msgstr ""
@@ -6914,7 +6796,7 @@ msgstr ""
msgid "Deleting {0} records..."
msgstr ""
-#: frappe/public/js/frappe/model/model.js:741
+#: frappe/public/js/frappe/model/model.js:692
msgid "Deleting {0}..."
msgstr ""
@@ -6960,7 +6842,7 @@ 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:310
+#: frappe/public/js/frappe/widgets/widget_dialog.js:323
#: frappe/www/attribution.html:29
msgid "Dependencies"
msgstr ""
@@ -7074,6 +6956,7 @@ msgstr ""
#: 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
@@ -7371,14 +7254,10 @@ 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:1189
+#: frappe/public/js/frappe/form/grid.js:1193
msgid "Do not edit headers which are preset in the template"
msgstr ""
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:69
-msgid "Do not have permission to access bucket {0}."
-msgstr ""
-
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr ""
@@ -7511,7 +7390,7 @@ 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:466
+#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
msgstr ""
@@ -7571,7 +7450,7 @@ 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:669
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
msgid "Doctype"
msgstr ""
@@ -7689,7 +7568,7 @@ msgstr ""
msgid "Document Naming Settings"
msgstr ""
-#: frappe/model/document.py:477
+#: frappe/model/document.py:476
msgid "Document Queued"
msgstr ""
@@ -7742,7 +7621,7 @@ msgstr ""
msgid "Document States"
msgstr ""
-#: frappe/model/meta.py:52 frappe/public/js/frappe/model/meta.js:202
+#: 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 ""
@@ -7813,11 +7692,11 @@ msgstr ""
msgid "Document Type and Function are required to create a number card"
msgstr ""
-#: frappe/permissions.py:148
+#: frappe/permissions.py:149
msgid "Document Type is not importable"
msgstr ""
-#: frappe/permissions.py:144
+#: frappe/permissions.py:145
msgid "Document Type is not submittable"
msgstr ""
@@ -7846,7 +7725,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1943
+#: frappe/model/document.py:1942
msgid "Document Unlocked"
msgstr ""
@@ -8037,7 +7916,7 @@ msgstr ""
msgid "Download PDF"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:835
+#: frappe/public/js/frappe/views/reports/query_report.js:830
msgid "Download Report"
msgstr ""
@@ -8048,7 +7927,7 @@ 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:57
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
msgid "Download Your Data"
msgstr ""
@@ -8104,29 +7983,6 @@ msgstr ""
msgid "Drop files here"
msgstr ""
-#. Label of the dropbox_access_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Access Token"
-msgstr ""
-
-#. Label of the dropbox_refresh_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Refresh Token"
-msgstr ""
-
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Dropbox Settings"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:347
-msgid "Dropbox Setup"
-msgstr ""
-
#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
@@ -8156,7 +8012,7 @@ msgstr ""
msgid "Duplicate Filter Name"
msgstr ""
-#: frappe/model/base_document.py:666 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr ""
@@ -8255,13 +8111,13 @@ msgstr ""
#: 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:668
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:669
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:883
-#: frappe/public/js/frappe/views/reports/query_report.js:1722
+#: frappe/public/js/frappe/views/reports/query_report.js:878
+#: frappe/public/js/frappe/views/reports/query_report.js:1724
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8424,7 +8280,7 @@ msgstr ""
msgid "Edit your workflow visually using the Workflow Builder."
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:672
+#: frappe/public/js/frappe/views/reports/report_view.js:678
#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
msgstr ""
@@ -8525,7 +8381,7 @@ msgstr ""
msgid "Email Account Name"
msgstr ""
-#: frappe/core/doctype/user/user.py:736
+#: frappe/core/doctype/user/user.py:738
msgid "Email Account added multiple times"
msgstr ""
@@ -8533,7 +8389,7 @@ msgstr ""
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:578
+#: frappe/email/doctype/email_account/email_account.py:576
msgid "Email Account {0} Disabled"
msgstr ""
@@ -8759,7 +8615,7 @@ msgstr ""
msgid "Emails Pulled"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:936
+#: frappe/email/doctype/email_account/email_account.py:934
msgid "Emails are already being pulled from this account."
msgstr ""
@@ -8782,11 +8638,9 @@ 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 Drive'
#. 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_drive/google_drive.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
msgstr ""
@@ -8806,11 +8660,6 @@ msgstr ""
msgid "Enable Auto Reply"
msgstr ""
-#. Label of the enabled (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Enable Automatic Backup"
-msgstr ""
-
#. Label of the enable_automatic_linking (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -8969,7 +8818,6 @@ msgstr ""
#. 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 'Dropbox Settings'
#. 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'
@@ -8980,7 +8828,6 @@ msgstr ""
#: 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/dropbox_settings/dropbox_settings.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/public/js/frappe/model/indicator.js:106
@@ -8993,7 +8840,7 @@ msgstr ""
msgid "Enabled Scheduler"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:1012
+#: frappe/email/doctype/email_account/email_account.py:1010
msgid "Enabled email inbox for user {0}"
msgstr ""
@@ -9074,11 +8921,6 @@ msgstr ""
msgid "Ended At"
msgstr ""
-#. Label of the endpoint_url (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Endpoint URL"
-msgstr ""
-
#. Label of the sb_endpoints_section (Section Break) field in DocType
#. 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -9257,7 +9099,7 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:672
+#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9265,15 +9107,15 @@ msgstr ""
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr ""
-#: frappe/model/base_document.py:806
+#: frappe/model/base_document.py:803
msgid "Error: Data missing in table {0}"
msgstr ""
-#: frappe/model/base_document.py:816
+#: frappe/model/base_document.py:813
msgid "Error: Value missing for {0}: {1}"
msgstr ""
-#: frappe/model/base_document.py:810
+#: frappe/model/base_document.py:807
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr ""
@@ -9422,7 +9264,7 @@ msgstr ""
msgid "Executing..."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2069
+#: frappe/public/js/frappe/views/reports/query_report.js:2071
msgid "Execution Time: {0} sec"
msgstr ""
@@ -9448,7 +9290,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr ""
@@ -9505,8 +9347,8 @@ 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:1757
-#: frappe/public/js/frappe/views/reports/report_view.js:1621
+#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr ""
@@ -9557,11 +9399,11 @@ msgstr ""
msgid "Export Type"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1632
+#: frappe/public/js/frappe/views/reports/report_view.js:1638
msgid "Export all matching rows?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1642
+#: frappe/public/js/frappe/views/reports/report_view.js:1648
msgid "Export all {0} rows?"
msgstr ""
@@ -9869,8 +9711,8 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:237
-#: frappe/public/js/frappe/views/reports/query_report.js:1816
+#: frappe/public/js/frappe/views/reports/query_report.js:235
+#: frappe/public/js/frappe/views/reports/query_report.js:1818
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -9945,7 +9787,7 @@ msgstr ""
msgid "Field {0} does not exist on {1}"
msgstr ""
-#: frappe/desk/form/meta.py:208
+#: frappe/desk/form/meta.py:184
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr ""
@@ -10048,7 +9890,7 @@ msgstr ""
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr ""
-#: frappe/model/db_query.py:144
+#: frappe/model/db_query.py:146
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
@@ -10097,13 +9939,6 @@ msgstr ""
msgid "File '{0}' not found"
msgstr ""
-#. Label of the file_backup (Check) field in DocType 'Dropbox Settings'
-#. Label of the file_backup (Check) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "File Backup"
-msgstr ""
-
#. Label of the private_file_section (Section Break) field in DocType 'Access
#. Log'
#: frappe/core/doctype/access_log/access_log.json
@@ -10304,7 +10139,7 @@ msgstr ""
msgid "Filters {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1421
+#: frappe/public/js/frappe/views/reports/report_view.js:1427
msgid "Filters:"
msgstr ""
@@ -10451,7 +10286,7 @@ msgstr ""
msgid "Following document {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:111
+#: frappe/website/doctype/web_form/web_form.py:108
msgid "Following fields are missing:"
msgstr ""
@@ -10459,7 +10294,7 @@ msgstr ""
msgid "Following fields have invalid values:"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:345
+#: frappe/public/js/frappe/widgets/widget_dialog.js:358
msgid "Following fields have missing values"
msgstr ""
@@ -10602,7 +10437,7 @@ msgstr ""
msgid "For Document Type"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:553
+#: frappe/public/js/frappe/widgets/widget_dialog.js:566
msgid "For Example: {} Open"
msgstr ""
@@ -10631,7 +10466,7 @@ msgstr ""
msgid "For Value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2066
+#: frappe/public/js/frappe/views/reports/query_report.js:2068
#: frappe/public/js/frappe/views/reports/report_view.js:102
msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr ""
@@ -10784,7 +10619,7 @@ msgstr ""
#. 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:552
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
msgid "Format"
msgstr ""
@@ -10816,7 +10651,7 @@ msgstr ""
#. 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:149
+#: frappe/www/login.py:153
msgid "Frappe"
msgstr ""
@@ -10833,7 +10668,7 @@ msgstr ""
msgid "Frappe Mail"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:549
+#: frappe/email/doctype/email_account/email_account.py:547
msgid "Frappe Mail OAuth Error"
msgstr ""
@@ -10861,13 +10696,11 @@ msgstr ""
#. 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'
-#. Label of the frequency (Select) field in DocType 'Google Drive'
#: 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/integrations/doctype/google_drive/google_drive.json
#: frappe/public/js/frappe/utils/common.js:395
msgid "Frequency"
msgstr ""
@@ -10913,7 +10746,7 @@ msgstr ""
msgid "From Date Field"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
+#: frappe/public/js/frappe/views/reports/query_report.js:1779
msgid "From Document Type"
msgstr ""
@@ -10964,16 +10797,16 @@ 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:247
-#: frappe/public/js/frappe/widgets/widget_dialog.js:686
+#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:693
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:670
+#: frappe/__init__.py:677
msgid "Function {0} is not whitelisted."
msgstr ""
@@ -11038,7 +10871,7 @@ msgstr ""
msgid "Generate Keys"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:877
+#: frappe/public/js/frappe/views/reports/query_report.js:872
msgid "Generate New Report"
msgstr ""
@@ -11326,32 +11159,12 @@ msgstr ""
msgid "Google Contacts Id"
msgstr ""
-#. Name of a DocType
-#. Label of the google_drive_section (Section Break) field in DocType 'Google
-#. Drive'
#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/google_drive/google_drive.json
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:117
-msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:132
-msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:193
-msgid "Google Drive - Could not locate - {0}"
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:204
-msgid "Google Drive Backup Successful."
-msgstr ""
-
#. Label of the section_break_7 (Section Break) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -11681,6 +11494,10 @@ msgstr ""
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'
@@ -12004,17 +11821,17 @@ msgstr ""
msgid "Home Settings"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:330
-#: frappe/core/doctype/file/test_file.py:332
-#: frappe/core/doctype/file/test_file.py:396
+#: 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:385
+#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:341
+#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
msgstr ""
@@ -12059,7 +11876,7 @@ msgstr ""
#: frappe/core/doctype/data_import/importer.py:1177
#: frappe/core/doctype/data_import/importer.py:1242
#: frappe/core/doctype/data_import/importer.py:1245
-#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:50
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
#: frappe/public/js/frappe/list/list_settings.js:337
@@ -12071,7 +11888,7 @@ msgid "ID"
msgstr ""
#: frappe/desk/reportview.py:491
-#: frappe/public/js/frappe/views/reports/report_view.js:978
+#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
msgstr ""
@@ -12255,12 +12072,6 @@ msgstr ""
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
msgstr ""
-#. Description of the 'Backup Path' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "If it's empty, it will backup to the root of the bucket."
-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"
@@ -12391,16 +12202,12 @@ msgstr ""
msgid "Ignored Apps"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:348
-msgid "Illegal Access Token. Please try again"
-msgstr ""
-
#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
msgstr ""
-#: frappe/model/db_query.py:451 frappe/model/db_query.py:454
-#: frappe/model/db_query.py:1128
+#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
+#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
msgstr ""
@@ -12749,11 +12556,11 @@ msgstr ""
msgid "Include Web View Link in Email"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1592
+#: frappe/public/js/frappe/views/reports/query_report.js:1594
msgid "Include filters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1584
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Include indentation"
msgstr ""
@@ -12820,11 +12627,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1542
+#: frappe/model/document.py:1541
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1544
+#: frappe/model/document.py:1543
msgid "Incorrect value:"
msgstr ""
@@ -12833,10 +12640,10 @@ msgstr ""
#. 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:53
+#: 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:999
+#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
msgstr ""
@@ -12911,7 +12718,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:1822
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
msgid "Insert After"
msgstr ""
@@ -12927,7 +12734,7 @@ msgstr ""
msgid "Insert Below"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:384
+#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
msgstr ""
@@ -12976,11 +12783,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:818
+#: frappe/permissions.py:827
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:376
+#: frappe/database/query.py:383
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -13098,7 +12905,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:221
#: frappe/public/js/frappe/form/grid_row.js:833
#: frappe/public/js/frappe/form/layout.js:811
-#: frappe/public/js/frappe/views/reports/report_view.js:710
+#: frappe/public/js/frappe/views/reports/report_view.js:716
msgid "Invalid \"depends_on\" expression"
msgstr ""
@@ -13138,7 +12945,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:102
+#: frappe/database/query.py:103
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13183,6 +12990,7 @@ 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 ""
@@ -13207,7 +13015,7 @@ msgstr ""
msgid "Invalid Parameters."
msgstr ""
-#: frappe/core/doctype/user/user.py:1226 frappe/www/update-password.html:123
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
#: frappe/www/update-password.html:247
msgid "Invalid Password"
@@ -13236,7 +13044,7 @@ msgstr ""
#: frappe/core/doctype/file/file.py:220
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
-#: frappe/public/js/frappe/widgets/widget_dialog.js:589
+#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
msgstr ""
@@ -13257,11 +13065,11 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:393
+#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
-#: frappe/model/document.py:1015 frappe/model/document.py:1029
+#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13285,7 +13093,7 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:182
+#: frappe/database/query.py:189
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
@@ -13311,7 +13119,7 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:324
+#: frappe/app.py:317
msgid "Invalid request arguments"
msgstr ""
@@ -13495,7 +13303,7 @@ 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:328
+#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
msgstr ""
@@ -13710,6 +13518,10 @@ msgstr ""
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 ""
@@ -13741,7 +13553,7 @@ msgstr ""
#. 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:498
+#: frappe/public/js/frappe/widgets/widget_dialog.js:511
msgid "Kanban Board"
msgstr ""
@@ -14013,10 +13825,10 @@ msgstr ""
#: 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:300
-#: frappe/public/js/frappe/widgets/widget_dialog.js:453
-#: frappe/public/js/frappe/widgets/widget_dialog.js:630
-#: frappe/public/js/frappe/widgets/widget_dialog.js:663
+#: 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
@@ -14101,11 +13913,6 @@ msgstr ""
msgid "Last Active"
msgstr ""
-#. Label of the last_backup_on (Datetime) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Last Backup On"
-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"
@@ -14190,12 +13997,12 @@ msgstr ""
msgid "Last Synced On"
msgstr ""
-#: frappe/model/meta.py:55 frappe/public/js/frappe/model/meta.js:205
+#: 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:54 frappe/public/js/frappe/model/meta.js:204
+#: 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 ""
@@ -14239,7 +14046,7 @@ msgid "Leave blank to repeat always"
msgstr ""
#: frappe/core/doctype/communication/mixins.py:207
-#: frappe/email/doctype/email_account/email_account.py:722
+#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
msgstr ""
@@ -14458,7 +14265,7 @@ msgstr ""
msgid "Liked"
msgstr ""
-#: frappe/model/meta.py:58 frappe/public/js/frappe/model/meta.js:208
+#: 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 ""
@@ -14473,11 +14280,6 @@ msgstr ""
msgid "Limit"
msgstr ""
-#. Label of the limit_no_of_backups (Check) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Limit Number of DB Backups"
-msgstr ""
-
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14592,11 +14394,11 @@ msgstr ""
#: 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:414
+#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:350
+#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
msgstr ""
@@ -14609,7 +14411,7 @@ msgstr ""
msgid "Link Type"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:346
+#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
msgstr ""
@@ -14761,7 +14563,7 @@ msgstr ""
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1085
+#: frappe/public/js/frappe/views/reports/query_report.js:1087
msgid "Loading"
msgstr ""
@@ -14892,7 +14694,7 @@ msgstr ""
msgid "Login Page"
msgstr ""
-#: frappe/www/login.py:152
+#: frappe/www/login.py:156
msgid "Login To {0}"
msgstr ""
@@ -15159,7 +14961,7 @@ msgstr ""
msgid "Mandatory Depends On (JS)"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:473
+#: frappe/website/doctype/web_form/web_form.py:470
msgid "Mandatory Information missing:"
msgstr ""
@@ -15434,7 +15236,7 @@ msgid "Menu"
msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:242
-#: frappe/public/js/frappe/model/model.js:754
+#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr ""
@@ -15613,7 +15415,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:672
+#: frappe/__init__.py:679
msgid "Method Not Allowed"
msgstr ""
@@ -15690,7 +15492,7 @@ msgstr ""
msgid "Miss"
msgstr ""
-#: frappe/desk/form/meta.py:218
+#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
msgstr ""
@@ -15715,7 +15517,7 @@ msgid "Missing Value"
msgstr ""
#: frappe/public/js/frappe/ui/field_group.js:124
-#: frappe/public/js/frappe/widgets/widget_dialog.js:361
+#: 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"
@@ -15898,8 +15700,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -15907,7 +15707,6 @@ msgstr ""
#: 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/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:400
#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
@@ -16079,7 +15878,7 @@ msgid "Mx"
msgstr ""
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:462
+#: frappe/website/doctype/web_form/web_form.py:459
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16245,7 +16044,7 @@ msgstr ""
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr ""
-#: frappe/model/document.py:793
+#: frappe/model/document.py:792
msgid "Negative Value"
msgstr ""
@@ -16350,7 +16149,7 @@ 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:762
+#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr ""
@@ -16384,7 +16183,7 @@ msgstr ""
msgid "New Quick List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
msgstr ""
@@ -16440,26 +16239,26 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
#: frappe/public/js/frappe/form/toolbar.js:558
-#: frappe/public/js/frappe/model/model.js:661
+#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:379
+#: frappe/website/doctype/web_form/web_form.py:376
msgid "New {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:394
+#: frappe/public/js/frappe/views/reports/query_report.js:392
msgid "New {0} Created"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:386
+#: frappe/public/js/frappe/views/reports/query_report.js:384
msgid "New {0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:391
+#: frappe/public/js/frappe/views/reports/query_report.js:389
msgid "New {0} {1} created"
msgstr ""
@@ -16471,7 +16270,7 @@ msgstr ""
msgid "New {} releases for the following apps are available"
msgstr ""
-#: frappe/core/doctype/user/user.py:802
+#: frappe/core/doctype/user/user.py:804
msgid "Newly created user {0} has no roles enabled."
msgstr ""
@@ -16633,7 +16432,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr ""
@@ -16774,7 +16573,7 @@ msgstr ""
msgid "No Results found"
msgstr ""
-#: frappe/core/doctype/user/user.py:803
+#: frappe/core/doctype/user/user.py:805
msgid "No Roles Specified"
msgstr ""
@@ -16925,7 +16724,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:827 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16934,7 +16733,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr ""
-#: frappe/model/db_query.py:949
+#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
msgstr ""
@@ -17018,12 +16817,6 @@ msgstr ""
msgid "Non-Conforming"
msgstr ""
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "None"
-msgstr ""
-
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr ""
@@ -17038,7 +16831,7 @@ msgstr ""
msgid "Normalized Query"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr ""
@@ -17059,7 +16852,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:374 frappe/www/404.html:3
+#: frappe/app.py:367 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -17085,9 +16878,9 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:754 frappe/app.py:367 frappe/desk/calendar.py:26
+#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:711
+#: frappe/website/doctype/web_form/web_form.py:708
#: 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
@@ -17108,7 +16901,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:813
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
-#: frappe/public/js/frappe/views/reports/report_view.js:197
+#: frappe/public/js/frappe/views/reports/report_view.js:203
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
@@ -17139,7 +16932,7 @@ msgstr ""
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr ""
-#: frappe/core/doctype/user/user.py:264
+#: frappe/core/doctype/user/user.py:265
msgid "Not a valid User Image."
msgstr ""
@@ -17155,7 +16948,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:360
+#: frappe/permissions.py:370
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17175,7 +16968,7 @@ msgstr ""
msgid "Not allowed to print draft documents"
msgstr ""
-#: frappe/permissions.py:212
+#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
msgstr ""
@@ -17191,12 +16984,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:214
+#: frappe/core/doctype/system_settings/system_settings.py:215
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:724
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr ""
@@ -17222,15 +17015,6 @@ msgstr ""
msgid "Note:"
msgstr ""
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'Dropbox Settings'
-#. Description of the 'Send Email for Successful backup' (Check) field in
-#. DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Note: By default emails for failed backups are sent."
-msgstr ""
-
#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr ""
@@ -17290,13 +17074,10 @@ msgstr ""
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
#. Name of a DocType
-#. Label of the notification_section (Section Break) field in DocType 'S3
-#. Backup Settings'
#: 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
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Notification"
msgstr ""
@@ -17398,7 +17179,7 @@ msgstr ""
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:615
+#: frappe/public/js/frappe/widgets/widget_dialog.js:628
msgid "Number Card"
msgstr ""
@@ -17416,7 +17197,7 @@ 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:645
+#: frappe/public/js/frappe/widgets/widget_dialog.js:658
msgid "Number Cards"
msgstr ""
@@ -17434,15 +17215,6 @@ msgstr ""
msgid "Number of Backups"
msgstr ""
-#. Label of the no_of_backups (Int) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Number of DB Backups"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:54
-msgid "Number of DB backups cannot be less than 1"
-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"
@@ -17458,7 +17230,7 @@ msgstr ""
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:169
+#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
msgstr ""
@@ -17687,7 +17459,7 @@ 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:322
+#: frappe/public/js/frappe/widgets/widget_dialog.js:335
msgid "Onboard"
msgstr ""
@@ -17783,19 +17555,13 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Only change this if you want to use other S3 compatible object storage backends."
-msgstr ""
-
-#: frappe/model/document.py:1232
+#: frappe/model/document.py:1231
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:315
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
msgstr ""
@@ -18044,7 +17810,7 @@ msgstr ""
msgid "Options is required for field {0} of type {1}"
msgstr ""
-#: frappe/model/base_document.py:870
+#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
msgstr ""
@@ -18156,7 +17922,7 @@ msgstr ""
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1742
+#: frappe/public/js/frappe/views/reports/query_report.js:1744
msgid "PDF"
msgstr ""
@@ -18455,7 +18221,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:798
+#: frappe/permissions.py:807
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18515,11 +18281,11 @@ msgstr ""
msgid "Password"
msgstr ""
-#: frappe/core/doctype/user/user.py:1079
+#: frappe/core/doctype/user/user.py:1081
msgid "Password Email Sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:457
+#: frappe/core/doctype/user/user.py:458
msgid "Password Reset"
msgstr ""
@@ -18553,7 +18319,7 @@ msgstr ""
msgid "Password not found for {0} {1} {2}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1078
+#: frappe/core/doctype/user/user.py:1080
msgid "Password reset instructions have been sent to {}'s email"
msgstr ""
@@ -18565,7 +18331,7 @@ msgstr ""
msgid "Password size exceeded the maximum allowed size"
msgstr ""
-#: frappe/core/doctype/user/user.py:869
+#: frappe/core/doctype/user/user.py:871
msgid "Password size exceeded the maximum allowed size."
msgstr ""
@@ -18722,7 +18488,7 @@ msgstr ""
msgid "Permanently Submit {0}?"
msgstr ""
-#: frappe/public/js/frappe/model/model.js:733
+#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
msgstr ""
@@ -18883,8 +18649,8 @@ msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:40
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
-#: frappe/public/js/frappe/views/reports/report_view.js:1576
+#: frappe/public/js/frappe/views/reports/report_view.js:1579
+#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
msgstr ""
@@ -18924,7 +18690,7 @@ msgstr ""
msgid "Plant"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:546
+#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
msgstr ""
@@ -18940,7 +18706,7 @@ msgstr ""
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:309
+#: frappe/public/js/frappe/views/reports/query_report.js:307
msgid "Please Set Chart"
msgstr ""
@@ -18956,7 +18722,7 @@ msgstr ""
msgid "Please add a valid comment."
msgstr ""
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1063
msgid "Please ask your administrator to verify your sign-up"
msgstr ""
@@ -18984,11 +18750,11 @@ msgstr ""
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr ""
-#: frappe/model/base_document.py:946
+#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr ""
-#: frappe/core/doctype/user/user.py:1059
+#: frappe/core/doctype/user/user.py:1061
msgid "Please check your email for verification"
msgstr ""
@@ -19016,10 +18782,6 @@ msgstr ""
msgid "Please click on the following link to set your new password"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:343
-msgid "Please close this window"
-msgstr ""
-
#: frappe/www/confirm_workflow_action.html:4
msgid "Please confirm your action to {0} this document."
msgstr ""
@@ -19036,7 +18798,7 @@ msgstr ""
msgid "Please create chart first"
msgstr ""
-#: frappe/desk/form/meta.py:214
+#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
msgstr ""
@@ -19048,7 +18810,7 @@ msgstr ""
msgid "Please duplicate this to make changes"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:162
+#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr ""
@@ -19066,7 +18828,7 @@ msgstr ""
msgid "Please enable pop-ups in your browser"
msgstr ""
-#: frappe/integrations/google_oauth.py:53
+#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
msgstr ""
@@ -19143,7 +18905,7 @@ msgstr ""
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr ""
-#: frappe/model/document.py:987
+#: frappe/model/document.py:986
msgid "Please refresh to get the latest document."
msgstr ""
@@ -19167,7 +18929,7 @@ msgstr ""
msgid "Please save the document before removing assignment"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1703
+#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
msgstr ""
@@ -19183,11 +18945,11 @@ msgstr ""
msgid "Please select Entity Type first"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:112
+#: frappe/core/doctype/system_settings/system_settings.py:113
msgid "Please select Minimum Password Score"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1181
+#: frappe/public/js/frappe/views/reports/query_report.js:1183
msgid "Please select X and Y fields"
msgstr ""
@@ -19215,7 +18977,7 @@ msgstr ""
msgid "Please select applicable Doctypes"
msgstr ""
-#: frappe/model/db_query.py:1140
+#: frappe/model/db_query.py:1141
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr ""
@@ -19237,10 +18999,6 @@ msgstr ""
msgid "Please select {0}"
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:305
-msgid "Please set Dropbox access keys in site config or doctype"
-msgstr ""
-
#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
msgstr ""
@@ -19249,7 +19007,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:1404
+#: frappe/public/js/frappe/views/reports/query_report.js:1406
msgid "Please set filters"
msgstr ""
@@ -19269,7 +19027,7 @@ msgstr ""
msgid "Please set the series to be used."
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:125
+#: frappe/core/doctype/system_settings/system_settings.py:126
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr ""
@@ -19277,19 +19035,19 @@ msgstr ""
msgid "Please setup a message first"
msgstr ""
-#: frappe/core/doctype/user/user.py:422
+#: frappe/core/doctype/user/user.py:423
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:434
+#: 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:823
+#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:774
+#: frappe/permissions.py:783
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19318,7 +19076,7 @@ msgstr ""
msgid "Please try again"
msgstr ""
-#: frappe/integrations/google_oauth.py:56
+#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
msgstr ""
@@ -19631,8 +19389,8 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1728
-#: frappe/public/js/frappe/views/reports/report_view.js:1531
+#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr ""
@@ -19875,7 +19633,7 @@ msgstr ""
msgid "Proceed"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
msgstr ""
@@ -20196,7 +19954,7 @@ msgstr ""
msgid "Queue"
msgstr ""
-#: frappe/utils/background_jobs.py:729
+#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
msgstr ""
@@ -20217,7 +19975,7 @@ msgstr ""
msgid "Queue in Background (BETA)"
msgstr ""
-#: frappe/utils/background_jobs.py:554
+#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
msgstr ""
@@ -20250,12 +20008,6 @@ msgstr ""
msgid "Queued for Submission. You can track the progress over {0}."
msgstr ""
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:65
-#: frappe/integrations/doctype/google_drive/google_drive.py:153
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:86
-msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr ""
-
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
@@ -20391,7 +20143,7 @@ msgstr ""
msgid "Re-Run in Console"
msgstr ""
-#: frappe/email/doctype/email_account/email_account.py:728
+#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
msgstr ""
@@ -20493,7 +20245,7 @@ msgstr ""
msgid "Reason"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:889
+#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
msgstr ""
@@ -20858,11 +20610,11 @@ msgid "Referrer"
msgstr ""
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:548
+#: frappe/public/js/frappe/desk.js:556
#: 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:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1719
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -20881,12 +20633,10 @@ 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 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
@@ -20903,7 +20653,7 @@ msgstr ""
msgid "Refreshing..."
msgstr ""
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
msgstr ""
@@ -21066,7 +20816,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
#: frappe/public/js/frappe/form/toolbar.js:432
-#: frappe/public/js/frappe/model/model.js:772
+#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
msgstr ""
@@ -21076,7 +20826,7 @@ msgstr ""
msgid "Rename Fieldname"
msgstr ""
-#: frappe/public/js/frappe/model/model.js:759
+#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
msgstr ""
@@ -21140,7 +20890,7 @@ msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:146
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
msgstr ""
@@ -21278,7 +21028,7 @@ msgstr ""
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1902
+#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
msgstr ""
@@ -21330,7 +21080,7 @@ msgstr ""
msgid "Report has no numeric fields, please change the Report Name"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1009
+#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
msgstr ""
@@ -21346,11 +21096,11 @@ msgstr ""
msgid "Report updated successfully"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1351
+#: frappe/public/js/frappe/views/reports/report_view.js:1357
msgid "Report was not saved (there were errors)"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1940
+#: frappe/public/js/frappe/views/reports/query_report.js:1942
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr ""
@@ -21386,7 +21136,7 @@ msgstr ""
msgid "Reports & Masters"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:925
+#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
msgstr ""
@@ -21836,7 +21586,7 @@ msgstr ""
msgid "Role and Level"
msgstr ""
-#: frappe/core/doctype/user/user.py:363
+#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
msgstr ""
@@ -21951,7 +21701,7 @@ msgstr ""
msgid "Route: Example \"/app\""
msgstr ""
-#: frappe/model/base_document.py:855 frappe/model/document.py:778
+#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
msgstr ""
@@ -21964,7 +21714,7 @@ msgstr ""
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr ""
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:982
msgid "Row #{0}:"
msgstr ""
@@ -22042,7 +21792,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:653
+#: frappe/permissions.py:662
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22086,23 +21836,6 @@ msgstr ""
msgid "Runtime in Seconds"
msgstr ""
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "S3 Backup Settings"
-msgstr ""
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
-msgid "S3 Backup complete!"
-msgstr ""
-
-#. Label of the s3_bucket_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Bucket Details"
-msgstr ""
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
@@ -22243,7 +21976,7 @@ msgstr ""
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/page/print/print.js:858
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/quick_entry.js:185
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
@@ -22253,8 +21986,8 @@ msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
-#: frappe/public/js/frappe/views/reports/query_report.js:1894
-#: frappe/public/js/frappe/views/reports/report_view.js:1720
+#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
@@ -22271,8 +22004,8 @@ msgstr ""
msgid "Save Anyway"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1382
-#: frappe/public/js/frappe/views/reports/report_view.js:1727
+#: frappe/public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
msgstr ""
@@ -22280,7 +22013,7 @@ msgstr ""
msgid "Save Customizations"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1897
+#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
msgstr ""
@@ -22446,7 +22179,7 @@ msgstr ""
msgid "Scheduler Status"
msgstr ""
-#: frappe/utils/scheduler.py:249
+#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr ""
@@ -22672,7 +22405,7 @@ msgstr ""
msgid "See all Activity"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:858
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "See all past reports."
msgstr ""
@@ -22752,7 +22485,7 @@ msgstr ""
msgid "Select Child Table"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:377
+#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
msgstr ""
@@ -23069,31 +22802,11 @@ msgstr ""
msgid "Send Email To Creator"
msgstr ""
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Dropbox Settings'
-#. Label of the send_email_for_successful_backup (Check) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Email for Successful Backup"
-msgstr ""
-
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Email for Successful backup"
-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 email (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Notification To"
-msgstr ""
-
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -23110,14 +22823,6 @@ msgstr ""
msgid "Send Notifications For Email Threads"
msgstr ""
-#. Label of the send_notifications_to (Data) field in DocType 'Dropbox
-#. Settings'
-#. Label of the notify_email (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Notifications To"
-msgstr ""
-
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
msgstr ""
@@ -23376,7 +23081,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:383 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23442,7 +23147,7 @@ msgstr ""
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:360
+#: frappe/app.py:353
msgid "Session Expired"
msgstr ""
@@ -23451,7 +23156,7 @@ msgstr ""
msgid "Session Expiry (idle timeout)"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:119
+#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
msgstr ""
@@ -23474,7 +23179,7 @@ msgstr ""
msgid "Set Banner from Image"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:201
+#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
msgstr ""
@@ -23500,7 +23205,7 @@ msgstr ""
msgid "Set Filters for {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
msgstr ""
@@ -23718,8 +23423,8 @@ msgstr ""
msgid "Setup > User Permissions"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1763
-#: frappe/public/js/frappe/views/reports/report_view.js:1698
+#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr ""
@@ -23815,6 +23520,15 @@ msgstr ""
msgid "Show \"Call to Action\" in Blog"
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"
@@ -23985,7 +23699,7 @@ msgstr ""
msgid "Show Title in Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1521
+#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
msgstr ""
@@ -24095,7 +23809,7 @@ msgstr ""
msgid "Show {0} List"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:495
+#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
msgstr ""
@@ -24130,7 +23844,7 @@ msgstr ""
msgid "Sign Up and Confirmation"
msgstr ""
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
msgstr ""
@@ -24775,7 +24489,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
-#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: frappe/public/js/frappe/views/reports/report_view.js:975
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
@@ -25074,7 +24788,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:1166
+#: frappe/public/js/frappe/form/grid.js:1170
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25171,7 +24885,7 @@ msgstr ""
msgid "Suggested Indexes"
msgstr ""
-#: frappe/core/doctype/user/user.py:720
+#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
msgstr ""
@@ -25461,11 +25175,9 @@ msgstr ""
#: frappe/geo/doctype/country/country.json
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/connected_app/connected_app.json
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.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_drive/google_drive.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
@@ -25474,7 +25186,6 @@ msgstr ""
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_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
@@ -25599,11 +25310,11 @@ msgstr ""
msgid "Table Trimmed"
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1165
+#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1565
+#: frappe/model/document.py:1564
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25622,7 +25333,7 @@ msgstr ""
msgid "Tag Link"
msgstr ""
-#: frappe/model/meta.py:57
+#: 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
@@ -25634,15 +25345,6 @@ msgstr ""
msgid "Tags"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:29
-msgid "Take Backup"
-msgstr ""
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
-msgid "Take Backup Now"
-msgstr ""
-
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
msgstr ""
@@ -25720,12 +25422,12 @@ msgstr ""
msgid "Templates"
msgstr ""
-#: frappe/core/doctype/user/user.py:1027
+#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
msgstr ""
-#: frappe/core/doctype/translation/test_translation.py:56
-#: frappe/core/doctype/translation/test_translation.py:63
+#: frappe/core/doctype/translation/test_translation.py:47
+#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
msgstr ""
@@ -25734,8 +25436,8 @@ msgstr ""
msgid "Test Job ID"
msgstr ""
-#: frappe/core/doctype/translation/test_translation.py:58
-#: frappe/core/doctype/translation/test_translation.py:66
+#: frappe/core/doctype/translation/test_translation.py:49
+#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
msgstr ""
@@ -25743,7 +25445,7 @@ msgstr ""
msgid "Test email sent to {0}"
msgstr ""
-#: frappe/core/doctype/file/test_file.py:388
+#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25824,7 +25526,7 @@ msgstr ""
msgid "The Auto Repeat for this document has been disabled."
msgstr ""
-#: frappe/public/js/frappe/form/grid.js:1188
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
msgstr ""
@@ -25992,15 +25694,15 @@ msgid "The project number obtained from Google Cloud Console under "
msgstr ""
-#: frappe/core/doctype/user/user.py:987
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
msgstr ""
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:991
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -26012,7 +25714,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:334
+#: frappe/utils/response.py:331
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26073,7 +25775,7 @@ msgstr ""
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "There are {0} with the same filters already in the queue:"
msgstr ""
@@ -26102,7 +25804,7 @@ msgstr ""
msgid "There is some problem with the file url: {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:958
+#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
msgstr ""
@@ -26189,12 +25891,12 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:750
+#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:117
-#: frappe/public/js/frappe/model/model.js:755
+#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr ""
@@ -26232,7 +25934,7 @@ msgstr ""
msgid "This document is already amended, you cannot ammend it again"
msgstr ""
-#: frappe/model/document.py:474
+#: frappe/model/document.py:473
msgid "This document is currently locked and queued for execution. Please try again after some time."
msgstr ""
@@ -26293,7 +25995,7 @@ msgstr ""
msgid "This goes above the slideshow."
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2132
+#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
msgstr ""
@@ -26357,7 +26059,7 @@ msgstr ""
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1033
+#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26365,7 +26067,7 @@ msgstr ""
msgid "This report was generated on {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:856
+#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
msgstr ""
@@ -26431,7 +26133,7 @@ msgstr ""
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
msgstr ""
-#: frappe/core/doctype/user/user.py:1240
+#: frappe/core/doctype/user/user.py:1242
msgid "Throttled"
msgstr ""
@@ -26782,7 +26484,7 @@ msgstr ""
msgid "To generate password click {0}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:857
+#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "To get the updated report, click on {0}."
msgstr ""
@@ -26807,10 +26509,6 @@ msgstr ""
msgid "To use Google Contacts, enable {0}."
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.js:8
-msgid "To use Google Drive, enable {0}."
-msgstr ""
-
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -26841,7 +26539,7 @@ msgstr ""
msgid "Today"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1564
+#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
msgstr ""
@@ -26857,7 +26555,7 @@ 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:1568
+#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
msgstr ""
@@ -26913,11 +26611,11 @@ msgstr ""
msgid "Too many changes to database in single action."
msgstr ""
-#: frappe/utils/background_jobs.py:728
+#: 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:1028
+#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr ""
@@ -26981,8 +26679,8 @@ msgstr ""
#: frappe/desk/query_report.py:533
#: frappe/public/js/frappe/views/reports/print_grid.html:45
-#: frappe/public/js/frappe/views/reports/query_report.js:1320
-#: frappe/public/js/frappe/views/reports/report_view.js:1545
+#: frappe/public/js/frappe/views/reports/query_report.js:1322
+#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
msgstr ""
@@ -27045,11 +26743,11 @@ msgstr ""
msgid "Total:"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1250
+#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1225
+#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
msgstr ""
@@ -27162,7 +26860,7 @@ msgstr ""
msgid "Translatable"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:2188
+#: frappe/public/js/frappe/views/reports/query_report.js:2183
msgid "Translate Data"
msgstr ""
@@ -27173,7 +26871,7 @@ msgstr ""
msgid "Translate Link Fields"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1650
+#: frappe/public/js/frappe/views/reports/report_view.js:1656
msgid "Translate values"
msgstr ""
@@ -27321,7 +27019,7 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/views/file/file_view.js:337
#: frappe/public/js/frappe/views/workspace/workspace.js:399
-#: frappe/public/js/frappe/widgets/widget_dialog.js:391
+#: frappe/public/js/frappe/widgets/widget_dialog.js:404
#: frappe/website/doctype/web_template/web_template.json
#: frappe/www/attribution.html:35
msgid "Type"
@@ -27401,7 +27099,7 @@ msgstr ""
#: 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:458
+#: 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"
@@ -27463,7 +27161,7 @@ msgstr ""
msgid "Unable to load camera."
msgstr ""
-#: frappe/public/js/frappe/model/model.js:268
+#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
msgstr ""
@@ -27492,7 +27190,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:383
+#: frappe/app.py:376
msgid "Uncaught Exception"
msgstr ""
@@ -27725,7 +27423,7 @@ msgstr ""
msgid "Updated Successfully"
msgstr ""
-#: frappe/public/js/frappe/desk.js:444
+#: frappe/public/js/frappe/desk.js:452
msgid "Updated To A New Version 🎉"
msgstr ""
@@ -27733,7 +27431,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:333
+#: frappe/utils/response.py:330
msgid "Updating"
msgstr ""
@@ -27807,18 +27505,6 @@ msgstr ""
msgid "Uploaded To Google Drive"
msgstr ""
-#: frappe/integrations/doctype/google_drive/google_drive.py:196
-msgid "Uploading backup to Google Drive."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:201
-msgid "Uploading successful."
-msgstr ""
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:16
-msgid "Uploading to Google Drive"
-msgstr ""
-
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
@@ -27902,11 +27588,11 @@ msgstr ""
msgid "Use if the default settings don't seem to detect your data correctly"
msgstr ""
-#: frappe/model/db_query.py:434
+#: frappe/model/db_query.py:435
msgid "Use of function {0} in field is restricted"
msgstr ""
-#: frappe/model/db_query.py:411
+#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
msgstr ""
@@ -28023,7 +27709,7 @@ msgstr ""
msgid "User Cannot Search"
msgstr ""
-#: frappe/public/js/frappe/desk.js:546
+#: frappe/public/js/frappe/desk.js:554
msgid "User Changed"
msgstr ""
@@ -28129,8 +27815,8 @@ 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:1881
-#: frappe/public/js/frappe/views/reports/report_view.js:1746
+#: frappe/public/js/frappe/views/reports/query_report.js:1883
+#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
msgstr ""
@@ -28227,7 +27913,7 @@ msgstr ""
msgid "User permission already exists"
msgstr ""
-#: frappe/www/login.py:167
+#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
msgstr ""
@@ -28235,23 +27921,23 @@ msgstr ""
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
msgstr ""
-#: frappe/core/doctype/user/user.py:536
+#: frappe/core/doctype/user/user.py:537
msgid "User {0} cannot be deleted"
msgstr ""
-#: frappe/core/doctype/user/user.py:326
+#: frappe/core/doctype/user/user.py:327
msgid "User {0} cannot be disabled"
msgstr ""
-#: frappe/core/doctype/user/user.py:602
+#: frappe/core/doctype/user/user.py:603
msgid "User {0} cannot be renamed"
msgstr ""
-#: frappe/permissions.py:138
+#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
msgstr ""
-#: frappe/permissions.py:161
+#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
msgstr ""
@@ -28264,7 +27950,7 @@ msgstr ""
msgid "User {0} has requested for data deletion"
msgstr ""
-#: frappe/core/doctype/user/user.py:1369
+#: frappe/core/doctype/user/user.py:1371
msgid "User {0} impersonated as {1}"
msgstr ""
@@ -28293,7 +27979,7 @@ msgstr ""
msgid "Username"
msgstr ""
-#: frappe/core/doctype/user/user.py:687
+#: frappe/core/doctype/user/user.py:689
msgid "Username {0} already exists"
msgstr ""
@@ -28433,15 +28119,15 @@ msgstr ""
msgid "Value To Be Set"
msgstr ""
-#: frappe/model/base_document.py:1049 frappe/model/document.py:834
+#: frappe/model/base_document.py:1054 frappe/model/document.py:833
msgid "Value cannot be changed for {0}"
msgstr ""
-#: frappe/model/document.py:780
+#: frappe/model/document.py:779
msgid "Value cannot be negative for"
msgstr ""
-#: frappe/model/document.py:784
+#: frappe/model/document.py:783
msgid "Value cannot be negative for {0}: {1}"
msgstr ""
@@ -28472,7 +28158,7 @@ msgstr ""
msgid "Value to Validate"
msgstr ""
-#: frappe/model/base_document.py:1119
+#: frappe/model/base_document.py:1124
msgid "Value too big"
msgstr ""
@@ -29073,11 +28759,6 @@ msgstr ""
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -29086,9 +28767,6 @@ msgstr ""
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:399
#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
@@ -29123,11 +28801,11 @@ msgstr ""
msgid "Welcome Workspace"
msgstr ""
-#: frappe/core/doctype/user/user.py:414
+#: frappe/core/doctype/user/user.py:415
msgid "Welcome email sent"
msgstr ""
-#: frappe/core/doctype/user/user.py:475
+#: frappe/core/doctype/user/user.py:476
msgid "Welcome to {0}"
msgstr ""
@@ -29160,7 +28838,7 @@ 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:468
+#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
msgstr ""
@@ -29359,7 +29037,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:177
+#: frappe/public/js/frappe/router.js:173
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29429,11 +29107,11 @@ msgstr ""
msgid "Workspaces"
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:753
+#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
msgstr ""
-#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
msgstr ""
@@ -29452,11 +29130,11 @@ msgstr ""
msgid "Write"
msgstr ""
-#: frappe/model/base_document.py:949
+#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:484
+#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
msgstr ""
@@ -29475,13 +29153,13 @@ msgstr ""
msgid "Y Axis"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:491
+#: frappe/public/js/frappe/views/reports/report_view.js:497
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:1221
+#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
msgstr ""
@@ -29542,7 +29220,7 @@ msgstr ""
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr ""
@@ -29582,11 +29260,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:409
+#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:398
+#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29609,7 +29287,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:604
+#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29621,7 +29299,7 @@ msgstr ""
msgid "You are not allowed to send emails related to this document"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:569
+#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
msgstr ""
@@ -29637,7 +29315,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:669
+#: frappe/__init__.py:676
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29645,7 +29323,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr ""
-#: frappe/core/doctype/installed_applications/installed_applications.py:82
+#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
msgstr ""
@@ -29809,11 +29487,11 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:368
+#: frappe/app.py:361
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:838
+#: frappe/desk/query_report.py:831
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29825,11 +29503,11 @@ msgstr ""
msgid "You don't have access to Report: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:772
+#: frappe/website/doctype/web_form/web_form.py:769
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:286 frappe/utils/response.py:290
+#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
msgstr ""
@@ -29837,7 +29515,7 @@ msgstr ""
msgid "You don't have permission to get a report on: {0}"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:175
+#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
msgstr ""
@@ -29890,23 +29568,23 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr ""
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
msgstr ""
-#: frappe/public/js/frappe/widgets/widget_dialog.js:339
+#: 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:768
+#: frappe/website/doctype/web_form/web_form.py:765
msgid "You must be logged in to use this form."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:609
+#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
msgstr ""
-#: frappe/model/document.py:357
+#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr ""
@@ -29922,11 +29600,11 @@ msgstr ""
msgid "You need to be a system user to access this page."
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:94
+#: 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:275
+#: frappe/utils/response.py:272
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29934,7 +29612,7 @@ msgstr ""
msgid "You need to be logged in to access this page"
msgstr ""
-#: frappe/website/doctype/web_form/web_form.py:164
+#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
msgstr ""
@@ -30009,7 +29687,7 @@ msgstr ""
msgid "You viewed this"
msgstr ""
-#: frappe/public/js/frappe/desk.js:543
+#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr ""
@@ -30092,7 +29770,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:354
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -30323,7 +30001,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:403 frappe/permissions.py:414
+#: frappe/permissions.py:412 frappe/permissions.py:423
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30875,7 +30553,7 @@ msgstr ""
msgid "{0} Calendar"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:564
+#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
msgstr ""
@@ -30923,7 +30601,7 @@ msgstr ""
msgid "{0} Name"
msgstr ""
-#: frappe/model/base_document.py:1149
+#: frappe/model/base_document.py:1154
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr ""
@@ -30933,7 +30611,7 @@ msgstr ""
msgid "{0} Report"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:952
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
msgstr ""
@@ -30999,7 +30677,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr ""
-#: frappe/core/doctype/system_settings/system_settings.py:149
+#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
msgstr ""
@@ -31012,7 +30690,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr ""
-#: frappe/model/document.py:547
+#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr ""
@@ -31137,7 +30815,7 @@ msgstr ""
msgid "{0} is an invalid email address in 'Recipients'"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1462
+#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
msgstr ""
@@ -31146,27 +30824,27 @@ msgstr ""
msgid "{0} is currently {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1431
+#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1451
+#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1441
+#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1456
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1446
+#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1481
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
msgstr ""
@@ -31186,7 +30864,7 @@ msgstr ""
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr ""
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:64
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
msgstr ""
@@ -31215,11 +30893,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:787
+#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31231,27 +30909,27 @@ msgstr ""
msgid "{0} is not a zip file"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1436
+#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1483
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1487
+#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
msgstr ""
-#: frappe/printing/doctype/print_format/print_format.py:165
+#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1470
+#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
msgstr ""
@@ -31262,11 +30940,11 @@ msgstr ""
msgid "{0} is required"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1486
+#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
msgstr ""
-#: frappe/public/js/frappe/views/reports/report_view.js:1465
+#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
msgstr ""
@@ -31274,12 +30952,12 @@ msgstr ""
msgid "{0} items selected"
msgstr ""
-#: frappe/core/doctype/user/user.py:1378
+#: frappe/core/doctype/user/user.py:1380
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:104
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
msgstr ""
@@ -31295,7 +30973,7 @@ msgstr ""
msgid "{0} m"
msgstr ""
-#: frappe/desk/notifications.py:397
+#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
msgstr ""
@@ -31307,35 +30985,35 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1792
+#: frappe/model/document.py:1791
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1551
+#: frappe/model/document.py:1550
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1553
+#: frappe/model/document.py:1552
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1549
+#: frappe/model/document.py:1548
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1547 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
-#: frappe/model/base_document.py:875
+#: frappe/model/base_document.py:876
msgid "{0} must be set first"
msgstr ""
-#: frappe/model/base_document.py:732
+#: frappe/model/base_document.py:729
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1555
+#: frappe/model/document.py:1554
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31410,7 +31088,7 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1785
+#: frappe/model/document.py:1784
msgid "{0} row #{1}: "
msgstr ""
@@ -31506,11 +31184,11 @@ msgstr ""
msgid "{0} {1} added to Dashboard {2}"
msgstr ""
-#: frappe/model/base_document.py:665 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr ""
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:987
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr ""
@@ -31526,7 +31204,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:260 frappe/permissions.py:558
+#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
msgstr ""
@@ -31534,7 +31212,7 @@ msgstr ""
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
msgstr ""
-#: frappe/model/base_document.py:1110
+#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
msgstr ""
@@ -31542,7 +31220,7 @@ msgstr ""
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr ""
-#: frappe/model/base_document.py:1115
+#: frappe/model/base_document.py:1120
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr ""
@@ -31643,7 +31321,7 @@ msgstr ""
msgid "{0}: {1} is set to state {2}"
msgstr ""
-#: frappe/public/js/frappe/views/reports/query_report.js:1279
+#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
msgstr ""
diff --git a/frappe/locale/zh.po b/frappe/locale/zh.po
index 5a1d59661d..b47c542771 100644
--- a/frappe/locale/zh.po
+++ b/frappe/locale/zh.po
@@ -2,14 +2,14 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-08 09:34+0000\n"
-"PO-Revision-Date: 2025-06-11 14:05\n"
+"POT-Creation-Date: 2025-06-22 09:34+0000\n"
+"PO-Revision-Date: 2025-06-22 16:40\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Chinese Simplified\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.13.1\n"
+"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"
@@ -141,7 +141,7 @@ msgstr "1天"
msgid "1 Google Calendar Event synced."
msgstr "已同步1个Google日历事件"
-#: frappe/public/js/frappe/views/reports/query_report.js:951
+#: frappe/public/js/frappe/views/reports/query_report.js:953
msgid "1 Report"
msgstr "1个报表"
@@ -149,7 +149,7 @@ msgstr "1个报表"
msgid "1 comment"
msgstr "1条评论"
-#: frappe/tests/test_utils.py:710
+#: frappe/tests/test_utils.py:711
msgid "1 day ago"
msgstr "1天前"
@@ -158,17 +158,17 @@ msgid "1 hour"
msgstr "1小时"
#: frappe/public/js/frappe/utils/pretty_date.js:52
-#: frappe/tests/test_utils.py:708
+#: frappe/tests/test_utils.py:709
msgid "1 hour ago"
msgstr "1小时前"
#: frappe/public/js/frappe/utils/pretty_date.js:48
-#: frappe/tests/test_utils.py:706
+#: frappe/tests/test_utils.py:707
msgid "1 minute ago"
msgstr "1分钟前"
#: frappe/public/js/frappe/utils/pretty_date.js:66
-#: frappe/tests/test_utils.py:714
+#: frappe/tests/test_utils.py:715
msgid "1 month ago"
msgstr "1个月前"
@@ -180,37 +180,37 @@ msgstr "第1项/共2项"
msgid "1 record will be exported"
msgstr "将导出1条记录"
-#: frappe/tests/test_utils.py:705
+#: frappe/tests/test_utils.py:706
msgid "1 second ago"
msgstr "1秒前"
#: frappe/public/js/frappe/utils/pretty_date.js:62
-#: frappe/tests/test_utils.py:712
+#: frappe/tests/test_utils.py:713
msgid "1 week ago"
msgstr "1周前"
#: frappe/public/js/frappe/utils/pretty_date.js:70
-#: frappe/tests/test_utils.py:716
+#: frappe/tests/test_utils.py:717
msgid "1 year ago"
msgstr "1年前"
-#: frappe/tests/test_utils.py:709
+#: frappe/tests/test_utils.py:710
msgid "2 hours ago"
msgstr "2小时前"
-#: frappe/tests/test_utils.py:715
+#: frappe/tests/test_utils.py:716
msgid "2 months ago"
msgstr "2个月前"
-#: frappe/tests/test_utils.py:713
+#: frappe/tests/test_utils.py:714
msgid "2 weeks ago"
msgstr "2周前"
-#: frappe/tests/test_utils.py:717
+#: frappe/tests/test_utils.py:718
msgid "2 years ago"
msgstr "2年前"
-#: frappe/tests/test_utils.py:707
+#: frappe/tests/test_utils.py:708
msgid "3 minutes ago"
msgstr "3分钟前"
@@ -226,7 +226,7 @@ msgstr "4小时"
msgid "5 Records"
msgstr "5条记录"
-#: frappe/tests/test_utils.py:711
+#: frappe/tests/test_utils.py:712
msgid "5 days ago"
msgstr "5天前"
@@ -246,7 +246,7 @@ msgstr "<"
msgid "<="
msgstr "<="
-#: frappe/public/js/frappe/widgets/widget_dialog.js:588
+#: frappe/public/js/frappe/widgets/widget_dialog.js:601
msgid "{0} is not a valid URL"
msgstr "{0} 不是有效的URL"
@@ -839,10 +839,7 @@ msgid "API"
msgstr "API"
#. Label of the api_access (Section Break) field in DocType 'User'
-#. Label of the api_access_section (Section Break) field in DocType 'S3 Backup
-#. Settings'
#: frappe/core/doctype/user/user.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "API Access"
msgstr "API访问"
@@ -954,17 +951,6 @@ msgstr "剩余约{0}秒"
msgid "Access Control"
msgstr "访问控制"
-#. Label of the access_key_id (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key ID"
-msgstr "访问密钥ID"
-
-#. Label of the secret_access_key (Password) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Access Key Secret"
-msgstr "访问密钥"
-
#. Name of a DocType
#. Label of a Link in the Users Workspace
#: frappe/core/doctype/access_log/access_log.json
@@ -1015,6 +1001,10 @@ msgstr "账户经理"
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'
@@ -1045,7 +1035,7 @@ msgstr "操作/路由"
msgid "Action Complete"
msgstr "操作完成"
-#: frappe/model/document.py:1872
+#: frappe/model/document.py:1871
msgid "Action Failed"
msgstr "操作失败"
@@ -1094,10 +1084,10 @@ msgstr "操作{0}在{2} {1}上失败。查看{3}"
#: frappe/custom/doctype/customize_form/customize_form.js:283
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/ui/page.html:57
-#: frappe/public/js/frappe/views/reports/query_report.js:192
-#: frappe/public/js/frappe/views/reports/query_report.js:205
-#: frappe/public/js/frappe/views/reports/query_report.js:215
-#: frappe/public/js/frappe/views/reports/query_report.js:845
+#: frappe/public/js/frappe/views/reports/query_report.js:190
+#: frappe/public/js/frappe/views/reports/query_report.js:203
+#: frappe/public/js/frappe/views/reports/query_report.js:213
+#: frappe/public/js/frappe/views/reports/query_report.js:840
msgid "Actions"
msgstr "操作列表"
@@ -1159,8 +1149,8 @@ msgstr "活动日志"
#: frappe/public/js/frappe/form/templates/set_sharing.html:68
#: frappe/public/js/frappe/list/bulk_operations.js:437
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441
-#: frappe/public/js/frappe/views/reports/query_report.js:267
-#: frappe/public/js/frappe/views/reports/query_report.js:295
+#: frappe/public/js/frappe/views/reports/query_report.js:265
+#: frappe/public/js/frappe/views/reports/query_report.js:293
#: frappe/public/js/frappe/widgets/widget_dialog.js:30
msgid "Add"
msgstr "添加"
@@ -1201,7 +1191,7 @@ msgstr "添加上方边框"
msgid "Add Card to Dashboard"
msgstr "添加卡片到仪表板"
-#: frappe/public/js/frappe/views/reports/query_report.js:211
+#: frappe/public/js/frappe/views/reports/query_report.js:209
msgid "Add Chart to Dashboard"
msgstr "添加图表到仪表板"
@@ -1210,10 +1200,10 @@ msgid "Add Child"
msgstr "添加子项"
#: frappe/public/js/frappe/views/kanban/kanban_board.html:4
-#: frappe/public/js/frappe/views/reports/query_report.js:1769
-#: frappe/public/js/frappe/views/reports/query_report.js:1772
-#: frappe/public/js/frappe/views/reports/report_view.js:349
-#: frappe/public/js/frappe/views/reports/report_view.js:374
+#: frappe/public/js/frappe/views/reports/query_report.js:1771
+#: frappe/public/js/frappe/views/reports/query_report.js:1774
+#: frappe/public/js/frappe/views/reports/report_view.js:355
+#: frappe/public/js/frappe/views/reports/report_view.js:380
#: frappe/public/js/print_format_builder/Field.vue:112
msgid "Add Column"
msgstr "添加列"
@@ -1237,7 +1227,7 @@ msgid "Add Custom Tags"
msgstr "添加自定义标签"
#: frappe/public/js/frappe/widgets/widget_dialog.js:188
-#: frappe/public/js/frappe/widgets/widget_dialog.js:703
+#: frappe/public/js/frappe/widgets/widget_dialog.js:716
msgid "Add Filters"
msgstr "添加过滤器"
@@ -1272,7 +1262,7 @@ msgstr "添加参与者"
msgid "Add Query Parameters"
msgstr "添加查询参数"
-#: frappe/core/doctype/user/user.py:806
+#: frappe/core/doctype/user/user.py:808
msgid "Add Roles"
msgstr "添加角色"
@@ -1417,7 +1407,7 @@ msgid "Add tab"
msgstr "添加标签页"
#: frappe/public/js/frappe/utils/dashboard_utils.js:263
-#: frappe/public/js/frappe/views/reports/query_report.js:253
+#: frappe/public/js/frappe/views/reports/query_report.js:251
msgid "Add to Dashboard"
msgstr "添加到仪表板"
@@ -1572,11 +1562,11 @@ msgstr "系统管理"
msgid "Administrator"
msgstr "系统管理员"
-#: frappe/core/doctype/user/user.py:1211
+#: frappe/core/doctype/user/user.py:1213
msgid "Administrator Logged In"
msgstr "管理员已登录"
-#: frappe/core/doctype/user/user.py:1205
+#: frappe/core/doctype/user/user.py:1207
msgid "Administrator accessed {0} on {1} via IP Address {2}."
msgstr "管理员通过IP地址{2}在{1}访问了{0}。"
@@ -1809,12 +1799,6 @@ msgstr "启用批量编辑"
msgid "Allow Consecutive Login Attempts "
msgstr "允许连续登录尝试"
-#. Label of the allow_dropbox_access (Button) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Allow Dropbox Access"
-msgstr "允许Dropbox访问"
-
#: frappe/integrations/doctype/google_calendar/google_calendar.py:79
msgid "Allow Google Calendar Access"
msgstr "允许访问Google日历"
@@ -1823,10 +1807,6 @@ msgstr "允许访问Google日历"
msgid "Allow Google Contacts Access"
msgstr "允许访问Google联系人"
-#: frappe/integrations/doctype/google_drive/google_drive.py:52
-msgid "Allow Google Drive Access"
-msgstr "允许访问Google Drive"
-
#. Label of the allow_guest (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Allow Guest"
@@ -2081,7 +2061,7 @@ msgstr "允许的嵌入域名"
msgid "Allowing DocType, DocType. Be careful!"
msgstr "允许文档类型,文档类型。请谨慎操作!"
-#: frappe/core/doctype/user/user.py:1021
+#: frappe/core/doctype/user/user.py:1023
msgid "Already Registered"
msgstr "已注册"
@@ -2089,11 +2069,11 @@ msgstr "已注册"
msgid "Already in the following Users ToDo list:{0}"
msgstr "已在以下用户待办列表中:{0}"
-#: frappe/public/js/frappe/views/reports/report_view.js:896
+#: frappe/public/js/frappe/views/reports/report_view.js:902
msgid "Also adding the dependent currency field {0}"
msgstr "同时添加依赖货币字段{0}"
-#: frappe/public/js/frappe/views/reports/report_view.js:909
+#: frappe/public/js/frappe/views/reports/report_view.js:915
msgid "Also adding the status dependency field {0}"
msgstr "同时添加状态依赖字段{0}"
@@ -2172,7 +2152,7 @@ msgstr "修订中"
msgid "Amendment Naming Override"
msgstr "修订命名覆盖"
-#: frappe/model/document.py:550
+#: frappe/model/document.py:549
msgid "Amendment Not Allowed"
msgstr "不允许修订"
@@ -2261,15 +2241,6 @@ msgstr "除系统管理员外,具有设置用户权限角色的用户可为该
msgid "App"
msgstr "应用"
-#. Label of the app_access_key (Data) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Access Key"
-msgstr "应用访问密钥"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:22
-msgid "App Access Key and/or Secret Key are not present."
-msgstr "应用访问密钥和/或密钥不存在。"
-
#. Label of the client_id (Data) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "App Client ID"
@@ -2303,16 +2274,11 @@ msgstr "应用徽标"
msgid "App Name"
msgstr "应用名称"
-#. Label of the app_secret_key (Password) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "App Secret Key"
-msgstr "应用密钥"
-
#: frappe/modules/utils.py:280
msgid "App not found for module: {0}"
msgstr "未找到模块{0}对应的应用"
-#: frappe/__init__.py:1462
+#: frappe/__init__.py:1465
msgid "App {0} is not installed"
msgstr "应用{0}未安装"
@@ -2462,7 +2428,7 @@ msgstr "归档列"
msgid "Are you sure you want to clear the assignments?"
msgstr "确定要清除分配吗?"
-#: frappe/public/js/frappe/form/grid.js:290
+#: frappe/public/js/frappe/form/grid.js:294
msgid "Are you sure you want to delete all rows?"
msgstr "确定要删除所有行吗?"
@@ -2490,7 +2456,7 @@ msgstr "确定要删除标签页吗?该标签页中的所有节及字段将移
msgid "Are you sure you want to discard the changes?"
msgstr "确定要放弃更改吗?"
-#: frappe/public/js/frappe/views/reports/query_report.js:965
+#: frappe/public/js/frappe/views/reports/query_report.js:967
msgid "Are you sure you want to generate a new report?"
msgstr "确定要生成新报告吗?"
@@ -2616,7 +2582,7 @@ msgstr "分配人"
msgid "Assigned By Full Name"
msgstr "分配人全名"
-#: frappe/model/meta.py:60
+#: 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
@@ -2886,13 +2852,11 @@ msgstr "作者"
#. Calendar'
#. Label of the authorization_code (Password) field in DocType 'Google
#. Contacts'
-#. Label of the authorization_code (Data) field in DocType 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Authorization Code"
@@ -2930,12 +2894,6 @@ msgstr "授权Google日历访问"
msgid "Authorize Google Contacts Access"
msgstr "授权Google联系人访问"
-#. Label of the authorize_google_drive_access (Button) field in DocType 'Google
-#. Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Authorize Google Drive Access"
-msgstr "授权Google云端硬盘访问"
-
#. 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"
@@ -3082,11 +3040,11 @@ msgstr "自动消息"
msgid "Automatic"
msgstr "自动"
-#: frappe/email/doctype/email_account/email_account.py:774
+#: 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:768
+#: frappe/email/doctype/email_account/email_account.py:766
msgid "Automatic Linking can be activated only if Incoming is enabled."
msgstr "仅当启用接收功能时才能激活自动链接。"
@@ -3300,66 +3258,14 @@ msgstr "后台打印(超过25个文档时需要)"
msgid "Background Workers"
msgstr "后台工作进程"
-#: frappe/integrations/doctype/google_drive/google_drive.py:170
-msgid "Backing up Data."
-msgstr "正在备份数据。"
-
-#: frappe/integrations/doctype/google_drive/google_drive.js:32
-msgid "Backing up to Google Drive."
-msgstr "正在备份到Google云端硬盘。"
-
-#. Label of a Card Break in the Integrations Workspace
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Backup"
-msgstr "备份"
-
-#. Label of the backup_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Details"
-msgstr "备份详情"
-
#: frappe/desk/page/backups/backups.js:28
msgid "Backup Encryption Key"
msgstr "备份加密密钥"
-#. Label of the backup_files (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Files"
-msgstr "备份文件"
-
-#. Label of the backup_folder_id (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder ID"
-msgstr "备份文件夹ID"
-
-#. Label of the backup_folder_name (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Backup Folder Name"
-msgstr "备份文件夹名称"
-
-#. Label of the backup_frequency (Select) field in DocType 'Dropbox Settings'
-#. Label of the frequency (Select) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Frequency"
-msgstr "备份频率"
-
-#. Label of the backup_path (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup Path"
-msgstr "备份路径"
-
#: frappe/desk/page/backups/backups.py:98
msgid "Backup job is already queued. You will receive an email with the download link"
msgstr "备份作业已排队,您将收到包含下载链接的电子邮件"
-#. Description of the 'Backup Files' (Check) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Backup public and private files along with the database."
-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'
@@ -3373,7 +3279,7 @@ msgstr "备份"
msgid "Backups (MB)"
msgstr "备份(MB)"
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:65
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68
msgid "Bad Cron Expression"
msgstr "错误的Cron表达式"
@@ -3771,15 +3677,6 @@ msgstr "不支持的浏览器"
msgid "Brute Force Security"
msgstr "暴力破解安全设置"
-#. Label of the bucket (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Bucket Name"
-msgstr "存储桶名称"
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:71
-msgid "Bucket {0} not found."
-msgstr "未找到存储桶{0}。"
-
#. 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"
@@ -3816,7 +3713,7 @@ msgstr "批量删除"
msgid "Bulk Edit"
msgstr "批量编辑"
-#: frappe/public/js/frappe/form/grid.js:1184
+#: frappe/public/js/frappe/form/grid.js:1188
msgid "Bulk Edit {0}"
msgstr "批量编辑{0}"
@@ -3891,12 +3788,6 @@ msgstr "按“命名系列”字段"
msgid "By default the title is used as meta title, adding a value here will override it."
msgstr "默认使用标题作为元标题,在此处添加值将覆盖默认设置。"
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "By default, emails are only sent for failed backups."
-msgstr "默认仅针对备份失败发送电子邮件。"
-
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
@@ -4207,7 +4098,7 @@ msgstr "无法获取值"
msgid "Cannot Remove"
msgstr "无法移除"
-#: frappe/model/base_document.py:1156
+#: frappe/model/base_document.py:1161
msgid "Cannot Update After Submit"
msgstr "提交后无法更新"
@@ -4227,11 +4118,11 @@ msgstr "提交前无法取消。请查看转换{0}"
msgid "Cannot cancel {0}."
msgstr "无法取消{0}。"
-#: frappe/model/document.py:1012
+#: frappe/model/document.py:1011
msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)"
msgstr "无法将文档状态从0(草稿)更改为2(已取消)"
-#: frappe/model/document.py:1026
+#: frappe/model/document.py:1025
msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)"
msgstr "无法将文档状态从1(已提交)更改为0(草稿)"
@@ -4314,7 +4205,7 @@ msgstr "无法编辑标准图表"
msgid "Cannot edit a standard report. Please duplicate and create a new report"
msgstr "无法编辑标准报告。请复制并创建新报告"
-#: frappe/model/document.py:1032
+#: frappe/model/document.py:1031
msgid "Cannot edit cancelled document"
msgstr "无法编辑已取消文档"
@@ -4347,11 +4238,11 @@ msgstr "无法获取文件夹内容"
msgid "Cannot have multiple printers mapped to a single print format."
msgstr "不能将多个打印机映射到单个打印格式。"
-#: frappe/public/js/frappe/form/grid.js:1128
+#: frappe/public/js/frappe/form/grid.js:1132
msgid "Cannot import table with more than 5000 rows."
msgstr "无法导入超过5000行的表格。"
-#: frappe/model/document.py:1100
+#: frappe/model/document.py:1099
msgid "Cannot link cancelled document: {0}"
msgstr "无法链接已取消文档:{0}"
@@ -4367,7 +4258,7 @@ msgstr "无法将列{0}与任何字段匹配"
msgid "Cannot move row"
msgstr "无法移动行"
-#: frappe/public/js/frappe/views/reports/report_view.js:921
+#: frappe/public/js/frappe/views/reports/report_view.js:927
msgid "Cannot remove ID field"
msgstr "无法移除ID字段"
@@ -4392,11 +4283,11 @@ msgstr "无法提交{0}。"
msgid "Cannot update {0}"
msgstr "无法更新{0}"
-#: frappe/model/db_query.py:1125
+#: frappe/model/db_query.py:1126
msgid "Cannot use sub-query in order by"
msgstr "不能在order by中使用子查询"
-#: frappe/model/db_query.py:1144
+#: frappe/model/db_query.py:1145
msgid "Cannot use {0} in order/group by"
msgstr "不能在order/group by中使用{0}"
@@ -4422,7 +4313,7 @@ msgstr "卡片"
msgid "Card Break"
msgstr "卡片分隔"
-#: frappe/public/js/frappe/views/reports/query_report.js:263
+#: frappe/public/js/frappe/views/reports/query_report.js:261
msgid "Card Label"
msgstr "卡片标签"
@@ -4565,7 +4456,7 @@ msgstr "图表配置"
#. Label of the chart_name (Link) field in DocType 'Workspace Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
-#: frappe/public/js/frappe/views/reports/query_report.js:290
+#: frappe/public/js/frappe/views/reports/query_report.js:288
#: frappe/public/js/frappe/widgets/widget_dialog.js:137
msgid "Chart Name"
msgstr "图表名称"
@@ -4585,7 +4476,7 @@ 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:499
+#: frappe/public/js/frappe/views/reports/report_view.js:505
msgid "Chart Type"
msgstr "图表类型"
@@ -4699,7 +4590,7 @@ msgstr "字段{1}的子表{0}"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "子表在其他文档类型中显示为网格"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:638
+#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "选择现有卡片或创建新卡片"
@@ -4792,10 +4683,6 @@ msgstr "点击此处"
msgid "Click here to verify"
msgstr "点击此处验证"
-#: frappe/integrations/doctype/google_drive/google_drive.js:47
-msgid "Click on Authorize Google Drive Access to authorize Google Drive Access."
-msgstr "点击授权Google云端硬盘访问进行授权。"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "点击文件进行选择。"
@@ -4822,7 +4709,6 @@ msgstr "点击下方链接验证您的请求"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:118
#: frappe/integrations/doctype/google_contacts/google_contacts.py:41
-#: frappe/integrations/doctype/google_drive/google_drive.py:53
#: frappe/website/doctype/website_settings/website_settings.py:161
msgid "Click on {0} to generate Refresh Token."
msgstr "点击{0}生成刷新令牌。"
@@ -4996,7 +4882,7 @@ msgctxt "Shrink code field."
msgid "Collapse"
msgstr "折叠"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:123
msgid "Collapse All"
msgstr "全部折叠"
@@ -5051,9 +4937,9 @@ 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:1229
-#: frappe/public/js/frappe/widgets/widget_dialog.js:533
-#: frappe/public/js/frappe/widgets/widget_dialog.js:681
+#: frappe/public/js/frappe/views/reports/query_report.js:1231
+#: 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
@@ -5194,7 +5080,7 @@ msgstr "每小时评论限制"
msgid "Comment publicity can only be updated by the original author or a System Manager."
msgstr "评论公开状态仅可由原作者或系统管理员修改。"
-#: frappe/model/meta.py:59 frappe/public/js/frappe/form/controls/comment.js:9
+#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/model/meta.js:209
#: frappe/public/js/frappe/model/model.js:135
#: frappe/website/doctype/web_form/templates/web_form.html:122
@@ -5301,7 +5187,7 @@ msgstr "完成"
msgid "Complete By"
msgstr "完成人"
-#: frappe/core/doctype/user/user.py:477
+#: frappe/core/doctype/user/user.py:478
#: frappe/templates/emails/new_user.html:10
msgid "Complete Registration"
msgstr "完成注册"
@@ -5397,7 +5283,7 @@ msgstr "条件列表"
msgid "Configuration"
msgstr "配置"
-#: frappe/public/js/frappe/views/reports/report_view.js:481
+#: frappe/public/js/frappe/views/reports/report_view.js:487
msgid "Configure Chart"
msgstr "配置图表"
@@ -5736,7 +5622,7 @@ msgstr "正确版本:"
msgid "Could not connect to outgoing email server"
msgstr "无法连接到外发邮件服务器"
-#: frappe/model/document.py:1096
+#: frappe/model/document.py:1095
msgid "Could not find {0}"
msgstr "未找到{0}"
@@ -5765,7 +5651,7 @@ msgstr "保存失败,请检查输入数据"
msgid "Count"
msgstr "计数"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:527
+#: frappe/public/js/frappe/widgets/widget_dialog.js:540
msgid "Count Customizations"
msgstr "自定义项计数"
@@ -5773,10 +5659,14 @@ msgstr "自定义项计数"
#. 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:512
+#: 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"
@@ -5827,7 +5717,7 @@ msgstr "贷方"
#: frappe/public/js/frappe/form/reminders.js:49
#: frappe/public/js/frappe/views/file/file_view.js:112
#: frappe/public/js/frappe/views/interaction.js:18
-#: frappe/public/js/frappe/views/reports/query_report.js:1261
+#: frappe/public/js/frappe/views/reports/query_report.js:1263
#: frappe/public/js/frappe/views/workspace/workspace.js:469
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
msgid "Create"
@@ -5841,13 +5731,13 @@ msgstr "创建并继续"
msgid "Create Address"
msgstr "创建地址"
-#: frappe/public/js/frappe/views/reports/query_report.js:188
-#: frappe/public/js/frappe/views/reports/query_report.js:233
+#: frappe/public/js/frappe/views/reports/query_report.js:186
+#: frappe/public/js/frappe/views/reports/query_report.js:231
msgid "Create Card"
msgstr "创建卡片"
-#: frappe/public/js/frappe/views/reports/query_report.js:286
-#: frappe/public/js/frappe/views/reports/query_report.js:1188
+#: frappe/public/js/frappe/views/reports/query_report.js:284
+#: frappe/public/js/frappe/views/reports/query_report.js:1190
msgid "Create Chart"
msgstr "创建图表"
@@ -5958,7 +5848,7 @@ msgstr "已创建"
msgid "Created At"
msgstr "创建时间"
-#: frappe/model/meta.py:56
+#: 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
@@ -5970,14 +5860,14 @@ msgid "Created Custom Field {0} in {1}"
msgstr "在{1}中创建了自定义字段{0}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241
-#: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:51
+#: 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:515
+#: frappe/public/js/frappe/desk.js:523
#: frappe/public/js/frappe/views/treeview.js:393
msgid "Creating {0}"
msgstr "正在创建{0}"
@@ -6000,7 +5890,7 @@ msgstr "Cron"
msgid "Cron Format"
msgstr "Cron格式"
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:59
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62
msgid "Cron format is required for job types with Cron frequency."
msgstr "Cron频率的作业类型需要Cron格式。"
@@ -6397,11 +6287,6 @@ msgstr "草稿"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'Dropbox
-#. Settings'
-#. Option for the 'Frequency' (Select) field in DocType 'Google Drive'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -6410,9 +6295,6 @@ msgstr "草稿"
#: 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/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:398
#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
@@ -6966,7 +6848,7 @@ msgstr "延迟"
#: frappe/public/js/frappe/form/footer/form_timeline.js:626
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/toolbar.js:461
-#: frappe/public/js/frappe/views/reports/report_view.js:1734
+#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
@@ -7009,7 +6891,7 @@ msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
msgstr "删除标签页"
-#: frappe/public/js/frappe/views/reports/query_report.js:932
+#: frappe/public/js/frappe/views/reports/query_report.js:934
msgid "Delete and Generate New"
msgstr "删除并生成新项"
@@ -7018,7 +6900,7 @@ msgctxt "Button text"
msgid "Delete column"
msgstr "删除列"
-#: frappe/public/js/frappe/form/footer/form_timeline.js:738
+#: frappe/public/js/frappe/form/footer/form_timeline.js:741
msgid "Delete comment?"
msgstr "确认删除评论?"
@@ -7104,7 +6986,7 @@ msgstr "正在删除 {0}"
msgid "Deleting {0} records..."
msgstr "正在删除 {0} 条记录..."
-#: frappe/public/js/frappe/model/model.js:741
+#: frappe/public/js/frappe/model/model.js:692
msgid "Deleting {0}..."
msgstr "正在删除 {0}..."
@@ -7150,7 +7032,7 @@ 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:310
+#: frappe/public/js/frappe/widgets/widget_dialog.js:323
#: frappe/www/attribution.html:29
msgid "Dependencies"
msgstr "依赖项"
@@ -7264,6 +7146,7 @@ msgstr "工作台主题"
#: 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
@@ -7561,14 +7444,10 @@ 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:1189
+#: frappe/public/js/frappe/form/grid.js:1193
msgid "Do not edit headers which are preset in the template"
msgstr "请勿修改模板中预设的标题"
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:69
-msgid "Do not have permission to access bucket {0}."
-msgstr "无权限访问存储桶 {0}"
-
#: frappe/core/doctype/system_settings/system_settings.js:71
msgid "Do you still want to proceed?"
msgstr "是否继续操作?"
@@ -7704,7 +7583,7 @@ 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:466
+#: frappe/public/js/frappe/widgets/widget_dialog.js:479
msgid "DocType View"
msgstr "文档类型视图"
@@ -7764,7 +7643,7 @@ msgstr "文档类型不可修改,请使用 {0}"
#. 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:669
+#: frappe/public/js/frappe/widgets/widget_dialog.js:682
msgid "Doctype"
msgstr "文档类型"
@@ -7882,7 +7761,7 @@ msgstr "文档命名规则条件"
msgid "Document Naming Settings"
msgstr "文档命名设置"
-#: frappe/model/document.py:477
+#: frappe/model/document.py:476
msgid "Document Queued"
msgstr "文档已加入队列"
@@ -7935,7 +7814,7 @@ msgstr "文档共享报表"
msgid "Document States"
msgstr "文档状态"
-#: frappe/model/meta.py:52 frappe/public/js/frappe/model/meta.js:202
+#: 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 "文档状态"
@@ -8006,11 +7885,11 @@ msgstr "文档类型"
msgid "Document Type and Function are required to create a number card"
msgstr "创建数字卡片需指定文档类型和功能"
-#: frappe/permissions.py:148
+#: frappe/permissions.py:149
msgid "Document Type is not importable"
msgstr "该文档类型不可导入"
-#: frappe/permissions.py:144
+#: frappe/permissions.py:145
msgid "Document Type is not submittable"
msgstr "该文档类型不可提交"
@@ -8039,7 +7918,7 @@ msgid "Document Types and Permissions"
msgstr "文档类型与权限"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1943
+#: frappe/model/document.py:1942
msgid "Document Unlocked"
msgstr "文档已解锁"
@@ -8230,7 +8109,7 @@ msgstr "下载链接"
msgid "Download PDF"
msgstr "下载PDF"
-#: frappe/public/js/frappe/views/reports/query_report.js:835
+#: frappe/public/js/frappe/views/reports/query_report.js:830
msgid "Download Report"
msgstr "下载报表"
@@ -8241,7 +8120,7 @@ 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:57
+#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
msgid "Download Your Data"
msgstr "下载您的数据"
@@ -8297,29 +8176,6 @@ msgstr "拖动添加状态"
msgid "Drop files here"
msgstr "拖放文件至此"
-#. Label of the dropbox_access_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Access Token"
-msgstr "Dropbox访问令牌"
-
-#. Label of the dropbox_refresh_token (Password) field in DocType 'Dropbox
-#. Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Dropbox Refresh Token"
-msgstr "Dropbox刷新令牌"
-
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "Dropbox Settings"
-msgstr "Dropbox设置"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:347
-msgid "Dropbox Setup"
-msgstr "Dropbox设置"
-
#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
@@ -8349,7 +8205,7 @@ msgstr "重复条目"
msgid "Duplicate Filter Name"
msgstr "过滤器名称重复"
-#: frappe/model/base_document.py:666 frappe/model/rename_doc.py:111
+#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
msgstr "名称重复"
@@ -8448,13 +8304,13 @@ msgstr "退出键"
#: 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:668
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:669
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/templates/address_list.html:13
#: frappe/public/js/frappe/form/templates/contact_list.html:13
#: frappe/public/js/frappe/form/toolbar.js:745
-#: frappe/public/js/frappe/views/reports/query_report.js:883
-#: frappe/public/js/frappe/views/reports/query_report.js:1722
+#: frappe/public/js/frappe/views/reports/query_report.js:878
+#: frappe/public/js/frappe/views/reports/query_report.js:1724
#: frappe/public/js/frappe/views/workspace/workspace.js:64
#: frappe/public/js/frappe/widgets/base_widget.js:64
#: frappe/public/js/frappe/widgets/chart_widget.js:299
@@ -8617,7 +8473,7 @@ msgstr "编辑您的回复"
msgid "Edit your workflow visually using the Workflow Builder."
msgstr "使用工作流构建器可视化编辑工作流"
-#: frappe/public/js/frappe/views/reports/report_view.js:672
+#: frappe/public/js/frappe/views/reports/report_view.js:678
#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
msgstr "编辑 {0}"
@@ -8718,7 +8574,7 @@ msgstr "电子邮件账户已禁用"
msgid "Email Account Name"
msgstr "电子邮件账户名称"
-#: frappe/core/doctype/user/user.py:736
+#: frappe/core/doctype/user/user.py:738
msgid "Email Account added multiple times"
msgstr "电子邮件账户重复添加"
@@ -8726,7 +8582,7 @@ msgstr "电子邮件账户重复添加"
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
msgstr "未设置电子邮件账户。请通过 设置 > 电子邮件账户 创建新账户"
-#: frappe/email/doctype/email_account/email_account.py:578
+#: frappe/email/doctype/email_account/email_account.py:576
msgid "Email Account {0} Disabled"
msgstr ""
@@ -8952,7 +8808,7 @@ msgstr "电子邮件"
msgid "Emails Pulled"
msgstr "已拉取电子邮件"
-#: frappe/email/doctype/email_account/email_account.py:936
+#: frappe/email/doctype/email_account/email_account.py:934
msgid "Emails are already being pulled from this account."
msgstr "已从该账户持续拉取电子邮件。"
@@ -8975,11 +8831,9 @@ 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 Drive'
#. 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_drive/google_drive.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
msgstr "启用"
@@ -8999,11 +8853,6 @@ msgstr "在表单自定义中为文档类型{0}启用自动重复功能"
msgid "Enable Auto Reply"
msgstr "启用自动回复"
-#. Label of the enabled (Check) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Enable Automatic Backup"
-msgstr "启用自动备份"
-
#. Label of the enable_automatic_linking (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -9163,7 +9012,6 @@ msgstr "启用应用内网站跟踪"
#. 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 'Dropbox Settings'
#. 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'
@@ -9174,7 +9022,6 @@ msgstr "启用应用内网站跟踪"
#: 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/dropbox_settings/dropbox_settings.json
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/public/js/frappe/model/indicator.js:106
@@ -9187,7 +9034,7 @@ msgstr "已启用"
msgid "Enabled Scheduler"
msgstr "已启用调度程序"
-#: frappe/email/doctype/email_account/email_account.py:1012
+#: frappe/email/doctype/email_account/email_account.py:1010
msgid "Enabled email inbox for user {0}"
msgstr "已为用户{0}启用电子邮件收件箱"
@@ -9268,11 +9115,6 @@ msgstr "结束日期不能早于开始日期!"
msgid "Ended At"
msgstr "结束于"
-#. Label of the endpoint_url (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Endpoint URL"
-msgstr "端点URL"
-
#. Label of the sb_endpoints_section (Section Break) field in DocType
#. 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
@@ -9451,7 +9293,7 @@ msgstr "通知错误"
msgid "Error in print format on line {0}: {1}"
msgstr "打印格式第{0}行错误:{1}"
-#: frappe/email/doctype/email_account/email_account.py:672
+#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "连接电子邮件账户{0}时出错"
@@ -9459,15 +9301,15 @@ msgstr "连接电子邮件账户{0}时出错"
msgid "Error while evaluating Notification {0}. Please fix your template."
msgstr "评估通知{0}时出错。请修正模板。"
-#: frappe/model/base_document.py:806
+#: frappe/model/base_document.py:803
msgid "Error: Data missing in table {0}"
msgstr "错误:表{0}中数据缺失"
-#: frappe/model/base_document.py:816
+#: frappe/model/base_document.py:813
msgid "Error: Value missing for {0}: {1}"
msgstr "错误:{0}的值缺失:{1}"
-#: frappe/model/base_document.py:810
+#: frappe/model/base_document.py:807
msgid "Error: {0} Row #{1}: Value missing for: {2}"
msgstr "错误:{0} 行#{1}:缺少值:{2}"
@@ -9616,7 +9458,7 @@ msgstr ""
msgid "Executing..."
msgstr "正在执行..."
-#: frappe/public/js/frappe/views/reports/query_report.js:2069
+#: frappe/public/js/frappe/views/reports/query_report.js:2071
msgid "Execution Time: {0} sec"
msgstr "执行时间:{0}秒"
@@ -9642,7 +9484,7 @@ msgctxt "Enlarge code field."
msgid "Expand"
msgstr "展开"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
msgstr "全部展开"
@@ -9699,8 +9541,8 @@ 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:1757
-#: frappe/public/js/frappe/views/reports/report_view.js:1621
+#: frappe/public/js/frappe/views/reports/query_report.js:1759
+#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
msgstr "导出"
@@ -9751,11 +9593,11 @@ msgstr "导出报告:{0}"
msgid "Export Type"
msgstr "导出类型"
-#: frappe/public/js/frappe/views/reports/report_view.js:1632
+#: frappe/public/js/frappe/views/reports/report_view.js:1638
msgid "Export all matching rows?"
msgstr "导出所有匹配行?"
-#: frappe/public/js/frappe/views/reports/report_view.js:1642
+#: frappe/public/js/frappe/views/reports/report_view.js:1648
msgid "Export all {0} rows?"
msgstr "导出全部{0}行?"
@@ -10063,8 +9905,8 @@ msgstr "正在获取默认全局搜索文档。"
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/public/js/frappe/list/bulk_operations.js:327
#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3
-#: frappe/public/js/frappe/views/reports/query_report.js:237
-#: frappe/public/js/frappe/views/reports/query_report.js:1816
+#: frappe/public/js/frappe/views/reports/query_report.js:235
+#: frappe/public/js/frappe/views/reports/query_report.js:1818
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Field"
@@ -10139,7 +9981,7 @@ msgstr "{0}的字段类型不可更改"
msgid "Field {0} does not exist on {1}"
msgstr "字段{0}在{1}中不存在"
-#: frappe/desk/form/meta.py:208
+#: frappe/desk/form/meta.py:184
msgid "Field {0} is referring to non-existing doctype {1}."
msgstr "字段{0}引用了不存在的文档类型{1}。"
@@ -10242,7 +10084,7 @@ msgstr "多选字段"
msgid "Fields `file_name` or `file_url` must be set for File"
msgstr "文件必须设置`file_name`或`file_url`字段"
-#: frappe/model/db_query.py:144
+#: frappe/model/db_query.py:146
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "启用as_list时字段必须为列表或元组"
@@ -10291,13 +10133,6 @@ msgstr "由于文件类型无效,文件“{0}”被跳过"
msgid "File '{0}' not found"
msgstr "文件'{0}'未找到"
-#. Label of the file_backup (Check) field in DocType 'Dropbox Settings'
-#. Label of the file_backup (Check) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "File Backup"
-msgstr "文件备份"
-
#. Label of the private_file_section (Section Break) field in DocType 'Access
#. Log'
#: frappe/core/doctype/access_log/access_log.json
@@ -10498,7 +10333,7 @@ msgstr "过滤器可通过filters访问。
发送输出为5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)."
msgstr "比较使用>5、<10或=324。范围使用5:10(表示5到10之间的值)"
@@ -10979,7 +10814,7 @@ msgstr "表单URL编码"
#. 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:552
+#: frappe/public/js/frappe/widgets/widget_dialog.js:565
msgid "Format"
msgstr "格式"
@@ -11011,7 +10846,7 @@ msgstr "分数单位"
#. 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:149
+#: frappe/www/login.py:153
msgid "Frappe"
msgstr "Frappe框架"
@@ -11028,7 +10863,7 @@ msgstr "Frappe Light主题"
msgid "Frappe Mail"
msgstr "Frappe邮件"
-#: frappe/email/doctype/email_account/email_account.py:549
+#: frappe/email/doctype/email_account/email_account.py:547
msgid "Frappe Mail OAuth Error"
msgstr "Frappe邮件OAuth错误"
@@ -11056,13 +10891,11 @@ msgstr "免费"
#. 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'
-#. Label of the frequency (Select) field in DocType 'Google Drive'
#: 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/integrations/doctype/google_drive/google_drive.json
#: frappe/public/js/frappe/utils/common.js:395
msgid "Frequency"
msgstr "频率"
@@ -11108,7 +10941,7 @@ msgstr "起始日期"
msgid "From Date Field"
msgstr "起始日期字段"
-#: frappe/public/js/frappe/views/reports/query_report.js:1777
+#: frappe/public/js/frappe/views/reports/query_report.js:1779
msgid "From Document Type"
msgstr "来源文档类型"
@@ -11159,16 +10992,16 @@ 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:247
-#: frappe/public/js/frappe/widgets/widget_dialog.js:686
+#: frappe/public/js/frappe/views/reports/query_report.js:245
+#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
msgstr "函数"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:693
+#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
msgstr "函数依据"
-#: frappe/__init__.py:670
+#: frappe/__init__.py:677
msgid "Function {0} is not whitelisted."
msgstr "函数{0}未在白名单中"
@@ -11233,7 +11066,7 @@ msgstr "常规"
msgid "Generate Keys"
msgstr "生成密钥"
-#: frappe/public/js/frappe/views/reports/query_report.js:877
+#: frappe/public/js/frappe/views/reports/query_report.js:872
msgid "Generate New Report"
msgstr "生成新报表"
@@ -11521,32 +11354,12 @@ msgstr "谷歌联系人 - 无法更新谷歌联系人{0}中的联系人,错误
msgid "Google Contacts Id"
msgstr "谷歌联系人ID"
-#. Name of a DocType
-#. Label of the google_drive_section (Section Break) field in DocType 'Google
-#. Drive'
#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/google_drive/google_drive.json
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164
msgid "Google Drive"
msgstr "谷歌云端硬盘"
-#: frappe/integrations/doctype/google_drive/google_drive.py:117
-msgid "Google Drive - Could not create folder in Google Drive - Error Code {0}"
-msgstr "谷歌云端硬盘 - 无法创建文件夹,错误代码{0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:132
-msgid "Google Drive - Could not find folder in Google Drive - Error Code {0}"
-msgstr "谷歌云端硬盘 - 找不到文件夹,错误代码{0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:193
-msgid "Google Drive - Could not locate - {0}"
-msgstr "谷歌云端硬盘 - 无法定位 - {0}"
-
-#: frappe/integrations/doctype/google_drive/google_drive.py:204
-msgid "Google Drive Backup Successful."
-msgstr "谷歌云端硬盘备份成功"
-
#. Label of the section_break_7 (Section Break) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -11876,6 +11689,10 @@ msgstr "页眉/页脚脚本可用于添加动态行为"
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'
@@ -12199,17 +12016,17 @@ msgstr "主页"
msgid "Home Settings"
msgstr "主页设置"
-#: frappe/core/doctype/file/test_file.py:330
-#: frappe/core/doctype/file/test_file.py:332
-#: frappe/core/doctype/file/test_file.py:396
+#: 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 "首页/测试文件夹1"
-#: frappe/core/doctype/file/test_file.py:385
+#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
msgstr "首页/测试文件夹1/测试文件夹3"
-#: frappe/core/doctype/file/test_file.py:341
+#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
msgstr "首页/测试文件夹2"
@@ -12254,7 +12071,7 @@ msgstr "您当前无工作区访问权限,可创建专属工作区。点击
#: frappe/core/doctype/data_import/importer.py:1177
#: frappe/core/doctype/data_import/importer.py:1242
#: frappe/core/doctype/data_import/importer.py:1245
-#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:50
+#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52
#: frappe/public/js/frappe/data_import/data_exporter.js:330
#: frappe/public/js/frappe/data_import/data_exporter.js:345
#: frappe/public/js/frappe/list/list_settings.js:337
@@ -12266,7 +12083,7 @@ msgid "ID"
msgstr "标识符"
#: frappe/desk/reportview.py:491
-#: frappe/public/js/frappe/views/reports/report_view.js:978
+#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
msgstr "标识符"
@@ -12450,12 +12267,6 @@ msgstr "启用后受限IP登录用户无需双因素验证"
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
msgstr "启用后每次登录发送通知,否则仅首次通知"
-#. Description of the 'Backup Path' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "If it's empty, it will backup to the root of the bucket."
-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"
@@ -12586,16 +12397,12 @@ msgstr "忽略超过此大小的附件"
msgid "Ignored Apps"
msgstr "忽略的应用"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:348
-msgid "Illegal Access Token. Please try again"
-msgstr "非法访问令牌,请重试"
-
#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
msgstr "{0}的文档状态非法"
-#: frappe/model/db_query.py:451 frappe/model/db_query.py:454
-#: frappe/model/db_query.py:1128
+#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
+#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
msgstr "非法SQL查询"
@@ -12944,11 +12751,11 @@ msgstr "包含应用主题"
msgid "Include Web View Link in Email"
msgstr "邮件包含网页视图链接"
-#: frappe/public/js/frappe/views/reports/query_report.js:1592
+#: frappe/public/js/frappe/views/reports/query_report.js:1594
msgid "Include filters"
msgstr "包含过滤器"
-#: frappe/public/js/frappe/views/reports/query_report.js:1584
+#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Include indentation"
msgstr "包含缩进"
@@ -13015,11 +12822,11 @@ msgstr "用户名或密码错误"
msgid "Incorrect Verification code"
msgstr "验证码错误"
-#: frappe/model/document.py:1542
+#: frappe/model/document.py:1541
msgid "Incorrect value in row {0}:"
msgstr "第{0}行值错误:"
-#: frappe/model/document.py:1544
+#: frappe/model/document.py:1543
msgid "Incorrect value:"
msgstr "错误值:"
@@ -13028,10 +12835,10 @@ msgstr "错误值:"
#. 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:53
+#: 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:999
+#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
msgstr "索引"
@@ -13106,7 +12913,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:1822
+#: frappe/public/js/frappe/views/reports/query_report.js:1824
msgid "Insert After"
msgstr "之后插入"
@@ -13122,7 +12929,7 @@ msgstr "自定义字段'{1}({2})'中指定的插入位置字段'{0}'不存在"
msgid "Insert Below"
msgstr "在下方插入"
-#: frappe/public/js/frappe/views/reports/report_view.js:384
+#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
msgstr "在{0}前插入列"
@@ -13171,11 +12978,11 @@ msgstr "操作指南"
msgid "Instructions Emailed"
msgstr "已邮件发送操作指南"
-#: frappe/permissions.py:818
+#: frappe/permissions.py:827
msgid "Insufficient Permission Level for {0}"
msgstr "{0}权限级别不足"
-#: frappe/database/query.py:376
+#: frappe/database/query.py:383
msgid "Insufficient Permission for {0}"
msgstr "{0}权限不足"
@@ -13293,7 +13100,7 @@ msgstr "无效"
#: frappe/public/js/form_builder/utils.js:221
#: frappe/public/js/frappe/form/grid_row.js:833
#: frappe/public/js/frappe/form/layout.js:811
-#: frappe/public/js/frappe/views/reports/report_view.js:710
+#: frappe/public/js/frappe/views/reports/report_view.js:716
msgid "Invalid \"depends_on\" expression"
msgstr "“depends_on”表达式无效"
@@ -13333,7 +13140,7 @@ msgstr "日期无效"
msgid "Invalid DocType"
msgstr "文档类型无效"
-#: frappe/database/query.py:102
+#: frappe/database/query.py:103
msgid "Invalid DocType: {0}"
msgstr "无效文档类型:{0}"
@@ -13378,6 +13185,7 @@ 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 "无效操作"
@@ -13402,7 +13210,7 @@ msgstr "无效覆盖"
msgid "Invalid Parameters."
msgstr "参数无效"
-#: frappe/core/doctype/user/user.py:1226 frappe/www/update-password.html:123
+#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
#: frappe/www/update-password.html:247
msgid "Invalid Password"
@@ -13431,7 +13239,7 @@ msgstr "无效转换"
#: frappe/core/doctype/file/file.py:220
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
-#: frappe/public/js/frappe/widgets/widget_dialog.js:589
+#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
msgstr "URL无效"
@@ -13452,11 +13260,11 @@ msgstr "Webhook密钥无效"
msgid "Invalid aggregate function"
msgstr "无效聚合函数"
-#: frappe/public/js/frappe/views/reports/report_view.js:393
+#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "无效列"
-#: frappe/model/document.py:1015 frappe/model/document.py:1029
+#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "文档状态无效"
@@ -13480,7 +13288,7 @@ msgstr "自动命名中的字段名'{0}'无效"
msgid "Invalid file path: {0}"
msgstr "文件路径无效:{0}"
-#: frappe/database/query.py:182
+#: frappe/database/query.py:189
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "无效过滤器:{0}"
@@ -13506,7 +13314,7 @@ msgstr "导入内容无效或损坏"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "第{}行重定向正则表达式无效:{}"
-#: frappe/app.py:324
+#: frappe/app.py:317
msgid "Invalid request arguments"
msgstr "请求参数无效"
@@ -13690,7 +13498,7 @@ 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:328
+#: frappe/public/js/frappe/widgets/widget_dialog.js:341
msgid "Is Query Report"
msgstr "是否为查询报告"
@@ -13905,6 +13713,10 @@ msgstr "作业状态"
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 "作业未运行。"
@@ -13936,7 +13748,7 @@ msgstr "看板"
#. 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:498
+#: frappe/public/js/frappe/widgets/widget_dialog.js:511
msgid "Kanban Board"
msgstr "看板面板"
@@ -14208,10 +14020,10 @@ msgstr "LDAP设置错误,验证响应为:{0}"
#: 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:300
-#: frappe/public/js/frappe/widgets/widget_dialog.js:453
-#: frappe/public/js/frappe/widgets/widget_dialog.js:630
-#: frappe/public/js/frappe/widgets/widget_dialog.js:663
+#: 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
@@ -14296,11 +14108,6 @@ msgstr "过去90天"
msgid "Last Active"
msgstr "最后活跃"
-#. Label of the last_backup_on (Datetime) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Last Backup On"
-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"
@@ -14385,12 +14192,12 @@ msgstr "最后同步于"
msgid "Last Synced On"
msgstr "最后同步时间"
-#: frappe/model/meta.py:55 frappe/public/js/frappe/model/meta.js:205
+#: 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:54 frappe/public/js/frappe/model/meta.js:204
+#: 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 "最后更新时间"
@@ -14434,7 +14241,7 @@ msgid "Leave blank to repeat always"
msgstr "留空则始终重复"
#: frappe/core/doctype/communication/mixins.py:207
-#: frappe/email/doctype/email_account/email_account.py:722
+#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
msgstr "退出此对话"
@@ -14653,7 +14460,7 @@ msgstr "在{0}点赞:{1}"
msgid "Liked"
msgstr "已点赞"
-#: frappe/model/meta.py:58 frappe/public/js/frappe/model/meta.js:208
+#: 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 "点赞人"
@@ -14668,11 +14475,6 @@ msgstr "点赞数"
msgid "Limit"
msgstr "限制"
-#. Label of the limit_no_of_backups (Check) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Limit Number of DB Backups"
-msgstr "限制数据库备份数量"
-
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14787,11 +14589,11 @@ msgstr "链接标题"
#: 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:414
+#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
msgstr "链接到"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:350
+#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
msgstr "行内链接到"
@@ -14804,7 +14606,7 @@ msgstr "行内链接到"
msgid "Link Type"
msgstr "链接类型"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:346
+#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
msgstr "行内链接类型"
@@ -14956,7 +14758,7 @@ msgstr "加载更多"
#: frappe/public/js/frappe/list/base_list.js:511
#: frappe/public/js/frappe/list/list_view.js:360
#: frappe/public/js/frappe/ui/listing.html:16
-#: frappe/public/js/frappe/views/reports/query_report.js:1085
+#: frappe/public/js/frappe/views/reports/query_report.js:1087
msgid "Loading"
msgstr "加载中"
@@ -15087,7 +14889,7 @@ msgstr "登录方式"
msgid "Login Page"
msgstr "登录页面"
-#: frappe/www/login.py:152
+#: frappe/www/login.py:156
msgid "Login To {0}"
msgstr "登录到{0}"
@@ -15354,7 +15156,7 @@ msgstr "必填依赖条件"
msgid "Mandatory Depends On (JS)"
msgstr "必填依赖条件(JS)"
-#: frappe/website/doctype/web_form/web_form.py:473
+#: frappe/website/doctype/web_form/web_form.py:470
msgid "Mandatory Information missing:"
msgstr "缺少必填信息:"
@@ -15629,7 +15431,7 @@ msgid "Menu"
msgstr "菜单"
#: frappe/public/js/frappe/form/toolbar.js:242
-#: frappe/public/js/frappe/model/model.js:754
+#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
msgstr "与现有合并"
@@ -15808,7 +15610,7 @@ msgstr "SEO元标题"
msgid "Method"
msgstr "方法"
-#: frappe/__init__.py:672
+#: frappe/__init__.py:679
msgid "Method Not Allowed"
msgstr "方法不允许"
@@ -15885,7 +15687,7 @@ msgstr "配置错误"
msgid "Miss"
msgstr "女士"
-#: frappe/desk/form/meta.py:218
+#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
msgstr "缺失文档类型"
@@ -15910,7 +15712,7 @@ msgid "Missing Value"
msgstr "缺失值"
#: frappe/public/js/frappe/ui/field_group.js:124
-#: frappe/public/js/frappe/widgets/widget_dialog.js:361
+#: 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"
@@ -16093,8 +15895,6 @@ msgstr "月"
#. 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'
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
@@ -16102,7 +15902,6 @@ msgstr "月"
#: 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/integrations/doctype/s3_backup_settings/s3_backup_settings.json
#: frappe/public/js/frappe/utils/common.js:400
#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
@@ -16274,7 +16073,7 @@ msgid "Mx"
msgstr "混合型"
#: frappe/templates/includes/web_sidebar.html:41
-#: frappe/website/doctype/web_form/web_form.py:462
+#: frappe/website/doctype/web_form/web_form.py:459
#: frappe/website/doctype/website_settings/website_settings.py:181
#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10
msgid "My Account"
@@ -16442,7 +16241,7 @@ msgstr "导航设置"
msgid "Need Workspace Manager role to edit private workspace of other users"
msgstr "需具备工作区管理员角色才能编辑其他用户的私有工作区"
-#: frappe/model/document.py:793
+#: frappe/model/document.py:792
msgid "Negative Value"
msgstr "负值"
@@ -16547,7 +16346,7 @@ 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:762
+#: frappe/public/js/frappe/model/model.js:713
msgid "New Name"
msgstr "新名称"
@@ -16581,7 +16380,7 @@ msgstr "新打印格式名称"
msgid "New Quick List"
msgstr "新建快速列表"
-#: frappe/public/js/frappe/views/reports/report_view.js:1378
+#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
msgstr "新报表名称"
@@ -16637,26 +16436,26 @@ msgstr "要设置的新值"
#: frappe/public/js/frappe/form/toolbar.js:206
#: frappe/public/js/frappe/form/toolbar.js:221
#: frappe/public/js/frappe/form/toolbar.js:558
-#: frappe/public/js/frappe/model/model.js:661
+#: frappe/public/js/frappe/model/model.js:612
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218
#: frappe/public/js/frappe/views/treeview.js:366
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
-#: frappe/website/doctype/web_form/web_form.py:379
+#: frappe/website/doctype/web_form/web_form.py:376
msgid "New {0}"
msgstr "新建{0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:394
+#: frappe/public/js/frappe/views/reports/query_report.js:392
msgid "New {0} Created"
msgstr "已创建新{0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:386
+#: frappe/public/js/frappe/views/reports/query_report.js:384
msgid "New {0} {1} added to Dashboard {2}"
msgstr "新{0}{1}已添加到仪表盘{2}"
-#: frappe/public/js/frappe/views/reports/query_report.js:391
+#: frappe/public/js/frappe/views/reports/query_report.js:389
msgid "New {0} {1} created"
msgstr "已创建新{0}{1}"
@@ -16668,7 +16467,7 @@ msgstr "新{0}:{1}"
msgid "New {} releases for the following apps are available"
msgstr "以下应用有新版本{}发布"
-#: frappe/core/doctype/user/user.py:802
+#: frappe/core/doctype/user/user.py:804
msgid "Newly created user {0} has no roles enabled."
msgstr "新创建用户{0}未启用任何角色"
@@ -16830,7 +16629,7 @@ msgstr "点击进入下一步"
#: frappe/public/js/form_builder/utils.js:341
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:26
msgid "No"
msgstr "否"
@@ -16971,7 +16770,7 @@ msgstr "无结果"
msgid "No Results found"
msgstr "未找到结果"
-#: frappe/core/doctype/user/user.py:803
+#: frappe/core/doctype/user/user.py:805
msgid "No Roles Specified"
msgstr "未指定角色"
@@ -17122,7 +16921,7 @@ msgstr "行数(最多500)"
msgid "No of Sent SMS"
msgstr "已发送短信数量"
-#: frappe/__init__.py:827 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "无{0}权限"
@@ -17131,7 +16930,7 @@ msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
msgstr "无权限'{0}' {1}"
-#: frappe/model/db_query.py:949
+#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
msgstr "无读取{0}权限"
@@ -17215,12 +17014,6 @@ msgstr "非负值"
msgid "Non-Conforming"
msgstr "不符合项"
-#. Option for the 'Backup Frequency' (Select) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "None"
-msgstr "无"
-
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
msgstr "无:工作流结束"
@@ -17235,7 +17028,7 @@ msgstr "标准化副本"
msgid "Normalized Query"
msgstr "标准化查询"
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
msgstr "不允许"
@@ -17256,7 +17049,7 @@ msgstr "非下级节点"
msgid "Not Equals"
msgstr "不等于"
-#: frappe/app.py:374 frappe/www/404.html:3
+#: frappe/app.py:367 frappe/www/404.html:3
msgid "Not Found"
msgstr "未找到"
@@ -17282,9 +17075,9 @@ msgstr "未关联到任何记录"
msgid "Not Nullable"
msgstr "不可为空"
-#: frappe/__init__.py:754 frappe/app.py:367 frappe/desk/calendar.py:26
+#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
-#: frappe/website/doctype/web_form/web_form.py:711
+#: frappe/website/doctype/web_form/web_form.py:708
#: 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
@@ -17305,7 +17098,7 @@ msgstr "未发布"
#: frappe/public/js/frappe/form/toolbar.js:813
#: frappe/public/js/frappe/model/indicator.js:28
#: frappe/public/js/frappe/views/kanban/kanban_view.js:169
-#: frappe/public/js/frappe/views/reports/report_view.js:197
+#: frappe/public/js/frappe/views/reports/report_view.js:203
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
@@ -17336,7 +17129,7 @@ msgstr "未设置"
msgid "Not a valid Comma Separated Value (CSV File)"
msgstr "无效的逗号分隔值(CSV文件)"
-#: frappe/core/doctype/user/user.py:264
+#: frappe/core/doctype/user/user.py:265
msgid "Not a valid User Image."
msgstr "无效的用户图像。"
@@ -17352,7 +17145,7 @@ msgstr "无效用户"
msgid "Not active"
msgstr "未激活"
-#: frappe/permissions.py:360
+#: frappe/permissions.py:370
msgid "Not allowed for {0}: {1}"
msgstr "{0}不允许:{1}"
@@ -17372,7 +17165,7 @@ msgstr "不允许打印已取消文档"
msgid "Not allowed to print draft documents"
msgstr "不允许打印草稿文档"
-#: frappe/permissions.py:212
+#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
msgstr "未通过控制器权限检查"
@@ -17388,12 +17181,12 @@ msgstr "未启用开发者模式"
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
msgstr "未启用开发者模式!请在site_config.json中设置或创建“自定义”文档类型。"
-#: frappe/core/doctype/system_settings/system_settings.py:214
+#: frappe/core/doctype/system_settings/system_settings.py:215
#: frappe/public/js/frappe/request.js:159
#: frappe/public/js/frappe/request.js:170
#: frappe/public/js/frappe/request.js:175
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67
-#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:724
+#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
#: frappe/website/js/website.js:97
msgid "Not permitted"
msgstr "未经许可"
@@ -17419,15 +17212,6 @@ msgstr "备注查看者"
msgid "Note:"
msgstr "注:"
-#. Description of the 'Send Email for Successful Backup' (Check) field in
-#. DocType 'Dropbox Settings'
-#. Description of the 'Send Email for Successful backup' (Check) field in
-#. DocType 'Google Drive'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Note: By default emails for failed backups are sent."
-msgstr "注:默认发送备份失败通知邮件。"
-
#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
msgstr "注:更改页面名称将导致旧URL失效。"
@@ -17487,13 +17271,10 @@ msgstr "无更新内容"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
#. Name of a DocType
-#. Label of the notification_section (Section Break) field in DocType 'S3
-#. Backup Settings'
#: 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
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
msgid "Notification"
msgstr "通知"
@@ -17595,7 +17376,7 @@ msgstr "数值"
#. Name of a DocType
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/widgets/widget_dialog.js:615
+#: frappe/public/js/frappe/widgets/widget_dialog.js:628
msgid "Number Card"
msgstr "数字卡片"
@@ -17613,7 +17394,7 @@ 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:645
+#: frappe/public/js/frappe/widgets/widget_dialog.js:658
msgid "Number Cards"
msgstr "数字卡片集"
@@ -17631,15 +17412,6 @@ msgstr "数字格式"
msgid "Number of Backups"
msgstr "备份数量"
-#. Label of the no_of_backups (Int) field in DocType 'Dropbox Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-msgid "Number of DB Backups"
-msgstr "数据库备份数量"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:54
-msgid "Number of DB backups cannot be less than 1"
-msgstr "数据库备份数量不能少于1"
-
#. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Number of Groups"
@@ -17655,7 +17427,7 @@ msgstr "查询次数"
msgid "Number of attachment fields are more than {}, limit updated to {}."
msgstr "附件字段数超过{},限制已更新为{}。"
-#: frappe/core/doctype/system_settings/system_settings.py:169
+#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
msgstr "备份数量必须大于零。"
@@ -17884,7 +17656,7 @@ msgstr "于{0},{1}写道:"
#. 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:322
+#: frappe/public/js/frappe/widgets/widget_dialog.js:335
msgid "Onboard"
msgstr "入职"
@@ -17980,19 +17752,13 @@ msgstr "仅工作区管理员可编辑公共工作区"
msgid "Only allowed to export customizations in developer mode"
msgstr "仅开发者模式下允许导出自定义项"
-#. Description of the 'Endpoint URL' (Data) field in DocType 'S3 Backup
-#. Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Only change this if you want to use other S3 compatible object storage backends."
-msgstr "如需使用其他S3兼容对象存储后端,请修改此设置。"
-
-#: frappe/model/document.py:1232
+#: frappe/model/document.py:1231
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:315
+#: frappe/public/js/frappe/widgets/widget_dialog.js:328
msgid "Only for"
msgstr "仅适用于"
@@ -18241,7 +18007,7 @@ msgstr "设置默认值前必须先设置{0}的选项。"
msgid "Options is required for field {0} of type {1}"
msgstr "{1}类型字段{0}必须设置选项"
-#: frappe/model/base_document.py:870
+#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
msgstr "未设置链接字段{0}的选项"
@@ -18353,7 +18119,7 @@ msgstr "PATCH方法"
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
-#: frappe/public/js/frappe/views/reports/query_report.js:1742
+#: frappe/public/js/frappe/views/reports/query_report.js:1744
msgid "PDF"
msgstr "PDF"
@@ -18652,7 +18418,7 @@ msgstr "父项是数据将被添加到的文档名称"
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr "禁止父子层级互相嵌套的分组方式。"
-#: frappe/permissions.py:798
+#: frappe/permissions.py:807
msgid "Parentfield not specified in {0}: {1}"
msgstr "{0}中未指定父字段:{1}"
@@ -18712,11 +18478,11 @@ msgstr "被动"
msgid "Password"
msgstr "密码"
-#: frappe/core/doctype/user/user.py:1079
+#: frappe/core/doctype/user/user.py:1081
msgid "Password Email Sent"
msgstr "密码邮件已发送"
-#: frappe/core/doctype/user/user.py:457
+#: frappe/core/doctype/user/user.py:458
msgid "Password Reset"
msgstr "密码重置"
@@ -18750,7 +18516,7 @@ msgstr "邮箱账户缺少密码"
msgid "Password not found for {0} {1} {2}"
msgstr "未找到{0} {1} {2}的密码"
-#: frappe/core/doctype/user/user.py:1078
+#: frappe/core/doctype/user/user.py:1080
msgid "Password reset instructions have been sent to {}'s email"
msgstr "密码重置说明已发送至{}的邮箱"
@@ -18762,7 +18528,7 @@ msgstr "密码已设置"
msgid "Password size exceeded the maximum allowed size"
msgstr "密码长度超过允许最大值"
-#: frappe/core/doctype/user/user.py:869
+#: frappe/core/doctype/user/user.py:871
msgid "Password size exceeded the maximum allowed size."
msgstr "密码长度超过允许最大值"
@@ -18919,7 +18685,7 @@ msgstr "永久丢弃{0}?"
msgid "Permanently Submit {0}?"
msgstr "永久提交{0}?"
-#: frappe/public/js/frappe/model/model.js:733
+#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
msgstr "永久删除{0}?"
@@ -19080,8 +18846,8 @@ msgid "Phone Number {0} set in field {1} is not valid."
msgstr "字段{1}中设置的电话号码{0}无效"
#: frappe/public/js/frappe/form/print_utils.js:40
-#: frappe/public/js/frappe/views/reports/report_view.js:1573
-#: frappe/public/js/frappe/views/reports/report_view.js:1576
+#: frappe/public/js/frappe/views/reports/report_view.js:1579
+#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
msgstr "选择列"
@@ -19121,7 +18887,7 @@ msgstr "纯文本"
msgid "Plant"
msgstr "工厂"
-#: frappe/email/doctype/email_account/email_account.py:546
+#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
msgstr "请为邮箱账户{0}授权OAuth"
@@ -19137,7 +18903,7 @@ msgstr "请复制此网站主题进行自定义"
msgid "Please Install the ldap3 library via pip to use ldap functionality."
msgstr "请通过pip安装ldap3库以使用LDAP功能"
-#: frappe/public/js/frappe/views/reports/query_report.js:309
+#: frappe/public/js/frappe/views/reports/query_report.js:307
msgid "Please Set Chart"
msgstr "请设置图表"
@@ -19153,7 +18919,7 @@ msgstr "请添加邮件主题"
msgid "Please add a valid comment."
msgstr "请添加有效评论"
-#: frappe/core/doctype/user/user.py:1061
+#: frappe/core/doctype/user/user.py:1063
msgid "Please ask your administrator to verify your sign-up"
msgstr "请让管理员验证您的注册"
@@ -19181,11 +18947,11 @@ msgstr "请检查OpenID配置URL"
msgid "Please check the filter values set for Dashboard Chart: {}"
msgstr "请检查仪表板图表设置的过滤值:{}"
-#: frappe/model/base_document.py:946
+#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
msgstr "请检查为字段{0}设置的“提取自”的值"
-#: frappe/core/doctype/user/user.py:1059
+#: frappe/core/doctype/user/user.py:1061
msgid "Please check your email for verification"
msgstr "请检查邮箱进行验证"
@@ -19213,10 +18979,6 @@ msgstr "请点击以下链接并按页面指示操作。{0}"
msgid "Please click on the following link to set your new password"
msgstr "请点击以下链接设置新密码"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:343
-msgid "Please close this window"
-msgstr "请关闭此窗口"
-
#: frappe/www/confirm_workflow_action.html:4
msgid "Please confirm your action to {0} this document."
msgstr "请确认要对此文档执行{0}操作"
@@ -19233,7 +18995,7 @@ msgstr "请先创建卡片"
msgid "Please create chart first"
msgstr "请先创建图表"
-#: frappe/desk/form/meta.py:214
+#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
msgstr "请从{0}删除字段或添加所需文档类型"
@@ -19245,7 +19007,7 @@ msgstr "请勿修改模板标题"
msgid "Please duplicate this to make changes"
msgstr "请复制此项进行修改"
-#: frappe/core/doctype/system_settings/system_settings.py:162
+#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
msgstr "禁用用户名/密码登录前,请至少启用一个社交登录密钥/LDAP/邮件链接登录"
@@ -19263,7 +19025,7 @@ msgstr "请启用弹窗"
msgid "Please enable pop-ups in your browser"
msgstr "请在浏览器中启用弹窗"
-#: frappe/integrations/google_oauth.py:53
+#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
msgstr "请先启用{}再继续"
@@ -19340,7 +19102,7 @@ msgstr "请登录后发表评论"
msgid "Please make sure the Reference Communication Docs are not circularly linked."
msgstr "请确保参考通信文档没有循环链接"
-#: frappe/model/document.py:987
+#: frappe/model/document.py:986
msgid "Please refresh to get the latest document."
msgstr "请刷新获取最新文档"
@@ -19364,7 +19126,7 @@ msgstr "分配前请先保存文档"
msgid "Please save the document before removing assignment"
msgstr "移除分配前请先保存文档"
-#: frappe/public/js/frappe/views/reports/report_view.js:1703
+#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
msgstr "请先保存报表"
@@ -19380,11 +19142,11 @@ msgstr "请先选择文档类型"
msgid "Please select Entity Type first"
msgstr "请先选择实体类型"
-#: frappe/core/doctype/system_settings/system_settings.py:112
+#: frappe/core/doctype/system_settings/system_settings.py:113
msgid "Please select Minimum Password Score"
msgstr "请选择最低密码强度"
-#: frappe/public/js/frappe/views/reports/query_report.js:1181
+#: frappe/public/js/frappe/views/reports/query_report.js:1183
msgid "Please select X and Y fields"
msgstr "请选择X和Y字段"
@@ -19412,7 +19174,7 @@ msgstr "请选择有效日期过滤器"
msgid "Please select applicable Doctypes"
msgstr "请选择适用文档类型"
-#: frappe/model/db_query.py:1140
+#: frappe/model/db_query.py:1141
msgid "Please select atleast 1 column from {0} to sort/group"
msgstr "请从{0}选择至少1列进行排序/分组"
@@ -19434,10 +19196,6 @@ msgstr "请选择使用的LDAP目录"
msgid "Please select {0}"
msgstr "请选择{0}"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:305
-msgid "Please set Dropbox access keys in site config or doctype"
-msgstr "请在站点配置或文档类型中设置Dropbox访问密钥"
-
#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
msgstr "请设置邮箱地址"
@@ -19446,7 +19204,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:1404
+#: frappe/public/js/frappe/views/reports/query_report.js:1406
msgid "Please set filters"
msgstr "请设置过滤器"
@@ -19466,7 +19224,7 @@ msgstr "请先将仪表板中的以下文档设为标准文档"
msgid "Please set the series to be used."
msgstr "请设置要使用的序列"
-#: frappe/core/doctype/system_settings/system_settings.py:125
+#: frappe/core/doctype/system_settings/system_settings.py:126
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
msgstr "设为认证方式前,请通过短信设置配置短信功能"
@@ -19474,19 +19232,19 @@ msgstr "设为认证方式前,请通过短信设置配置短信功能"
msgid "Please setup a message first"
msgstr "请先设置消息"
-#: frappe/core/doctype/user/user.py:422
+#: frappe/core/doctype/user/user.py:423
msgid "Please setup default outgoing Email Account from Settings > Email Account"
msgstr "请通过设置 > 邮箱账户配置默认发件账户"
-#: frappe/email/doctype/email_account/email_account.py:434
+#: 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:823
+#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
msgstr "请具体说明"
-#: frappe/permissions.py:774
+#: frappe/permissions.py:783
msgid "Please specify a valid parent DocType for {0}"
msgstr "请为{0}指定有效的父文档类型"
@@ -19515,7 +19273,7 @@ msgstr "请指定需要检查的数值字段"
msgid "Please try again"
msgstr "请重试"
-#: frappe/integrations/google_oauth.py:56
+#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
msgstr "继续前请更新{}"
@@ -19828,8 +19586,8 @@ msgstr "文档类型{0}的主键存在值,不可修改"
#: frappe/public/js/frappe/form/toolbar.js:357
#: frappe/public/js/frappe/form/toolbar.js:369
#: frappe/public/js/frappe/list/bulk_operations.js:95
-#: frappe/public/js/frappe/views/reports/query_report.js:1728
-#: frappe/public/js/frappe/views/reports/report_view.js:1531
+#: frappe/public/js/frappe/views/reports/query_report.js:1730
+#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
msgstr "打印"
@@ -20072,7 +19830,7 @@ msgstr "专业建议:添加Reference: {{ reference_doctype }} {{ referen
msgid "Proceed"
msgstr "继续"
-#: frappe/public/js/frappe/views/reports/query_report.js:928
+#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
msgstr "仍然继续"
@@ -20393,7 +20151,7 @@ msgstr "查询必须为SELECT或只读WITH类型"
msgid "Queue"
msgstr "队列"
-#: frappe/utils/background_jobs.py:729
+#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
msgstr "队列过载"
@@ -20414,7 +20172,7 @@ msgstr "队列类型"
msgid "Queue in Background (BETA)"
msgstr "后台队列处理(测试版)"
-#: frappe/utils/background_jobs.py:554
+#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
msgstr "队列应为{0}之一"
@@ -20447,12 +20205,6 @@ msgstr "排队人"
msgid "Queued for Submission. You can track the progress over {0}."
msgstr "已加入提交队列,可通过{0}跟踪进度"
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.py:65
-#: frappe/integrations/doctype/google_drive/google_drive.py:153
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py:86
-msgid "Queued for backup. It may take a few minutes to an hour."
-msgstr "已加入备份队列,预计需要数分钟至一小时"
-
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
msgstr "已加入备份队列,下载链接将通过邮件发送"
@@ -20588,7 +20340,7 @@ msgstr "原始打印设置"
msgid "Re-Run in Console"
msgstr "在控制台重新运行"
-#: frappe/email/doctype/email_account/email_account.py:728
+#: frappe/email/doctype/email_account/email_account.py:726
msgid "Re:"
msgstr "回复:"
@@ -20690,7 +20442,7 @@ msgstr "实时通信(SocketIO)"
msgid "Reason"
msgstr "原因"
-#: frappe/public/js/frappe/views/reports/query_report.js:889
+#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
msgstr "重建"
@@ -21055,11 +20807,11 @@ msgid "Referrer"
msgstr "来源页"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
-#: frappe/public/js/frappe/desk.js:548
+#: frappe/public/js/frappe/desk.js:556
#: 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:1717
+#: frappe/public/js/frappe/views/reports/query_report.js:1719
#: frappe/public/js/frappe/views/treeview.js:496
#: frappe/public/js/frappe/widgets/chart_widget.js:291
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
@@ -21078,12 +20830,10 @@ msgstr "刷新Google表格"
#. 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 'Google Drive'
#. 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/google_drive/google_drive.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
@@ -21100,7 +20850,7 @@ msgstr "正在刷新"
msgid "Refreshing..."
msgstr "正在刷新..."
-#: frappe/core/doctype/user/user.py:1023
+#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
msgstr "已注册但已禁用"
@@ -21263,7 +21013,7 @@ msgstr "已移除"
#: frappe/public/js/frappe/form/toolbar.js:254
#: frappe/public/js/frappe/form/toolbar.js:258
#: frappe/public/js/frappe/form/toolbar.js:432
-#: frappe/public/js/frappe/model/model.js:772
+#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
msgstr "重命名"
@@ -21273,7 +21023,7 @@ msgstr "重命名"
msgid "Rename Fieldname"
msgstr "重命名字段名"
-#: frappe/public/js/frappe/model/model.js:759
+#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
msgstr "重命名{0}"
@@ -21337,7 +21087,7 @@ msgstr "像“AAA”重复很容易被猜到"
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr "重复像“ABCABCABC”只比“ABC”较难猜测一点"
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:146
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
msgstr "重复{0}"
@@ -21475,7 +21225,7 @@ msgstr "报表管理员"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
-#: frappe/public/js/frappe/views/reports/query_report.js:1902
+#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
msgstr "报表名称"
@@ -21527,7 +21277,7 @@ msgstr "报表无数据,请调整过滤器或更换报表名称"
msgid "Report has no numeric fields, please change the Report Name"
msgstr "报表无数字字段,请更换报表名称"
-#: frappe/public/js/frappe/views/reports/query_report.js:1009
+#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
msgstr "报表已初始化,点击查看状态"
@@ -21543,11 +21293,11 @@ msgstr "报表超时"
msgid "Report updated successfully"
msgstr "报表更新成功"
-#: frappe/public/js/frappe/views/reports/report_view.js:1351
+#: frappe/public/js/frappe/views/reports/report_view.js:1357
msgid "Report was not saved (there were errors)"
msgstr "报表未保存(存在错误)"
-#: frappe/public/js/frappe/views/reports/query_report.js:1940
+#: frappe/public/js/frappe/views/reports/query_report.js:1942
msgid "Report with more than 10 columns looks better in Landscape mode."
msgstr "超过10列的报表更适合横向模式"
@@ -21583,7 +21333,7 @@ msgstr "报表"
msgid "Reports & Masters"
msgstr "报表与主数据"
-#: frappe/public/js/frappe/views/reports/query_report.js:925
+#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
msgstr "报表已加入队列"
@@ -22033,7 +21783,7 @@ msgstr "角色复制"
msgid "Role and Level"
msgstr "角色与层级"
-#: frappe/core/doctype/user/user.py:363
+#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
msgstr "已根据用户类型{0}设置角色"
@@ -22148,7 +21898,7 @@ msgstr "路由重定向"
msgid "Route: Example \"/app\""
msgstr "路线:例如“/app”"
-#: frappe/model/base_document.py:855 frappe/model/document.py:778
+#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
msgstr "行"
@@ -22161,7 +21911,7 @@ msgstr "行号"
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
msgstr "行号{0}:非管理员用户无法为自定义文档类型设置角色{1}"
-#: frappe/model/base_document.py:977
+#: frappe/model/base_document.py:982
msgid "Row #{0}:"
msgstr "行号{0}:"
@@ -22239,7 +21989,7 @@ msgstr "规则"
msgid "Rule Conditions"
msgstr "规则条件"
-#: frappe/permissions.py:653
+#: frappe/permissions.py:662
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "该文档类型、角色、权限层级和所有者条件的组合规则已存在。"
@@ -22283,23 +22033,6 @@ msgstr "运行时间(分钟)"
msgid "Runtime in Seconds"
msgstr "运行时间(秒)"
-#. Name of a DocType
-#. Label of a Link in the Integrations Workspace
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-#: frappe/integrations/workspace/integrations/integrations.json
-msgid "S3 Backup Settings"
-msgstr "S3备份设置"
-
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:18
-msgid "S3 Backup complete!"
-msgstr "S3备份完成!"
-
-#. Label of the s3_bucket_details_section (Section Break) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "S3 Bucket Details"
-msgstr "S3存储桶详情"
-
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Option for the 'Two Factor Authentication method' (Select) field in DocType
#. 'System Settings'
@@ -22440,7 +22173,7 @@ msgstr "周六"
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/page/print/print.js:858
#: frappe/printing/page/print_format_builder/print_format_builder.js:160
-#: frappe/public/js/frappe/form/footer/form_timeline.js:676
+#: frappe/public/js/frappe/form/footer/form_timeline.js:677
#: frappe/public/js/frappe/form/quick_entry.js:185
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
@@ -22450,8 +22183,8 @@ msgstr "周六"
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
-#: frappe/public/js/frappe/views/reports/query_report.js:1894
-#: frappe/public/js/frappe/views/reports/report_view.js:1720
+#: frappe/public/js/frappe/views/reports/query_report.js:1896
+#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
#: frappe/public/js/frappe/widgets/base_widget.js:142
#: frappe/public/js/frappe/widgets/quick_list_widget.js:120
@@ -22468,8 +22201,8 @@ msgstr "保存API密钥:{0}"
msgid "Save Anyway"
msgstr "仍然保存"
-#: frappe/public/js/frappe/views/reports/report_view.js:1382
-#: frappe/public/js/frappe/views/reports/report_view.js:1727
+#: frappe/public/js/frappe/views/reports/report_view.js:1388
+#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
msgstr "另存为"
@@ -22477,7 +22210,7 @@ msgstr "另存为"
msgid "Save Customizations"
msgstr "保存自定义"
-#: frappe/public/js/frappe/views/reports/query_report.js:1897
+#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
msgstr "保存报告"
@@ -22643,7 +22376,7 @@ msgstr "调度器未激活"
msgid "Scheduler Status"
msgstr "调度器状态"
-#: frappe/utils/scheduler.py:249
+#: frappe/utils/scheduler.py:247
msgid "Scheduler can not be re-enabled when maintenance mode is active."
msgstr "维护模式激活时无法重新启用调度器。"
@@ -22869,7 +22602,7 @@ msgstr "安全设置"
msgid "See all Activity"
msgstr "查看所有活动"
-#: frappe/public/js/frappe/views/reports/query_report.js:858
+#: frappe/public/js/frappe/views/reports/query_report.js:853
msgid "See all past reports."
msgstr "查看所有历史报告。"
@@ -22949,7 +22682,7 @@ msgstr "选择附件"
msgid "Select Child Table"
msgstr "选择子表"
-#: frappe/public/js/frappe/views/reports/report_view.js:377
+#: frappe/public/js/frappe/views/reports/report_view.js:383
msgid "Select Column"
msgstr "选择列"
@@ -23266,31 +22999,11 @@ msgstr "以PDF格式发送打印附件(推荐)"
msgid "Send Email To Creator"
msgstr "发送邮件给创建者"
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Dropbox Settings'
-#. Label of the send_email_for_successful_backup (Check) field in DocType 'S3
-#. Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Email for Successful Backup"
-msgstr "备份成功时发送邮件"
-
-#. Label of the send_email_for_successful_backup (Check) field in DocType
-#. 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Email for Successful backup"
-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 email (Data) field in DocType 'Google Drive'
-#: frappe/integrations/doctype/google_drive/google_drive.json
-msgid "Send Notification To"
-msgstr "发送通知给"
-
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -23307,14 +23020,6 @@ msgstr "发送我关注的文档通知"
msgid "Send Notifications For Email Threads"
msgstr "发送邮件线程通知"
-#. Label of the send_notifications_to (Data) field in DocType 'Dropbox
-#. Settings'
-#. Label of the notify_email (Data) field in DocType 'S3 Backup Settings'
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.json
-msgid "Send Notifications To"
-msgstr "发送通知给"
-
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
msgstr "立即发送"
@@ -23573,7 +23278,7 @@ msgstr "序列{0}已在{1}中使用"
msgid "Server Action"
msgstr "服务器操作"
-#: frappe/app.py:383 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "服务器错误"
@@ -23639,7 +23344,7 @@ msgstr "会话默认值"
msgid "Session Defaults Saved"
msgstr "会话默认值已保存"
-#: frappe/app.py:360
+#: frappe/app.py:353
msgid "Session Expired"
msgstr "会话已过期"
@@ -23648,7 +23353,7 @@ msgstr "会话已过期"
msgid "Session Expiry (idle timeout)"
msgstr "会话过期时间(闲置超时)"
-#: frappe/core/doctype/system_settings/system_settings.py:119
+#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
msgstr "会话过期时间格式必须为{0}"
@@ -23671,7 +23376,7 @@ msgstr "设置"
msgid "Set Banner from Image"
msgstr "从图像设置横幅"
-#: frappe/public/js/frappe/views/reports/query_report.js:201
+#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
msgstr "设置图表"
@@ -23697,7 +23402,7 @@ msgstr "设置过滤器"
msgid "Set Filters for {0}"
msgstr "为{0}设置过滤器"
-#: frappe/public/js/frappe/views/reports/query_report.js:2050
+#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
msgstr "设置层级"
@@ -23939,8 +23644,8 @@ msgstr "设置 > 用户"
msgid "Setup > User Permissions"
msgstr "设置 > 用户权限"
-#: frappe/public/js/frappe/views/reports/query_report.js:1763
-#: frappe/public/js/frappe/views/reports/report_view.js:1698
+#: frappe/public/js/frappe/views/reports/query_report.js:1765
+#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
msgstr "设置自动邮件"
@@ -24036,6 +23741,15 @@ msgstr "显示"
msgid "Show \"Call to Action\" in Blog"
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"
@@ -24206,7 +23920,7 @@ msgstr "显示标题"
msgid "Show Title in Link Fields"
msgstr "在链接字段显示标题"
-#: frappe/public/js/frappe/views/reports/report_view.js:1521
+#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
msgstr "显示总计"
@@ -24316,7 +24030,7 @@ msgstr "在浏览器窗口中将标题显示为“前缀 - 标题”"
msgid "Show {0} List"
msgstr "显示{0}列表"
-#: frappe/public/js/frappe/views/reports/report_view.js:495
+#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
msgstr "仅显示报表中的数值字段"
@@ -24351,7 +24065,7 @@ msgstr "侧边栏与评论"
msgid "Sign Up and Confirmation"
msgstr "注册与确认"
-#: frappe/core/doctype/user/user.py:1016
+#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
msgstr "注册功能已禁用"
@@ -24996,7 +24710,7 @@ msgstr "统计时间间隔"
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
-#: frappe/public/js/frappe/views/reports/report_view.js:969
+#: frappe/public/js/frappe/views/reports/report_view.js:975
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
@@ -25295,7 +25009,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:1166
+#: frappe/public/js/frappe/form/grid.js:1170
#: frappe/public/js/frappe/views/translation_manager.js:21
#: frappe/templates/includes/login/login.js:230
#: frappe/templates/includes/login/login.js:236
@@ -25392,7 +25106,7 @@ msgstr "建议优化"
msgid "Suggested Indexes"
msgstr "建议索引"
-#: frappe/core/doctype/user/user.py:720
+#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
msgstr "建议用户名:{0}"
@@ -25682,11 +25396,9 @@ msgstr "系统日志"
#: frappe/geo/doctype/country/country.json
#: frappe/geo/doctype/currency/currency.json
#: frappe/integrations/doctype/connected_app/connected_app.json
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.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_drive/google_drive.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
@@ -25695,7 +25407,6 @@ msgstr "系统日志"
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_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
@@ -25820,11 +25531,11 @@ msgstr "表格多选"
msgid "Table Trimmed"
msgstr "表格已截断"
-#: frappe/public/js/frappe/form/grid.js:1165
+#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
msgstr "表格已更新"
-#: frappe/model/document.py:1565
+#: frappe/model/document.py:1564
msgid "Table {0} cannot be empty"
msgstr "表{0}不能为空"
@@ -25843,7 +25554,7 @@ msgstr "标签"
msgid "Tag Link"
msgstr "标签链接"
-#: frappe/model/meta.py:57
+#: 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
@@ -25855,15 +25566,6 @@ msgstr "标签链接"
msgid "Tags"
msgstr "标签集"
-#: frappe/integrations/doctype/google_drive/google_drive.js:29
-msgid "Take Backup"
-msgstr "执行备份"
-
-#: frappe/integrations/doctype/dropbox_settings/dropbox_settings.js:39
-#: frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.js:12
-msgid "Take Backup Now"
-msgstr "立即备份"
-
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
msgstr "拍照"
@@ -25941,12 +25643,12 @@ msgstr "模板警告"
msgid "Templates"
msgstr "模板集"
-#: frappe/core/doctype/user/user.py:1027
+#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
msgstr "已临时禁用"
-#: frappe/core/doctype/translation/test_translation.py:56
-#: frappe/core/doctype/translation/test_translation.py:63
+#: frappe/core/doctype/translation/test_translation.py:47
+#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
msgstr "测试数据"
@@ -25955,8 +25657,8 @@ msgstr "测试数据"
msgid "Test Job ID"
msgstr "测试任务ID"
-#: frappe/core/doctype/translation/test_translation.py:58
-#: frappe/core/doctype/translation/test_translation.py:66
+#: frappe/core/doctype/translation/test_translation.py:49
+#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
msgstr "测试西班牙语"
@@ -25964,7 +25666,7 @@ msgstr "测试西班牙语"
msgid "Test email sent to {0}"
msgstr "测试邮件已发送至{0}"
-#: frappe/core/doctype/file/test_file.py:388
+#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "测试文件夹"
@@ -26047,7 +25749,7 @@ msgstr "谢谢"
msgid "The Auto Repeat for this document has been disabled."
msgstr "此文档的自动重复功能已禁用。"
-#: frappe/public/js/frappe/form/grid.js:1188
+#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
msgstr "CSV格式区分大小写"
@@ -26221,15 +25923,15 @@ msgstr "从\n"
"\"IAM & Admin\" > \"Settings\"\n"
"下的 Google Cloud Console 获取的项目编号"
-#: frappe/core/doctype/user/user.py:987
+#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
msgstr "重置密码链接已过期"
-#: frappe/core/doctype/user/user.py:989
+#: frappe/core/doctype/user/user.py:991
msgid "The reset password link has either been used before or is invalid"
msgstr "重置密码链接已被使用或无效"
-#: frappe/app.py:375 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "您请求的资源不可用"
@@ -26241,7 +25943,7 @@ msgstr "角色{0}应为自定义角色。"
msgid "The selected document {0} is not a {1}."
msgstr "所选文档{0}不是{1}类型。"
-#: frappe/utils/response.py:334
+#: frappe/utils/response.py:331
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "系统正在更新。请稍后刷新页面。"
@@ -26302,7 +26004,7 @@ msgstr "您没有即将发生的事件。"
msgid "There are no {0} for this {1}, why don't you start one!"
msgstr "此{1}无{0},何不创建一个!"
-#: frappe/public/js/frappe/views/reports/query_report.js:961
+#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "There are {0} with the same filters already in the queue:"
msgstr "队列中已有{0}条相同筛选条件的记录:"
@@ -26331,7 +26033,7 @@ msgstr "当前无新内容可显示。"
msgid "There is some problem with the file url: {0}"
msgstr "文件URL存在问题:{0}"
-#: frappe/public/js/frappe/views/reports/query_report.js:958
+#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
msgstr "队列中已有{0}条相同筛选条件的记录:"
@@ -26418,12 +26120,12 @@ msgstr "本年"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "此操作不可逆。是否继续?"
-#: frappe/__init__.py:750
+#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
msgstr "此操作仅允许{}执行"
#: frappe/public/js/frappe/form/toolbar.js:117
-#: frappe/public/js/frappe/model/model.js:755
+#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
msgstr "此操作不可撤销"
@@ -26461,7 +26163,7 @@ msgstr "此文档存在未保存更改,可能不会反映在最终PDF中。
{0} does not exist"
msgstr "工作区{0}不存在"
@@ -29671,11 +29349,11 @@ msgstr "工作区{0}已创建"
msgid "Workspaces"
msgstr "工作区"
-#: frappe/public/js/frappe/form/footer/form_timeline.js:753
+#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
msgstr "是否确认发布本评论?发布后网站/门户用户可见。"
-#: frappe/public/js/frappe/form/footer/form_timeline.js:757
+#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
msgstr "是否确认取消发布本评论?取消后网站/门户用户将不可见。"
@@ -29694,11 +29372,11 @@ msgstr "收尾工作"
msgid "Write"
msgstr "写入"
-#: frappe/model/base_document.py:949
+#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
msgstr "错误的获取来源值"
-#: frappe/public/js/frappe/views/reports/report_view.js:484
+#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
msgstr "X轴字段"
@@ -29717,13 +29395,13 @@ msgstr "XLSX格式"
msgid "Y Axis"
msgstr "Y轴"
-#: frappe/public/js/frappe/views/reports/report_view.js:491
+#: frappe/public/js/frappe/views/reports/report_view.js:497
msgid "Y Axis Fields"
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:1221
+#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
msgstr "Y字段"
@@ -29784,7 +29462,7 @@ msgstr "黄色"
#: frappe/public/js/form_builder/utils.js:336
#: frappe/public/js/frappe/form/controls/link.js:494
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223
-#: frappe/public/js/frappe/views/reports/query_report.js:1612
+#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
msgstr "是"
@@ -29824,11 +29502,11 @@ msgstr "您正在模拟其他用户"
msgid "You are not allowed to access this resource"
msgstr "您无权访问此资源"
-#: frappe/permissions.py:409
+#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "您无权访问{0}记录,因其通过字段{3}关联到{1}'{2}'"
-#: frappe/permissions.py:398
+#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "您无权访问{0}记录,因其在第{3}行字段{4}关联到{1}'{2}'"
@@ -29851,7 +29529,7 @@ msgstr "您无权编辑此报表"
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:604
+#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
msgstr "您无权导出{}文档类型"
@@ -29863,7 +29541,7 @@ msgstr "您无权打印此报表"
msgid "You are not allowed to send emails related to this document"
msgstr "您无权发送与此文档相关的邮件"
-#: frappe/website/doctype/web_form/web_form.py:569
+#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
msgstr "您无权更新此Web表单文档"
@@ -29879,7 +29557,7 @@ msgstr "未登录状态下无权访问此页面"
msgid "You are not permitted to access this page."
msgstr "您无权访问此页面"
-#: frappe/__init__.py:669
+#: frappe/__init__.py:676
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29887,7 +29565,7 @@ msgstr ""
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
msgstr "您已订阅此文档,将通过邮件接收每日更新,可在用户设置中修改"
-#: frappe/core/doctype/installed_applications/installed_applications.py:82
+#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
msgstr "仅允许调整应用顺序,不可增删应用"
@@ -30051,11 +29729,11 @@ msgstr "您对{}无读取或选择权限"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "权限不足,请联系管理员获取访问权限"
-#: frappe/app.py:368
+#: frappe/app.py:361
msgid "You do not have enough permissions to complete the action"
msgstr "权限不足无法完成操作"
-#: frappe/desk/query_report.py:838
+#: frappe/desk/query_report.py:831
msgid "You do not have permission to access {0}: {1}."
msgstr "您无权访问{0}:{1}。"
@@ -30067,11 +29745,11 @@ msgstr "您无权取消所有关联文档"
msgid "You don't have access to Report: {0}"
msgstr "您无权访问报表:{0}"
-#: frappe/website/doctype/web_form/web_form.py:772
+#: frappe/website/doctype/web_form/web_form.py:769
msgid "You don't have permission to access the {0} DocType."
msgstr "您无权访问{0}文档类型"
-#: frappe/utils/response.py:286 frappe/utils/response.py:290
+#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
msgstr "您无权访问此文件"
@@ -30079,7 +29757,7 @@ msgstr "您无权访问此文件"
msgid "You don't have permission to get a report on: {0}"
msgstr "您无权获取{0}的报表"
-#: frappe/website/doctype/web_form/web_form.py:175
+#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
msgstr "您无权访问此文档"
@@ -30132,23 +29810,23 @@ msgid "You hit the rate limit because of too many requests. Please try after som
msgstr "请求过多触发速率限制,请稍后重试"
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:103
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
msgstr "您最后编辑于"
-#: frappe/public/js/frappe/widgets/widget_dialog.js:339
+#: 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:768
+#: frappe/website/doctype/web_form/web_form.py:765
msgid "You must be logged in to use this form."
msgstr "必须登录才能使用此表单"
-#: frappe/website/doctype/web_form/web_form.py:609
+#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
msgstr "必须登录才能提交此表单"
-#: frappe/model/document.py:357
+#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
msgstr "执行此操作需要{1} {2}的'{0}'权限"
@@ -30164,11 +29842,11 @@ msgstr "您需要是工作空间管理员才能编辑此文档"
msgid "You need to be a system user to access this page."
msgstr "您需要是系统用户才能访问此页面"
-#: frappe/website/doctype/web_form/web_form.py:94
+#: frappe/website/doctype/web_form/web_form.py:91
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "您需要处于开发者模式才能编辑标准Web表单"
-#: frappe/utils/response.py:275
+#: frappe/utils/response.py:272
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "您需要登录并具有系统管理员角色才能访问备份"
@@ -30176,7 +29854,7 @@ msgstr "您需要登录并具有系统管理员角色才能访问备份"
msgid "You need to be logged in to access this page"
msgstr "您需要登录才能访问此页面"
-#: frappe/website/doctype/web_form/web_form.py:164
+#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
msgstr "您需要登录才能访问此{0}"
@@ -30251,7 +29929,7 @@ msgstr "您取消关注此文档"
msgid "You viewed this"
msgstr "您查看了此内容"
-#: frappe/public/js/frappe/desk.js:543
+#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
msgstr "您已在其他标签页以其他用户身份登录。请刷新此页面继续使用系统"
@@ -30334,7 +30012,7 @@ msgstr "用于邮件页脚的组织名称和地址"
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "我们已收到您的查询。我们将尽快回复。如有其他信息,请回复此邮件"
-#: frappe/app.py:361
+#: frappe/app.py:354
msgid "Your session has expired, please login again to continue."
msgstr "您的会话已过期,请重新登录以继续"
@@ -30565,7 +30243,7 @@ msgstr "电子邮件"
msgid "email inbox"
msgstr "电子邮件收件箱"
-#: frappe/permissions.py:403 frappe/permissions.py:414
+#: frappe/permissions.py:412 frappe/permissions.py:423
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "空"
@@ -31117,7 +30795,7 @@ msgstr "{0} = {1}"
msgid "{0} Calendar"
msgstr "{0}日历"
-#: frappe/public/js/frappe/views/reports/report_view.js:564
+#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
msgstr "{0}图表"
@@ -31165,7 +30843,7 @@ msgstr "{0}地图"
msgid "{0} Name"
msgstr "{0}名称"
-#: frappe/model/base_document.py:1149
+#: frappe/model/base_document.py:1154
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
msgstr "{0}不允许在提交后将{1}从{2}更改为{3}"
@@ -31175,7 +30853,7 @@ msgstr "{0}不允许在提交后将{1}从{2}更改为{3}"
msgid "{0} Report"
msgstr "{0}报告"
-#: frappe/public/js/frappe/views/reports/query_report.js:952
+#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
msgstr "{0}报告"
@@ -31241,7 +30919,7 @@ msgctxt "Form timeline"
msgid "{0} attached {1}"
msgstr "{0}附加了{1}"
-#: frappe/core/doctype/system_settings/system_settings.py:149
+#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
msgstr "{0}不能超过{1}"
@@ -31254,7 +30932,7 @@ msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
msgstr "{0}于{1}取消了此文档"
-#: frappe/model/document.py:547
+#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
msgstr "{0}未被取消,无法修订。请在创建修订前取消该文档"
@@ -31379,7 +31057,7 @@ msgstr "{0}是无效的数据字段"
msgid "{0} is an invalid email address in 'Recipients'"
msgstr "'收件人'中的{0}是无效的电子邮箱地址"
-#: frappe/public/js/frappe/views/reports/report_view.js:1462
+#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
msgstr "{0}介于{1}和{2}之间"
@@ -31388,27 +31066,27 @@ msgstr "{0}介于{1}和{2}之间"
msgid "{0} is currently {1}"
msgstr "{0}当前状态为{1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1431
+#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
msgstr "{0}等于{1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1451
+#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
msgstr "{0}大于或等于{1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1441
+#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
msgstr "{0}大于{1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1456
+#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
msgstr "{0}小于或等于{1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1446
+#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
msgstr "{0}小于{1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1481
+#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
msgstr "{0}类似于{1}"
@@ -31428,7 +31106,7 @@ msgstr "{0}不是原始打印格式"
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
msgstr "{0}不是有效的日历,正在重定向到默认日历"
-#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:64
+#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
msgstr "{0}不是有效的Cron表达式"
@@ -31457,11 +31135,11 @@ msgstr "{0}不是有效的电话号码"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0}不是有效的工作流状态。请更新工作流后重试"
-#: frappe/permissions.py:787
+#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0}不是{1}的有效父文档类型"
-#: frappe/permissions.py:807
+#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0}不是{1}的有效父字段"
@@ -31473,27 +31151,27 @@ msgstr "{0}不是有效的报告格式。报告格式应为以下之一:{1}"
msgid "{0} is not a zip file"
msgstr "{0}不是zip文件"
-#: frappe/public/js/frappe/views/reports/report_view.js:1436
+#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
msgstr "{0}不等于{1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1483
+#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
msgstr "{0}与{1}不相似"
-#: frappe/public/js/frappe/views/reports/report_view.js:1477
+#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
msgstr "{0}不属于{1}"
-#: frappe/public/js/frappe/views/reports/report_view.js:1487
+#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
msgstr "{0}未设置"
-#: frappe/printing/doctype/print_format/print_format.py:165
+#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
msgstr "{0}现为{1}文档类型的默认打印格式"
-#: frappe/public/js/frappe/views/reports/report_view.js:1470
+#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
msgstr "{0}属于{1}"
@@ -31504,11 +31182,11 @@ msgstr "{0}属于{1}"
msgid "{0} is required"
msgstr "{0}为必填项"
-#: frappe/public/js/frappe/views/reports/report_view.js:1486
+#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
msgstr "{0}已设置"
-#: frappe/public/js/frappe/views/reports/report_view.js:1465
+#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
msgstr "{0}在{1}范围内"
@@ -31516,12 +31194,12 @@ msgstr "{0}在{1}范围内"
msgid "{0} items selected"
msgstr "已选择{0}项"
-#: frappe/core/doctype/user/user.py:1378
+#: frappe/core/doctype/user/user.py:1380
msgid "{0} just impersonated as you. They gave this reason: {1}"
msgstr "{0}刚刚以您的身份进行了模拟操作,原因:{1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
-#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:104
+#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
msgstr "{0}最后编辑"
@@ -31537,7 +31215,7 @@ msgstr "{0}已注销:{1}"
msgid "{0} m"
msgstr "{0}分钟前"
-#: frappe/desk/notifications.py:397
+#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
msgstr "{0}在{1}{2}的评论中@提及了您"
@@ -31549,35 +31227,35 @@ msgstr "{0}分钟前"
msgid "{0} months ago"
msgstr "{0}个月前"
-#: frappe/model/document.py:1792
+#: frappe/model/document.py:1791
msgid "{0} must be after {1}"
msgstr "{0}必须在{1}之后"
-#: frappe/model/document.py:1551
+#: frappe/model/document.py:1550
msgid "{0} must be beginning with '{1}'"
msgstr "{0}必须以'{1}'开头"
-#: frappe/model/document.py:1553
+#: frappe/model/document.py:1552
msgid "{0} must be equal to '{1}'"
msgstr "{0}必须等于'{1}'"
-#: frappe/model/document.py:1549
+#: frappe/model/document.py:1548
msgid "{0} must be none of {1}"
msgstr "{0}不能是{1}中的任何一项"
-#: frappe/model/document.py:1547 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0}必须是{1}中的一项"
-#: frappe/model/base_document.py:875
+#: frappe/model/base_document.py:876
msgid "{0} must be set first"
msgstr "需先设置{0}"
-#: frappe/model/base_document.py:732
+#: frappe/model/base_document.py:729
msgid "{0} must be unique"
msgstr "{0}必须唯一"
-#: frappe/model/document.py:1555
+#: frappe/model/document.py:1554
msgid "{0} must be {1} {2}"
msgstr "{0}必须为{1}{2}"
@@ -31652,7 +31330,7 @@ msgstr "{0}移除了其分配"
msgid "{0} role does not have permission on any doctype"
msgstr "{0}角色无任何文档类型权限"
-#: frappe/model/document.py:1785
+#: frappe/model/document.py:1784
msgid "{0} row #{1}: "
msgstr "{0}行#{1}:"
@@ -31748,11 +31426,11 @@ msgstr "已添加{0}{1}"
msgid "{0} {1} added to Dashboard {2}"
msgstr "{0}{1}已添加到仪表盘{2}"
-#: frappe/model/base_document.py:665 frappe/model/rename_doc.py:110
+#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
msgstr "{0}{1}已存在"
-#: frappe/model/base_document.py:982
+#: frappe/model/base_document.py:987
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
msgstr "{0} {1}不能为“{2}”。它应该是一个“{3}”"
@@ -31768,7 +31446,7 @@ msgstr "{0}{1}不存在,请选择新合并目标"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0}{1}关联了以下已提交文档:{2}"
-#: frappe/model/document.py:260 frappe/permissions.py:558
+#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
msgstr "未找到{0}{1}"
@@ -31776,7 +31454,7 @@ msgstr "未找到{0}{1}"
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:1110
+#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
msgstr "{0},第{1}行"
@@ -31784,7 +31462,7 @@ msgstr "{0},第{1}行"
msgid "{0}/{1} complete | Please leave this tab open until completion."
msgstr "已完成{0}/{1} | 请保持此标签页开启直至完成"
-#: frappe/model/base_document.py:1115
+#: frappe/model/base_document.py:1120
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
msgstr "{0}:'{1}'(当前{3}字符)将被截断,最大允许字符数为{2}"
@@ -31885,7 +31563,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:1279
+#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
msgstr "{0}:{1}与{2}"
From 2b51d4f4d7ae86b9e5b9aceaba38e5dd5d8e30cd Mon Sep 17 00:00:00 2001
From: Akhil Narang
Date: Tue, 10 Jun 2025 15:58:21 +0530
Subject: [PATCH 099/196] Revert "fix: permission error when permission docname
is none"
This reverts commit f1d0419fa819d2a2b18d88af797fb88c184c9e09.
Signed-off-by: Akhil Narang
---
frappe/permissions.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/frappe/permissions.py b/frappe/permissions.py
index 5f8c14432e..0d5926c25b 100644
--- a/frappe/permissions.py
+++ b/frappe/permissions.py
@@ -361,7 +361,7 @@ def has_user_permission(doc, user=None, debug=False, *, ptype=None):
# if allowed_docs is empty it states that there is no applicable permission under the current doctype
# only check if allowed_docs is not empty
- if allowed_docs and docname and str(docname) not in allowed_docs:
+ if allowed_docs and str(docname) not in allowed_docs:
# no user permissions for this doc specified
debug and _debug_log(
"User doesn't have access to this document because of User Permissions, allowed documents: "
From 6d8ebeb09fd20b3f56781e33f8a1c76ae3e4a584 Mon Sep 17 00:00:00 2001
From: Akhil Narang
Date: Thu, 22 May 2025 19:30:02 +0530
Subject: [PATCH 100/196] fix: allow creating tree doctype if user permission
grants access to the parent
Signed-off-by: Akhil Narang
---
frappe/permissions.py | 39 +++++++++++++++++++++++++++++++--------
1 file changed, 31 insertions(+), 8 deletions(-)
diff --git a/frappe/permissions.py b/frappe/permissions.py
index 0d5926c25b..0ed085234f 100644
--- a/frappe/permissions.py
+++ b/frappe/permissions.py
@@ -361,14 +361,37 @@ def has_user_permission(doc, user=None, debug=False, *, ptype=None):
# if allowed_docs is empty it states that there is no applicable permission under the current doctype
# only check if allowed_docs is not empty
- if allowed_docs and str(docname) not in allowed_docs:
- # no user permissions for this doc specified
- debug and _debug_log(
- "User doesn't have access to this document because of User Permissions, allowed documents: "
- + str(allowed_docs)
- )
- push_perm_check_log(_("Not allowed for {0}: {1}").format(_(doctype), docname), debug=debug)
- return False
+ if allowed_docs:
+ condition = True
+ if doc.meta.is_tree and ptype == "create":
+ if parent := doc.get(doc.nsm_parent_field):
+ from frappe.utils.nestedset import get_ancestors_of
+
+ for d in [parent, *get_ancestors_of(doctype, parent)]:
+ if d in allowed_docs:
+ try:
+ up = frappe.get_doc(
+ "User Permission",
+ {"allow": doctype, "for_value": d, "user": user},
+ fields=["hide_descendants"],
+ )
+ except frappe.DoesNotExistError:
+ frappe.clear_last_message()
+ continue
+ if not up.hide_descendants:
+ condition = False
+ break
+ else:
+ condition = str(docname) not in allowed_docs
+
+ if condition:
+ # no user permissions for this doc specified
+ debug and _debug_log(
+ "User doesn't have access to this document because of User Permissions, allowed documents: "
+ + str(allowed_docs)
+ )
+ push_perm_check_log(_("Not allowed for {0}: {1}").format(_(doctype), docname), debug=debug)
+ return False
else:
debug and _debug_log(f"User Has access to {docname} via User Permissions.")
From 60dd0377e8555d9dbde0a6a605e608b43e64448c Mon Sep 17 00:00:00 2001
From: Akhil Narang
Date: Mon, 16 Jun 2025 16:14:25 +0530
Subject: [PATCH 101/196] refactor: store `hide_descendants` within user
permissions data
Signed-off-by: Akhil Narang
---
.../user_permission/user_permission.py | 13 ++++++++----
frappe/permissions.py | 21 +++++++------------
2 files changed, 16 insertions(+), 18 deletions(-)
diff --git a/frappe/core/doctype/user_permission/user_permission.py b/frappe/core/doctype/user_permission/user_permission.py
index f3541865ca..b0407d1a01 100644
--- a/frappe/core/doctype/user_permission/user_permission.py
+++ b/frappe/core/doctype/user_permission/user_permission.py
@@ -105,7 +105,7 @@ def get_user_permissions(user=None):
out = {}
- def add_doc_to_perm(perm, doc_name, is_default):
+ def add_doc_to_perm(perm, doc_name, is_default, hide_descendants):
# group rules for each type
# for example if allow is "Customer", then build all allowed customers
# in a list
@@ -114,7 +114,12 @@ def get_user_permissions(user=None):
out[perm.allow].append(
frappe._dict(
- {"doc": doc_name, "applicable_for": perm.get("applicable_for"), "is_default": is_default}
+ {
+ "doc": doc_name,
+ "applicable_for": perm.get("applicable_for"),
+ "is_default": is_default,
+ "hide_descendants": hide_descendants,
+ }
)
)
@@ -125,12 +130,12 @@ def get_user_permissions(user=None):
filters=dict(user=user),
):
meta = frappe.get_meta(perm.allow)
- add_doc_to_perm(perm, perm.for_value, perm.is_default)
+ add_doc_to_perm(perm, perm.for_value, perm.is_default, perm.hide_descendants)
if meta.is_nested_set() and not perm.hide_descendants:
decendants = frappe.db.get_descendants(perm.allow, perm.for_value)
for doc in decendants:
- add_doc_to_perm(perm, doc, False)
+ add_doc_to_perm(perm, doc, False, False)
out = frappe._dict(out)
frappe.cache.hset("user_permissions", user, out)
diff --git a/frappe/permissions.py b/frappe/permissions.py
index 0ed085234f..3d85c955b8 100644
--- a/frappe/permissions.py
+++ b/frappe/permissions.py
@@ -356,7 +356,8 @@ def has_user_permission(doc, user=None, debug=False, *, ptype=None):
# STEP 1: ---------------------
# check user permissions on self
if doctype in user_permissions:
- allowed_docs = get_allowed_docs_for_doctype(user_permissions.get(doctype, []), doctype)
+ doctype_up = user_permissions.get(doctype, [])
+ allowed_docs = get_allowed_docs_for_doctype(doctype_up, doctype)
# if allowed_docs is empty it states that there is no applicable permission under the current doctype
@@ -367,20 +368,12 @@ def has_user_permission(doc, user=None, debug=False, *, ptype=None):
if parent := doc.get(doc.nsm_parent_field):
from frappe.utils.nestedset import get_ancestors_of
+ doc_hide_descendants = {d.doc: d.hide_descendants for d in doctype_up}
+
for d in [parent, *get_ancestors_of(doctype, parent)]:
- if d in allowed_docs:
- try:
- up = frappe.get_doc(
- "User Permission",
- {"allow": doctype, "for_value": d, "user": user},
- fields=["hide_descendants"],
- )
- except frappe.DoesNotExistError:
- frappe.clear_last_message()
- continue
- if not up.hide_descendants:
- condition = False
- break
+ if d in allowed_docs and not doc_hide_descendants[d]:
+ condition = False
+ break
else:
condition = str(docname) not in allowed_docs
From e1f75566872ea0fc42131cee684332f47b506df6 Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Mon, 16 Jun 2025 16:24:02 +0530
Subject: [PATCH 102/196] fix: ensure document name isn't None
Signed-off-by: Akhil Narang
---
frappe/permissions.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/frappe/permissions.py b/frappe/permissions.py
index 3d85c955b8..8f60da3378 100644
--- a/frappe/permissions.py
+++ b/frappe/permissions.py
@@ -375,7 +375,7 @@ def has_user_permission(doc, user=None, debug=False, *, ptype=None):
condition = False
break
else:
- condition = str(docname) not in allowed_docs
+ condition = not docname or str(docname) not in allowed_docs
if condition:
# no user permissions for this doc specified
From 519a298db3924b419a9074095e87e01e17d65ea1 Mon Sep 17 00:00:00 2001
From: Akhil Narang
Date: Mon, 16 Jun 2025 16:26:37 +0530
Subject: [PATCH 103/196] fix: add back accidentally removed logging
Signed-off-by: Akhil Narang
---
frappe/permissions.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/frappe/permissions.py b/frappe/permissions.py
index 8f60da3378..69a2739ae8 100644
--- a/frappe/permissions.py
+++ b/frappe/permissions.py
@@ -385,6 +385,9 @@ def has_user_permission(doc, user=None, debug=False, *, ptype=None):
)
push_perm_check_log(_("Not allowed for {0}: {1}").format(_(doctype), docname), debug=debug)
return False
+ else:
+ debug and _debug_log(f"User Has access to {docname} via User Permissions.")
+
else:
debug and _debug_log(f"User Has access to {docname} via User Permissions.")
From 86fcea4578bc12ccc45a983d7a244b3215473940 Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Tue, 24 Jun 2025 11:49:49 +0530
Subject: [PATCH 104/196] refactor: reduce duplication
---
frappe/permissions.py | 13 +++++--------
1 file changed, 5 insertions(+), 8 deletions(-)
diff --git a/frappe/permissions.py b/frappe/permissions.py
index 69a2739ae8..6374cf5e08 100644
--- a/frappe/permissions.py
+++ b/frappe/permissions.py
@@ -363,7 +363,7 @@ def has_user_permission(doc, user=None, debug=False, *, ptype=None):
# only check if allowed_docs is not empty
if allowed_docs:
- condition = True
+ not_permitted = True
if doc.meta.is_tree and ptype == "create":
if parent := doc.get(doc.nsm_parent_field):
from frappe.utils.nestedset import get_ancestors_of
@@ -372,12 +372,12 @@ def has_user_permission(doc, user=None, debug=False, *, ptype=None):
for d in [parent, *get_ancestors_of(doctype, parent)]:
if d in allowed_docs and not doc_hide_descendants[d]:
- condition = False
+ not_permitted = False
break
else:
- condition = not docname or str(docname) not in allowed_docs
+ not_permitted = not docname or str(docname) not in allowed_docs
- if condition:
+ if not_permitted:
# no user permissions for this doc specified
debug and _debug_log(
"User doesn't have access to this document because of User Permissions, allowed documents: "
@@ -385,11 +385,8 @@ def has_user_permission(doc, user=None, debug=False, *, ptype=None):
)
push_perm_check_log(_("Not allowed for {0}: {1}").format(_(doctype), docname), debug=debug)
return False
- else:
- debug and _debug_log(f"User Has access to {docname} via User Permissions.")
- else:
- debug and _debug_log(f"User Has access to {docname} via User Permissions.")
+ debug and _debug_log(f"User Has access to {docname} via User Permissions.")
# STEP 2: ---------------------------------
# check user permissions in all link fields
From ceb4ee8bf2655c6b45239502d64d7e41d395f076 Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Tue, 24 Jun 2025 11:58:55 +0530
Subject: [PATCH 105/196] perf: get ancestors only if needed
---
frappe/permissions.py | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/frappe/permissions.py b/frappe/permissions.py
index 6374cf5e08..d1ff3933de 100644
--- a/frappe/permissions.py
+++ b/frappe/permissions.py
@@ -366,11 +366,8 @@ def has_user_permission(doc, user=None, debug=False, *, ptype=None):
not_permitted = True
if doc.meta.is_tree and ptype == "create":
if parent := doc.get(doc.nsm_parent_field):
- from frappe.utils.nestedset import get_ancestors_of
-
doc_hide_descendants = {d.doc: d.hide_descendants for d in doctype_up}
-
- for d in [parent, *get_ancestors_of(doctype, parent)]:
+ for d in _get_parent_and_ancestors(doctype, parent):
if d in allowed_docs and not doc_hide_descendants[d]:
not_permitted = False
break
@@ -895,3 +892,11 @@ def handle_does_not_exist_error(fn):
return fn(e, *args, **kwargs)
return wrapper
+
+
+def _get_parent_and_ancestors(doctype, parent):
+ yield parent
+
+ from frappe.utils.nestedset import get_ancestors_of
+
+ yield from get_ancestors_of(doctype, parent)
From baf29c896cf5a4de03eaaa9e5f4adc4371ed47ec Mon Sep 17 00:00:00 2001
From: sokumon
Date: Tue, 24 Jun 2025 16:04:31 +0530
Subject: [PATCH 106/196] fix: remove like logic from permission query
---
frappe/core/doctype/communication/communication.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/frappe/core/doctype/communication/communication.py b/frappe/core/doctype/communication/communication.py
index 4d8fd9bb08..b571e30440 100644
--- a/frappe/core/doctype/communication/communication.py
+++ b/frappe/core/doctype/communication/communication.py
@@ -490,8 +490,8 @@ def get_permission_query_conditions_for_communication(user):
return """`tabCommunication`.communication_medium!='Email'"""
email_accounts = ['"{}"'.format(account.get("email_account")) for account in accounts]
- return """`tabCommunication`.email_account in ({email_accounts}) or `tabCommunication`.recipients LIKE '%{user}%' or `tabCommunication`.sender LIKE '%{user}%' or `tabCommunication`.cc LIKE '%{user}%' or `tabCommunication`.bcc LIKE '%{user}%'""".format(
- email_accounts=",".join(email_accounts), user=user
+ return """`tabCommunication`.email_account in ({email_accounts})""".format(
+ email_accounts=",".join(email_accounts)
)
From ae78eb5458fc70364033ec02ccd940b3752cc3d5 Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Tue, 24 Jun 2025 16:52:46 +0530
Subject: [PATCH 107/196] chore: remove old unused cache
---
frappe/utils/user.py | 2 --
1 file changed, 2 deletions(-)
diff --git a/frappe/utils/user.py b/frappe/utils/user.py
index 5d9e1dc65e..7feea00d47 100644
--- a/frappe/utils/user.py
+++ b/frappe/utils/user.py
@@ -190,8 +190,6 @@ class UserPermissions:
filters={"property": "allow_import", "value": "1"},
)
- frappe.cache.hset("can_import", frappe.session.user, self.can_import)
-
def get_defaults(self):
import frappe.defaults
From 23becc0aa7820a3246ec660c82b3de92129a0f05 Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Tue, 24 Jun 2025 17:25:29 +0530
Subject: [PATCH 108/196] fix: hide `Allow Import` option for single doctypes
---
frappe/core/doctype/doctype/doctype.json | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/frappe/core/doctype/doctype/doctype.json b/frappe/core/doctype/doctype/doctype.json
index 898fd81011..dfcb88b2ff 100644
--- a/frappe/core/doctype/doctype/doctype.json
+++ b/frappe/core/doctype/doctype/doctype.json
@@ -288,6 +288,7 @@
},
{
"default": "0",
+ "depends_on": "eval:!doc.issingle",
"fieldname": "allow_import",
"fieldtype": "Check",
"label": "Allow Import (via Data Import Tool)"
@@ -784,7 +785,7 @@
"link_fieldname": "document_type"
}
],
- "modified": "2025-05-21 21:58:59.947374",
+ "modified": "2025-06-24 07:46:34.380662",
"modified_by": "Administrator",
"module": "Core",
"name": "DocType",
From 2b8d21d483ee5a54eef2b24bbb49b2a78c44e51c Mon Sep 17 00:00:00 2001
From: sokumon
Date: Tue, 24 Jun 2025 18:43:28 +0530
Subject: [PATCH 109/196] fix: add utm utils back
---
frappe/tests/test_utils.py | 55 +++++++++++++++++++++++++
frappe/utils/data.py | 84 ++++++++++++++++++++++++++++++++++++++
2 files changed, 139 insertions(+)
diff --git a/frappe/tests/test_utils.py b/frappe/tests/test_utils.py
index eda1dfa012..1a80e92a5c 100644
--- a/frappe/tests/test_utils.py
+++ b/frappe/tests/test_utils.py
@@ -35,6 +35,7 @@ from frappe.utils import (
get_sites,
get_url,
money_in_words,
+ parse_and_map_trackers_from_url,
parse_timedelta,
random_string,
remove_blanks,
@@ -51,6 +52,7 @@ from frappe.utils.change_log import (
)
from frappe.utils.data import (
add_to_date,
+ add_trackers_to_url,
add_years,
cast,
cint,
@@ -67,6 +69,7 @@ from frappe.utils.data import (
get_year_ending,
getdate,
is_invalid_date_string,
+ map_trackers,
now_datetime,
nowtime,
pretty_date,
@@ -1383,3 +1386,55 @@ class TestCrypto(IntegrationTestCase):
sha256_hash(b"The quick brown fox jumps over the lazy dog"),
"d7a8fbb307d7809469ca9abcb0082e4f8d5651e46d3cdb762d02d0bf37c9e592",
)
+
+
+class TestURLTrackers(IntegrationTestCase):
+ def test_add_trackers_to_url(self):
+ url = "https://example.com"
+ source = "test_source"
+ campaign = "test_campaign"
+ medium = "test_medium"
+ content = "test_content"
+
+ with patch("frappe.db.get_value") as mock_get_value:
+ mock_get_value.side_effect = lambda *args: args[1] # Return unslugged input value
+ result = add_trackers_to_url(url, source, campaign, medium, content)
+
+ expected = "https://example.com?utm_source=test_source&utm_medium=test_medium&utm_campaign=test_campaign&utm_content=test_content"
+ self.assertEqual(result, expected)
+
+ def test_parse_and_map_trackers_from_url(self):
+ url = "https://example.com?utm_source=test_source&utm_medium=test_medium&utm_campaign=test_campaign&utm_content=test_content"
+
+ with patch("frappe.db.get_value") as mock_get_value:
+ mock_get_value.return_value = None # Simulate no existing records
+ result = parse_and_map_trackers_from_url(url)
+
+ expected = {
+ "utm_source": "test_source",
+ "utm_medium": "test_medium",
+ "utm_campaign": "test_campaign",
+ "utm_content": "test_content",
+ }
+ self.assertEqual(result, expected)
+
+ def test_map_trackers(self):
+ url_trackers = {
+ "utm_source": "test_source",
+ "utm_medium": "test_medium",
+ "utm_campaign": "test_campaign",
+ "utm_content": "test_content",
+ }
+
+ result = map_trackers(url_trackers, create=True)
+
+ expected = {
+ "utm_source": frappe.get_doc("UTM Source", "test_source"),
+ "utm_medium": frappe.get_doc("UTM Medium", "test_medium"),
+ "utm_campaign": frappe.get_doc("UTM Campaign", "test_campaign"),
+ "utm_content": "test_content",
+ }
+ self.assertDocumentEqual(result["utm_source"], expected["utm_source"])
+ self.assertDocumentEqual(result["utm_medium"], expected["utm_medium"])
+ self.assertDocumentEqual(result["utm_campaign"], expected["utm_campaign"])
+ self.assertEqual(result["utm_content"], expected["utm_content"])
diff --git a/frappe/utils/data.py b/frappe/utils/data.py
index 9f775fad1d..d70920ee3a 100644
--- a/frappe/utils/data.py
+++ b/frappe/utils/data.py
@@ -2639,3 +2639,87 @@ def _get_rss_memory_usage():
rss = psutil.Process().memory_info().rss // (1024 * 1024)
return rss
+
+
+def add_trackers_to_url(
+ url: str,
+ source: str,
+ campaign: str | None = None,
+ medium: str | None = None,
+ content: str | None = None,
+) -> str:
+ def get_utm_values():
+ _source = frappe.db.get_value("UTM Source", source, "slug") or source
+ _campaign = frappe.db.get_value("UTM Campaign", campaign, "slug") or campaign
+ _medium = frappe.db.get_value("UTM Medium", medium, "slug") or medium
+ return _source, _medium, _campaign
+
+ url_parts = list(urlparse(url))
+ if url_parts[0] == "mailto":
+ return url
+
+ source, medium, campaign = frappe.cache.get_value(
+ "utm_" + cstr(source) + "_" + cstr(medium) + "_" + cstr(campaign),
+ get_utm_values,
+ shared=True,
+ )
+
+ trackers = {"utm_source": source}
+
+ if medium:
+ trackers["utm_medium"] = medium
+
+ if campaign:
+ trackers["utm_campaign"] = campaign
+
+ if content:
+ trackers["utm_content"] = content
+
+ query = dict(parse_qsl(url_parts[4])) | trackers
+
+ url_parts[4] = urlencode(query)
+ return urlunparse(url_parts)
+
+
+def parse_and_map_trackers_from_url(url: str, create: bool = False) -> dict:
+ query = urlparse(url).query
+
+ url_trackers = dict(parse_qsl(query))
+
+ return map_trackers(url_trackers, create)
+
+
+def map_trackers(url_trackers: dict, create: bool = False):
+ frappe_trackers = {}
+
+ if url_source := url_trackers.get("utm_source", url_trackers.get("source")):
+ source = frappe.db.get_value("UTM Source", {"slug": slug(url_source)}, "name") or url_source
+ if create and source == url_source and not frappe.db.exists("UTM Source", source):
+ source = frappe.new_doc("UTM Source")
+ source.name = url_source
+ source.description = f"Autogenerated from {url_trackers}"
+ source.save(ignore_permissions=True)
+ frappe_trackers["utm_source"] = source
+
+ if url_medium := url_trackers.get("utm_medium", url_trackers.get("medium")):
+ medium = frappe.db.get_value("UTM Medium", {"slug": slug(url_medium)}, "name") or url_medium
+ if create and medium == url_medium and not frappe.db.exists("UTM Medium", medium):
+ medium = frappe.new_doc("UTM Medium")
+ medium.name = url_medium
+ medium.description = f"Autogenerated from {url_trackers}"
+ medium.save(ignore_permissions=True)
+ frappe_trackers["utm_medium"] = medium
+
+ if url_campaign := url_trackers.get("utm_campaign", url_trackers.get("campaign")):
+ campaign = frappe.db.get_value("UTM Campaign", {"slug": slug(url_campaign)}, "name") or url_campaign
+ if create and campaign == url_campaign and not frappe.db.exists("UTM Campaign", campaign):
+ campaign = frappe.new_doc("UTM Campaign")
+ campaign.name = url_campaign
+ campaign.campaign_description = f"Autogenerated from {url_trackers}"
+ campaign.save(ignore_permissions=True)
+ frappe_trackers["utm_campaign"] = campaign
+
+ if url_content := url_trackers.get("utm_content", url_trackers.get("content")):
+ frappe_trackers["utm_content"] = url_content
+
+ return frappe_trackers
From 09060637fac62cb8c3cdd41b685d39146959cff6 Mon Sep 17 00:00:00 2001
From: Akhil Narang
Date: Tue, 24 Jun 2025 19:37:33 +0530
Subject: [PATCH 110/196] fix(tag): use db.set_value (#33072)
Signed-off-by: Akhil Narang
---
frappe/desk/doctype/tag/tag.py | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/frappe/desk/doctype/tag/tag.py b/frappe/desk/doctype/tag/tag.py
index e105a84637..6235509a9d 100644
--- a/frappe/desk/doctype/tag/tag.py
+++ b/frappe/desk/doctype/tag/tag.py
@@ -112,9 +112,7 @@ class DocTags:
tl = unique(filter(lambda x: x, tl))
tags = ",".join(tl)
try:
- frappe.db.sql(
- "update `tab{}` set _user_tags={} where name={}".format(self.dt, "%s", "%s"), (tags, dn)
- )
+ frappe.db.set_value(self.dt, dn, "_user_tags", tags, update_modified=False)
doc = frappe.get_lazy_doc(self.dt, dn)
update_tags(doc, tags)
except Exception as e:
From f39e2a30037ee909cd411cb8eba089c46700efb9 Mon Sep 17 00:00:00 2001
From: sokumon
Date: Tue, 24 Jun 2025 23:37:44 +0530
Subject: [PATCH 111/196] fix: unset z-index on buttons
---
frappe/public/scss/common/buttons.scss | 1 +
frappe/public/scss/desk/list.scss | 3 +++
2 files changed, 4 insertions(+)
diff --git a/frappe/public/scss/common/buttons.scss b/frappe/public/scss/common/buttons.scss
index d0eb6da859..96c567ad3b 100644
--- a/frappe/public/scss/common/buttons.scss
+++ b/frappe/public/scss/common/buttons.scss
@@ -91,6 +91,7 @@
&:active {
background: var(--btn-default-hover-bg);
color: var(--text-color);
+ z-index: unset;
}
}
diff --git a/frappe/public/scss/desk/list.scss b/frappe/public/scss/desk/list.scss
index 858517495b..79e2fd9c45 100644
--- a/frappe/public/scss/desk/list.scss
+++ b/frappe/public/scss/desk/list.scss
@@ -442,6 +442,9 @@ input.list-header-checkbox {
.sort-selector {
.btn-group {
margin: var(--margin-xs) 0 var(--margin-xs) var(--margin-xs);
+ .btn:focus {
+ z-index: unset;
+ }
}
}
}
From 39ec60e6592e4020eaa15dc562b690afae00336e Mon Sep 17 00:00:00 2001
From: sokumon
Date: Wed, 25 Jun 2025 11:07:40 +0530
Subject: [PATCH 112/196] fix: add Generate Tracking URL in awesomebar
---
frappe/public/js/frappe/ui/toolbar/toolbar.js | 4 +
frappe/public/js/frappe/utils/utils.js | 86 +++++++++++++++++++
2 files changed, 90 insertions(+)
diff --git a/frappe/public/js/frappe/ui/toolbar/toolbar.js b/frappe/public/js/frappe/ui/toolbar/toolbar.js
index 4478013e96..53689c2e11 100644
--- a/frappe/public/js/frappe/ui/toolbar/toolbar.js
+++ b/frappe/public/js/frappe/ui/toolbar/toolbar.js
@@ -171,6 +171,10 @@ frappe.ui.toolbar.Toolbar = class {
let awesome_bar = new frappe.search.AwesomeBar();
awesome_bar.setup("#navbar-search");
+ frappe.search.utils.make_function_searchable(
+ frappe.utils.generate_tracking_url,
+ __("Generate Tracking URL")
+ );
if (frappe.model.can_read("RQ Job")) {
frappe.search.utils.make_function_searchable(function () {
frappe.set_route("List", "RQ Job");
diff --git a/frappe/public/js/frappe/utils/utils.js b/frappe/public/js/frappe/utils/utils.js
index 3e9c8516ce..eb9c16b4cf 100644
--- a/frappe/public/js/frappe/utils/utils.js
+++ b/frappe/public/js/frappe/utils/utils.js
@@ -1701,6 +1701,92 @@ Object.assign(frappe.utils, {
});
},
},
+ generate_tracking_url() {
+ frappe.prompt(
+ [
+ {
+ fieldname: "url",
+ label: __("Web Page URL"),
+ fieldtype: "Data",
+ options: "URL",
+ reqd: 1,
+ default: localStorage.getItem("tracker_url:url"),
+ },
+ {
+ fieldname: "source",
+ label: __("Source"),
+ fieldtype: "Link",
+ reqd: 1,
+ options: "UTM Source",
+ description: "The referrer (e.g. google, newsletter)",
+ default: localStorage.getItem("tracker_url:source"),
+ },
+ {
+ fieldname: "campaign",
+ label: __("Campaign"),
+ fieldtype: "Link",
+ ignore_link_validation: 1,
+ options: "UTM Campaign",
+ default: localStorage.getItem("tracker_url:campaign"),
+ },
+ {
+ fieldname: "medium",
+ label: __("Medium"),
+ fieldtype: "Link",
+ options: "UTM Medium",
+ description: "Marketing medium (e.g. cpc, banner, email)",
+ default: localStorage.getItem("tracker_url:medium"),
+ },
+ {
+ fieldname: "content",
+ label: __("Content"),
+ fieldtype: "Data",
+ description: "Use to differentiate ad variants (e.g. A/B testing)",
+ default: localStorage.getItem("tracker_url:content"),
+ },
+ ],
+ async function (data) {
+ let url = data.url;
+ localStorage.setItem("tracker_url:url", data.url);
+
+ const { message } = await frappe.db.get_value("UTM Source", data.source, "slug");
+ url += "?utm_source=" + encodeURIComponent(message.slug || data.source);
+ localStorage.setItem("tracker_url:source", data.source);
+ if (data.campaign) {
+ const { message } = await frappe.db.get_value(
+ "UTM Campaign",
+ data.campaign,
+ "slug"
+ );
+ url += "&utm_campaign=" + encodeURIComponent(message.slug || data.campaign);
+ localStorage.setItem("tracker_url:campaign", data.campaign);
+ }
+ if (data.medium) {
+ const { message } = await frappe.db.get_value(
+ "UTM Medium",
+ data.medium,
+ "slug"
+ );
+ url += "&utm_medium=" + encodeURIComponent(message.slug || data.medium);
+ localStorage.setItem("tracker_url:medium", data.medium);
+ }
+ if (data.content) {
+ url += "&utm_content=" + encodeURIComponent(data.content);
+ localStorage.setItem("tracker_url:content", data.content);
+ }
+
+ frappe.utils.copy_to_clipboard(url);
+
+ frappe.msgprint(
+ __("Tracking URL generated and copied to clipboard") +
+ ":
" +
+ `${url.bold()}`,
+ __("Here's your tracking URL")
+ );
+ },
+ __("Generate Tracking URL")
+ );
+ },
/**
* Checks if a value is empty.
*
From bdab7e30f84de08e54aca7ebed76fc6ef796d8e8 Mon Sep 17 00:00:00 2001
From: Ankush Menat
Date: Wed, 25 Jun 2025 11:15:57 +0530
Subject: [PATCH 113/196] fix: Remember session creation (#33082)
---
frappe/sessions.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/frappe/sessions.py b/frappe/sessions.py
index 50ae48640c..5e9fdb43b9 100644
--- a/frappe/sessions.py
+++ b/frappe/sessions.py
@@ -266,6 +266,7 @@ class Session:
self.data.data.update(
{
"last_updated": frappe.utils.now(),
+ "creation": frappe.utils.now(),
"session_expiry": get_expiry_period(),
"full_name": self.full_name,
"user_type": self.user_type,
From 7251445f94cc88601b1115a2ed02162950fd5da3 Mon Sep 17 00:00:00 2001
From: rohitwaghchaure
Date: Wed, 25 Jun 2025 11:16:29 +0530
Subject: [PATCH 114/196] fix: bootinfo issue (#33065)
---
frappe/boot.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/frappe/boot.py b/frappe/boot.py
index cd51ff5464..4d1d95a5a9 100644
--- a/frappe/boot.py
+++ b/frappe/boot.py
@@ -145,7 +145,8 @@ def remove_apps_with_incomplete_dependencies(bootinfo):
remove_apps.add(app)
for app in remove_apps:
- bootinfo.setup_wizard_not_required_apps.remove(app)
+ if app in bootinfo.setup_wizard_not_required_apps:
+ bootinfo.setup_wizard_not_required_apps.remove(app)
def get_letter_heads():
From d20e0d8a27a5828947077214e1872c5497cb739b Mon Sep 17 00:00:00 2001
From: Akhil Narang
Date: Wed, 25 Jun 2025 11:56:27 +0530
Subject: [PATCH 115/196] fix(router): sanitize private workspace route in
msgprint
Signed-off-by: Akhil Narang
---
frappe/public/js/frappe/router.js | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/frappe/public/js/frappe/router.js b/frappe/public/js/frappe/router.js
index 2654f540d7..8c6effa2fc 100644
--- a/frappe/public/js/frappe/router.js
+++ b/frappe/public/js/frappe/router.js
@@ -170,7 +170,11 @@ frappe.router = {
// private workspace
let private_workspace = route[1] && `${route[1]}-${frappe.user.name.toLowerCase()}`;
if (!frappe.workspaces[private_workspace]) {
- frappe.msgprint(__("Workspace {0} does not exist", [route[1]]));
+ frappe.msgprint(
+ __("Workspace {0} does not exist", [
+ frappe.utils.xss_sanitise(route[1]),
+ ])
+ );
return ["Workspaces"];
}
route = ["Workspaces", "private", frappe.workspaces[private_workspace].name];
From 4fce595a7308c7b24da3302cfb689fa60d256712 Mon Sep 17 00:00:00 2001
From: Rohit Waghchaure
Date: Wed, 25 Jun 2025 13:36:26 +0530
Subject: [PATCH 116/196] fix: re-run patch
---
frappe/patches.txt | 2 +-
frappe/patches/v16_0/enable_setup_complete.py | 5 +++++
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/frappe/patches.txt b/frappe/patches.txt
index 0519025e88..b2c8d7e0d6 100644
--- a/frappe/patches.txt
+++ b/frappe/patches.txt
@@ -1,5 +1,5 @@
[pre_model_sync]
-frappe.patches.v16_0.enable_setup_complete
+frappe.patches.v16_0.enable_setup_complete #25-06-2025
frappe.patches.v15_0.remove_implicit_primary_key
frappe.patches.v12_0.remove_deprecated_fields_from_doctype #3
execute:frappe.utils.global_search.setup_global_search_table()
diff --git a/frappe/patches/v16_0/enable_setup_complete.py b/frappe/patches/v16_0/enable_setup_complete.py
index e2d786f245..f07363bb2c 100644
--- a/frappe/patches/v16_0/enable_setup_complete.py
+++ b/frappe/patches/v16_0/enable_setup_complete.py
@@ -6,6 +6,11 @@ def execute():
frappe.reload_doc("core", "doctype", "installed_applications")
is_setup_complete = frappe.db.get_single_value("System Settings", "setup_complete")
+ if frappe.get_all(
+ "User", filters={"name": ("not in", ["Guest", "Administrator"])}, pluck="name", limit=1
+ ):
+ is_setup_complete = 1
+
installed_apps = frappe.get_installed_apps(_ensure_on_bench=True)
for app_name in frappe.get_all("Installed Application", pluck="app_name"):
if app_name not in installed_apps:
From da0becc6cf32aedd8a9e7475ac857dac527b0f78 Mon Sep 17 00:00:00 2001
From: Flavia de Castro
Date: Wed, 25 Jun 2025 08:37:34 -0300
Subject: [PATCH 117/196] fix: add missing translation function to webform list
strings (#33080)
* fix: add missing translation function to webform list strings
* fix: format file
---
frappe/public/js/frappe/web_form/web_form_list.js | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/frappe/public/js/frappe/web_form/web_form_list.js b/frappe/public/js/frappe/web_form/web_form_list.js
index c2be360079..fc37ae2ef4 100644
--- a/frappe/public/js/frappe/web_form/web_form_list.js
+++ b/frappe/public/js/frappe/web_form/web_form_list.js
@@ -279,7 +279,7 @@ export default class WebFormList {
const actions = $(".web-list-actions");
frappe.has_permission(this.doctype, "", "delete", () => {
- this.add_button(actions, "delete-rows", "danger", true, "Delete", () =>
+ this.add_button(actions, "delete-rows", "danger", true, __("Delete"), () =>
this.delete_rows()
);
});
@@ -302,7 +302,9 @@ export default class WebFormList {
create_more() {
if (this.rows.length >= this.page_length) {
const footer = $(".web-list-footer");
- this.add_button(footer, "more", "secondary", false, "Load More", () => this.more());
+ this.add_button(footer, "more", "secondary", false, __("Load More"), () =>
+ this.more()
+ );
}
}
From 0af31ed7ed2847449c705632126fc1e85ee936d0 Mon Sep 17 00:00:00 2001
From: Rohit Waghchaure
Date: Wed, 25 Jun 2025 18:05:03 +0530
Subject: [PATCH 118/196] fix: installed application patch
---
frappe/patches.txt | 2 +-
frappe/patches/v16_0/enable_setup_complete.py | 41 +++++++++++++------
2 files changed, 30 insertions(+), 13 deletions(-)
diff --git a/frappe/patches.txt b/frappe/patches.txt
index b2c8d7e0d6..074c422ab7 100644
--- a/frappe/patches.txt
+++ b/frappe/patches.txt
@@ -1,5 +1,5 @@
[pre_model_sync]
-frappe.patches.v16_0.enable_setup_complete #25-06-2025
+frappe.patches.v16_0.enable_setup_complete #25-06-2025 re-run-patch
frappe.patches.v15_0.remove_implicit_primary_key
frappe.patches.v12_0.remove_deprecated_fields_from_doctype #3
execute:frappe.utils.global_search.setup_global_search_table()
diff --git a/frappe/patches/v16_0/enable_setup_complete.py b/frappe/patches/v16_0/enable_setup_complete.py
index f07363bb2c..46c94aac8d 100644
--- a/frappe/patches/v16_0/enable_setup_complete.py
+++ b/frappe/patches/v16_0/enable_setup_complete.py
@@ -11,11 +11,12 @@ def execute():
):
is_setup_complete = 1
- installed_apps = frappe.get_installed_apps(_ensure_on_bench=True)
- for app_name in frappe.get_all("Installed Application", pluck="app_name"):
- if app_name not in installed_apps:
- continue
+ apps_details = frappe._dict({})
+ for details in frappe.utils.get_installed_apps_info():
+ apps_details[details.get("app_name")] = details
+ installed_apps = frappe.get_installed_apps(_ensure_on_bench=True)
+ for app_name in installed_apps:
has_setup_wizard = 0
if app_name == "frappe":
has_setup_wizard = 1
@@ -23,11 +24,27 @@ def execute():
has_setup_wizard = 1
if has_setup_wizard:
- frappe.db.set_value(
- "Installed Application",
- {"app_name": app_name},
- {
- "has_setup_wizard": 1,
- "is_setup_complete": is_setup_complete,
- },
- )
+ if not frappe.db.exists("Installed Application", {"app_name": app_name}):
+ apps_detail = apps_details.get(app_name, {})
+
+ frappe.get_doc(
+ {
+ "doctype": "Installed Application",
+ "app_name": app_name,
+ "has_setup_wizard": 1,
+ "is_setup_complete": 1,
+ "app_version": apps_detail.get("version", ""),
+ "git_branch": apps_detail.get("branch", ""),
+ "parent": "Installed Applications",
+ "parenttype": "installed_applications",
+ }
+ ).insert(ignore_permissions=True)
+ else:
+ frappe.db.set_value(
+ "Installed Application",
+ {"app_name": app_name},
+ {
+ "has_setup_wizard": 1,
+ "is_setup_complete": is_setup_complete,
+ },
+ )
From ee51d37600ba166f7ab6504840bc892c880a6dea Mon Sep 17 00:00:00 2001
From: Gavin D'souza
Date: Wed, 25 Jun 2025 09:17:06 +0200
Subject: [PATCH 119/196] fix: Apply force cache busting only for site assets
Don't apply `v` searchParam override for `frappe.require` calls that
fetch assets from say - CDNs or external mechanisms that usually handle
this themselves via URLs & cache control headers.
(cherry picked from commit 41dee1c7e036d6f43e0346df1ec10d24de21c020)
---
frappe/public/js/frappe/assets.js | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/frappe/public/js/frappe/assets.js b/frappe/public/js/frappe/assets.js
index 48df3baa2e..cde8715c23 100644
--- a/frappe/public/js/frappe/assets.js
+++ b/frappe/public/js/frappe/assets.js
@@ -93,10 +93,14 @@ class AssetManager {
let fetched_assets = {};
async function fetch_item(path) {
- // Add the version to the URL to bust the cache for non-bundled assets
let url = new URL(path, window.location.origin);
- if (!path.includes(".bundle.") && !url.searchParams.get("v")) {
+ // Add the version to the URL to bust the cache for non-bundled assets
+ if (
+ url.hostname === window.location.hostname &&
+ !path.includes(".bundle.") &&
+ !url.searchParams.get("v")
+ ) {
url.searchParams.append("v", version_string);
}
const response = await fetch(url.toString());
From 2a1d3dd474b82f14250337a66149379f93b404ee Mon Sep 17 00:00:00 2001
From: Ankush Menat
Date: Thu, 26 Jun 2025 11:55:14 +0530
Subject: [PATCH 120/196] fix: Unnecessary migration from hard-coded
not-nullable fields (#33107)
---
frappe/database/schema.py | 14 +++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)
diff --git a/frappe/database/schema.py b/frappe/database/schema.py
index 571313dc68..005064cae4 100644
--- a/frappe/database/schema.py
+++ b/frappe/database/schema.py
@@ -175,6 +175,9 @@ class DBTable:
pass
+NOT_NULL_TYPES = ("Check", "Int", "Currency", "Float", "Percent")
+
+
class DbColumn:
def __init__(
self,
@@ -216,13 +219,14 @@ class DbColumn:
default = None
unique = False
+ if self.fieldtype in NOT_NULL_TYPES:
+ null = False
+
if self.fieldtype in ("Check", "Int"):
default = cint(self.default)
- null = False
elif self.fieldtype in ("Currency", "Float", "Percent"):
default = flt(self.default)
- null = False
elif (
self.default
@@ -289,7 +293,11 @@ class DbColumn:
self.table.set_default.append(self)
# nullability
- if self.not_nullable is not None and (self.not_nullable != current_def.get("not_nullable")):
+ if (
+ self.not_nullable is not None
+ and (self.not_nullable != current_def.get("not_nullable"))
+ and self.fieldtype not in NOT_NULL_TYPES
+ ):
self.table.change_nullability.append(self)
# index should be applied or dropped irrespective of type change
From 40b465ee0d73123d7c4191a628f0a3f118ed2fc9 Mon Sep 17 00:00:00 2001
From: Ankush Menat
Date: Thu, 26 Jun 2025 12:19:44 +0530
Subject: [PATCH 121/196] fix: Avoid unnecessary syncing defaults (#33108)
When default is `'0.0000'` (string) it gets synced again and again even
though it will end up being 0 again.
---
frappe/database/schema.py | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/frappe/database/schema.py b/frappe/database/schema.py
index 005064cae4..400242ad72 100644
--- a/frappe/database/schema.py
+++ b/frappe/database/schema.py
@@ -332,7 +332,13 @@ class DbColumn:
def default_changed_for_decimal(self, current_def):
try:
if current_def["default"] in ("", None) and self.default in ("", None):
- # both none, empty
+ return False
+
+ elif (
+ current_def["default"]
+ and float(current_def["default"]) == 0.0
+ and self.default in ("", None, 0.0)
+ ):
return False
elif current_def["default"] in ("", None):
From 02ee722e5af894a2b621db3e43a77f54fe6d5088 Mon Sep 17 00:00:00 2001
From: Ankush Menat
Date: Thu, 26 Jun 2025 12:39:44 +0530
Subject: [PATCH 122/196] fix: Avoid unnecessary int/long-int migrations
(#33109)
Because size wasn't specified it kept syncing over and over again.
Specified default sizes for mariadb.
---
frappe/database/mariadb/database.py | 4 ++--
frappe/database/mariadb/mysqlclient.py | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/frappe/database/mariadb/database.py b/frappe/database/mariadb/database.py
index 5cfe4a3fbf..35bb2335ad 100644
--- a/frappe/database/mariadb/database.py
+++ b/frappe/database/mariadb/database.py
@@ -165,11 +165,11 @@ class MariaDBDatabase(MariaDBConnectionUtil, MariaDBExceptionUtil, Database):
self.db_type = "mariadb"
self.type_map = {
"Currency": ("decimal", "21,9"),
- "Int": ("int", None),
+ "Int": ("int", "11"),
"Long Int": ("bigint", "20"),
"Float": ("decimal", "21,9"),
"Percent": ("decimal", "21,9"),
- "Check": ("tinyint", None),
+ "Check": ("tinyint", 4),
"Small Text": ("text", ""),
"Long Text": ("longtext", ""),
"Code": ("longtext", ""),
diff --git a/frappe/database/mariadb/mysqlclient.py b/frappe/database/mariadb/mysqlclient.py
index 5f16c74a24..657f6dbf30 100644
--- a/frappe/database/mariadb/mysqlclient.py
+++ b/frappe/database/mariadb/mysqlclient.py
@@ -198,11 +198,11 @@ class MariaDBDatabase(MariaDBConnectionUtil, MariaDBExceptionUtil, Database):
self.db_type = "mariadb"
self.type_map = {
"Currency": ("decimal", "21,9"),
- "Int": ("int", None),
+ "Int": ("int", "11"),
"Long Int": ("bigint", "20"),
"Float": ("decimal", "21,9"),
"Percent": ("decimal", "21,9"),
- "Check": ("tinyint", None),
+ "Check": ("tinyint", "4"),
"Small Text": ("text", ""),
"Long Text": ("longtext", ""),
"Code": ("longtext", ""),
From 627516711da3e4b373b2a0b9de97d6c68935b62a Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Thu, 26 Jun 2025 14:30:40 +0530
Subject: [PATCH 123/196] fix: remove explicit call to add `migration_hash`
column
---
frappe/migrate.py | 2 --
1 file changed, 2 deletions(-)
diff --git a/frappe/migrate.py b/frappe/migrate.py
index ad44316772..9d64e8a842 100644
--- a/frappe/migrate.py
+++ b/frappe/migrate.py
@@ -78,8 +78,6 @@ class SiteMigration:
frappe.flags.touched_tables = set()
self.touched_tables_file = frappe.get_site_path("touched_tables.json")
frappe.clear_cache()
- add_column(doctype="DocType", column_name="migration_hash", fieldtype="Data")
- frappe.clear_cache()
if os.path.exists(self.touched_tables_file):
os.remove(self.touched_tables_file)
From 8d47138504a89063eb088d75ca47f5ef7c37d751 Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Thu, 26 Jun 2025 15:13:46 +0530
Subject: [PATCH 124/196] fix: update print heading doctype
---
frappe/printing/doctype/print_heading/print_heading.json | 8 +++++---
frappe/printing/doctype/print_heading/test_records.json | 5 +++++
2 files changed, 10 insertions(+), 3 deletions(-)
create mode 100644 frappe/printing/doctype/print_heading/test_records.json
diff --git a/frappe/printing/doctype/print_heading/print_heading.json b/frappe/printing/doctype/print_heading/print_heading.json
index 360aeaa071..07177a8388 100644
--- a/frappe/printing/doctype/print_heading/print_heading.json
+++ b/frappe/printing/doctype/print_heading/print_heading.json
@@ -37,10 +37,11 @@
"icon": "fa fa-font",
"idx": 1,
"links": [],
- "modified": "2024-03-23 16:03:35.269553",
+ "modified": "2025-06-26 05:40:55.559700",
"modified_by": "Administrator",
"module": "Printing",
"name": "Print Heading",
+ "naming_rule": "By fieldname",
"owner": "Administrator",
"permissions": [
{
@@ -56,12 +57,13 @@
},
{
"read": 1,
- "role": "All"
+ "role": "Desk User"
}
],
"quick_entry": 1,
+ "row_format": "Dynamic",
"search_fields": "print_heading",
"sort_field": "creation",
"sort_order": "DESC",
"states": []
-}
\ No newline at end of file
+}
diff --git a/frappe/printing/doctype/print_heading/test_records.json b/frappe/printing/doctype/print_heading/test_records.json
new file mode 100644
index 0000000000..479c38ad98
--- /dev/null
+++ b/frappe/printing/doctype/print_heading/test_records.json
@@ -0,0 +1,5 @@
+[
+ {
+ "print_heading": "_Test Print Heading"
+ }
+]
\ No newline at end of file
From 56c7295b8c88c2cf197cc5838943b6751a49ee32 Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Thu, 26 Jun 2025 10:21:03 +0000
Subject: [PATCH 125/196] perf: commit only if file is imported (#33114)
---
frappe/model/sync.py | 5 +++--
frappe/modules/import_file.py | 6 ++++--
2 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/frappe/model/sync.py b/frappe/model/sync.py
index 445f06dc41..72d644cd0b 100644
--- a/frappe/model/sync.py
+++ b/frappe/model/sync.py
@@ -109,11 +109,12 @@ def sync_for(app_name, force=0, reset_permissions=False):
if l:
for i, doc_path in enumerate(files):
- import_file_by_path(
+ imported = import_file_by_path(
doc_path, force=force, ignore_version=True, reset_permissions=reset_permissions
)
- frappe.db.commit()
+ if imported:
+ frappe.db.commit(chain=True)
# show progress bar
update_progress_bar(f"Updating DocTypes for {app_name}", i, l)
diff --git a/frappe/modules/import_file.py b/frappe/modules/import_file.py
index 433daa926f..336652d5b7 100644
--- a/frappe/modules/import_file.py
+++ b/frappe/modules/import_file.py
@@ -108,9 +108,10 @@ def import_file_by_path(
docs = read_doc_from_file(path)
except OSError:
print(f"{path} missing")
- return
+ return False
calculated_hash = calculate_hash(path)
+ imported = False
if docs:
if not isinstance(docs, list):
@@ -147,6 +148,7 @@ def import_file_by_path(
reset_permissions=reset_permissions,
path=path,
)
+ imported = True
if doc["doctype"] == "DocType":
doctype_table = DocType("DocType")
@@ -163,7 +165,7 @@ def import_file_by_path(
if new_modified_timestamp:
update_modified(new_modified_timestamp, doc)
- return True
+ return imported
def read_doc_from_file(path):
From 1a1dc0a62c992be9a1b71ece9936f15468ad169c Mon Sep 17 00:00:00 2001
From: Ankush Menat
Date: Thu, 26 Jun 2025 16:01:55 +0530
Subject: [PATCH 126/196] fix: more bad migrations and sanity test (#33112)
* test: prevent unnecessary migrations
* fix: Avoid resyncing JSON repeatedly
* fix: Varchar not nullable defaults should be casted
* fix: force cast to float before
Bad default values cause it to break.
---
frappe/database/schema.py | 16 ++++++++++++----
frappe/tests/classes/integration_test_case.py | 5 ++++-
frappe/tests/test_db_update.py | 10 ++++++++++
3 files changed, 26 insertions(+), 5 deletions(-)
diff --git a/frappe/database/schema.py b/frappe/database/schema.py
index 400242ad72..f10a94df50 100644
--- a/frappe/database/schema.py
+++ b/frappe/database/schema.py
@@ -275,7 +275,10 @@ class DbColumn:
return
# type
- if current_def["type"] != column_type:
+ if current_def["type"] != column_type and not (
+ # XXX: MariaDB JSON is same as longtext and information schema still returns longtext
+ current_def["type"] == "longtext" and column_type == "json" and frappe.db.db_type == "mariadb"
+ ):
self.table.change_type.append(self)
# unique
@@ -313,20 +316,25 @@ class DbColumn:
else:
cur_default = current_def.get("default")
new_default = self.default
- if cur_default == "NULL" or cur_default is None:
+ if cur_default == "NULL":
cur_default = None
else:
# Strip quotes from default value
# eg. database returns default value as "'System Manager'"
- cur_default = cur_default.lstrip("'").rstrip("'")
+ cur_default = cur_default.lstrip("'").rstrip("'").replace("\\\\", "\\")
fieldtype = self.fieldtype
+ db_field_type = frappe.db.type_map.get(fieldtype)
if fieldtype in ["Int", "Check"]:
cur_default = cint(cur_default)
new_default = cint(new_default)
elif fieldtype in ["Currency", "Float", "Percent"]:
cur_default = flt(cur_default)
new_default = flt(new_default)
+ elif db_field_type and db_field_type[0] in ("varchar", "longtext", "text"):
+ new_default = cstr(new_default)
+ if not current_def.get("not_nullable"):
+ cur_default = cstr(cur_default)
return cur_default != new_default
def default_changed_for_decimal(self, current_def):
@@ -336,7 +344,7 @@ class DbColumn:
elif (
current_def["default"]
- and float(current_def["default"]) == 0.0
+ and flt(current_def["default"]) == 0.0
and self.default in ("", None, 0.0)
):
return False
diff --git a/frappe/tests/classes/integration_test_case.py b/frappe/tests/classes/integration_test_case.py
index ecb2a47e29..07e82a8992 100644
--- a/frappe/tests/classes/integration_test_case.py
+++ b/frappe/tests/classes/integration_test_case.py
@@ -4,6 +4,7 @@ from contextlib import AbstractContextManager, contextmanager
from types import MappingProxyType
import frappe
+from frappe.database.utils import get_query_type
from frappe.utils import cint
from ..utils.generators import get_missing_records_module_overrides, make_test_records
@@ -112,7 +113,7 @@ class IntegrationTestCase(UnitTestCase):
self._secondary_connection.rollback()
@contextmanager
- def assertQueryCount(self, count: int) -> AbstractContextManager[None]:
+ def assertQueryCount(self, count: int, query_type: tuple[str] | None = None):
queries = []
def _sql_with_count(*args, **kwargs):
@@ -124,6 +125,8 @@ class IntegrationTestCase(UnitTestCase):
orig_sql = frappe.db.__class__.sql
frappe.db.__class__.sql = _sql_with_count
yield
+ if query_type:
+ queries = [q for q in queries if get_query_type(q) in query_type]
self.assertLessEqual(len(queries), count, msg="Queries executed: \n" + "\n\n".join(queries))
finally:
frappe.db.__class__.sql = orig_sql
diff --git a/frappe/tests/test_db_update.py b/frappe/tests/test_db_update.py
index a62a6433a9..971243293d 100644
--- a/frappe/tests/test_db_update.py
+++ b/frappe/tests/test_db_update.py
@@ -175,6 +175,16 @@ class TestDBUpdate(IntegrationTestCase):
self.assertEqual(frappe.db.get_column_type(referring_doctype.name, link), "uuid")
+class TestDBUpdateSanityChecks(IntegrationTestCase):
+ @run_only_if(db_type_is.MARIADB)
+ def test_no_unnecessary_migrates(self):
+ for doctype in frappe.get_all("DocType", {"is_virtual": 0, "custom": 0}, pluck="name"):
+ with self.subTest(f"Check {doctype}"):
+ frappe.reload_doctype(doctype, force=True)
+ with self.assertQueryCount(0, query_type=("alter",)):
+ frappe.reload_doctype(doctype, force=True)
+
+
def get_fieldtype_from_def(field_def):
fieldtuple = frappe.db.type_map.get(field_def.fieldtype, ("", 0))
fieldtype = fieldtuple[0]
From b857a4099a110603e03f973f335a63de00a03eb7 Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Sat, 21 Jun 2025 21:44:11 +0530
Subject: [PATCH 127/196] perf: use `orjson` for faster request processing
---
frappe/__init__.py | 3 ++-
frappe/app.py | 5 ++---
frappe/utils/response.py | 33 ++++++++++++++++++++++-----------
pyproject.toml | 1 +
4 files changed, 27 insertions(+), 15 deletions(-)
diff --git a/frappe/__init__.py b/frappe/__init__.py
index 8f5e2c436f..4f8e8b6e88 100644
--- a/frappe/__init__.py
+++ b/frappe/__init__.py
@@ -34,6 +34,7 @@ from typing import (
)
import click
+import orjson
from werkzeug.datastructures import Headers
import frappe
@@ -1265,7 +1266,7 @@ def get_installed_apps(*, _ensure_on_bench: bool = False) -> list[str]:
if not db:
connect()
- installed = json.loads(db.get_global("installed_apps") or "[]")
+ installed = orjson.loads(db.get_global("installed_apps") or "[]")
if _ensure_on_bench:
all_apps = cache.get_value("all_apps", get_all_apps)
diff --git a/frappe/app.py b/frappe/app.py
index 04e06171ef..1bad66a891 100644
--- a/frappe/app.py
+++ b/frappe/app.py
@@ -5,6 +5,7 @@ import functools
import logging
import os
+import orjson
from werkzeug.exceptions import HTTPException, NotFound
from werkzeug.middleware.profiler import ProfilerMiddleware
from werkzeug.middleware.proxy_fix import ProxyFix
@@ -297,11 +298,9 @@ def set_cors_headers(response):
def make_form_dict(request: Request):
- import json
-
request_data = request.get_data(as_text=True)
if request_data and request.is_json:
- args = json.loads(request_data)
+ args = orjson.loads(request_data)
else:
args = {}
args.update(request.args or {})
diff --git a/frappe/utils/response.py b/frappe/utils/response.py
index dac5237c76..77ce8364f0 100644
--- a/frappe/utils/response.py
+++ b/frappe/utils/response.py
@@ -2,18 +2,19 @@
# License: MIT. See LICENSE
import datetime
-import decimal
-import json
+import functools
import mimetypes
import os
import sys
-import uuid
from collections.abc import Iterable
+from decimal import Decimal
from pathlib import Path
from re import Match
from typing import TYPE_CHECKING
from urllib.parse import quote
+from uuid import UUID
+import orjson
import werkzeug.utils
from werkzeug.exceptions import Forbidden, NotFound
from werkzeug.local import LocalProxy
@@ -32,6 +33,7 @@ if TYPE_CHECKING:
from frappe.core.doctype.file.file import File
DateOrTimeTypes = datetime.date | datetime.datetime | datetime.time
+timedelta = datetime.timedelta
def report_error(status_code):
@@ -148,7 +150,7 @@ def as_json():
del frappe.local.response["http_status_code"]
response.mimetype = "application/json"
- response.data = json.dumps(frappe.local.response, default=json_handler, separators=(",", ":"))
+ response.data = dump_response(frappe.local.response)
return response
@@ -191,13 +193,15 @@ def _make_logs_v1():
if frappe.error_log and is_traceback_allowed():
if source := guess_exception_source(frappe.local.error_log and frappe.local.error_log[0]["exc"]):
response["_exc_source"] = source
- response["exc"] = json.dumps([frappe.utils.cstr(d["exc"]) for d in frappe.local.error_log])
+ response["exc"] = orjson.dumps([frappe.utils.cstr(d["exc"]) for d in frappe.local.error_log]).decode()
if frappe.local.message_log:
- response["_server_messages"] = json.dumps([json.dumps(d) for d in frappe.local.message_log])
+ response["_server_messages"] = orjson.dumps(
+ [orjson.dumps(d).decode() for d in frappe.local.message_log]
+ ).decode()
if frappe.debug_log:
- response["_debug_messages"] = json.dumps(frappe.local.debug_log)
+ response["_debug_messages"] = orjson.dumps(frappe.local.debug_log).decode()
if frappe.flags.error_message:
response["_error_message"] = frappe.flags.error_message
@@ -219,7 +223,7 @@ def json_handler(obj):
if isinstance(obj, DateOrTimeTypes):
return str(obj)
- elif isinstance(obj, datetime.timedelta):
+ elif isinstance(obj, timedelta):
return format_timedelta(obj)
elif isinstance(obj, LocalProxy):
@@ -231,7 +235,7 @@ def json_handler(obj):
elif isinstance(obj, Iterable):
return list(obj)
- elif isinstance(obj, decimal.Decimal):
+ elif isinstance(obj, Decimal):
return float(obj)
elif isinstance(obj, Match):
@@ -243,16 +247,23 @@ def json_handler(obj):
elif callable(obj):
return repr(obj)
- elif isinstance(obj, uuid.UUID):
+ elif isinstance(obj, Path):
return str(obj)
- elif isinstance(obj, Path):
+ # orjson does this already
+ # but json_handler needs to be compatible with built-in json module also
+ elif isinstance(obj, UUID):
return str(obj)
else:
raise TypeError(f"""Object of type {type(obj)} with value of {obj!r} is not JSON serializable""")
+dump_response = functools.partial(
+ orjson.dumps, default=json_handler, option=orjson.OPT_PASSTHROUGH_DATETIME | orjson.OPT_NON_STR_KEYS
+)
+
+
def as_page():
"""print web page"""
from frappe.website.serve import get_response
diff --git a/pyproject.toml b/pyproject.toml
index d9fcd21a32..8187e872e2 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -47,6 +47,7 @@ dependencies = [
"num2words~=0.5.14",
"oauthlib~=3.2.2",
"openpyxl~=3.1.5",
+ "orjson~=3.10.18",
"passlib~=1.7.4",
"pdfkit~=1.0.0",
"phonenumbers~=9.0.7",
From cda7699187ce2d9e488255797c82060c43e8ae68 Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Tue, 24 Jun 2025 12:12:25 +0530
Subject: [PATCH 128/196] perf: use `orjson` in utils
---
frappe/utils/__init__.py | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/frappe/utils/__init__.py b/frappe/utils/__init__.py
index a9bdee4d1a..0bc0666922 100644
--- a/frappe/utils/__init__.py
+++ b/frappe/utils/__init__.py
@@ -21,6 +21,7 @@ from email.header import decode_header, make_header
from email.utils import formataddr, parseaddr
from typing import Any, Generic, TypeAlias, TypedDict
+import orjson
from werkzeug.test import Client
from frappe.deprecation_dumpster import gzip_compress, gzip_decompress, make_esc
@@ -830,7 +831,7 @@ def get_site_info():
site_info.update(frappe.get_attr(method_name)(site_info) or {})
# dumps -> loads to prevent datatype conflicts
- return json.loads(frappe.as_json(site_info))
+ return orjson.loads(frappe.as_json(site_info))
def parse_json(val: str):
@@ -838,7 +839,7 @@ def parse_json(val: str):
Parses json if string else return
"""
if isinstance(val, str):
- val = json.loads(val)
+ val = orjson.loads(val)
if isinstance(val, dict):
val = frappe._dict(val)
return val
@@ -862,7 +863,7 @@ def get_db_count(*args):
for doctype in args:
db_count[doctype] = frappe.db.count(doctype)
- return json.loads(frappe.as_json(db_count))
+ return orjson.loads(frappe.as_json(db_count))
def call(fn, *args, **kwargs):
@@ -878,12 +879,12 @@ def call(fn, *args, **kwargs):
via terminal:
bench --site erpnext.local execute frappe.utils.call --args '''["frappe.get_all", "Activity Log"]''' --kwargs '''{"fields": ["user", "creation", "full_name"], "filters":{"Operation": "Login", "Status": "Success"}, "limit": "10"}'''
"""
- return json.loads(frappe.as_json(frappe.call(fn, *args, **kwargs)))
+ return orjson.loads(frappe.as_json(frappe.call(fn, *args, **kwargs)))
def get_safe_filters(filters):
try:
- filters = json.loads(filters)
+ filters = orjson.loads(filters)
if isinstance(filters, int | float):
filters = frappe.as_unicode(filters)
@@ -1043,7 +1044,7 @@ def safe_json_loads(*args):
for arg in args:
try:
- arg = json.loads(arg)
+ arg = orjson.loads(arg)
except Exception:
pass
From 2e5c8bea03871f3d71c34b56c6f8246a1e00ccf5 Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Thu, 26 Jun 2025 17:33:08 +0530
Subject: [PATCH 129/196] feat: `frappe.utils.orjson_dumps`
---
frappe/templates/base.html | 2 +-
frappe/utils/__init__.py | 11 ------
frappe/utils/data.py | 36 ++++++++++++++++++-
frappe/utils/response.py | 9 ++---
frappe/utils/safe_exec.py | 11 ++++++
.../doctype/web_form/templates/web_form.html | 2 +-
.../doctype/web_form/templates/web_list.html | 4 +--
frappe/www/app.html | 2 +-
8 files changed, 53 insertions(+), 24 deletions(-)
diff --git a/frappe/templates/base.html b/frappe/templates/base.html
index 02753571b1..8dd3f12a47 100644
--- a/frappe/templates/base.html
+++ b/frappe/templates/base.html
@@ -95,7 +95,7 @@
{% block base_scripts %}
diff --git a/frappe/utils/__init__.py b/frappe/utils/__init__.py
index 0bc0666922..aef04764b3 100644
--- a/frappe/utils/__init__.py
+++ b/frappe/utils/__init__.py
@@ -834,17 +834,6 @@ def get_site_info():
return orjson.loads(frappe.as_json(site_info))
-def parse_json(val: str):
- """
- Parses json if string else return
- """
- if isinstance(val, str):
- val = orjson.loads(val)
- if isinstance(val, dict):
- val = frappe._dict(val)
- return val
-
-
def get_db_count(*args):
"""
Pass a doctype or a series of doctypes to get the count of docs in them.
diff --git a/frappe/utils/data.py b/frappe/utils/data.py
index 12dbe8cbb3..ee01baa036 100644
--- a/frappe/utils/data.py
+++ b/frappe/utils/data.py
@@ -19,6 +19,7 @@ from typing import Any, Literal, Optional, TypeVar
from urllib.parse import parse_qsl, quote, urlencode, urljoin, urlparse, urlunparse
from zoneinfo import ZoneInfo, ZoneInfoNotFoundError
+import orjson
from click import secho
from dateutil import parser
from dateutil.parser import ParserError
@@ -82,6 +83,15 @@ DURATION_PATTERN = re.compile(r"^(?:(\d+d)?((^|\s)\d+h)?((^|\s)\d+m)?((^|\s)\d+s
HTML_TAG_PATTERN = re.compile("<[^>]+>")
MARIADB_SPECIFIC_COMMENT = re.compile(r"#.*")
+# these options are necessary to use orjson with frappe
+#
+# OPT_PASSTHROUGH_DATETIME allows datetime objects to be passed through
+# to the default function without conversion by orjson
+# frappe converts datetime objects differently (__str__) from orjson (RFC 3339)
+#
+# OPT_NON_STR_KEYS slightly reduces performance of orjson, but allows for non-string keys in dicts
+DEFAULT_ORJSON_OPTIONS = orjson.OPT_PASSTHROUGH_DATETIME | orjson.OPT_NON_STR_KEYS
+
class Weekday(Enum):
Sunday = 0
@@ -2439,11 +2449,35 @@ def guess_date_format(date_string: str) -> str:
def validate_json_string(string: str) -> None:
try:
- json.loads(string)
+ orjson.loads(string)
except (TypeError, ValueError):
raise frappe.ValidationError
+def parse_json(val: str):
+ """
+ Parses json if string else return
+ """
+ if isinstance(val, str):
+ val = orjson.loads(val)
+ if isinstance(val, dict):
+ val = frappe._dict(val)
+ return val
+
+
+def orjson_dumps(obj, default=None, option=None, decode=True):
+ """A wrapper around `orjson.dumps`, with some default options set"""
+
+ if option is not None:
+ # user defined options are merged with the default options
+ option = option | DEFAULT_ORJSON_OPTIONS
+ else:
+ option = DEFAULT_ORJSON_OPTIONS
+
+ value = orjson.dumps(obj, default, option)
+ return value.decode() if decode else value
+
+
class _UserInfo(typing.TypedDict):
email: str
image: str | None
diff --git a/frappe/utils/response.py b/frappe/utils/response.py
index 77ce8364f0..4265ac64e9 100644
--- a/frappe/utils/response.py
+++ b/frappe/utils/response.py
@@ -27,7 +27,7 @@ import frappe.sessions
import frappe.utils
from frappe import _
from frappe.core.doctype.access_log.access_log import make_access_log
-from frappe.utils import format_timedelta
+from frappe.utils import format_timedelta, orjson_dumps
if TYPE_CHECKING:
from frappe.core.doctype.file.file import File
@@ -150,7 +150,7 @@ def as_json():
del frappe.local.response["http_status_code"]
response.mimetype = "application/json"
- response.data = dump_response(frappe.local.response)
+ response.data = orjson_dumps(frappe.local.response, default=json_handler)
return response
@@ -259,11 +259,6 @@ def json_handler(obj):
raise TypeError(f"""Object of type {type(obj)} with value of {obj!r} is not JSON serializable""")
-dump_response = functools.partial(
- orjson.dumps, default=json_handler, option=orjson.OPT_PASSTHROUGH_DATETIME | orjson.OPT_NON_STR_KEYS
-)
-
-
def as_page():
"""print web page"""
from frappe.website.serve import get_response
diff --git a/frappe/utils/safe_exec.py b/frappe/utils/safe_exec.py
index 6cbc9201af..3b89408bcb 100644
--- a/frappe/utils/safe_exec.py
+++ b/frappe/utils/safe_exec.py
@@ -11,6 +11,7 @@ from itertools import chain
from types import FunctionType, MethodType, ModuleType
from typing import TYPE_CHECKING, Any
+import orjson
import RestrictedPython.Guards
from RestrictedPython import PrintCollector, compile_restricted, safe_globals
from RestrictedPython.transformer import RestrictingNodeTransformer
@@ -31,6 +32,7 @@ from frappe.model.rename_doc import rename_doc
from frappe.modules import scrub
from frappe.utils.background_jobs import enqueue, get_jobs
from frappe.utils.number_format import NumberFormat
+from frappe.utils.response import json_handler
from frappe.website.utils import get_next_link, get_toc
from frappe.www.printview import get_visible_columns
@@ -189,6 +191,7 @@ def get_safe_globals():
out = NamespaceDict(
# make available limited methods of frappe
json=NamespaceDict(loads=json.loads, dumps=json.dumps),
+ orjson=SAFE_ORJSON,
as_json=frappe.as_json,
dict=dict,
log=frappe.log,
@@ -278,6 +281,7 @@ def get_safe_globals():
get_html_content_based_on_type=frappe.website.utils.get_html_content_based_on_type,
),
lang=getattr(frappe.local, "lang", "en"),
+ json_handler=json_handler,
),
FrappeClient=FrappeClient,
style=frappe._dict(border_color="#d1d8dd"),
@@ -715,6 +719,8 @@ VALID_UTILS = (
"get_abbr",
"get_month",
"sha256_hash",
+ "parse_json",
+ "orjson_dumps",
)
@@ -729,3 +735,8 @@ WHITELISTED_SAFE_EVAL_GLOBALS = {
"_getiter_": iter,
"_iter_unpack_sequence_": RestrictedPython.Guards.guarded_iter_unpack_sequence,
}
+
+SAFE_ORJSON = NamespaceDict(loads=orjson.loads, dumps=orjson.dumps)
+for key, val in vars(orjson).items():
+ if key.startswith("OPT_"):
+ SAFE_ORJSON[key] = val
diff --git a/frappe/website/doctype/web_form/templates/web_form.html b/frappe/website/doctype/web_form/templates/web_form.html
index 48f22fa646..876e3d280b 100644
--- a/frappe/website/doctype/web_form/templates/web_form.html
+++ b/frappe/website/doctype/web_form/templates/web_form.html
@@ -163,7 +163,7 @@
{% block script %}
@@ -41,4 +41,4 @@
{{ custom_css }}
{% endif %}
-{% endblock %}
\ No newline at end of file
+{% endblock %}
diff --git a/frappe/www/app.html b/frappe/www/app.html
index 4f6d64ec4c..ec4cb99974 100644
--- a/frappe/www/app.html
+++ b/frappe/www/app.html
@@ -51,7 +51,7 @@
if (!window.frappe) window.frappe = {};
- frappe.boot = {{ boot | json }};
+ frappe.boot = {{ frappe.utils.orjson_dumps(boot, default=frappe.json_handler) }};
frappe._messages = frappe.boot["__messages"];
frappe.csrf_token = "{{ csrf_token }}";
From 7660f59c319c418b18e76b23d30b4cf92e6e760e Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Thu, 26 Jun 2025 17:37:24 +0530
Subject: [PATCH 130/196] perf(import_file): use `orjson.loads`
---
frappe/modules/import_file.py | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/frappe/modules/import_file.py b/frappe/modules/import_file.py
index 336652d5b7..eb8f53d0b6 100644
--- a/frappe/modules/import_file.py
+++ b/frappe/modules/import_file.py
@@ -1,9 +1,10 @@
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
# License: MIT. See LICENSE
import hashlib
-import json
import os
+import orjson
+
import frappe
from frappe.model.base_document import get_controller
from frappe.modules import get_module_path, scrub_dt_dn
@@ -173,7 +174,7 @@ def read_doc_from_file(path):
if os.path.exists(path):
with open(path) as f:
try:
- doc = json.loads(f.read())
+ doc = orjson.loads(f.read())
except ValueError:
print(f"bad json: {path}")
raise
From 4815b419152972d1de7865ab5711fd0c42060e08 Mon Sep 17 00:00:00 2001
From: GoravG <127304341+GoravG@users.noreply.github.com>
Date: Thu, 26 Jun 2025 17:55:00 +0530
Subject: [PATCH 131/196] chore(readme): changed frappe.dev to frappe.local in
local developement setup (#33104)
* changed frappe.dev to frappe.local in local developement setup documentation
* changed frappe.local to frappe.localhost and removed add-to-host as it is no longer required
---
README.md | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/README.md b/README.md
index 411a07072b..39bf1fa222 100644
--- a/README.md
+++ b/README.md
@@ -103,13 +103,10 @@ To setup the repository locally follow the steps mentioned below:
2. In a separate terminal window, run the following commands:
```
# Create a new site
- bench new-site frappe.dev
-
- # Map your site to localhost
- bench --site frappe.dev add-to-hosts
+ bench new-site frappe.localhost
```
-3. Open the URL `http://frappe.dev:8000/app` in your browser, you should see the app running
+3. Open the URL `http://frappe.localhost:8000/app` in your browser, you should see the app running
## Learning and community
From 3e227b4cc48b6ebbbb06fca103d2fc1768047bb7 Mon Sep 17 00:00:00 2001
From: sokumon
Date: Thu, 26 Jun 2025 22:00:44 +0530
Subject: [PATCH 132/196] fix: move patch to post model sync
---
frappe/patches.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/frappe/patches.txt b/frappe/patches.txt
index 0519025e88..1a39a7f219 100644
--- a/frappe/patches.txt
+++ b/frappe/patches.txt
@@ -195,7 +195,6 @@ frappe.patches.v15_0.copy_disable_prepared_report_to_prepared_report
execute:frappe.reload_doc("desk", "doctype", "Form Tour")
execute:frappe.delete_doc('Page', 'recorder', ignore_missing=True, force=True)
frappe.patches.v14_0.modify_value_column_size_for_singles
-frappe.patches.v15_0.migrate_to_utm
frappe.integrations.doctype.oauth_bearer_token.patches.clear_old_tokens
[post_model_sync]
@@ -246,4 +245,5 @@ frappe.patches.v16_0.move_role_desk_settings_to_user
frappe.printing.doctype.print_format.patches.sets_wkhtmltopdf_as_default_for_pdf_generator_field
frappe.patches.v14_0.fix_user_settings_collation
execute:frappe.call("frappe.core.doctype.system_settings.system_settings.sync_system_settings")
+frappe.patches.v15_0.migrate_to_utm
frappe.patches.v16_0.add_module_deprecation_warning
From 2c55b759109a0e91b1efe4da657f85db48e3905f Mon Sep 17 00:00:00 2001
From: Raffael Meyer <14891507+barredterra@users.noreply.github.com>
Date: Thu, 26 Jun 2025 20:14:24 +0200
Subject: [PATCH 133/196] fix: add context for duration field input labels
(#33127)
---
.../js/frappe/form/controls/duration.js | 20 ++++++++++++++-----
1 file changed, 15 insertions(+), 5 deletions(-)
diff --git a/frappe/public/js/frappe/form/controls/duration.js b/frappe/public/js/frappe/form/controls/duration.js
index 4369f29343..0055d925cb 100644
--- a/frappe/public/js/frappe/form/controls/duration.js
+++ b/frappe/public/js/frappe/form/controls/duration.js
@@ -20,10 +20,20 @@ frappe.ui.form.ControlDuration = class ControlDuration extends frappe.ui.form.Co
`
);
this.$wrapper.append(this.$picker);
- this.build_numeric_input("days", this.duration_options.hide_days, 0, "Days");
- this.build_numeric_input("hours", false, 0, "Hours");
- this.build_numeric_input("minutes", false, 0, "Minutes");
- this.build_numeric_input("seconds", this.duration_options.hide_seconds, 0, "Seconds");
+ this.build_numeric_input(
+ "days",
+ this.duration_options.hide_days,
+ 0,
+ __("Days", null, "Duration")
+ );
+ this.build_numeric_input("hours", false, 0, __("Hours", null, "Duration"));
+ this.build_numeric_input("minutes", false, 0, __("Minutes", null, "Duration"));
+ this.build_numeric_input(
+ "seconds",
+ this.duration_options.hide_seconds,
+ 0,
+ __("Seconds", null, "Duration")
+ );
this.set_duration_picker_value(this.value);
this.$picker.hide();
this.bind_events();
@@ -45,7 +55,7 @@ frappe.ui.form.ControlDuration = class ControlDuration extends frappe.ui.form.Co
let $control = $(`
- ${__(label)}
+ ${label}
`);
if (hidden) {
From b1cc56ff8a8715431e3f2e4ca7fc0701d1bce79d Mon Sep 17 00:00:00 2001
From: MochaMind
Date: Thu, 26 Jun 2025 23:45:36 +0530
Subject: [PATCH 134/196] fix: Thai translations (#33126)
---
frappe/locale/th.po | 7234 +++++++++++++++++++++----------------------
1 file changed, 3617 insertions(+), 3617 deletions(-)
diff --git a/frappe/locale/th.po b/frappe/locale/th.po
index 4491b9aac4..6269bb8093 100644
--- a/frappe/locale/th.po
+++ b/frappe/locale/th.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"PO-Revision-Date: 2025-06-26 17:15\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Thai\n"
"MIME-Version: 1.0\n"
@@ -59,11 +59,11 @@ 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 ""
+msgstr "${values.doctype_name} ถูกเพิ่มในคิวสำหรับการปรับปรุง"
#: frappe/public/js/frappe/ui/toolbar/about.js:8
msgid "© Frappe Technologies Pvt. Ltd. and contributors"
-msgstr ""
+msgstr "© Frappe Technologies Pvt. Ltd. และผู้ร่วมพัฒนา"
#. Label of the head_html (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -72,59 +72,59 @@ msgstr ""
#: frappe/public/js/form_builder/store.js:206
msgid "'In Global Search' is not allowed for field {0} of type {1}"
-msgstr ""
+msgstr "ในการค้นหาระดับโลก ไม่อนุญาตสำหรับฟิลด์ {0} ของประเภท {1}"
#: frappe/core/doctype/doctype/doctype.py:1354
msgid "'In Global Search' not allowed for type {0} in row {1}"
-msgstr ""
+msgstr "ในการค้นหาระดับโลก ไม่อนุญาตสำหรับประเภท {0} ในแถว {1}"
#: frappe/public/js/form_builder/store.js:198
msgid "'In List View' is not allowed for field {0} of type {1}"
-msgstr ""
+msgstr "ในมุมมองรายการ ไม่อนุญาตสำหรับฟิลด์ {0} ของประเภท {1}"
#: frappe/custom/doctype/customize_form/customize_form.py:362
msgid "'In List View' not allowed for type {0} in row {1}"
-msgstr ""
+msgstr "ในมุมมองรายการ ไม่อนุญาตสำหรับประเภท {0} ในแถว {1}"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156
msgid "'Recipients' not specified"
-msgstr ""
+msgstr "ผู้รับ ไม่ได้ระบุ"
#: frappe/utils/__init__.py:255
msgid "'{0}' is not a valid URL"
-msgstr ""
+msgstr "'{0}' ไม่ใช่ URL ที่ถูกต้อง"
#: frappe/core/doctype/doctype/doctype.py:1348
msgid "'{0}' not allowed for type {1} in row {2}"
-msgstr ""
+msgstr "'{0}' ไม่อนุญาตสำหรับประเภท {1} ในแถว {2}"
#: frappe/public/js/frappe/data_import/data_exporter.js:302
msgid "(Mandatory)"
-msgstr ""
+msgstr "(จำเป็น)"
#: frappe/model/rename_doc.py:704
msgid "** Failed: {0} to {1}: {2}"
-msgstr ""
+msgstr "** ล้มเหลว: {0} ถึง {1}: {2}"
#: frappe/public/js/frappe/list/list_settings.js:135
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111
msgid "+ Add / Remove Fields"
-msgstr ""
+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 ""
+msgstr "0 - ร่าง; 1 - ส่ง; 2 - ยกเลิก"
#. Description of the 'Priority' (Int) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "0 is highest"
-msgstr ""
+msgstr "0 คือสูงสุด"
#: frappe/public/js/frappe/form/grid_row.js:876
msgid "1 = True & 0 = False"
-msgstr ""
+msgstr "1 = จริง & 0 = เท็จ"
#. Description of the 'Fraction Units' (Int) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
@@ -134,104 +134,104 @@ msgstr ""
#: frappe/public/js/frappe/form/reminders.js:19
msgid "1 Day"
-msgstr ""
+msgstr "1 วัน"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:374
msgid "1 Google Calendar Event synced."
-msgstr ""
+msgstr "1 เหตุการณ์ Google Calendar ซิงค์แล้ว"
#: frappe/public/js/frappe/views/reports/query_report.js:953
msgid "1 Report"
-msgstr ""
+msgstr "1 รายงาน"
#: frappe/website/doctype/blog_post/blog_post.py:380
msgid "1 comment"
-msgstr ""
+msgstr "1 ความคิดเห็น"
#: frappe/tests/test_utils.py:711
msgid "1 day ago"
-msgstr ""
+msgstr "1 วันที่ผ่านมา"
#: frappe/public/js/frappe/form/reminders.js:17
msgid "1 hour"
-msgstr ""
+msgstr "1 ชั่วโมง"
#: frappe/public/js/frappe/utils/pretty_date.js:52
#: frappe/tests/test_utils.py:709
msgid "1 hour ago"
-msgstr ""
+msgstr "1 ชั่วโมงที่แล้ว"
#: frappe/public/js/frappe/utils/pretty_date.js:48
#: frappe/tests/test_utils.py:707
msgid "1 minute ago"
-msgstr ""
+msgstr "1 นาทีที่แล้ว"
#: frappe/public/js/frappe/utils/pretty_date.js:66
#: frappe/tests/test_utils.py:715
msgid "1 month ago"
-msgstr ""
+msgstr "1 เดือนที่แล้ว"
#: frappe/public/js/print_format_builder/PrintFormat.vue:3
msgid "1 of 2"
-msgstr ""
+msgstr "1 จาก 2"
#: frappe/public/js/frappe/data_import/data_exporter.js:227
msgid "1 record will be exported"
-msgstr ""
+msgstr "1 รายการจะถูกส่งออก"
#: frappe/tests/test_utils.py:706
msgid "1 second ago"
-msgstr ""
+msgstr "1 วินาทีที่แล้ว"
#: frappe/public/js/frappe/utils/pretty_date.js:62
#: frappe/tests/test_utils.py:713
msgid "1 week ago"
-msgstr ""
+msgstr "1 สัปดาห์ที่แล้ว"
#: frappe/public/js/frappe/utils/pretty_date.js:70
#: frappe/tests/test_utils.py:717
msgid "1 year ago"
-msgstr ""
+msgstr "1 ปีที่แล้ว"
#: frappe/tests/test_utils.py:710
msgid "2 hours ago"
-msgstr ""
+msgstr "2 ชั่วโมงที่แล้ว"
#: frappe/tests/test_utils.py:716
msgid "2 months ago"
-msgstr ""
+msgstr "2 เดือนที่แล้ว"
#: frappe/tests/test_utils.py:714
msgid "2 weeks ago"
-msgstr ""
+msgstr "2 สัปดาห์ที่แล้ว"
#: frappe/tests/test_utils.py:718
msgid "2 years ago"
-msgstr ""
+msgstr "2 ปีที่แล้ว"
#: frappe/tests/test_utils.py:708
msgid "3 minutes ago"
-msgstr ""
+msgstr "3 นาทีที่แล้ว"
#: frappe/public/js/frappe/form/reminders.js:16
msgid "30 minutes"
-msgstr ""
+msgstr "30 นาที"
#: frappe/public/js/frappe/form/reminders.js:18
msgid "4 hours"
-msgstr ""
+msgstr "4 ชั่วโมง"
#: frappe/public/js/frappe/data_import/data_exporter.js:37
msgid "5 Records"
-msgstr ""
+msgstr "5 รายการ"
#: frappe/tests/test_utils.py:712
msgid "5 days ago"
-msgstr ""
+msgstr "5 วันที่ผ่านมา"
#: frappe/desk/doctype/bulk_update/bulk_update.py:36
msgid "; not allowed in condition"
-msgstr ""
+msgstr "; ไม่อนุญาตในเงื่อนไข"
#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule
#. Condition'
@@ -247,7 +247,7 @@ msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:601
msgid "{0} is not a valid URL"
-msgstr ""
+msgstr "{0} ไม่ใช่ URL ที่ถูกต้อง"
#. Content of the 'Help' (HTML) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
@@ -2268,74 +2268,74 @@ msgstr ""
#: frappe/public/js/frappe/web_form/web_form.js:185
msgid "Are you sure you want to discard the changes?"
-msgstr ""
+msgstr "คุณแน่ใจหรือไม่ว่าต้องการละทิ้งการเปลี่ยนแปลง?"
#: frappe/public/js/frappe/views/reports/query_report.js:967
msgid "Are you sure you want to generate a new report?"
-msgstr ""
+msgstr "คุณแน่ใจหรือไม่ว่าต้องการสร้างรายงานใหม่?"
#: frappe/public/js/frappe/form/toolbar.js:120
msgid "Are you sure you want to merge {0} with {1}?"
-msgstr ""
+msgstr "คุณแน่ใจหรือไม่ว่าต้องการรวม {0} กับ {1}?"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:108
msgid "Are you sure you want to proceed?"
-msgstr ""
+msgstr "คุณแน่ใจหรือไม่ว่าต้องการดำเนินการต่อ?"
#: frappe/core/doctype/rq_job/rq_job_list.js:25
msgid "Are you sure you want to re-enable scheduler?"
-msgstr ""
+msgstr "คุณแน่ใจหรือไม่ว่าต้องการเปิดใช้งานตัวจัดตารางเวลาอีกครั้ง?"
#: frappe/core/doctype/communication/communication.js:163
msgid "Are you sure you want to relink this communication to {0}?"
-msgstr ""
+msgstr "คุณแน่ใจหรือไม่ว่าต้องการเชื่อมโยงการสื่อสารนี้กับ {0} อีกครั้ง?"
#: frappe/core/doctype/rq_job/rq_job_list.js:10
msgid "Are you sure you want to remove all failed jobs?"
-msgstr ""
+msgstr "คุณแน่ใจหรือไม่ว่าต้องการลบงานที่ล้มเหลวทั้งหมด?"
#: frappe/public/js/frappe/list/list_filter.js:116
msgid "Are you sure you want to remove the {0} filter?"
-msgstr ""
+msgstr "คุณแน่ใจหรือไม่ว่าต้องการลบตัวกรอง {0}?"
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:268
msgid "Are you sure you want to reset all customizations?"
-msgstr ""
+msgstr "คุณแน่ใจหรือไม่ว่าต้องการรีเซ็ตการปรับแต่งทั้งหมด?"
#: frappe/workflow/doctype/workflow/workflow.js:125
msgid "Are you sure you want to save this document?"
-msgstr ""
+msgstr "คุณแน่ใจหรือไม่ว่าต้องการบันทึกเอกสารนี้?"
#: frappe/email/doctype/newsletter/newsletter.js:60
msgid "Are you sure you want to send this newsletter now?"
-msgstr ""
+msgstr "คุณแน่ใจหรือไม่ว่าต้องการส่งจดหมายข่าวนี้ตอนนี้?"
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
-msgstr ""
+msgstr "คุณแน่ใจหรือไม่?"
#. Label of the arguments (Code) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "Arguments"
-msgstr ""
+msgstr "อาร์กิวเมนต์"
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Arial"
-msgstr ""
+msgstr "อารีอัล"
#: frappe/core/page/permission_manager/permission_manager_help.html:11
msgid "As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User."
-msgstr ""
+msgstr "เพื่อเป็นแนวทางปฏิบัติที่ดีที่สุด อย่ากำหนดกฎการอนุญาตชุดเดียวกันให้กับบทบาทที่แตกต่างกัน แต่ให้กำหนดบทบาทหลายบทบาทให้กับผู้ใช้คนเดียวกัน"
#: frappe/desk/form/assign_to.py:107
msgid "As document sharing is disabled, please give them the required permissions before assigning."
-msgstr ""
+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 ""
+msgstr "ตามคำขอของคุณ บัญชีและข้อมูลของคุณบน {0} ที่เชื่อมโยงกับอีเมล {1} ได้ถูกลบอย่างถาวร"
#. Label of the assign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
@@ -3647,12 +3647,12 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "CC"
-msgstr ""
+msgstr "สำเนาถึง"
#: frappe/public/js/frappe/views/communication.js:76
msgctxt "Email Recipients"
msgid "CC"
-msgstr ""
+msgstr "สำเนาถึง"
#. Label of the cmd (Data) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
@@ -3661,7 +3661,7 @@ msgstr ""
#: frappe/public/js/frappe/color_picker/color_picker.js:20
msgid "COLOR PICKER"
-msgstr ""
+msgstr "ตัวเลือกสี"
#. Label of the css_section (Section Break) field in DocType 'Custom HTML
#. Block'
@@ -3676,13 +3676,13 @@ 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 ""
+msgstr "คลาส CSS"
#. 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 ""
+msgstr "ตัวเลือก CSS สำหรับองค์ประกอบที่คุณต้องการเน้น"
#. Option for the 'File Type' (Select) field in DocType 'Data Export'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
@@ -3694,26 +3694,26 @@ msgstr ""
#. Label of the cta_label (Data) field in DocType 'Blog Settings'
#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "CTA Label"
-msgstr ""
+msgstr "ป้าย CTA"
#. Label of the cta_url (Data) field in DocType 'Blog Settings'
#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "CTA URL"
-msgstr ""
+msgstr "URL ของ CTA"
#. 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 ""
+msgstr "แคช"
#: frappe/sessions.py:35
msgid "Cache Cleared"
-msgstr ""
+msgstr "ล้างแคชแล้ว"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:181
msgid "Calculate"
-msgstr ""
+msgstr "คำนวณ"
#. Label of a Link in the Tools Workspace
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
@@ -3722,55 +3722,55 @@ msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Calendar"
-msgstr ""
+msgstr "ปฏิทิน"
#. Label of the calendar_name (Data) field in DocType 'Google Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Calendar Name"
-msgstr ""
+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 ""
+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 ""
+msgstr "โทร"
#. Label of the call_to_action (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Call To Action"
-msgstr ""
+msgstr "การเรียกร้องให้ดำเนินการ"
#. Label of the call_to_action_url (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Call To Action URL"
-msgstr ""
+msgstr "URL การเรียกร้องให้ดำเนินการ"
#. Label of the cta_section (Section Break) field in DocType 'Blog Settings'
#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Call to Action"
-msgstr ""
+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 ""
+msgstr "ข้อความการเรียกกลับ"
#. Label of the callback_title (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Callback Title"
-msgstr ""
+msgstr "ชื่อการเรียกกลับ"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150
#: frappe/public/js/frappe/ui/capture.js:334
msgid "Camera"
-msgstr ""
+msgstr "กล้อง"
#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
@@ -3779,13 +3779,13 @@ msgstr ""
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
msgid "Campaign"
-msgstr ""
+msgstr "แคมเปญ"
#. Label of the campaign_description (Small Text) field in DocType 'UTM
#. Campaign'
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Campaign Description (Optional)"
-msgstr ""
+msgstr "คำอธิบายแคมเปญ (ไม่บังคับ)"
#: frappe/public/js/frappe/form/templates/set_sharing.html:4
#: frappe/public/js/frappe/form/templates/set_sharing.html:50
@@ -4890,7 +4890,7 @@ msgstr ""
#: frappe/desk/form/utils.py:75
msgid "Comment publicity can only be updated by the original author or a System Manager."
-msgstr ""
+msgstr "การเปลี่ยนแปลงสถานะการเผยแพร่ความคิดเห็น สามารถทำได้เฉพาะผู้เขียนต้นฉบับหรือผู้ดูแลระบบเท่านั้น"
#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9
#: frappe/public/js/frappe/model/meta.js:209
@@ -5389,44 +5389,44 @@ 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 ""
+msgstr "ควบคุมว่าสามารถให้ผู้ใช้ใหม่ลงทะเบียนโดยใช้คีย์การเข้าสู่ระบบโซเชียลนี้ได้หรือไม่ หากไม่ได้ตั้งค่า จะใช้การตั้งค่าเว็บไซต์"
#: frappe/public/js/frappe/utils/utils.js:1033
msgid "Copied to clipboard."
-msgstr ""
+msgstr "คัดลอกไปยังคลิปบอร์ดแล้ว"
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:93
msgid "Copy Link"
-msgstr ""
+msgstr "คัดลอกลิงก์"
#: frappe/website/doctype/web_form/web_form.js:29
msgid "Copy embed code"
-msgstr ""
+msgstr "คัดลอกรหัสฝัง"
#: frappe/public/js/frappe/request.js:620
msgid "Copy error to clipboard"
-msgstr ""
+msgstr "คัดลอกข้อผิดพลาดไปยังคลิปบอร์ด"
#: frappe/public/js/frappe/form/toolbar.js:504
msgid "Copy to Clipboard"
-msgstr ""
+msgstr "คัดลอกไปยังคลิปบอร์ด"
#. Label of the copyright (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Copyright"
-msgstr ""
+msgstr "ลิขสิทธิ์"
#: frappe/custom/doctype/customize_form/customize_form.py:122
msgid "Core DocTypes cannot be customized."
-msgstr ""
+msgstr "ไม่สามารถปรับแต่ง DocTypes หลักได้"
#: frappe/desk/doctype/global_search_settings/global_search_settings.py:36
msgid "Core Modules {0} cannot be searched in Global Search."
-msgstr ""
+msgstr "โมดูลหลัก {0} ไม่สามารถค้นหาใน Global Search ได้"
#: frappe/printing/page/print/print.js:620
msgid "Correct version :"
-msgstr ""
+msgstr "เวอร์ชันที่ถูกต้อง:"
#: frappe/email/smtp.py:78
msgid "Could not connect to outgoing email server"
@@ -5996,39 +5996,39 @@ msgstr ""
#: frappe/core/workspace/build/build.json
#: frappe/website/doctype/web_form/web_form.json
msgid "Customization"
-msgstr ""
+msgstr "การปรับแต่ง"
#: frappe/public/js/frappe/views/workspace/workspace.js:358
msgid "Customizations Discarded"
-msgstr ""
+msgstr "การปรับแต่งถูกละทิ้ง"
#: frappe/custom/doctype/customize_form/customize_form.js:465
msgid "Customizations Reset"
-msgstr ""
+msgstr "รีเซ็ตการปรับแต่ง"
#: frappe/modules/utils.py:96
msgid "Customizations for {0} exported to:
{1}"
-msgstr ""
+msgstr "การปรับแต่งสำหรับ {0} ถูกส่งออกไปยัง:
{1}"
#: frappe/printing/page/print/print.js:171
#: frappe/public/js/frappe/form/templates/print_layout.html:39
#: frappe/public/js/frappe/form/toolbar.js:597
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197
msgid "Customize"
-msgstr ""
+msgstr "ปรับแต่ง"
#: frappe/public/js/frappe/list/list_view.js:1802
msgctxt "Button in list view menu"
msgid "Customize"
-msgstr ""
+msgstr "ปรับแต่ง"
#: frappe/custom/doctype/customize_form/customize_form.js:89
msgid "Customize Child Table"
-msgstr ""
+msgstr "ปรับแต่งตารางย่อย"
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:38
msgid "Customize Dashboard"
-msgstr ""
+msgstr "ปรับแต่งแดชบอร์ด"
#. Label of a Link in the Build Workspace
#. Name of a DocType
@@ -6038,16 +6038,16 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
msgid "Customize Form"
-msgstr ""
+msgstr "ปรับแต่งฟอร์ม"
#: frappe/custom/doctype/customize_form/customize_form.js:100
msgid "Customize Form - {0}"
-msgstr ""
+msgstr "ปรับแต่งฟอร์ม - {0}"
#. Name of a DocType
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Customize Form Field"
-msgstr ""
+msgstr "ปรับแต่งฟิลด์ฟอร์ม"
#. Description of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
@@ -6108,46 +6108,46 @@ msgstr ""
#: frappe/public/js/frappe/utils/common.js:398
#: frappe/website/report/website_analytics/website_analytics.js:23
msgid "Daily"
-msgstr ""
+msgstr "รายวัน"
#: frappe/templates/emails/upcoming_events.html:8
msgid "Daily Event Digest is sent for Calendar Events where reminders are set."
-msgstr ""
+msgstr "ส่งสรุปเหตุการณ์รายวันสำหรับกิจกรรมในปฏิทินที่ตั้งค่าการเตือน"
#: frappe/desk/doctype/event/event.py:100
msgid "Daily Events should finish on the Same Day."
-msgstr ""
+msgstr "กิจกรรมรายวันควรเสร็จสิ้นในวันเดียวกัน"
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Daily Long"
-msgstr ""
+msgstr "รายวันแบบยาว"
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Daily Maintenance"
-msgstr ""
+msgstr "การบำรุงรักษารายวัน"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Danger"
-msgstr ""
+msgstr "อันตราย"
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Dark"
-msgstr ""
+msgstr "มืด"
#. Label of the dark_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Dark Color"
-msgstr ""
+msgstr "สีเข้ม"
#: frappe/public/js/frappe/ui/theme_switcher.js:65
msgid "Dark Theme"
-msgstr ""
+msgstr "ธีมมืด"
#. Label of the dashboard (Check) field in DocType 'User'
#. Label of a Link in the Build Workspace
@@ -6164,7 +6164,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562
#: frappe/public/js/frappe/utils/utils.js:932
msgid "Dashboard"
-msgstr ""
+msgstr "แดชบอร์ด"
#. Label of a Link in the Build Workspace
#. Name of a DocType
@@ -6172,48 +6172,48 @@ msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8
msgid "Dashboard Chart"
-msgstr ""
+msgstr "แผนภูมิแดชบอร์ด"
#. Name of a DocType
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
msgid "Dashboard Chart Field"
-msgstr ""
+msgstr "ฟิลด์แผนภูมิแดชบอร์ด"
#. Name of a DocType
#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
msgid "Dashboard Chart Link"
-msgstr ""
+msgstr "ลิงก์แผนภูมิแดชบอร์ด"
#. Name of a DocType
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
msgid "Dashboard Chart Source"
-msgstr ""
+msgstr "แหล่งข้อมูลแผนภูมิแดชบอร์ด"
#. Name of a role
#: frappe/desk/doctype/dashboard/dashboard.json
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "Dashboard Manager"
-msgstr ""
+msgstr "ผู้จัดการแดชบอร์ด"
#. Label of the dashboard_name (Data) field in DocType 'Dashboard'
#: frappe/desk/doctype/dashboard/dashboard.json
msgid "Dashboard Name"
-msgstr ""
+msgstr "ชื่อแดชบอร์ด"
#. Name of a DocType
#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json
msgid "Dashboard Settings"
-msgstr ""
+msgstr "การตั้งค่าแดชบอร์ด"
#: frappe/public/js/frappe/list/base_list.js:204
msgid "Dashboard View"
-msgstr ""
+msgstr "มุมมองแดชบอร์ด"
#. Label of the tab_break_2 (Tab Break) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Dashboards"
-msgstr ""
+msgstr "แดชบอร์ด"
#. Label of a Card Break in the Tools Workspace
#. Label of the data (Code) field in DocType 'Deleted Document'
@@ -6242,67 +6242,67 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Data"
-msgstr ""
+msgstr "ข้อมูล"
#: frappe/public/js/frappe/form/controls/data.js:59
msgid "Data Clipped"
-msgstr ""
+msgstr "ข้อมูลถูกตัด"
#. Name of a DocType
#: frappe/core/doctype/data_export/data_export.json
msgid "Data Export"
-msgstr ""
+msgstr "การส่งออกข้อมูล"
#. Name of a DocType
#. Label of the data_import (Link) field in DocType 'Data Import Log'
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Data Import"
-msgstr ""
+msgstr "การนำเข้าข้อมูล"
#. Name of a DocType
#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Data Import Log"
-msgstr ""
+msgstr "บันทึกการนำเข้าข้อมูล"
#: frappe/core/doctype/data_export/exporter.py:174
msgid "Data Import Template"
-msgstr ""
+msgstr "แม่แบบการนำเข้าข้อมูล"
#: frappe/custom/doctype/customize_form/customize_form.py:614
msgid "Data Too Long"
-msgstr ""
+msgstr "ข้อมูลยาวเกินไป"
#. Label of the database (Data) field in DocType 'System Health Report'
#. Label of the database_section (Section Break) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Database"
-msgstr ""
+msgstr "ฐานข้อมูล"
#. Label of the engine (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Database Engine"
-msgstr ""
+msgstr "เอนจินฐานข้อมูล"
#. Label of the database_processes_section (Section Break) field in DocType
#. 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "Database Processes"
-msgstr ""
+msgstr "กระบวนการฐานข้อมูล"
#: frappe/public/js/frappe/doctype/index.js:38
msgid "Database Row Size Utilization"
-msgstr ""
+msgstr "การใช้งานขนาดแถวฐานข้อมูล"
#. Name of a report
#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json
msgid "Database Storage Usage By Tables"
-msgstr ""
+msgstr "การใช้งานพื้นที่จัดเก็บฐานข้อมูลตามตาราง"
#: frappe/custom/doctype/customize_form/customize_form.py:248
msgid "Database Table Row Size Limit"
-msgstr ""
+msgstr "ขีดจำกัดขนาดแถวของตารางฐานข้อมูล"
#: frappe/public/js/frappe/doctype/index.js:40
msgid "Database Table Row Size Utilization: {0}%, this limits number of fields you can add."
@@ -6311,7 +6311,7 @@ msgstr ""
#. Label of the database_version (Data) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Database Version"
-msgstr ""
+msgstr "เวอร์ชันฐานข้อมูล"
#. Label of the communication_date (Datetime) field in DocType 'Activity Log'
#. Label of the communication_date (Datetime) field in DocType 'Communication'
@@ -6333,7 +6333,7 @@ msgstr ""
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
-msgstr ""
+msgstr "วันที่"
#. Label of the date_format (Select) field in DocType 'Language'
#. Label of the date_format (Select) field in DocType 'System Settings'
@@ -6342,28 +6342,28 @@ msgstr ""
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/country/country.json
msgid "Date Format"
-msgstr ""
+msgstr "รูปแบบวันที่"
#. Label of the section_break_dfrx (Section Break) field in DocType 'Audit
#. Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
#: frappe/public/js/frappe/widgets/chart_widget.js:237
msgid "Date Range"
-msgstr ""
+msgstr "ช่วงวันที่"
#. Label of the date_and_number_format (Section Break) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Date and Number Format"
-msgstr ""
+msgstr "รูปแบบวันที่และตัวเลข"
#: frappe/public/js/frappe/form/controls/date.js:247
msgid "Date {0} must be in format: {1}"
-msgstr ""
+msgstr "วันที่ {0} ต้องอยู่ในรูปแบบ: {1}"
#: frappe/utils/password_strength.py:129
msgid "Dates are often easy to guess."
-msgstr ""
+msgstr "วันที่มักจะเดาได้ง่าย"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -6378,7 +6378,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Datetime"
-msgstr ""
+msgstr "วันที่และเวลา"
#. Label of the day (Select) field in DocType 'Assignment Rule Day'
#. Label of the day (Select) field in DocType 'Auto Repeat Day'
@@ -6386,7 +6386,7 @@ msgstr ""
#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json
#: frappe/public/js/frappe/views/calendar/calendar.js:277
msgid "Day"
-msgstr ""
+msgstr "วัน"
#. Label of the day_of_week (Select) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -6396,51 +6396,51 @@ msgstr ""
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
-msgstr ""
+msgstr "วันหลังจาก"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days Before"
-msgstr ""
+msgstr "วันก่อน"
#. Label of the days_in_advance (Int) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days Before or After"
-msgstr ""
+msgstr "วันก่อนหรือหลัง"
#: frappe/public/js/frappe/request.js:252
msgid "Deadlock Occurred"
-msgstr ""
+msgstr "เกิดการล็อกตาย"
#: frappe/templates/emails/password_reset.html:1
msgid "Dear"
-msgstr ""
+msgstr "เรียน"
#: frappe/templates/emails/administrator_logged_in.html:1
msgid "Dear System Manager,"
-msgstr ""
+msgstr "เรียน ผู้จัดการระบบ,"
#: frappe/templates/emails/account_deletion_notification.html:1
#: frappe/templates/emails/delete_data_confirmation.html:1
msgid "Dear User,"
-msgstr ""
+msgstr "เรียน ผู้ใช้,"
#: frappe/templates/emails/download_data.html:1
msgid "Dear {0}"
-msgstr ""
+msgstr "เรียน {0}"
#. Label of the debug_log (Code) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
msgid "Debug Log"
-msgstr ""
+msgstr "บันทึกการดีบัก"
#: frappe/public/js/frappe/views/reports/report_utils.js:308
msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric"
-msgstr ""
+msgstr "ตัวคั่นทศนิยมต้องเป็น '.' เมื่อการอ้างอิงถูกตั้งค่าเป็นไม่ใช่ตัวเลข"
#: frappe/public/js/frappe/views/reports/report_utils.js:300
msgid "Decimal Separator must be a single character"
-msgstr ""
+msgstr "ตัวคั่นทศนิยมต้องเป็นตัวอักษรเดียว"
#. Label of the default (Small Text) field in DocType 'DocField'
#. Label of the default (Small Text) field in DocType 'Report Filter'
@@ -6456,7 +6456,7 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Default"
-msgstr ""
+msgstr "ค่าเริ่มต้น"
#: frappe/contacts/doctype/address_template/address_template.py:41
msgid "Default Address Template cannot be deleted"
@@ -6593,24 +6593,24 @@ msgstr ""
#. Label of the default_workspace (Link) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Default Workspace"
-msgstr ""
+msgstr "พื้นที่ทำงานเริ่มต้น"
#. Description of the 'Currency' (Link) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Default display currency"
-msgstr ""
+msgstr "สกุลเงินแสดงผลเริ่มต้น"
#: frappe/core/doctype/doctype/doctype.py:1376
msgid "Default for 'Check' type of field {0} must be either '0' or '1'"
-msgstr ""
+msgstr "ค่าเริ่มต้นสำหรับฟิลด์ประเภท 'Check' {0} ต้องเป็น '0' หรือ '1'"
#: frappe/core/doctype/doctype/doctype.py:1389
msgid "Default value for {0} must be in the list of options."
-msgstr ""
+msgstr "ค่าดีฟอลต์สำหรับ {0} ต้องอยู่ในรายการตัวเลือก"
#: frappe/core/doctype/session_default_settings/session_default_settings.py:38
msgid "Default {0}"
-msgstr ""
+msgstr "ค่าเริ่มต้น {0}"
#. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -6620,33 +6620,33 @@ msgstr ""
#. Name of a DocType
#: frappe/core/doctype/defaultvalue/defaultvalue.json
msgid "DefaultValue"
-msgstr ""
+msgstr "ค่าเริ่มต้น"
#. Label of the defaults_section (Section Break) field in DocType 'DocField'
#. Label of the sb2 (Section Break) field in DocType 'User'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/core/doctype/user/user.json
msgid "Defaults"
-msgstr ""
+msgstr "ค่าเริ่มต้น"
#: frappe/email/doctype/email_account/email_account.py:243
msgid "Defaults Updated"
-msgstr ""
+msgstr "อัปเดตค่าเริ่มต้นแล้ว"
#. Description of a DocType
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Defines actions on states and the next step and allowed roles."
-msgstr ""
+msgstr "กำหนดการกระทำในสถานะ ขั้นตอนถัดไป และบทบาทที่อนุญาต"
#. Description of a DocType
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Defines workflow states and rules for a document."
-msgstr ""
+msgstr "กำหนดสถานะและกฎของเวิร์กโฟลว์สำหรับเอกสาร"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Delayed"
-msgstr ""
+msgstr "ล่าช้า"
#. Label of the delete (Check) field in DocType 'Custom DocPerm'
#. Label of the delete (Check) field in DocType 'DocPerm'
@@ -6663,95 +6663,95 @@ msgstr ""
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
-msgstr ""
+msgstr "ลบ"
#: frappe/public/js/frappe/list/list_view.js:2027
msgctxt "Button in list view actions menu"
msgid "Delete"
-msgstr ""
+msgstr "ลบ"
#: frappe/www/me.html:65
msgid "Delete Account"
-msgstr ""
+msgstr "ลบบัญชี"
#: frappe/public/js/frappe/form/grid.js:66
msgid "Delete All"
-msgstr ""
+msgstr "ลบทั้งหมด"
#: frappe/public/js/form_builder/components/Section.vue:196
msgctxt "Title of confirmation dialog"
msgid "Delete Column"
-msgstr ""
+msgstr "ลบคอลัมน์"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:10
msgid "Delete Data"
-msgstr ""
+msgstr "ลบข้อมูล"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:106
msgid "Delete Kanban Board"
-msgstr ""
+msgstr "ลบกระดานคัมบัง"
#: frappe/public/js/form_builder/components/Section.vue:125
msgctxt "Title of confirmation dialog"
msgid "Delete Section"
-msgstr ""
+msgstr "ลบส่วน"
#: frappe/public/js/form_builder/components/Tabs.vue:64
msgctxt "Title of confirmation dialog"
msgid "Delete Tab"
-msgstr ""
+msgstr "ลบแท็บ"
#: frappe/public/js/frappe/views/reports/query_report.js:934
msgid "Delete and Generate New"
-msgstr ""
+msgstr "ลบและสร้างใหม่"
#: frappe/public/js/form_builder/components/Section.vue:203
msgctxt "Button text"
msgid "Delete column"
-msgstr ""
+msgstr "ลบคอลัมน์"
#: frappe/public/js/frappe/form/footer/form_timeline.js:741
msgid "Delete comment?"
-msgstr ""
+msgstr "ลบความคิดเห็น?"
#: frappe/public/js/form_builder/components/Section.vue:205
msgctxt "Button text"
msgid "Delete entire column with fields"
-msgstr ""
+msgstr "ลบทั้งคอลัมน์พร้อมฟิลด์"
#: frappe/public/js/form_builder/components/Section.vue:134
msgctxt "Button text"
msgid "Delete entire section with fields"
-msgstr ""
+msgstr "ลบทั้งส่วนพร้อมฟิลด์"
#: frappe/public/js/form_builder/components/Tabs.vue:73
msgctxt "Button text"
msgid "Delete entire tab with fields"
-msgstr ""
+msgstr "ลบทั้งแท็บพร้อมฟิลด์"
#: frappe/public/js/form_builder/components/Section.vue:132
msgctxt "Button text"
msgid "Delete section"
-msgstr ""
+msgstr "ลบส่วน"
#: frappe/public/js/form_builder/components/Tabs.vue:71
msgctxt "Button text"
msgid "Delete tab"
-msgstr ""
+msgstr "ลบแท็บ"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:29
msgid "Delete this record to allow sending to this email address"
-msgstr ""
+msgstr "ลบบันทึกนี้เพื่ออนุญาตให้ส่งไปยังที่อยู่อีเมลนี้"
#: frappe/public/js/frappe/list/list_view.js:2032
msgctxt "Title of confirmation dialog"
msgid "Delete {0} item permanently?"
-msgstr ""
+msgstr "ลบ {0} รายการอย่างถาวร?"
#: frappe/public/js/frappe/list/list_view.js:2038
msgctxt "Title of confirmation dialog"
msgid "Delete {0} items permanently?"
-msgstr ""
+msgstr "ลบ {0} รายการอย่างถาวร?"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion
@@ -6762,17 +6762,17 @@ msgstr ""
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Deleted"
-msgstr ""
+msgstr "ลบแล้ว"
#. Label of the deleted_doctype (Data) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted DocType"
-msgstr ""
+msgstr "ลบ DocType แล้ว"
#. Name of a DocType
#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted Document"
-msgstr ""
+msgstr "ลบเอกสารแล้ว"
#. Label of a Link in the Tools Workspace
#: frappe/automation/workspace/tools/tools.json
@@ -6782,23 +6782,23 @@ msgstr ""
#. Label of the deleted_name (Data) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Deleted Name"
-msgstr ""
+msgstr "ลบชื่อแล้ว"
#: frappe/desk/reportview.py:606
msgid "Deleted all documents successfully"
-msgstr ""
+msgstr "ลบเอกสารทั้งหมดสำเร็จแล้ว"
#: frappe/desk/reportview.py:583
msgid "Deleting {0}"
-msgstr ""
+msgstr "กำลังลบ {0}"
#: frappe/public/js/frappe/list/bulk_operations.js:202
msgid "Deleting {0} records..."
-msgstr ""
+msgstr "กำลังลบบันทึก {0}..."
#: frappe/public/js/frappe/model/model.js:692
msgid "Deleting {0}..."
-msgstr ""
+msgstr "กำลังลบ {0}..."
#. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion
#. Request'
@@ -6809,25 +6809,25 @@ msgstr ""
#: frappe/core/doctype/page/page.py:110
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47
msgid "Deletion of this document is only permitted in developer mode."
-msgstr ""
+msgstr "การลบเอกสารนี้ได้รับอนุญาตเฉพาะในโหมดนักพัฒนาเท่านั้น"
#. Label of the delimiter_options (Data) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Delimiter Options"
-msgstr ""
+msgstr "ตัวเลือกตัวคั่น"
#: frappe/utils/csvutils.py:76
msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data."
-msgstr ""
+msgstr "การตรวจจับตัวคั่นล้มเหลว ลองเปิดใช้งานตัวคั่นที่กำหนดเองและปรับตัวเลือกตัวคั่นตามข้อมูลของคุณ"
#: frappe/public/js/frappe/views/reports/report_utils.js:296
msgid "Delimiter must be a single character"
-msgstr ""
+msgstr "ตัวคั่นต้องเป็นตัวอักษรเดียว"
#. Label of the delivery_status (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Delivery Status"
-msgstr ""
+msgstr "สถานะการจัดส่ง"
#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -7690,120 +7690,120 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.py:59
msgid "Document Type and Function are required to create a number card"
-msgstr ""
+msgstr "ต้องการประเภทเอกสารและฟังก์ชันเพื่อสร้างการ์ดตัวเลข"
#: frappe/permissions.py:149
msgid "Document Type is not importable"
-msgstr ""
+msgstr "ประเภทเอกสารไม่สามารถนำเข้าได้"
#: frappe/permissions.py:145
msgid "Document Type is not submittable"
-msgstr ""
+msgstr "ประเภทเอกสารไม่สามารถส่งได้"
#. Label of the document_type (Link) field in DocType 'Milestone Tracker'
#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Document Type to Track"
-msgstr ""
+msgstr "ประเภทเอกสารที่ต้องติดตาม"
#: frappe/desk/doctype/global_search_settings/global_search_settings.py:40
msgid "Document Type {0} has been repeated."
-msgstr ""
+msgstr "ประเภทเอกสาร {0} ถูกทำซ้ำ"
#. Label of the user_doctypes (Table) field in DocType 'User Type'
#: frappe/core/doctype/user_type/user_type.json
msgid "Document Types"
-msgstr ""
+msgstr "ประเภทเอกสาร"
#. Label of the select_doctypes (Table) field in DocType 'User Type'
#: frappe/core/doctype/user_type/user_type.json
msgid "Document Types (Select Permissions Only)"
-msgstr ""
+msgstr "ประเภทเอกสาร (เลือกสิทธิ์เท่านั้น)"
#. Label of the section_break_2 (Section Break) field in DocType 'User Type'
#: frappe/core/doctype/user_type/user_type.json
msgid "Document Types and Permissions"
-msgstr ""
+msgstr "ประเภทเอกสารและสิทธิ์"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
#: frappe/model/document.py:1942
msgid "Document Unlocked"
-msgstr ""
+msgstr "เอกสารถูกปลดล็อก"
#: frappe/desk/form/document_follow.py:56
msgid "Document follow is not enabled for this user."
-msgstr ""
+msgstr "การติดตามเอกสารไม่ได้เปิดใช้งานสำหรับผู้ใช้นี้"
#: frappe/public/js/frappe/list/list_view.js:1157
msgid "Document has been cancelled"
-msgstr ""
+msgstr "เอกสารถูกยกเลิกแล้ว"
#: frappe/public/js/frappe/list/list_view.js:1156
msgid "Document has been submitted"
-msgstr ""
+msgstr "เอกสารถูกส่งแล้ว"
#: frappe/public/js/frappe/list/list_view.js:1155
msgid "Document is in draft state"
-msgstr ""
+msgstr "เอกสารอยู่ในสถานะร่าง"
#: frappe/public/js/frappe/form/workflow.js:45
msgid "Document is only editable by users with role"
-msgstr ""
+msgstr "เอกสารสามารถแก้ไขได้เฉพาะผู้ใช้ที่มีบทบาท"
#: frappe/core/doctype/communication/communication.js:182
msgid "Document not Relinked"
-msgstr ""
+msgstr "เอกสารไม่ได้เชื่อมโยงใหม่"
#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:155
msgid "Document renamed from {0} to {1}"
-msgstr ""
+msgstr "เอกสารถูกเปลี่ยนชื่อจาก {0} เป็น {1}"
#: frappe/public/js/frappe/form/toolbar.js:164
msgid "Document renaming from {0} to {1} has been queued"
-msgstr ""
+msgstr "การเปลี่ยนชื่อเอกสารจาก {0} เป็น {1} ถูกจัดคิวแล้ว"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:397
msgid "Document type is required to create a dashboard chart"
-msgstr ""
+msgstr "ต้องการประเภทเอกสารเพื่อสร้างแผนภูมิแดชบอร์ด"
#: frappe/core/doctype/deleted_document/deleted_document.py:45
msgid "Document {0} Already Restored"
-msgstr ""
+msgstr "เอกสาร {0} ถูกกู้คืนแล้ว"
#: frappe/workflow/doctype/workflow_action/workflow_action.py:203
msgid "Document {0} has been set to state {1} by {2}"
-msgstr ""
+msgstr "เอกสาร {0} ถูกตั้งค่าเป็นสถานะ {1} โดย {2}"
#: frappe/client.py:430
msgid "Document {0} {1} does not exist"
-msgstr ""
+msgstr "เอกสาร {0} {1} ไม่มีอยู่"
#. Label of the documentation (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Documentation Link"
-msgstr ""
+msgstr "ลิงก์เอกสารประกอบ"
#. Label of the documentation_url (Data) field in DocType 'DocField'
#. Label of the documentation_url (Data) field in DocType 'Module Onboarding'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Documentation URL"
-msgstr ""
+msgstr "URL เอกสารประกอบ"
#: frappe/public/js/frappe/form/templates/form_dashboard.html:17
msgid "Documents"
-msgstr ""
+msgstr "เอกสาร"
#: frappe/core/doctype/deleted_document/deleted_document_list.js:25
msgid "Documents restored successfully"
-msgstr ""
+msgstr "เอกสารถูกกู้คืนสำเร็จ"
#: frappe/core/doctype/deleted_document/deleted_document_list.js:33
msgid "Documents that failed to restore"
-msgstr ""
+msgstr "เอกสารที่กู้คืนล้มเหลว"
#: frappe/core/doctype/deleted_document/deleted_document_list.js:29
msgid "Documents that were already restored"
-msgstr ""
+msgstr "เอกสารที่ถูกกู้คืนแล้ว"
#. Name of a DocType
#. Label of the domain (Data) field in DocType 'Domain'
@@ -7813,32 +7813,32 @@ msgstr ""
#: frappe/core/doctype/has_domain/has_domain.json
#: frappe/email/doctype/email_account/email_account.json
msgid "Domain"
-msgstr ""
+msgstr "โดเมน"
#. Label of the domain_name (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Domain Name"
-msgstr ""
+msgstr "ชื่อโดเมน"
#. Name of a DocType
#: frappe/core/doctype/domain_settings/domain_settings.json
msgid "Domain Settings"
-msgstr ""
+msgstr "การตั้งค่าโดเมน"
#. Label of the domains_html (HTML) field in DocType 'Domain Settings'
#: frappe/core/doctype/domain_settings/domain_settings.json
msgid "Domains HTML"
-msgstr ""
+msgstr "โดเมน HTML"
#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom
#. Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
-msgstr ""
+msgstr "อย่าเข้ารหัส HTML แท็ก HTML เช่น <script> หรือเพียงตัวอักษรเช่น < หรือ > เนื่องจากอาจถูกใช้โดยเจตนาในฟิลด์นี้"
#: frappe/public/js/frappe/data_import/import_preview.js:272
msgid "Don't Import"
-msgstr ""
+msgstr "อย่านำเข้า"
#. Label of the override_status (Check) field in DocType 'Workflow'
#. Label of the avoid_status_override (Check) field in DocType 'Workflow
@@ -7846,12 +7846,12 @@ msgstr ""
#: frappe/workflow/doctype/workflow/workflow.json
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Don't Override Status"
-msgstr ""
+msgstr "อย่าเขียนทับสถานะ"
#. Label of the mute_emails (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Don't Send Emails"
-msgstr ""
+msgstr "อย่าส่งอีเมล"
#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'DocField'
#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize
@@ -7859,12 +7859,12 @@ msgstr ""
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field"
-msgstr ""
+msgstr "อย่าเข้ารหัสแท็ก HTML เช่น <script> หรือเพียงตัวอักษรเช่น < หรือ > เนื่องจากอาจถูกใช้โดยเจตนาในฟิลด์นี้"
#: frappe/www/login.html:139 frappe/www/login.html:155
#: frappe/www/update-password.html:57
msgid "Don't have an account?"
-msgstr ""
+msgstr "ไม่มีบัญชีใช่ไหม?"
#: frappe/public/js/frappe/form/form_tour.js:16
#: frappe/public/js/frappe/ui/messages.js:238
@@ -7872,16 +7872,16 @@ msgstr ""
#: frappe/public/js/print_format_builder/HTMLEditor.vue:5
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52
msgid "Done"
-msgstr ""
+msgstr "เสร็จสิ้น"
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Donut"
-msgstr ""
+msgstr "โดนัท"
#: frappe/public/js/form_builder/components/EditableInput.vue:43
msgid "Double click to edit label"
-msgstr ""
+msgstr "ดับเบิลคลิกเพื่อแก้ไขป้ายกำกับ"
#: frappe/core/doctype/file/file.js:15
#: frappe/email/doctype/auto_email_report/auto_email_report.js:8
@@ -7898,27 +7898,27 @@ msgstr "ดาวน์โหลด"
#: frappe/automation/workspace/tools/tools.json
#: frappe/desk/page/backups/backups.js:4
msgid "Download Backups"
-msgstr ""
+msgstr "ดาวน์โหลดการสำรองข้อมูล"
#: frappe/templates/emails/download_data.html:6
msgid "Download Data"
-msgstr ""
+msgstr "ดาวน์โหลดข้อมูล"
#: frappe/desk/page/backups/backups.js:14
msgid "Download Files Backup"
-msgstr ""
+msgstr "ดาวน์โหลดการสำรองไฟล์"
#: frappe/templates/emails/download_data.html:9
msgid "Download Link"
-msgstr ""
+msgstr "ดาวน์โหลดลิงก์"
#: frappe/public/js/frappe/list/bulk_operations.js:134
msgid "Download PDF"
-msgstr ""
+msgstr "ดาวน์โหลด PDF"
#: frappe/public/js/frappe/views/reports/query_report.js:830
msgid "Download Report"
-msgstr ""
+msgstr "ดาวน์โหลดรายงาน"
#. Label of the download_template (Button) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
@@ -7929,19 +7929,19 @@ msgstr "ดาวน์โหลดเทมเพลต"
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:69
#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48
msgid "Download Your Data"
-msgstr ""
+msgstr "ดาวน์โหลดข้อมูลของคุณ"
#: frappe/core/doctype/prepared_report/prepared_report.js:49
msgid "Download as CSV"
-msgstr ""
+msgstr "ดาวน์โหลดเป็น CSV"
#: frappe/contacts/doctype/contact/contact.js:98
msgid "Download vCard"
-msgstr ""
+msgstr "ดาวน์โหลด vCard"
#: frappe/contacts/doctype/contact/contact_list.js:4
msgid "Download vCards"
-msgstr ""
+msgstr "ดาวน์โหลด vCards"
#: frappe/desk/page/setup_wizard/install_fixtures.py:46
msgid "Dr"
@@ -7950,83 +7950,83 @@ msgstr ""
#: frappe/public/js/frappe/model/indicator.js:73
#: frappe/public/js/frappe/ui/filters/filter.js:538
msgid "Draft"
-msgstr ""
+msgstr "ร่าง"
#: frappe/public/js/frappe/views/workspace/blocks/header.js:46
#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:136
#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:44
#: frappe/public/js/frappe/widgets/base_widget.js:33
msgid "Drag"
-msgstr ""
+msgstr "ลาก"
#: frappe/public/js/form_builder/components/Tabs.vue:189
msgid "Drag & Drop a section here from another tab"
-msgstr ""
+msgstr "ลากและวางส่วนที่นี่จากแท็บอื่น"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:14
msgid "Drag and drop files here or upload from"
-msgstr ""
+msgstr "ลากและวางไฟล์ที่นี่หรืออัปโหลดจาก"
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:76
msgid "Drag columns to set order. Column width is set in percentage. The total width should not be more than 100. Columns marked in red will be removed."
-msgstr ""
+msgstr "ลากคอลัมน์เพื่อกำหนดลำดับ ความกว้างของคอลัมน์ถูกตั้งค่าเป็นเปอร์เซ็นต์ ความกว้างรวมไม่ควรเกิน 100 คอลัมน์ที่ทำเครื่องหมายเป็นสีแดงจะถูกลบ"
#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:3
msgid "Drag elements from the sidebar to add. Drag them back to trash."
-msgstr ""
+msgstr "ลากองค์ประกอบจากแถบด้านข้างเพื่อเพิ่ม ลากกลับไปที่ถังขยะ"
#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:296
msgid "Drag to add state"
-msgstr ""
+msgstr "ลากเพื่อเพิ่มสถานะ"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172
msgid "Drop files here"
-msgstr ""
+msgstr "วางไฟล์ที่นี่"
#. Label of the section_break_2 (Section Break) field in DocType 'Navbar
#. Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Dropdowns"
-msgstr ""
+msgstr "เมนูแบบเลื่อนลง"
#. Label of the date (Date) field in DocType 'ToDo'
#: frappe/desk/doctype/todo/todo.json
msgid "Due Date"
-msgstr ""
+msgstr "วันที่ครบกำหนด"
#. Label of the due_date_based_on (Select) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Due Date Based On"
-msgstr ""
+msgstr "วันที่ครบกำหนดตาม"
#: frappe/public/js/frappe/form/grid_row_form.js:42
#: frappe/public/js/frappe/form/toolbar.js:419
msgid "Duplicate"
-msgstr ""
+msgstr "ซ้ำ"
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:53
msgid "Duplicate Entry"
-msgstr ""
+msgstr "รายการซ้ำ"
#: frappe/public/js/frappe/list/list_filter.js:144
msgid "Duplicate Filter Name"
-msgstr ""
+msgstr "ชื่อฟิลเตอร์ซ้ำ"
#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111
msgid "Duplicate Name"
-msgstr ""
+msgstr "ชื่อซ้ำ"
#: frappe/public/js/frappe/form/grid.js:66
msgid "Duplicate Row"
-msgstr ""
+msgstr "แถวซ้ำ"
#: frappe/public/js/frappe/form/form.js:209
msgid "Duplicate current row"
-msgstr ""
+msgstr "แถวปัจจุบันซ้ำ"
#: frappe/public/js/form_builder/components/Field.vue:245
msgid "Duplicate field"
-msgstr ""
+msgstr "ฟิลด์ซ้ำ"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the duration (Float) field in DocType 'Recorder'
@@ -8043,31 +8043,31 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Duration"
-msgstr ""
+msgstr "ระยะเวลา"
#. Option for the 'Row Format' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Dynamic"
-msgstr ""
+msgstr "ไดนามิก"
#. Label of the dynamic_filters_section (Section Break) field in DocType
#. 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Dynamic Filters"
-msgstr ""
+msgstr "ฟิลเตอร์ไดนามิก"
#. Label of the dynamic_filters_json (Code) field in DocType 'Dashboard Chart'
#. Label of the dynamic_filters_json (Code) field in DocType 'Number Card'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "Dynamic Filters JSON"
-msgstr ""
+msgstr "ฟิลเตอร์ไดนามิก JSON"
#. Label of the dynamic_filters_section (Section Break) field in DocType
#. 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Dynamic Filters Section"
-msgstr ""
+msgstr "ส่วนฟิลเตอร์ไดนามิก"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Name of a DocType
@@ -8082,23 +8082,23 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Dynamic Link"
-msgstr ""
+msgstr "ลิงก์ไดนามิก"
#. Label of the dynamic_report_filters_section (Section Break) field in DocType
#. 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Dynamic Report Filters"
-msgstr ""
+msgstr "ฟิลเตอร์รายงานไดนามิก"
#. Label of the dynamic_route (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Dynamic Route"
-msgstr ""
+msgstr "เส้นทางไดนามิก"
#. Label of the dynamic_template (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Dynamic Template"
-msgstr ""
+msgstr "แม่แบบไดนามิก"
#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "ESC"
@@ -8127,126 +8127,126 @@ msgstr ""
#: frappe/workflow/page/workflow_builder/workflow_builder.js:46
#: frappe/workflow/page/workflow_builder/workflow_builder.js:84
msgid "Edit"
-msgstr ""
+msgstr "แก้ไข"
#: frappe/public/js/frappe/list/list_view.js:2113
msgctxt "Button in list view actions menu"
msgid "Edit"
-msgstr ""
+msgstr "แก้ไข"
#: frappe/website/doctype/web_form/templates/web_form.html:23
msgctxt "Button in web form"
msgid "Edit"
-msgstr ""
+msgstr "แก้ไข"
#: frappe/public/js/frappe/form/grid_row.js:345
msgctxt "Edit grid row"
msgid "Edit"
-msgstr ""
+msgstr "แก้ไข"
#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:66
msgid "Edit Address in Form"
-msgstr ""
+msgstr "แก้ไขที่อยู่ในฟอร์ม"
#: frappe/templates/emails/auto_email_report.html:63
msgid "Edit Auto Email Report Settings"
-msgstr ""
+msgstr "แก้ไขการตั้งค่ารายงานอีเมลอัตโนมัติ"
#: frappe/public/js/frappe/widgets/widget_dialog.js:38
msgid "Edit Chart"
-msgstr ""
+msgstr "แก้ไขแผนภูมิ"
#: frappe/public/js/frappe/widgets/widget_dialog.js:50
msgid "Edit Custom Block"
-msgstr ""
+msgstr "แก้ไขบล็อกที่กำหนดเอง"
#: frappe/printing/page/print_format_builder/print_format_builder.js:727
msgid "Edit Custom HTML"
-msgstr ""
+msgstr "แก้ไข HTML ที่กำหนดเอง"
#: frappe/public/js/frappe/form/toolbar.js:616
msgid "Edit DocType"
-msgstr ""
+msgstr "แก้ไข DocType"
#: frappe/public/js/frappe/list/list_view.js:1829
msgctxt "Button in list view menu"
msgid "Edit DocType"
-msgstr ""
+msgstr "แก้ไข DocType"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:42
#: frappe/workflow/page/workflow_builder/workflow_builder.js:42
msgid "Edit Existing"
-msgstr ""
+msgstr "แก้ไขที่มีอยู่"
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:55
msgid "Edit Filters"
-msgstr ""
+msgstr "แก้ไขฟิลเตอร์"
#: frappe/public/js/print_format_builder/PrintFormat.vue:29
msgid "Edit Footer"
-msgstr ""
+msgstr "แก้ไขส่วนท้าย"
#: frappe/printing/doctype/print_format/print_format.js:28
msgid "Edit Format"
-msgstr ""
+msgstr "แก้ไขรูปแบบ"
#: frappe/public/js/frappe/form/quick_entry.js:326
msgid "Edit Full Form"
-msgstr ""
+msgstr "แก้ไขฟอร์มเต็ม"
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:27
#: frappe/public/js/print_format_builder/Field.vue:83
msgid "Edit HTML"
-msgstr ""
+msgstr "แก้ไข HTML"
#: frappe/public/js/print_format_builder/PrintFormat.vue:9
msgid "Edit Header"
-msgstr ""
+msgstr "แก้ไขส่วนหัว"
#: frappe/printing/page/print_format_builder/print_format_builder.js:609
#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:8
msgid "Edit Heading"
-msgstr ""
+msgstr "แก้ไขหัวข้อ"
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52
msgid "Edit Letter Head"
-msgstr ""
+msgstr "แก้ไขหัวจดหมาย"
#: frappe/public/js/print_format_builder/PrintFormat.vue:35
msgid "Edit Letter Head Footer"
-msgstr ""
+msgstr "แก้ไขส่วนท้ายหัวจดหมาย"
#: frappe/public/js/frappe/widgets/widget_dialog.js:42
msgid "Edit Links"
-msgstr ""
+msgstr "แก้ไขลิงก์"
#: frappe/public/js/frappe/widgets/widget_dialog.js:44
msgid "Edit Number Card"
-msgstr ""
+msgstr "แก้ไขการ์ดตัวเลข"
#: frappe/public/js/frappe/widgets/widget_dialog.js:46
msgid "Edit Onboarding"
-msgstr ""
+msgstr "แก้ไขการเริ่มต้นใช้งาน"
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:24
msgid "Edit Print Format"
-msgstr ""
+msgstr "แก้ไขรูปแบบการพิมพ์"
#: frappe/www/me.html:38
msgid "Edit Profile"
-msgstr ""
+msgstr "แก้ไขโปรไฟล์"
#: frappe/printing/page/print_format_builder/print_format_builder.js:173
msgid "Edit Properties"
-msgstr ""
+msgstr "แก้ไขคุณสมบัติ"
#: frappe/public/js/frappe/widgets/widget_dialog.js:48
msgid "Edit Quick List"
-msgstr ""
+msgstr "แก้ไขรายการด่วน"
#: frappe/public/js/frappe/widgets/widget_dialog.js:40
msgid "Edit Shortcut"
-msgstr ""
+msgstr "แก้ไขทางลัด"
#. Label of the edit_values (Button) field in DocType 'Web Page Block'
#. Label of the edit_navbar_template_values (Button) field in DocType 'Website
@@ -8257,33 +8257,33 @@ msgstr ""
#: frappe/website/doctype/web_page_block/web_page_block.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Edit Values"
-msgstr ""
+msgstr "แก้ไขค่า"
#: frappe/desk/doctype/note/note.js:11
msgid "Edit mode"
-msgstr ""
+msgstr "โหมดแก้ไข"
#: frappe/public/js/form_builder/components/Field.vue:254
msgid "Edit the {0} Doctype"
-msgstr ""
+msgstr "แก้ไข Doctype {0}"
#: frappe/printing/page/print_format_builder/print_format_builder.js:721
msgid "Edit to add content"
-msgstr ""
+msgstr "แก้ไขเพื่อเพิ่มเนื้อหา"
#: frappe/public/js/frappe/web_form/web_form.js:446
msgctxt "Button in web form"
msgid "Edit your response"
-msgstr ""
+msgstr "แก้ไขคำตอบของคุณ"
#: frappe/workflow/doctype/workflow/workflow.js:18
msgid "Edit your workflow visually using the Workflow Builder."
-msgstr ""
+msgstr "แก้ไขเวิร์กโฟลว์ของคุณด้วยภาพโดยใช้ตัวสร้างเวิร์กโฟลว์"
#: frappe/public/js/frappe/views/reports/report_view.js:678
#: frappe/public/js/frappe/widgets/widget_dialog.js:52
msgid "Edit {0}"
-msgstr ""
+msgstr "แก้ไข {0}"
#. Label of the editable_grid (Check) field in DocType 'DocType'
#. Label of the editable_grid (Check) field in DocType 'Customize Form'
@@ -8291,31 +8291,31 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype_list.js:57
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Editable Grid"
-msgstr ""
+msgstr "กริดที่แก้ไขได้"
#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "Editing Row"
-msgstr ""
+msgstr "กำลังแก้ไขแถว"
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:14
#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:20
msgid "Editing {0}"
-msgstr ""
+msgstr "กำลังแก้ไข {0}"
#. Description of the 'SMS Gateway URL' (Small Text) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Eg. smsgateway.com/api/send_sms.cgi"
-msgstr ""
+msgstr "เช่น smsgateway.com/api/send_sms.cgi"
#: frappe/rate_limiter.py:152
msgid "Either key or IP flag is required."
-msgstr ""
+msgstr "ต้องการคีย์หรือธง IP อย่างใดอย่างหนึ่ง"
#. Label of the element_selector (Data) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Element Selector"
-msgstr ""
+msgstr "ตัวเลือกองค์ประกอบ"
#. Label of a Card Break in the Tools Workspace
#. Option for the 'Type' (Select) field in DocType 'Communication'
@@ -8352,7 +8352,7 @@ msgstr ""
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
#: frappe/www/login.html:8 frappe/www/login.py:104
msgid "Email"
-msgstr ""
+msgstr "อีเมล"
#. Label of a Link in the Tools Workspace
#. Label of the email_account (Link) field in DocType 'Communication'
@@ -8370,28 +8370,28 @@ msgstr ""
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Email Account"
-msgstr ""
+msgstr "บัญชีอีเมล"
#: frappe/email/doctype/email_account/email_account.py:343
msgid "Email Account Disabled."
-msgstr ""
+msgstr "บัญชีอีเมลถูกปิดใช้งาน"
#. Label of the email_account_name (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Email Account Name"
-msgstr ""
+msgstr "ชื่อบัญชีอีเมล"
#: frappe/core/doctype/user/user.py:738
msgid "Email Account added multiple times"
-msgstr ""
+msgstr "เพิ่มบัญชีอีเมลหลายครั้ง"
#: frappe/email/smtp.py:43
msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account"
-msgstr ""
+msgstr "ยังไม่ได้ตั้งค่าบัญชีอีเมล โปรดสร้างบัญชีอีเมลใหม่จาก การตั้งค่า > บัญชีอีเมล"
#: frappe/email/doctype/email_account/email_account.py:576
msgid "Email Account {0} Disabled"
-msgstr ""
+msgstr "บัญชีอีเมล {0} ถูกปิดใช้งาน"
#. Label of the email_id (Data) field in DocType 'Address'
#. Label of the email_id (Data) field in DocType 'Contact'
@@ -8405,34 +8405,34 @@ msgstr ""
#: frappe/www/complete_signup.html:11 frappe/www/login.html:184
#: frappe/www/login.html:216
msgid "Email Address"
-msgstr ""
+msgstr "ที่อยู่อีเมล"
#. Description of the 'Email Address' (Data) field in DocType 'Google Contacts'
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Email Address whose Google Contacts are to be synced."
-msgstr ""
+msgstr "ที่อยู่อีเมลที่ต้องการซิงค์กับ Google Contacts"
#: frappe/email/doctype/email_group/email_group.js:43
msgid "Email Addresses"
-msgstr ""
+msgstr "ที่อยู่อีเมล"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Email Domain"
-msgstr ""
+msgstr "โดเมนอีเมล"
#. Name of a DocType
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
msgid "Email Flag Queue"
-msgstr ""
+msgstr "คิวธงอีเมล"
#. Label of the email_footer_address (Small Text) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Email Footer Address"
-msgstr ""
+msgstr "ที่อยู่ส่วนท้ายอีเมล"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
@@ -8443,17 +8443,17 @@ msgstr ""
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
-msgstr ""
+msgstr "กลุ่มอีเมล"
#. Name of a DocType
#: frappe/email/doctype/email_group_member/email_group_member.json
msgid "Email Group Member"
-msgstr ""
+msgstr "สมาชิกกลุ่มอีเมล"
#. Label of the email_header (Data) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Email Header"
-msgstr ""
+msgstr "ส่วนหัวอีเมล"
#. Label of the email_id (Data) field in DocType 'Contact Email'
#. Label of the email_id (Data) field in DocType 'User Email'
@@ -8463,68 +8463,68 @@ msgstr ""
#: frappe/core/doctype/user_email/user_email.json
#: frappe/email/doctype/email_rule/email_rule.json
msgid "Email ID"
-msgstr ""
+msgstr "รหัสอีเมล"
#. Label of the email_ids (Table) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Email IDs"
-msgstr ""
+msgstr "รหัสอีเมล"
#. Label of the email_id (Data) field in DocType 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Email Id"
-msgstr ""
+msgstr "รหัสอีเมล"
#. Label of the email_inbox (Section Break) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Email Inbox"
-msgstr ""
+msgstr "กล่องจดหมายอีเมล"
#. Name of a DocType
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Email Queue"
-msgstr ""
+msgstr "คิวอีเมล"
#. Name of a DocType
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
msgid "Email Queue Recipient"
-msgstr ""
+msgstr "ผู้รับคิวอีเมล"
#: frappe/email/queue.py:160
msgid "Email Queue flushing aborted due to too many failures."
-msgstr ""
+msgstr "การล้างคิวอีเมลถูกยกเลิกเนื่องจากความล้มเหลวมากเกินไป"
#. Description of a DocType
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Email Queue records."
-msgstr ""
+msgstr "บันทึกคิวอีเมล"
#. Label of the email_reply_help (HTML) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
msgid "Email Reply Help"
-msgstr ""
+msgstr "ความช่วยเหลือในการตอบกลับอีเมล"
#. Label of the email_retry_limit (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Email Retry Limit"
-msgstr ""
+msgstr "ขีดจำกัดการลองใหม่ของอีเมล"
#. Name of a DocType
#: frappe/email/doctype/email_rule/email_rule.json
msgid "Email Rule"
-msgstr ""
+msgstr "กฎอีเมล"
#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
-msgstr ""
+msgstr "ส่งอีเมลแล้ว"
#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
#: frappe/email/doctype/newsletter/newsletter.json
msgid "Email Sent At"
-msgstr ""
+msgstr "ส่งอีเมลเมื่อ"
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
@@ -8538,22 +8538,22 @@ msgstr ""
#: frappe/desk/doctype/notification_settings/notification_settings.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Email Settings"
-msgstr ""
+msgstr "การตั้งค่าอีเมล"
#. Label of the email_signature (Text Editor) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Email Signature"
-msgstr ""
+msgstr "ลายเซ็นอีเมล"
#. Label of the email_status (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Email Status"
-msgstr ""
+msgstr "สถานะอีเมล"
#. Label of the email_sync_option (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Email Sync Option"
-msgstr ""
+msgstr "ตัวเลือกการซิงค์อีเมล"
#. Label of a Link in the Tools Workspace
#. Label of the email_template (Link) field in DocType 'Communication'
@@ -8563,78 +8563,78 @@ msgstr ""
#: frappe/email/doctype/email_template/email_template.json
#: frappe/public/js/frappe/views/communication.js:104
msgid "Email Template"
-msgstr ""
+msgstr "แม่แบบอีเมล"
#. Label of the enable_email_threads_on_assigned_document (Check) field in
#. DocType 'Notification Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Email Threads on Assigned Document"
-msgstr ""
+msgstr "เธรดอีเมลในเอกสารที่กำหนด"
#. Label of the email_to (Small Text) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Email To"
-msgstr ""
+msgstr "อีเมลถึง"
#. Name of a DocType
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
msgid "Email Unsubscribe"
-msgstr ""
+msgstr "ยกเลิกการสมัครรับอีเมล"
#: frappe/core/doctype/communication/communication.js:342
msgid "Email has been marked as spam"
-msgstr ""
+msgstr "อีเมลถูกทำเครื่องหมายว่าเป็นสแปม"
#: frappe/core/doctype/communication/communication.js:355
msgid "Email has been moved to trash"
-msgstr ""
+msgstr "อีเมลถูกย้ายไปที่ถังขยะ"
#: frappe/core/doctype/user/user.js:272
msgid "Email is mandatory to create User Email"
-msgstr ""
+msgstr "อีเมลเป็นสิ่งจำเป็นในการสร้างอีเมลผู้ใช้"
#: frappe/public/js/frappe/views/communication.js:816
msgid "Email not sent to {0} (unsubscribed / disabled)"
-msgstr ""
+msgstr "ไม่ได้ส่งอีเมลถึง {0} (ยกเลิกการสมัคร / ปิดใช้งาน)"
#: frappe/utils/oauth.py:163
msgid "Email not verified with {0}"
-msgstr ""
+msgstr "อีเมลไม่ได้รับการยืนยันกับ {0}"
#: frappe/email/doctype/email_queue/email_queue.js:19
msgid "Email queue is currently suspended. Resume to automatically send other emails."
-msgstr ""
+msgstr "คิวอีเมลถูกระงับชั่วคราว ดำเนินการต่อเพื่อส่งอีเมลอื่นโดยอัตโนมัติ"
#. Label of the section_break_udjs (Section Break) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Emails"
-msgstr ""
+msgstr "อีเมล"
#: frappe/email/doctype/email_account/email_account.js:216
msgid "Emails Pulled"
-msgstr ""
+msgstr "ดึงอีเมลแล้ว"
#: frappe/email/doctype/email_account/email_account.py:934
msgid "Emails are already being pulled from this account."
-msgstr ""
+msgstr "กำลังดึงอีเมลจากบัญชีนี้อยู่แล้ว"
#: frappe/email/queue.py:137
msgid "Emails are muted"
-msgstr ""
+msgstr "อีเมลถูกปิดเสียง"
#. Description of the 'Send Email Alert' (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Emails will be sent with next possible workflow actions"
-msgstr ""
+msgstr "อีเมลจะถูกส่งพร้อมกับการดำเนินการเวิร์กโฟลว์ถัดไปที่เป็นไปได้"
#: frappe/website/doctype/web_form/web_form.js:34
msgid "Embed code copied"
-msgstr ""
+msgstr "คัดลอกรหัสฝังแล้ว"
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
-msgstr ""
+msgstr "คอลัมน์ว่างเปล่า"
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
@@ -8643,67 +8643,67 @@ msgstr ""
#: frappe/integrations/doctype/google_contacts/google_contacts.json
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Enable"
-msgstr ""
+msgstr "เปิดใช้งาน"
#. Label of the enable_address_autocompletion (Check) field in DocType
#. 'Geolocation Settings'
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
msgid "Enable Address Autocompletion"
-msgstr ""
+msgstr "เปิดใช้งานการเติมที่อยู่อัตโนมัติ"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119
msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form"
-msgstr ""
+msgstr "เปิดใช้งานอนุญาตการทำซ้ำอัตโนมัติสำหรับ doctype {0} ในการปรับแต่งฟอร์ม"
#. Label of the enable_auto_reply (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Enable Auto Reply"
-msgstr ""
+msgstr "เปิดใช้งานการตอบกลับอัตโนมัติ"
#. Label of the enable_automatic_linking (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Enable Automatic Linking in Documents"
-msgstr ""
+msgstr "เปิดใช้งานการเชื่อมโยงอัตโนมัติในเอกสาร"
#. Label of the enable_comments (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Enable Comments"
-msgstr ""
+msgstr "เปิดใช้งานความคิดเห็น"
#. Label of the enable_email_notification (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable Email Notification"
-msgstr ""
+msgstr "เปิดใช้งานการแจ้งเตือนทางอีเมล"
#. Label of the enable_email_notifications (Check) field in DocType
#. 'Notification Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Enable Email Notifications"
-msgstr ""
+msgstr "เปิดใช้งานการแจ้งเตือนทางอีเมล"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:106
#: frappe/integrations/doctype/google_contacts/google_contacts.py:36
#: frappe/website/doctype/website_settings/website_settings.py:129
msgid "Enable Google API in Google Settings."
-msgstr ""
+msgstr "เปิดใช้งาน Google API ในการตั้งค่า Google"
#. Label of the enable_google_indexing (Check) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Enable Google indexing"
-msgstr ""
+msgstr "เปิดใช้งานการจัดทำดัชนีของ Google"
#. Label of the enable_incoming (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_account/email_account.py:225
msgid "Enable Incoming"
-msgstr ""
+msgstr "เปิดใช้งานขาเข้า"
#. Label of the enable_onboarding (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Enable Onboarding"
-msgstr ""
+msgstr "เปิดใช้งานการเริ่มต้นใช้งาน"
#. Label of the enable_outgoing (Check) field in DocType 'User Email'
#. Label of the enable_outgoing (Check) field in DocType 'Email Account'
@@ -8711,93 +8711,93 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_account/email_account.py:233
msgid "Enable Outgoing"
-msgstr ""
+msgstr "เปิดใช้งานขาออก"
#. Label of the enable_password_policy (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Enable Password Policy"
-msgstr ""
+msgstr "เปิดใช้งานนโยบายรหัสผ่าน"
#. Label of the enable_prepared_report (Check) field in DocType 'Role
#. Permission for Page and Report'
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
msgid "Enable Prepared Report"
-msgstr ""
+msgstr "เปิดใช้งานรายงานที่เตรียมไว้"
#. Label of the enable_print_server (Check) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Enable Print Server"
-msgstr ""
+msgstr "เปิดใช้งานเซิร์ฟเวอร์การพิมพ์"
#. Label of the enable_push_notification_relay (Check) field in DocType 'Push
#. Notification Settings'
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "Enable Push Notification Relay"
-msgstr ""
+msgstr "เปิดใช้งานการส่งต่อการแจ้งเตือนแบบพุช"
#. Label of the enable_rate_limit (Check) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Enable Rate Limit"
-msgstr ""
+msgstr "เปิดใช้งานการจำกัดอัตรา"
#. Label of the enable_raw_printing (Check) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Enable Raw Printing"
-msgstr ""
+msgstr "เปิดใช้งานการพิมพ์แบบดิบ"
#: frappe/core/doctype/report/report.js:39
msgid "Enable Report"
-msgstr ""
+msgstr "เปิดใช้งานรายงาน"
#. Label of the enable_scheduler (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Enable Scheduled Jobs"
-msgstr ""
+msgstr "เปิดใช้งานงานที่กำหนดเวลาไว้"
#: frappe/core/doctype/rq_job/rq_job_list.js:23
msgid "Enable Scheduler"
-msgstr ""
+msgstr "เปิดใช้งานตัวจัดตารางเวลา"
#. Label of the enable_security (Check) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Enable Security"
-msgstr ""
+msgstr "เปิดใช้งานความปลอดภัย"
#. Label of the enable_social_login (Check) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Enable Social Login"
-msgstr ""
+msgstr "เปิดใช้งานการเข้าสู่ระบบโซเชียล"
#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings'
#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Enable Social Sharing"
-msgstr ""
+msgstr "เปิดใช้งานการแชร์โซเชียล"
#: frappe/website/doctype/website_settings/website_settings.js:139
msgid "Enable Tracking Page Views"
-msgstr ""
+msgstr "เปิดใช้งานการติดตามการดูหน้า"
#. Label of the enable_two_factor_auth (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/twofactor.py:433
msgid "Enable Two Factor Auth"
-msgstr ""
+msgstr "เปิดใช้งานการยืนยันตัวตนสองขั้นตอน"
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:28
msgid "Enable developer mode to create a standard Print Template"
-msgstr ""
+msgstr "เปิดใช้งานโหมดนักพัฒนาเพื่อสร้างแม่แบบการพิมพ์มาตรฐาน"
#: frappe/website/doctype/web_template/web_template.py:33
msgid "Enable developer mode to create a standard Web Template"
-msgstr ""
+msgstr "เปิดใช้งานโหมดนักพัฒนาเพื่อสร้างแม่แบบเว็บมาตรฐาน"
#. Description of the 'Enable Email Notification' (Check) field in DocType
#. 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Enable email notification for any comment or likes received on your Blog Post."
-msgstr ""
+msgstr "เปิดใช้งานการแจ้งเตือนทางอีเมลสำหรับความคิดเห็นหรือการถูกใจที่ได้รับในโพสต์บล็อกของคุณ"
#. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
@@ -8809,7 +8809,7 @@ msgstr ""
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Enable in-app website tracking"
-msgstr ""
+msgstr "เปิดใช้งานการติดตามเว็บไซต์ในแอป"
#. Label of the enabled (Check) field in DocType 'Language'
#. Label of the enabled (Check) field in DocType 'User'
@@ -8834,15 +8834,15 @@ msgstr ""
#: frappe/public/js/frappe/model/indicator.js:117
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Enabled"
-msgstr ""
+msgstr "เปิดใช้งานแล้ว"
#: frappe/core/doctype/rq_job/rq_job_list.js:29
msgid "Enabled Scheduler"
-msgstr ""
+msgstr "เปิดใช้งานตัวจัดตารางเวลาแล้ว"
#: frappe/email/doctype/email_account/email_account.py:1010
msgid "Enabled email inbox for user {0}"
-msgstr ""
+msgstr "เปิดใช้งานกล่องจดหมายอีเมลสำหรับผู้ใช้ {0}"
#. Description of the 'Is Calendar and Gantt' (Check) field in DocType
#. 'DocType'
@@ -8851,16 +8851,16 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Enables Calendar and Gantt views."
-msgstr ""
+msgstr "เปิดใช้งานมุมมองปฏิทินและ Gantt"
#: frappe/email/doctype/email_account/email_account.js:295
msgid "Enabling auto reply on an incoming email account will send automated replies to all the synchronized emails. Do you wish to continue?"
-msgstr ""
+msgstr "การเปิดใช้งานการตอบกลับอัตโนมัติในบัญชีอีเมลขาเข้าจะส่งการตอบกลับอัตโนมัติไปยังอีเมลที่ซิงค์ทั้งหมด คุณต้องการดำเนินการต่อหรือไม่?"
#. Description of a DocType
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved."
-msgstr ""
+msgstr "การเปิดใช้งานนี้จะลงทะเบียนไซต์ของคุณบนเซิร์ฟเวอร์รีเลย์กลางเพื่อส่งการแจ้งเตือนแบบพุชสำหรับแอปที่ติดตั้งทั้งหมดผ่าน Firebase Cloud Messaging เซิร์ฟเวอร์นี้จะจัดเก็บเฉพาะโทเค็นของผู้ใช้และบันทึกข้อผิดพลาด และไม่มีการบันทึกข้อความ"
#. Description of the 'Relay Settings' (Section Break) field in DocType 'Push
#. Notification Settings'
@@ -8875,7 +8875,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Enabling this will submit documents in background"
-msgstr ""
+msgstr "การเปิดใช้งานนี้จะส่งเอกสารในพื้นหลัง"
#. Label of the encrypt_backup (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
@@ -8919,62 +8919,62 @@ msgstr ""
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Ended At"
-msgstr ""
+msgstr "สิ้นสุดที่"
#. Label of the sb_endpoints_section (Section Break) field in DocType
#. 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Endpoints"
-msgstr ""
+msgstr "ปลายทาง"
#. Label of the ends_on (Datetime) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Ends on"
-msgstr ""
+msgstr "สิ้นสุดในวันที่"
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Energy Point"
-msgstr ""
+msgstr "คะแนนพลังงาน"
#. Label of the enqueued_by (Data) field in DocType 'Submission Queue'
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Enqueued By"
-msgstr ""
+msgstr "จัดคิวโดย"
#: frappe/core/doctype/recorder/recorder.py:125
msgid "Enqueued creation of indexes"
-msgstr ""
+msgstr "จัดคิวการสร้างดัชนี"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108
msgid "Ensure the user and group search paths are correct."
-msgstr ""
+msgstr "ตรวจสอบให้แน่ใจว่าเส้นทางการค้นหาผู้ใช้และกลุ่มถูกต้อง"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:109
msgid "Enter Client Id and Client Secret in Google Settings."
-msgstr ""
+msgstr "ป้อน Client Id และ Client Secret ในการตั้งค่า Google"
#: frappe/templates/includes/login/login.js:351
msgid "Enter Code displayed in OTP App."
-msgstr ""
+msgstr "ป้อนรหัสที่แสดงในแอป OTP"
#: frappe/public/js/frappe/views/communication.js:771
msgid "Enter Email Recipient(s)"
-msgstr ""
+msgstr "ป้อนผู้รับอีเมล"
#. Label of the doc_type (Link) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Enter Form Type"
-msgstr ""
+msgstr "ป้อนประเภทฟอร์ม"
#: frappe/public/js/frappe/ui/messages.js:94
msgctxt "Title of prompt dialog"
msgid "Enter Value"
-msgstr ""
+msgstr "ป้อนค่า"
#: frappe/public/js/frappe/form/form_tour.js:60
msgid "Enter a name for this {0}"
-msgstr ""
+msgstr "ป้อนชื่อสำหรับ {0} นี้"
#. Description of the 'User Defaults' (Table) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -8983,41 +8983,41 @@ msgstr ""
#: frappe/public/js/frappe/views/file/file_view.js:111
msgid "Enter folder name"
-msgstr ""
+msgstr "ป้อนชื่อโฟลเดอร์"
#. Description of the 'Static Parameters' (Table) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)"
-msgstr ""
+msgstr "ป้อนพารามิเตอร์ URL แบบคงที่ที่นี่ (เช่น sender=ERPNext, username=ERPNext, password=1234 เป็นต้น)"
#. Description of the 'Message Parameter' (Data) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Enter url parameter for message"
-msgstr ""
+msgstr "ป้อนพารามิเตอร์ URL สำหรับข้อความ"
#. Description of the 'Receiver Parameter' (Data) field in DocType 'SMS
#. Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Enter url parameter for receiver nos"
-msgstr ""
+msgstr "ป้อนพารามิเตอร์ URL สำหรับหมายเลขผู้รับ"
#: frappe/public/js/frappe/ui/messages.js:341
msgid "Enter your password"
-msgstr ""
+msgstr "ป้อนรหัสผ่านของคุณ"
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:22
msgid "Entity Name"
-msgstr ""
+msgstr "ชื่อเอนทิตี"
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:9
msgid "Entity Type"
-msgstr ""
+msgstr "ประเภทเอนทิตี"
#: frappe/public/js/frappe/ui/filters/filter.js:16
msgid "Equals"
-msgstr ""
+msgstr "เท่ากับ"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Data Import'
@@ -9039,17 +9039,17 @@ msgstr ""
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
#: frappe/public/js/frappe/ui/messages.js:22
msgid "Error"
-msgstr ""
+msgstr "ข้อผิดพลาด"
#: frappe/public/js/frappe/web_form/web_form.js:240
msgctxt "Title of error message in web form"
msgid "Error"
-msgstr ""
+msgstr "ข้อผิดพลาด"
#. Name of a DocType
#: frappe/core/doctype/error_log/error_log.json
msgid "Error Log"
-msgstr ""
+msgstr "บันทึกข้อผิดพลาด"
#. Label of a Link in the Build Workspace
#: frappe/core/workspace/build/build.json
@@ -9059,7 +9059,7 @@ msgstr ""
#. Label of the error_message (Text) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Error Message"
-msgstr ""
+msgstr "ข้อความข้อผิดพลาด"
#: frappe/public/js/frappe/form/print_utils.js:128
msgid "Error connecting to QZ Tray Application...
You need to have QZ Tray application installed and running, to use the Raw Print feature.
Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing."
@@ -9067,63 +9067,63 @@ msgstr ""
#: frappe/email/doctype/email_domain/email_domain.py:32
msgid "Error connecting via IMAP/POP3: {e}"
-msgstr ""
+msgstr "ข้อผิดพลาดในการเชื่อมต่อผ่าน IMAP/POP3: {e}"
#: frappe/email/doctype/email_domain/email_domain.py:33
msgid "Error connecting via SMTP: {e}"
-msgstr ""
+msgstr "ข้อผิดพลาดในการเชื่อมต่อผ่าน SMTP: {e}"
#: frappe/email/doctype/email_domain/email_domain.py:101
msgid "Error has occurred in {0}"
-msgstr ""
+msgstr "เกิดข้อผิดพลาดใน {0}"
#: frappe/public/js/frappe/form/script_manager.js:199
msgid "Error in Client Script"
-msgstr ""
+msgstr "ข้อผิดพลาดใน Client Script"
#: frappe/public/js/frappe/form/script_manager.js:256
msgid "Error in Client Script."
-msgstr ""
+msgstr "ข้อผิดพลาดใน Client Script."
#: frappe/printing/doctype/letter_head/letter_head.js:21
msgid "Error in Header/Footer Script"
-msgstr ""
+msgstr "ข้อผิดพลาดในสคริปต์ส่วนหัว/ส่วนท้าย"
#: frappe/email/doctype/notification/notification.py:598
#: frappe/email/doctype/notification/notification.py:735
#: frappe/email/doctype/notification/notification.py:741
msgid "Error in Notification"
-msgstr ""
+msgstr "ข้อผิดพลาดในการแจ้งเตือน"
#: frappe/utils/pdf.py:59
msgid "Error in print format on line {0}: {1}"
-msgstr ""
+msgstr "ข้อผิดพลาดในรูปแบบการพิมพ์ในบรรทัด {0}: {1}"
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
-msgstr ""
+msgstr "ข้อผิดพลาดขณะเชื่อมต่อกับบัญชีอีเมล {0}"
#: frappe/email/doctype/notification/notification.py:732
msgid "Error while evaluating Notification {0}. Please fix your template."
-msgstr ""
+msgstr "ข้อผิดพลาดขณะประเมินการแจ้งเตือน {0} โปรดแก้ไขแม่แบบของคุณ"
#: frappe/model/base_document.py:803
msgid "Error: Data missing in table {0}"
-msgstr ""
+msgstr "ข้อผิดพลาด: ข้อมูลหายไปในตาราง {0}"
#: frappe/model/base_document.py:813
msgid "Error: Value missing for {0}: {1}"
-msgstr ""
+msgstr "ข้อผิดพลาด: ค่าหายไปสำหรับ {0}: {1}"
#: frappe/model/base_document.py:807
msgid "Error: {0} Row #{1}: Value missing for: {2}"
-msgstr ""
+msgstr "ข้อผิดพลาด: {0} แถว #{1}: ค่าหายไปสำหรับ: {2}"
#. Label of the errors_generated_in_last_1_day_section (Section Break) field in
#. DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Errors"
-msgstr ""
+msgstr "ข้อผิดพลาด"
#. Option for the 'Type' (Select) field in DocType 'Communication'
#. Name of a DocType
@@ -9131,56 +9131,56 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/desk/doctype/event/event.json
msgid "Event"
-msgstr ""
+msgstr "เหตุการณ์"
#. Label of the event_category (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Event Category"
-msgstr ""
+msgstr "หมวดหมู่เหตุการณ์"
#. Label of the event_frequency (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Event Frequency"
-msgstr ""
+msgstr "ความถี่ของเหตุการณ์"
#. Label of the event_participants (Table) field in DocType 'Event'
#. Name of a DocType
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/event_participants/event_participants.json
msgid "Event Participants"
-msgstr ""
+msgstr "ผู้เข้าร่วมเหตุการณ์"
#. Label of the enable_email_event_reminders (Check) field in DocType
#. 'Notification Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Event Reminders"
-msgstr ""
+msgstr "การเตือนเหตุการณ์"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:493
#: frappe/integrations/doctype/google_calendar/google_calendar.py:577
msgid "Event Synced with Google Calendar."
-msgstr ""
+msgstr "เหตุการณ์ซิงค์กับ Google Calendar แล้ว"
#. Label of the event_type (Data) field in DocType 'Recorder'
#. Label of the event_type (Select) field in DocType 'Event'
#: frappe/core/doctype/recorder/recorder.json
#: frappe/desk/doctype/event/event.json
msgid "Event Type"
-msgstr ""
+msgstr "ประเภทเหตุการณ์"
#: frappe/public/js/frappe/ui/notifications/notifications.js:56
msgid "Events"
-msgstr ""
+msgstr "เหตุการณ์"
#: frappe/desk/doctype/event/event.py:274
msgid "Events in Today's Calendar"
-msgstr ""
+msgstr "เหตุการณ์ในปฏิทินวันนี้"
#. Label of the everyone (Check) field in DocType 'DocShare'
#: frappe/core/doctype/docshare/docshare.json
#: frappe/public/js/frappe/form/templates/set_sharing.html:11
msgid "Everyone"
-msgstr ""
+msgstr "ทุกคน"
#. Description of the 'Custom Options' (Code) field in DocType 'Dashboard
#. Chart'
@@ -9191,12 +9191,12 @@ msgstr ""
#. Label of the exact_copies (Int) field in DocType 'Recorder Query'
#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Exact Copies"
-msgstr ""
+msgstr "สำเนาที่เหมือนกัน"
#. Label of the example (HTML) field in DocType 'Workflow Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Example"
-msgstr ""
+msgstr "ตัวอย่าง"
#. Description of the 'Default Portal Home' (Data) field in DocType 'Portal
#. Settings'
@@ -9207,33 +9207,33 @@ msgstr ""
#. Description of the 'Path' (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Example: #Tree/Account"
-msgstr ""
+msgstr "ตัวอย่าง: #Tree/Account"
#. Description of the 'Digits' (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Example: 00001"
-msgstr ""
+msgstr "ตัวอย่าง: 00001"
#. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours."
-msgstr ""
+msgstr "ตัวอย่าง: การตั้งค่านี้เป็น 24:00 จะออกจากระบบผู้ใช้หากพวกเขาไม่ใช้งานเป็นเวลา 24:00 ชั่วโมง"
#. Description of the 'Description' (Small Text) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Example: {{ subject }}"
-msgstr ""
+msgstr "ตัวอย่าง: {{ subject }}"
#. Option for the 'File Type' (Select) field in DocType 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
msgid "Excel"
-msgstr ""
+msgstr "เอ็กเซล"
#: frappe/public/js/frappe/form/controls/password.js:90
msgid "Excellent"
-msgstr ""
+msgstr "ยอดเยี่ยม"
#. Label of the exception (Text) field in DocType 'Data Import Log'
#. Label of the exc_info (Code) field in DocType 'RQ Job'
@@ -9242,7 +9242,7 @@ msgstr ""
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Exception"
-msgstr ""
+msgstr "ข้อยกเว้น"
#. Label of the execute_section (Section Break) field in DocType 'System
#. Console'
@@ -9250,59 +9250,59 @@ msgstr ""
#: frappe/desk/doctype/system_console/system_console.js:22
#: frappe/desk/doctype/system_console/system_console.json
msgid "Execute"
-msgstr ""
+msgstr "ดำเนินการ"
#: frappe/desk/doctype/system_console/system_console.js:10
msgid "Execute Console script"
-msgstr ""
+msgstr "ดำเนินการสคริปต์คอนโซล"
#: frappe/public/js/frappe/ui/dropdown_console.js:125
msgid "Executing Code"
-msgstr ""
+msgstr "กำลังดำเนินการโค้ด"
#: frappe/desk/doctype/system_console/system_console.js:18
msgid "Executing..."
-msgstr ""
+msgstr "กำลังดำเนินการ..."
#: frappe/public/js/frappe/views/reports/query_report.js:2071
msgid "Execution Time: {0} sec"
-msgstr ""
+msgstr "เวลาการดำเนินการ: {0} วินาที"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Executive"
-msgstr ""
+msgstr "ผู้บริหาร"
#. Label of the existing_role (Link) field in DocType 'Role Replication'
#: frappe/core/doctype/role_replication/role_replication.json
msgid "Existing Role"
-msgstr ""
+msgstr "บทบาทที่มีอยู่"
#: frappe/public/js/frappe/views/treeview.js:115
#: frappe/public/js/frappe/views/treeview.js:127
#: frappe/public/js/frappe/views/treeview.js:137
#: frappe/public/js/frappe/widgets/base_widget.js:159
msgid "Expand"
-msgstr ""
+msgstr "ขยาย"
#: frappe/public/js/frappe/form/controls/code.js:185
msgctxt "Enlarge code field."
msgid "Expand"
-msgstr ""
+msgstr "ขยาย"
#: frappe/public/js/frappe/views/reports/query_report.js:2052
#: frappe/public/js/frappe/views/treeview.js:133
msgid "Expand All"
-msgstr ""
+msgstr "ขยายทั้งหมด"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
-msgstr ""
+msgstr "การทดลอง"
#. Option for the 'Level' (Select) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
msgid "Expert"
-msgstr ""
+msgstr "ผู้เชี่ยวชาญ"
#. Label of the expiration_time (Datetime) field in DocType 'OAuth
#. Authorization Code'
@@ -9311,34 +9311,34 @@ msgstr ""
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
msgid "Expiration time"
-msgstr ""
+msgstr "เวลาหมดอายุ"
#. Label of the expire_notification_on (Datetime) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
msgid "Expire Notification On"
-msgstr ""
+msgstr "การแจ้งเตือนหมดอายุเมื่อ"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Expired"
-msgstr ""
+msgstr "หมดอายุ"
#. Label of the expires_in (Int) field in DocType 'OAuth Bearer Token'
#. Label of the expires_in (Int) field in DocType 'Token Cache'
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Expires In"
-msgstr ""
+msgstr "หมดอายุใน"
#. Label of the expires_on (Date) field in DocType 'Document Share Key'
#: frappe/core/doctype/document_share_key/document_share_key.json
msgid "Expires On"
-msgstr ""
+msgstr "หมดอายุเมื่อ"
#. Label of the lifespan_qrcode_image (Int) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Expiry time of QR Code Image Page"
-msgstr ""
+msgstr "เวลาหมดอายุของหน้าภาพ QR Code"
#. Label of the export (Check) field in DocType 'Custom DocPerm'
#. Label of the export (Check) field in DocType 'DocPerm'
@@ -9351,126 +9351,126 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/report_view.js:1627
#: frappe/public/js/frappe/widgets/chart_widget.js:315
msgid "Export"
-msgstr ""
+msgstr "ส่งออก"
#: frappe/public/js/frappe/list/list_view.js:2135
msgctxt "Button in list view actions menu"
msgid "Export"
-msgstr ""
+msgstr "ส่งออก"
#: frappe/public/js/frappe/data_import/data_exporter.js:245
msgid "Export 1 record"
-msgstr ""
+msgstr "ส่งออก 1 รายการ"
#: frappe/custom/doctype/customize_form/customize_form.js:262
msgid "Export Custom Permissions"
-msgstr ""
+msgstr "ส่งออกสิทธิ์ที่กำหนดเอง"
#: frappe/custom/doctype/customize_form/customize_form.js:242
msgid "Export Customizations"
-msgstr ""
+msgstr "ส่งออกการปรับแต่ง"
#. Label of a Link in the Tools Workspace
#: frappe/automation/workspace/tools/tools.json
#: frappe/public/js/frappe/data_import/data_exporter.js:14
msgid "Export Data"
-msgstr ""
+msgstr "ส่งออกข้อมูล"
#: frappe/core/doctype/data_import/data_import.js:86
#: frappe/public/js/frappe/data_import/import_preview.js:199
msgid "Export Errored Rows"
-msgstr ""
+msgstr "ส่งออกแถวที่มีข้อผิดพลาด"
#. Label of the export_from (Data) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Export From"
-msgstr ""
+msgstr "ส่งออกจาก"
#: frappe/core/doctype/data_import/data_import.js:518
msgid "Export Import Log"
-msgstr ""
+msgstr "ส่งออกบันทึกการนำเข้า"
#: frappe/public/js/frappe/views/reports/report_utils.js:235
msgctxt "Export report"
msgid "Export Report: {0}"
-msgstr ""
+msgstr "ส่งออกรายงาน: {0}"
#: frappe/public/js/frappe/data_import/data_exporter.js:26
msgid "Export Type"
-msgstr ""
+msgstr "ประเภทการส่งออก"
#: frappe/public/js/frappe/views/reports/report_view.js:1638
msgid "Export all matching rows?"
-msgstr ""
+msgstr "ส่งออกแถวที่ตรงกันทั้งหมดหรือไม่?"
#: frappe/public/js/frappe/views/reports/report_view.js:1648
msgid "Export all {0} rows?"
-msgstr ""
+msgstr "ส่งออกแถว {0} ทั้งหมดหรือไม่?"
#: frappe/public/js/frappe/views/file/file_view.js:154
msgid "Export as zip"
-msgstr ""
+msgstr "ส่งออกเป็น zip"
#: frappe/public/js/frappe/utils/tools.js:11
msgid "Export not allowed. You need {0} role to export."
-msgstr ""
+msgstr "ไม่อนุญาตให้ส่งออก คุณต้องมีบทบาท {0} เพื่อส่งออก"
#. Description of the 'Export without main header' (Check) field in DocType
#. 'Data Export'
#: frappe/core/doctype/data_export/data_export.json
msgid "Export the data without any header notes and column descriptions"
-msgstr ""
+msgstr "ส่งออกข้อมูลโดยไม่มีบันทึกส่วนหัวและคำอธิบายคอลัมน์"
#. Label of the export_without_main_header (Check) field in DocType 'Data
#. Export'
#: frappe/core/doctype/data_export/data_export.json
msgid "Export without main header"
-msgstr ""
+msgstr "ส่งออกโดยไม่มีส่วนหัวหลัก"
#: frappe/public/js/frappe/data_import/data_exporter.js:247
msgid "Export {0} records"
-msgstr ""
+msgstr "ส่งออก {0} รายการ"
#: frappe/custom/doctype/customize_form/customize_form.js:263
msgid "Exported permissions will be force-synced on every migrate overriding any other customization."
-msgstr ""
+msgstr "สิทธิ์ที่ส่งออกจะถูกซิงค์โดยบังคับในทุกการย้ายข้อมูลแทนที่การปรับแต่งอื่น ๆ"
#. Label of the expose_recipients (Data) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Expose Recipients"
-msgstr ""
+msgstr "เปิดเผยผู้รับ"
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Expression"
-msgstr ""
+msgstr "นิพจน์"
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Expression (old style)"
-msgstr ""
+msgstr "นิพจน์ (รูปแบบเก่า)"
#. Description of the 'Condition' (Data) field in DocType 'Notification
#. Recipient'
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Expression, Optional"
-msgstr ""
+msgstr "นิพจน์, ไม่บังคับ"
#. Label of the external_link (Data) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/views/workspace/workspace.js:426
msgid "External Link"
-msgstr ""
+msgstr "ลิงก์ภายนอก"
#. Label of the section_break_18 (Section Break) field in DocType 'Connected
#. App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Extra Parameters"
-msgstr ""
+msgstr "พารามิเตอร์เพิ่มเติม"
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
@@ -9573,95 +9573,95 @@ msgstr ""
#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:75
msgid "Failed to generate preview of series"
-msgstr ""
+msgstr "ล้มเหลวในการสร้างตัวอย่างของซีรีส์"
#: frappe/handler.py:75
msgid "Failed to get method for command {0} with {1}"
-msgstr ""
+msgstr "ล้มเหลวในการดึงวิธีการสำหรับคำสั่ง {0} ด้วย {1}"
#: frappe/api/v2.py:46
msgid "Failed to get method {0} with {1}"
-msgstr ""
+msgstr "ล้มเหลวในการดึงวิธีการ {0} ด้วย {1}"
#: frappe/integrations/frappe_providers/frappecloud_billing.py:59
msgid "Failed to get site info"
-msgstr ""
+msgstr "ล้มเหลวในการดึงข้อมูลไซต์"
#: frappe/model/virtual_doctype.py:63
msgid "Failed to import virtual doctype {}, is controller file present?"
-msgstr ""
+msgstr "ล้มเหลวในการนำเข้า virtual doctype {}, มีไฟล์ตัวควบคุมอยู่หรือไม่?"
#: frappe/utils/image.py:75
msgid "Failed to optimize image: {0}"
-msgstr ""
+msgstr "ล้มเหลวในการปรับแต่งภาพ: {0}"
#: frappe/email/doctype/notification/notification.py:116
msgid "Failed to render message: {}"
-msgstr ""
+msgstr "ล้มเหลวในการแสดงข้อความ: {}"
#: frappe/email/doctype/notification/notification.py:134
msgid "Failed to render subject: {}"
-msgstr ""
+msgstr "ล้มเหลวในการแสดงหัวเรื่อง: {}"
#: frappe/integrations/frappe_providers/frappecloud_billing.py:94
msgid "Failed to request login to Frappe Cloud"
-msgstr ""
+msgstr "ล้มเหลวในการร้องขอเข้าสู่ระบบ Frappe Cloud"
#: frappe/email/doctype/email_queue/email_queue.py:297
msgid "Failed to send email with subject:"
-msgstr ""
+msgstr "ล้มเหลวในการส่งอีเมลที่มีหัวเรื่อง:"
#: frappe/desk/doctype/notification_log/notification_log.py:43
msgid "Failed to send notification email"
-msgstr ""
+msgstr "ล้มเหลวในการส่งอีเมลแจ้งเตือน"
#: frappe/desk/page/setup_wizard/setup_wizard.py:24
msgid "Failed to update global settings"
-msgstr ""
+msgstr "ล้มเหลวในการอัปเดตการตั้งค่าทั่วโลก"
#: frappe/integrations/frappe_providers/frappecloud_billing.py:74
msgid "Failed while calling API {0}"
-msgstr ""
+msgstr "ล้มเหลวขณะเรียก API {0}"
#. Label of the failing_scheduled_jobs (Table) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Failing Scheduled Jobs (last 7 days)"
-msgstr ""
+msgstr "งานที่กำหนดเวลาไว้ล้มเหลว (7 วันที่ผ่านมา)"
#: frappe/core/doctype/data_import/data_import.js:459
msgid "Failure"
-msgstr ""
+msgstr "ความล้มเหลว"
#. Label of the failure_rate (Percent) field in DocType 'System Health Report
#. Failing Jobs'
#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
msgid "Failure Rate"
-msgstr ""
+msgstr "อัตราความล้มเหลว"
#. Label of the favicon (Attach) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "FavIcon"
-msgstr ""
+msgstr "ไอคอนโปรด"
#. Label of the fax (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Fax"
-msgstr ""
+msgstr "แฟกซ์"
#. Label of the featured (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19
msgid "Featured"
-msgstr ""
+msgstr "แนะนำ"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:33
msgid "Feedback"
-msgstr ""
+msgstr "ข้อเสนอแนะ"
#: frappe/desk/page/setup_wizard/install_fixtures.py:29
msgid "Female"
-msgstr ""
+msgstr "หญิง"
#. Label of the fetch_from (Small Text) field in DocType 'DocField'
#. Label of the fetch_from (Small Text) field in DocType 'Custom Field'
@@ -9672,15 +9672,15 @@ msgstr ""
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:29
#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:34
msgid "Fetch From"
-msgstr ""
+msgstr "ดึงข้อมูลจาก"
#: frappe/website/doctype/website_slideshow/website_slideshow.js:15
msgid "Fetch Images"
-msgstr ""
+msgstr "ดึงภาพ"
#: frappe/website/doctype/website_slideshow/website_slideshow.js:13
msgid "Fetch attached images from document"
-msgstr ""
+msgstr "ดึงภาพที่แนบมาจากเอกสาร"
#. Label of the fetch_if_empty (Check) field in DocType 'DocField'
#. Label of the fetch_if_empty (Check) field in DocType 'Custom Field'
@@ -9689,11 +9689,11 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Fetch on Save if Empty"
-msgstr ""
+msgstr "ดึงข้อมูลเมื่อบันทึกหากว่างเปล่า"
#: frappe/desk/doctype/global_search_settings/global_search_settings.py:61
msgid "Fetching default Global Search documents."
-msgstr ""
+msgstr "กำลังดึงเอกสารการค้นหาทั่วโลกเริ่มต้น"
#. Label of the field (Select) field in DocType 'Assignment Rule'
#. Label of the field (Select) field in DocType 'Document Naming Rule
@@ -10177,33 +10177,33 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15
msgid "First Name"
-msgstr ""
+msgstr "ชื่อแรก"
#. Label of the first_success_message (Data) field in DocType 'Success Action'
#: frappe/core/doctype/success_action/success_action.json
msgid "First Success Message"
-msgstr ""
+msgstr "ข้อความความสำเร็จครั้งแรก"
#: frappe/core/report/transaction_log_report/transaction_log_report.py:49
msgid "First Transaction"
-msgstr ""
+msgstr "ธุรกรรมแรก"
#: frappe/core/doctype/data_export/exporter.py:185
msgid "First data column must be blank."
-msgstr ""
+msgstr "คอลัมน์ข้อมูลแรกต้องว่างเปล่า"
#: frappe/website/doctype/website_slideshow/website_slideshow.js:7
msgid "First set the name and save the record."
-msgstr ""
+msgstr "ตั้งชื่อก่อนแล้วบันทึกบันทึก"
#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:304
msgid "Fit"
-msgstr ""
+msgstr "พอดี"
#. Label of the flag (Data) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
msgid "Flag"
-msgstr ""
+msgstr "ธง"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -10218,12 +10218,12 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Float"
-msgstr ""
+msgstr "ลอยตัว"
#. Label of the float_precision (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Float Precision"
-msgstr ""
+msgstr "ความแม่นยำของการลอยตัว"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -10236,85 +10236,85 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Fold"
-msgstr ""
+msgstr "พับ"
#: frappe/core/doctype/doctype/doctype.py:1450
msgid "Fold can not be at the end of the form"
-msgstr ""
+msgstr "การพับไม่สามารถอยู่ที่ส่วนท้ายของฟอร์มได้"
#: frappe/core/doctype/doctype/doctype.py:1448
msgid "Fold must come before a Section Break"
-msgstr ""
+msgstr "การพับต้องมาก่อนการแบ่งส่วน"
#. Label of the folder (Link) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Folder"
-msgstr ""
+msgstr "โฟลเดอร์"
#. Label of the folder_name (Data) field in DocType 'IMAP Folder'
#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "Folder Name"
-msgstr ""
+msgstr "ชื่อโฟลเดอร์"
#: frappe/public/js/frappe/views/file/file_view.js:100
msgid "Folder name should not include '/' (slash)"
-msgstr ""
+msgstr "ชื่อโฟลเดอร์ไม่ควรรวม '/' (สแลช)"
#: frappe/core/doctype/file/file.py:472
msgid "Folder {0} is not empty"
-msgstr ""
+msgstr "โฟลเดอร์ {0} ไม่ว่างเปล่า"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Folio"
-msgstr ""
+msgstr "โฟลิโอ"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:106
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Follow"
-msgstr ""
+msgstr "ติดตาม"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:101
msgid "Followed by"
-msgstr ""
+msgstr "ตามด้วย"
#: frappe/email/doctype/auto_email_report/auto_email_report.py:130
msgid "Following Report Filters have missing values:"
-msgstr ""
+msgstr "ตัวกรองรายงานต่อไปนี้มีค่าที่ขาดหายไป:"
#: frappe/desk/form/document_follow.py:63
msgid "Following document {0}"
-msgstr ""
+msgstr "เอกสารต่อไปนี้ {0}"
#: frappe/website/doctype/web_form/web_form.py:108
msgid "Following fields are missing:"
-msgstr ""
+msgstr "ฟิลด์ต่อไปนี้ขาดหายไป:"
#: frappe/public/js/frappe/ui/field_group.js:139
msgid "Following fields have invalid values:"
-msgstr ""
+msgstr "ฟิลด์ต่อไปนี้มีค่าที่ไม่ถูกต้อง:"
#: frappe/public/js/frappe/widgets/widget_dialog.js:358
msgid "Following fields have missing values"
-msgstr ""
+msgstr "ฟิลด์ต่อไปนี้มีค่าที่ขาดหายไป"
#: frappe/public/js/frappe/ui/field_group.js:126
msgid "Following fields have missing values:"
-msgstr ""
+msgstr "ฟิลด์ต่อไปนี้มีค่าที่ขาดหายไป:"
#: frappe/email/doctype/newsletter/newsletter.js:30
msgid "Following links are broken in the email content: {0}"
-msgstr ""
+msgstr "ลิงก์ต่อไปนี้เสียในเนื้อหาอีเมล: {0}"
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
-msgstr ""
+msgstr "ฟอนต์"
#. Label of the font_properties (Data) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Font Properties"
-msgstr ""
+msgstr "คุณสมบัติฟอนต์"
#. Label of the font_size (Int) field in DocType 'Print Format'
#. Label of the font_size (Float) field in DocType 'Print Settings'
@@ -10324,13 +10324,13 @@ msgstr ""
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:45
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Font Size"
-msgstr ""
+msgstr "ขนาดฟอนต์"
#. Label of the section_break_8 (Section Break) field in DocType 'Print
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Fonts"
-msgstr ""
+msgstr "ฟอนต์"
#. Label of the set_footer (Section Break) field in DocType 'Email Account'
#. Label of the footer_section (Section Break) field in DocType 'Letter Head'
@@ -10343,7 +10343,7 @@ msgstr ""
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer"
-msgstr ""
+msgstr "ส่วนท้าย"
#. Label of the footer_powered (Small Text) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -10353,70 +10353,70 @@ msgstr ""
#. Label of the footer_source (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer Based On"
-msgstr ""
+msgstr "ส่วนท้ายตาม"
#. Label of the footer (Text Editor) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Footer Content"
-msgstr ""
+msgstr "เนื้อหาส่วนท้าย"
#. Label of the footer_details_section (Section Break) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Details"
-msgstr ""
+msgstr "รายละเอียดส่วนท้าย"
#. Label of the footer (HTML Editor) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer HTML"
-msgstr ""
+msgstr "HTML ส่วนท้าย"
#: frappe/printing/doctype/letter_head/letter_head.py:75
msgid "Footer HTML set from attachment {0}"
-msgstr ""
+msgstr "HTML ส่วนท้ายตั้งค่าจากไฟล์แนบ {0}"
#. Label of the footer_image_section (Section Break) field in DocType 'Letter
#. Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer Image"
-msgstr ""
+msgstr "ภาพส่วนท้าย"
#. Label of the footer (Section Break) field in DocType 'Website Settings'
#. Label of the footer_items (Table) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Items"
-msgstr ""
+msgstr "รายการส่วนท้าย"
#. Label of the footer_logo (Attach Image) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Logo"
-msgstr ""
+msgstr "โลโก้ส่วนท้าย"
#. Label of the footer_script (Code) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Footer Script"
-msgstr ""
+msgstr "สคริปต์ส่วนท้าย"
#. Label of the footer_template (Link) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Template"
-msgstr ""
+msgstr "แม่แบบส่วนท้าย"
#. Label of the footer_template_values (Code) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Footer Template Values"
-msgstr ""
+msgstr "ค่าแม่แบบส่วนท้าย"
#: frappe/printing/page/print/print.js:116
msgid "Footer might not be visible as {0} option is disabled"
-msgstr ""
+msgstr "ส่วนท้ายอาจมองไม่เห็นเนื่องจากตัวเลือก {0} ถูกปิดใช้งาน"
#. 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 ""
+msgstr "ส่วนท้ายจะแสดงผลได้ถูกต้องเฉพาะใน PDF"
#. Label of the for_doctype (Link) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
@@ -10501,21 +10501,21 @@ msgstr ""
#: frappe/integrations/doctype/google_settings/google_settings.js:7
msgid "For more information, {0}."
-msgstr ""
+msgstr "สำหรับข้อมูลเพิ่มเติม {0}"
#. 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 ""
+msgstr "สำหรับที่อยู่หลายรายการ ให้ป้อนที่อยู่ในบรรทัดต่าง ๆ เช่น test@test.com ⏎ test1@test.com"
#: frappe/core/doctype/data_export/exporter.py:197
msgid "For updating, you can update only selective columns."
-msgstr ""
+msgstr "สำหรับการอัปเดต คุณสามารถอัปเดตเฉพาะคอลัมน์ที่เลือกได้"
#: frappe/core/doctype/doctype/doctype.py:1751
msgid "For {0} at level {1} in {2} in row {3}"
-msgstr ""
+msgstr "สำหรับ {0} ที่ระดับ {1} ใน {2} ในแถว {3}"
#. Label of the force (Check) field in DocType 'Package Import'
#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth
@@ -10523,7 +10523,7 @@ msgstr ""
#: frappe/core/doctype/package_import/package_import.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
msgid "Force"
-msgstr ""
+msgstr "บังคับ"
#. Label of the force_re_route_to_default_view (Check) field in DocType
#. 'DocType'
@@ -10532,32 +10532,32 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Force Re-route to Default View"
-msgstr ""
+msgstr "บังคับเปลี่ยนเส้นทางไปยังมุมมองเริ่มต้น"
#. Label of the force_show (Check) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Force Show"
-msgstr ""
+msgstr "บังคับแสดง"
#: frappe/core/doctype/rq_job/rq_job.js:13
msgid "Force Stop job"
-msgstr ""
+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 ""
+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 ""
+msgstr "บังคับโหมดจับภาพเว็บสำหรับการอัปโหลด"
#: frappe/www/login.html:37
msgid "Forgot Password?"
-msgstr ""
+msgstr "ลืมรหัสผ่าน?"
#. Label of the form_builder_tab (Tab Break) field in DocType 'DocType'
#. Option for the 'Apply To' (Select) field in DocType 'Client Script'
@@ -10571,19 +10571,19 @@ msgstr ""
#: frappe/printing/page/print/print.js:83
#: frappe/website/doctype/web_form/web_form.json
msgid "Form"
-msgstr ""
+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 ""
+msgstr "ตัวสร้างฟอร์ม"
#. Label of the form_dict (Code) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "Form Dict"
-msgstr ""
+msgstr "พจนานุกรมฟอร์ม"
#. Label of the form_settings_section (Section Break) field in DocType
#. 'DocType'
@@ -10596,24 +10596,24 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/website/doctype/web_form/web_form.json
msgid "Form Settings"
-msgstr ""
+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 ""
+msgstr "ทัวร์ฟอร์ม"
#. Name of a DocType
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Form Tour Step"
-msgstr ""
+msgstr "ขั้นตอนทัวร์ฟอร์ม"
#. Option for the 'Request Structure' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Form URL-Encoded"
-msgstr ""
+msgstr "ฟอร์มที่เข้ารหัส URL"
#. Label of the format (Data) field in DocType 'Workspace Shortcut'
#. Label of the format (Select) field in DocType 'Auto Email Report'
@@ -10621,31 +10621,31 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/public/js/frappe/widgets/widget_dialog.js:565
msgid "Format"
-msgstr ""
+msgstr "รูปแบบ"
#. Label of the format_data (Code) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Format Data"
-msgstr ""
+msgstr "จัดรูปแบบข้อมูล"
#: frappe/core/doctype/communication/communication.js:70
msgid "Forward"
-msgstr ""
+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 ""
+msgstr "ส่งต่อไปยังที่อยู่อีเมล"
#. Label of the fraction (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Fraction"
-msgstr ""
+msgstr "เศษส่วน"
#. Label of the fraction_units (Int) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Fraction Units"
-msgstr ""
+msgstr "หน่วยเศษส่วน"
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
@@ -10653,44 +10653,44 @@ msgstr ""
#: frappe/www/login.html:64 frappe/www/login.html:162 frappe/www/login.py:53
#: frappe/www/login.py:153
msgid "Frappe"
-msgstr ""
+msgstr "ฟรัปเป้"
#: frappe/public/js/frappe/ui/toolbar/about.js:4
msgid "Frappe Framework"
-msgstr ""
+msgstr "เฟรมเวิร์กฟรัปเป้"
#: frappe/public/js/frappe/ui/theme_switcher.js:59
msgid "Frappe Light"
-msgstr ""
+msgstr "ฟรัปเป้ไลท์"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Frappe Mail"
-msgstr ""
+msgstr "ฟรัปเป้เมล"
#: frappe/email/doctype/email_account/email_account.py:547
msgid "Frappe Mail OAuth Error"
-msgstr ""
+msgstr "ข้อผิดพลาด OAuth ของฟรัปเป้เมล"
#. 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 ""
+msgstr "ไซต์ฟรัปเป้เมล"
#. Label of a standard help item
#. Type: Route
#: frappe/hooks.py
msgid "Frappe Support"
-msgstr ""
+msgstr "การสนับสนุนฟรัปเป้"
#: frappe/website/doctype/web_page/web_page.js:92
msgid "Frappe page builder using components"
-msgstr ""
+msgstr "ตัวสร้างหน้าฟรัปเป้โดยใช้คอมโพเนนต์"
#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:112
msgctxt "Image Cropper"
msgid "Free"
-msgstr ""
+msgstr "ฟรี"
#. Label of the frequency (Select) field in DocType 'Auto Repeat'
#. Label of the frequency (Select) field in DocType 'Scheduled Job Type'
@@ -10703,7 +10703,7 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/public/js/frappe/utils/common.js:395
msgid "Frequency"
-msgstr ""
+msgstr "ความถี่"
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -10719,7 +10719,7 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Friday"
-msgstr ""
+msgstr "วันศุกร์"
#. Label of the sender (Data) field in DocType 'Communication'
#. Label of the from_section (Section Break) field in DocType 'Newsletter'
@@ -10728,46 +10728,46 @@ msgstr ""
#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
-msgstr ""
+msgstr "จาก"
#: frappe/public/js/frappe/views/communication.js:194
msgctxt "Email Sender"
msgid "From"
-msgstr ""
+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 ""
+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 ""
+msgstr "ฟิลด์จากวันที่"
#: frappe/public/js/frappe/views/reports/query_report.js:1779
msgid "From Document Type"
-msgstr ""
+msgstr "จากประเภทเอกสาร"
#. Label of the sender_full_name (Data) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "From Full Name"
-msgstr ""
+msgstr "จากชื่อเต็ม"
#. Label of the from_user (Link) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "From User"
-msgstr ""
+msgstr "จากผู้ใช้"
#: frappe/public/js/frappe/utils/diffview.js:31
msgid "From version"
-msgstr ""
+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 ""
+msgstr "เต็ม"
#. Label of the full_name (Data) field in DocType 'Contact'
#. Label of the full_name (Data) field in DocType 'Activity Log'
@@ -10782,17 +10782,17 @@ msgstr ""
#: frappe/website/doctype/about_us_team_member/about_us_team_member.json
#: frappe/website/doctype/blogger/blogger.json
msgid "Full Name"
-msgstr ""
+msgstr "ชื่อเต็ม"
#: frappe/printing/page/print/print.js:67
#: frappe/public/js/frappe/form/templates/print_layout.html:42
msgid "Full Page"
-msgstr ""
+msgstr "เต็มหน้า"
#. Label of the full_width (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Full Width"
-msgstr ""
+msgstr "ความกว้างเต็ม"
#. Label of the function (Select) field in DocType 'Number Card'
#. Label of the report_function (Select) field in DocType 'Number Card'
@@ -10800,19 +10800,19 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:245
#: frappe/public/js/frappe/widgets/widget_dialog.js:699
msgid "Function"
-msgstr ""
+msgstr "ฟังก์ชัน"
#: frappe/public/js/frappe/widgets/widget_dialog.js:706
msgid "Function Based On"
-msgstr ""
+msgstr "ฟังก์ชันตาม"
#: frappe/__init__.py:677
msgid "Function {0} is not whitelisted."
-msgstr ""
+msgstr "ฟังก์ชัน {0} ไม่ได้อยู่ในรายการที่อนุญาต"
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
-msgstr ""
+msgstr "สามารถสร้างโหนดเพิ่มเติมได้เฉพาะภายใต้โหนดประเภท 'กลุ่ม'"
#: frappe/core/doctype/communication/communication.js:291
msgid "Fw: {0}"
@@ -11133,7 +11133,7 @@ msgstr ""
#: frappe/integrations/doctype/google_calendar/google_calendar.py:181
msgid "Google Calendar has been configured."
-msgstr ""
+msgstr "ปฏิทิน Google ได้รับการกำหนดค่าแล้ว"
#. Label of the sb_00 (Section Break) field in DocType 'Contact'
#. Label of the google_contacts (Link) field in DocType 'Contact'
@@ -11144,20 +11144,20 @@ msgstr ""
#: frappe/integrations/doctype/google_contacts/google_contacts.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Contacts"
-msgstr ""
+msgstr "รายชื่อ Google"
#: frappe/integrations/doctype/google_contacts/google_contacts.py:137
msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}."
-msgstr ""
+msgstr "รายชื่อ Google - ไม่สามารถซิงค์รายชื่อจาก Google Contacts {0}, รหัสข้อผิดพลาด {1}."
#: frappe/integrations/doctype/google_contacts/google_contacts.py:294
msgid "Google Contacts - Could not update contact in Google Contacts {0}, error code {1}."
-msgstr ""
+msgstr "รายชื่อ Google - ไม่สามารถอัปเดตรายชื่อใน Google Contacts {0}, รหัสข้อผิดพลาด {1}."
#. Label of the google_contacts_id (Data) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Google Contacts Id"
-msgstr ""
+msgstr "รหัสรายชื่อ Google"
#. Label of a Link in the Integrations Workspace
#: frappe/integrations/workspace/integrations/integrations.json
@@ -11169,13 +11169,13 @@ msgstr ""
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Google Drive Picker"
-msgstr ""
+msgstr "ตัวเลือก Google Drive"
#. Label of the google_drive_picker_enabled (Check) field in DocType 'Google
#. Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "Google Drive Picker Enabled"
-msgstr ""
+msgstr "เปิดใช้งานตัวเลือก Google Drive"
#. Label of the font (Data) field in DocType 'Print Format'
#. Label of the google_font (Data) field in DocType 'Website Theme'
@@ -11183,12 +11183,12 @@ msgstr ""
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:28
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Google Font"
-msgstr ""
+msgstr "ฟอนต์ Google"
#. Label of the google_meet_link (Small Text) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Google Meet Link"
-msgstr ""
+msgstr "ลิงก์ Google Meet"
#. Label of a Card Break in the Integrations Workspace
#: frappe/integrations/workspace/integrations/integrations.json
@@ -11200,11 +11200,11 @@ msgstr ""
#: frappe/integrations/doctype/google_settings/google_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Google Settings"
-msgstr ""
+msgstr "การตั้งค่า Google"
#: frappe/utils/csvutils.py:226
msgid "Google Sheets URL is invalid or not publicly accessible."
-msgstr ""
+msgstr "URL ของ Google Sheets ไม่ถูกต้องหรือไม่สามารถเข้าถึงได้สาธารณะ"
#: 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."
@@ -11213,54 +11213,54 @@ msgstr ""
#. Label of the google_preview (HTML) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Google Snippet Preview"
-msgstr ""
+msgstr "ตัวอย่าง Google Snippet"
#. Label of the grant_type (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Grant Type"
-msgstr ""
+msgstr "ประเภทการมอบ"
#: frappe/public/js/frappe/form/dashboard.js:34
#: frappe/public/js/frappe/form/templates/form_dashboard.html:10
msgid "Graph"
-msgstr ""
+msgstr "กราฟ"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Gray"
-msgstr ""
+msgstr "สีเทา"
#: frappe/public/js/frappe/ui/filters/filter.js:23
msgid "Greater Than"
-msgstr ""
+msgstr "มากกว่า"
#: frappe/public/js/frappe/ui/filters/filter.js:25
msgid "Greater Than Or Equal To"
-msgstr ""
+msgstr "มากกว่าหรือเท่ากับ"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Green"
-msgstr ""
+msgstr "สีเขียว"
#: frappe/public/js/form_builder/components/controls/TableControl.vue:53
msgid "Grid Empty State"
-msgstr ""
+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 ""
+msgstr "ความยาวหน้ากริด"
#: frappe/public/js/frappe/ui/keyboard.js:127
msgid "Grid Shortcuts"
-msgstr ""
+msgstr "ทางลัดกริด"
#. Label of the group (Data) field in DocType 'DocType Action'
#. Label of the group (Data) field in DocType 'DocType Link'
@@ -11269,36 +11269,36 @@ msgstr ""
#: frappe/core/doctype/doctype_link/doctype_link.json
#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Group"
-msgstr ""
+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 ""
+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 ""
+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 ""
+msgstr "จัดกลุ่มตามประเภท"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408
msgid "Group By field is required to create a dashboard chart"
-msgstr ""
+msgstr "ฟิลด์จัดกลุ่มตามเป็นสิ่งจำเป็นในการสร้างแผนภูมิแดชบอร์ด"
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
-msgstr ""
+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 ""
+msgstr "คลาสวัตถุกลุ่ม"
#. Description of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
@@ -11307,7 +11307,7 @@ msgstr ""
#: frappe/public/js/frappe/ui/group_by/group_by.js:425
msgid "Grouped by {0} "
-msgstr ""
+msgstr "จัดกลุ่มตาม {0}"
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
@@ -11373,79 +11373,79 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "HTML Editor"
-msgstr ""
+msgstr "ตัวแก้ไข HTML"
#. Label of the page (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "HTML Page"
-msgstr ""
+msgstr "หน้า HTML"
#. Description of the 'Header' (HTML Editor) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "HTML for header section. Optional"
-msgstr ""
+msgstr "HTML สำหรับส่วนหัว ส่วนเสริม"
#: frappe/website/doctype/web_page/web_page.js:92
msgid "HTML with jinja support"
-msgstr ""
+msgstr "HTML พร้อมการสนับสนุน jinja"
#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link'
#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json
msgid "Half"
-msgstr ""
+msgstr "ครึ่ง"
#. Option for the 'Repeat On' (Select) field in DocType 'Event'
#. Option for the 'Period' (Select) field in DocType 'Auto Email Report'
#: frappe/desk/doctype/event/event.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Half Yearly"
-msgstr ""
+msgstr "ครึ่งปี"
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/public/js/frappe/utils/common.js:402
msgid "Half-yearly"
-msgstr ""
+msgstr "ครึ่งปี"
#. Label of the handled_emails (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Handled Emails"
-msgstr ""
+msgstr "อีเมลที่จัดการแล้ว"
#. Label of the has_attachment (Check) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Has Attachment"
-msgstr ""
+msgstr "มีไฟล์แนบ"
#. Name of a DocType
#: frappe/core/doctype/has_domain/has_domain.json
msgid "Has Domain"
-msgstr ""
+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 ""
+msgstr "มีเงื่อนไขถัดไป"
#. Name of a DocType
#: frappe/core/doctype/has_role/has_role.json
msgid "Has Role"
-msgstr ""
+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 ""
+msgstr "มีตัวช่วยตั้งค่า"
#. Label of the has_web_view (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Has Web View"
-msgstr ""
+msgstr "มีมุมมองเว็บ"
#: frappe/templates/signup.html:19
msgid "Have an account? Login"
-msgstr ""
+msgstr "มีบัญชีหรือไม่? เข้าสู่ระบบ"
#. Label of the header (Check) field in DocType 'SMS Parameter'
#. Label of the header_section (Section Break) field in DocType 'Letter Head'
@@ -11456,43 +11456,43 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Header"
-msgstr ""
+msgstr "ส่วนหัว"
#. Label of the content (HTML Editor) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Header HTML"
-msgstr ""
+msgstr "HTML ส่วนหัว"
#: frappe/printing/doctype/letter_head/letter_head.py:63
msgid "Header HTML set from attachment {0}"
-msgstr ""
+msgstr "HTML ส่วนหัวตั้งค่าจากไฟล์แนบ {0}"
#. Label of the header_script (Code) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Header Script"
-msgstr ""
+msgstr "สคริปต์ส่วนหัว"
#. Label of the sb2 (Section Break) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Header and Breadcrumbs"
-msgstr ""
+msgstr "ส่วนหัวและเส้นทางนำทาง"
#. Label of the section_break_38 (Tab Break) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Header, Robots"
-msgstr ""
+msgstr "ส่วนหัว, หุ่นยนต์"
#: frappe/printing/doctype/letter_head/letter_head.js:30
msgid "Header/Footer scripts can be used to add dynamic behaviours."
-msgstr ""
+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 ""
+msgstr "ส่วนหัว"
#: frappe/email/email_body.py:322
msgid "Headers must be a dictionary"
@@ -11510,16 +11510,16 @@ msgstr ""
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "Heading"
-msgstr ""
+msgstr "หัวข้อ"
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Heatmap"
-msgstr ""
+msgstr "แผนที่ความร้อน"
#: frappe/templates/emails/new_user.html:2
msgid "Hello"
-msgstr ""
+msgstr "สวัสดี"
#. Label of the help_section (Section Break) field in DocType 'Server Script'
#. Label of the help (HTML) field in DocType 'Property Setter'
@@ -11530,41 +11530,41 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/navbar.html:87
#: frappe/public/js/frappe/utils/help.js:27
msgid "Help"
-msgstr ""
+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 ""
+msgstr "บทความช่วยเหลือ"
#. Label of the help_articles (Int) field in DocType 'Help Category'
#: frappe/website/doctype/help_category/help_category.json
msgid "Help Articles"
-msgstr ""
+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 ""
+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 ""
+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 ""
+msgstr "HTML ช่วยเหลือ"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:149
msgid "Help on Search"
-msgstr ""
+msgstr "ช่วยเหลือในการค้นหา"
#. Description of the 'Content' (Text Editor) field in DocType 'Note'
#: frappe/desk/doctype/note/note.json
@@ -11574,25 +11574,25 @@ msgstr ""
#. Label of the helpful (Int) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
msgid "Helpful"
-msgstr ""
+msgstr "มีประโยชน์"
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Helvetica"
-msgstr ""
+msgstr "เฮลเวติกา"
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Helvetica Neue"
-msgstr ""
+msgstr "เฮลเวติกา นอย"
#: frappe/public/js/frappe/utils/utils.js:1784
msgid "Here's your tracking URL"
-msgstr ""
+msgstr "นี่คือลิงก์ติดตามของคุณ"
#: frappe/www/qrcode.html:9
msgid "Hi {0}"
-msgstr ""
+msgstr "สวัสดี {0}"
#. Label of the hidden (Check) field in DocType 'DocField'
#. Label of the hidden (Check) field in DocType 'DocType Action'
@@ -11614,13 +11614,13 @@ msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:3
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Hidden"
-msgstr ""
+msgstr "ซ่อน"
#. Label of the section_break_13 (Section Break) field in DocType 'Form Tour
#. Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Hidden Fields"
-msgstr ""
+msgstr "ฟิลด์ที่ซ่อนอยู่"
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -11629,12 +11629,12 @@ msgstr ""
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243
#: frappe/templates/includes/login/login.js:82
msgid "Hide"
-msgstr ""
+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 ""
+msgstr "ซ่อนบล็อก"
#. Label of the hide_border (Check) field in DocType 'DocField'
#. Label of the hide_border (Check) field in DocType 'Custom Field'
@@ -11643,29 +11643,29 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Border"
-msgstr ""
+msgstr "ซ่อนขอบ"
#. Label of the hide_buttons (Check) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Hide Buttons"
-msgstr ""
+msgstr "ซ่อนปุ่ม"
#. Label of the hide_cta (Check) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Hide CTA"
-msgstr ""
+msgstr "ซ่อน CTA"
#. Label of the allow_copy (Check) field in DocType 'DocType'
#. Label of the allow_copy (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Hide Copy"
-msgstr ""
+msgstr "ซ่อนคัดลอก"
#. Label of the hide_custom (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Hide Custom DocTypes and Reports"
-msgstr ""
+msgstr "ซ่อน DocTypes และรายงานที่กำหนดเอง"
#. Label of the hide_days (Check) field in DocType 'DocField'
#. Label of the hide_days (Check) field in DocType 'Custom Field'
@@ -11674,46 +11674,46 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Days"
-msgstr ""
+msgstr "ซ่อนวัน"
#. Label of the hide_descendants (Check) field in DocType 'User Permission'
#: frappe/core/doctype/user_permission/user_permission.json
#: frappe/core/doctype/user_permission/user_permission_list.js:96
msgid "Hide Descendants"
-msgstr ""
+msgstr "ซ่อนลูกหลาน"
#. Label of the hide_empty_read_only_fields (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Hide Empty Read-Only Fields"
-msgstr ""
+msgstr "ซ่อนฟิลด์ที่อ่านได้อย่างเดียวที่ว่างเปล่า"
#: frappe/www/error.html:62
msgid "Hide Error"
-msgstr ""
+msgstr "ซ่อนข้อผิดพลาด"
#: frappe/printing/page/print_format_builder/print_format_builder.js:488
msgid "Hide Label"
-msgstr ""
+msgstr "ซ่อนป้ายกำกับ"
#. Label of the hide_login (Check) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Hide Login"
-msgstr ""
+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 ""
+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 ""
+msgstr "ซ่อนปุ่มก่อนหน้า ถัดไป และปิดในหน้าต่างไฮไลต์"
#: frappe/public/js/frappe/list/list_filter.js:94
msgid "Hide Saved"
-msgstr ""
+msgstr "ซ่อนที่บันทึกไว้"
#. Label of the hide_seconds (Check) field in DocType 'DocField'
#. Label of the hide_seconds (Check) field in DocType 'Custom Field'
@@ -11722,76 +11722,76 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Hide Seconds"
-msgstr ""
+msgstr "ซ่อนวินาที"
#. Label of the hide_toolbar (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Hide Sidebar, Menu, and Comments"
-msgstr ""
+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 ""
+msgstr "ซ่อนเมนูมาตรฐาน"
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Hide Tags"
-msgstr ""
+msgstr "ซ่อนแท็ก"
#: frappe/public/js/frappe/views/calendar/calendar.js:179
msgid "Hide Weekends"
-msgstr ""
+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 ""
+msgstr "ซ่อนบันทึกลูกหลานของ For Value."
#: frappe/public/js/frappe/form/layout.js:286
msgid "Hide details"
-msgstr ""
+msgstr "ซ่อนรายละเอียด"
#. Label of the hide_footer (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Hide footer"
-msgstr ""
+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 ""
+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 ""
+msgstr "ซ่อนการสมัครส่วนท้าย"
#. Label of the hide_navbar (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Hide navbar"
-msgstr ""
+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 ""
+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 ""
+msgstr "กฎที่มีลำดับความสำคัญสูงกว่าจะถูกใช้ก่อน"
#. Label of the highlight (Text) field in DocType 'Company History'
#: frappe/website/doctype/company_history/company_history.json
msgid "Highlight"
-msgstr ""
+msgstr "ไฮไลต์"
#: frappe/www/update-password.html:276
msgid "Hint: Include symbols, numbers and capital letters in the password"
-msgstr ""
+msgstr "คำแนะนำ: รวมสัญลักษณ์ ตัวเลข และตัวอักษรตัวใหญ่ในรหัสผ่าน"
#. Label of the home_tab (Tab Break) field in DocType 'Website Settings'
#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:38
@@ -11807,33 +11807,33 @@ msgstr ""
#: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76
#: frappe/www/message.html:29
msgid "Home"
-msgstr ""
+msgstr "หน้าแรก"
#. Label of the home_page (Data) field in DocType 'Role'
#. Label of the home_page (Data) field in DocType 'Website Settings'
#: frappe/core/doctype/role/role.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Home Page"
-msgstr ""
+msgstr "หน้าแรก"
#. Label of the home_settings (Code) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Home Settings"
-msgstr ""
+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 ""
+msgstr "หน้าแรก/โฟลเดอร์ทดสอบ 1"
#: frappe/core/doctype/file/test_file.py:376
msgid "Home/Test Folder 1/Test Folder 3"
-msgstr ""
+msgstr "หน้าแรก/โฟลเดอร์ทดสอบ 1/โฟลเดอร์ทดสอบ 3"
#: frappe/core/doctype/file/test_file.py:332
msgid "Home/Test Folder 2"
-msgstr ""
+msgstr "หน้าแรก/โฟลเดอร์ทดสอบ 2"
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
@@ -11842,30 +11842,30 @@ msgstr ""
#: frappe/core/doctype/server_script/server_script.json
#: frappe/core/doctype/user/user.json
msgid "Hourly"
-msgstr ""
+msgstr "รายชั่วโมง"
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Hourly Long"
-msgstr ""
+msgstr "รายชั่วโมงแบบยาว"
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Hourly Maintenance"
-msgstr ""
+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 ""
+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 ""
+msgstr "ควรจัดรูปแบบสกุลเงินนี้อย่างไร? หากไม่ได้ตั้งค่า จะใช้ค่าเริ่มต้นของระบบ"
#. Paragraph text in the Welcome Workspace Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
@@ -11885,33 +11885,33 @@ msgstr ""
#: frappe/public/js/frappe/model/meta.js:200
#: frappe/public/js/frappe/model/model.js:122
msgid "ID"
-msgstr ""
+msgstr "รหัส"
#: frappe/desk/reportview.py:491
#: frappe/public/js/frappe/views/reports/report_view.js:984
msgctxt "Label of name column in report"
msgid "ID"
-msgstr ""
+msgstr "รหัส"
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:169
msgid "ID (name)"
-msgstr ""
+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 ""
+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 ""
+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 ""
+msgstr "รายละเอียด IMAP"
#. Label of the imap_folder (Data) field in DocType 'Communication'
#. Label of the imap_folder (Table) field in DocType 'Email Account'
@@ -11920,14 +11920,14 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/imap_folder/imap_folder.json
msgid "IMAP Folder"
-msgstr ""
+msgstr "โฟลเดอร์ IMAP"
#. Label of the ip_address (Data) field in DocType 'Activity Log'
#. Label of the ip_address (Data) field in DocType 'Comment'
#: frappe/core/doctype/activity_log/activity_log.json
#: frappe/core/doctype/comment/comment.json
msgid "IP Address"
-msgstr ""
+msgstr "ที่อยู่ IP"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the icon (Data) field in DocType 'DocType'
@@ -11951,29 +11951,29 @@ msgstr ""
#: frappe/public/js/frappe/views/workspace/workspace.js:458
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Icon"
-msgstr ""
+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 ""
+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 ""
+msgstr "รายละเอียดตัวตน"
#. Label of the idx (Int) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Idx"
-msgstr ""
+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 ""
+msgstr "หากเลือกใช้การอนุญาตผู้ใช้อย่างเข้มงวดและกำหนดการอนุญาตผู้ใช้สำหรับ DocType สำหรับผู้ใช้ เอกสารทั้งหมดที่ค่าของลิงก์ว่างเปล่าจะไม่แสดงให้ผู้ใช้นั้นเห็น"
#. Description of the 'Don't Override Status' (Check) field in DocType
#. 'Workflow'
@@ -11982,128 +11982,128 @@ msgstr ""
#: frappe/workflow/doctype/workflow/workflow.json
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "If Checked workflow status will not override status in list view"
-msgstr ""
+msgstr "หากเลือก สถานะเวิร์กโฟลว์จะไม่เขียนทับสถานะในมุมมองรายการ"
#: frappe/core/doctype/doctype/doctype.py:1763
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45
#: frappe/public/js/frappe/roles_editor.js:66
msgid "If Owner"
-msgstr ""
+msgstr "หากเป็นเจ้าของ"
#: frappe/core/page/permission_manager/permission_manager_help.html:25
msgid "If a Role does not have access at Level 0, then higher levels are meaningless."
-msgstr ""
+msgstr "หากบทบาทไม่มีสิทธิ์เข้าถึงที่ระดับ 0 ระดับที่สูงกว่าจะไม่มีความหมาย"
#. Description of the 'Is Active' (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "If checked, all other workflows become inactive."
-msgstr ""
+msgstr "หากเลือก เวิร์กโฟลว์อื่นทั้งหมดจะไม่ทำงาน"
#. Description of the 'Show Absolute Values' (Check) field in DocType 'Print
#. Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "If checked, negative numeric values of Currency, Quantity or Count would be shown as positive"
-msgstr ""
+msgstr "หากเลือก ค่าตัวเลขเชิงลบของสกุลเงิน ปริมาณ หรือจำนวนจะถูกแสดงเป็นค่าบวก"
#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth
#. Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "If checked, users will not see the Confirm Access dialog."
-msgstr ""
+msgstr "หากเลือก ผู้ใช้จะไม่เห็นหน้าต่างยืนยันการเข้าถึง"
#. Description of the 'Disabled' (Check) field in DocType 'Role'
#: frappe/core/doctype/role/role.json
msgid "If disabled, this role will be removed from all users."
-msgstr ""
+msgstr "หากปิดใช้งาน บทบาทนี้จะถูกลบออกจากผู้ใช้ทั้งหมด"
#. Description of the 'Bypass Restricted IP Address Check If Two Factor Auth
#. Enabled' (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings"
-msgstr ""
+msgstr "หากเปิดใช้งาน ผู้ใช้สามารถเข้าสู่ระบบจากที่อยู่ IP ใด ๆ โดยใช้การยืนยันตัวตนสองขั้นตอน ซึ่งสามารถตั้งค่าสำหรับผู้ใช้ทั้งหมดในการตั้งค่าระบบ"
#. Description of the 'Anonymous responses' (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "If enabled, all responses on the web form will be submitted anonymously"
-msgstr ""
+msgstr "หากเปิดใช้งาน การตอบกลับทั้งหมดในฟอร์มเว็บจะถูกส่งโดยไม่ระบุชื่อ"
#. Description of the 'Bypass restricted IP Address check If Two Factor Auth
#. Enabled' (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page"
-msgstr ""
+msgstr "หากเปิดใช้งาน ผู้ใช้ทั้งหมดสามารถเข้าสู่ระบบจากที่อยู่ IP ใด ๆ โดยใช้การยืนยันตัวตนสองขั้นตอน ซึ่งสามารถตั้งค่าได้เฉพาะสำหรับผู้ใช้บางรายในหน้าผู้ใช้"
#. Description of the 'Track Changes' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "If enabled, changes to the document are tracked and shown in timeline"
-msgstr ""
+msgstr "หากเปิดใช้งาน การเปลี่ยนแปลงในเอกสารจะถูกติดตามและแสดงในไทม์ไลน์"
#. Description of the 'Track Views' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "If enabled, document views are tracked, this can happen multiple times"
-msgstr ""
+msgstr "หากเปิดใช้งาน การดูเอกสารจะถูกติดตาม ซึ่งสามารถเกิดขึ้นได้หลายครั้ง"
#. Description of the 'Track Seen' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "If enabled, the document is marked as seen, the first time a user opens it"
-msgstr ""
+msgstr "หากเปิดใช้งาน เอกสารจะถูกทำเครื่องหมายว่าเห็นแล้วเมื่อผู้ใช้เปิดครั้งแรก"
#. Description of the 'Send System Notification' (Check) field in DocType
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "If enabled, the notification will show up in the notifications dropdown on the top right corner of the navigation bar."
-msgstr ""
+msgstr "หากเปิดใช้งาน การแจ้งเตือนจะแสดงในเมนูแบบเลื่อนลงของการแจ้งเตือนที่มุมขวาบนของแถบนำทาง"
#. Description of the 'Enable Password Policy' (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 1 being very weak and 4 being very strong."
-msgstr ""
+msgstr "หากเปิดใช้งาน ความแข็งแกร่งของรหัสผ่านจะถูกบังคับใช้ตามค่าคะแนนรหัสผ่านขั้นต่ำ โดยค่าที่ 1 หมายถึงอ่อนมาก และค่าที่ 4 หมายถึงแข็งแกร่งมาก"
#. Description of the 'Bypass Two Factor Auth for users who login from
#. restricted IP Address' (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth"
-msgstr ""
+msgstr "หากเปิดใช้งาน ผู้ใช้ที่เข้าสู่ระบบจากที่อยู่ IP ที่จำกัดจะไม่ได้รับการแจ้งเตือนสำหรับการยืนยันตัวตนสองขั้นตอน"
#. Description of the 'Notify Users On Every Login' (Check) field in DocType
#. 'Note'
#: frappe/desk/doctype/note/note.json
msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once."
-msgstr ""
+msgstr "หากเปิดใช้งาน ผู้ใช้จะได้รับการแจ้งเตือนทุกครั้งที่เข้าสู่ระบบ หากไม่ได้เปิดใช้งาน ผู้ใช้จะได้รับการแจ้งเตือนเพียงครั้งเดียว"
#. Description of the 'Default Workspace' (Link) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "If left empty, the default workspace will be the last visited workspace"
-msgstr ""
+msgstr "หากเว้นว่างไว้ พื้นที่ทำงานเริ่มต้นจะเป็นพื้นที่ทำงานที่เยี่ยมชมล่าสุด"
#. Description of the 'Port' (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_domain/email_domain.json
msgid "If non standard port (e.g. 587)"
-msgstr ""
+msgstr "หากเป็นพอร์ตที่ไม่มาตรฐาน (เช่น 587)"
#. Description of the 'Port' (Data) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "If non standard port (e.g. 587). If on Google Cloud, try port 2525."
-msgstr ""
+msgstr "หากเป็นพอร์ตที่ไม่มาตรฐาน (เช่น 587) หากอยู่บน Google Cloud ให้ลองใช้พอร์ต 2525"
#. Description of the 'Port' (Data) field in DocType 'Email Account'
#. Description of the 'Port' (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)"
-msgstr ""
+msgstr "หากเป็นพอร์ตที่ไม่มาตรฐาน (เช่น POP3: 995/110, IMAP: 993/143)"
#. Description of the 'Currency Precision' (Select) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "If not set, the currency precision will depend on number format"
-msgstr ""
+msgstr "หากไม่ได้ตั้งค่า ความแม่นยำของสกุลเงินจะขึ้นอยู่กับรูปแบบตัวเลข"
#. Description of the 'Roles' (Table) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used."
-msgstr ""
+msgstr "หากตั้งค่าไว้ เฉพาะผู้ใช้ที่มีบทบาทเหล่านี้เท่านั้นที่สามารถเข้าถึงแผนภูมินี้ได้ หากไม่ได้ตั้งค่า จะใช้สิทธิ์ DocType หรือรายงาน"
#. Description of the 'User Type' (Link) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -12112,7 +12112,7 @@ 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 ""
+msgstr "หากคำแนะนำเหล่านี้ไม่เป็นประโยชน์ โปรดเพิ่มข้อเสนอแนะของคุณใน GitHub Issues"
#. Description of the 'Fetch on Save if Empty' (Check) field in DocType
#. 'DocField'
@@ -12124,14 +12124,14 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "If unchecked, the value will always be re-fetched on save."
-msgstr ""
+msgstr "หากไม่ได้เลือก ค่าจะถูกดึงใหม่เสมอเมื่อบันทึก"
#. Label of the if_owner (Check) field in DocType 'Custom DocPerm'
#. Label of the if_owner (Check) field in DocType 'DocPerm'
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
msgid "If user is the owner"
-msgstr ""
+msgstr "หากผู้ใช้เป็นเจ้าของ"
#: frappe/core/doctype/data_export/exporter.py:204
msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted."
@@ -12147,26 +12147,26 @@ msgstr ""
#: frappe/utils/password.py:214
msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key."
-msgstr ""
+msgstr "หากคุณเพิ่งกู้คืนไซต์ คุณอาจต้องคัดลอก site_config.json ที่มีคีย์การเข้ารหัสต้นฉบับ"
#. Description of the 'Parent Label' (Select) field in DocType 'Top Bar Item'
#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "If you set this, this Item will come in a drop-down under the selected parent."
-msgstr ""
+msgstr "หากคุณตั้งค่านี้ รายการนี้จะปรากฏในเมนูแบบเลื่อนลงภายใต้ผู้ปกครองที่เลือก"
#: frappe/templates/emails/administrator_logged_in.html:3
msgid "If you think this is unauthorized, please change the Administrator password."
-msgstr ""
+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 ""
+msgstr "หาก CSV ของคุณใช้ตัวคั่นที่แตกต่างกัน ให้เพิ่มอักขระนั้นที่นี่ โดยให้แน่ใจว่าไม่มีช่องว่างหรืออักขระเพิ่มเติมรวมอยู่ด้วย"
#. Description of the 'Source Text' (Code) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "If your data is in HTML, please copy paste the exact HTML code with the tags."
-msgstr ""
+msgstr "หากข้อมูลของคุณอยู่ใน HTML โปรดคัดลอกและวางโค้ด HTML ที่แน่นอนพร้อมแท็ก"
#. Label of the ignore_user_permissions (Check) field in DocType 'DocField'
#. Label of the ignore_user_permissions (Check) field in DocType 'Custom Field'
@@ -12176,7 +12176,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Ignore User Permissions"
-msgstr ""
+msgstr "ละเว้นสิทธิ์ของผู้ใช้"
#. Label of the ignore_xss_filter (Check) field in DocType 'DocField'
#. Label of the ignore_xss_filter (Check) field in DocType 'Custom Field'
@@ -12186,7 +12186,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Ignore XSS Filter"
-msgstr ""
+msgstr "ละเว้นตัวกรอง XSS"
#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email
#. Account'
@@ -12195,25 +12195,25 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Ignore attachments over this size"
-msgstr ""
+msgstr "ละเว้นไฟล์แนบที่มีขนาดเกินนี้"
#. Label of the ignored_apps (Table) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Ignored Apps"
-msgstr ""
+msgstr "แอปที่ถูกละเว้น"
#: frappe/model/workflow.py:146
msgid "Illegal Document Status for {0}"
-msgstr ""
+msgstr "สถานะเอกสารไม่ถูกต้องสำหรับ {0}"
#: frappe/model/db_query.py:452 frappe/model/db_query.py:455
#: frappe/model/db_query.py:1129
msgid "Illegal SQL Query"
-msgstr ""
+msgstr "คำสั่ง SQL ไม่ถูกต้อง"
#: frappe/utils/jinja.py:127
msgid "Illegal template"
-msgstr ""
+msgstr "แม่แบบไม่ถูกต้อง"
#. Label of the image (Attach Image) field in DocType 'Contact'
#. Option for the 'Type' (Select) field in DocType 'DocField'
@@ -12238,86 +12238,86 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "Image"
-msgstr ""
+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 ""
+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 ""
+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 ""
+msgstr "ลิงก์ภาพ"
#: frappe/public/js/frappe/list/base_list.js:208
msgid "Image View"
-msgstr ""
+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 ""
+msgstr "ความกว้างของภาพ"
#: frappe/core/doctype/doctype/doctype.py:1506
msgid "Image field must be a valid fieldname"
-msgstr ""
+msgstr "ฟิลด์ภาพต้องเป็นชื่อฟิลด์ที่ถูกต้อง"
#: frappe/core/doctype/doctype/doctype.py:1508
msgid "Image field must be of type Attach Image"
-msgstr ""
+msgstr "ฟิลด์ภาพต้องเป็นประเภทแนบภาพ"
#: frappe/core/doctype/file/utils.py:136
msgid "Image link '{0}' is not valid"
-msgstr ""
+msgstr "ลิงก์ภาพ '{0}' ไม่ถูกต้อง"
#: frappe/core/doctype/file/file.js:107
msgid "Image optimized"
-msgstr ""
+msgstr "ภาพถูกปรับแต่งแล้ว"
#: frappe/core/doctype/file/utils.py:289
msgid "Image: Corrupted Data Stream"
-msgstr ""
+msgstr "ภาพ: สตรีมข้อมูลเสียหาย"
#: frappe/public/js/frappe/views/image/image_view.js:13
msgid "Images"
-msgstr ""
+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:378
msgid "Impersonate"
-msgstr ""
+msgstr "แอบอ้าง"
#: frappe/core/doctype/user/user.js:405
msgid "Impersonate as {0}"
-msgstr ""
+msgstr "แอบอ้างเป็น {0}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259
msgid "Impersonated by {0}"
-msgstr ""
+msgstr "ถูกแอบอ้างโดย {0}"
#: frappe/public/js/frappe/ui/toolbar/navbar.html:21
msgid "Impersonating {0}"
-msgstr ""
+msgstr "กำลังแอบอ้างเป็น {0}"
#: frappe/core/doctype/log_settings/log_settings.py:56
msgid "Implement `clear_old_logs` method to enable auto error clearing."
-msgstr ""
+msgstr "ใช้วิธี `clear_old_logs` เพื่อเปิดใช้งานการล้างข้อผิดพลาดอัตโนมัติ"
#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Implicit"
-msgstr ""
+msgstr "โดยนัย"
#. Label of the import (Check) field in DocType 'Custom DocPerm'
#. Label of the import (Check) field in DocType 'DocPerm'
@@ -12341,103 +12341,103 @@ msgstr ""
#: frappe/email/doctype/email_group/email_group.js:14
msgid "Import Email From"
-msgstr ""
+msgstr "นำเข้าอีเมลจาก"
#. Label of the import_file (Attach) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import File"
-msgstr ""
+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 ""
+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 ""
+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 ""
+msgstr "ดูตัวอย่างบันทึกการนำเข้า"
#. Label of the import_preview (HTML) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import Preview"
-msgstr ""
+msgstr "ดูตัวอย่างการนำเข้า"
#: frappe/core/doctype/data_import/data_import.js:41
msgid "Import Progress"
-msgstr ""
+msgstr "ความคืบหน้าการนำเข้า"
#: frappe/email/doctype/email_group/email_group.js:8
#: frappe/email/doctype/email_group/email_group.js:30
msgid "Import Subscribers"
-msgstr ""
+msgstr "นำเข้าผู้สมัครสมาชิก"
#. Label of the import_type (Select) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import Type"
-msgstr ""
+msgstr "ประเภทการนำเข้า"
#. Label of the import_warnings (HTML) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import Warnings"
-msgstr ""
+msgstr "คำเตือนการนำเข้า"
#: frappe/public/js/frappe/views/file/file_view.js:117
msgid "Import Zip"
-msgstr ""
+msgstr "นำเข้าไฟล์ Zip"
#. Label of the google_sheets_url (Data) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Import from Google Sheets"
-msgstr ""
+msgstr "นำเข้าจาก Google Sheets"
#: frappe/core/doctype/data_import/importer.py:612
msgid "Import template should be of type .csv, .xlsx or .xls"
-msgstr ""
+msgstr "แม่แบบการนำเข้าควรเป็นประเภท .csv, .xlsx หรือ .xls"
#: frappe/core/doctype/data_import/importer.py:482
msgid "Import template should contain a Header and atleast one row."
-msgstr ""
+msgstr "แม่แบบการนำเข้าควรมีส่วนหัวและอย่างน้อยหนึ่งแถว"
#: frappe/core/doctype/data_import/data_import.js:165
msgid "Import timed out, please re-try."
-msgstr ""
+msgstr "การนำเข้าหมดเวลา โปรดลองอีกครั้ง"
#: frappe/core/doctype/data_import/data_import.py:68
msgid "Importing {0} is not allowed."
-msgstr ""
+msgstr "ไม่อนุญาตให้นำเข้า {0}"
#: frappe/integrations/doctype/google_contacts/google_contacts.js:19
msgid "Importing {0} of {1}"
-msgstr ""
+msgstr "กำลังนำเข้า {0} ของ {1}"
#: frappe/core/doctype/data_import/data_import.js:35
msgid "Importing {0} of {1}, {2}"
-msgstr ""
+msgstr "กำลังนำเข้า {0} ของ {1}, {2}"
#: frappe/public/js/frappe/ui/filters/filter.js:20
msgid "In"
-msgstr ""
+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 ""
+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 ""
+msgstr "ในตัวกรอง"
#. Label of the in_global_search (Check) field in DocType 'DocField'
#. Label of the in_global_search (Check) field in DocType 'Custom Field'
@@ -12447,16 +12447,16 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Global Search"
-msgstr ""
+msgstr "ในการค้นหาทั่วโลก"
#: frappe/core/doctype/doctype/doctype.js:88
msgid "In Grid View"
-msgstr ""
+msgstr "ในมุมมองกริด"
#. Label of the in_standard_filter (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "In List Filter"
-msgstr ""
+msgstr "ในตัวกรองรายการ"
#. Label of the in_list_view (Check) field in DocType 'DocField'
#. Label of the in_list_view (Check) field in DocType 'Custom Field'
@@ -12466,11 +12466,11 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In List View"
-msgstr ""
+msgstr "ในมุมมองรายการ"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:19
msgid "In Minutes"
-msgstr ""
+msgstr "ในนาที"
#. Label of the in_preview (Check) field in DocType 'DocField'
#. Label of the in_preview (Check) field in DocType 'Custom Field'
@@ -12479,20 +12479,20 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Preview"
-msgstr ""
+msgstr "ในตัวอย่าง"
#: frappe/core/doctype/data_import/data_import.js:42
msgid "In Progress"
-msgstr ""
+msgstr "กำลังดำเนินการ"
#: frappe/database/database.py:287
msgid "In Read Only Mode"
-msgstr ""
+msgstr "ในโหมดอ่านอย่างเดียว"
#. Label of the in_reply_to (Link) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "In Reply To"
-msgstr ""
+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
@@ -12500,38 +12500,38 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "In Standard Filter"
-msgstr ""
+msgstr "ในตัวกรองมาตรฐาน"
#. Description of the 'Font Size' (Float) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "In points. Default is 9."
-msgstr ""
+msgstr "ในจุด ค่าเริ่มต้นคือ 9"
#. Description of the 'Allow Login After Fail' (Int) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "In seconds"
-msgstr ""
+msgstr "ในวินาที"
#: frappe/core/doctype/recorder/recorder_list.js:209
msgid "Inactive"
-msgstr ""
+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 ""
+msgstr "กล่องจดหมาย"
#. Name of a role
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_account/email_account.json
msgid "Inbox User"
-msgstr ""
+msgstr "ผู้ใช้กล่องจดหมาย"
#: frappe/public/js/frappe/list/base_list.js:209
msgid "Inbox View"
-msgstr ""
+msgstr "มุมมองกล่องจดหมาย"
#: frappe/public/js/frappe/views/treeview.js:110
msgid "Include Disabled"
@@ -12540,100 +12540,100 @@ 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 ""
+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 ""
+msgstr "รวมการค้นหาในแถบด้านบน"
#: frappe/website/doctype/website_theme/website_theme.js:61
msgid "Include Theme from Apps"
-msgstr ""
+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 ""
+msgstr "รวมลิงก์มุมมองเว็บในอีเมล"
#: frappe/public/js/frappe/views/reports/query_report.js:1594
msgid "Include filters"
-msgstr ""
+msgstr "รวมตัวกรอง"
#: frappe/public/js/frappe/views/reports/query_report.js:1586
msgid "Include indentation"
-msgstr ""
+msgstr "รวมการเยื้อง"
#: frappe/public/js/frappe/form/controls/password.js:106
msgid "Include symbols, numbers and capital letters in the password"
-msgstr ""
+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 ""
+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 ""
+msgstr "การตั้งค่าขาเข้า (POP/IMAP)"
#. Label of the incoming_emails_last_7_days_column (Column Break) field in
#. DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Incoming Emails (Last 7 days)"
-msgstr ""
+msgstr "อีเมลขาเข้า (7 วันที่ผ่านมา)"
#. Label of the email_server (Data) field in DocType 'Email Account'
#. Label of the email_server (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Incoming Server"
-msgstr ""
+msgstr "เซิร์ฟเวอร์ขาเข้า"
#. Label of the mailbox_settings (Section Break) field in DocType 'Email
#. Domain'
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Incoming Settings"
-msgstr ""
+msgstr "การตั้งค่าขาเข้า"
#: frappe/email/doctype/email_domain/email_domain.py:32
msgid "Incoming email account not correct"
-msgstr ""
+msgstr "บัญชีอีเมลขาเข้าไม่ถูกต้อง"
#: frappe/model/virtual_doctype.py:79 frappe/model/virtual_doctype.py:92
msgid "Incomplete Virtual Doctype Implementation"
-msgstr ""
+msgstr "การดำเนินการ Virtual Doctype ไม่สมบูรณ์"
#: frappe/auth.py:255
msgid "Incomplete login details"
-msgstr ""
+msgstr "รายละเอียดการเข้าสู่ระบบไม่สมบูรณ์"
#: frappe/email/smtp.py:104
msgid "Incorrect Configuration"
-msgstr ""
+msgstr "การกำหนดค่าไม่ถูกต้อง"
#: frappe/utils/csvutils.py:234
msgid "Incorrect URL"
-msgstr ""
+msgstr "URL ไม่ถูกต้อง"
#: frappe/utils/password.py:101
msgid "Incorrect User or Password"
-msgstr ""
+msgstr "ผู้ใช้หรือรหัสผ่านไม่ถูกต้อง"
#: frappe/twofactor.py:176 frappe/twofactor.py:188
msgid "Incorrect Verification code"
-msgstr ""
+msgstr "รหัสยืนยันไม่ถูกต้อง"
#: frappe/model/document.py:1541
msgid "Incorrect value in row {0}:"
-msgstr ""
+msgstr "ค่าที่ไม่ถูกต้องในแถว {0}:"
#: frappe/model/document.py:1543
msgid "Incorrect value:"
-msgstr ""
+msgstr "ค่าที่ไม่ถูกต้อง:"
#. Label of the search_index (Check) field in DocType 'DocField'
#. Label of the index (Int) field in DocType 'Recorder Query'
@@ -12645,58 +12645,58 @@ msgstr ""
#: frappe/public/js/frappe/model/model.js:124
#: frappe/public/js/frappe/views/reports/report_view.js:1005
msgid "Index"
-msgstr ""
+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 ""
+msgstr "จัดทำดัชนีหน้าเว็บสำหรับการค้นหา"
#: frappe/core/doctype/recorder/recorder.py:132
msgid "Index created successfully on column {0} of doctype {1}"
-msgstr ""
+msgstr "สร้างดัชนีสำเร็จในคอลัมน์ {0} ของ doctype {1}"
#. Label of the indexing_authorization_code (Data) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Indexing authorization code"
-msgstr ""
+msgstr "กำลังจัดทำดัชนีรหัสการอนุญาต"
#. Label of the indexing_refresh_token (Data) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Indexing refresh token"
-msgstr ""
+msgstr "กำลังจัดทำดัชนีโทเค็นรีเฟรช"
#. Label of the indicator (Select) field in DocType 'Kanban Board Column'
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Indicator"
-msgstr ""
+msgstr "ตัวบ่งชี้"
#. Label of the indicator_color (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Indicator Color"
-msgstr ""
+msgstr "สีตัวบ่งชี้"
#: frappe/public/js/frappe/views/workspace/workspace.js:463
msgid "Indicator color"
-msgstr ""
+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 ""
+msgstr "ข้อมูล"
#: frappe/core/doctype/data_export/exporter.py:144
msgid "Info:"
-msgstr ""
+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 ""
+msgstr "จำนวนการซิงค์ครั้งแรก"
#. Option for the 'Database Engine' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -12706,102 +12706,102 @@ 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 ""
+msgstr "ป้อนชื่อบทบาทที่มีอยู่หากคุณต้องการขยายด้วยการเข้าถึงบทบาทอื่น"
#: frappe/core/doctype/data_import/data_import_list.js:35
msgid "Insert"
-msgstr ""
+msgstr "แทรก"
#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "Insert Above"
-msgstr ""
+msgstr "แทรกด้านบน"
#. Label of the insert_after (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/public/js/frappe/views/reports/query_report.js:1824
msgid "Insert After"
-msgstr ""
+msgstr "แทรกหลังจาก"
#: frappe/custom/doctype/custom_field/custom_field.py:251
msgid "Insert After cannot be set as {0}"
-msgstr ""
+msgstr "ไม่สามารถตั้งค่าแทรกหลังจากเป็น {0}"
#: frappe/custom/doctype/custom_field/custom_field.py:244
msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist"
-msgstr ""
+msgstr "ฟิลด์แทรกหลังจาก '{0}' ที่กล่าวถึงในฟิลด์ที่กำหนดเอง '{1}' พร้อมป้ายกำกับ '{2}' ไม่มีอยู่"
#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "Insert Below"
-msgstr ""
+msgstr "แทรกด้านล่าง"
#: frappe/public/js/frappe/views/reports/report_view.js:390
msgid "Insert Column Before {0}"
-msgstr ""
+msgstr "แทรกคอลัมน์ก่อน {0}"
#: frappe/public/js/frappe/form/controls/markdown_editor.js:82
msgid "Insert Image in Markdown"
-msgstr ""
+msgstr "แทรกรูปภาพใน Markdown"
#. Option for the 'Import Type' (Select) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Insert New Records"
-msgstr ""
+msgstr "แทรกบันทึกใหม่"
#. Label of the insert_style (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Insert Style"
-msgstr ""
+msgstr "แทรกสไตล์"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666
msgid "Install {0} from Marketplace"
-msgstr ""
+msgstr "ติดตั้ง {0} จาก Marketplace"
#. Name of a DocType
#: frappe/core/doctype/installed_application/installed_application.json
msgid "Installed Application"
-msgstr ""
+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 ""
+msgstr "แอปพลิเคชันที่ติดตั้ง"
#: frappe/core/doctype/installed_applications/installed_applications.js:18
#: frappe/public/js/frappe/ui/toolbar/about.js:8
msgid "Installed Apps"
-msgstr ""
+msgstr "แอปที่ติดตั้ง"
#. Label of the instructions (HTML) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Instructions"
-msgstr ""
+msgstr "คำแนะนำ"
#: frappe/templates/includes/login/login.js:261
msgid "Instructions Emailed"
-msgstr ""
+msgstr "ส่งคำแนะนำทางอีเมลแล้ว"
#: frappe/permissions.py:827
msgid "Insufficient Permission Level for {0}"
-msgstr ""
+msgstr "ระดับสิทธิ์ไม่เพียงพอสำหรับ {0}"
#: frappe/database/query.py:383
msgid "Insufficient Permission for {0}"
-msgstr ""
+msgstr "สิทธิ์ไม่เพียงพอสำหรับ {0}"
#: frappe/desk/reportview.py:360
msgid "Insufficient Permissions for deleting Report"
-msgstr ""
+msgstr "สิทธิ์ไม่เพียงพอสำหรับการลบรายงาน"
#: frappe/desk/reportview.py:331
msgid "Insufficient Permissions for editing Report"
-msgstr ""
+msgstr "สิทธิ์ไม่เพียงพอสำหรับการแก้ไขรายงาน"
#: frappe/core/doctype/doctype/doctype.py:445
msgid "Insufficient attachment limit"
-msgstr ""
+msgstr "ขีดจำกัดไฟล์แนบไม่เพียงพอ"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -12823,7 +12823,7 @@ msgstr ""
#. Name of a DocType
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Integration Request"
-msgstr ""
+msgstr "คำขอการรวม"
#. Group in User's connections
#. Name of a Workspace
@@ -12832,13 +12832,13 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Integrations"
-msgstr ""
+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 ""
+msgstr "การรวมสามารถใช้ฟิลด์นี้เพื่อตั้งค่าสถานะการส่งอีเมล"
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -12848,32 +12848,32 @@ msgstr ""
#. Label of the interest (Small Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Interests"
-msgstr ""
+msgstr "ความสนใจ"
#. Option for the 'Level' (Select) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
msgid "Intermediate"
-msgstr ""
+msgstr "ระดับกลาง"
#: frappe/public/js/frappe/request.js:235
msgid "Internal Server Error"
-msgstr ""
+msgstr "ข้อผิดพลาดของเซิร์ฟเวอร์ภายใน"
#. Description of a DocType
#: frappe/core/doctype/docshare/docshare.json
msgid "Internal record of document shares"
-msgstr ""
+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 ""
+msgstr "URL วิดีโอแนะนำ"
#. Description of the 'Company Introduction' (Text Editor) field in DocType
#. 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Introduce your company to the website visitor."
-msgstr ""
+msgstr "แนะนำบริษัทของคุณให้กับผู้เยี่ยมชมเว็บไซต์"
#. Label of the introduction_section (Section Break) field in DocType 'Contact
#. Us Settings'
@@ -12883,24 +12883,24 @@ msgstr ""
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/web_form/web_form.json
msgid "Introduction"
-msgstr ""
+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 ""
+msgstr "ข้อมูลเบื้องต้นสำหรับหน้าติดต่อเรา"
#. Label of the introspection_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Introspection URI"
-msgstr ""
+msgstr "URI การตรวจสอบ"
#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization
#. Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Invalid"
-msgstr ""
+msgstr "ไม่ถูกต้อง"
#: frappe/public/js/form_builder/utils.js:221
#: frappe/public/js/frappe/form/grid_row.js:833
@@ -12919,239 +12919,239 @@ msgstr ""
#: frappe/utils/nestedset.py:178
msgid "Invalid Action"
-msgstr ""
+msgstr "การกระทำไม่ถูกต้อง"
#: frappe/utils/csvutils.py:37
msgid "Invalid CSV Format"
-msgstr ""
+msgstr "รูปแบบ CSV ไม่ถูกต้อง"
#: frappe/integrations/frappe_providers/frappecloud_billing.py:111
msgid "Invalid Code. Please try again."
-msgstr ""
+msgstr "รหัสไม่ถูกต้อง โปรดลองอีกครั้ง"
#: frappe/integrations/doctype/webhook/webhook.py:87
msgid "Invalid Condition: {}"
-msgstr ""
+msgstr "เงื่อนไขไม่ถูกต้อง: {}"
#: frappe/email/smtp.py:135
msgid "Invalid Credentials"
-msgstr ""
+msgstr "ข้อมูลประจำตัวไม่ถูกต้อง"
#: frappe/utils/data.py:136 frappe/utils/data.py:299
msgid "Invalid Date"
-msgstr ""
+msgstr "วันที่ไม่ถูกต้อง"
#: frappe/www/list.py:85
msgid "Invalid DocType"
-msgstr ""
+msgstr "DocType ไม่ถูกต้อง"
#: frappe/database/query.py:103
msgid "Invalid DocType: {0}"
-msgstr ""
+msgstr "DocType ไม่ถูกต้อง: {0}"
#: frappe/core/doctype/doctype/doctype.py:1272
msgid "Invalid Fieldname"
-msgstr ""
+msgstr "ชื่อฟิลด์ไม่ถูกต้อง"
#: frappe/core/doctype/file/file.py:209
msgid "Invalid File URL"
-msgstr ""
+msgstr "URL ไฟล์ไม่ถูกต้อง"
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
-msgstr ""
+msgstr "รูปแบบตัวกรองไม่ถูกต้องสำหรับฟิลด์ {0} ของประเภท {1} ลองใช้ไอคอนตัวกรองในฟิลด์เพื่อกำหนดค่าให้ถูกต้อง"
#: frappe/utils/dashboard.py:61
msgid "Invalid Filter Value"
-msgstr ""
+msgstr "ค่าตัวกรองไม่ถูกต้อง"
#: frappe/website/doctype/website_settings/website_settings.py:83
msgid "Invalid Home Page"
-msgstr ""
+msgstr "หน้าแรกไม่ถูกต้อง"
#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:153
msgid "Invalid Link"
-msgstr ""
+msgstr "ลิงก์ไม่ถูกต้อง"
#: frappe/www/login.py:128
msgid "Invalid Login Token"
-msgstr ""
+msgstr "โทเค็นการเข้าสู่ระบบไม่ถูกต้อง"
#: frappe/templates/includes/login/login.js:290
msgid "Invalid Login. Try again."
-msgstr ""
+msgstr "การเข้าสู่ระบบไม่ถูกต้อง โปรดลองอีกครั้ง"
#: frappe/email/receive.py:112 frappe/email/receive.py:149
msgid "Invalid Mail Server. Please rectify and try again."
-msgstr ""
+msgstr "เซิร์ฟเวอร์เมลไม่ถูกต้อง โปรดแก้ไขและลองอีกครั้ง"
#: frappe/model/naming.py:101
msgid "Invalid Naming Series: {}"
-msgstr ""
+msgstr "ชุดการตั้งชื่อไม่ถูกต้อง: {}"
#: frappe/core/doctype/rq_job/rq_job.py:113
#: frappe/core/doctype/rq_job/rq_job.py:122
msgid "Invalid Operation"
-msgstr ""
+msgstr "การดำเนินการไม่ถูกต้อง"
#: frappe/core/doctype/doctype/doctype.py:1641
#: frappe/core/doctype/doctype/doctype.py:1650
msgid "Invalid Option"
-msgstr ""
+msgstr "ตัวเลือกไม่ถูกต้อง"
#: frappe/email/smtp.py:103
msgid "Invalid Outgoing Mail Server or Port: {0}"
-msgstr ""
+msgstr "เซิร์ฟเวอร์เมลขาออกหรือพอร์ตไม่ถูกต้อง: {0}"
#: frappe/email/doctype/auto_email_report/auto_email_report.py:188
msgid "Invalid Output Format"
-msgstr ""
+msgstr "รูปแบบผลลัพธ์ไม่ถูกต้อง"
#: frappe/model/base_document.py:116
msgid "Invalid Override"
-msgstr ""
+msgstr "การแทนที่ไม่ถูกต้อง"
#: frappe/integrations/doctype/connected_app/connected_app.py:195
msgid "Invalid Parameters."
-msgstr ""
+msgstr "พารามิเตอร์ไม่ถูกต้อง"
#: frappe/core/doctype/user/user.py:1228 frappe/www/update-password.html:123
#: frappe/www/update-password.html:144 frappe/www/update-password.html:146
#: frappe/www/update-password.html:247
msgid "Invalid Password"
-msgstr ""
+msgstr "รหัสผ่านไม่ถูกต้อง"
#: frappe/utils/__init__.py:122
msgid "Invalid Phone Number"
-msgstr ""
+msgstr "หมายเลขโทรศัพท์ไม่ถูกต้อง"
#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191
#: frappe/www/login.py:128
msgid "Invalid Request"
-msgstr ""
+msgstr "คำขอไม่ถูกต้อง"
#: frappe/desk/search.py:26
msgid "Invalid Search Field {0}"
-msgstr ""
+msgstr "ฟิลด์การค้นหาไม่ถูกต้อง {0}"
#: frappe/core/doctype/doctype/doctype.py:1214
msgid "Invalid Table Fieldname"
-msgstr ""
+msgstr "ชื่อฟิลด์ตารางไม่ถูกต้อง"
#: frappe/public/js/workflow_builder/store.js:192
msgid "Invalid Transition"
-msgstr ""
+msgstr "การเปลี่ยนผ่านไม่ถูกต้อง"
#: frappe/core/doctype/file/file.py:220
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530
#: frappe/public/js/frappe/widgets/widget_dialog.js:602
#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247
msgid "Invalid URL"
-msgstr ""
+msgstr "URL ไม่ถูกต้อง"
#: frappe/email/receive.py:157
msgid "Invalid User Name or Support Password. Please rectify and try again."
-msgstr ""
+msgstr "ชื่อผู้ใช้หรือรหัสผ่านสนับสนุนไม่ถูกต้อง โปรดแก้ไขและลองอีกครั้ง"
#: frappe/public/js/frappe/ui/field_group.js:137
msgid "Invalid Values"
-msgstr ""
+msgstr "ค่าที่ไม่ถูกต้อง"
#: frappe/integrations/doctype/webhook/webhook.py:116
msgid "Invalid Webhook Secret"
-msgstr ""
+msgstr "Webhook Secret ไม่ถูกต้อง"
#: frappe/desk/reportview.py:186
msgid "Invalid aggregate function"
-msgstr ""
+msgstr "ฟังก์ชันการรวมไม่ถูกต้อง"
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
-msgstr ""
+msgstr "คอลัมน์ไม่ถูกต้อง"
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
-msgstr ""
+msgstr "สถานะเอกสารไม่ถูกต้อง"
#: frappe/public/js/frappe/utils/dashboard_utils.js:229
msgid "Invalid expression set in filter {0}"
-msgstr ""
+msgstr "นิพจน์ที่ตั้งค่าในตัวกรอง {0} ไม่ถูกต้อง"
#: frappe/public/js/frappe/utils/dashboard_utils.js:219
msgid "Invalid expression set in filter {0} ({1})"
-msgstr ""
+msgstr "นิพจน์ที่ตั้งค่าในตัวกรอง {0} ({1}) ไม่ถูกต้อง"
#: frappe/utils/data.py:2186
msgid "Invalid field name {0}"
-msgstr ""
+msgstr "ชื่อฟิลด์ไม่ถูกต้อง {0}"
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
-msgstr ""
+msgstr "ชื่อฟิลด์ไม่ถูกต้อง '{0}' ใน autoname"
#: frappe/deprecation_dumpster.py:283
msgid "Invalid file path: {0}"
-msgstr ""
+msgstr "เส้นทางไฟล์ไม่ถูกต้อง: {0}"
#: frappe/database/query.py:189
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
-msgstr ""
+msgstr "ตัวกรองไม่ถูกต้อง: {0}"
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
-msgstr ""
+msgstr "เพิ่ม json ไม่ถูกต้องในตัวเลือกที่กำหนดเอง: {0}"
#: frappe/model/naming.py:490
msgid "Invalid name type (integer) for varchar name column"
-msgstr ""
+msgstr "ประเภทชื่อไม่ถูกต้อง (จำนวนเต็ม) สำหรับคอลัมน์ชื่อ varchar"
#: frappe/model/naming.py:62
msgid "Invalid naming series {}: dot (.) missing"
-msgstr ""
+msgstr "ชุดการตั้งชื่อไม่ถูกต้อง {}: จุด (.) หายไป"
#: frappe/core/doctype/data_import/importer.py:453
msgid "Invalid or corrupted content for import"
-msgstr ""
+msgstr "เนื้อหาไม่ถูกต้องหรือเสียหายสำหรับการนำเข้า"
#: frappe/website/doctype/website_settings/website_settings.py:139
msgid "Invalid redirect regex in row #{}: {}"
-msgstr ""
+msgstr "รีไดเรกต์ regex ไม่ถูกต้องในแถว #{}: {}"
#: frappe/app.py:317
msgid "Invalid request arguments"
-msgstr ""
+msgstr "อาร์กิวเมนต์คำขอไม่ถูกต้อง"
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
-msgstr ""
+msgstr "ไฟล์แม่แบบไม่ถูกต้องสำหรับการนำเข้า"
#: frappe/integrations/doctype/connected_app/connected_app.py:201
msgid "Invalid token state! Check if the token has been created by the OAuth user."
-msgstr ""
+msgstr "สถานะโทเค็นไม่ถูกต้อง! ตรวจสอบว่าโทเค็นถูกสร้างโดยผู้ใช้ OAuth หรือไม่"
#: 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 "ชื่อผู้ใช้หรือรหัสผ่านไม่ถูกต้อง"
#: frappe/model/naming.py:168
msgid "Invalid value specified for UUID: {}"
-msgstr ""
+msgstr "ค่าที่ระบุสำหรับ UUID ไม่ถูกต้อง: {}"
#: frappe/public/js/frappe/web_form/web_form.js:229
msgctxt "Error message in web form"
msgid "Invalid values for fields:"
-msgstr ""
+msgstr "ค่าที่ไม่ถูกต้องสำหรับฟิลด์:"
#: frappe/printing/page/print/print.js:614
msgid "Invalid wkhtmltopdf version"
-msgstr ""
+msgstr "เวอร์ชัน wkhtmltopdf ไม่ถูกต้อง"
#: frappe/core/doctype/doctype/doctype.py:1564
msgid "Invalid {0} condition"
-msgstr ""
+msgstr "เงื่อนไข {0} ไม่ถูกต้อง"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
#: frappe/workflow/doctype/workflow_state/workflow_state.json
@@ -13237,87 +13237,87 @@ msgstr ""
#: frappe/public/js/frappe/list/list_filter.js:43
msgid "Is Global"
-msgstr ""
+msgstr "เป็นสากล"
#. Label of the is_hidden (Check) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Is Hidden"
-msgstr ""
+msgstr "ถูกซ่อน"
#. Label of the is_home_folder (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Is Home Folder"
-msgstr ""
+msgstr "เป็นโฟลเดอร์หน้าแรก"
#. Label of the reqd (Check) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Is Mandatory Field"
-msgstr ""
+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 ""
+msgstr "เป็นสถานะทางเลือก"
#. Label of the is_primary (Check) field in DocType 'Contact Email'
#: frappe/contacts/doctype/contact_email/contact_email.json
msgid "Is Primary"
-msgstr ""
+msgstr "เป็นหลัก"
#. Label of the is_primary_contact (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Is Primary Contact"
-msgstr ""
+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 ""
+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 ""
+msgstr "เป็นโทรศัพท์หลัก"
#. Label of the is_private (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Is Private"
-msgstr ""
+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 ""
+msgstr "เป็นสาธารณะ"
#. Label of the is_published_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Is Published Field"
-msgstr ""
+msgstr "เป็นฟิลด์ที่เผยแพร่"
#: frappe/core/doctype/doctype/doctype.py:1515
msgid "Is Published Field must be a valid fieldname"
-msgstr ""
+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 ""
+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 ""
+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 ""
+msgstr "การตั้งค่าเสร็จสมบูรณ์หรือไม่?"
#. Label of the issingle (Check) field in DocType 'DocType'
#. Label of the is_single (Check) field in DocType 'Onboarding Step'
@@ -13325,17 +13325,17 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype_list.js:64
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Single"
-msgstr ""
+msgstr "เป็นเดี่ยว"
#. Label of the is_skipped (Check) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Is Skipped"
-msgstr ""
+msgstr "ถูกข้าม"
#. Label of the is_spam (Check) field in DocType 'Email Rule'
#: frappe/email/doctype/email_rule/email_rule.json
msgid "Is Spam"
-msgstr ""
+msgstr "เป็นสแปม"
#. Label of the is_standard (Check) field in DocType 'Navbar Item'
#. Label of the is_standard (Select) field in DocType 'Report'
@@ -13354,13 +13354,13 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/email/doctype/notification/notification.json
msgid "Is Standard"
-msgstr ""
+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
msgid "Is Submittable"
-msgstr ""
+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
@@ -13370,27 +13370,27 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Is System Generated"
-msgstr ""
+msgstr "ถูกสร้างโดยระบบ"
#. Label of the istable (Check) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Is Table"
-msgstr ""
+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 ""
+msgstr "เป็นฟิลด์ตาราง"
#. Label of the is_tree (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Is Tree"
-msgstr ""
+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 ""
+msgstr "เป็นเอกลักษณ์"
#. Label of the is_virtual (Check) field in DocType 'DocType'
#. Label of the is_virtual (Check) field in DocType 'Custom Field'
@@ -13399,30 +13399,30 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Is Virtual"
-msgstr ""
+msgstr "เป็นเสมือน"
#. Label of the is_standard (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Is standard"
-msgstr ""
+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 ""
+msgstr "การลบไฟล์นี้: {0} มีความเสี่ยง โปรดติดต่อผู้จัดการระบบของคุณ"
#. Label of the item_label (Data) field in DocType 'Navbar Item'
#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Item Label"
-msgstr ""
+msgstr "ป้ายกำกับของรายการ"
#. Label of the item_type (Select) field in DocType 'Navbar Item'
#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Item Type"
-msgstr ""
+msgstr "ประเภทของรายการ"
#: frappe/utils/nestedset.py:229
msgid "Item cannot be added to its own descendants"
-msgstr ""
+msgstr "ไม่สามารถเพิ่มรายการในลูกหลานของตัวเองได้"
#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -13547,7 +13547,7 @@ msgstr ""
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Kanban"
-msgstr ""
+msgstr "คัมบัง"
#. Name of a DocType
#. Label of the kanban_board (Link) field in DocType 'Workspace Shortcut'
@@ -13555,37 +13555,37 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/widgets/widget_dialog.js:511
msgid "Kanban Board"
-msgstr ""
+msgstr "กระดานคัมบัง"
#. Name of a DocType
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Kanban Board Column"
-msgstr ""
+msgstr "คอลัมน์กระดานคัมบัง"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
msgid "Kanban Board Name"
-msgstr ""
+msgstr "ชื่อกระดานคัมบัง"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
-msgstr ""
+msgstr "การตั้งค่าคัมบัง"
#: frappe/public/js/frappe/list/base_list.js:206
msgid "Kanban View"
-msgstr ""
+msgstr "มุมมองคัมบัง"
#. Description of a DocType
#: frappe/core/doctype/activity_log/activity_log.json
msgid "Keep track of all update feeds"
-msgstr ""
+msgstr "ติดตามฟีดการอัปเดตทั้งหมด"
#. Description of a DocType
#: frappe/core/doctype/communication/communication.json
msgid "Keeps track of all communications"
-msgstr ""
+msgstr "ติดตามการสื่อสารทั้งหมด"
#. Label of the defkey (Data) field in DocType 'DefaultValue'
#. Label of the key (Data) field in DocType 'Document Share Key'
@@ -13600,19 +13600,19 @@ msgstr ""
#: frappe/integrations/doctype/webhook_header/webhook_header.json
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Key"
-msgstr ""
+msgstr "คีย์"
#. Label of a standard help item
#. Type: Action
#: frappe/hooks.py frappe/public/js/frappe/ui/keyboard.js:130
msgid "Keyboard Shortcuts"
-msgstr ""
+msgstr "ทางลัดแป้นพิมพ์"
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Keycloak"
-msgstr ""
+msgstr "คีย์โคล้ก"
#: frappe/public/js/frappe/utils/number_systems.js:37
msgctxt "Number system"
@@ -13625,17 +13625,17 @@ msgstr ""
#: frappe/website/doctype/help_article/templates/help_article_list.html:11
#: frappe/website/workspace/website/website.json
msgid "Knowledge Base"
-msgstr ""
+msgstr "ฐานความรู้"
#. Name of a role
#: frappe/website/doctype/help_article/help_article.json
msgid "Knowledge Base Contributor"
-msgstr ""
+msgstr "ผู้สนับสนุนฐานความรู้"
#. Name of a role
#: frappe/website/doctype/help_article/help_article.json
msgid "Knowledge Base Editor"
-msgstr ""
+msgstr "บรรณาธิการฐานความรู้"
#: frappe/public/js/frappe/utils/number_systems.js:27
#: frappe/public/js/frappe/utils/number_systems.js:49
@@ -13647,143 +13647,143 @@ msgstr ""
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Auth"
-msgstr ""
+msgstr "การยืนยันตัวตน LDAP"
#. Label of the ldap_custom_settings_section (Section Break) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Custom Settings"
-msgstr ""
+msgstr "การตั้งค่า LDAP แบบกำหนดเอง"
#. Label of the ldap_email_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Email Field"
-msgstr ""
+msgstr "ฟิลด์อีเมล LDAP"
#. Label of the ldap_first_name_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP First Name Field"
-msgstr ""
+msgstr "ฟิลด์ชื่อแรก LDAP"
#. Label of the ldap_group (Data) field in DocType 'LDAP Group Mapping'
#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
msgid "LDAP Group"
-msgstr ""
+msgstr "กลุ่ม LDAP"
#. Label of the ldap_group_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Field"
-msgstr ""
+msgstr "ฟิลด์กลุ่ม LDAP"
#. Name of a DocType
#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
msgid "LDAP Group Mapping"
-msgstr ""
+msgstr "การจับคู่กลุ่ม LDAP"
#. Label of the ldap_group_mappings_section (Section Break) field in DocType
#. 'LDAP Settings'
#. Label of the ldap_groups (Table) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Mappings"
-msgstr ""
+msgstr "การจับคู่กลุ่ม LDAP หลายรายการ"
#. Label of the ldap_group_member_attribute (Data) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Group Member attribute"
-msgstr ""
+msgstr "แอตทริบิวต์สมาชิกกลุ่ม LDAP"
#. Label of the ldap_last_name_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Last Name Field"
-msgstr ""
+msgstr "ฟิลด์นามสกุล LDAP"
#. Label of the ldap_middle_name_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Middle Name Field"
-msgstr ""
+msgstr "ฟิลด์ชื่อกลาง LDAP"
#. Label of the ldap_mobile_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Mobile Field"
-msgstr ""
+msgstr "ฟิลด์มือถือ LDAP"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163
msgid "LDAP Not Installed"
-msgstr ""
+msgstr "ไม่ได้ติดตั้ง LDAP"
#. Label of the ldap_phone_field (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Phone Field"
-msgstr ""
+msgstr "ฟิลด์โทรศัพท์ LDAP"
#. Label of the ldap_search_string (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Search String"
-msgstr ""
+msgstr "สตริงการค้นหา LDAP"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:130
msgid "LDAP Search String must be enclosed in '()' and needs to contian the user placeholder {0}, eg sAMAccountName={0}"
-msgstr ""
+msgstr "สตริงการค้นหา LDAP ต้องอยู่ใน '()' และต้องมีตัวแทนผู้ใช้ {0} เช่น sAMAccountName={0}"
#. Label of the ldap_search_and_paths_section (Section Break) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Search and Paths"
-msgstr ""
+msgstr "การค้นหาและเส้นทาง LDAP"
#. Label of the ldap_security (Section Break) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Security"
-msgstr ""
+msgstr "ความปลอดภัย LDAP"
#. Label of the ldap_server_settings_section (Section Break) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Server Settings"
-msgstr ""
+msgstr "การตั้งค่าเซิร์ฟเวอร์ LDAP"
#. Label of the ldap_server_url (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP Server Url"
-msgstr ""
+msgstr "URL เซิร์ฟเวอร์ LDAP"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "LDAP Settings"
-msgstr ""
+msgstr "การตั้งค่า LDAP"
#. Label of the ldap_user_creation_and_mapping_section (Section Break) field in
#. DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP User Creation and Mapping"
-msgstr ""
+msgstr "การสร้างและจับคู่ผู้ใช้ LDAP"
#. 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"
#: 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"
#. Label of the ldap_search_path_group (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP search path for Groups"
-msgstr ""
+msgstr "เส้นทางการค้นหากลุ่ม LDAP"
#. Label of the ldap_search_path_user (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "LDAP search path for Users"
-msgstr ""
+msgstr "เส้นทางการค้นหาผู้ใช้ LDAP"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:102
msgid "LDAP settings incorrect. validation response was: {0}"
-msgstr ""
+msgstr "การตั้งค่า LDAP ไม่ถูกต้อง การตอบกลับการตรวจสอบคือ: {0}"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Label of the label (Data) field in DocType 'DocField'
@@ -13834,31 +13834,31 @@ msgstr ""
#: frappe/website/doctype/top_bar_item/top_bar_item.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Label"
-msgstr ""
+msgstr "ป้ายกำกับ"
#. Label of the label_help (HTML) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Label Help"
-msgstr ""
+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 ""
+msgstr "ป้ายกำกับและประเภท"
#: frappe/custom/doctype/custom_field/custom_field.py:145
msgid "Label is mandatory"
-msgstr ""
+msgstr "ป้ายกำกับเป็นสิ่งจำเป็น"
#. Label of the sb0 (Section Break) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Landing Page"
-msgstr ""
+msgstr "หน้าแรก"
#: frappe/public/js/frappe/form/print_utils.js:30
msgid "Landscape"
-msgstr ""
+msgstr "แนวนอน"
#. Name of a DocType
#. Label of the language (Link) field in DocType 'System Settings'
@@ -13870,190 +13870,190 @@ msgstr ""
#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104
#: frappe/public/js/frappe/form/templates/print_layout.html:11
msgid "Language"
-msgstr ""
+msgstr "ภาษา"
#. Label of the language_code (Data) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
msgid "Language Code"
-msgstr ""
+msgstr "รหัสภาษา"
#. Label of the language_name (Data) field in DocType 'Language'
#: frappe/core/doctype/language/language.json
msgid "Language Name"
-msgstr ""
+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 ""
+msgstr "ผู้ใช้ที่ใช้งานล่าสุด 10 คน"
#: frappe/public/js/frappe/ui/filters/filter.js:628
msgid "Last 14 Days"
-msgstr ""
+msgstr "14 วันที่ผ่านมา"
#: frappe/public/js/frappe/ui/filters/filter.js:632
msgid "Last 30 Days"
-msgstr ""
+msgstr "30 วันที่ผ่านมา"
#: frappe/public/js/frappe/ui/filters/filter.js:652
msgid "Last 6 Months"
-msgstr ""
+msgstr "6 เดือนที่ผ่านมา"
#: frappe/public/js/frappe/ui/filters/filter.js:624
msgid "Last 7 Days"
-msgstr ""
+msgstr "7 วันที่ผ่านมา"
#: frappe/public/js/frappe/ui/filters/filter.js:636
msgid "Last 90 Days"
-msgstr ""
+msgstr "90 วันที่ผ่านมา"
#. Label of the last_active (Datetime) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Active"
-msgstr ""
+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 ""
+msgstr "การดำเนินการล่าสุด"
#. Label of the last_heartbeat (Datetime) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Last Heartbeat"
-msgstr ""
+msgstr "การเต้นของหัวใจครั้งล่าสุด"
#. Label of the last_ip (Read Only) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last IP"
-msgstr ""
+msgstr "IP ล่าสุด"
#. Label of the last_known_versions (Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Known Versions"
-msgstr ""
+msgstr "เวอร์ชันที่ทราบล่าสุด"
#. Label of the last_login (Read Only) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Last Login"
-msgstr ""
+msgstr "เข้าสู่ระบบล่าสุด"
#: frappe/email/doctype/notification/notification.js:32
msgid "Last Modified Date"
-msgstr ""
+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 ""
+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 ""
+msgstr "เดือนที่แล้ว"
#. Label of the last_name (Data) field in DocType 'Contact'
#. Label of the last_name (Data) field in DocType 'User'
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19
msgid "Last Name"
-msgstr ""
+msgstr "นามสกุล"
#. 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 "วันที่รีเซ็ตรหัสผ่านครั้งล่าสุด"
#. 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 ""
+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 ""
+msgstr "สร้างคีย์รีเซ็ตรหัสผ่านครั้งล่าสุดเมื่อ"
#. Label of the datetime_last_run (Datetime) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Last Run"
-msgstr ""
+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 ""
+msgstr "ซิงค์ครั้งล่าสุดเมื่อ"
#. Label of the last_synced_at (Datetime) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Last Synced At"
-msgstr ""
+msgstr "ซิงค์ครั้งล่าสุดที่"
#. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Last Synced On"
-msgstr ""
+msgstr "ซิงค์ครั้งล่าสุดเมื่อ"
#: 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 "อัปเดตล่าสุดโดย"
#: 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 "อัปเดตล่าสุดเมื่อ"
#. Label of the last_user (Link) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Last User"
-msgstr ""
+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 ""
+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 ""
+msgstr "ปีที่แล้ว"
#: frappe/public/js/frappe/widgets/chart_widget.js:753
msgid "Last synced {0}"
-msgstr ""
+msgstr "ซิงค์ครั้งล่าสุด {0}"
#: frappe/custom/doctype/customize_form/customize_form.js:194
msgid "Layout Reset"
-msgstr ""
+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 ""
+msgstr "เลย์เอาต์จะถูกรีเซ็ตเป็นเลย์เอาต์มาตรฐาน คุณแน่ใจหรือไม่ว่าต้องการทำเช่นนี้?"
#: frappe/website/web_template/section_with_features/section_with_features.html:26
msgid "Learn more"
-msgstr ""
+msgstr "เรียนรู้เพิ่มเติม"
#. Description of the 'Repeat Till' (Date) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Leave blank to repeat always"
-msgstr ""
+msgstr "เว้นว่างไว้เพื่อทำซ้ำเสมอ"
#: frappe/core/doctype/communication/mixins.py:207
#: frappe/email/doctype/email_account/email_account.py:720
msgid "Leave this conversation"
-msgstr ""
+msgstr "ออกจากการสนทนานี้"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Ledger"
-msgstr ""
+msgstr "บัญชีแยกประเภท"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
@@ -14062,32 +14062,32 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Left"
-msgstr ""
+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 ""
+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 ""
+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 ""
+msgstr "ซ้ายกลาง"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:58
msgid "Left this conversation"
-msgstr ""
+msgstr "ออกจากการสนทนานี้"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Legal"
-msgstr ""
+msgstr "กฎหมาย"
#. Label of the length (Int) field in DocType 'DocField'
#. Label of the length (Int) field in DocType 'Custom Field'
@@ -14096,56 +14096,56 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Length"
-msgstr ""
+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 ""
+msgstr "ความยาวของอาร์เรย์ข้อมูลที่ส่งผ่านเกินค่าจุดป้ายกำกับสูงสุดที่อนุญาต!"
#: frappe/database/schema.py:134
msgid "Length of {0} should be between 1 and 1000"
-msgstr ""
+msgstr "ความยาวของ {0} ควรอยู่ระหว่าง 1 ถึง 1000"
#: frappe/public/js/frappe/widgets/chart_widget.js:729
msgid "Less"
-msgstr ""
+msgstr "น้อยกว่า"
#: frappe/public/js/frappe/ui/filters/filter.js:24
msgid "Less Than"
-msgstr ""
+msgstr "น้อยกว่า"
#: frappe/public/js/frappe/ui/filters/filter.js:26
msgid "Less Than Or Equal To"
-msgstr ""
+msgstr "น้อยกว่าหรือเท่ากับ"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:434
msgid "Let us continue with the onboarding"
-msgstr ""
+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 ""
+msgstr "มาเริ่มกันเลย"
#: frappe/utils/password_strength.py:111
msgid "Let's avoid repeated words and characters"
-msgstr ""
+msgstr "หลีกเลี่ยงคำและตัวอักษรที่ซ้ำกัน"
#: frappe/desk/page/setup_wizard/setup_wizard.js:474
msgid "Let's set up your account"
-msgstr ""
+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 ""
+msgstr "ให้เราพาคุณกลับไปที่การเริ่มต้นใช้งาน"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Letter"
-msgstr ""
+msgstr "จดหมาย"
#. Label of the letter_head (Link) field in DocType 'Report'
#. Name of a DocType
@@ -14157,38 +14157,38 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:52
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144
msgid "Letter Head"
-msgstr ""
+msgstr "หัวจดหมาย"
#. Label of the source (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Letter Head Based On"
-msgstr ""
+msgstr "หัวจดหมายตาม"
#. Label of the letter_head_image_section (Section Break) field in DocType
#. 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
msgid "Letter Head Image"
-msgstr ""
+msgstr "ภาพหัวจดหมาย"
#. Label of the letter_head_name (Data) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:198
msgid "Letter Head Name"
-msgstr ""
+msgstr "ชื่อหัวจดหมาย"
#: frappe/printing/doctype/letter_head/letter_head.js:30
msgid "Letter Head Scripts"
-msgstr ""
+msgstr "สคริปต์หัวจดหมาย"
#: frappe/printing/doctype/letter_head/letter_head.py:48
msgid "Letter Head cannot be both disabled and default"
-msgstr ""
+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 ""
+msgstr "หัวจดหมายใน HTML"
#. Label of the permlevel (Int) field in DocType 'Custom DocPerm'
#. Label of the permlevel (Int) field in DocType 'DocPerm'
@@ -14200,90 +14200,90 @@ msgstr ""
#: frappe/public/js/frappe/roles_editor.js:66
#: frappe/website/doctype/help_article/help_article.json
msgid "Level"
-msgstr ""
+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 ""
+msgstr "ระดับ 0 สำหรับสิทธิ์ระดับเอกสาร ระดับที่สูงกว่าสำหรับสิทธิ์ระดับฟิลด์"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:94
msgid "Library"
-msgstr ""
+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 ""
+msgstr "ใบอนุญาต"
#. Label of the license_type (Select) field in DocType 'Package'
#: frappe/core/doctype/package/package.json
msgid "License Type"
-msgstr ""
+msgstr "ประเภทใบอนุญาต"
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Light"
-msgstr ""
+msgstr "แสง"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Light Blue"
-msgstr ""
+msgstr "ฟ้าอ่อน"
#. Label of the light_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Light Color"
-msgstr ""
+msgstr "สีอ่อน"
#: frappe/public/js/frappe/ui/theme_switcher.js:60
msgid "Light Theme"
-msgstr ""
+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 ""
+msgstr "ถูกใจ"
#. Label of the like_limit (Int) field in DocType 'Blog Settings'
#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Like limit"
-msgstr ""
+msgstr "จำกัดการถูกใจ"
#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings'
#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Like limit per hour"
-msgstr ""
+msgstr "จำกัดการถูกใจต่อชั่วโมง"
#: frappe/templates/includes/likes/likes.py:30
msgid "Like on {0}: {1}"
-msgstr ""
+msgstr "ถูกใจใน {0}: {1}"
#: frappe/desk/like.py:92
msgid "Liked"
-msgstr ""
+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 ""
+msgstr "ถูกใจโดย"
#. Label of the likes (Int) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
msgid "Likes"
-msgstr ""
+msgstr "การถูกใจ"
#. Label of the limit (Int) field in DocType 'Bulk Update'
#: frappe/desk/doctype/bulk_update/bulk_update.json
msgid "Limit"
-msgstr ""
+msgstr "ขีดจำกัด"
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
-msgstr ""
+msgstr "เส้น"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column'
@@ -14311,23 +14311,23 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Link"
-msgstr ""
+msgstr "ลิงก์"
#. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Link Cards"
-msgstr ""
+msgstr "ลิงก์การ์ด"
#. Label of the link_count (Int) field in DocType 'Workspace Link'
#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Link Count"
-msgstr ""
+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 ""
+msgstr "รายละเอียดลิงก์"
#. Label of the link_doctype (Link) field in DocType 'Activity Log'
#. Label of the link_doctype (Link) field in DocType 'Communication Link'
@@ -14336,28 +14336,28 @@ msgstr ""
#: frappe/core/doctype/communication_link/communication_link.json
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Link DocType"
-msgstr ""
+msgstr "ลิงก์ 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 ""
+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 ""
+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 ""
+msgstr "จำกัดผลลัพธ์ฟิลด์ลิงก์"
#. Label of the link_fieldname (Data) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Link Fieldname"
-msgstr ""
+msgstr "ชื่อฟิลด์ลิงก์"
#. Label of the link_filters (JSON) field in DocType 'DocField'
#. Label of the link_filters (JSON) field in DocType 'Custom Field'
@@ -14368,7 +14368,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Link Filters"
-msgstr ""
+msgstr "ตัวกรองลิงก์"
#. Label of the link_name (Dynamic Link) field in DocType 'Activity Log'
#. Label of the link_name (Dynamic Link) field in DocType 'Communication Link'
@@ -14377,14 +14377,14 @@ msgstr ""
#: frappe/core/doctype/communication_link/communication_link.json
#: frappe/core/doctype/dynamic_link/dynamic_link.json
msgid "Link Name"
-msgstr ""
+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 ""
+msgstr "ชื่อเรื่องลิงก์"
#. Label of the link_to (Dynamic Link) field in DocType 'Workspace'
#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Link'
@@ -14396,11 +14396,11 @@ msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:281
#: frappe/public/js/frappe/widgets/widget_dialog.js:427
msgid "Link To"
-msgstr ""
+msgstr "ลิงก์ไปยัง"
#: frappe/public/js/frappe/widgets/widget_dialog.js:363
msgid "Link To in Row"
-msgstr ""
+msgstr "ลิงก์ไปยังในแถว"
#. Label of the link_type (Select) field in DocType 'Workspace'
#. Label of the link_type (Select) field in DocType 'Workspace Link'
@@ -14409,11 +14409,11 @@ msgstr ""
#: frappe/public/js/frappe/views/workspace/workspace.js:410
#: frappe/public/js/frappe/widgets/widget_dialog.js:273
msgid "Link Type"
-msgstr ""
+msgstr "ประเภทลิงก์"
#: frappe/public/js/frappe/widgets/widget_dialog.js:359
msgid "Link Type in Row"
-msgstr ""
+msgstr "ประเภทลิงก์ในแถว"
#: frappe/website/doctype/about_us_settings/about_us_settings.js:6
msgid "Link for About Us Page is \"/about\"."
@@ -14422,23 +14422,23 @@ 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 ""
+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 ""
+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 ""
+msgstr "ลิงก์แล้ว"
#: frappe/public/js/frappe/form/linked_with.js:23
msgid "Linked With"
-msgstr ""
+msgstr "ลิงก์กับ"
#. Label of the links (Table) field in DocType 'Address'
#. Label of the links (Table) field in DocType 'Contact'
@@ -14453,7 +14453,7 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/desk/doctype/workspace/workspace.json
msgid "Links"
-msgstr ""
+msgstr "ลิงก์"
#. Option for the 'Apply To' (Select) field in DocType 'Client Script'
#. Option for the 'View' (Select) field in DocType 'Form Tour'
@@ -14608,47 +14608,47 @@ 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 ""
+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 ""
+msgstr "ประเภทเอกสารบันทึก"
#: frappe/templates/emails/login_with_email_link.html:27
msgid "Log In To {0}"
-msgstr ""
+msgstr "เข้าสู่ระบบไปยัง {0}"
#. Label of the log_index (Int) field in DocType 'Data Import Log'
#: frappe/core/doctype/data_import_log/data_import_log.json
msgid "Log Index"
-msgstr ""
+msgstr "ดัชนีบันทึก"
#. Name of a DocType
#: frappe/core/doctype/log_setting_user/log_setting_user.json
msgid "Log Setting User"
-msgstr ""
+msgstr "ผู้ตั้งค่าบันทึก"
#. Name of a DocType
#: frappe/core/doctype/log_settings/log_settings.json
#: frappe/public/js/frappe/logtypes.js:20
msgid "Log Settings"
-msgstr ""
+msgstr "การตั้งค่าบันทึก"
#: frappe/www/app.py:23
msgid "Log in to access this page."
-msgstr ""
+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 ""
+msgstr "ออกจากระบบ"
#: frappe/handler.py:118
msgid "Logged Out"
-msgstr ""
+msgstr "ออกจากระบบแล้ว"
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#. Label of the security_tab (Tab Break) field in DocType 'System Settings'
@@ -14662,139 +14662,139 @@ msgstr ""
#: frappe/website/page_renderers/not_permitted_page.py:24
#: frappe/www/login.html:45
msgid "Login"
-msgstr ""
+msgstr "เข้าสู่ระบบ"
#. Label of the login_after (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login After"
-msgstr ""
+msgstr "เข้าสู่ระบบหลังจาก"
#. Label of the login_before (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Login Before"
-msgstr ""
+msgstr "เข้าสู่ระบบก่อน"
#: frappe/public/js/frappe/desk.js:256
msgid "Login Failed please try again"
-msgstr ""
+msgstr "การเข้าสู่ระบบล้มเหลว โปรดลองอีกครั้ง"
#: frappe/email/doctype/email_account/email_account.py:144
msgid "Login Id is required"
-msgstr ""
+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 ""
+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 ""
+msgstr "หน้าการเข้าสู่ระบบ"
#: frappe/www/login.py:156
msgid "Login To {0}"
-msgstr ""
+msgstr "เข้าสู่ระบบไปยัง {0}"
#: frappe/twofactor.py:260
msgid "Login Verification Code from {}"
-msgstr ""
+msgstr "รหัสยืนยันการเข้าสู่ระบบจาก {}"
#: frappe/templates/emails/new_message.html:4
msgid "Login and view in Browser"
-msgstr ""
+msgstr "เข้าสู่ระบบและดูในเบราว์เซอร์"
#: frappe/website/doctype/web_form/web_form.js:367
msgid "Login is required to see web form list view. Enable {0} to see list settings"
-msgstr ""
+msgstr "ต้องเข้าสู่ระบบเพื่อดูมุมมองรายการฟอร์มเว็บ เปิดใช้งาน {0} เพื่อดูการตั้งค่ารายการ"
#: frappe/templates/includes/login/login.js:69
msgid "Login link sent to your email"
-msgstr ""
+msgstr "ลิงก์เข้าสู่ระบบถูกส่งไปยังอีเมลของคุณ"
#: frappe/auth.py:339 frappe/auth.py:342
msgid "Login not allowed at this time"
-msgstr ""
+msgstr "ไม่อนุญาตให้เข้าสู่ระบบในขณะนี้"
#. Label of the login_required (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Login required"
-msgstr ""
+msgstr "ต้องเข้าสู่ระบบ"
#: frappe/twofactor.py:164
msgid "Login session expired, refresh page to retry"
-msgstr ""
+msgstr "เซสชันการเข้าสู่ระบบหมดอายุ โปรดรีเฟรชหน้าเพื่อทดลองอีกครั้ง"
#: frappe/templates/includes/comments/comments.html:110
msgid "Login to comment"
-msgstr ""
+msgstr "เข้าสู่ระบบเพื่อแสดงความคิดเห็น"
#: frappe/templates/includes/comments/comments.html:6
msgid "Login to start a new discussion"
-msgstr ""
+msgstr "เข้าสู่ระบบเพื่อเริ่มการสนทนาใหม่"
#: frappe/www/login.html:64
msgid "Login to {0}"
-msgstr ""
+msgstr "เข้าสู่ระบบไปยัง {0}"
#: frappe/templates/includes/login/login.js:319
msgid "Login token required"
-msgstr ""
+msgstr "ต้องการโทเค็นเข้าสู่ระบบ"
#: frappe/www/login.html:126 frappe/www/login.html:210
msgid "Login with Email Link"
-msgstr ""
+msgstr "เข้าสู่ระบบด้วยลิงก์อีเมล"
#: frappe/www/login.html:116
msgid "Login with Frappe Cloud"
-msgstr ""
+msgstr "เข้าสู่ระบบด้วย Frappe Cloud"
#: frappe/www/login.html:49
msgid "Login with LDAP"
-msgstr ""
+msgstr "เข้าสู่ระบบด้วย LDAP"
#. Label of the login_with_email_link (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Login with email link"
-msgstr ""
+msgstr "เข้าสู่ระบบด้วยลิงก์อีเมล"
#. Label of the login_with_email_link_expiry (Int) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Login with email link expiry (in minutes)"
-msgstr ""
+msgstr "ลิงก์อีเมลหมดอายุ (ในนาที)"
#: frappe/auth.py:144
msgid "Login with username and password is not allowed."
-msgstr ""
+msgstr "ไม่อนุญาตให้เข้าสู่ระบบด้วยชื่อผู้ใช้และรหัสผ่าน"
#: frappe/www/login.html:100
msgid "Login with {0}"
-msgstr ""
+msgstr "เข้าสู่ระบบด้วย {0}"
#. Option for the 'Operation' (Select) field in DocType 'Activity Log'
#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59
#: frappe/www/me.html:84
msgid "Logout"
-msgstr ""
+msgstr "ออกจากระบบ"
#: frappe/core/doctype/user/user.js:197
msgid "Logout All Sessions"
-msgstr ""
+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 ""
+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 ""
+msgstr "ออกจากระบบจากทุกอุปกรณ์หลังจากเปลี่ยนรหัสผ่าน"
#. Group in User's connections
#. Label of a Card Break in the Users Workspace
@@ -14805,12 +14805,12 @@ msgstr ""
#. Name of a DocType
#: frappe/core/doctype/logs_to_clear/logs_to_clear.json
msgid "Logs To Clear"
-msgstr ""
+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 ""
+msgstr "บันทึกที่ต้องล้าง"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -14819,25 +14819,25 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Long Text"
-msgstr ""
+msgstr "ข้อความยาว"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:317
msgid "Looks like you didn't change the value"
-msgstr ""
+msgstr "ดูเหมือนว่าคุณไม่ได้เปลี่ยนค่า"
#: frappe/www/third_party_apps.html:59
msgid "Looks like you haven’t added any third party apps."
-msgstr ""
+msgstr "ดูเหมือนว่าคุณยังไม่ได้เพิ่มแอปของบุคคลที่สามใด ๆ"
#: frappe/public/js/frappe/ui/notifications/notifications.js:315
msgid "Looks like you haven’t received any notifications."
-msgstr ""
+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 ""
+msgstr "ต่ำ"
#: frappe/public/js/frappe/utils/number_systems.js:13
msgctxt "Number system"
@@ -14882,7 +14882,7 @@ msgstr ""
#. Label of the major (Int) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
msgid "Major"
-msgstr ""
+msgstr "หลัก"
#. Label of the show_name_in_global_search (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -14892,7 +14892,7 @@ 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 ""
+msgstr "ทำให้ไฟล์แนบเป็นสาธารณะ (โดยค่าเริ่มต้น)"
#. Label of the make_attachments_public (Check) field in DocType 'DocType'
#. Label of the make_attachments_public (Check) field in DocType 'Customize
@@ -14900,33 +14900,33 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Make Attachments Public by Default"
-msgstr ""
+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 ""
+msgstr "ตรวจสอบให้แน่ใจว่ากำหนดค่าคีย์เข้าสู่ระบบโซเชียลก่อนปิดใช้งานเพื่อป้องกันการล็อกเอาต์"
#: frappe/utils/password_strength.py:92
msgid "Make use of longer keyboard patterns"
-msgstr ""
+msgstr "ใช้รูปแบบแป้นพิมพ์ที่ยาวขึ้น"
#: frappe/public/js/frappe/form/multi_select_dialog.js:87
msgid "Make {0}"
-msgstr ""
+msgstr "สร้าง {0}"
#: frappe/website/doctype/web_page/web_page.js:77
msgid "Makes the page public"
-msgstr ""
+msgstr "ทำให้หน้าเป็นสาธารณะ"
#: frappe/desk/page/setup_wizard/install_fixtures.py:28
msgid "Male"
-msgstr ""
+msgstr "ชาย"
#: frappe/www/me.html:56
msgid "Manage 3rd party apps"
-msgstr ""
+msgstr "จัดการแอปของบุคคลที่สาม"
#. Description of a Card Break in the Tools Workspace
#: frappe/automation/workspace/tools/tools.json
@@ -14944,7 +14944,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 "จำเป็น"
#. Label of the mandatory_depends_on (Code) field in DocType 'Custom Field'
#. Label of the mandatory_depends_on (Code) field in DocType 'Customize Form
@@ -14954,41 +14954,41 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Mandatory Depends On"
-msgstr ""
+msgstr "ขึ้นอยู่กับที่จำเป็น"
#. Label of the mandatory_depends_on (Code) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Mandatory Depends On (JS)"
-msgstr ""
+msgstr "ขึ้นอยู่กับที่จำเป็น (JS)"
#: frappe/website/doctype/web_form/web_form.py:470
msgid "Mandatory Information missing:"
-msgstr ""
+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 ""
+msgstr "ฟิลด์ที่จำเป็น: ตั้งค่าบทบาทสำหรับ"
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124
msgid "Mandatory field: {0}"
-msgstr ""
+msgstr "ฟิลด์ที่จำเป็น: {0}"
#: frappe/public/js/frappe/form/save.js:120
msgid "Mandatory fields required in table {0}, Row {1}"
-msgstr ""
+msgstr "ฟิลด์ที่จำเป็นในตาราง {0}, แถว {1}"
#: frappe/public/js/frappe/form/save.js:125
msgid "Mandatory fields required in {0}"
-msgstr ""
+msgstr "ฟิลด์ที่จำเป็นใน {0}"
#: frappe/public/js/frappe/web_form/web_form.js:234
msgctxt "Error message in web form"
msgid "Mandatory fields required:"
-msgstr ""
+msgstr "ฟิลด์ที่จำเป็น:"
#: frappe/core/doctype/data_export/exporter.py:142
msgid "Mandatory:"
-msgstr ""
+msgstr "จำเป็น:"
#. Option for the 'Select List View' (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
@@ -15150,37 +15150,37 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.py:1342
msgid "Max width for type Currency is 100px in row {0}"
-msgstr ""
+msgstr "ความกว้างสูงสุดสำหรับประเภทสกุลเงินคือ 100px ในแถว {0}"
#. Option for the 'Function' (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Maximum"
-msgstr ""
+msgstr "สูงสุด"
#: frappe/core/doctype/file/file.py:320
msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}."
-msgstr ""
+msgstr "ถึงขีดจำกัดไฟล์แนบสูงสุด {0} สำหรับ {1} {2} แล้ว"
#. Label of the total_fields (Select) field in DocType 'List View Settings'
#: frappe/desk/doctype/list_view_settings/list_view_settings.json
msgid "Maximum Number of Fields"
-msgstr ""
+msgstr "จำนวนฟิลด์สูงสุด"
#: frappe/public/js/frappe/form/sidebar/attachments.js:38
msgid "Maximum attachment limit of {0} has been reached."
-msgstr ""
+msgstr "ถึงขีดจำกัดไฟล์แนบสูงสุด {0} แล้ว"
#: frappe/model/rename_doc.py:690
msgid "Maximum {0} rows allowed"
-msgstr ""
+msgstr "อนุญาตสูงสุด {0} แถว"
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:221
msgid "Me"
-msgstr ""
+msgstr "ฉัน"
#: frappe/core/page/permission_manager/permission_manager_help.html:14
msgid "Meaning of Submit, Cancel, Amend"
-msgstr ""
+msgstr "ความหมายของการส่ง ยกเลิก แก้ไข"
#. Option for the 'Priority' (Select) field in DocType 'ToDo'
#. Label of the medium (Data) field in DocType 'Web Page View'
@@ -15190,19 +15190,19 @@ msgstr ""
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:40
msgid "Medium"
-msgstr ""
+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 ""
+msgstr "การประชุม"
#: frappe/email/doctype/notification/notification.js:196
#: frappe/integrations/doctype/webhook/webhook.js:96
msgid "Meets Condition?"
-msgstr ""
+msgstr "ตรงตามเงื่อนไขหรือไม่?"
#. Group in Email Group's connections
#: frappe/email/doctype/email_group/email_group.json
@@ -15213,36 +15213,36 @@ msgstr ""
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Memory Usage"
-msgstr ""
+msgstr "การใช้งานหน่วยความจำ"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63
msgid "Memory Usage in MB"
-msgstr ""
+msgstr "การใช้งานหน่วยความจำใน MB"
#. Option for the 'Type' (Select) field in DocType 'Notification Log'
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Mention"
-msgstr ""
+msgstr "กล่าวถึง"
#. Label of the enable_email_mention (Check) field in DocType 'Notification
#. Settings'
#: frappe/desk/doctype/notification_settings/notification_settings.json
msgid "Mentions"
-msgstr ""
+msgstr "การกล่าวถึง"
#: frappe/public/js/frappe/ui/page.html:41
#: frappe/public/js/frappe/ui/page.js:162
msgid "Menu"
-msgstr ""
+msgstr "เมนู"
#: frappe/public/js/frappe/form/toolbar.js:242
#: frappe/public/js/frappe/model/model.js:705
msgid "Merge with existing"
-msgstr ""
+msgstr "รวมกับที่มีอยู่"
#: frappe/utils/nestedset.py:307
msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node"
-msgstr ""
+msgstr "การรวมสามารถทำได้เฉพาะระหว่างกลุ่มถึงกลุ่มหรือโหนดใบถึงโหนดใบ"
#. Label of the message (Text) field in DocType 'Auto Repeat'
#. Label of the content (Text Editor) field in DocType 'Activity Log'
@@ -15275,92 +15275,92 @@ msgstr ""
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/www/message.html:3
msgid "Message"
-msgstr ""
+msgstr "ข้อความ"
#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78
msgctxt "Default title of the message dialog"
msgid "Message"
-msgstr ""
+msgstr "ข้อความ"
#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
#: frappe/email/doctype/newsletter/newsletter.json
msgid "Message (HTML)"
-msgstr ""
+msgstr "ข้อความ (HTML)"
#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
#: frappe/email/doctype/newsletter/newsletter.json
msgid "Message (Markdown)"
-msgstr ""
+msgstr "ข้อความ (Markdown)"
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
-msgstr ""
+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 ""
+msgstr "รหัสข้อความ"
#. Label of the message_parameter (Data) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Message Parameter"
-msgstr ""
+msgstr "พารามิเตอร์ข้อความ"
#: frappe/templates/includes/contact.js:36
msgid "Message Sent"
-msgstr ""
+msgstr "ส่งข้อความแล้ว"
#. Label of the message_type (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Type"
-msgstr ""
+msgstr "ประเภทข้อความ"
#: frappe/public/js/frappe/views/communication.js:950
msgid "Message clipped"
-msgstr ""
+msgstr "ข้อความถูกตัด"
#: frappe/email/doctype/email_account/email_account.py:344
msgid "Message from server: {0}"
-msgstr ""
+msgstr "ข้อความจากเซิร์ฟเวอร์: {0}"
#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104
msgid "Message not setup"
-msgstr ""
+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 ""
+msgstr "ข้อความที่จะแสดงเมื่อเสร็จสิ้นสำเร็จ"
#. Label of the message_id (Code) field in DocType 'Unhandled Email'
#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Message-id"
-msgstr ""
+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 ""
+msgstr "ข้อความ"
#. Label of the meta_section (Section Break) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Meta"
-msgstr ""
+msgstr "เมตา"
#. Label of the meta_description (Small Text) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:124
msgid "Meta Description"
-msgstr ""
+msgstr "คำอธิบายเมตา"
#. Label of the meta_image (Attach Image) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:131
msgid "Meta Image"
-msgstr ""
+msgstr "ภาพเมตา"
#. Label of the meta_tags (Section Break) field in DocType 'Blog Post'
#. Label of the metatags_section (Section Break) field in DocType 'Web Page'
@@ -15369,32 +15369,32 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_route_meta/website_route_meta.json
msgid "Meta Tags"
-msgstr ""
+msgstr "แท็กเมตา"
#. Label of the meta_title (Data) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:117
msgid "Meta Title"
-msgstr ""
+msgstr "ชื่อเรื่องเมตา"
#. 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 "คำอธิบายเมตา"
#. 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 "ภาพเมตา"
#. Label of the meta_title (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Meta title"
-msgstr ""
+msgstr "ชื่อเรื่องเมตา"
#: frappe/website/doctype/web_page/web_page.js:110
msgid "Meta title for SEO"
-msgstr ""
+msgstr "ชื่อเรื่องเมตาสำหรับ SEO"
#. Label of the method (Data) field in DocType 'Access Log'
#. Label of the method (Data) field in DocType 'API Request Log'
@@ -15413,72 +15413,72 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/notification/notification.json
msgid "Method"
-msgstr ""
+msgstr "วิธีการ"
#: frappe/__init__.py:679
msgid "Method Not Allowed"
-msgstr ""
+msgstr "ไม่อนุญาตวิธีการ"
#: frappe/desk/doctype/number_card/number_card.py:73
msgid "Method is required to create a number card"
-msgstr ""
+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 ""
+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 ""
+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 "เหตุการณ์สำคัญ"
#. 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 "ตัวติดตามเหตุการณ์สำคัญ"
#. Option for the 'Function' (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Minimum"
-msgstr ""
+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 ""
+msgstr "คะแนนรหัสผ่านขั้นต่ำ"
#. Label of the minor (Int) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
msgid "Minor"
-msgstr ""
+msgstr "เล็กน้อย"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
-msgstr ""
+msgstr "นาทีหลังจาก"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes Before"
-msgstr ""
+msgstr "นาทีก่อน"
#. Label of the minutes_offset (Int) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes Offset"
-msgstr ""
+msgstr "การชดเชยนาที"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:103
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108
@@ -15486,46 +15486,46 @@ msgstr ""
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:125
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333
msgid "Misconfigured"
-msgstr ""
+msgstr "การกำหนดค่าผิดพลาด"
#: frappe/desk/page/setup_wizard/install_fixtures.py:49
msgid "Miss"
-msgstr ""
+msgstr "พลาด"
#: frappe/desk/form/meta.py:194
msgid "Missing DocType"
-msgstr ""
+msgstr "DocType ที่หายไป"
#: frappe/core/doctype/doctype/doctype.py:1526
msgid "Missing Field"
-msgstr ""
+msgstr "ฟิลด์ที่หายไป"
#: frappe/public/js/frappe/form/save.js:131
msgid "Missing Fields"
-msgstr ""
+msgstr "ฟิลด์ที่หายไป"
#: frappe/email/doctype/auto_email_report/auto_email_report.py:129
msgid "Missing Filters Required"
-msgstr ""
+msgstr "ตัวกรองที่จำเป็นหายไป"
#: frappe/desk/form/assign_to.py:110
msgid "Missing Permission"
-msgstr ""
+msgstr "สิทธิ์ที่หายไป"
#: frappe/www/update-password.html:109 frappe/www/update-password.html:116
msgid "Missing Value"
-msgstr ""
+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 ""
+msgstr "ค่าที่จำเป็นหายไป"
#: frappe/www/login.py:107
msgid "Mobile"
-msgstr ""
+msgstr "มือถือ"
#. Label of the mobile_no (Data) field in DocType 'Contact'
#. Label of the mobile_no (Data) field in DocType 'User'
@@ -15539,11 +15539,11 @@ 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 ""
+msgstr "ตัวกระตุ้นโมดอล"
#: frappe/core/report/transaction_log_report/transaction_log_report.py:106
msgid "Modified By"
-msgstr ""
+msgstr "แก้ไขโดย"
#. Label of the module (Data) field in DocType 'Block Module'
#. Label of the module (Link) field in DocType 'DocType'
@@ -15583,7 +15583,7 @@ msgstr ""
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Module"
-msgstr ""
+msgstr "โมดูล"
#. Label of the module (Link) field in DocType 'Server Script'
#. Label of the module (Link) field in DocType 'Client Script'
@@ -15596,7 +15596,7 @@ msgstr ""
#: frappe/custom/doctype/property_setter/property_setter.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Module (for export)"
-msgstr ""
+msgstr "โมดูล (สำหรับการส่งออก)"
#. Name of a DocType
#. Label of a Link in the Build Workspace
@@ -15604,26 +15604,26 @@ msgstr ""
#: frappe/core/doctype/module_def/module_def.json
#: frappe/core/workspace/build/build.json
msgid "Module Def"
-msgstr ""
+msgstr "การกำหนดโมดูล"
#. Label of the module_html (HTML) field in DocType 'Module Profile'
#: frappe/core/doctype/module_profile/module_profile.json
msgid "Module HTML"
-msgstr ""
+msgstr "โมดูล HTML"
#. Label of the module_name (Data) field in DocType 'Module Def'
#. Label of the module_name (Data) field in DocType 'Desktop Icon'
#: frappe/core/doctype/module_def/module_def.json
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Module Name"
-msgstr ""
+msgstr "ชื่อโมดูล"
#. Label of a Link in the Build Workspace
#. Name of a DocType
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Module Onboarding"
-msgstr ""
+msgstr "การเริ่มต้นใช้งานโมดูล"
#. Name of a DocType
#. Label of the module_profile (Link) field in DocType 'User'
@@ -15631,36 +15631,36 @@ msgstr ""
#: frappe/core/doctype/module_profile/module_profile.json
#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json
msgid "Module Profile"
-msgstr ""
+msgstr "โปรไฟล์โมดูล"
#. Label of the module_profile_name (Data) field in DocType 'Module Profile'
#: frappe/core/doctype/module_profile/module_profile.json
msgid "Module Profile Name"
-msgstr ""
+msgstr "ชื่อโปรไฟล์โมดูล"
#: frappe/desk/doctype/module_onboarding/module_onboarding.py:69
msgid "Module onboarding progress reset"
-msgstr ""
+msgstr "รีเซ็ตความคืบหน้าการเริ่มต้นใช้งานโมดูล"
#: frappe/custom/doctype/customize_form/customize_form.js:250
msgid "Module to Export"
-msgstr ""
+msgstr "โมดูลที่จะส่งออก"
#: frappe/modules/utils.py:273
msgid "Module {} not found"
-msgstr ""
+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 ""
+msgstr "โมดูล"
#. Label of the modules_html (HTML) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Modules HTML"
-msgstr ""
+msgstr "โมดูล HTML"
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -15676,7 +15676,7 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Monday"
-msgstr ""
+msgstr "วันจันทร์"
#. Description of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
@@ -15686,11 +15686,11 @@ msgstr ""
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Monospace"
-msgstr ""
+msgstr "โมโนสเปซ"
#: frappe/public/js/frappe/views/calendar/calendar.js:275
msgid "Month"
-msgstr ""
+msgstr "เดือน"
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
@@ -15710,14 +15710,14 @@ msgstr ""
#: frappe/public/js/frappe/utils/common.js:400
#: frappe/website/report/website_analytics/website_analytics.js:25
msgid "Monthly"
-msgstr ""
+msgstr "รายเดือน"
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Monthly Long"
-msgstr ""
+msgstr "รายเดือนยาว"
#: frappe/public/js/frappe/form/link_selector.js:39
#: frappe/public/js/frappe/form/multi_select_dialog.js:45
@@ -15728,13 +15728,13 @@ msgstr ""
#: frappe/templates/includes/list/list.html:25
#: frappe/templates/includes/search_template.html:13
msgid "More"
-msgstr ""
+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 ""
+msgstr "ข้อมูลเพิ่มเติม"
#. Label of the more_info (Section Break) field in DocType 'Contact'
#. Label of the additional_info (Section Break) field in DocType 'Activity Log'
@@ -15746,112 +15746,112 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/user/user.json
msgid "More Information"
-msgstr ""
+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 ""
+msgstr "บทความเพิ่มเติมเกี่ยวกับ {0}"
#. Description of the 'Footer' (Text Editor) field in DocType 'About Us
#. Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "More content for the bottom of the page."
-msgstr ""
+msgstr "เนื้อหาเพิ่มเติมสำหรับด้านล่างของหน้า"
#: frappe/public/js/frappe/ui/sort_selector.js:193
msgid "Most Used"
-msgstr ""
+msgstr "ใช้บ่อยที่สุด"
#: frappe/utils/password.py:76
msgid "Most probably your password is too long."
-msgstr ""
+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 ""
+msgstr "ย้าย"
#: frappe/public/js/frappe/form/grid_row.js:193
msgid "Move To"
-msgstr ""
+msgstr "ย้ายไปยัง"
#: frappe/core/doctype/communication/communication.js:104
msgid "Move To Trash"
-msgstr ""
+msgstr "ย้ายไปยังถังขยะ"
#: frappe/public/js/form_builder/components/Section.vue:295
msgid "Move current and all subsequent sections to a new tab"
-msgstr ""
+msgstr "ย้ายส่วนปัจจุบันและส่วนถัดไปทั้งหมดไปยังแท็บใหม่"
#: frappe/public/js/frappe/form/form.js:177
msgid "Move cursor to above row"
-msgstr ""
+msgstr "ย้ายเคอร์เซอร์ไปยังแถวด้านบน"
#: frappe/public/js/frappe/form/form.js:181
msgid "Move cursor to below row"
-msgstr ""
+msgstr "ย้ายเคอร์เซอร์ไปยังแถวด้านล่าง"
#: frappe/public/js/frappe/form/form.js:185
msgid "Move cursor to next column"
-msgstr ""
+msgstr "ย้ายเคอร์เซอร์ไปยังคอลัมน์ถัดไป"
#: frappe/public/js/frappe/form/form.js:189
msgid "Move cursor to previous column"
-msgstr ""
+msgstr "ย้ายเคอร์เซอร์ไปยังคอลัมน์ก่อนหน้า"
#: frappe/public/js/form_builder/components/Section.vue:294
msgid "Move sections to new tab"
-msgstr ""
+msgstr "ย้ายส่วนไปยังแท็บใหม่"
#: frappe/public/js/form_builder/components/Field.vue:237
msgid "Move the current field and the following fields to a new column"
-msgstr ""
+msgstr "ย้ายฟิลด์ปัจจุบันและฟิลด์ถัดไปไปยังคอลัมน์ใหม่"
#: frappe/public/js/frappe/form/grid_row.js:168
msgid "Move to Row Number"
-msgstr ""
+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 ""
+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 ""
+msgstr "Mozilla ไม่รองรับ :has() ดังนั้นคุณสามารถส่งตัวเลือกพาเรนต์ที่นี่เป็นวิธีแก้ไข"
#: frappe/desk/page/setup_wizard/install_fixtures.py:43
msgid "Mr"
-msgstr ""
+msgstr "นาย"
#: frappe/desk/page/setup_wizard/install_fixtures.py:47
msgid "Mrs"
-msgstr ""
+msgstr "นาง"
#: frappe/desk/page/setup_wizard/install_fixtures.py:44
msgid "Ms"
-msgstr ""
+msgstr "นางสาว"
#: frappe/utils/nestedset.py:331
msgid "Multiple root nodes not allowed."
-msgstr ""
+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 ""
+msgstr "ต้องเป็น URL Google Sheets ที่เข้าถึงได้สาธารณะ"
#. Description of the 'LDAP Search String' (Data) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Must be enclosed in '()' and include '{0}', which is a placeholder for the user/login name. i.e. (&(objectclass=user)(uid={0}))"
-msgstr ""
+msgstr "ต้องอยู่ใน '()' และรวม '{0}' ซึ่งเป็นตัวแทนสำหรับชื่อผู้ใช้/เข้าสู่ระบบ เช่น (&(objectclass=user)(uid={0}))"
#. Description of the 'Image Field' (Data) field in DocType 'DocType'
#. Description of the 'Image Field' (Data) field in DocType 'Customize Form'
@@ -15862,16 +15862,16 @@ msgstr ""
#: frappe/desk/query_report.py:208
msgid "Must have report permission to access this report."
-msgstr ""
+msgstr "ต้องมีสิทธิ์รายงานเพื่อเข้าถึงรายงานนี้"
#: frappe/core/doctype/report/report.py:151
msgid "Must specify a Query to run"
-msgstr ""
+msgstr "ต้องระบุคำสั่ง Query เพื่อรัน"
#. Label of the mute_sounds (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Mute Sounds"
-msgstr ""
+msgstr "ปิดเสียง"
#: frappe/desk/page/setup_wizard/install_fixtures.py:45
msgid "Mx"
@@ -15882,15 +15882,15 @@ msgstr ""
#: 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 "บัญชีของฉัน"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:57
msgid "My Device"
-msgstr ""
+msgstr "อุปกรณ์ของฉัน"
#: frappe/public/js/frappe/ui/apps_switcher.js:71
msgid "My Workspaces"
-msgstr ""
+msgstr "พื้นที่ทำงานของฉัน"
#. Option for the 'Database Engine' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -15899,13 +15899,13 @@ 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 ""
+msgstr "หมายเหตุ: หากคุณเพิ่มสถานะหรือการเปลี่ยนผ่านในตาราง จะสะท้อนใน Workflow Builder แต่คุณจะต้องจัดตำแหน่งด้วยตนเอง นอกจากนี้ Workflow Builder ยังอยู่ใน BETA"
#. Description of the 'LDAP Group Field' (Data) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "NOTE: This box is due for depreciation. Please re-setup LDAP to work with the newer settings"
-msgstr ""
+msgstr "หมายเหตุ: กล่องนี้ถึงกำหนดค่าเสื่อม โปรดตั้งค่า LDAP ใหม่เพื่อใช้งานกับการตั้งค่าใหม่"
#. Label of the fieldname (Data) field in DocType 'DocField'
#. Label of the fieldname (Data) field in DocType 'Customize Form Field'
@@ -15922,35 +15922,35 @@ msgstr ""
#: frappe/public/js/frappe/views/file/file_view.js:97
#: frappe/website/doctype/website_slideshow/website_slideshow.js:25
msgid "Name"
-msgstr ""
+msgstr "ชื่อ"
#: frappe/integrations/doctype/webhook/webhook.js:29
msgid "Name (Doc Name)"
-msgstr ""
+msgstr "ชื่อ (ชื่อเอกสาร)"
#: frappe/desk/utils.py:22
msgid "Name already taken, please set a new name"
-msgstr ""
+msgstr "ชื่อนี้ถูกใช้แล้ว โปรดตั้งชื่อใหม่"
#: frappe/model/naming.py:504
msgid "Name cannot contain special characters like {0}"
-msgstr ""
+msgstr "ชื่อไม่สามารถมีอักขระพิเศษเช่น {0}"
#: frappe/custom/doctype/custom_field/custom_field.js:91
msgid "Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer"
-msgstr ""
+msgstr "ชื่อประเภทเอกสาร (DocType) ที่คุณต้องการให้ฟิลด์นี้ลิงก์ไปยัง เช่น ลูกค้า"
#: frappe/printing/page/print_format_builder/print_format_builder.js:117
msgid "Name of the new Print Format"
-msgstr ""
+msgstr "ชื่อรูปแบบการพิมพ์ใหม่"
#: frappe/model/naming.py:499
msgid "Name of {0} cannot be {1}"
-msgstr ""
+msgstr "ชื่อของ {0} ไม่สามารถเป็น {1}"
#: frappe/utils/password_strength.py:174
msgid "Names and surnames by themselves are easy to guess."
-msgstr ""
+msgstr "ชื่อและนามสกุลเพียงอย่างเดียวคาดเดาได้ง่าย"
#. Label of the sb1 (Tab Break) field in DocType 'DocType'
#. Label of the naming_section (Section Break) field in DocType 'Document
@@ -15961,7 +15961,7 @@ msgstr ""
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Naming"
-msgstr ""
+msgstr "การตั้งชื่อ"
#. Description of the 'Auto Name' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
@@ -15975,17 +15975,17 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Naming Rule"
-msgstr ""
+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 ""
+msgstr "ชุดการตั้งชื่อ"
#: frappe/model/naming.py:260
msgid "Naming Series mandatory"
-msgstr ""
+msgstr "ชุดการตั้งชื่อเป็นสิ่งจำเป็น"
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#. Label of the top_bar (Section Break) field in DocType 'Website Settings'
@@ -15993,69 +15993,69 @@ msgstr ""
#: frappe/website/doctype/web_template/web_template.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Navbar"
-msgstr ""
+msgstr "แถบนำทาง"
#. Name of a DocType
#: frappe/core/doctype/navbar_item/navbar_item.json
msgid "Navbar Item"
-msgstr ""
+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 ""
+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 ""
+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 ""
+msgstr "ค่าของแม่แบบแถบนำทาง"
#: frappe/public/js/frappe/list/list_view.js:1237
msgctxt "Description of a list view shortcut"
msgid "Navigate list down"
-msgstr ""
+msgstr "เลื่อนรายการลง"
#: frappe/public/js/frappe/list/list_view.js:1244
msgctxt "Description of a list view shortcut"
msgid "Navigate list up"
-msgstr ""
+msgstr "เลื่อนรายการขึ้น"
#: frappe/public/js/frappe/ui/page.js:175
msgid "Navigate to main content"
-msgstr ""
+msgstr "ไปยังเนื้อหาหลัก"
#. Label of the navigation_settings_section (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Navigation Settings"
-msgstr ""
+msgstr "การตั้งค่าการนำทาง"
#: frappe/desk/doctype/workspace/workspace.py:319
msgid "Need Workspace Manager role to edit private workspace of other users"
-msgstr ""
+msgstr "ต้องการบทบาทผู้จัดการพื้นที่ทำงานเพื่อแก้ไขพื้นที่ทำงานส่วนตัวของผู้ใช้อื่น"
#: frappe/model/document.py:792
msgid "Negative Value"
-msgstr ""
+msgstr "ค่าติดลบ"
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
-msgstr ""
+msgstr "ข้อผิดพลาดชุดซ้อน โปรดติดต่อผู้ดูแลระบบ"
#. Name of a DocType
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Network Printer Settings"
-msgstr ""
+msgstr "การตั้งค่าเครื่องพิมพ์เครือข่าย"
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
@@ -16070,169 +16070,169 @@ msgstr ""
#: frappe/website/doctype/web_form/templates/web_list.html:15
#: frappe/www/list.html:19
msgid "New"
-msgstr ""
+msgstr "ใหม่"
#: frappe/public/js/frappe/views/interaction.js:15
msgid "New Activity"
-msgstr ""
+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 ""
+msgstr "ที่อยู่ใหม่"
#: frappe/public/js/frappe/widgets/widget_dialog.js:58
msgid "New Chart"
-msgstr ""
+msgstr "แผนภูมิใหม่"
#: frappe/templates/includes/comments/comments.py:62
msgid "New Comment on {0}: {1}"
-msgstr ""
+msgstr "ความคิดเห็นใหม่ใน {0}: {1}"
#: frappe/public/js/frappe/form/templates/contact_list.html:3
msgid "New Contact"
-msgstr ""
+msgstr "ผู้ติดต่อใหม่"
#: frappe/public/js/frappe/widgets/widget_dialog.js:70
msgid "New Custom Block"
-msgstr ""
+msgstr "บล็อกที่กำหนดเองใหม่"
#: frappe/printing/page/print/print.js:295
#: frappe/printing/page/print/print.js:342
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
msgid "New Document Form"
-msgstr ""
+msgstr "ฟอร์มเอกสารใหม่"
#: frappe/desk/doctype/notification_log/notification_log.py:154
msgid "New Document Shared {0}"
-msgstr ""
+msgstr "เอกสารใหม่ที่แชร์ {0}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:27
#: frappe/public/js/frappe/views/communication.js:23
msgid "New Email"
-msgstr ""
+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 ""
+msgstr "บัญชีอีเมลใหม่"
#: frappe/public/js/frappe/form/footer/form_timeline.js:47
msgid "New Event"
-msgstr ""
+msgstr "เหตุการณ์ใหม่"
#: frappe/public/js/frappe/views/file/file_view.js:94
msgid "New Folder"
-msgstr ""
+msgstr "โฟลเดอร์ใหม่"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "New Kanban Board"
-msgstr ""
+msgstr "กระดานคัมบังใหม่"
#: frappe/public/js/frappe/widgets/widget_dialog.js:62
msgid "New Links"
-msgstr ""
+msgstr "ลิงก์ใหม่"
#: frappe/desk/doctype/notification_log/notification_log.py:152
msgid "New Mention on {0}"
-msgstr ""
+msgstr "การกล่าวถึงใหม่ใน {0}"
#: frappe/www/contact.py:61
msgid "New Message from Website Contact Page"
-msgstr ""
+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 ""
+msgstr "ชื่อใหม่"
#: frappe/email/doctype/email_group/email_group.js:67
msgid "New Newsletter"
-msgstr ""
+msgstr "จดหมายข่าวใหม่"
#: frappe/desk/doctype/notification_log/notification_log.py:151
msgid "New Notification"
-msgstr ""
+msgstr "การแจ้งเตือนใหม่"
#: frappe/public/js/frappe/widgets/widget_dialog.js:64
msgid "New Number Card"
-msgstr ""
+msgstr "การ์ดตัวเลขใหม่"
#: frappe/public/js/frappe/widgets/widget_dialog.js:66
msgid "New Onboarding"
-msgstr ""
+msgstr "การเริ่มต้นใช้งานใหม่"
#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:42
msgid "New Password"
-msgstr ""
+msgstr "รหัสผ่านใหม่"
#: frappe/printing/page/print/print.js:267
#: frappe/printing/page/print/print.js:321
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61
msgid "New Print Format Name"
-msgstr ""
+msgstr "ชื่อรูปแบบการพิมพ์ใหม่"
#: frappe/public/js/frappe/widgets/widget_dialog.js:68
msgid "New Quick List"
-msgstr ""
+msgstr "รายการด่วนใหม่"
#: frappe/public/js/frappe/views/reports/report_view.js:1384
msgid "New Report name"
-msgstr ""
+msgstr "ชื่อรายงานใหม่"
#. Label of the new_role (Data) field in DocType 'Role Replication'
#: frappe/core/doctype/role_replication/role_replication.json
msgid "New Role"
-msgstr ""
+msgstr "บทบาทใหม่"
#: frappe/public/js/frappe/widgets/widget_dialog.js:60
msgid "New Shortcut"
-msgstr ""
+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 ""
+msgstr "ผู้ใช้ใหม่ (30 วันที่ผ่านมา)"
#: frappe/core/doctype/version/version_view.html:14
#: frappe/core/doctype/version/version_view.html:76
msgid "New Value"
-msgstr ""
+msgstr "ค่าใหม่"
#: frappe/workflow/page/workflow_builder/workflow_builder.js:61
msgid "New Workflow Name"
-msgstr ""
+msgstr "ชื่อเวิร์กโฟลว์ใหม่"
#: frappe/public/js/frappe/views/workspace/workspace.js:390
msgid "New Workspace"
-msgstr ""
+msgstr "พื้นที่ทำงานใหม่"
#: frappe/www/update-password.html:79
msgid "New password cannot be same as old password"
-msgstr ""
+msgstr "รหัสผ่านใหม่ต้องไม่เหมือนกับรหัสผ่านเก่า"
#: frappe/utils/change_log.py:389
msgid "New updates are available"
-msgstr ""
+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 ""
+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 ""
+msgstr "ค่าที่จะตั้งใหม่"
#: frappe/public/js/frappe/form/quick_entry.js:179
#: frappe/public/js/frappe/form/toolbar.js:37
@@ -16248,31 +16248,31 @@ msgstr ""
#: frappe/public/js/frappe/widgets/widget_dialog.js:72
#: frappe/website/doctype/web_form/web_form.py:376
msgid "New {0}"
-msgstr ""
+msgstr "{0} ใหม่"
#: frappe/public/js/frappe/views/reports/query_report.js:392
msgid "New {0} Created"
-msgstr ""
+msgstr "สร้าง {0} ใหม่"
#: frappe/public/js/frappe/views/reports/query_report.js:384
msgid "New {0} {1} added to Dashboard {2}"
-msgstr ""
+msgstr "เพิ่ม {0} {1} ใหม่ในแดชบอร์ด {2}"
#: frappe/public/js/frappe/views/reports/query_report.js:389
msgid "New {0} {1} created"
-msgstr ""
+msgstr "สร้าง {0} {1} ใหม่"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385
msgid "New {0}: {1}"
-msgstr ""
+msgstr "{0} ใหม่: {1}"
#: frappe/utils/change_log.py:375
msgid "New {} releases for the following apps are available"
-msgstr ""
+msgstr "มีการเผยแพร่ {} ใหม่สำหรับแอปต่อไปนี้"
#: frappe/core/doctype/user/user.py:804
msgid "Newly created user {0} has no roles enabled."
-msgstr ""
+msgstr "ผู้ใช้ที่สร้างใหม่ {0} ไม่มีบทบาทที่เปิดใช้งาน"
#. Label of a Card Break in the Tools Workspace
#. Label of a Link in the Tools Workspace
@@ -16280,17 +16280,17 @@ msgstr ""
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/newsletter/newsletter.json
msgid "Newsletter"
-msgstr ""
+msgstr "จดหมายข่าว"
#. Name of a DocType
#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Newsletter Attachment"
-msgstr ""
+msgstr "ไฟล์แนบจดหมายข่าว"
#. Name of a DocType
#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Newsletter Email Group"
-msgstr ""
+msgstr "กลุ่มอีเมลจดหมายข่าว"
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
@@ -16298,23 +16298,23 @@ msgstr ""
#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
-msgstr ""
+msgstr "ผู้จัดการจดหมายข่าว"
#: frappe/email/doctype/newsletter/newsletter.py:128
msgid "Newsletter has already been sent"
-msgstr ""
+msgstr "จดหมายข่าวถูกส่งไปแล้ว"
#: frappe/email/doctype/newsletter/newsletter.py:147
msgid "Newsletter must be published to send webview link in email"
-msgstr ""
+msgstr "จดหมายข่าวต้องเผยแพร่เพื่อส่งลิงก์เว็บวิวในอีเมล"
#: frappe/email/doctype/newsletter/newsletter.py:135
msgid "Newsletter should have atleast one recipient"
-msgstr ""
+msgstr "จดหมายข่าวควรมีผู้รับอย่างน้อยหนึ่งคน"
#: frappe/email/doctype/newsletter/newsletter.py:390
msgid "Newsletters"
-msgstr ""
+msgstr "จดหมายข่าวหลายฉบับ"
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
@@ -16324,100 +16324,100 @@ msgstr ""
#: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258
#: frappe/website/web_template/slideshow/slideshow.html:44
msgid "Next"
-msgstr ""
+msgstr "ถัดไป"
#: frappe/public/js/frappe/ui/slides.js:359
msgctxt "Go to next slide"
msgid "Next"
-msgstr ""
+msgstr "ถัดไป"
#: frappe/public/js/frappe/ui/filters/filter.js:684
msgid "Next 14 Days"
-msgstr ""
+msgstr "14 วันถัดไป"
#: frappe/public/js/frappe/ui/filters/filter.js:688
msgid "Next 30 Days"
-msgstr ""
+msgstr "30 วันถัดไป"
#: frappe/public/js/frappe/ui/filters/filter.js:704
msgid "Next 6 Months"
-msgstr ""
+msgstr "6 เดือนถัดไป"
#: frappe/public/js/frappe/ui/filters/filter.js:680
msgid "Next 7 Days"
-msgstr ""
+msgstr "7 วันถัดไป"
#. Label of the next_action_email_template (Link) field in DocType 'Workflow
#. Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Next Action Email Template"
-msgstr ""
+msgstr "แม่แบบอีเมลการดำเนินการถัดไป"
#. Label of the next_actions_html (HTML) field in DocType 'Success Action'
#: frappe/core/doctype/success_action/success_action.json
msgid "Next Actions HTML"
-msgstr ""
+msgstr "HTML การดำเนินการถัดไป"
#. Label of the next_execution (Datetime) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Next Execution"
-msgstr ""
+msgstr "การดำเนินการถัดไป"
#. Label of the next_form_tour (Link) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Next Form Tour"
-msgstr ""
+msgstr "ทัวร์ฟอร์มถัดไป"
#: frappe/public/js/frappe/ui/filters/filter.js:696
msgid "Next Month"
-msgstr ""
+msgstr "เดือนถัดไป"
#: frappe/public/js/frappe/ui/filters/filter.js:700
msgid "Next Quarter"
-msgstr ""
+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 ""
+msgstr "วันที่กำหนดการถัดไป"
#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:6
msgid "Next Scheduled Date"
-msgstr ""
+msgstr "วันที่กำหนดการถัดไป"
#. Label of the next_state (Link) field in DocType 'Workflow Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Next State"
-msgstr ""
+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 ""
+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 ""
+msgstr "โทเค็นการซิงค์ถัดไป"
#: frappe/public/js/frappe/ui/filters/filter.js:692
msgid "Next Week"
-msgstr ""
+msgstr "สัปดาห์ถัดไป"
#: frappe/public/js/frappe/ui/filters/filter.js:708
msgid "Next Year"
-msgstr ""
+msgstr "ปีถัดไป"
#: frappe/public/js/frappe/form/workflow.js:45
msgid "Next actions"
-msgstr ""
+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 ""
+msgstr "ถัดไปเมื่อคลิก"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
@@ -16655,15 +16655,15 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/search.js:71
msgid "No documents found tagged with {0}"
-msgstr ""
+msgstr "ไม่พบเอกสารที่ติดแท็กด้วย {0}"
#: frappe/public/js/frappe/views/inbox/inbox_view.js:21
msgid "No email account associated with the User. Please add an account under User > Email Inbox."
-msgstr ""
+msgstr "ไม่มีบัญชีอีเมลที่เชื่อมโยงกับผู้ใช้ โปรดเพิ่มบัญชีใน ผู้ใช้ > กล่องจดหมายอีเมล"
#: frappe/core/doctype/data_import/data_import.js:478
msgid "No failed logs"
-msgstr ""
+msgstr "ไม่มีบันทึกที่ล้มเหลว"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
@@ -16671,138 +16671,138 @@ msgstr ""
#: frappe/utils/file_manager.py:143
msgid "No file attached"
-msgstr ""
+msgstr "ไม่มีไฟล์แนบ"
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:134
msgid "No filters found"
-msgstr ""
+msgstr "ไม่พบตัวกรอง"
#: frappe/public/js/frappe/ui/filters/filter_list.js:299
msgid "No filters selected"
-msgstr ""
+msgstr "ไม่ได้เลือกตัวกรอง"
#: frappe/desk/form/utils.py:111
msgid "No further records"
-msgstr ""
+msgstr "ไม่มีบันทึกเพิ่มเติม"
#: frappe/templates/includes/search_template.html:49
msgid "No matching records. Search something new"
-msgstr ""
+msgstr "ไม่พบบันทึกที่ตรงกัน ค้นหาใหม่"
#: frappe/public/js/frappe/web_form/web_form_list.js:161
msgid "No more items to display"
-msgstr ""
+msgstr "ไม่มีรายการเพิ่มเติมที่จะแสดง"
#: frappe/utils/password_strength.py:45
msgid "No need for symbols, digits, or uppercase letters."
-msgstr ""
+msgstr "ไม่จำเป็นต้องใช้สัญลักษณ์ ตัวเลข หรืออักษรตัวพิมพ์ใหญ่"
#: frappe/integrations/doctype/google_contacts/google_contacts.py:195
msgid "No new Google Contacts synced."
-msgstr ""
+msgstr "ไม่มีการซิงค์รายชื่อ Google ใหม่"
#: frappe/public/js/frappe/ui/toolbar/navbar.html:46
msgid "No new notifications"
-msgstr ""
+msgstr "ไม่มีการแจ้งเตือนใหม่"
#: frappe/printing/page/print_format_builder/print_format_builder.js:415
msgid "No of Columns"
-msgstr ""
+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 ""
+msgstr "จำนวน SMS ที่ร้องขอ"
#. Label of the no_of_rows (Int) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "No of Rows (Max 500)"
-msgstr ""
+msgstr "จำนวนแถว (สูงสุด 500)"
#. Label of the no_of_sent_sms (Int) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "No of Sent SMS"
-msgstr ""
+msgstr "จำนวน SMS ที่ส่ง"
#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
-msgstr ""
+msgstr "ไม่มีสิทธิ์สำหรับ {0}"
#: frappe/public/js/frappe/form/form.js:1142
msgctxt "{0} = verb, {1} = object"
msgid "No permission to '{0}' {1}"
-msgstr ""
+msgstr "ไม่มีสิทธิ์ในการ '{0}' {1}"
#: frappe/model/db_query.py:950
msgid "No permission to read {0}"
-msgstr ""
+msgstr "ไม่มีสิทธิ์ในการอ่าน {0}"
#: frappe/share.py:220
msgid "No permission to {0} {1} {2}"
-msgstr ""
+msgstr "ไม่มีสิทธิ์ในการ {0} {1} {2}"
#: frappe/core/doctype/user_permission/user_permission_list.js:175
msgid "No records deleted"
-msgstr ""
+msgstr "ไม่มีบันทึกที่ถูกลบ"
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116
msgid "No records present in {0}"
-msgstr ""
+msgstr "ไม่มีบันทึกใน {0}"
#: frappe/public/js/frappe/list/list_sidebar_stat.html:3
msgid "No records tagged."
-msgstr ""
+msgstr "ไม่มีบันทึกที่ติดแท็ก"
#: frappe/public/js/frappe/data_import/data_exporter.js:225
msgid "No records will be exported"
-msgstr ""
+msgstr "จะไม่มีการส่งออกบันทึก"
#: frappe/public/js/frappe/form/grid.js:66
msgid "No rows"
-msgstr ""
+msgstr "ไม่มีแถว"
#: frappe/email/doctype/notification/notification.py:129
msgid "No subject"
-msgstr ""
+msgstr "ไม่มีหัวข้อ"
#: frappe/www/printview.py:472
msgid "No template found at path: {0}"
-msgstr ""
+msgstr "ไม่พบแม่แบบที่เส้นทาง: {0}"
#: frappe/public/js/frappe/form/controls/multiselect_list.js:262
msgid "No values to show"
-msgstr ""
+msgstr "ไม่มีค่าที่จะแสดง"
#: frappe/website/web_template/discussions/discussions.html:2
msgid "No {0}"
-msgstr ""
+msgstr "ไม่มี {0}"
#: frappe/public/js/frappe/list/list_view_select.js:157
msgid "No {0} Found"
-msgstr ""
+msgstr "ไม่พบ {0}"
#: frappe/public/js/frappe/web_form/web_form_list.js:233
msgid "No {0} found"
-msgstr ""
+msgstr "ไม่พบ {0}"
#: frappe/public/js/frappe/list/list_view.js:494
msgid "No {0} found with matching filters. Clear filters to see all {0}."
-msgstr ""
+msgstr "ไม่พบ {0} ที่ตรงกับตัวกรอง ล้างตัวกรองเพื่อดู {0} ทั้งหมด"
#: frappe/public/js/frappe/views/inbox/inbox_view.js:171
msgid "No {0} mail"
-msgstr ""
+msgstr "ไม่มีจดหมาย {0}"
#: frappe/public/js/form_builder/utils.js:117
#: frappe/public/js/frappe/form/grid_row.js:256
msgctxt "Title of the 'row number' column"
msgid "No."
-msgstr ""
+msgstr "เลขที่"
#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings'
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
msgid "Nomatim"
-msgstr ""
+msgstr "โนมาทิม"
#. Label of the non_negative (Check) field in DocType 'DocField'
#. Label of the non_negative (Check) field in DocType 'Custom Field'
@@ -16811,72 +16811,72 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Non Negative"
-msgstr ""
+msgstr "ไม่ติดลบ"
#: frappe/desk/page/setup_wizard/install_fixtures.py:33
msgid "Non-Conforming"
-msgstr ""
+msgstr "ไม่สอดคล้อง"
#: frappe/public/js/frappe/form/workflow.js:36
msgid "None: End of Workflow"
-msgstr ""
+msgstr "ไม่มี: สิ้นสุดเวิร์กโฟลว์"
#. Label of the normalized_copies (Int) field in DocType 'Recorder Query'
#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Normalized Copies"
-msgstr ""
+msgstr "สำเนาที่ทำให้เป็นมาตรฐาน"
#. Label of the normalized_query (Data) field in DocType 'Recorder Query'
#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Normalized Query"
-msgstr ""
+msgstr "คำสั่งที่ทำให้เป็นมาตรฐาน"
#: frappe/core/doctype/user/user.py:1018
#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269
msgid "Not Allowed"
-msgstr ""
+msgstr "ไม่อนุญาต"
#: frappe/templates/includes/login/login.js:259
msgid "Not Allowed: Disabled User"
-msgstr ""
+msgstr "ไม่อนุญาต: ผู้ใช้ที่ถูกปิดใช้งาน"
#: frappe/public/js/frappe/ui/filters/filter.js:36
msgid "Not Ancestors Of"
-msgstr ""
+msgstr "ไม่ใช่บรรพบุรุษของ"
#: frappe/public/js/frappe/ui/filters/filter.js:34
msgid "Not Descendants Of"
-msgstr ""
+msgstr "ไม่ใช่ลูกหลานของ"
#: frappe/public/js/frappe/ui/filters/filter.js:17
msgid "Not Equals"
-msgstr ""
+msgstr "ไม่เท่ากับ"
#: frappe/app.py:367 frappe/www/404.html:3
msgid "Not Found"
-msgstr ""
+msgstr "ไม่พบ"
#. Label of the not_helpful (Int) field in DocType 'Help Article'
#: frappe/website/doctype/help_article/help_article.json
msgid "Not Helpful"
-msgstr ""
+msgstr "ไม่เป็นประโยชน์"
#: frappe/public/js/frappe/ui/filters/filter.js:21
msgid "Not In"
-msgstr ""
+msgstr "ไม่อยู่ใน"
#: frappe/public/js/frappe/ui/filters/filter.js:19
msgid "Not Like"
-msgstr ""
+msgstr "ไม่เหมือน"
#: frappe/public/js/frappe/form/linked_with.js:45
msgid "Not Linked to any record"
-msgstr ""
+msgstr "ไม่ได้ลิงก์กับบันทึกใด ๆ"
#. Label of the not_nullable (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Not Nullable"
-msgstr ""
+msgstr "ไม่สามารถเป็นค่าว่างได้"
#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
@@ -16885,17 +16885,17 @@ msgstr ""
#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25
#: frappe/www/qrcode.py:37
msgid "Not Permitted"
-msgstr ""
+msgstr "ไม่ได้รับอนุญาต"
#: frappe/desk/query_report.py:542
msgid "Not Permitted to read {0}"
-msgstr ""
+msgstr "ไม่ได้รับอนุญาตให้อ่าน {0}"
#: frappe/website/doctype/blog_post/blog_post_list.js:7
#: frappe/website/doctype/web_form/web_form_list.js:7
#: frappe/website/doctype/web_page/web_page_list.js:7
msgid "Not Published"
-msgstr ""
+msgstr "ไม่ได้เผยแพร่"
#: frappe/public/js/frappe/form/toolbar.js:285
#: frappe/public/js/frappe/form/toolbar.js:813
@@ -16905,11 +16905,11 @@ msgstr ""
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39
#: frappe/website/doctype/web_form/templates/web_form.html:78
msgid "Not Saved"
-msgstr ""
+msgstr "ไม่ได้บันทึก"
#: frappe/core/doctype/error_log/error_log_list.js:7
msgid "Not Seen"
-msgstr ""
+msgstr "ไม่ได้เห็น"
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
@@ -16917,72 +16917,72 @@ msgstr ""
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
-msgstr ""
+msgstr "ไม่ได้ส่ง"
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:219
msgid "Not Set"
-msgstr ""
+msgstr "ไม่ได้ตั้งค่า"
#: frappe/public/js/frappe/ui/filters/filter.js:608
msgctxt "Field value is not set"
msgid "Not Set"
-msgstr ""
+msgstr "ไม่ได้ตั้งค่า"
#: frappe/utils/csvutils.py:102
msgid "Not a valid Comma Separated Value (CSV File)"
-msgstr ""
+msgstr "ไม่ใช่ค่า CSV (ไฟล์ CSV) ที่ถูกต้อง"
#: frappe/core/doctype/user/user.py:265
msgid "Not a valid User Image."
-msgstr ""
+msgstr "ไม่ใช่ภาพผู้ใช้ที่ถูกต้อง"
#: frappe/model/workflow.py:114
msgid "Not a valid Workflow Action"
-msgstr ""
+msgstr "ไม่ใช่การกระทำเวิร์กโฟลว์ที่ถูกต้อง"
#: frappe/templates/includes/login/login.js:255
msgid "Not a valid user"
-msgstr ""
+msgstr "ไม่ใช่ผู้ใช้ที่ถูกต้อง"
#: frappe/workflow/doctype/workflow/workflow_list.js:7
msgid "Not active"
-msgstr ""
+msgstr "ไม่ใช้งาน"
#: frappe/permissions.py:370
msgid "Not allowed for {0}: {1}"
-msgstr ""
+msgstr "ไม่อนุญาตสำหรับ {0}: {1}"
#: frappe/email/doctype/notification/notification.py:595
msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings"
-msgstr ""
+msgstr "ไม่อนุญาตให้แนบเอกสาร {0} โปรดเปิดใช้งานอนุญาตการพิมพ์สำหรับ {0} ในการตั้งค่าการพิมพ์"
#: frappe/core/doctype/doctype/doctype.py:335
msgid "Not allowed to create custom Virtual DocType."
-msgstr ""
+msgstr "ไม่อนุญาตให้สร้าง Virtual DocType ที่กำหนดเอง"
#: frappe/www/printview.py:165
msgid "Not allowed to print cancelled documents"
-msgstr ""
+msgstr "ไม่อนุญาตให้พิมพ์เอกสารที่ถูกยกเลิก"
#: frappe/www/printview.py:162
msgid "Not allowed to print draft documents"
-msgstr ""
+msgstr "ไม่อนุญาตให้พิมพ์เอกสารร่าง"
#: frappe/permissions.py:213
msgid "Not allowed via controller permission check"
-msgstr ""
+msgstr "ไม่อนุญาตผ่านการตรวจสอบสิทธิ์ของตัวควบคุม"
#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94
msgid "Not found"
-msgstr ""
+msgstr "ไม่พบ"
#: frappe/core/doctype/page/page.py:62
msgid "Not in Developer Mode"
-msgstr ""
+msgstr "ไม่ได้อยู่ในโหมดนักพัฒนา"
#: frappe/core/doctype/doctype/doctype.py:330
msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType."
-msgstr ""
+msgstr "ไม่ได้อยู่ในโหมดนักพัฒนา! ตั้งค่าใน site_config.json หรือสร้าง DocType 'Custom'"
#: frappe/core/doctype/system_settings/system_settings.py:215
#: frappe/public/js/frappe/request.js:159
@@ -16992,11 +16992,11 @@ msgstr ""
#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:721
#: frappe/website/js/website.js:97
msgid "Not permitted"
-msgstr ""
+msgstr "ไม่ได้รับอนุญาต"
#: frappe/public/js/frappe/list/list_view.js:50
msgid "Not permitted to view {0}"
-msgstr ""
+msgstr "ไม่ได้รับอนุญาตให้ดู {0}"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
@@ -17004,60 +17004,60 @@ msgstr ""
#: frappe/automation/workspace/tools/tools.json
#: frappe/desk/doctype/note/note.json
msgid "Note"
-msgstr ""
+msgstr "หมายเหตุ"
#. Name of a DocType
#: frappe/desk/doctype/note_seen_by/note_seen_by.json
msgid "Note Seen By"
-msgstr ""
+msgstr "หมายเหตุที่เห็นโดย"
#: frappe/www/confirm_workflow_action.html:8
msgid "Note:"
-msgstr ""
+msgstr "หมายเหตุ:"
#: frappe/public/js/frappe/utils/utils.js:775
msgid "Note: Changing the Page Name will break previous URL to this page."
-msgstr ""
+msgstr "หมายเหตุ: การเปลี่ยนชื่อหน้าจะทำให้ URL ก่อนหน้านี้ไปยังหน้านี้เสีย"
#: frappe/core/doctype/user/user.js:35
msgid "Note: Etc timezones have their signs reversed."
-msgstr ""
+msgstr "หมายเหตุ: เขตเวลา Etc มีสัญลักษณ์กลับด้าน"
#. Description of the 'sb0' (Section Break) field in DocType 'Website
#. Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Note: For best results, images must be of the same size and width must be greater than height."
-msgstr ""
+msgstr "หมายเหตุ: เพื่อผลลัพธ์ที่ดีที่สุด ภาพต้องมีขนาดเท่ากันและความกว้างต้องมากกว่าความสูง"
#. Description of the 'Allow only one session per user' (Check) field in
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Note: Multiple sessions will be allowed in case of mobile device"
-msgstr ""
+msgstr "หมายเหตุ: จะอนุญาตให้มีหลายเซสชันในกรณีของอุปกรณ์มือถือ"
#: frappe/core/doctype/user/user.js:393
msgid "Note: This will be shared with user."
-msgstr ""
+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 ""
+msgstr "หมายเหตุ: คำขอลบบัญชีของคุณจะเสร็จสิ้นภายใน {0} ชั่วโมง"
#: frappe/core/doctype/data_export/exporter.py:183
msgid "Notes:"
-msgstr ""
+msgstr "บันทึก:"
#: frappe/public/js/frappe/ui/notifications/notifications.js:492
msgid "Nothing New"
-msgstr ""
+msgstr "ไม่มีอะไรใหม่"
#: frappe/public/js/frappe/form/undo_manager.js:43
msgid "Nothing left to redo"
-msgstr ""
+msgstr "ไม่มีอะไรเหลือให้ทำซ้ำ"
#: frappe/public/js/frappe/form/undo_manager.js:33
msgid "Nothing left to undo"
-msgstr ""
+msgstr "ไม่มีอะไรเหลือให้ยกเลิก"
#: frappe/public/js/frappe/list/base_list.js:372
#: frappe/public/js/frappe/views/reports/query_report.js:105
@@ -17065,11 +17065,11 @@ msgstr ""
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41
#: frappe/website/doctype/help_article/templates/help_article_list.html:21
msgid "Nothing to show"
-msgstr ""
+msgstr "ไม่มีอะไรที่จะแสดง"
#: frappe/core/doctype/user_permission/user_permission_list.js:129
msgid "Nothing to update"
-msgstr ""
+msgstr "ไม่มีอะไรให้อัปเดต"
#. Label of the notification (Tab Break) field in DocType 'Auto Repeat'
#. Label of a Link in the Tools Workspace
@@ -17079,17 +17079,17 @@ msgstr ""
#: frappe/core/doctype/communication/mixins.py:142
#: frappe/email/doctype/notification/notification.json
msgid "Notification"
-msgstr ""
+msgstr "การแจ้งเตือน"
#. Name of a DocType
#: frappe/desk/doctype/notification_log/notification_log.json
msgid "Notification Log"
-msgstr ""
+msgstr "บันทึกการแจ้งเตือน"
#. Name of a DocType
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Notification Recipient"
-msgstr ""
+msgstr "ผู้รับการแจ้งเตือน"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
@@ -17097,109 +17097,109 @@ msgstr ""
#: frappe/desk/doctype/notification_settings/notification_settings.json
#: frappe/public/js/frappe/ui/notifications/notifications.js:37
msgid "Notification Settings"
-msgstr ""
+msgstr "การตั้งค่าการแจ้งเตือน"
#. Name of a DocType
#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json
msgid "Notification Subscribed Document"
-msgstr ""
+msgstr "เอกสารที่สมัครรับการแจ้งเตือน"
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8
msgid "Notification sent to"
-msgstr ""
+msgstr "การแจ้งเตือนถูกส่งไปยัง"
#: frappe/email/doctype/notification/notification.py:500
msgid "Notification: customer {0} has no Mobile number set"
-msgstr ""
+msgstr "การแจ้งเตือน: ลูกค้า {0} ไม่มีการตั้งหมายเลขมือถือ"
#: frappe/email/doctype/notification/notification.py:486
msgid "Notification: document {0} has no {1} number set (field: {2})"
-msgstr ""
+msgstr "การแจ้งเตือน: เอกสาร {0} ไม่มีการตั้งหมายเลข {1} (ฟิลด์: {2})"
#: frappe/email/doctype/notification/notification.py:495
msgid "Notification: user {0} has no Mobile number set"
-msgstr ""
+msgstr "การแจ้งเตือน: ผู้ใช้ {0} ไม่มีการตั้งหมายเลขมือถือ"
#. Label of the notifications (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
#: frappe/public/js/frappe/ui/notifications/notifications.js:50
#: frappe/public/js/frappe/ui/notifications/notifications.js:187
msgid "Notifications"
-msgstr ""
+msgstr "การแจ้งเตือน"
#: frappe/public/js/frappe/ui/notifications/notifications.js:299
msgid "Notifications Disabled"
-msgstr ""
+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 ""
+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 ""
+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 ""
+msgstr "แจ้งผ่านอีเมล"
#. Label of the notify_by_email (Check) field in DocType 'DocShare'
#: frappe/core/doctype/docshare/docshare.json
msgid "Notify by email"
-msgstr ""
+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 ""
+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 ""
+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 ""
+msgstr "แจ้งผู้ใช้ด้วยป๊อปอัปเมื่อพวกเขาเข้าสู่ระบบ"
#: frappe/public/js/frappe/form/controls/datetime.js:25
#: frappe/public/js/frappe/form/controls/time.js:37
msgid "Now"
-msgstr ""
+msgstr "ตอนนี้"
#. Label of the phone (Data) field in DocType 'Contact Phone'
#: frappe/contacts/doctype/contact_phone/contact_phone.json
msgid "Number"
-msgstr ""
+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 ""
+msgstr "การ์ดตัวเลข"
#. Name of a DocType
#: frappe/desk/doctype/number_card_link/number_card_link.json
msgid "Number Card Link"
-msgstr ""
+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 ""
+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 ""
+msgstr "การ์ดตัวเลข"
#. Label of the number_format (Select) field in DocType 'Language'
#. Label of the number_format (Select) field in DocType 'System Settings'
@@ -17208,59 +17208,59 @@ msgstr ""
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/geo/doctype/currency/currency.json
msgid "Number Format"
-msgstr ""
+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 ""
+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 ""
+msgstr "จำนวนกลุ่ม"
#. Label of the number_of_queries (Int) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "Number of Queries"
-msgstr ""
+msgstr "จำนวนคำสั่ง Query"
#: frappe/core/doctype/doctype/doctype.py:442
#: frappe/public/js/frappe/doctype/index.js:59
msgid "Number of attachment fields are more than {}, limit updated to {}."
-msgstr ""
+msgstr "จำนวนฟิลด์ไฟล์แนบมากกว่า {} ขีดจำกัดอัปเดตเป็น {}"
#: frappe/core/doctype/system_settings/system_settings.py:170
msgid "Number of backups must be greater than zero."
-msgstr ""
+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 ""
+msgstr "จำนวนคอลัมน์สำหรับฟิลด์ในกริด (คอลัมน์ทั้งหมดในกริดควรน้อยกว่า 11)"
#. Description of the 'Columns' (Int) field in DocType 'DocField'
#. Description of the 'Columns' (Int) field in DocType 'Custom Field'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)"
-msgstr ""
+msgstr "จำนวนคอลัมน์สำหรับฟิลด์ในมุมมองรายการหรือกริด (คอลัมน์ทั้งหมดควรน้อยกว่า 11)"
#. Description of the 'Document Share Key Expiry (in Days)' (Int) field in
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Number of days after which the document Web View link shared on email will be expired"
-msgstr ""
+msgstr "จำนวนวันหลังจากนั้นลิงก์ Web View ของเอกสารที่แชร์ในอีเมลจะหมดอายุ"
#. Label of the cache_keys (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Number of keys"
-msgstr ""
+msgstr "จำนวนคีย์"
#. Label of the onsite_backups (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Number of onsite backups"
-msgstr ""
+msgstr "จำนวนการสำรองข้อมูลในสถานที่"
#. Option for the 'Method' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -17489,118 +17489,118 @@ msgstr ""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:264
msgid "Onboarding complete"
-msgstr ""
+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
msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended."
-msgstr ""
+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 ""
+msgstr "เมื่อคุณตั้งค่านี้แล้ว ผู้ใช้จะสามารถเข้าถึงเอกสาร (เช่น บล็อกโพสต์) ที่มีลิงก์อยู่เท่านั้น (เช่น Blogger)"
#: frappe/www/complete_signup.html:7
msgid "One Last Step"
-msgstr ""
+msgstr "ขั้นตอนสุดท้าย"
#: frappe/twofactor.py:278
msgid "One Time Password (OTP) Registration Code from {}"
-msgstr ""
+msgstr "รหัสลงทะเบียนรหัสผ่านครั้งเดียว (OTP) จาก {}"
#: frappe/core/doctype/data_export/exporter.py:331
msgid "One of"
-msgstr ""
+msgstr "หนึ่งใน"
#: frappe/client.py:213
msgid "Only 200 inserts allowed in one request"
-msgstr ""
+msgstr "อนุญาตให้แทรกได้เพียง 200 รายการต่อคำขอหนึ่งครั้ง"
#: frappe/email/doctype/email_queue/email_queue.py:87
msgid "Only Administrator can delete Email Queue"
-msgstr ""
+msgstr "เฉพาะผู้ดูแลระบบเท่านั้นที่สามารถลบคิวอีเมลได้"
#: frappe/core/doctype/page/page.py:66
msgid "Only Administrator can edit"
-msgstr ""
+msgstr "เฉพาะผู้ดูแลระบบเท่านั้นที่สามารถแก้ไขได้"
#: frappe/core/doctype/report/report.py:75
msgid "Only Administrator can save a standard report. Please rename and save."
-msgstr ""
+msgstr "เฉพาะผู้ดูแลระบบเท่านั้นที่สามารถบันทึกรายงานมาตรฐานได้ โปรดเปลี่ยนชื่อและบันทึก"
#: frappe/recorder.py:316
msgid "Only Administrator is allowed to use Recorder"
-msgstr ""
+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 ""
+msgstr "อนุญาตให้แก้ไขเฉพาะสำหรับ"
#: frappe/core/doctype/doctype/doctype.py:1620
msgid "Only Options allowed for Data field are:"
-msgstr ""
+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 ""
+msgstr "ส่งเฉพาะบันทึกที่อัปเดตในช่วง X ชั่วโมงที่ผ่านมา"
#: frappe/desk/doctype/workspace/workspace.js:32
msgid "Only Workspace Manager can edit public workspaces"
-msgstr ""
+msgstr "เฉพาะผู้จัดการพื้นที่ทำงานเท่านั้นที่สามารถแก้ไขพื้นที่ทำงานสาธารณะได้"
#: frappe/modules/utils.py:65
msgid "Only allowed to export customizations in developer mode"
-msgstr ""
+msgstr "อนุญาตให้ส่งออกการปรับแต่งในโหมดนักพัฒนาเท่านั้น"
#: frappe/model/document.py:1231
msgid "Only draft documents can be discarded"
-msgstr ""
+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 ""
+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 ""
+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 ""
+msgstr "สามารถตั้งค่า {0} ได้เพียงหนึ่งรายการเป็นหลัก"
#: frappe/desk/reportview.py:357
msgid "Only reports of type Report Builder can be deleted"
-msgstr ""
+msgstr "สามารถลบรายงานประเภท Report Builder ได้เท่านั้น"
#: frappe/desk/reportview.py:328
msgid "Only reports of type Report Builder can be edited"
-msgstr ""
+msgstr "สามารถแก้ไขรายงานประเภท Report Builder ได้เท่านั้น"
#: frappe/custom/doctype/customize_form/customize_form.py:128
msgid "Only standard DocTypes are allowed to be customized from Customize Form."
-msgstr ""
+msgstr "อนุญาตให้ปรับแต่งเฉพาะ DocTypes มาตรฐานจากฟอร์มที่กำหนดเอง"
#: frappe/model/delete_doc.py:240
msgid "Only the Administrator can delete a standard DocType."
-msgstr ""
+msgstr "เฉพาะผู้ดูแลระบบเท่านั้นที่สามารถลบ DocType มาตรฐานได้"
#: frappe/desk/form/assign_to.py:198
msgid "Only the assignee can complete this to-do."
-msgstr ""
+msgstr "เฉพาะผู้รับมอบหมายเท่านั้นที่สามารถทำสิ่งที่ต้องทำนี้ให้เสร็จสิ้น"
#: frappe/email/doctype/auto_email_report/auto_email_report.py:106
msgid "Only {0} emailed reports are allowed per user."
-msgstr ""
+msgstr "อนุญาตเฉพาะรายงานที่ส่งทางอีเมล {0} ต่อผู้ใช้หนึ่งราย"
#: frappe/templates/includes/login/login.js:291
msgid "Oops! Something went wrong."
-msgstr ""
+msgstr "อุ๊ปส์! มีบางอย่างผิดพลาด"
#. Option for the 'Status' (Select) field in DocType 'Contact'
#. Option for the 'Status' (Select) field in DocType 'Communication'
@@ -17729,43 +17729,43 @@ msgstr ""
#: frappe/utils/data.py:2117
msgid "Operator must be one of {0}"
-msgstr ""
+msgstr "ผู้ปฏิบัติงานต้องเป็นหนึ่งใน {0}"
#: frappe/core/doctype/file/file.js:34
#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:8
#: frappe/public/js/frappe/file_uploader/FilePreview.vue:28
msgid "Optimize"
-msgstr ""
+msgstr "เพิ่มประสิทธิภาพ"
#: frappe/core/doctype/file/file.js:105
msgid "Optimizing image..."
-msgstr ""
+msgstr "กำลังเพิ่มประสิทธิภาพภาพ..."
#: frappe/custom/doctype/custom_field/custom_field.js:100
msgid "Option 1"
-msgstr ""
+msgstr "ตัวเลือก 1"
#: frappe/custom/doctype/custom_field/custom_field.js:102
msgid "Option 2"
-msgstr ""
+msgstr "ตัวเลือก 2"
#: frappe/custom/doctype/custom_field/custom_field.js:104
msgid "Option 3"
-msgstr ""
+msgstr "ตัวเลือก 3"
#: frappe/core/doctype/doctype/doctype.py:1638
msgid "Option {0} for field {1} is not a child table"
-msgstr ""
+msgstr "ตัวเลือก {0} สำหรับฟิลด์ {1} ไม่ใช่ตารางลูก"
#. Description of the 'CC' (Code) field in DocType 'Notification Recipient'
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Optional: Always send to these ids. Each Email Address on a new row"
-msgstr ""
+msgstr "ไม่บังคับ: ส่งเสมอไปยัง ID เหล่านี้ แต่ละที่อยู่อีเมลในแถวใหม่"
#. Description of the 'Condition' (Code) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Optional: The alert will be sent if this expression is true"
-msgstr ""
+msgstr "ไม่บังคับ: การแจ้งเตือนจะถูกส่งหากนิพจน์นี้เป็นจริง"
#. Label of the options (Small Text) field in DocType 'DocField'
#. Label of the options (Data) field in DocType 'Report Column'
@@ -17783,69 +17783,69 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Options"
-msgstr ""
+msgstr "ตัวเลือก"
#: frappe/core/doctype/doctype/doctype.py:1366
msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'"
-msgstr ""
+msgstr "ตัวเลือกประเภทฟิลด์ 'Dynamic Link' ต้องชี้ไปยังฟิลด์ลิงก์อื่นที่มีตัวเลือกเป็น 'DocType'"
#. Label of the options_help (HTML) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Options Help"
-msgstr ""
+msgstr "ตัวเลือกช่วยเหลือ"
#: frappe/core/doctype/doctype/doctype.py:1660
msgid "Options for Rating field can range from 3 to 10"
-msgstr ""
+msgstr "ตัวเลือกสำหรับฟิลด์การให้คะแนนสามารถอยู่ในช่วง 3 ถึง 10"
#: frappe/custom/doctype/custom_field/custom_field.js:96
msgid "Options for select. Each option on a new line."
-msgstr ""
+msgstr "ตัวเลือกสำหรับการเลือก แต่ละตัวเลือกในบรรทัดใหม่"
#: frappe/core/doctype/doctype/doctype.py:1383
msgid "Options for {0} must be set before setting the default value."
-msgstr ""
+msgstr "ต้องตั้งค่าตัวเลือกสำหรับ {0} ก่อนตั้งค่าค่าเริ่มต้น"
#: frappe/public/js/form_builder/store.js:182
msgid "Options is required for field {0} of type {1}"
-msgstr ""
+msgstr "ต้องการตัวเลือกสำหรับฟิลด์ {0} ประเภท {1}"
#: frappe/model/base_document.py:871
msgid "Options not set for link field {0}"
-msgstr ""
+msgstr "ไม่ได้ตั้งค่าตัวเลือกสำหรับฟิลด์ลิงก์ {0}"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Orange"
-msgstr ""
+msgstr "สีส้ม"
#. Label of the order (Code) field in DocType 'Kanban Board Column'
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Order"
-msgstr ""
+msgstr "คำสั่งซื้อ"
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Org History"
-msgstr ""
+msgstr "ประวัติองค์กร"
#. 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 ""
+msgstr "หัวข้อประวัติองค์กร"
#: frappe/public/js/frappe/form/print_utils.js:28
msgid "Orientation"
-msgstr ""
+msgstr "การวางแนว"
#: frappe/core/doctype/version/version_view.html:13
#: frappe/core/doctype/version/version_view.html:75
msgid "Original Value"
-msgstr ""
+msgstr "มูลค่าต้นฉบับ"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#. Option for the 'Type' (Select) field in DocType 'Communication'
@@ -17857,41 +17857,41 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/desk/page/setup_wizard/install_fixtures.py:30
msgid "Other"
-msgstr ""
+msgstr "อื่นๆ"
#. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Outgoing"
-msgstr ""
+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 ""
+msgstr "การตั้งค่าขาออก (SMTP)"
#. Label of the outgoing_emails_column (Column Break) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Outgoing Emails (Last 7 days)"
-msgstr ""
+msgstr "อีเมลขาออก (7 วันที่ผ่านมา)"
#. Label of the smtp_server (Data) field in DocType 'Email Account'
#. Label of the smtp_server (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Outgoing Server"
-msgstr ""
+msgstr "เซิร์ฟเวอร์ขาออก"
#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email
#. Domain'
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Outgoing Settings"
-msgstr ""
+msgstr "การตั้งค่าขาออก"
#: frappe/email/doctype/email_domain/email_domain.py:33
msgid "Outgoing email account not correct"
-msgstr ""
+msgstr "บัญชีอีเมลขาออกไม่ถูกต้อง"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -17905,20 +17905,20 @@ msgstr ""
#: frappe/desk/doctype/system_console/system_console.json
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Output"
-msgstr ""
+msgstr "ผลลัพธ์"
#: frappe/public/js/frappe/form/templates/form_dashboard.html:5
msgid "Overview"
-msgstr ""
+msgstr "ภาพรวม"
#: frappe/core/report/transaction_log_report/transaction_log_report.py:100
msgid "Owner"
-msgstr ""
+msgstr "เจ้าของ"
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "PATCH"
-msgstr ""
+msgstr "แพตช์"
#: frappe/printing/page/print/print.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:44
@@ -17928,44 +17928,44 @@ msgstr ""
#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191
msgid "PDF Generation in Progress"
-msgstr ""
+msgstr "กำลังสร้าง PDF"
#. Label of the pdf_generator (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "PDF Generator"
-msgstr ""
+msgstr "ตัวสร้าง PDF"
#. Label of the pdf_page_height (Float) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Height (in mm)"
-msgstr ""
+msgstr "ความสูงหน้าของ PDF (เป็นมม.)"
#. Label of the pdf_page_size (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Size"
-msgstr ""
+msgstr "ขนาดหน้าของ PDF"
#. Label of the pdf_page_width (Float) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Page Width (in mm)"
-msgstr ""
+msgstr "ความกว้างหน้าของ PDF (เป็นมม.)"
#. Label of the pdf_settings (Section Break) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "PDF Settings"
-msgstr ""
+msgstr "การตั้งค่า PDF"
#: frappe/utils/print_format.py:289
msgid "PDF generation failed"
-msgstr ""
+msgstr "การสร้าง PDF ล้มเหลว"
#: frappe/utils/pdf.py:106
msgid "PDF generation failed because of broken image links"
-msgstr ""
+msgstr "การสร้าง PDF ล้มเหลวเนื่องจากลิงก์ภาพเสีย"
#: frappe/printing/page/print/print.js:616
msgid "PDF generation may not work as expected."
-msgstr ""
+msgstr "การสร้าง PDF อาจไม่ทำงานตามที่คาดไว้"
#: frappe/printing/page/print/print.js:534
msgid "PDF printing via \"Raw Print\" is not supported."
@@ -17999,24 +17999,24 @@ msgstr ""
#: frappe/core/doctype/package_release/package_release.json
#: frappe/core/workspace/build/build.json frappe/www/attribution.html:34
msgid "Package"
-msgstr ""
+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 ""
+msgstr "นำเข้าแพ็คเกจ"
#. Label of the package_name (Data) field in DocType 'Package'
#: frappe/core/doctype/package/package.json
msgid "Package Name"
-msgstr ""
+msgstr "ชื่อแพ็คเกจ"
#. Name of a DocType
#: frappe/core/doctype/package_release/package_release.json
msgid "Package Release"
-msgstr ""
+msgstr "การปล่อยแพ็คเกจ"
#. Label of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
@@ -18048,89 +18048,89 @@ msgstr ""
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Page"
-msgstr ""
+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 ""
+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 ""
+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 ""
+msgstr "บล็อกการสร้างหน้า"
#. Label of the page_html (Section Break) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "Page HTML"
-msgstr ""
+msgstr "HTML ของหน้า"
#: frappe/public/js/frappe/list/bulk_operations.js:73
msgid "Page Height (in mm)"
-msgstr ""
+msgstr "ความสูงของหน้า (เป็นมม.)"
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:5
msgid "Page Margins"
-msgstr ""
+msgstr "ขอบหน้ากระดาษ"
#. Label of the page_name (Data) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "Page Name"
-msgstr ""
+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 ""
+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 ""
+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 ""
+msgstr "การตั้งค่าหน้า"
#: frappe/public/js/frappe/ui/keyboard.js:125
msgid "Page Shortcuts"
-msgstr ""
+msgstr "ทางลัดหน้า"
#: frappe/public/js/frappe/list/bulk_operations.js:66
msgid "Page Size"
-msgstr ""
+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 ""
+msgstr "ชื่อเรื่องหน้า"
#: frappe/public/js/frappe/list/bulk_operations.js:80
msgid "Page Width (in mm)"
-msgstr ""
+msgstr "ความกว้างของหน้า (เป็นมม.)"
#: frappe/www/qrcode.py:35
msgid "Page has expired!"
-msgstr ""
+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 ""
+msgstr "ความสูงและความกว้างของหน้าไม่สามารถเป็นศูนย์ได้"
#: frappe/public/js/frappe/views/container.js:52 frappe/www/404.html:23
msgid "Page not found"
-msgstr ""
+msgstr "ไม่พบหน้า"
#. Description of a DocType
#: frappe/website/doctype/web_page/web_page.json
@@ -18142,123 +18142,123 @@ msgstr ""
#: frappe/public/js/frappe/web_form/web_form.js:264
#: frappe/templates/print_formats/standard.html:34
msgid "Page {0} of {1}"
-msgstr ""
+msgstr "หน้า {0} จาก {1}"
#. Label of the parameter (Data) field in DocType 'SMS Parameter'
#: frappe/core/doctype/sms_parameter/sms_parameter.json
msgid "Parameter"
-msgstr ""
+msgstr "พารามิเตอร์"
#: frappe/public/js/frappe/model/model.js:142
#: frappe/public/js/frappe/views/workspace/workspace.js:434
msgid "Parent"
-msgstr ""
+msgstr "ผู้ปกครอง"
#. Label of the parent_doctype (Link) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Parent DocType"
-msgstr ""
+msgstr "DocType ผู้ปกครอง"
#. Label of the parent_document_type (Link) field in DocType 'Dashboard Chart'
#. Label of the parent_document_type (Link) field in DocType 'Number Card'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "Parent Document Type"
-msgstr ""
+msgstr "ประเภทเอกสารผู้ปกครอง"
#: frappe/desk/doctype/number_card/number_card.py:65
msgid "Parent Document Type is required to create a number card"
-msgstr ""
+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 ""
+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 ""
+msgstr "ฟิลด์ผู้ปกครอง"
#. Label of the nsm_parent_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/doctype/doctype.py:933
msgid "Parent Field (Tree)"
-msgstr ""
+msgstr "ฟิลด์ผู้ปกครอง (ต้นไม้)"
#: frappe/core/doctype/doctype/doctype.py:939
msgid "Parent Field must be a valid fieldname"
-msgstr ""
+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 ""
+msgstr "ป้ายผู้ปกครอง"
#: frappe/core/doctype/doctype/doctype.py:1197
msgid "Parent Missing"
-msgstr ""
+msgstr "ผู้ปกครองหายไป"
#. Label of the parent_page (Link) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Parent Page"
-msgstr ""
+msgstr "หน้าผู้ปกครอง"
#: frappe/core/doctype/data_export/exporter.py:24
msgid "Parent Table"
-msgstr ""
+msgstr "ตารางผู้ปกครอง"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:404
msgid "Parent document type is required to create a dashboard chart"
-msgstr ""
+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 ""
+msgstr "ผู้ปกครองคือชื่อของเอกสารที่ข้อมูลจะถูกเพิ่มเข้าไป"
#: frappe/public/js/frappe/ui/group_by/group_by.js:251
msgid "Parent-to-child or child-to-parent grouping is not allowed."
-msgstr ""
+msgstr "ไม่อนุญาตให้จัดกลุ่มจากผู้ปกครองถึงลูกหรือจากลูกถึงผู้ปกครอง"
#: frappe/permissions.py:807
msgid "Parentfield not specified in {0}: {1}"
-msgstr ""
+msgstr "ไม่ได้ระบุฟิลด์ผู้ปกครองใน {0}: {1}"
#: frappe/client.py:467
msgid "Parenttype, Parent and Parentfield are required to insert a child record"
-msgstr ""
+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 ""
+msgstr "บางส่วน"
#. Option for the 'Status' (Select) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Partial Success"
-msgstr ""
+msgstr "สำเร็จบางส่วน"
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Partially Sent"
-msgstr ""
+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 ""
+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 ""
+msgstr "ผ่าน"
#. Option for the 'Status' (Select) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Passive"
-msgstr ""
+msgstr "ไม่กระตือรือร้น"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the password_settings (Section Break) field in DocType 'System
@@ -18279,93 +18279,93 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/www/login.html:22
msgid "Password"
-msgstr ""
+msgstr "รหัสผ่าน"
#: frappe/core/doctype/user/user.py:1081
msgid "Password Email Sent"
-msgstr ""
+msgstr "ส่งอีเมลรหัสผ่านแล้ว"
#: frappe/core/doctype/user/user.py:458
msgid "Password Reset"
-msgstr ""
+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 ""
+msgstr "ขีดจำกัดการสร้างลิงก์รีเซ็ตรหัสผ่าน"
#: frappe/public/js/frappe/form/grid_row.js:880
msgid "Password cannot be filtered"
-msgstr ""
+msgstr "ไม่สามารถกรองรหัสผ่านได้"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:357
msgid "Password changed successfully."
-msgstr ""
+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 ""
+msgstr "รหัสผ่านสำหรับ Base DN"
#: frappe/email/doctype/email_account/email_account.py:189
msgid "Password is required or select Awaiting Password"
-msgstr ""
+msgstr "ต้องการรหัสผ่านหรือเลือกกำลังรอรหัสผ่าน"
#: frappe/public/js/frappe/desk.js:212
msgid "Password missing in Email Account"
-msgstr ""
+msgstr "ไม่มีรหัสผ่านในบัญชีอีเมล"
#: frappe/utils/password.py:47
msgid "Password not found for {0} {1} {2}"
-msgstr ""
+msgstr "ไม่พบรหัสผ่านสำหรับ {0} {1} {2}"
#: frappe/core/doctype/user/user.py:1080
msgid "Password reset instructions have been sent to {}'s email"
-msgstr ""
+msgstr "คำแนะนำการรีเซ็ตรหัสผ่านถูกส่งไปยังอีเมลของ {} แล้ว"
#: frappe/www/update-password.html:166
msgid "Password set"
-msgstr ""
+msgstr "ตั้งค่ารหัสผ่านแล้ว"
#: frappe/auth.py:258
msgid "Password size exceeded the maximum allowed size"
-msgstr ""
+msgstr "ขนาดรหัสผ่านเกินขนาดสูงสุดที่อนุญาต"
#: frappe/core/doctype/user/user.py:871
msgid "Password size exceeded the maximum allowed size."
-msgstr ""
+msgstr "ขนาดรหัสผ่านเกินขนาดสูงสุดที่อนุญาต"
#: frappe/www/update-password.html:80
msgid "Passwords do not match"
-msgstr ""
+msgstr "รหัสผ่านไม่ตรงกัน"
#: frappe/core/doctype/user/user.js:205
msgid "Passwords do not match!"
-msgstr ""
+msgstr "รหัสผ่านไม่ตรงกัน!"
#: frappe/email/doctype/newsletter/newsletter.py:157
msgid "Past dates are not allowed for Scheduling."
-msgstr ""
+msgstr "ไม่อนุญาตให้ใช้วันที่ที่ผ่านมาในการกำหนดเวลา"
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
-msgstr ""
+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 ""
+msgstr "แพตช์"
#. Name of a DocType
#: frappe/core/doctype/patch_log/patch_log.json
msgid "Patch Log"
-msgstr ""
+msgstr "บันทึกแพตช์"
#: frappe/modules/patch_handler.py:136
msgid "Patch type {} not found in patches.txt"
-msgstr ""
+msgstr "ไม่พบประเภทแพตช์ {} ใน patches.txt"
#. Label of the path (Data) field in DocType 'API Request Log'
#. Label of the path (Small Text) field in DocType 'Package Release'
@@ -18379,32 +18379,32 @@ msgstr ""
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:35
msgid "Path"
-msgstr ""
+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 ""
+msgstr "เส้นทางไปยังไฟล์ CA Certs"
#. Label of the local_server_certificate_file (Data) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Path to Server Certificate"
-msgstr ""
+msgstr "เส้นทางไปยังใบรับรองเซิร์ฟเวอร์"
#. Label of the local_private_key_file (Data) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "Path to private Key File"
-msgstr ""
+msgstr "เส้นทางไปยังไฟล์คีย์ส่วนตัว"
#: frappe/website/path_resolver.py:208
msgid "Path {0} it not a valid path"
-msgstr ""
+msgstr "เส้นทาง {0} ไม่ใช่เส้นทางที่ถูกต้อง"
#. Label of the payload_count (Int) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Payload Count"
-msgstr ""
+msgstr "จำนวนเพย์โหลด"
#. Label of the peak_memory_usage (Int) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
@@ -18478,43 +18478,43 @@ msgstr ""
#: frappe/public/js/frappe/form/form.js:1028
msgid "Permanently Cancel {0}?"
-msgstr ""
+msgstr "ยกเลิก {0} อย่างถาวร?"
#: frappe/public/js/frappe/form/form.js:1074
msgid "Permanently Discard {0}?"
-msgstr ""
+msgstr "ทิ้ง {0} อย่างถาวร?"
#: frappe/public/js/frappe/form/form.js:861
msgid "Permanently Submit {0}?"
-msgstr ""
+msgstr "ส่ง {0} อย่างถาวร?"
#: frappe/public/js/frappe/model/model.js:684
msgid "Permanently delete {0}?"
-msgstr ""
+msgstr "ลบ {0} อย่างถาวร?"
#: frappe/core/doctype/user_type/user_type.py:84
msgid "Permission Error"
-msgstr ""
+msgstr "ข้อผิดพลาดในการอนุญาต"
#. Name of a DocType
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "Permission Inspector"
-msgstr ""
+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 ""
+msgstr "ระดับการอนุญาต"
#: frappe/core/page/permission_manager/permission_manager_help.html:22
msgid "Permission Levels"
-msgstr ""
+msgstr "ระดับการอนุญาต"
#. Name of a DocType
#: frappe/core/doctype/permission_log/permission_log.json
msgid "Permission Log"
-msgstr ""
+msgstr "บันทึกการอนุญาต"
#. Label of a shortcut in the Users Workspace
#: frappe/core/workspace/users/users.json
@@ -18524,18 +18524,18 @@ msgstr ""
#. Option for the 'Script Type' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/server_script/server_script.json
msgid "Permission Query"
-msgstr ""
+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 ""
+msgstr "กฎการอนุญาต"
#. Label of the permission_type (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "Permission Type"
-msgstr ""
+msgstr "ประเภทการอนุญาต"
#. Label of the section_break_4 (Section Break) field in DocType 'Custom
#. DocPerm'
@@ -18558,65 +18558,65 @@ msgstr ""
#: frappe/core/workspace/users/users.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Permissions"
-msgstr ""
+msgstr "การอนุญาต"
#: frappe/core/doctype/doctype/doctype.py:1834
#: frappe/core/doctype/doctype/doctype.py:1844
msgid "Permissions Error"
-msgstr ""
+msgstr "ข้อผิดพลาดในการอนุญาต"
#: frappe/core/page/permission_manager/permission_manager_help.html:10
msgid "Permissions are automatically applied to Standard Reports and searches."
-msgstr ""
+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 ""
+msgstr "การอนุญาตถูกตั้งค่าในบทบาทและประเภทเอกสาร (เรียกว่า DocTypes) โดยการตั้งค่าการเข้าถึง เช่น อ่าน, เขียน, สร้าง, ลบ, ส่ง, ยกเลิก, แก้ไข, รายงาน, นำเข้า, ส่งออก, พิมพ์, อีเมล และตั้งค่าการอนุญาตผู้ใช้"
#: frappe/core/page/permission_manager/permission_manager_help.html:26
msgid "Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles."
-msgstr ""
+msgstr "การอนุญาตในระดับที่สูงขึ้นคือการอนุญาตระดับฟิลด์ ฟิลด์ทั้งหมดมีการตั้งค่าระดับการอนุญาต และกฎที่กำหนดไว้ในระดับการอนุญาตนั้นจะถูกนำไปใช้กับฟิลด์ ซึ่งมีประโยชน์ในกรณีที่คุณต้องการซ่อนหรือทำให้ฟิลด์บางฟิลด์เป็นแบบอ่านอย่างเดียวสำหรับบทบาทบางบทบาท"
#: frappe/core/page/permission_manager/permission_manager_help.html:24
msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document."
-msgstr ""
+msgstr "การอนุญาตในระดับ 0 คือการอนุญาตระดับเอกสาร กล่าวคือ เป็นการอนุญาตหลักสำหรับการเข้าถึงเอกสาร"
#: frappe/core/page/permission_manager/permission_manager_help.html:6
msgid "Permissions get applied on Users based on what Roles they are assigned."
-msgstr ""
+msgstr "การอนุญาตถูกนำไปใช้กับผู้ใช้ตามบทบาทที่ได้รับมอบหมาย"
#. Name of a report
#. Label of a Link in the Users Workspace
#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.json
#: frappe/core/workspace/users/users.json
msgid "Permitted Documents For User"
-msgstr ""
+msgstr "เอกสารที่อนุญาตสำหรับผู้ใช้"
#. Label of the permitted_roles (Table MultiSelect) field in DocType 'Workflow
#. Action'
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Permitted Roles"
-msgstr ""
+msgstr "บทบาทที่อนุญาต"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Personal"
-msgstr ""
+msgstr "ส่วนตัว"
#. Name of a DocType
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json
msgid "Personal Data Deletion Request"
-msgstr ""
+msgstr "คำขอลบข้อมูลส่วนตัว"
#. Name of a DocType
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
msgid "Personal Data Deletion Step"
-msgstr ""
+msgstr "ขั้นตอนการลบข้อมูลส่วนตัว"
#. Name of a DocType
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
msgid "Personal Data Download Request"
-msgstr ""
+msgstr "คำขอดาวน์โหลดข้อมูลส่วนตัว"
#. Label of the phone (Data) field in DocType 'Address'
#. Label of the phone (Data) field in DocType 'Contact'
@@ -18637,39 +18637,39 @@ msgstr ""
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Phone"
-msgstr ""
+msgstr "โทรศัพท์"
#. Label of the phone_no (Data) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Phone No."
-msgstr ""
+msgstr "หมายเลขโทรศัพท์"
#: frappe/utils/__init__.py:121
msgid "Phone Number {0} set in field {1} is not valid."
-msgstr ""
+msgstr "หมายเลขโทรศัพท์ {0} ที่ตั้งค่าในฟิลด์ {1} ไม่ถูกต้อง"
#: frappe/public/js/frappe/form/print_utils.js:40
#: frappe/public/js/frappe/views/reports/report_view.js:1579
#: frappe/public/js/frappe/views/reports/report_view.js:1582
msgid "Pick Columns"
-msgstr ""
+msgstr "เลือกคอลัมน์"
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Pie"
-msgstr ""
+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 ""
+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 ""
+msgstr "สีชมพู"
#. Label of the placeholder (Data) field in DocType 'DocField'
#. Label of the placeholder (Data) field in DocType 'Custom Field'
@@ -18678,77 +18678,77 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Placeholder"
-msgstr ""
+msgstr "ตัวแทนข้อความ"
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Plain Text"
-msgstr ""
+msgstr "ข้อความธรรมดา"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Plant"
-msgstr ""
+msgstr "โรงงาน"
#: frappe/email/doctype/email_account/email_account.py:544
msgid "Please Authorize OAuth for Email Account {0}"
-msgstr ""
+msgstr "โปรดยืนยัน OAuth สำหรับบัญชีอีเมล {0}"
#: frappe/email/oauth.py:29
msgid "Please Authorize OAuth for Email Account {}"
-msgstr ""
+msgstr "โปรดยืนยัน OAuth สำหรับบัญชีอีเมล {}"
#: frappe/website/doctype/website_theme/website_theme.py:77
msgid "Please Duplicate this Website Theme to customize."
-msgstr ""
+msgstr "โปรดทำสำเนาธีมเว็บไซต์นี้เพื่อปรับแต่ง"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:162
msgid "Please Install the ldap3 library via pip to use ldap functionality."
-msgstr ""
+msgstr "โปรดติดตั้งไลบรารี ldap3 ผ่าน pip เพื่อใช้ฟังก์ชัน ldap"
#: frappe/public/js/frappe/views/reports/query_report.js:307
msgid "Please Set Chart"
-msgstr ""
+msgstr "โปรดตั้งค่าแผนภูมิ"
#: frappe/core/doctype/sms_settings/sms_settings.py:84
msgid "Please Update SMS Settings"
-msgstr ""
+msgstr "โปรดอัปเดตการตั้งค่า SMS"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582
msgid "Please add a subject to your email"
-msgstr ""
+msgstr "โปรดเพิ่มหัวข้อในอีเมลของคุณ"
#: frappe/templates/includes/comments/comments.html:168
msgid "Please add a valid comment."
-msgstr ""
+msgstr "โปรดเพิ่มความคิดเห็นที่ถูกต้อง"
#: frappe/core/doctype/user/user.py:1063
msgid "Please ask your administrator to verify your sign-up"
-msgstr ""
+msgstr "โปรดขอให้ผู้ดูแลระบบของคุณตรวจสอบการลงทะเบียนของคุณ"
#: frappe/public/js/frappe/form/controls/select.js:101
msgid "Please attach a file first."
-msgstr ""
+msgstr "โปรดแนบไฟล์ก่อน"
#: frappe/printing/doctype/letter_head/letter_head.py:76
msgid "Please attach an image file to set HTML for Footer."
-msgstr ""
+msgstr "โปรดแนบไฟล์ภาพเพื่อกำหนด HTML สำหรับส่วนท้าย"
#: frappe/printing/doctype/letter_head/letter_head.py:64
msgid "Please attach an image file to set HTML for Letter Head."
-msgstr ""
+msgstr "โปรดแนบไฟล์ภาพเพื่อกำหนด HTML สำหรับหัวจดหมาย"
#: frappe/core/doctype/package_import/package_import.py:39
msgid "Please attach the package"
-msgstr ""
+msgstr "โปรดแนบแพ็คเกจ"
#: frappe/integrations/doctype/connected_app/connected_app.js:19
msgid "Please check OpenID Configuration URL"
-msgstr ""
+msgstr "โปรดตรวจสอบ URL การกำหนดค่า OpenID"
#: frappe/utils/dashboard.py:58
msgid "Please check the filter values set for Dashboard Chart: {}"
-msgstr ""
+msgstr "โปรดตรวจสอบค่าตัวกรองที่ตั้งค่าสำหรับแผนภูมิแดชบอร์ด: {}"
#: frappe/model/base_document.py:951
msgid "Please check the value of \"Fetch From\" set for field {0}"
@@ -18756,63 +18756,63 @@ msgstr ""
#: frappe/core/doctype/user/user.py:1061
msgid "Please check your email for verification"
-msgstr ""
+msgstr "โปรดตรวจสอบอีเมลของคุณเพื่อการยืนยัน"
#: frappe/email/smtp.py:134
msgid "Please check your email login credentials."
-msgstr ""
+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 ""
+msgstr "โปรดตรวจสอบที่อยู่อีเมลที่ลงทะเบียนของคุณสำหรับคำแนะนำเกี่ยวกับวิธีดำเนินการต่อ อย่าปิดหน้าต่างนี้เนื่องจากคุณจะต้องกลับมาที่นี่"
#: frappe/desk/doctype/workspace/workspace.js:23
msgid "Please click Edit on the Workspace for best results"
-msgstr ""
+msgstr "โปรดคลิกแก้ไขในพื้นที่ทำงานเพื่อผลลัพธ์ที่ดีที่สุด"
#: frappe/core/doctype/data_import/data_import.js:158
msgid "Please click on 'Export Errored Rows', fix the errors and import again."
-msgstr ""
+msgstr "โปรดคลิกที่ 'ส่งออกแถวที่มีข้อผิดพลาด' แก้ไขข้อผิดพลาดและนำเข้าอีกครั้ง"
#: frappe/twofactor.py:286
msgid "Please click on the following link and follow the instructions on the page. {0}"
-msgstr ""
+msgstr "โปรดคลิกที่ลิงก์ต่อไปนี้และทำตามคำแนะนำในหน้า {0}"
#: frappe/templates/emails/password_reset.html:2
msgid "Please click on the following link to set your new password"
-msgstr ""
+msgstr "โปรดคลิกที่ลิงก์ต่อไปนี้เพื่อกำหนดรหัสผ่านใหม่ของคุณ"
#: frappe/www/confirm_workflow_action.html:4
msgid "Please confirm your action to {0} this document."
-msgstr ""
+msgstr "โปรดยืนยันการกระทำของคุณเพื่อ {0} เอกสารนี้"
#: frappe/printing/page/print/print.js:618
msgid "Please contact your system manager to install correct version."
-msgstr ""
+msgstr "โปรดติดต่อผู้จัดการระบบของคุณเพื่อติดตั้งเวอร์ชันที่ถูกต้อง"
#: frappe/desk/doctype/number_card/number_card.js:44
msgid "Please create Card first"
-msgstr ""
+msgstr "โปรดสร้างการ์ดก่อน"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:42
msgid "Please create chart first"
-msgstr ""
+msgstr "โปรดสร้างแผนภูมิก่อน"
#: frappe/desk/form/meta.py:190
msgid "Please delete the field from {0} or add the required doctype."
-msgstr ""
+msgstr "โปรดลบฟิลด์จาก {0} หรือเพิ่มประเภทเอกสารที่ต้องการ"
#: frappe/core/doctype/data_export/exporter.py:184
msgid "Please do not change the template headings."
-msgstr ""
+msgstr "โปรดอย่าเปลี่ยนหัวข้อแม่แบบ"
#: frappe/printing/doctype/print_format/print_format.js:18
msgid "Please duplicate this to make changes"
-msgstr ""
+msgstr "โปรดทำสำเนานี้เพื่อทำการเปลี่ยนแปลง"
#: frappe/core/doctype/system_settings/system_settings.py:163
msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login."
-msgstr ""
+msgstr "โปรดเปิดใช้งานคีย์เข้าสู่ระบบโซเชียลอย่างน้อยหนึ่งคีย์หรือ LDAP หรือเข้าสู่ระบบด้วยลิงก์อีเมลก่อนปิดใช้งานการเข้าสู่ระบบด้วยชื่อผู้ใช้/รหัสผ่าน"
#: frappe/desk/doctype/notification_log/notification_log.js:45
#: frappe/email/doctype/auto_email_report/auto_email_report.js:17
@@ -18821,272 +18821,272 @@ msgstr ""
#: frappe/public/js/frappe/list/bulk_operations.js:161
#: frappe/public/js/frappe/utils/utils.js:1431
msgid "Please enable pop-ups"
-msgstr ""
+msgstr "โปรดเปิดใช้งานป๊อปอัป"
#: frappe/public/js/frappe/microtemplate.js:162
#: frappe/public/js/frappe/microtemplate.js:177
msgid "Please enable pop-ups in your browser"
-msgstr ""
+msgstr "โปรดเปิดใช้งานป๊อปอัปในเบราว์เซอร์ของคุณ"
#: frappe/integrations/google_oauth.py:55
msgid "Please enable {} before continuing."
-msgstr ""
+msgstr "โปรดเปิดใช้งาน {} ก่อนดำเนินการต่อ"
#: frappe/utils/oauth.py:191
msgid "Please ensure that your profile has an email address"
-msgstr ""
+msgstr "โปรดตรวจสอบว่าโปรไฟล์ของคุณมีที่อยู่อีเมล"
#: frappe/integrations/doctype/social_login_key/social_login_key.py:82
msgid "Please enter Access Token URL"
-msgstr ""
+msgstr "โปรดป้อน URL โทเค็นการเข้าถึง"
#: frappe/integrations/doctype/social_login_key/social_login_key.py:80
msgid "Please enter Authorize URL"
-msgstr ""
+msgstr "โปรดป้อน URL การอนุญาต"
#: frappe/integrations/doctype/social_login_key/social_login_key.py:78
msgid "Please enter Base URL"
-msgstr ""
+msgstr "โปรดป้อน URL พื้นฐาน"
#: frappe/integrations/doctype/social_login_key/social_login_key.py:86
msgid "Please enter Client ID before social login is enabled"
-msgstr ""
+msgstr "โปรดป้อน Client ID ก่อนเปิดใช้งานการเข้าสู่ระบบโซเชียล"
#: frappe/integrations/doctype/social_login_key/social_login_key.py:89
msgid "Please enter Client Secret before social login is enabled"
-msgstr ""
+msgstr "โปรดป้อน Client Secret ก่อนเปิดใช้งานการเข้าสู่ระบบโซเชียล"
#: frappe/integrations/doctype/connected_app/connected_app.js:8
msgid "Please enter OpenID Configuration URL"
-msgstr ""
+msgstr "โปรดป้อน URL การกำหนดค่า OpenID"
#: frappe/integrations/doctype/social_login_key/social_login_key.py:84
msgid "Please enter Redirect URL"
-msgstr ""
+msgstr "โปรดป้อน URL การเปลี่ยนเส้นทาง"
#: frappe/templates/includes/comments/comments.html:163
msgid "Please enter a valid email address."
-msgstr ""
+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 ""
+msgstr "โปรดป้อนทั้งอีเมลและข้อความของคุณเพื่อให้เราสามารถติดต่อกลับได้ ขอบคุณ!"
#: frappe/www/update-password.html:234
msgid "Please enter the password"
-msgstr ""
+msgstr "โปรดป้อนรหัสผ่าน"
#: frappe/public/js/frappe/desk.js:217
msgctxt "Email Account"
msgid "Please enter the password for: {0}"
-msgstr ""
+msgstr "โปรดป้อนรหัสผ่านสำหรับ: {0}"
#: frappe/core/doctype/sms_settings/sms_settings.py:43
msgid "Please enter valid mobile nos"
-msgstr ""
+msgstr "โปรดป้อนหมายเลขมือถือที่ถูกต้อง"
#: frappe/www/update-password.html:117
msgid "Please enter your new password."
-msgstr ""
+msgstr "โปรดป้อนรหัสผ่านใหม่ของคุณ"
#: frappe/www/update-password.html:110
msgid "Please enter your old password."
-msgstr ""
+msgstr "โปรดป้อนรหัสผ่านเก่าของคุณ"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413
msgid "Please find attached {0}: {1}"
-msgstr ""
+msgstr "โปรดดูไฟล์แนบ {0}: {1}"
#: frappe/templates/includes/comments/comments.py:31
msgid "Please login to post a comment."
-msgstr ""
+msgstr "โปรดเข้าสู่ระบบเพื่อโพสต์ความคิดเห็น"
#: frappe/core/doctype/communication/communication.py:186
msgid "Please make sure the Reference Communication Docs are not circularly linked."
-msgstr ""
+msgstr "โปรดตรวจสอบว่าเอกสารการสื่อสารอ้างอิงไม่ได้เชื่อมโยงกันเป็นวงกลม"
#: frappe/model/document.py:986
msgid "Please refresh to get the latest document."
-msgstr ""
+msgstr "โปรดรีเฟรชเพื่อรับเอกสารล่าสุด"
#: frappe/printing/page/print/print.js:535
msgid "Please remove the printer mapping in Printer Settings and try again."
-msgstr ""
+msgstr "โปรดลบการแมปเครื่องพิมพ์ในการตั้งค่าเครื่องพิมพ์และลองอีกครั้ง"
#: frappe/public/js/frappe/form/form.js:358
msgid "Please save before attaching."
-msgstr ""
+msgstr "โปรดบันทึกก่อนแนบ"
#: frappe/email/doctype/newsletter/newsletter.py:131
msgid "Please save the Newsletter before sending"
-msgstr ""
+msgstr "โปรดบันทึกจดหมายข่าวก่อนส่ง"
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
-msgstr ""
+msgstr "โปรดบันทึกเอกสารก่อนการมอบหมาย"
#: frappe/public/js/frappe/form/sidebar/assign_to.js:72
msgid "Please save the document before removing assignment"
-msgstr ""
+msgstr "โปรดบันทึกเอกสารก่อนลบการมอบหมาย"
#: frappe/public/js/frappe/views/reports/report_view.js:1709
msgid "Please save the report first"
-msgstr ""
+msgstr "โปรดบันทึกรายงานก่อน"
#: frappe/website/doctype/web_template/web_template.js:22
msgid "Please save to edit the template."
-msgstr ""
+msgstr "โปรดบันทึกเพื่อแก้ไขแม่แบบ"
#: frappe/printing/doctype/print_format/print_format.js:30
msgid "Please select DocType first"
-msgstr ""
+msgstr "โปรดเลือก DocType ก่อน"
#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:27
msgid "Please select Entity Type first"
-msgstr ""
+msgstr "โปรดเลือกประเภทเอนทิตีก่อน"
#: frappe/core/doctype/system_settings/system_settings.py:113
msgid "Please select Minimum Password Score"
-msgstr ""
+msgstr "โปรดเลือกคะแนนรหัสผ่านขั้นต่ำ"
#: frappe/public/js/frappe/views/reports/query_report.js:1183
msgid "Please select X and Y fields"
-msgstr ""
+msgstr "โปรดเลือกฟิลด์ X และ Y"
#: frappe/utils/__init__.py:128
msgid "Please select a country code for field {1}."
-msgstr ""
+msgstr "โปรดเลือกรหัสประเทศสำหรับฟิลด์ {1}"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506
msgid "Please select a file first."
-msgstr ""
+msgstr "โปรดเลือกไฟล์ก่อน"
#: frappe/utils/file_manager.py:50
msgid "Please select a file or url"
-msgstr ""
+msgstr "โปรดเลือกไฟล์หรือ URL"
#: frappe/model/rename_doc.py:685
msgid "Please select a valid csv file with data"
-msgstr ""
+msgstr "โปรดเลือกไฟล์ CSV ที่ถูกต้องพร้อมข้อมูล"
#: frappe/utils/data.py:299
msgid "Please select a valid date filter"
-msgstr ""
+msgstr "โปรดเลือกตัวกรองวันที่ที่ถูกต้อง"
#: frappe/core/doctype/user_permission/user_permission_list.js:203
msgid "Please select applicable Doctypes"
-msgstr ""
+msgstr "โปรดเลือกประเภทเอกสารที่เกี่ยวข้อง"
#: frappe/model/db_query.py:1141
msgid "Please select atleast 1 column from {0} to sort/group"
-msgstr ""
+msgstr "โปรดเลือกอย่างน้อย 1 คอลัมน์จาก {0} เพื่อจัดเรียง/จัดกลุ่ม"
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:214
msgid "Please select prefix first"
-msgstr ""
+msgstr "โปรดเลือกคำนำหน้าก่อน"
#: frappe/core/doctype/data_export/data_export.js:42
msgid "Please select the Document Type."
-msgstr ""
+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 ""
+msgstr "โปรดเลือกไดเรกทอรี LDAP ที่ใช้งานอยู่"
#: frappe/website/doctype/website_settings/website_settings.js:100
msgid "Please select {0}"
-msgstr ""
+msgstr "โปรดเลือก {0}"
#: frappe/contacts/doctype/contact/contact.py:298
msgid "Please set Email Address"
-msgstr ""
+msgstr "โปรดตั้งค่าที่อยู่อีเมล"
#: frappe/printing/page/print/print.js:549
msgid "Please set a printer mapping for this print format in the Printer Settings"
-msgstr ""
+msgstr "โปรดตั้งค่าการแมปเครื่องพิมพ์สำหรับรูปแบบการพิมพ์นี้ในการตั้งค่าเครื่องพิมพ์"
#: frappe/public/js/frappe/views/reports/query_report.js:1406
msgid "Please set filters"
-msgstr ""
+msgstr "โปรดตั้งค่าตัวกรอง"
#: frappe/email/doctype/auto_email_report/auto_email_report.py:251
msgid "Please set filters value in Report Filter table."
-msgstr ""
+msgstr "โปรดตั้งค่าค่าตัวกรองในตารางตัวกรองรายงาน"
#: frappe/model/naming.py:572
msgid "Please set the document name"
-msgstr ""
+msgstr "โปรดตั้งชื่อเอกสาร"
#: frappe/desk/doctype/dashboard/dashboard.py:120
msgid "Please set the following documents in this Dashboard as standard first."
-msgstr ""
+msgstr "โปรดตั้งค่าเอกสารต่อไปนี้ในแดชบอร์ดนี้เป็นมาตรฐานก่อน"
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:120
msgid "Please set the series to be used."
-msgstr ""
+msgstr "โปรดตั้งค่าซีรีส์ที่จะใช้"
#: frappe/core/doctype/system_settings/system_settings.py:126
msgid "Please setup SMS before setting it as an authentication method, via SMS Settings"
-msgstr ""
+msgstr "โปรดตั้งค่า SMS ก่อนตั้งค่าเป็นวิธีการยืนยันตัวตนผ่านการตั้งค่า SMS"
#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104
msgid "Please setup a message first"
-msgstr ""
+msgstr "โปรดตั้งค่าข้อความก่อน"
#: frappe/core/doctype/user/user.py:423
msgid "Please setup default outgoing Email Account from Settings > Email Account"
-msgstr ""
+msgstr "โปรดตั้งค่าบัญชีอีเมลขาออกเริ่มต้นจากการตั้งค่า > บัญชีอีเมล"
#: frappe/email/doctype/email_account/email_account.py:432
msgid "Please setup default outgoing Email Account from Tools > Email Account"
-msgstr ""
+msgstr "โปรดตั้งค่าบัญชีอีเมลขาออกเริ่มต้นจากเครื่องมือ > บัญชีอีเมล"
#: frappe/public/js/frappe/model/model.js:774
msgid "Please specify"
-msgstr ""
+msgstr "โปรดระบุ"
#: frappe/permissions.py:783
msgid "Please specify a valid parent DocType for {0}"
-msgstr ""
+msgstr "โปรดระบุประเภทเอกสารหลักที่ถูกต้องสำหรับ {0}"
#: frappe/email/doctype/notification/notification.py:154
msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler"
-msgstr ""
+msgstr "โปรดระบุอย่างน้อย 10 นาทีเนื่องจากจังหวะการทำงานของตัวกำหนดเวลา"
#: frappe/email/doctype/notification/notification.py:151
msgid "Please specify the minutes offset"
-msgstr ""
+msgstr "โปรดระบุการชดเชยนาที"
#: frappe/email/doctype/notification/notification.py:145
msgid "Please specify which date field must be checked"
-msgstr ""
+msgstr "โปรดระบุฟิลด์วันที่ที่ต้องตรวจสอบ"
#: frappe/email/doctype/notification/notification.py:149
msgid "Please specify which datetime field must be checked"
-msgstr ""
+msgstr "โปรดระบุฟิลด์วันที่และเวลาที่ต้องตรวจสอบ"
#: frappe/email/doctype/notification/notification.py:158
msgid "Please specify which value field must be checked"
-msgstr ""
+msgstr "โปรดระบุฟิลด์ค่าที่ต้องตรวจสอบ"
#: frappe/public/js/frappe/request.js:187
#: frappe/public/js/frappe/views/translation_manager.js:102
msgid "Please try again"
-msgstr ""
+msgstr "โปรดลองอีกครั้ง"
#: frappe/integrations/google_oauth.py:58
msgid "Please update {} before continuing."
-msgstr ""
+msgstr "โปรดอัปเดต {} ก่อนดำเนินการต่อ"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333
msgid "Please use a valid LDAP search filter"
-msgstr ""
+msgstr "โปรดใช้ตัวกรองการค้นหา LDAP ที่ถูกต้อง"
#: frappe/email/doctype/newsletter/newsletter.py:333
msgid "Please verify your Email Address"
-msgstr ""
+msgstr "โปรดยืนยันที่อยู่อีเมลของคุณ"
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
@@ -19096,18 +19096,18 @@ msgstr ""
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Polling"
-msgstr ""
+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 ""
+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 ""
+msgstr "คำอธิบายป๊อปโอเวอร์หรือโมดอล"
#. Label of the smtp_port (Data) field in DocType 'Email Account'
#. Label of the incoming_port (Data) field in DocType 'Email Account'
@@ -19118,33 +19118,33 @@ msgstr ""
#: frappe/email/doctype/email_domain/email_domain.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Port"
-msgstr ""
+msgstr "พอร์ต"
#. Label of the menu (Table) field in DocType 'Portal Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Portal Menu"
-msgstr ""
+msgstr "เมนูพอร์ทัล"
#. Name of a DocType
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
msgid "Portal Menu Item"
-msgstr ""
+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 ""
+msgstr "การตั้งค่าพอร์ทัล"
#: frappe/public/js/frappe/form/print_utils.js:31
msgid "Portrait"
-msgstr ""
+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 ""
+msgstr "ตำแหน่ง"
#: frappe/templates/discussions/comment_box.html:29
#: frappe/templates/discussions/reply_card.html:15
@@ -19152,34 +19152,34 @@ msgstr ""
#: frappe/templates/discussions/reply_section.html:53
#: frappe/templates/discussions/topic_modal.html:11
msgid "Post"
-msgstr ""
+msgstr "โพสต์"
#: frappe/templates/discussions/reply_section.html:40
msgid "Post it here, our mentors will help you out."
-msgstr ""
+msgstr "โพสต์ไว้ที่นี่ ที่ปรึกษาของเราจะช่วยคุณ"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Postal"
-msgstr ""
+msgstr "ไปรษณีย์"
#. Label of the pincode (Data) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Postal Code"
-msgstr ""
+msgstr "รหัสไปรษณีย์"
#. Label of the posting_timestamp (Datetime) field in DocType 'Changelog Feed'
#: frappe/desk/doctype/changelog_feed/changelog_feed.json
msgid "Posting Timestamp"
-msgstr ""
+msgstr "การประทับเวลาที่โพสต์"
#: frappe/website/doctype/blog_post/blog_post.py:264
msgid "Posts by {0}"
-msgstr ""
+msgstr "โพสต์โดย {0}"
#: frappe/website/doctype/blog_post/blog_post.py:256
msgid "Posts filed under {0}"
-msgstr ""
+msgstr "โพสต์ที่จัดเก็บภายใต้ {0}"
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
@@ -19190,29 +19190,29 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Precision"
-msgstr ""
+msgstr "ความแม่นยำ"
#: frappe/core/doctype/doctype/doctype.py:1400
msgid "Precision should be between 1 and 6"
-msgstr ""
+msgstr "ความแม่นยำควรอยู่ระหว่าง 1 ถึง 6"
#: frappe/utils/password_strength.py:187
msgid "Predictable substitutions like '@' instead of 'a' don't help very much."
-msgstr ""
+msgstr "การแทนที่ที่คาดเดาได้ เช่น '@' แทน 'a' ไม่ได้ช่วยมากนัก"
#: frappe/desk/page/setup_wizard/install_fixtures.py:34
msgid "Prefer not to say"
-msgstr ""
+msgstr "ไม่ต้องการระบุ"
#. Label of the is_primary_address (Check) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Preferred Billing Address"
-msgstr ""
+msgstr "ที่อยู่สำหรับการเรียกเก็บเงินที่ต้องการ"
#. Label of the is_shipping_address (Check) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Preferred Shipping Address"
-msgstr ""
+msgstr "ที่อยู่สำหรับการจัดส่งที่ต้องการ"
#. Label of the prefix (Data) field in DocType 'Document Naming Rule'
#. Label of the prefix (Autocomplete) field in DocType 'Document Naming
@@ -19220,7 +19220,7 @@ msgstr ""
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Prefix"
-msgstr ""
+msgstr "คำนำหน้า"
#. Name of a DocType
#. Label of the prepared_report (Check) field in DocType 'Report'
@@ -19228,37 +19228,37 @@ msgstr ""
#: frappe/core/doctype/report/report.json
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:32
msgid "Prepared Report"
-msgstr ""
+msgstr "รายงานที่เตรียมไว้"
#. Name of a report
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json
msgid "Prepared Report Analytics"
-msgstr ""
+msgstr "การวิเคราะห์รายงานที่เตรียมไว้"
#. Name of a role
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Prepared Report User"
-msgstr ""
+msgstr "ผู้ใช้รายงานที่เตรียมไว้"
#: frappe/desk/query_report.py:306
msgid "Prepared report render failed"
-msgstr ""
+msgstr "การแสดงผลรายงานที่เตรียมไว้ล้มเหลว"
#: frappe/public/js/frappe/views/reports/query_report.js:472
msgid "Preparing Report"
-msgstr ""
+msgstr "กำลังเตรียมรายงาน"
#: frappe/public/js/frappe/views/communication.js:428
msgid "Prepend the template to the email message"
-msgstr ""
+msgstr "เพิ่มแม่แบบไปยังข้อความอีเมล"
#: frappe/public/js/frappe/ui/keyboard.js:139
msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar"
-msgstr ""
+msgstr "กดปุ่ม Alt เพื่อเรียกใช้ทางลัดเพิ่มเติมในเมนูและแถบด้านข้าง"
#: frappe/public/js/frappe/list/list_filter.js:141
msgid "Press Enter to save"
-msgstr ""
+msgstr "กด Enter เพื่อบันทึก"
#. Label of the section_import_preview (Section Break) field in DocType 'Data
#. Import'
@@ -19278,46 +19278,46 @@ msgstr ""
#: frappe/public/js/frappe/form/controls/markdown_editor.js:31
#: frappe/public/js/frappe/ui/capture.js:236
msgid "Preview"
-msgstr ""
+msgstr "ดูตัวอย่าง"
#. Label of the preview_html (HTML) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Preview HTML"
-msgstr ""
+msgstr "ดูตัวอย่าง HTML"
#. Label of the preview_image (Attach Image) field in DocType 'Blog Category'
#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings'
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Preview Image"
-msgstr ""
+msgstr "ดูตัวอย่างภาพ"
#. Label of the preview_message (Button) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Preview Message"
-msgstr ""
+msgstr "ดูตัวอย่างข้อความ"
#: frappe/public/js/form_builder/form_builder.bundle.js:83
msgid "Preview Mode"
-msgstr ""
+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 ""
+msgstr "ดูตัวอย่างชื่อที่สร้างขึ้น"
#: frappe/public/js/frappe/views/render_preview.js:19
msgid "Preview on {0}"
-msgstr ""
+msgstr "ดูตัวอย่างบน {0}"
#: frappe/public/js/print_format_builder/Preview.vue:103
msgid "Preview type"
-msgstr ""
+msgstr "ประเภทดูตัวอย่าง"
#: frappe/email/doctype/email_group/email_group.js:90
msgid "Preview:"
-msgstr ""
+msgstr "ดูตัวอย่าง:"
#: frappe/public/js/frappe/form/form_tour.js:15
#: frappe/public/js/frappe/web_form/web_form.js:95
@@ -19325,56 +19325,56 @@ msgstr ""
#: frappe/templates/includes/slideshow.html:34
#: frappe/website/web_template/slideshow/slideshow.html:40
msgid "Previous"
-msgstr ""
+msgstr "ก่อนหน้า"
#: frappe/public/js/frappe/ui/slides.js:351
msgctxt "Go to previous slide"
msgid "Previous"
-msgstr ""
+msgstr "ก่อนหน้า"
#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log'
#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Previous Hash"
-msgstr ""
+msgstr "แฮชก่อนหน้า"
#: frappe/public/js/frappe/form/form.js:2214
msgid "Previous Submission"
-msgstr ""
+msgstr "การส่งก่อนหน้า"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Primary"
-msgstr ""
+msgstr "หลัก"
#: frappe/public/js/frappe/form/templates/address_list.html:27
msgid "Primary Address"
-msgstr ""
+msgstr "ที่อยู่หลัก"
#. Label of the primary_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Primary Color"
-msgstr ""
+msgstr "สีหลัก"
#: frappe/public/js/frappe/form/templates/contact_list.html:23
msgid "Primary Contact"
-msgstr ""
+msgstr "ผู้ติดต่อหลัก"
#: frappe/public/js/frappe/form/templates/contact_list.html:69
msgid "Primary Email"
-msgstr ""
+msgstr "อีเมลหลัก"
#: frappe/public/js/frappe/form/templates/contact_list.html:49
msgid "Primary Mobile"
-msgstr ""
+msgstr "มือถือหลัก"
#: frappe/public/js/frappe/form/templates/contact_list.html:41
msgid "Primary Phone"
-msgstr ""
+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 ""
+msgstr "คีย์หลักของประเภทเอกสาร {0} ไม่สามารถเปลี่ยนแปลงได้เนื่องจากมีค่าที่มีอยู่แล้ว"
#. Label of the print (Check) field in DocType 'Custom DocPerm'
#. Label of the print (Check) field in DocType 'DocPerm'
@@ -19393,16 +19393,16 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/report_view.js:1537
#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18
msgid "Print"
-msgstr ""
+msgstr "พิมพ์"
#: frappe/public/js/frappe/list/list_view.js:2019
msgctxt "Button in list view actions menu"
msgid "Print"
-msgstr ""
+msgstr "พิมพ์"
#: frappe/public/js/frappe/list/bulk_operations.js:48
msgid "Print Documents"
-msgstr ""
+msgstr "พิมพ์เอกสาร"
#. Label of the print_format (Link) field in DocType 'Auto Repeat'
#. Label of a Link in the Build Workspace
@@ -19418,7 +19418,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'
@@ -19428,7 +19428,7 @@ msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:67
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:4
msgid "Print Format Builder"
-msgstr ""
+msgstr "ตัวสร้างรูปแบบการพิมพ์"
#. Label of a Link in the Tools Workspace
#: frappe/automation/workspace/tools/tools.json
@@ -19439,30 +19439,30 @@ msgstr ""
#. Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Print Format Builder Beta"
-msgstr ""
+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
msgid "Print Format Field Template"
-msgstr ""
+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 ""
+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/www/printview.py:451
msgid "Print Format {0} is disabled"
-msgstr ""
+msgstr "รูปแบบการพิมพ์ {0} ถูกปิดใช้งาน"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
@@ -19470,7 +19470,7 @@ msgstr ""
#: frappe/automation/workspace/tools/tools.json
#: frappe/printing/doctype/print_heading/print_heading.json
msgid "Print Heading"
-msgstr ""
+msgstr "หัวข้อการพิมพ์"
#. Label of the print_hide (Check) field in DocType 'DocField'
#. Label of the print_hide (Check) field in DocType 'Custom Field'
@@ -19479,7 +19479,7 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Hide"
-msgstr ""
+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'
@@ -19489,21 +19489,21 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Hide If No Value"
-msgstr ""
+msgstr "ซ่อนการพิมพ์หากไม่มีค่า"
#: frappe/public/js/frappe/views/communication.js:165
msgid "Print Language"
-msgstr ""
+msgstr "ภาษาการพิมพ์"
#: frappe/public/js/frappe/form/print_utils.js:197
msgid "Print Sent to the printer!"
-msgstr ""
+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 ""
+msgstr "เซิร์ฟเวอร์การพิมพ์"
#. Label of a Link in the Tools Workspace
#. Label of the column_break_25 (Section Break) field in DocType 'Notification'
@@ -19516,7 +19516,7 @@ msgstr ""
#: frappe/public/js/frappe/form/print_utils.js:71
#: frappe/public/js/frappe/form/templates/print_layout.html:35
msgid "Print Settings"
-msgstr ""
+msgstr "การตั้งค่าการพิมพ์"
#. Label of the print_style_section (Section Break) field in DocType 'Print
#. Settings'
@@ -19525,17 +19525,17 @@ msgstr ""
#: frappe/printing/doctype/print_settings/print_settings.json
#: frappe/printing/doctype/print_style/print_style.json
msgid "Print Style"
-msgstr ""
+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 ""
+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 ""
+msgstr "ดูตัวอย่างสไตล์การพิมพ์"
#. Label of the print_width (Data) field in DocType 'DocField'
#. Label of the print_width (Data) field in DocType 'Custom Field'
@@ -19544,53 +19544,53 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Width"
-msgstr ""
+msgstr "ความกว้างการพิมพ์"
#. Description of the 'Print Width' (Data) field in DocType 'Customize Form
#. Field'
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Print Width of the field, if the field is a column in a table"
-msgstr ""
+msgstr "ความกว้างการพิมพ์ของฟิลด์ หากฟิลด์เป็นคอลัมน์ในตาราง"
#: frappe/public/js/frappe/form/form.js:170
msgid "Print document"
-msgstr ""
+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 ""
+msgstr "พิมพ์พร้อมหัวจดหมาย"
#: frappe/printing/page/print/print.js:830
msgid "Printer"
-msgstr ""
+msgstr "เครื่องพิมพ์"
#: frappe/printing/page/print/print.js:807
msgid "Printer Mapping"
-msgstr ""
+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 ""
+msgstr "ชื่อเครื่องพิมพ์"
#: frappe/printing/page/print/print.js:799
msgid "Printer Settings"
-msgstr ""
+msgstr "การตั้งค่าเครื่องพิมพ์"
#: frappe/printing/page/print/print.js:548
msgid "Printer mapping not set."
-msgstr ""
+msgstr "ไม่ได้ตั้งค่าการแมปเครื่องพิมพ์"
#. Label of a Card Break in the Tools Workspace
#: frappe/automation/workspace/tools/tools.json
msgid "Printing"
-msgstr ""
+msgstr "กำลังพิมพ์"
#: frappe/utils/print_format.py:291
msgid "Printing failed"
-msgstr ""
+msgstr "การพิมพ์ล้มเหลว"
#. Label of the priority (Int) field in DocType 'Assignment Rule'
#. Label of the priority (Int) field in DocType 'Document Naming Rule'
@@ -19604,7 +19604,7 @@ msgstr ""
#: frappe/public/js/frappe/form/sidebar/assign_to.js:211
#: frappe/website/doctype/web_page/web_page.json
msgid "Priority"
-msgstr ""
+msgstr "ลำดับความสำคัญ"
#. Label of the private (Check) field in DocType 'Custom HTML Block'
#. Option for the 'Event Type' (Select) field in DocType 'Event'
@@ -19615,52 +19615,52 @@ msgstr ""
#: frappe/desk/doctype/note/note_list.js:8
#: frappe/public/js/frappe/file_uploader/FilePreview.vue:35
msgid "Private"
-msgstr ""
+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 ""
+msgstr "ไฟล์ส่วนตัว (MB)"
#. Description of the 'Auto Reply Message' (Text Editor) field in DocType
#. 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference"
-msgstr ""
+msgstr "เคล็ดลับ: เพิ่ม อ้างอิง: {{ reference_doctype }} {{ reference_name }} เพื่อส่งการอ้างอิงเอกสาร"
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22
msgid "Proceed"
-msgstr ""
+msgstr "ดำเนินการต่อ"
#: frappe/public/js/frappe/views/reports/query_report.js:930
msgid "Proceed Anyway"
-msgstr ""
+msgstr "ดำเนินการต่ออยู่ดี"
#: frappe/public/js/frappe/form/controls/table.js:104
msgid "Processing"
-msgstr ""
+msgstr "กำลังประมวลผล"
#: frappe/email/doctype/email_queue/email_queue_list.js:52
msgid "Processing..."
-msgstr ""
+msgstr "กำลังประมวลผล..."
#: frappe/desk/page/setup_wizard/install_fixtures.py:51
msgid "Prof"
-msgstr ""
+msgstr "ศาสตราจารย์"
#. Group in User's connections
#: frappe/core/doctype/user/user.json
msgid "Profile"
-msgstr ""
+msgstr "โปรไฟล์"
#: frappe/public/js/frappe/socketio_client.js:82
msgid "Progress"
-msgstr ""
+msgstr "ความคืบหน้า"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
msgid "Project"
-msgstr ""
+msgstr "โครงการ"
#. Label of the property (Data) field in DocType 'Property Setter'
#: frappe/core/doctype/version/version_view.html:12
@@ -19668,7 +19668,7 @@ msgstr ""
#: frappe/core/doctype/version/version_view.html:74
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property"
-msgstr ""
+msgstr "คุณสมบัติ"
#. Label of the property_depends_on_section (Section Break) field in DocType
#. 'Customize Form Field'
@@ -19677,22 +19677,22 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Property Depends On"
-msgstr ""
+msgstr "คุณสมบัติขึ้นอยู่กับ"
#. Name of a DocType
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property Setter"
-msgstr ""
+msgstr "ตัวตั้งค่าคุณสมบัติ"
#. Description of a DocType
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property Setter overrides a standard DocType or Field property"
-msgstr ""
+msgstr "ตัวตั้งค่าคุณสมบัติแทนที่คุณสมบัติมาตรฐานของ DocType หรือฟิลด์"
#. Label of the property_type (Data) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Property Type"
-msgstr ""
+msgstr "ประเภททรัพย์สิน"
#. Label of the protect_attached_files (Check) field in DocType 'DocType'
#. Label of the protect_attached_files (Check) field in DocType 'Customize
@@ -19700,24 +19700,24 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Protect Attached Files"
-msgstr ""
+msgstr "ป้องกันไฟล์ที่แนบมา"
#: frappe/core/doctype/file/file.py:501
msgid "Protected File"
-msgstr ""
+msgstr "ไฟล์ที่ป้องกัน"
#. Description of the 'Allowed File Extensions' (Small Text) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Provide a list of allowed file extensions for file uploads. Each line should contain one allowed file type. If unset, all file extensions are allowed. Example:
CSV
JPG
PNG"
-msgstr ""
+msgstr "ระบุรายการนามสกุลไฟล์ที่อนุญาตให้อัปโหลดไฟล์ได้ แต่ละบรรทัดควรมีประเภทไฟล์ที่อนุญาตหนึ่งประเภท หากไม่ได้ตั้งค่า จะอนุญาตให้อัปโหลดไฟล์ทุกนามสกุล ตัวอย่าง:
CSV
JPG
PNG"
#. Label of the provider (Data) field in DocType 'User Social Login'
#. Label of the provider (Select) field in DocType 'Geolocation Settings'
#: frappe/core/doctype/user_social_login/user_social_login.json
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json
msgid "Provider"
-msgstr ""
+msgstr "ผู้ให้บริการ"
#. Label of the provider_name (Data) field in DocType 'Connected App'
#. Label of the provider_name (Data) field in DocType 'Social Login Key'
@@ -19726,7 +19726,7 @@ msgstr ""
#: frappe/integrations/doctype/social_login_key/social_login_key.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Provider Name"
-msgstr ""
+msgstr "ชื่อผู้ให้บริการ"
#. Option for the 'Event Type' (Select) field in DocType 'Event'
#. Label of the public (Check) field in DocType 'Note'
@@ -19737,13 +19737,13 @@ msgstr ""
#: frappe/public/js/frappe/views/interaction.js:78
#: frappe/public/js/frappe/views/workspace/workspace.js:440
msgid "Public"
-msgstr ""
+msgstr "สาธารณะ"
#. Label of the public_files_size (Float) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Public Files (MB)"
-msgstr ""
+msgstr "ไฟล์สาธารณะ (MB)"
#. Label of the publish (Check) field in DocType 'Package Release'
#: frappe/core/doctype/package_release/package_release.json
@@ -19751,13 +19751,13 @@ msgstr ""
#: frappe/website/doctype/blog_post/blog_post.js:36
#: frappe/website/doctype/web_form/web_form.js:86
msgid "Publish"
-msgstr ""
+msgstr "เผยแพร่"
#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
#. 'Newsletter'
#: frappe/email/doctype/newsletter/newsletter.json
msgid "Publish as a web page"
-msgstr ""
+msgstr "เผยแพร่เป็นหน้าเว็บ"
#. Label of the published (Check) field in DocType 'Comment'
#. Label of the published (Check) field in DocType 'Newsletter'
@@ -19780,83 +19780,83 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/web_page/web_page_list.js:5
msgid "Published"
-msgstr ""
+msgstr "เผยแพร่แล้ว"
#. Label of the published_on (Date) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Published On"
-msgstr ""
+msgstr "เผยแพร่เมื่อ"
#: frappe/website/doctype/blog_post/templates/blog_post.html:59
msgid "Published on"
-msgstr ""
+msgstr "เผยแพร่เมื่อ"
#. Label of the publishing_dates_section (Section Break) field in DocType 'Web
#. Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Publishing Dates"
-msgstr ""
+msgstr "วันที่เผยแพร่"
#: frappe/email/doctype/email_account/email_account.js:208
msgid "Pull Emails"
-msgstr ""
+msgstr "ดึงอีเมล"
#. Label of the pull_from_google_calendar (Check) field in DocType 'Google
#. Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Pull from Google Calendar"
-msgstr ""
+msgstr "ดึงจาก Google Calendar"
#. Label of the pull_from_google_contacts (Check) field in DocType 'Google
#. Contacts'
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Pull from Google Contacts"
-msgstr ""
+msgstr "ดึงจาก Google Contacts"
#. Label of the pulled_from_google_calendar (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Pulled from Google Calendar"
-msgstr ""
+msgstr "ดึงจาก Google Calendar แล้ว"
#. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Pulled from Google Contacts"
-msgstr ""
+msgstr "ดึงจาก Google Contacts แล้ว"
#: frappe/email/doctype/email_account/email_account.js:209
msgid "Pulling emails..."
-msgstr ""
+msgstr "กำลังดึงอีเมล..."
#. Name of a role
#: frappe/contacts/doctype/contact/contact.json
msgid "Purchase Manager"
-msgstr ""
+msgstr "ผู้จัดการการซื้อ"
#. Name of a role
#: frappe/contacts/doctype/contact/contact.json
msgid "Purchase Master Manager"
-msgstr ""
+msgstr "ผู้จัดการมาสเตอร์การซื้อ"
#. Name of a role
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
#: frappe/geo/doctype/currency/currency.json
msgid "Purchase User"
-msgstr ""
+msgstr "ผู้ใช้การซื้อ"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Purple"
-msgstr ""
+msgstr "สีม่วง"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Push Notification Settings"
-msgstr ""
+msgstr "การตั้งค่าการแจ้งเตือนแบบพุช"
#. Label of a Card Break in the Integrations Workspace
#: frappe/integrations/workspace/integrations/integrations.json
@@ -19867,30 +19867,30 @@ msgstr ""
#. Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Push to Google Calendar"
-msgstr ""
+msgstr "ส่งไปยัง Google Calendar"
#. Label of the push_to_google_contacts (Check) field in DocType 'Google
#. Contacts'
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Push to Google Contacts"
-msgstr ""
+msgstr "ส่งไปยัง Google Contacts"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23
msgid "Put on Hold"
-msgstr ""
+msgstr "พักการใช้งาน"
#. Option for the 'Type' (Select) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "Python"
-msgstr ""
+msgstr "ไพธอน"
#: frappe/www/qrcode.html:3
msgid "QR Code"
-msgstr ""
+msgstr "คิวอาร์โค้ด"
#: frappe/www/qrcode.html:6
msgid "QR Code for Login Verification"
-msgstr ""
+msgstr "คิวอาร์โค้ดสำหรับการยืนยันการเข้าสู่ระบบ"
#: frappe/public/js/frappe/form/print_utils.js:206
msgid "QZ Tray Failed: "
@@ -19906,83 +19906,83 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/public/js/frappe/utils/common.js:401
msgid "Quarterly"
-msgstr ""
+msgstr "รายไตรมาส"
#. Label of the query (Data) field in DocType 'Recorder Query'
#. Label of the query (Code) field in DocType 'Report'
#: frappe/core/doctype/recorder_query/recorder_query.json
#: frappe/core/doctype/report/report.json
msgid "Query"
-msgstr ""
+msgstr "คำสั่งค้นหา"
#. Label of the section_break_6 (Section Break) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Query / Script"
-msgstr ""
+msgstr "คำสั่งค้นหา / สคริปต์"
#. Label of the query_options (Small Text) field in DocType 'Contact Us
#. Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Query Options"
-msgstr ""
+msgstr "ตัวเลือกการค้นหา"
#. Label of the query_parameters (Table) field in DocType 'Connected App'
#. Name of a DocType
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/query_parameters/query_parameters.json
msgid "Query Parameters"
-msgstr ""
+msgstr "พารามิเตอร์การค้นหา"
#. Option for the 'Report Type' (Select) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
#: frappe/public/js/frappe/views/reports/query_report.js:17
msgid "Query Report"
-msgstr ""
+msgstr "รายงานการค้นหา"
#: frappe/core/doctype/recorder/recorder.py:188
msgid "Query analysis complete. Check suggested indexes."
-msgstr ""
+msgstr "การวิเคราะห์การค้นหาเสร็จสมบูรณ์ ตรวจสอบดัชนีที่แนะนำ"
#: frappe/utils/safe_exec.py:495
msgid "Query must be of SELECT or read-only WITH type."
-msgstr ""
+msgstr "การค้นหาต้องเป็นประเภท SELECT หรือ read-only WITH"
#. Label of the queue (Select) field in DocType 'RQ Job'
#. Label of the queue (Data) field in DocType 'System Health Report Queue'
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
msgid "Queue"
-msgstr ""
+msgstr "คิว"
#: frappe/utils/background_jobs.py:731
msgid "Queue Overloaded"
-msgstr ""
+msgstr "คิวเกินพิกัด"
#. Label of the queue_status (Table) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Queue Status"
-msgstr ""
+msgstr "สถานะคิว"
#. Label of the queue_type (Select) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Queue Type(s)"
-msgstr ""
+msgstr "ประเภทคิว"
#. Label of the queue_in_background (Check) field in DocType 'DocType'
#. Label of the queue_in_background (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Queue in Background (BETA)"
-msgstr ""
+msgstr "คิวในพื้นหลัง (เบต้า)"
#: frappe/utils/background_jobs.py:556
msgid "Queue should be one of {0}"
-msgstr ""
+msgstr "คิวควรเป็นหนึ่งใน {0}"
#. Label of the queue (Data) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Queue(s)"
-msgstr ""
+msgstr "คิว"
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
#. Option for the 'Status' (Select) field in DocType 'Submission Queue'
@@ -19992,69 +19992,69 @@ msgstr ""
#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
-msgstr ""
+msgstr "อยู่ในคิว"
#. Label of the queued_at (Datetime) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Queued At"
-msgstr ""
+msgstr "อยู่ในคิวที่"
#. Label of the queued_by (Data) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Queued By"
-msgstr ""
+msgstr "อยู่ในคิวโดย"
#: frappe/core/doctype/submission_queue/submission_queue.py:174
msgid "Queued for Submission. You can track the progress over {0}."
-msgstr ""
+msgstr "อยู่ในคิวสำหรับการส่ง คุณสามารถติดตามความคืบหน้าได้ที่ {0}"
#: frappe/desk/page/backups/backups.py:96
msgid "Queued for backup. You will receive an email with the download link"
-msgstr ""
+msgstr "อยู่ในคิวสำหรับการสำรองข้อมูล คุณจะได้รับอีเมลพร้อมลิงก์ดาวน์โหลด"
#: frappe/email/doctype/newsletter/newsletter.js:95
msgid "Queued {0} emails"
-msgstr ""
+msgstr "อยู่ในคิว {0} อีเมล"
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
-msgstr ""
+msgstr "คิว"
#: frappe/email/doctype/newsletter/newsletter.js:90
msgid "Queuing emails..."
-msgstr ""
+msgstr "กำลังจัดคิวอีเมล..."
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
-msgstr ""
+msgstr "กำลังจัดคิว {0} สำหรับการส่ง"
#. Label of the quick_entry (Check) field in DocType 'DocType'
#. Label of the quick_entry (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Quick Entry"
-msgstr ""
+msgstr "การป้อนข้อมูลอย่างรวดเร็ว"
#: frappe/core/page/permission_manager/permission_manager_help.html:3
msgid "Quick Help for Setting Permissions"
-msgstr ""
+msgstr "ความช่วยเหลือด่วนสำหรับการตั้งค่าสิทธิ์"
#. Label of the quick_list_filter (Code) field in DocType 'Workspace Quick
#. List'
#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
msgid "Quick List Filter"
-msgstr ""
+msgstr "ตัวกรองรายการด่วน"
#. Label of the quick_lists_tab (Tab Break) field in DocType 'Workspace'
#. Label of the quick_lists (Table) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "Quick Lists"
-msgstr ""
+msgstr "รายการด่วน"
#: frappe/public/js/frappe/views/reports/report_utils.js:304
msgid "Quoting must be between 0 and 3"
-msgstr ""
+msgstr "การเสนอราคาต้องอยู่ระหว่าง 0 ถึง 3"
#. Label of the raw_information_log_section (Section Break) field in DocType
#. 'Access Log'
@@ -20232,76 +20232,76 @@ msgstr ""
#. Label of the readme (Markdown Editor) field in DocType 'Package'
#: frappe/core/doctype/package/package.json
msgid "Readme"
-msgstr ""
+msgstr "ไฟล์อ่านฉัน"
#. Label of the realtime_socketio_section (Section Break) field in DocType
#. 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Realtime (SocketIO)"
-msgstr ""
+msgstr "เรียลไทม์ (SocketIO)"
#. Label of the reason (Long Text) field in DocType 'Unhandled Email'
#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Reason"
-msgstr ""
+msgstr "เหตุผล"
#: frappe/public/js/frappe/views/reports/query_report.js:884
msgid "Rebuild"
-msgstr ""
+msgstr "สร้างใหม่"
#: frappe/public/js/frappe/views/treeview.js:509
msgid "Rebuild Tree"
-msgstr ""
+msgstr "สร้างโครงสร้างใหม่"
#: frappe/utils/nestedset.py:177
msgid "Rebuilding of tree is not supported for {}"
-msgstr ""
+msgstr "การสร้างโครงสร้างใหม่ไม่รองรับสำหรับ {}"
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Received"
-msgstr ""
+msgstr "ได้รับ"
#: frappe/integrations/doctype/token_cache/token_cache.py:49
msgid "Received an invalid token type."
-msgstr ""
+msgstr "ได้รับประเภทโทเค็นที่ไม่ถูกต้อง"
#. Label of the receiver_by_document_field (Select) field in DocType
#. 'Notification Recipient'
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Receiver By Document Field"
-msgstr ""
+msgstr "ผู้รับตามฟิลด์เอกสาร"
#. Label of the receiver_by_role (Link) field in DocType 'Notification
#. Recipient'
#: frappe/email/doctype/notification_recipient/notification_recipient.json
msgid "Receiver By Role"
-msgstr ""
+msgstr "ผู้รับตามบทบาท"
#. Label of the receiver_parameter (Data) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Receiver Parameter"
-msgstr ""
+msgstr "พารามิเตอร์ผู้รับ"
#: frappe/utils/password_strength.py:123
msgid "Recent years are easy to guess."
-msgstr ""
+msgstr "ปีล่าสุดคาดเดาได้ง่าย"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532
msgid "Recents"
-msgstr ""
+msgstr "ล่าสุด"
#. Label of the recipients (Table) field in DocType 'Email Queue'
#. Label of the recipient (Data) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
msgid "Recipient"
-msgstr ""
+msgstr "ผู้รับ"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Recipient Unsubscribed"
-msgstr ""
+msgstr "ผู้รับยกเลิกการสมัคร"
#. Label of the recipients (Small Text) field in DocType 'Auto Repeat'
#. Label of the column_break_5 (Section Break) field in DocType 'Notification'
@@ -20309,105 +20309,105 @@ msgstr ""
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/email/doctype/notification/notification.json
msgid "Recipients"
-msgstr ""
+msgstr "ผู้รับ"
#. Name of a DocType
#: frappe/core/doctype/recorder/recorder.json
msgid "Recorder"
-msgstr ""
+msgstr "เครื่องบันทึก"
#. Name of a DocType
#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Recorder Query"
-msgstr ""
+msgstr "คำสั่งค้นหาเครื่องบันทึก"
#. Name of a DocType
#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json
msgid "Recorder Suggested Index"
-msgstr ""
+msgstr "ดัชนีที่แนะนำโดยเครื่องบันทึก"
#: frappe/core/doctype/user_permission/user_permission_help.html:2
msgid "Records for following doctypes will be filtered"
-msgstr ""
+msgstr "บันทึกสำหรับประเภทเอกสารต่อไปนี้จะถูกกรอง"
#: frappe/core/doctype/doctype/doctype.py:1608
msgid "Recursive Fetch From"
-msgstr ""
+msgstr "ดึงข้อมูลแบบวนซ้ำจาก"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Red"
-msgstr ""
+msgstr "สีแดง"
#. Label of the redirect_http_status (Select) field in DocType 'Website Route
#. Redirect'
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
msgid "Redirect HTTP Status"
-msgstr ""
+msgstr "เปลี่ยนเส้นทางสถานะ HTTP"
#. Label of the redirect_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Redirect URI"
-msgstr ""
+msgstr "เปลี่ยนเส้นทาง URI"
#. Label of the redirect_uri_bound_to_authorization_code (Data) field in
#. DocType 'OAuth Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Redirect URI Bound To Auth Code"
-msgstr ""
+msgstr "เปลี่ยนเส้นทาง URI ที่ผูกกับรหัสการยืนยันตัวตน"
#. Label of the redirect_uris (Text) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Redirect URIs"
-msgstr ""
+msgstr "เปลี่ยนเส้นทาง URIs"
#. Label of the redirect_url (Small Text) field in DocType 'User'
#. Label of the redirect_url (Data) field in DocType 'Social Login Key'
#: frappe/core/doctype/user/user.json
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Redirect URL"
-msgstr ""
+msgstr "เปลี่ยนเส้นทาง URL"
#. Description of the 'Default App' (Select) field in DocType 'System Settings'
#. Description of the 'Default App' (Select) field in DocType 'User'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
msgid "Redirect to the selected app after login"
-msgstr ""
+msgstr "เปลี่ยนเส้นทางไปยังแอปที่เลือกหลังเข้าสู่ระบบ"
#. Description of the 'Welcome URL' (Data) field in DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Redirect to this URL after successful confirmation."
-msgstr ""
+msgstr "เปลี่ยนเส้นทางไปยัง URL นี้หลังจากยืนยันสำเร็จ"
#. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Redirects"
-msgstr ""
+msgstr "เปลี่ยนเส้นทาง"
#: frappe/sessions.py:149
msgid "Redis cache server not running. Please contact Administrator / Tech support"
-msgstr ""
+msgstr "เซิร์ฟเวอร์แคช Redis ไม่ทำงาน โปรดติดต่อผู้ดูแลระบบ/ฝ่ายสนับสนุนด้านเทคนิค"
#: frappe/public/js/frappe/form/toolbar.js:527
msgid "Redo"
-msgstr ""
+msgstr "ทำซ้ำ"
#: frappe/public/js/frappe/form/form.js:164
#: frappe/public/js/frappe/form/toolbar.js:535
msgid "Redo last action"
-msgstr ""
+msgstr "ทำซ้ำการกระทำล่าสุด"
#. Label of the ref_doctype (Link) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Ref DocType"
-msgstr ""
+msgstr "ประเภทเอกสารอ้างอิง"
#: frappe/desk/doctype/form_tour/form_tour.js:38
msgid "Referance Doctype and Dashboard Name both can't be used at the same time."
-msgstr ""
+msgstr "ไม่สามารถใช้ประเภทเอกสารอ้างอิงและชื่อแดชบอร์ดพร้อมกันได้"
#. Label of the linked_with (Section Break) field in DocType 'Address'
#. Label of the contact_details (Section Break) field in DocType 'Contact'
@@ -20429,33 +20429,33 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/public/js/frappe/views/interaction.js:54
msgid "Reference"
-msgstr ""
+msgstr "อ้างอิง"
#. Label of the date_changed (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Reference Date"
-msgstr ""
+msgstr "วันที่อ้างอิง"
#. Label of the datetime_changed (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Reference Datetime"
-msgstr ""
+msgstr "วันที่และเวลาอ้างอิง"
#. Label of the reference_name (Data) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Reference DocName"
-msgstr ""
+msgstr "ชื่อเอกสารอ้างอิง"
#. Label of the reference_doctype (Link) field in DocType 'Error Log'
#. Label of the ref_doctype (Link) field in DocType 'Submission Queue'
#: frappe/core/doctype/error_log/error_log.json
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Reference DocType"
-msgstr ""
+msgstr "ประเภทเอกสารอ้างอิง"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26
msgid "Reference DocType and Reference Name are required"
-msgstr ""
+msgstr "ต้องระบุประเภทเอกสารอ้างอิงและชื่ออ้างอิง"
#. Label of the ref_docname (Dynamic Link) field in DocType 'Submission Queue'
#. Label of the reference_docname (Dynamic Link) field in DocType 'Discussion
@@ -20463,7 +20463,7 @@ msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.json
#: frappe/website/doctype/discussion_topic/discussion_topic.json
msgid "Reference Docname"
-msgstr ""
+msgstr "ชื่อเอกสารอ้างอิง"
#. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log'
#. Label of the reference_doctype (Link) field in DocType 'Discussion Topic'
@@ -20473,7 +20473,7 @@ msgstr ""
#: frappe/public/js/frappe/views/render_preview.js:34
#: frappe/website/doctype/discussion_topic/discussion_topic.json
msgid "Reference Doctype"
-msgstr ""
+msgstr "ประเภทเอกสารอ้างอิง"
#. Label of the reference_document (Dynamic Link) field in DocType 'Auto
#. Repeat'
@@ -20489,7 +20489,7 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Reference Document"
-msgstr ""
+msgstr "เอกสารอ้างอิง"
#. Label of the reference_docname (Dynamic Link) field in DocType 'Document
#. Share Key'
@@ -20498,7 +20498,7 @@ msgstr ""
#: frappe/core/doctype/document_share_key/document_share_key.json
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Reference Document Name"
-msgstr ""
+msgstr "ชื่อเอกสารอ้างอิง"
#. Label of the reference_doctype (Link) field in DocType 'Auto Repeat'
#. Label of the reference_doctype (Link) field in DocType 'Activity Log'
@@ -20541,7 +20541,7 @@ msgstr ""
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Reference Document Type"
-msgstr ""
+msgstr "ประเภทเอกสารอ้างอิง"
#. Label of the reference_name (Dynamic Link) field in DocType 'Activity Log'
#. Label of the reference_name (Dynamic Link) field in DocType 'Comment'
@@ -20567,7 +20567,7 @@ msgstr ""
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Reference Name"
-msgstr ""
+msgstr "ชื่ออ้างอิง"
#. Label of the reference_owner (Read Only) field in DocType 'Activity Log'
#. Label of the reference_owner (Data) field in DocType 'Comment'
@@ -20576,7 +20576,7 @@ msgstr ""
#: frappe/core/doctype/comment/comment.json
#: frappe/core/doctype/communication/communication.json
msgid "Reference Owner"
-msgstr ""
+msgstr "เจ้าของอ้างอิง"
#. Label of the reference_report (Data) field in DocType 'Report'
#. Label of the reference_report (Link) field in DocType 'Onboarding Step'
@@ -20585,29 +20585,29 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Reference Report"
-msgstr ""
+msgstr "รายงานอ้างอิง"
#. Label of the reference_type (Link) field in DocType 'Permission Log'
#. Label of the reference_type (Link) field in DocType 'ToDo'
#: frappe/core/doctype/permission_log/permission_log.json
#: frappe/desk/doctype/todo/todo.json
msgid "Reference Type"
-msgstr ""
+msgstr "ประเภทอ้างอิง"
#. Label of the reference_name (Dynamic Link) field in DocType 'View Log'
#: frappe/core/doctype/view_log/view_log.json
msgid "Reference name"
-msgstr ""
+msgstr "ชื่ออ้างอิง"
#: frappe/templates/emails/auto_reply.html:3
msgid "Reference: {0} {1}"
-msgstr ""
+msgstr "อ้างอิง: {0} {1}"
#. Label of the referrer (Data) field in DocType 'Web Page View'
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:37
msgid "Referrer"
-msgstr ""
+msgstr "ผู้แนะนำ"
#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168
#: frappe/public/js/frappe/desk.js:556
@@ -20620,16 +20620,16 @@ msgstr ""
#: frappe/public/js/frappe/widgets/number_card_widget.js:340
#: frappe/public/js/print_format_builder/Preview.vue:24
msgid "Refresh"
-msgstr ""
+msgstr "รีเฟรช"
#: frappe/core/page/dashboard_view/dashboard_view.js:177
msgid "Refresh All"
-msgstr ""
+msgstr "รีเฟรชทั้งหมด"
#. Label of the refresh_google_sheet (Button) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Refresh Google Sheet"
-msgstr ""
+msgstr "รีเฟรช Google Sheet"
#. Label of the refresh_token (Password) field in DocType 'Google Calendar'
#. Label of the refresh_token (Password) field in DocType 'Google Contacts'
@@ -20640,39 +20640,39 @@ msgstr ""
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Refresh Token"
-msgstr ""
+msgstr "รีเฟรชโทเค็น"
#: frappe/public/js/frappe/list/list_view.js:531
msgctxt "Document count in list view"
msgid "Refreshing"
-msgstr ""
+msgstr "กำลังรีเฟรช"
#: frappe/core/doctype/system_settings/system_settings.js:57
#: frappe/core/doctype/user/user.js:368
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Refreshing..."
-msgstr ""
+msgstr "กำลังรีเฟรช..."
#: frappe/core/doctype/user/user.py:1025
msgid "Registered but disabled"
-msgstr ""
+msgstr "ลงทะเบียนแล้วแต่ปิดใช้งาน"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/translation/translation.json
msgid "Rejected"
-msgstr ""
+msgstr "ถูกปฏิเสธ"
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:30
msgid "Relay Server URL missing"
-msgstr ""
+msgstr "ไม่มี URL เซิร์ฟเวอร์รีเลย์"
#. Label of the section_break_qgjr (Section Break) field in DocType 'Push
#. Notification Settings'
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json
msgid "Relay Settings"
-msgstr ""
+msgstr "การตั้งค่ารีเลย์"
#. Group in Package's connections
#: frappe/core/doctype/package/package.json
@@ -20683,40 +20683,40 @@ msgstr ""
#. Release'
#: frappe/core/doctype/package_release/package_release.json
msgid "Release Notes"
-msgstr ""
+msgstr "หมายเหตุการปล่อย"
#: frappe/core/doctype/communication/communication.js:48
#: frappe/core/doctype/communication/communication.js:159
msgid "Relink"
-msgstr ""
+msgstr "ลิงก์ใหม่"
#: frappe/core/doctype/communication/communication.js:138
msgid "Relink Communication"
-msgstr ""
+msgstr "ลิงก์ใหม่การสื่อสาร"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Relinked"
-msgstr ""
+msgstr "ลิงก์ใหม่แล้ว"
#. Label of a standard navbar item
#. Type: Action
#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py
#: frappe/public/js/frappe/form/toolbar.js:444
msgid "Reload"
-msgstr ""
+msgstr "โหลดใหม่"
#: frappe/public/js/frappe/form/controls/attach.js:16
msgid "Reload File"
-msgstr ""
+msgstr "โหลดไฟล์ใหม่"
#: frappe/public/js/frappe/list/base_list.js:249
msgid "Reload List"
-msgstr ""
+msgstr "โหลดรายการใหม่"
#: frappe/public/js/frappe/views/reports/query_report.js:100
msgid "Reload Report"
-msgstr ""
+msgstr "โหลดรายงานใหม่"
#. Label of the remember_last_selected_value (Check) field in DocType
#. 'DocField'
@@ -20725,92 +20725,92 @@ msgstr ""
#: frappe/core/doctype/docfield/docfield.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Remember Last Selected Value"
-msgstr ""
+msgstr "จำค่าที่เลือกครั้งสุดท้าย"
#. Label of the remind_at (Datetime) field in DocType 'Reminder'
#: frappe/automation/doctype/reminder/reminder.json
#: frappe/public/js/frappe/form/reminders.js:33
msgid "Remind At"
-msgstr ""
+msgstr "เตือนที่"
#: frappe/public/js/frappe/form/toolbar.js:476
msgid "Remind Me"
-msgstr ""
+msgstr "เตือนฉัน"
#: frappe/public/js/frappe/form/reminders.js:13
msgid "Remind Me In"
-msgstr ""
+msgstr "เตือนฉันใน"
#. Name of a DocType
#: frappe/automation/doctype/reminder/reminder.json
msgid "Reminder"
-msgstr ""
+msgstr "การเตือน"
#: frappe/automation/doctype/reminder/reminder.py:39
msgid "Reminder cannot be created in past."
-msgstr ""
+msgstr "ไม่สามารถสร้างการเตือนในอดีตได้"
#: frappe/public/js/frappe/form/reminders.js:96
msgid "Reminder set at {0}"
-msgstr ""
+msgstr "ตั้งค่าการเตือนที่ {0}"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:14
#: frappe/public/js/frappe/ui/filters/edit_filter.html:4
#: frappe/public/js/frappe/ui/group_by/group_by.html:4
msgid "Remove"
-msgstr ""
+msgstr "ลบ"
#: frappe/core/doctype/rq_job/rq_job_list.js:8
msgid "Remove Failed Jobs"
-msgstr ""
+msgstr "ลบงานที่ล้มเหลว"
#: frappe/printing/page/print_format_builder/print_format_builder.js:493
msgid "Remove Field"
-msgstr ""
+msgstr "ลบฟิลด์"
#: frappe/printing/page/print_format_builder/print_format_builder.js:427
msgid "Remove Section"
-msgstr ""
+msgstr "ลบส่วน"
#: frappe/custom/doctype/customize_form/customize_form.js:138
msgid "Remove all customizations?"
-msgstr ""
+msgstr "ลบการปรับแต่งทั้งหมดหรือไม่?"
#: frappe/public/js/form_builder/components/Section.vue:286
msgid "Remove all fields in the column"
-msgstr ""
+msgstr "ลบฟิลด์ทั้งหมดในคอลัมน์"
#: frappe/public/js/form_builder/components/Section.vue:278
#: frappe/public/js/frappe/utils/datatable.js:9
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:120
msgid "Remove column"
-msgstr ""
+msgstr "ลบคอลัมน์"
#: frappe/public/js/form_builder/components/Field.vue:260
msgid "Remove field"
-msgstr ""
+msgstr "ลบฟิลด์"
#: frappe/public/js/form_builder/components/Section.vue:279
msgid "Remove last column"
-msgstr ""
+msgstr "ลบคอลัมน์สุดท้าย"
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:130
msgid "Remove page break"
-msgstr ""
+msgstr "ลบการแบ่งหน้า"
#: frappe/public/js/form_builder/components/Section.vue:266
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:135
msgid "Remove section"
-msgstr ""
+msgstr "ลบส่วน"
#: frappe/public/js/form_builder/components/Tabs.vue:140
msgid "Remove tab"
-msgstr ""
+msgstr "ลบแท็บ"
#. Option for the 'Status' (Select) field in DocType 'Permission Log'
#: frappe/core/doctype/permission_log/permission_log.json
msgid "Removed"
-msgstr ""
+msgstr "ลบแล้ว"
#: frappe/custom/doctype/custom_field/custom_field.js:137
#: frappe/public/js/frappe/form/toolbar.js:254
@@ -20819,68 +20819,68 @@ msgstr ""
#: frappe/public/js/frappe/model/model.js:723
#: frappe/public/js/frappe/views/treeview.js:311
msgid "Rename"
-msgstr ""
+msgstr "เปลี่ยนชื่อ"
#: frappe/custom/doctype/custom_field/custom_field.js:116
#: frappe/custom/doctype/custom_field/custom_field.js:136
msgid "Rename Fieldname"
-msgstr ""
+msgstr "เปลี่ยนชื่อฟิลด์"
#: frappe/public/js/frappe/model/model.js:710
msgid "Rename {0}"
-msgstr ""
+msgstr "เปลี่ยนชื่อ {0}"
#: frappe/core/doctype/doctype/doctype.py:698
msgid "Renamed files and replaced code in controllers, please check!"
-msgstr ""
+msgstr "เปลี่ยนชื่อไฟล์และแทนที่โค้ดในตัวควบคุมแล้ว โปรดตรวจสอบ!"
#: frappe/public/js/print_format_builder/PrintFormatSection.vue:17
msgid "Render labels to the left and values to the right in this section"
-msgstr ""
+msgstr "แสดงป้ายกำกับทางซ้ายและค่าในทางขวาในส่วนนี้"
#: frappe/core/doctype/communication/communication.js:43
#: frappe/desk/doctype/todo/todo.js:36
msgid "Reopen"
-msgstr ""
+msgstr "เปิดใหม่"
#: frappe/public/js/frappe/form/toolbar.js:544
msgid "Repeat"
-msgstr ""
+msgstr "ทำซ้ำ"
#. Label of the repeat_header_footer (Check) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Repeat Header and Footer"
-msgstr ""
+msgstr "ทำซ้ำส่วนหัวและส่วนท้าย"
#. Label of the repeat_on (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Repeat On"
-msgstr ""
+msgstr "ทำซ้ำใน"
#. Label of the repeat_till (Date) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Repeat Till"
-msgstr ""
+msgstr "ทำซ้ำจนถึง"
#. Label of the repeat_on_day (Int) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Repeat on Day"
-msgstr ""
+msgstr "ทำซ้ำในวัน"
#. Label of the repeat_on_days (Table) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Repeat on Days"
-msgstr ""
+msgstr "ทำซ้ำในหลายวัน"
#. Label of the repeat_on_last_day (Check) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
msgid "Repeat on Last Day of the Month"
-msgstr ""
+msgstr "ทำซ้ำในวันสุดท้ายของเดือน"
#. Label of the repeat_this_event (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Repeat this Event"
-msgstr ""
+msgstr "ทำซ้ำเหตุการณ์นี้"
#: frappe/utils/password_strength.py:110
msgid "Repeats like \"aaa\" are easy to guess"
@@ -20892,38 +20892,38 @@ msgstr ""
#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151
msgid "Repeats {0}"
-msgstr ""
+msgstr "ทำซ้ำ {0}"
#: frappe/core/doctype/role_replication/role_replication.js:7
#: frappe/core/doctype/role_replication/role_replication.js:14
msgid "Replicate"
-msgstr ""
+msgstr "ทำซ้ำ"
#: frappe/core/doctype/role_replication/role_replication.js:8
msgid "Replicating..."
-msgstr ""
+msgstr "กำลังทำซ้ำ..."
#: frappe/core/doctype/role_replication/role_replication.js:13
msgid "Replication completed."
-msgstr ""
+msgstr "การทำซ้ำเสร็จสมบูรณ์"
#. Option for the 'Status' (Select) field in DocType 'Contact'
#. Option for the 'Status' (Select) field in DocType 'Communication'
#: frappe/contacts/doctype/contact/contact.json
#: frappe/core/doctype/communication/communication.json
msgid "Replied"
-msgstr ""
+msgstr "ตอบกลับแล้ว"
#. Label of the reply (Text Editor) field in DocType 'Discussion Reply'
#: frappe/core/doctype/communication/communication.js:57
#: frappe/public/js/frappe/form/footer/form_timeline.js:563
#: frappe/website/doctype/discussion_reply/discussion_reply.json
msgid "Reply"
-msgstr ""
+msgstr "ตอบกลับ"
#: frappe/core/doctype/communication/communication.js:62
msgid "Reply All"
-msgstr ""
+msgstr "ตอบกลับทั้งหมด"
#. Label of the report (Check) field in DocType 'Custom DocPerm'
#. Label of the report (Link) field in DocType 'Custom Role'
@@ -20961,7 +20961,7 @@ msgstr ""
#: frappe/public/js/frappe/request.js:615
#: frappe/public/js/frappe/utils/utils.js:920
msgid "Report"
-msgstr ""
+msgstr "รายงาน"
#. Option for the 'Report Type' (Select) field in DocType 'Report'
#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut'
@@ -20969,32 +20969,32 @@ msgstr ""
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/list/list_view_select.js:66
msgid "Report Builder"
-msgstr ""
+msgstr "ตัวสร้างรายงาน"
#. Name of a DocType
#: frappe/core/doctype/report_column/report_column.json
msgid "Report Column"
-msgstr ""
+msgstr "คอลัมน์รายงาน"
#. Label of the report_description (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Report Description"
-msgstr ""
+msgstr "คำอธิบายรายงาน"
#: frappe/core/doctype/report/report.py:151
msgid "Report Document Error"
-msgstr ""
+msgstr "ข้อผิดพลาดเอกสารรายงาน"
#. Name of a DocType
#: frappe/core/doctype/report_filter/report_filter.json
msgid "Report Filter"
-msgstr ""
+msgstr "ตัวกรองรายงาน"
#. Label of the report_filters (Section Break) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Filters"
-msgstr ""
+msgstr "ตัวกรองรายงาน"
#. Label of the report_hide (Check) field in DocType 'DocField'
#. Label of the report_hide (Check) field in DocType 'Custom Field'
@@ -21003,19 +21003,19 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Report Hide"
-msgstr ""
+msgstr "ซ่อนรายงาน"
#. Label of the report_information_section (Section Break) field in DocType
#. 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Report Information"
-msgstr ""
+msgstr "ข้อมูลรายงาน"
#. Name of a role
#: frappe/core/doctype/report/report.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Manager"
-msgstr ""
+msgstr "ผู้จัดการรายงาน"
#. Label of the report_name (Data) field in DocType 'Access Log'
#. Label of the report_name (Data) field in DocType 'Prepared Report'
@@ -21030,24 +21030,24 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/public/js/frappe/views/reports/query_report.js:1904
msgid "Report Name"
-msgstr ""
+msgstr "ชื่อรายงาน"
#: frappe/desk/doctype/number_card/number_card.py:69
msgid "Report Name, Report Field and Fucntion are required to create a number card"
-msgstr ""
+msgstr "ชื่อรายงาน ฟิลด์รายงาน และฟังก์ชันเป็นสิ่งจำเป็นในการสร้างการ์ดตัวเลข"
#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Link'
#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Shortcut'
#: frappe/desk/doctype/workspace_link/workspace_link.json
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Report Ref DocType"
-msgstr ""
+msgstr "ประเภทเอกสารอ้างอิงรายงาน"
#. Label of the report_reference_doctype (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Report Reference Doctype"
-msgstr ""
+msgstr "ประเภทเอกสารอ้างอิงรายงาน"
#. Label of the report_type (Select) field in DocType 'Report'
#. Label of the report_type (Data) field in DocType 'Onboarding Step'
@@ -21056,99 +21056,99 @@ msgstr ""
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Report Type"
-msgstr ""
+msgstr "ประเภทรายงาน"
#: frappe/public/js/frappe/list/base_list.js:203
msgid "Report View"
-msgstr ""
+msgstr "มุมมองรายงาน"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:26
msgid "Report bug"
-msgstr ""
+msgstr "รายงานข้อบกพร่อง"
#: frappe/core/doctype/doctype/doctype.py:1809
msgid "Report cannot be set for Single types"
-msgstr ""
+msgstr "ไม่สามารถตั้งค่ารายงานสำหรับประเภทเดี่ยวได้"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208
#: frappe/desk/doctype/number_card/number_card.js:191
msgid "Report has no data, please modify the filters or change the Report Name"
-msgstr ""
+msgstr "รายงานไม่มีข้อมูล โปรดแก้ไขตัวกรองหรือเปลี่ยนชื่อรายงาน"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196
#: frappe/desk/doctype/number_card/number_card.js:186
msgid "Report has no numeric fields, please change the Report Name"
-msgstr ""
+msgstr "รายงานไม่มีฟิลด์ตัวเลข โปรดเปลี่ยนชื่อรายงาน"
#: frappe/public/js/frappe/views/reports/query_report.js:1011
msgid "Report initiated, click to view status"
-msgstr ""
+msgstr "เริ่มต้นรายงานแล้ว คลิกเพื่อดูสถานะ"
#: frappe/email/doctype/auto_email_report/auto_email_report.py:108
msgid "Report limit reached"
-msgstr ""
+msgstr "ถึงขีดจำกัดรายงานแล้ว"
#: frappe/core/doctype/prepared_report/prepared_report.py:223
msgid "Report timed out."
-msgstr ""
+msgstr "รายงานหมดเวลา"
#: frappe/desk/query_report.py:597
msgid "Report updated successfully"
-msgstr ""
+msgstr "อัปเดตรายงานเรียบร้อยแล้ว"
#: frappe/public/js/frappe/views/reports/report_view.js:1357
msgid "Report was not saved (there were errors)"
-msgstr ""
+msgstr "รายงานไม่ได้รับการบันทึก (มีข้อผิดพลาด)"
#: frappe/public/js/frappe/views/reports/query_report.js:1942
msgid "Report with more than 10 columns looks better in Landscape mode."
-msgstr ""
+msgstr "รายงานที่มีมากกว่า 10 คอลัมน์ดูดีกว่าในโหมดแนวนอน"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252
msgid "Report {0}"
-msgstr ""
+msgstr "รายงาน {0}"
#: frappe/desk/reportview.py:364
msgid "Report {0} deleted"
-msgstr ""
+msgstr "ลบรายงาน {0} แล้ว"
#: frappe/desk/query_report.py:53
msgid "Report {0} is disabled"
-msgstr ""
+msgstr "รายงาน {0} ถูกปิดใช้งาน"
#: frappe/desk/reportview.py:341
msgid "Report {0} saved"
-msgstr ""
+msgstr "บันทึกรายงาน {0} แล้ว"
#: frappe/public/js/frappe/views/reports/report_view.js:20
msgid "Report:"
-msgstr ""
+msgstr "รายงาน:"
#. Label of the prepared_report_section (Section Break) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:547
msgid "Reports"
-msgstr ""
+msgstr "รายงาน"
#: frappe/patches/v14_0/update_workspace2.py:50
msgid "Reports & Masters"
-msgstr ""
+msgstr "รายงานและมาสเตอร์"
#: frappe/public/js/frappe/views/reports/query_report.js:927
msgid "Reports already in Queue"
-msgstr ""
+msgstr "รายงานอยู่ในคิวแล้ว"
#. Description of a DocType
#: frappe/core/doctype/user/user.json
msgid "Represents a User in the system."
-msgstr ""
+msgstr "แสดงถึงผู้ใช้ในระบบ"
#. Description of a DocType
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Represents the states allowed in one document and role assigned to change the state."
-msgstr ""
+msgstr "แสดงถึงสถานะที่อนุญาตในเอกสารหนึ่งและบทบาทที่กำหนดให้เปลี่ยนสถานะ"
#: frappe/integrations/doctype/webhook/webhook.js:101
msgid "Request Body"
@@ -21319,7 +21319,7 @@ msgstr ""
#: frappe/templates/emails/password_reset.html:3
msgid "Reset your password"
-msgstr ""
+msgstr "รีเซ็ตรหัสผ่านของคุณ"
#. Label of the response (Text Editor) field in DocType 'Email Template'
#. Label of the response_section (Section Break) field in DocType 'Integration
@@ -21329,7 +21329,7 @@ msgstr ""
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Response"
-msgstr ""
+msgstr "การตอบกลับ"
#. Label of the response_html (Code) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
@@ -21339,38 +21339,38 @@ msgstr ""
#. Label of the response_type (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Response Type"
-msgstr ""
+msgstr "ประเภทการตอบกลับ"
#: frappe/public/js/frappe/ui/notifications/notifications.js:414
msgid "Rest of the day"
-msgstr ""
+msgstr "ส่วนที่เหลือของวัน"
#: frappe/core/doctype/deleted_document/deleted_document.js:11
#: frappe/core/doctype/deleted_document/deleted_document_list.js:48
msgid "Restore"
-msgstr ""
+msgstr "กู้คืน"
#: frappe/core/page/permission_manager/permission_manager.js:509
msgid "Restore Original Permissions"
-msgstr ""
+msgstr "กู้คืนสิทธิ์ดั้งเดิม"
#: frappe/website/doctype/portal_settings/portal_settings.js:20
msgid "Restore to default settings?"
-msgstr ""
+msgstr "กู้คืนการตั้งค่าเริ่มต้นหรือไม่?"
#. Label of the restored (Check) field in DocType 'Deleted Document'
#: frappe/core/doctype/deleted_document/deleted_document.json
msgid "Restored"
-msgstr ""
+msgstr "กู้คืนแล้ว"
#: frappe/core/doctype/deleted_document/deleted_document.py:74
msgid "Restoring Deleted Document"
-msgstr ""
+msgstr "กำลังกู้คืนเอกสารที่ถูกลบ"
#. Label of the restrict_ip (Small Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Restrict IP"
-msgstr ""
+msgstr "จำกัด IP"
#. Label of the restrict_to_domain (Link) field in DocType 'DocType'
#. Label of the restrict_to_domain (Link) field in DocType 'Module Def'
@@ -21380,7 +21380,7 @@ msgstr ""
#: frappe/core/doctype/module_def/module_def.json
#: frappe/core/doctype/page/page.json frappe/core/doctype/role/role.json
msgid "Restrict To Domain"
-msgstr ""
+msgstr "จำกัดเฉพาะโดเมน"
#. Label of the restrict_to_domain (Link) field in DocType 'Workspace'
#. Label of the restrict_to_domain (Link) field in DocType 'Workspace Shortcut'
@@ -21392,59 +21392,59 @@ msgstr ""
#. Description of the 'Restrict IP' (Small Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)"
-msgstr ""
+msgstr "จำกัดผู้ใช้จากที่อยู่ IP นี้เท่านั้น สามารถเพิ่มที่อยู่ IP หลายรายการโดยคั่นด้วยเครื่องหมายจุลภาค และยังยอมรับที่อยู่ IP บางส่วน เช่น (111.111.111)"
#: frappe/public/js/frappe/list/list_view.js:196
msgctxt "Title of message showing restrictions in list view"
msgid "Restrictions"
-msgstr ""
+msgstr "ข้อจำกัด"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:382
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:397
msgid "Result"
-msgstr ""
+msgstr "ผลลัพธ์"
#: frappe/email/doctype/email_queue/email_queue_list.js:27
msgid "Resume Sending"
-msgstr ""
+msgstr "ดำเนินการส่งต่อ"
#. Label of the retry (Int) field in DocType 'Email Queue'
#: frappe/core/doctype/data_import/data_import.js:110
#: frappe/desk/page/setup_wizard/setup_wizard.js:297
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Retry"
-msgstr ""
+msgstr "ลองใหม่"
#: frappe/email/doctype/email_queue/email_queue_list.js:47
msgid "Retry Sending"
-msgstr ""
+msgstr "ลองส่งใหม่"
#: frappe/www/qrcode.html:15
msgid "Return to the Verification screen and enter the code displayed by your authentication app"
-msgstr ""
+msgstr "กลับไปที่หน้าจอยืนยันและป้อนรหัสที่แสดงโดยแอปยืนยันตัวตนของคุณ"
#. Label of the reverse (Check) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "Reverse Icon Color"
-msgstr ""
+msgstr "ย้อนกลับสีไอคอน"
#: frappe/database/schema.py:161
msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data."
-msgstr ""
+msgstr "กำลังเปลี่ยนความยาวกลับเป็น {0} สำหรับ '{1}' ใน '{2}' การตั้งค่าความยาวเป็น {3} จะทำให้ข้อมูลถูกตัดทอน"
#. Label of the revocation_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Revocation URI"
-msgstr ""
+msgstr "URI การเพิกถอน"
#: frappe/www/third_party_apps.html:47
msgid "Revoke"
-msgstr ""
+msgstr "เพิกถอน"
#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token'
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
msgid "Revoked"
-msgstr ""
+msgstr "ถูกเพิกถอน"
#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
@@ -21454,7 +21454,7 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
msgid "Rich Text"
-msgstr ""
+msgstr "ข้อความที่มีรูปแบบ"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Align' (Select) field in DocType 'Letter Head'
@@ -21463,23 +21463,23 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Right"
-msgstr ""
+msgstr "ขวา"
#: frappe/printing/page/print_format_builder/print_format_builder.js:484
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:156
msgctxt "alignment"
msgid "Right"
-msgstr ""
+msgstr "ขวา"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Right Bottom"
-msgstr ""
+msgstr "ขวาล่าง"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "Right Center"
-msgstr ""
+msgstr "ขวากลาง"
#. Label of the robots_txt (Code) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -21515,47 +21515,47 @@ msgstr ""
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
msgid "Role"
-msgstr ""
+msgstr "บทบาท"
#: frappe/core/doctype/role/role.js:8
msgid "Role 'All' will be given to all system + website users."
-msgstr ""
+msgstr "บทบาท 'ทั้งหมด' จะถูกมอบให้กับผู้ใช้ระบบ + เว็บไซต์ทั้งหมด"
#: frappe/core/doctype/role/role.js:13
msgid "Role 'Desk User' will be given to all system users."
-msgstr ""
+msgstr "บทบาท 'ผู้ใช้เดสก์' จะถูกมอบให้กับผู้ใช้ระบบทั้งหมด"
#. Label of the role_name (Data) field in DocType 'Role'
#. Label of the role_profile (Data) field in DocType 'Role Profile'
#: frappe/core/doctype/role/role.json
#: frappe/core/doctype/role_profile/role_profile.json
msgid "Role Name"
-msgstr ""
+msgstr "ชื่อบทบาท"
#. Name of a DocType
#. Label of a Link in the Users Workspace
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
#: frappe/core/workspace/users/users.json
msgid "Role Permission for Page and Report"
-msgstr ""
+msgstr "สิทธิ์บทบาทสำหรับหน้าและรายงาน"
#. Label of the permissions_section (Section Break) field in DocType 'User
#. Document Type'
#: frappe/core/doctype/user_document_type/user_document_type.json
#: frappe/public/js/frappe/roles_editor.js:103
msgid "Role Permissions"
-msgstr ""
+msgstr "สิทธิ์บทบาท"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager.js:4
#: frappe/core/workspace/users/users.json
msgid "Role Permissions Manager"
-msgstr ""
+msgstr "ผู้จัดการสิทธิ์บทบาท"
#: frappe/public/js/frappe/list/list_view.js:1788
msgctxt "Button in list view menu"
msgid "Role Permissions Manager"
-msgstr ""
+msgstr "ผู้จัดการสิทธิ์บทบาท"
#. Name of a DocType
#. Label of the role_profile_name (Link) field in DocType 'User'
@@ -21566,17 +21566,17 @@ msgstr ""
#: frappe/core/doctype/user_role_profile/user_role_profile.json
#: frappe/core/workspace/users/users.json
msgid "Role Profile"
-msgstr ""
+msgstr "โปรไฟล์บทบาท"
#. Label of the role_profiles (Table MultiSelect) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Role Profiles"
-msgstr ""
+msgstr "โปรไฟล์บทบาท"
#. Name of a DocType
#: frappe/core/doctype/role_replication/role_replication.json
msgid "Role Replication"
-msgstr ""
+msgstr "การจำลองบทบาท"
#. Label of the role_and_level (Section Break) field in DocType 'Custom
#. DocPerm'
@@ -21584,11 +21584,11 @@ msgstr ""
#: frappe/core/doctype/custom_docperm/custom_docperm.json
#: frappe/core/doctype/docperm/docperm.json
msgid "Role and Level"
-msgstr ""
+msgstr "บทบาทและระดับ"
#: frappe/core/doctype/user/user.py:364
msgid "Role has been set as per the user type {0}"
-msgstr ""
+msgstr "บทบาทถูกตั้งค่าตามประเภทผู้ใช้ {0}"
#. Label of the roles (Table) field in DocType 'Page'
#. Label of the roles (Table) field in DocType 'Report'
@@ -21609,50 +21609,50 @@ msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/workspace/workspace.json
msgid "Roles"
-msgstr ""
+msgstr "บทบาท"
#. Label of the roles_permissions_tab (Tab Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Roles & Permissions"
-msgstr ""
+msgstr "บทบาทและสิทธิ์"
#. Label of the roles (Table) field in DocType 'Role Profile'
#. Label of the roles (Table) field in DocType 'User'
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
msgid "Roles Assigned"
-msgstr ""
+msgstr "บทบาทที่กำหนด"
#. Label of the roles_html (HTML) field in DocType 'Role Profile'
#. Label of the roles_html (HTML) field in DocType 'User'
#: frappe/core/doctype/role_profile/role_profile.json
#: frappe/core/doctype/user/user.json
msgid "Roles HTML"
-msgstr ""
+msgstr "บทบาท HTML"
#. Label of the roles_html (HTML) field in DocType 'Role Permission for Page
#. and Report'
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
msgid "Roles Html"
-msgstr ""
+msgstr "บทบาท Html"
#: frappe/core/page/permission_manager/permission_manager_help.html:7
msgid "Roles can be set for users from their User page."
-msgstr ""
+msgstr "บทบาทสามารถตั้งค่าสำหรับผู้ใช้จากหน้าผู้ใช้ของพวกเขา"
#: frappe/utils/nestedset.py:280
msgid "Root {0} cannot be deleted"
-msgstr ""
+msgstr "ไม่สามารถลบราก {0} ได้"
#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Round Robin"
-msgstr ""
+msgstr "รอบโรบิน"
#. Label of the rounding_method (Select) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Rounding Method"
-msgstr ""
+msgstr "วิธีการปัดเศษ"
#. Label of the route (Data) field in DocType 'DocType'
#. Option for the 'Action Type' (Select) field in DocType 'DocType Action'
@@ -21684,17 +21684,17 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Route"
-msgstr ""
+msgstr "เส้นทาง"
#. Name of a DocType
#: frappe/desk/doctype/route_history/route_history.json
msgid "Route History"
-msgstr ""
+msgstr "ประวัติเส้นทาง"
#. Label of the route_redirects (Table) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Route Redirects"
-msgstr ""
+msgstr "เปลี่ยนเส้นทางเส้นทาง"
#. Description of the 'Home Page' (Data) field in DocType 'Role'
#: frappe/core/doctype/role/role.json
@@ -21703,24 +21703,24 @@ msgstr ""
#: frappe/model/base_document.py:852 frappe/model/document.py:777
msgid "Row"
-msgstr ""
+msgstr "แถว"
#: frappe/core/doctype/version/version_view.html:73
msgid "Row #"
-msgstr ""
+msgstr "แถว #"
#: frappe/core/doctype/doctype/doctype.py:1831
#: frappe/core/doctype/doctype/doctype.py:1841
msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype"
-msgstr ""
+msgstr "แถว # {0}: ผู้ใช้ที่ไม่ใช่ผู้ดูแลระบบไม่สามารถตั้งค่าบทบาท {1} ให้กับประเภทเอกสารที่กำหนดเองได้"
#: frappe/model/base_document.py:982
msgid "Row #{0}:"
-msgstr ""
+msgstr "แถว #{0}:"
#: frappe/core/doctype/doctype/doctype.py:491
msgid "Row #{}: Fieldname is required"
-msgstr ""
+msgstr "ต้องการชื่อฟิลด์"
#. Label of the row_format (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -21752,15 +21752,15 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.js:367
msgid "Row {0}"
-msgstr ""
+msgstr "แถว {0}"
#: frappe/custom/doctype/customize_form/customize_form.py:352
msgid "Row {0}: Not allowed to disable Mandatory for standard fields"
-msgstr ""
+msgstr "แถว {0}: ไม่อนุญาตให้ปิดใช้งานข้อบังคับสำหรับฟิลด์มาตรฐาน"
#: frappe/custom/doctype/customize_form/customize_form.py:341
msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields"
-msgstr ""
+msgstr "แถว {0}: ไม่อนุญาตให้เปิดใช้งานอนุญาตในการส่งสำหรับฟิลด์มาตรฐาน"
#. Label of the rows_added_section (Section Break) field in DocType 'Audit
#. Trail'
@@ -21844,41 +21844,41 @@ msgstr ""
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/email/doctype/notification/notification.json
msgid "SMS"
-msgstr ""
+msgstr "ข้อความ SMS"
#. Label of the sms_gateway_url (Small Text) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "SMS Gateway URL"
-msgstr ""
+msgstr "URL เกตเวย์ SMS"
#. Name of a DocType
#: frappe/core/doctype/sms_log/sms_log.json
msgid "SMS Log"
-msgstr ""
+msgstr "บันทึก SMS"
#. Name of a DocType
#: frappe/core/doctype/sms_parameter/sms_parameter.json
msgid "SMS Parameter"
-msgstr ""
+msgstr "พารามิเตอร์ SMS"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
#: frappe/core/doctype/sms_settings/sms_settings.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "SMS Settings"
-msgstr ""
+msgstr "การตั้งค่า SMS"
#: frappe/core/doctype/sms_settings/sms_settings.py:110
msgid "SMS sent successfully"
-msgstr ""
+msgstr "ส่ง SMS สำเร็จ"
#: frappe/templates/includes/login/login.js:369
msgid "SMS was not sent. Please contact Administrator."
-msgstr ""
+msgstr "SMS ไม่ถูกส่ง โปรดติดต่อผู้ดูแลระบบ"
#: frappe/email/doctype/email_account/email_account.py:212
msgid "SMTP Server is required"
-msgstr ""
+msgstr "ต้องการเซิร์ฟเวอร์ SMTP"
#. Option for the 'Type' (Select) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
@@ -21894,17 +21894,17 @@ msgstr ""
#: frappe/core/doctype/recorder/recorder.js:85
#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "SQL Explain"
-msgstr ""
+msgstr "อธิบาย SQL"
#. Label of the sql_output (HTML) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "SQL Output"
-msgstr ""
+msgstr "ผลลัพธ์ SQL"
#. Label of the sql_queries (Table) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "SQL Queries"
-msgstr ""
+msgstr "คำสั่ง SQL"
#. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
@@ -21913,30 +21913,30 @@ msgstr ""
#: frappe/public/js/frappe/color_picker/color_picker.js:20
msgid "SWATCHES"
-msgstr ""
+msgstr "ตัวอย่างสี"
#. Name of a role
#: frappe/contacts/doctype/contact/contact.json
msgid "Sales Manager"
-msgstr ""
+msgstr "ผู้จัดการฝ่ายขาย"
#. Name of a role
#: frappe/contacts/doctype/contact/contact.json
msgid "Sales Master Manager"
-msgstr ""
+msgstr "ผู้จัดการมาสเตอร์ฝ่ายขาย"
#. Name of a role
#: frappe/contacts/doctype/address/address.json
#: frappe/contacts/doctype/contact/contact.json
#: frappe/geo/doctype/currency/currency.json
msgid "Sales User"
-msgstr ""
+msgstr "ผู้ใช้การขาย"
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Salesforce"
-msgstr ""
+msgstr "เซลส์ฟอร์ซ"
#. Label of the salutation (Link) field in DocType 'Contact'
#. Name of a DocType
@@ -21944,16 +21944,16 @@ msgstr ""
#: frappe/contacts/doctype/contact/contact.json
#: frappe/contacts/doctype/salutation/salutation.json
msgid "Salutation"
-msgstr ""
+msgstr "คำทักทาย"
#: frappe/integrations/doctype/webhook/webhook.py:109
msgid "Same Field is entered more than once"
-msgstr ""
+msgstr "ฟิลด์เดียวกันถูกป้อนมากกว่าหนึ่งครั้ง"
#. Label of the sample (HTML) field in DocType 'Client Script'
#: frappe/custom/doctype/client_script/client_script.json
msgid "Sample"
-msgstr ""
+msgstr "ตัวอย่าง"
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -21969,7 +21969,7 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Saturday"
-msgstr ""
+msgstr "วันเสาร์"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/core/doctype/data_import/data_import.js:113
@@ -21994,41 +21994,41 @@ msgstr ""
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:15
#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:33
msgid "Save"
-msgstr ""
+msgstr "บันทึก"
#: frappe/core/doctype/user/user.js:339
msgid "Save API Secret: {0}"
-msgstr ""
+msgstr "บันทึกความลับ API: {0}"
#: frappe/workflow/doctype/workflow/workflow.js:143
msgid "Save Anyway"
-msgstr ""
+msgstr "บันทึกอยู่ดี"
#: frappe/public/js/frappe/views/reports/report_view.js:1388
#: frappe/public/js/frappe/views/reports/report_view.js:1733
msgid "Save As"
-msgstr ""
+msgstr "บันทึกเป็น"
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:63
msgid "Save Customizations"
-msgstr ""
+msgstr "บันทึกการปรับแต่ง"
#: frappe/public/js/frappe/views/reports/query_report.js:1899
msgid "Save Report"
-msgstr ""
+msgstr "บันทึกรายงาน"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:97
msgid "Save filters"
-msgstr ""
+msgstr "บันทึกตัวกรอง"
#. Label of the save_on_complete (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Save on Completion"
-msgstr ""
+msgstr "บันทึกเมื่อเสร็จสิ้น"
#: frappe/public/js/frappe/form/form_tour.js:295
msgid "Save the document."
-msgstr ""
+msgstr "บันทึกเอกสาร"
#: frappe/model/rename_doc.py:106
#: frappe/printing/page/print_format_builder/print_format_builder.js:858
@@ -22036,36 +22036,36 @@ msgstr ""
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917
#: frappe/public/js/frappe/views/workspace/workspace.js:684
msgid "Saved"
-msgstr ""
+msgstr "บันทึกแล้ว"
#: frappe/public/js/frappe/list/list_sidebar.html:88
msgid "Saved Filters"
-msgstr ""
+msgstr "ตัวกรองที่บันทึกไว้"
#: frappe/public/js/frappe/list/list_settings.js:40
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47
#: frappe/public/js/frappe/views/workspace/workspace.js:348
msgid "Saving"
-msgstr ""
+msgstr "กำลังบันทึก"
#: frappe/public/js/frappe/form/save.js:9
msgctxt "Freeze message while saving a document"
msgid "Saving"
-msgstr ""
+msgstr "กำลังบันทึก"
#: frappe/custom/doctype/customize_form/customize_form.js:411
msgid "Saving Customization..."
-msgstr ""
+msgstr "กำลังบันทึกการปรับแต่ง..."
#: frappe/desk/doctype/module_onboarding/module_onboarding.js:8
msgid "Saving this will export this document as well as the steps linked here as json."
-msgstr ""
+msgstr "การบันทึกนี้จะส่งออกเอกสารนี้รวมถึงขั้นตอนที่เชื่อมโยงที่นี่เป็น json"
#: frappe/public/js/form_builder/store.js:233
#: frappe/public/js/print_format_builder/store.js:36
#: frappe/public/js/workflow_builder/store.js:73
msgid "Saving..."
-msgstr ""
+msgstr "กำลังบันทึก..."
#: frappe/public/js/frappe/scanner/index.js:72
msgid "Scan QRCode"
@@ -22471,7 +22471,7 @@ msgstr ""
#: frappe/public/js/frappe/form/controls/multicheck.js:166
#: frappe/public/js/frappe/form/grid_row.js:481
msgid "Select All"
-msgstr ""
+msgstr "เลือกทั้งหมด"
#: frappe/public/js/frappe/views/communication.js:174
#: frappe/public/js/frappe/views/communication.js:595
@@ -22553,187 +22553,187 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:236
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181
msgid "Select Fields"
-msgstr ""
+msgstr "เลือกฟิลด์"
#: frappe/public/js/frappe/data_import/data_exporter.js:147
msgid "Select Fields To Insert"
-msgstr ""
+msgstr "เลือกฟิลด์เพื่อแทรก"
#: frappe/public/js/frappe/data_import/data_exporter.js:148
msgid "Select Fields To Update"
-msgstr ""
+msgstr "เลือกฟิลด์เพื่ออัปเดต"
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:21
msgid "Select Filters"
-msgstr ""
+msgstr "เลือกตัวกรอง"
#: frappe/desk/doctype/event/event.py:103
msgid "Select Google Calendar to which event should be synced."
-msgstr ""
+msgstr "เลือก Google Calendar ที่จะซิงค์เหตุการณ์"
#: frappe/contacts/doctype/contact/contact.py:77
msgid "Select Google Contacts to which contact should be synced."
-msgstr ""
+msgstr "เลือก Google Contacts ที่จะซิงค์ผู้ติดต่อ"
#: frappe/public/js/frappe/ui/group_by/group_by.html:10
msgid "Select Group By..."
-msgstr ""
+msgstr "เลือกกลุ่มตาม..."
#: frappe/public/js/frappe/list/list_view_select.js:185
msgid "Select Kanban"
-msgstr ""
+msgstr "เลือก Kanban"
#: frappe/desk/page/setup_wizard/setup_wizard.js:391
msgid "Select Language"
-msgstr ""
+msgstr "เลือกภาษา"
#. Label of the list_name (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select List View"
-msgstr ""
+msgstr "เลือกมุมมองรายการ"
#: frappe/public/js/frappe/data_import/data_exporter.js:158
msgid "Select Mandatory"
-msgstr ""
+msgstr "เลือกข้อบังคับ"
#: frappe/custom/doctype/customize_form/customize_form.js:280
msgid "Select Module"
-msgstr ""
+msgstr "เลือกโมดูล"
#: frappe/printing/page/print/print.js:175
#: frappe/printing/page/print/print.js:585
msgid "Select Network Printer"
-msgstr ""
+msgstr "เลือกเครื่องพิมพ์เครือข่าย"
#. Label of the page_name (Link) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Page"
-msgstr ""
+msgstr "เลือกหน้า"
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68
#: frappe/public/js/frappe/views/communication.js:157
msgid "Select Print Format"
-msgstr ""
+msgstr "เลือกรูปแบบการพิมพ์"
#: frappe/printing/page/print_format_builder/print_format_builder.js:82
msgid "Select Print Format to Edit"
-msgstr ""
+msgstr "เลือกรูปแบบการพิมพ์เพื่อแก้ไข"
#. Label of the report_name (Link) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Report"
-msgstr ""
+msgstr "เลือกรายงาน"
#: frappe/printing/page/print_format_builder/print_format_builder.js:631
msgid "Select Table Columns for {0}"
-msgstr ""
+msgstr "เลือกคอลัมน์ตารางสำหรับ {0}"
#: frappe/desk/page/setup_wizard/setup_wizard.js:408
msgid "Select Time Zone"
-msgstr ""
+msgstr "เลือกเขตเวลา"
#. Label of the transaction_type (Autocomplete) field in DocType 'Document
#. Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Select Transaction"
-msgstr ""
+msgstr "เลือกธุรกรรม"
#: frappe/workflow/page/workflow_builder/workflow_builder.js:68
msgid "Select Workflow"
-msgstr ""
+msgstr "เลือกเวิร์กโฟลว์"
#. Label of the workspace_name (Link) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Select Workspace"
-msgstr ""
+msgstr "เลือกพื้นที่ทำงาน"
#. Label of the select_workspaces_section (Section Break) field in DocType
#. 'Workspace Settings'
#: frappe/desk/doctype/workspace_settings/workspace_settings.json
msgid "Select Workspaces"
-msgstr ""
+msgstr "เลือกพื้นที่ทำงาน"
#: frappe/website/doctype/website_settings/website_settings.js:23
msgid "Select a Brand Image first."
-msgstr ""
+msgstr "เลือกภาพแบรนด์ก่อน"
#: frappe/printing/page/print_format_builder/print_format_builder.js:108
msgid "Select a DocType to make a new format"
-msgstr ""
+msgstr "เลือกประเภทเอกสารเพื่อสร้างรูปแบบใหม่"
#: frappe/public/js/form_builder/components/Sidebar.vue:56
msgid "Select a field to edit its properties."
-msgstr ""
+msgstr "เลือกฟิลด์เพื่อแก้ไขคุณสมบัติ"
#: frappe/public/js/frappe/views/treeview.js:358
msgid "Select a group node first."
-msgstr ""
+msgstr "เลือกโหนดกลุ่มก่อน"
#: frappe/core/doctype/doctype/doctype.py:1942
msgid "Select a valid Sender Field for creating documents from Email"
-msgstr ""
+msgstr "เลือกฟิลด์ผู้ส่งที่ถูกต้องสำหรับการสร้างเอกสารจากอีเมล"
#: frappe/core/doctype/doctype/doctype.py:1926
msgid "Select a valid Subject field for creating documents from Email"
-msgstr ""
+msgstr "เลือกฟิลด์หัวเรื่องที่ถูกต้องสำหรับการสร้างเอกสารจากอีเมล"
#: frappe/public/js/frappe/form/form_tour.js:321
msgid "Select an Image"
-msgstr ""
+msgstr "เลือกภาพ"
#: frappe/www/apps.html:10
msgid "Select an app to continue"
-msgstr ""
+msgstr "เลือกแอปเพื่อดำเนินการต่อ"
#: frappe/printing/page/print_format_builder/print_format_builder_start.html:2
msgid "Select an existing format to edit or start a new format."
-msgstr ""
+msgstr "เลือกรูปแบบที่มีอยู่เพื่อแก้ไขหรือเริ่มรูปแบบใหม่"
#. Description of the 'Brand Image' (Attach Image) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Select an image of approx width 150px with a transparent background for best results."
-msgstr ""
+msgstr "เลือกภาพที่มีความกว้างประมาณ 150px พร้อมพื้นหลังโปร่งใสเพื่อผลลัพธ์ที่ดีที่สุด"
#: frappe/public/js/frappe/list/bulk_operations.js:36
msgid "Select atleast 1 record for printing"
-msgstr ""
+msgstr "เลือกอย่างน้อย 1 รายการสำหรับการพิมพ์"
#: frappe/core/doctype/success_action/success_action.js:18
msgid "Select atleast 2 actions"
-msgstr ""
+msgstr "เลือกอย่างน้อย 2 การกระทำ"
#: frappe/public/js/frappe/list/list_view.js:1304
msgctxt "Description of a list view shortcut"
msgid "Select list item"
-msgstr ""
+msgstr "เลือกรายการในรายการ"
#: frappe/public/js/frappe/list/list_view.js:1256
#: frappe/public/js/frappe/list/list_view.js:1272
msgctxt "Description of a list view shortcut"
msgid "Select multiple list items"
-msgstr ""
+msgstr "เลือกรายการในรายการหลายรายการ"
#: frappe/public/js/frappe/views/calendar/calendar.js:167
msgid "Select or drag across time slots to create a new event."
-msgstr ""
+msgstr "เลือกหรือลากข้ามช่วงเวลาเพื่อสร้างเหตุการณ์ใหม่"
#: frappe/public/js/frappe/list/bulk_operations.js:239
msgid "Select records for assignment"
-msgstr ""
+msgstr "เลือกรายการสำหรับการมอบหมาย"
#: frappe/public/js/frappe/list/bulk_operations.js:260
msgid "Select records for removing assignment"
-msgstr ""
+msgstr "เลือกรายการสำหรับการลบการมอบหมาย"
#. Description of the 'Insert After' (Select) field in DocType 'Custom Field'
#: frappe/custom/doctype/custom_field/custom_field.json
msgid "Select the label after which you want to insert new field."
-msgstr ""
+msgstr "เลือกป้ายกำกับหลังจากนั้นคุณต้องการแทรกฟิลด์ใหม่"
#: frappe/public/js/frappe/utils/diffview.js:102
msgid "Select two versions to view the diff."
-msgstr ""
+msgstr "เลือกสองเวอร์ชันเพื่อดูความแตกต่าง"
#: frappe/public/js/frappe/form/link_selector.js:24
#: frappe/public/js/frappe/form/multi_select_dialog.js:80
@@ -22741,200 +22741,200 @@ msgstr ""
#: frappe/public/js/frappe/list/list_view_select.js:153
#: frappe/public/js/print_format_builder/Preview.vue:90
msgid "Select {0}"
-msgstr ""
+msgstr "เลือก {0}"
#: frappe/model/workflow.py:117
msgid "Self approval is not allowed"
-msgstr ""
+msgstr "ไม่อนุญาตให้อนุมัติด้วยตนเอง"
#: frappe/email/doctype/newsletter/newsletter.js:66
#: frappe/email/doctype/newsletter/newsletter.js:74
#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
msgid "Send"
-msgstr ""
+msgstr "ส่ง"
#: frappe/public/js/frappe/views/communication.js:26
msgctxt "Send Email"
msgid "Send"
-msgstr ""
+msgstr "ส่ง"
#. Description of the 'Minutes Offset' (Int) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send at the earliest this number of minutes before or after the reference datetime. The actual sending may be delayed by up to 5 minutes due to the scheduler's trigger cadence."
-msgstr ""
+msgstr "ส่ง โดยเร็วที่สุด จำนวนนี้ของนาทีก่อนหรือหลังวันที่และเวลาที่อ้างอิง การส่งจริงอาจล่าช้าได้ถึง 5 นาทีเนื่องจากจังหวะการทำงานของตัวกำหนดเวลา"
#. Label of the send_after (Datetime) field in DocType 'Communication'
#. Label of the send_after (Datetime) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Send After"
-msgstr ""
+msgstr "ส่งหลังจาก"
#. Label of the event (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send Alert On"
-msgstr ""
+msgstr "ส่งการแจ้งเตือนเมื่อ"
#. Label of the send_email_alert (Check) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Send Email Alert"
-msgstr ""
+msgstr "ส่งการแจ้งเตือนทางอีเมล"
#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
#: frappe/email/doctype/newsletter/newsletter.json
msgid "Send Email At"
-msgstr ""
+msgstr "ส่งอีเมลเมื่อ"
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
-msgstr ""
+msgstr "ส่งอีเมลเมื่อสถานะ"
#. Description of the 'Send Print as PDF' (Check) field in DocType 'Print
#. Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Send Email Print Attachments as PDF (Recommended)"
-msgstr ""
+msgstr "ส่งไฟล์แนบพิมพ์อีเมลเป็น PDF (แนะนำ)"
#. Label of the send_email_to_creator (Check) field in DocType 'Workflow
#. Transition'
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Send Email To Creator"
-msgstr ""
+msgstr "ส่งอีเมลถึงผู้สร้าง"
#. Label of the send_me_a_copy (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Me A Copy of Outgoing Emails"
-msgstr ""
+msgstr "ส่งสำเนาอีเมลขาออกให้ฉัน"
#. Label of the send_notification_to (Small Text) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Send Notification to"
-msgstr ""
+msgstr "ส่งการแจ้งเตือนถึง"
#. Label of the document_follow_notify (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Notifications For Documents Followed By Me"
-msgstr ""
+msgstr "ส่งการแจ้งเตือนสำหรับเอกสารที่ฉันติดตาม"
#. Label of the thread_notify (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Notifications For Email Threads"
-msgstr ""
+msgstr "ส่งการแจ้งเตือนสำหรับเธรดอีเมล"
#: frappe/email/doctype/auto_email_report/auto_email_report.js:21
msgid "Send Now"
-msgstr ""
+msgstr "ส่งเดี๋ยวนี้"
#. Label of the send_print_as_pdf (Check) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Send Print as PDF"
-msgstr ""
+msgstr "ส่งพิมพ์เป็น PDF"
#: frappe/public/js/frappe/views/communication.js:147
msgid "Send Read Receipt"
-msgstr ""
+msgstr "ส่งใบตอบรับการอ่าน"
#. Label of the send_system_notification (Check) field in DocType
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send System Notification"
-msgstr ""
+msgstr "ส่งการแจ้งเตือนระบบ"
#: frappe/email/doctype/newsletter/newsletter.js:153
msgid "Send Test Email"
-msgstr ""
+msgstr "ส่งอีเมลทดสอบ"
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
-msgstr ""
+msgstr "ส่งถึงผู้รับมอบหมายทั้งหมด"
#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
#: frappe/email/doctype/newsletter/newsletter.json
msgid "Send Unsubscribe Link"
-msgstr ""
+msgstr "ส่งลิงก์ยกเลิกการสมัคร"
#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
#: frappe/email/doctype/newsletter/newsletter.json
msgid "Send Web View Link"
-msgstr ""
+msgstr "ส่งลิงก์มุมมองเว็บ"
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
-msgstr ""
+msgstr "ส่งอีเมลต้อนรับ"
#: frappe/email/doctype/newsletter/newsletter.js:10
msgid "Send a test email"
-msgstr ""
+msgstr "ส่งอีเมลทดสอบ"
#: frappe/email/doctype/newsletter/newsletter.js:166
msgid "Send again"
-msgstr ""
+msgstr "ส่งอีกครั้ง"
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
-msgstr ""
+msgstr "ส่งการแจ้งเตือนหากวันที่ตรงกับค่าของฟิลด์นี้"
#. Description of the 'Reference Datetime' (Select) field in DocType
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if datetime matches this field's value"
-msgstr ""
+msgstr "ส่งการแจ้งเตือนหากวันที่และเวลาตรงกับค่าของฟิลด์นี้"
#. Description of the 'Value Changed' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if this field's value changes"
-msgstr ""
+msgstr "ส่งการแจ้งเตือนหากค่าของฟิลด์นี้เปลี่ยนแปลง"
#. Label of the send_reminder (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Send an email reminder in the morning"
-msgstr ""
+msgstr "ส่งการเตือนทางอีเมลในตอนเช้า"
#. Description of the 'Days Before or After' (Int) field in DocType
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send days before or after the reference date"
-msgstr ""
+msgstr "ส่งก่อนหรือหลังวันที่อ้างอิง"
#. Description of the 'Send Email On State' (Check) field in DocType 'Workflow
#. Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send email when document transitions to the state."
-msgstr ""
+msgstr "ส่งอีเมลเมื่อเอกสารเปลี่ยนสถานะ"
#. Description of the 'Forward To Email Address' (Data) field in DocType
#. 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Send enquiries to this email address"
-msgstr ""
+msgstr "ส่งคำถามไปยังที่อยู่อีเมลนี้"
#: frappe/templates/includes/login/login.js:72 frappe/www/login.html:230
msgid "Send login link"
-msgstr ""
+msgstr "ส่งลิงก์เข้าสู่ระบบ"
#: frappe/public/js/frappe/views/communication.js:141
msgid "Send me a copy"
-msgstr ""
+msgstr "ส่งสำเนาให้ฉัน"
#: frappe/email/doctype/newsletter/newsletter.js:46
msgid "Send now"
-msgstr ""
+msgstr "ส่งเดี๋ยวนี้"
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
-msgstr ""
+msgstr "ส่งเฉพาะเมื่อมีข้อมูล"
#. Label of the send_unsubscribe_message (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Send unsubscribe message in email"
-msgstr ""
+msgstr "ส่งข้อความยกเลิกการสมัครในอีเมล"
#. Label of the sender (Data) field in DocType 'Event'
#. Label of the sender (Data) field in DocType 'ToDo'
@@ -22948,39 +22948,39 @@ msgstr ""
#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
-msgstr ""
+msgstr "ผู้ส่ง"
#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
-msgstr ""
+msgstr "อีเมลผู้ส่ง"
#. Label of the sender_field (Data) field in DocType 'DocType'
#. Label of the sender_field (Data) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sender Email Field"
-msgstr ""
+msgstr "ฟิลด์อีเมลผู้ส่ง"
#: frappe/core/doctype/doctype/doctype.py:1945
msgid "Sender Field should have Email in options"
-msgstr ""
+msgstr "ฟิลด์ผู้ส่งควรมีอีเมลในตัวเลือก"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
-msgstr ""
+msgstr "ชื่อผู้ส่ง"
#. Label of the sender_name_field (Data) field in DocType 'DocType'
#. Label of the sender_name_field (Data) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sender Name Field"
-msgstr ""
+msgstr "ฟิลด์ชื่อผู้ส่ง"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -22993,15 +22993,15 @@ msgstr ""
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
-msgstr ""
+msgstr "กำลังส่ง"
#: frappe/email/doctype/newsletter/newsletter.js:203
msgid "Sending emails"
-msgstr ""
+msgstr "กำลังส่งอีเมล"
#: frappe/email/doctype/newsletter/newsletter.js:164
msgid "Sending..."
-msgstr ""
+msgstr "กำลังส่ง..."
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
@@ -23013,39 +23013,39 @@ msgstr ""
#: frappe/email/doctype/newsletter/newsletter.js:196
#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
-msgstr ""
+msgstr "ส่งแล้ว"
#. Label of the sent_folder_name (Data) field in DocType 'Email Account'
#. Label of the sent_folder_name (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Sent Folder Name"
-msgstr ""
+msgstr "ชื่อโฟลเดอร์ที่ส่ง"
#. Label of the sent_on (Date) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Sent On"
-msgstr ""
+msgstr "ส่งเมื่อ"
#. Label of the read_receipt (Check) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Sent Read Receipt"
-msgstr ""
+msgstr "ส่งใบตอบรับการอ่าน"
#. Label of the sent_to (Code) field in DocType 'SMS Log'
#: frappe/core/doctype/sms_log/sms_log.json
msgid "Sent To"
-msgstr ""
+msgstr "ส่งถึง"
#. Label of the sent_or_received (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Sent or Received"
-msgstr ""
+msgstr "ส่งหรือรับ"
#. Option for the 'Event Category' (Select) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Sent/Received Email"
-msgstr ""
+msgstr "อีเมลที่ส่ง/รับ"
#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item'
#: frappe/core/doctype/navbar_item/navbar_item.json
@@ -23110,7 +23110,7 @@ msgstr ""
#: frappe/public/js/frappe/request.js:254
msgid "Server failed to process this request because of a concurrent conflicting request. Please try again."
-msgstr ""
+msgstr "ระบบไม่สามารถประมวลผลคำขอ เนื่องจากเกิดข้อขัดแย้งจากคำขอที่ทำงานพร้อมกัน กรุณาลองอีกครั้ง"
#: frappe/public/js/frappe/request.js:246
msgid "Server was too busy to process this request. Please try again."
@@ -23141,24 +23141,24 @@ msgstr ""
#: frappe/core/doctype/session_default_settings/session_default_settings.json
#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
msgid "Session Defaults"
-msgstr ""
+msgstr "ค่าเริ่มต้นของเซสชัน"
#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
msgid "Session Defaults Saved"
-msgstr ""
+msgstr "บันทึกค่าเริ่มต้นของเซสชันแล้ว"
#: frappe/app.py:353
msgid "Session Expired"
-msgstr ""
+msgstr "เซสชันหมดอายุ"
#. Label of the session_expiry (Data) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Session Expiry (idle timeout)"
-msgstr ""
+msgstr "การหมดอายุของเซสชัน (หมดเวลาไม่ใช้งาน)"
#: frappe/core/doctype/system_settings/system_settings.py:120
msgid "Session Expiry must be in format {0}"
-msgstr ""
+msgstr "การหมดอายุของเซสชันต้องอยู่ในรูปแบบ {0}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487
@@ -23166,22 +23166,22 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.js:387
#: frappe/public/js/frappe/widgets/chart_widget.js:447
msgid "Set"
-msgstr ""
+msgstr "ตั้งค่า"
#: frappe/public/js/frappe/ui/filters/filter.js:607
msgctxt "Field value is set"
msgid "Set"
-msgstr ""
+msgstr "ตั้งค่า"
#. Label of the set_banner_from_image (Button) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Set Banner from Image"
-msgstr ""
+msgstr "ตั้งค่าแบนเนอร์จากภาพ"
#: frappe/public/js/frappe/views/reports/query_report.js:199
msgid "Set Chart"
-msgstr ""
+msgstr "ตั้งค่าแผนภูมิ"
#. Description of the 'Chart Options' (Code) field in DocType 'Dashboard'
#: frappe/desk/doctype/dashboard/dashboard.json
@@ -23191,54 +23191,54 @@ msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467
#: frappe/desk/doctype/number_card/number_card.js:367
msgid "Set Dynamic Filters"
-msgstr ""
+msgstr "ตั้งค่าตัวกรองแบบไดนามิก"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381
#: frappe/desk/doctype/number_card/number_card.js:280
#: frappe/public/js/form_builder/components/Field.vue:80
#: frappe/website/doctype/web_form/web_form.js:269
msgid "Set Filters"
-msgstr ""
+msgstr "ตั้งค่าตัวกรอง"
#: frappe/public/js/frappe/widgets/chart_widget.js:436
#: frappe/public/js/frappe/widgets/quick_list_widget.js:105
msgid "Set Filters for {0}"
-msgstr ""
+msgstr "ตั้งค่าตัวกรองสำหรับ {0}"
#: frappe/public/js/frappe/views/reports/query_report.js:2052
msgid "Set Level"
-msgstr ""
+msgstr "ตั้งค่าระดับ"
#: frappe/core/doctype/user_type/user_type.py:92
msgid "Set Limit"
-msgstr ""
+msgstr "ตั้งค่าขีดจำกัด"
#. Description of the 'Setup Series for transactions' (Section Break) field in
#. DocType 'Document Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Set Naming Series options on your transactions."
-msgstr ""
+msgstr "ตั้งค่าตัวเลือกชุดการตั้งชื่อในธุรกรรมของคุณ"
#. Label of the new_password (Password) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Set New Password"
-msgstr ""
+msgstr "ตั้งรหัสผ่านใหม่"
#: frappe/desk/page/backups/backups.js:8
msgid "Set Number of Backups"
-msgstr ""
+msgstr "ตั้งค่าจำนวนการสำรองข้อมูล"
#: frappe/www/update-password.html:32
msgid "Set Password"
-msgstr ""
+msgstr "ตั้งรหัสผ่าน"
#: frappe/custom/doctype/customize_form/customize_form.js:112
msgid "Set Permissions"
-msgstr ""
+msgstr "ตั้งค่าสิทธิ์"
#: frappe/printing/page/print_format_builder/print_format_builder.js:471
msgid "Set Properties"
-msgstr ""
+msgstr "ตั้งค่าคุณสมบัติ"
#. Label of the property_section (Section Break) field in DocType
#. 'Notification'
@@ -23246,56 +23246,56 @@ msgstr ""
#. 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Set Property After Alert"
-msgstr ""
+msgstr "ตั้งค่าคุณสมบัติหลังการแจ้งเตือน"
#: frappe/public/js/frappe/form/link_selector.js:207
#: frappe/public/js/frappe/form/link_selector.js:208
msgid "Set Quantity"
-msgstr ""
+msgstr "ตั้งค่าปริมาณ"
#. Label of the set_role_for (Select) field in DocType 'Role Permission for
#. Page and Report'
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json
msgid "Set Role For"
-msgstr ""
+msgstr "ตั้งค่าบทบาทสำหรับ"
#: frappe/core/doctype/user/user.js:131
#: frappe/core/page/permission_manager/permission_manager.js:72
msgid "Set User Permissions"
-msgstr ""
+msgstr "ตั้งค่าสิทธิ์ผู้ใช้"
#. Label of the value (Small Text) field in DocType 'Property Setter'
#: frappe/custom/doctype/property_setter/property_setter.json
msgid "Set Value"
-msgstr ""
+msgstr "ตั้งค่ามูลค่า"
#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82
#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134
msgid "Set all private"
-msgstr ""
+msgstr "ตั้งค่าทั้งหมดเป็นส่วนตัว"
#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82
msgid "Set all public"
-msgstr ""
+msgstr "ตั้งค่าทั้งหมดเป็นสาธารณะ"
#: frappe/printing/doctype/print_format/print_format.js:49
msgid "Set as Default"
-msgstr ""
+msgstr "ตั้งค่าเป็นค่าเริ่มต้น"
#: frappe/website/doctype/website_theme/website_theme.js:33
msgid "Set as Default Theme"
-msgstr ""
+msgstr "ตั้งค่าเป็นธีมเริ่มต้น"
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Set by user"
-msgstr ""
+msgstr "ตั้งค่าโดยผู้ใช้"
#: frappe/public/js/frappe/utils/dashboard_utils.js:162
msgid "Set dynamic filter values in JavaScript for the required fields here."
-msgstr ""
+msgstr "ตั้งค่าค่าตัวกรองแบบไดนามิกใน JavaScript สำหรับฟิลด์ที่ต้องการที่นี่"
#. Description of the 'Precision' (Select) field in DocType 'DocField'
#. Description of the 'Precision' (Select) field in DocType 'Custom Field'
@@ -23307,17 +23307,17 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Set non-standard precision for a Float or Currency field"
-msgstr ""
+msgstr "ตั้งค่าความแม่นยำที่ไม่เป็นมาตรฐานสำหรับฟิลด์ Float หรือ Currency"
#. Label of the set_only_once (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Set only once"
-msgstr ""
+msgstr "ตั้งค่าเพียงครั้งเดียว"
#. Description of the 'Max attachment size' (Int) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Set size in MB"
-msgstr ""
+msgstr "ตั้งค่าขนาดใน MB"
#. Description of the 'Filters Configuration' (Code) field in DocType 'Number
#. Card'
@@ -23356,15 +23356,15 @@ msgstr ""
#: frappe/contacts/doctype/address_template/address_template.py:33
msgid "Setting this Address Template as default as there is no other default"
-msgstr ""
+msgstr "ตั้งค่าแม่แบบที่อยู่นี้เป็นค่าเริ่มต้นเนื่องจากไม่มีค่าเริ่มต้นอื่น"
#: frappe/desk/doctype/global_search_settings/global_search_settings.py:86
msgid "Setting up Global Search documents."
-msgstr ""
+msgstr "กำลังตั้งค่าเอกสารการค้นหาระดับโลก"
#: frappe/desk/page/setup_wizard/setup_wizard.js:285
msgid "Setting up your system"
-msgstr ""
+msgstr "กำลังตั้งค่าระบบของคุณ"
#. Label of the settings_tab (Tab Break) field in DocType 'DocType'
#. Label of the settings_tab (Tab Break) field in DocType 'User'
@@ -23383,66 +23383,66 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/workspace/website/website.json frappe/www/me.html:20
msgid "Settings"
-msgstr ""
+msgstr "การตั้งค่า"
#. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Settings Dropdown"
-msgstr ""
+msgstr "การตั้งค่าดรอปดาวน์"
#. Description of a DocType
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Settings for Contact Us Page"
-msgstr ""
+msgstr "การตั้งค่าสำหรับหน้าติดต่อเรา"
#. Description of a DocType
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Settings for the About Us Page"
-msgstr ""
+msgstr "การตั้งค่าสำหรับหน้าเกี่ยวกับเรา"
#. Description of a DocType
#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Settings to control blog categories and interactions like comments and likes"
-msgstr ""
+msgstr "การตั้งค่าเพื่อควบคุมหมวดหมู่บล็อกและการโต้ตอบเช่นความคิดเห็นและการถูกใจ"
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567
msgid "Setup"
-msgstr ""
+msgstr "การตั้งค่า"
#: frappe/core/page/permission_manager/permission_manager_help.html:27
msgid "Setup > Customize Form"
-msgstr ""
+msgstr "การตั้งค่า > ปรับแต่งฟอร์ม"
#: frappe/core/page/permission_manager/permission_manager_help.html:8
msgid "Setup > User"
-msgstr ""
+msgstr "การตั้งค่า > ผู้ใช้"
#: frappe/core/page/permission_manager/permission_manager_help.html:33
msgid "Setup > User Permissions"
-msgstr ""
+msgstr "การตั้งค่า > สิทธิ์ผู้ใช้"
#: frappe/public/js/frappe/views/reports/query_report.js:1765
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
-msgstr ""
+msgstr "ตั้งค่าอีเมลอัตโนมัติ"
#. Label of the setup_complete (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Setup Complete"
-msgstr ""
+msgstr "การตั้งค่าเสร็จสมบูรณ์"
#. Label of the setup_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Setup Series for transactions"
-msgstr ""
+msgstr "ตั้งค่าชุดสำหรับธุรกรรม"
#: frappe/desk/page/setup_wizard/setup_wizard.js:236
msgid "Setup failed"
-msgstr ""
+msgstr "การตั้งค่าล้มเหลว"
#. Label of the share (Check) field in DocType 'Custom DocPerm'
#. Label of the share (Check) field in DocType 'DocPerm'
@@ -23456,64 +23456,64 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/public/js/frappe/form/templates/form_sidebar.html:90
msgid "Share"
-msgstr ""
+msgstr "แชร์"
#: frappe/public/js/frappe/form/sidebar/share.js:107
msgid "Share With"
-msgstr ""
+msgstr "แชร์กับ"
#: frappe/public/js/frappe/form/templates/set_sharing.html:49
msgid "Share this document with"
-msgstr ""
+msgstr "แชร์เอกสารนี้กับ"
#: frappe/public/js/frappe/form/sidebar/share.js:45
msgid "Share {0} with"
-msgstr ""
+msgstr "แชร์ {0} กับ"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Shared"
-msgstr ""
+msgstr "แชร์"
#: frappe/desk/form/assign_to.py:132
msgid "Shared with the following Users with Read access:{0}"
-msgstr ""
+msgstr "แชร์กับผู้ใช้ต่อไปนี้ที่มีสิทธิ์การเข้าถึงแบบอ่าน:{0}"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Shipping"
-msgstr ""
+msgstr "การขนส่ง"
#: frappe/public/js/frappe/form/templates/address_list.html:31
msgid "Shipping Address"
-msgstr ""
+msgstr "ที่อยู่การขนส่ง"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Shop"
-msgstr ""
+msgstr "ร้านค้า"
#. Label of the short_name (Data) field in DocType 'Blogger'
#: frappe/website/doctype/blogger/blogger.json
msgid "Short Name"
-msgstr ""
+msgstr "ชื่อย่อ"
#: frappe/utils/password_strength.py:91
msgid "Short keyboard patterns are easy to guess"
-msgstr ""
+msgstr "รูปแบบแป้นพิมพ์สั้น ๆ เดาง่าย"
#. Label of the shortcuts (Table) field in DocType 'Workspace'
#. Label of the tab_break_15 (Tab Break) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "Shortcuts"
-msgstr ""
+msgstr "ทางลัด"
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
msgid "Show"
-msgstr ""
+msgstr "แสดง"
#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings'
#: frappe/website/doctype/blog_settings/blog_settings.json
@@ -23532,20 +23532,20 @@ msgstr ""
#. Label of the absolute_value (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Absolute Values"
-msgstr ""
+msgstr "แสดงค่าที่แน่นอน"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:73
msgid "Show All"
-msgstr ""
+msgstr "แสดงทั้งหมด"
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
-msgstr ""
+msgstr "แสดงปฏิทิน"
#. Label of the symbol_on_right (Check) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Show Currency Symbol on Right Side"
-msgstr ""
+msgstr "แสดงสัญลักษณ์สกุลเงินทางด้านขวา"
#. Label of the show_dashboard (Check) field in DocType 'DocField'
#. Label of the show_dashboard (Check) field in DocType 'Custom Field'
@@ -23555,141 +23555,141 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/dashboard/dashboard.js:6
msgid "Show Dashboard"
-msgstr ""
+msgstr "แสดงแดชบอร์ด"
#. Label of the show_document (Button) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Show Document"
-msgstr ""
+msgstr "แสดงเอกสาร"
#: frappe/www/error.html:42 frappe/www/error.html:65
msgid "Show Error"
-msgstr ""
+msgstr "แสดงข้อผิดพลาด"
#: frappe/public/js/frappe/form/layout.js:579
msgid "Show Fieldname (click to copy on clipboard)"
-msgstr ""
+msgstr "แสดงชื่อฟิลด์ (คลิกเพื่อคัดลอกไปยังคลิปบอร์ด)"
#. Label of the first_document (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Show First Document Tour"
-msgstr ""
+msgstr "แสดงทัวร์เอกสารแรก"
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#. Label of the show_form_tour (Check) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show Form Tour"
-msgstr ""
+msgstr "แสดงทัวร์ฟอร์ม"
#. Label of the allow_error_traceback (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Show Full Error and Allow Reporting of Issues to the Developer"
-msgstr ""
+msgstr "แสดงข้อผิดพลาดทั้งหมดและอนุญาตให้รายงานปัญหาไปยังนักพัฒนา"
#. Label of the show_full_form (Check) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show Full Form?"
-msgstr ""
+msgstr "แสดงฟอร์มทั้งหมดหรือไม่?"
#. Label of the show_full_number (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Show Full Number"
-msgstr ""
+msgstr "แสดงหมายเลขทั้งหมด"
#: frappe/public/js/frappe/ui/keyboard.js:234
msgid "Show Keyboard Shortcuts"
-msgstr ""
+msgstr "แสดงทางลัดแป้นพิมพ์"
#. Label of the show_labels (Check) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:30
msgid "Show Labels"
-msgstr ""
+msgstr "แสดงป้ายกำกับ"
#. Label of the show_language_picker (Check) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show Language Picker"
-msgstr ""
+msgstr "แสดงตัวเลือกภาษา"
#. Label of the line_breaks (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Line Breaks after Sections"
-msgstr ""
+msgstr "แสดงการแบ่งบรรทัดหลังส่วน"
#: frappe/public/js/frappe/form/toolbar.js:407
msgid "Show Links"
-msgstr ""
+msgstr "แสดงลิงก์"
#. Label of the show_failed_logs (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Show Only Failed Logs"
-msgstr ""
+msgstr "แสดงเฉพาะบันทึกที่ล้มเหลว"
#. Label of the show_percentage_stats (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Show Percentage Stats"
-msgstr ""
+msgstr "แสดงสถิติเปอร์เซ็นต์"
#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30
msgid "Show Permissions"
-msgstr ""
+msgstr "แสดงสิทธิ์"
#: frappe/public/js/form_builder/form_builder.bundle.js:31
#: frappe/public/js/form_builder/form_builder.bundle.js:43
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:18
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54
msgid "Show Preview"
-msgstr ""
+msgstr "แสดงตัวอย่าง"
#. Label of the show_preview_popup (Check) field in DocType 'DocType'
#. Label of the show_preview_popup (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Show Preview Popup"
-msgstr ""
+msgstr "แสดงป๊อปอัปตัวอย่าง"
#. Label of the show_processlist (Check) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "Show Processlist"
-msgstr ""
+msgstr "แสดงรายการกระบวนการ"
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
-msgstr ""
+msgstr "แสดงข้อผิดพลาดที่เกี่ยวข้อง"
#. Label of the show_report (Button) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
#: frappe/core/doctype/prepared_report/prepared_report.js:43
#: frappe/core/doctype/report/report.js:16
msgid "Show Report"
-msgstr ""
+msgstr "แสดงรายงาน"
#: frappe/public/js/frappe/list/list_filter.js:15
#: frappe/public/js/frappe/list/list_filter.js:94
msgid "Show Saved"
-msgstr ""
+msgstr "แสดงที่บันทึกไว้"
#. Label of the show_section_headings (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Section Headings"
-msgstr ""
+msgstr "แสดงหัวข้อส่วน"
#. Label of the show_sidebar (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Show Sidebar"
-msgstr ""
+msgstr "แสดงแถบด้านข้าง"
#: frappe/public/js/frappe/list/list_sidebar.html:77
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
-msgstr ""
+msgstr "แสดงแท็ก"
#. Label of the show_title (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Show Title"
-msgstr ""
+msgstr "แสดงชื่อเรื่อง"
#. Label of the show_title_field_in_link (Check) field in DocType 'DocType'
#. Label of the show_title_field_in_link (Check) field in DocType 'Customize
@@ -23697,108 +23697,108 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Show Title in Link Fields"
-msgstr ""
+msgstr "แสดงชื่อเรื่องในฟิลด์ลิงก์"
#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
-msgstr ""
+msgstr "แสดงยอดรวม"
#: frappe/desk/doctype/form_tour/form_tour.js:116
msgid "Show Tour"
-msgstr ""
+msgstr "แสดงทัวร์"
#: frappe/core/doctype/data_import/data_import.js:448
msgid "Show Traceback"
-msgstr ""
+msgstr "แสดงการติดตามข้อผิดพลาด"
#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
-msgstr ""
+msgstr "แสดงคำเตือน"
#: frappe/public/js/frappe/views/calendar/calendar.js:179
msgid "Show Weekends"
-msgstr ""
+msgstr "แสดงวันหยุดสุดสัปดาห์"
#. Label of the show_account_deletion_link (Check) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show account deletion link in My Account page"
-msgstr ""
+msgstr "แสดงลิงก์ลบบัญชีในหน้าบัญชีของฉัน"
#: frappe/core/doctype/version/version.js:6
msgid "Show all Versions"
-msgstr ""
+msgstr "แสดงทุกเวอร์ชัน"
#: frappe/public/js/frappe/form/footer/form_timeline.js:69
msgid "Show all activity"
-msgstr ""
+msgstr "แสดงกิจกรรมทั้งหมด"
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24
msgid "Show all blogs"
-msgstr ""
+msgstr "แสดงบล็อกทั้งหมด"
#. Label of the show_as_cc (Small Text) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Show as cc"
-msgstr ""
+msgstr "แสดงเป็น cc"
#. Label of the show_attachments (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Show attachments"
-msgstr ""
+msgstr "แสดงไฟล์แนบ"
#. Label of the show_footer_on_login (Check) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show footer on login"
-msgstr ""
+msgstr "แสดงส่วนท้ายเมื่อเข้าสู่ระบบ"
#. Description of the 'Show Full Form?' (Check) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show full form instead of a quick entry modal"
-msgstr ""
+msgstr "แสดงฟอร์มเต็มแทนโมดัลการป้อนข้อมูลด่วน"
#. Label of the document_type (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Show in Module Section"
-msgstr ""
+msgstr "แสดงในส่วนโมดูล"
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
-msgstr ""
+msgstr "แสดงในตัวกรอง"
#. Label of the show_document_link (Check) field in DocType 'Slack Webhook URL'
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
msgid "Show link to document"
-msgstr ""
+msgstr "แสดงลิงก์ไปยังเอกสาร"
#. Label of the show_list (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Show list"
-msgstr ""
+msgstr "แสดงรายการ"
#: frappe/public/js/frappe/form/layout.js:273
#: frappe/public/js/frappe/form/layout.js:291
msgid "Show more details"
-msgstr ""
+msgstr "แสดงรายละเอียดเพิ่มเติม"
#. Label of the show_on_timeline (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Show on Timeline"
-msgstr ""
+msgstr "แสดงในไทม์ไลน์"
#. Description of the 'Stats Time Interval' (Select) field in DocType 'Number
#. Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Show percentage difference according to this time interval"
-msgstr ""
+msgstr "แสดงความแตกต่างของเปอร์เซ็นต์ตามช่วงเวลานี้"
#. Label of the show_sidebar (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Show sidebar"
-msgstr ""
+msgstr "แสดงแถบด้านข้าง"
#. Description of the 'Title Prefix' (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
@@ -23807,15 +23807,15 @@ msgstr ""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:148
msgid "Show {0} List"
-msgstr ""
+msgstr "แสดงรายการ {0}"
#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
-msgstr ""
+msgstr "แสดงเฉพาะฟิลด์ตัวเลขจากรายงาน"
#: frappe/public/js/frappe/data_import/import_preview.js:153
msgid "Showing only first {0} rows out of {1}"
-msgstr ""
+msgstr "แสดงเฉพาะ {0} แถวแรกจาก {1}"
#. Label of the list_sidebar (Check) field in DocType 'User'
#. Label of the form_sidebar (Check) field in DocType 'User'
@@ -23879,7 +23879,7 @@ msgstr ""
#: frappe/www/login.html:169
msgid "Signups have been disabled for this website."
-msgstr ""
+msgstr "การลงทะเบียนถูกปิดใช้งานสำหรับเว็บไซต์นี้"
#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
#. Rule'
@@ -23902,35 +23902,35 @@ msgstr ""
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
-msgstr ""
+msgstr "เซสชันพร้อมกัน"
#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Single DocTypes cannot be customized."
-msgstr ""
+msgstr "ประเภทเอกสารเดี่ยวไม่สามารถปรับแต่งได้"
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/doctype/doctype_list.js:67
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
-msgstr ""
+msgstr "ประเภทเดี่ยวมีเพียงหนึ่งระเบียนไม่มีตารางที่เกี่ยวข้อง ค่าเก็บไว้ใน tabSingles"
#: frappe/database/database.py:284
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
-msgstr ""
+msgstr "ไซต์กำลังทำงานในโหมดอ่านอย่างเดียวสำหรับการบำรุงรักษาหรืออัปเดตไซต์ ไม่สามารถดำเนินการนี้ได้ในขณะนี้ โปรดลองอีกครั้งในภายหลัง"
#: frappe/public/js/frappe/views/file/file_view.js:337
msgid "Size"
-msgstr ""
+msgstr "ขนาด"
#. Label of the size (Float) field in DocType 'System Health Report Tables'
#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json
msgid "Size (MB)"
-msgstr ""
+msgstr "ขนาด (MB)"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:82
#: frappe/public/js/onboarding_tours/onboarding_tours.js:18
msgid "Skip"
-msgstr ""
+msgstr "ข้าม"
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
@@ -23938,36 +23938,36 @@ msgstr ""
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
msgid "Skip Authorization"
-msgstr ""
+msgstr "ข้ามการอนุญาต"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:332
msgid "Skip Step"
-msgstr ""
+msgstr "ข้ามขั้นตอน"
#. Label of the skipped (Check) field in DocType 'Patch Log'
#: frappe/core/doctype/patch_log/patch_log.json
msgid "Skipped"
-msgstr ""
+msgstr "ข้ามแล้ว"
#: frappe/core/doctype/data_import/importer.py:952
msgid "Skipping Duplicate Column {0}"
-msgstr ""
+msgstr "ข้ามคอลัมน์ซ้ำ {0}"
#: frappe/core/doctype/data_import/importer.py:977
msgid "Skipping Untitled Column"
-msgstr ""
+msgstr "ข้ามคอลัมน์ที่ไม่มีชื่อ"
#: frappe/core/doctype/data_import/importer.py:963
msgid "Skipping column {0}"
-msgstr ""
+msgstr "ข้ามคอลัมน์ {0}"
#: frappe/modules/utils.py:176
msgid "Skipping fixture syncing for doctype {0} from file {1}"
-msgstr ""
+msgstr "ข้ามการซิงค์ฟิกซ์เจอร์สำหรับประเภทเอกสาร {0} จากไฟล์ {1}"
#: frappe/core/doctype/data_import/data_import.js:39
msgid "Skipping {0} of {1}, {2}"
-msgstr ""
+msgstr "ข้าม {0} จาก {1}, {2}"
#. Label of the skype (Data) field in DocType 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
@@ -23982,39 +23982,39 @@ msgstr ""
#. Label of the slack_webhook_url (Link) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Slack Channel"
-msgstr ""
+msgstr "ช่อง Slack"
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65
msgid "Slack Webhook Error"
-msgstr ""
+msgstr "ข้อผิดพลาด Webhook ของ Slack"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Slack Webhook URL"
-msgstr ""
+msgstr "URL Webhook ของ Slack"
#. Label of the slideshow (Link) field in DocType 'Web Page'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Slideshow"
-msgstr ""
+msgstr "สไลด์โชว์"
#. Label of the slideshow_items (Table) field in DocType 'Website Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Items"
-msgstr ""
+msgstr "รายการสไลด์โชว์"
#. Label of the slideshow_name (Data) field in DocType 'Website Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Name"
-msgstr ""
+msgstr "ชื่อสไลด์โชว์"
#. Description of a DocType
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow like display for the website"
-msgstr ""
+msgstr "การแสดงผลแบบสไลด์โชว์สำหรับเว็บไซต์"
#. Label of the slug (Data) field in DocType 'UTM Campaign'
#. Label of the slug (Data) field in DocType 'UTM Medium'
@@ -24036,23 +24036,23 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Small Text"
-msgstr ""
+msgstr "ข้อความเล็ก"
#. Label of the smallest_currency_fraction_value (Currency) field in DocType
#. 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Smallest Currency Fraction Value"
-msgstr ""
+msgstr "ค่าหน่วยย่อยของสกุลเงินที่เล็กที่สุด"
#. Description of the 'Smallest Currency Fraction Value' (Currency) field in
#. DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01"
-msgstr ""
+msgstr "หน่วยเศษส่วนที่เล็กที่สุดที่หมุนเวียนได้ (เหรียญ) เช่น 1 เซ็นต์สำหรับ USD และควรป้อนเป็น 0.01"
#: frappe/printing/doctype/letter_head/letter_head.js:32
msgid "Snippet and more variables: {0}"
-msgstr ""
+msgstr "ข้อความย่อและตัวแปรเพิ่มเติม: {0}"
#. Name of a DocType
#: frappe/website/doctype/social_link_settings/social_link_settings.json
@@ -24177,23 +24177,23 @@ msgstr ""
#. Label of the source_name (Data) field in DocType 'Dashboard Chart Source'
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
msgid "Source Name"
-msgstr ""
+msgstr "ชื่อต้นทาง"
#. Label of the source_text (Code) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
#: frappe/public/js/frappe/views/translation_manager.js:38
msgid "Source Text"
-msgstr ""
+msgstr "ข้อความต้นทาง"
#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:23
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:174
msgid "Spacer"
-msgstr ""
+msgstr "ตัวเว้นวรรค"
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Spam"
-msgstr ""
+msgstr "สแปม"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -24202,44 +24202,44 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.js:83
msgid "Special Characters are not allowed"
-msgstr ""
+msgstr "ไม่อนุญาตอักขระพิเศษ"
#: frappe/model/naming.py:68
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
-msgstr ""
+msgstr "ไม่อนุญาตอักขระพิเศษยกเว้น '-', '#', '.', '/', '{{' และ '}}' ในชุดการตั้งชื่อ {0}"
#. Description of the 'Timeout (In Seconds)' (Int) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Specify a custom timeout, default timeout is 1500 seconds"
-msgstr ""
+msgstr "ระบุการหมดเวลาที่กำหนดเอง ค่าเริ่มต้นคือ 1500 วินาที"
#. Description of the 'Allowed embedding domains' (Small Text) field in DocType
#. 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin."
-msgstr ""
+msgstr "ระบุโดเมนหรือแหล่งที่ได้รับอนุญาตให้ฝังฟอร์มนี้ ป้อนหนึ่งโดเมนต่อบรรทัด (เช่น https://example.com) หากไม่ได้ระบุโดเมน ฟอร์มสามารถฝังได้เฉพาะในแหล่งเดียวกัน"
#. Label of the splash_image (Attach Image) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Splash Image"
-msgstr ""
+msgstr "ภาพสแปลช"
#: frappe/desk/reportview.py:419
#: frappe/public/js/frappe/web_form/web_form_list.js:175
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
-msgstr ""
+msgstr "ลำดับ"
#: frappe/public/js/print_format_builder/Field.vue:143
#: frappe/public/js/print_format_builder/Field.vue:164
msgid "Sr No."
-msgstr ""
+msgstr "เลขลำดับ"
#. Label of the stack_html (HTML) field in DocType 'Recorder Query'
#: frappe/core/doctype/recorder/recorder.js:82
#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Stack Trace"
-msgstr ""
+msgstr "การติดตามสแต็ก"
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
@@ -24255,65 +24255,65 @@ msgstr ""
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/website/doctype/web_template/web_template.json
msgid "Standard"
-msgstr ""
+msgstr "มาตรฐาน"
#: frappe/model/delete_doc.py:78
msgid "Standard DocType can not be deleted."
-msgstr ""
+msgstr "ไม่สามารถลบประเภทเอกสารมาตรฐานได้"
#: frappe/core/doctype/doctype/doctype.py:228
msgid "Standard DocType cannot have default print format, use Customize Form"
-msgstr ""
+msgstr "ประเภทเอกสารมาตรฐานไม่สามารถมีรูปแบบการพิมพ์เริ่มต้นได้ ใช้การปรับแต่งฟอร์ม"
#: frappe/desk/doctype/dashboard/dashboard.py:58
msgid "Standard Not Set"
-msgstr ""
+msgstr "ไม่ได้ตั้งค่ามาตรฐาน"
#: frappe/core/page/permission_manager/permission_manager.js:132
msgid "Standard Permissions"
-msgstr ""
+msgstr "สิทธิ์มาตรฐาน"
#: frappe/printing/doctype/print_format/print_format.py:75
msgid "Standard Print Format cannot be updated"
-msgstr ""
+msgstr "ไม่สามารถอัปเดตรูปแบบการพิมพ์มาตรฐานได้"
#: frappe/printing/doctype/print_style/print_style.py:31
msgid "Standard Print Style cannot be changed. Please duplicate to edit."
-msgstr ""
+msgstr "ไม่สามารถเปลี่ยนสไตล์การพิมพ์มาตรฐานได้ โปรดทำสำเนาเพื่อแก้ไข"
#: frappe/desk/reportview.py:354
msgid "Standard Reports cannot be deleted"
-msgstr ""
+msgstr "ไม่สามารถลบรายงานมาตรฐานได้"
#: frappe/desk/reportview.py:325
msgid "Standard Reports cannot be edited"
-msgstr ""
+msgstr "ไม่สามารถแก้ไขรายงานมาตรฐานได้"
#. Label of the standard_menu_items (Section Break) field in DocType 'Portal
#. Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Standard Sidebar Menu"
-msgstr ""
+msgstr "เมนูแถบด้านข้างมาตรฐาน"
#: frappe/website/doctype/web_form/web_form.js:40
msgid "Standard Web Forms can not be modified, duplicate the Web Form instead."
-msgstr ""
+msgstr "ไม่สามารถแก้ไขฟอร์มเว็บมาตรฐานได้ ให้ทำสำเนาฟอร์มเว็บแทน"
#: frappe/website/doctype/web_page/web_page.js:92
msgid "Standard rich text editor with controls"
-msgstr ""
+msgstr "โปรแกรมแก้ไขข้อความมาตรฐานพร้อมการควบคุม"
#: frappe/core/doctype/role/role.py:46
msgid "Standard roles cannot be disabled"
-msgstr ""
+msgstr "ไม่สามารถปิดใช้งานบทบาทมาตรฐานได้"
#: frappe/core/doctype/role/role.py:32
msgid "Standard roles cannot be renamed"
-msgstr ""
+msgstr "ไม่สามารถเปลี่ยนชื่อบทบาทมาตรฐานได้"
#: frappe/core/doctype/user_type/user_type.py:61
msgid "Standard user type {0} can not be deleted."
-msgstr ""
+msgstr "ไม่สามารถลบประเภทผู้ใช้มาตรฐาน {0} ได้"
#: frappe/core/doctype/recorder/recorder_list.js:87
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
@@ -24494,7 +24494,7 @@ msgstr ""
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Status"
-msgstr ""
+msgstr "สถานะ"
#: frappe/www/update-password.html:163
msgid "Status Updated"
@@ -24617,7 +24617,7 @@ msgstr ""
#. Label of the subdomain (Small Text) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Subdomain"
-msgstr ""
+msgstr "ซับโดเมน"
#. Label of the subject (Data) field in DocType 'Auto Repeat'
#. Label of the subject (Small Text) field in DocType 'Activity Log'
@@ -24642,7 +24642,7 @@ msgstr ""
#: frappe/public/js/frappe/views/communication.js:116
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
-msgstr ""
+msgstr "หัวข้อ"
#. Label of the subject_field (Data) field in DocType 'DocType'
#. Label of the subject_field (Data) field in DocType 'Customize Form'
@@ -24651,16 +24651,16 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "Subject Field"
-msgstr ""
+msgstr "ฟิลด์หัวข้อ"
#: frappe/core/doctype/doctype/doctype.py:1935
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
-msgstr ""
+msgstr "ประเภทฟิลด์หัวข้อควรเป็นข้อมูล, ข้อความ, ข้อความยาว, ข้อความเล็ก, ตัวแก้ไขข้อความ"
#. Name of a DocType
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Submission Queue"
-msgstr ""
+msgstr "คิวการส่ง"
#. Label of the submit (Check) field in DocType 'Custom DocPerm'
#. Label of the submit (Check) field in DocType 'DocPerm'
@@ -24676,70 +24676,70 @@ msgstr ""
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
msgid "Submit"
-msgstr ""
+msgstr "ส่ง"
#: frappe/public/js/frappe/list/list_view.js:2086
msgctxt "Button in list view actions menu"
msgid "Submit"
-msgstr ""
+msgstr "ส่ง"
#: frappe/website/doctype/web_form/templates/web_form.html:47
msgctxt "Button in web form"
msgid "Submit"
-msgstr ""
+msgstr "ส่ง"
#: frappe/public/js/frappe/ui/dialog.js:62
msgctxt "Primary action in dialog"
msgid "Submit"
-msgstr ""
+msgstr "ส่ง"
#: frappe/public/js/frappe/ui/messages.js:97
msgctxt "Primary action of prompt dialog"
msgid "Submit"
-msgstr ""
+msgstr "ส่ง"
#: frappe/public/js/frappe/desk.js:227
msgctxt "Submit password for Email Account"
msgid "Submit"
-msgstr ""
+msgstr "ส่ง"
#. Label of the submit_after_import (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Submit After Import"
-msgstr ""
+msgstr "ส่งหลังจากนำเข้า"
#: frappe/core/page/permission_manager/permission_manager_help.html:39
msgid "Submit an Issue"
-msgstr ""
+msgstr "ส่งปัญหา"
#: frappe/website/doctype/web_form/templates/web_form.html:156
msgctxt "Button in web form"
msgid "Submit another response"
-msgstr ""
+msgstr "ส่งคำตอบอื่น"
#. Label of the button_label (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Submit button label"
-msgstr ""
+msgstr "ป้ายกำกับปุ่มส่ง"
#. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128
msgid "Submit on Creation"
-msgstr ""
+msgstr "ส่งเมื่อสร้าง"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:395
msgid "Submit this document to complete this step."
-msgstr ""
+msgstr "ส่งเอกสารนี้เพื่อดำเนินการขั้นตอนนี้ให้เสร็จสิ้น"
#: frappe/public/js/frappe/form/form.js:1221
msgid "Submit this document to confirm"
-msgstr ""
+msgstr "ส่งเอกสารนี้เพื่อยืนยัน"
#: frappe/public/js/frappe/list/list_view.js:2091
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
-msgstr ""
+msgstr "ส่งเอกสาร {0} หรือไม่?"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
@@ -24747,36 +24747,36 @@ msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:539
#: frappe/website/doctype/web_form/templates/web_form.html:136
msgid "Submitted"
-msgstr ""
+msgstr "ส่งแล้ว"
#: frappe/workflow/doctype/workflow/workflow.py:103
msgid "Submitted Document cannot be converted back to draft. Transition row {0}"
-msgstr ""
+msgstr "เอกสารที่ส่งแล้วไม่สามารถเปลี่ยนกลับเป็นร่างได้ แถวการเปลี่ยนผ่าน {0}"
#: frappe/public/js/workflow_builder/utils.js:176
msgid "Submitted document cannot be converted back to draft while transitioning from {0} State to {1} State"
-msgstr ""
+msgstr "เอกสารที่ส่งแล้วไม่สามารถเปลี่ยนกลับเป็นร่างได้ในขณะที่เปลี่ยนจาก สถานะ {0} เป็น สถานะ {1}"
#: frappe/public/js/frappe/form/save.js:10
msgctxt "Freeze message while submitting a document"
msgid "Submitting"
-msgstr ""
+msgstr "กำลังส่ง"
#: frappe/desk/doctype/bulk_update/bulk_update.py:88
msgid "Submitting {0}"
-msgstr ""
+msgstr "กำลังส่ง {0}"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Subsidiary"
-msgstr ""
+msgstr "บริษัทในเครือ"
#. Label of the subtitle (Data) field in DocType 'Module Onboarding'
#. Label of the subtitle (Data) field in DocType 'Blog Settings'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Subtitle"
-msgstr ""
+msgstr "คำบรรยาย"
#. Option for the 'Status' (Select) field in DocType 'Activity Log'
#. Option for the 'Status' (Select) field in DocType 'Data Import'
@@ -24798,83 +24798,83 @@ msgstr ""
#: frappe/workflow/doctype/workflow_action/workflow_action.py:171
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Success"
-msgstr ""
+msgstr "สำเร็จ"
#. Name of a DocType
#: frappe/core/doctype/success_action/success_action.json
msgid "Success Action"
-msgstr ""
+msgstr "การดำเนินการสำเร็จ"
#. Label of the success_message (Data) field in DocType 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Success Message"
-msgstr ""
+msgstr "ข้อความสำเร็จ"
#. Label of the success_uri (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Success URI"
-msgstr ""
+msgstr "URI สำเร็จ"
#. Label of the success_url (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Success URL"
-msgstr ""
+msgstr "URL สำเร็จ"
#. Label of the success_message (Text) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Success message"
-msgstr ""
+msgstr "ข้อความสำเร็จ"
#. Label of the success_title (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Success title"
-msgstr ""
+msgstr "ชื่อเรื่องสำเร็จ"
#: frappe/www/update-password.html:81
msgid "Success! You are good to go 👍"
-msgstr ""
+msgstr "สำเร็จ! คุณพร้อมแล้ว 👍"
#. Label of the successful_job_count (Int) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Successful Job Count"
-msgstr ""
+msgstr "จำนวนงานที่สำเร็จ"
#: frappe/model/workflow.py:307
msgid "Successful Transactions"
-msgstr ""
+msgstr "ธุรกรรมที่สำเร็จ"
#: frappe/model/rename_doc.py:699
msgid "Successful: {0} to {1}"
-msgstr ""
+msgstr "สำเร็จ: {0} ถึง {1}"
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113
msgid "Successfully Updated"
-msgstr ""
+msgstr "อัปเดตสำเร็จ"
#: frappe/core/doctype/data_import/data_import.js:423
msgid "Successfully imported {0}"
-msgstr ""
+msgstr "นำเข้า {0} สำเร็จ"
#: frappe/core/doctype/data_import/data_import.js:144
msgid "Successfully imported {0} out of {1} records."
-msgstr ""
+msgstr "นำเข้า {0} จาก {1} รายการสำเร็จ"
#: frappe/desk/doctype/form_tour/form_tour.py:87
msgid "Successfully reset onboarding status for all users."
-msgstr ""
+msgstr "รีเซ็ตสถานะการเริ่มต้นใช้งานสำหรับผู้ใช้ทั้งหมดสำเร็จ"
#: frappe/public/js/frappe/views/translation_manager.js:22
msgid "Successfully updated translations"
-msgstr ""
+msgstr "อัปเดตการแปลสำเร็จ"
#: frappe/core/doctype/data_import/data_import.js:431
msgid "Successfully updated {0}"
-msgstr ""
+msgstr "อัปเดต {0} สำเร็จ"
#: frappe/core/doctype/data_import/data_import.js:149
msgid "Successfully updated {0} out of {1} records."
-msgstr ""
+msgstr "อัปเดต {0} จาก {1} รายการสำเร็จ"
#: frappe/core/doctype/recorder/recorder.js:15
msgid "Suggest Optimizations"
@@ -24924,143 +24924,143 @@ msgstr ""
#: frappe/email/doctype/email_queue/email_queue_list.js:27
msgid "Suspend Sending"
-msgstr ""
+msgstr "ระงับการส่ง"
#: frappe/public/js/frappe/ui/capture.js:276
msgid "Switch Camera"
-msgstr ""
+msgstr "สลับกล้อง"
#: frappe/public/js/frappe/desk.js:96
#: frappe/public/js/frappe/ui/theme_switcher.js:11
msgid "Switch Theme"
-msgstr ""
+msgstr "สลับธีม"
#: frappe/templates/includes/navbar/navbar_login.html:17
msgid "Switch To Desk"
-msgstr ""
+msgstr "สลับไปที่เดสก์"
#: frappe/public/js/frappe/list/list_sidebar.js:319
msgid "Switch to Frappe CRM for smarter sales"
-msgstr ""
+msgstr "สลับไปที่ Frappe CRM เพื่อการขายที่ชาญฉลาดขึ้น"
#: frappe/public/js/frappe/ui/capture.js:281
msgid "Switching Camera"
-msgstr ""
+msgstr "กำลังสลับกล้อง"
#. Label of the symbol (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Symbol"
-msgstr ""
+msgstr "สัญลักษณ์"
#. Label of the sb_01 (Section Break) field in DocType 'Google Calendar'
#. Label of the sync (Section Break) field in DocType 'Google Contacts'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Sync"
-msgstr ""
+msgstr "ซิงค์"
#: frappe/integrations/doctype/google_calendar/google_calendar.js:28
msgid "Sync Calendar"
-msgstr ""
+msgstr "ซิงค์ปฏิทิน"
#: frappe/integrations/doctype/google_contacts/google_contacts.js:28
msgid "Sync Contacts"
-msgstr ""
+msgstr "ซิงค์ผู้ติดต่อ"
#. Label of the sync_as_public (Check) field in DocType 'Google Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Sync events from Google as public"
-msgstr ""
+msgstr "ซิงค์กิจกรรมจาก Google เป็นสาธารณะ"
#: frappe/custom/doctype/customize_form/customize_form.js:256
msgid "Sync on Migrate"
-msgstr ""
+msgstr "ซิงค์เมื่อย้าย"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:312
msgid "Sync token was invalid and has been reset, Retry syncing."
-msgstr ""
+msgstr "โทเค็นซิงค์ไม่ถูกต้องและถูกรีเซ็ต ลองซิงค์อีกครั้ง"
#. Label of the sync_with_google_calendar (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Sync with Google Calendar"
-msgstr ""
+msgstr "ซิงค์กับ Google ปฏิทิน"
#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Sync with Google Contacts"
-msgstr ""
+msgstr "ซิงค์กับ Google ผู้ติดต่อ"
#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46
msgid "Sync {0} Fields"
-msgstr ""
+msgstr "ซิงค์ฟิลด์ {0}"
#: frappe/custom/doctype/doctype_layout/doctype_layout.js:100
msgid "Synced Fields"
-msgstr ""
+msgstr "ฟิลด์ที่ซิงค์แล้ว"
#: frappe/integrations/doctype/google_calendar/google_calendar.js:31
#: frappe/integrations/doctype/google_contacts/google_contacts.js:31
msgid "Syncing"
-msgstr ""
+msgstr "กำลังซิงค์"
#: frappe/integrations/doctype/google_calendar/google_calendar.js:19
msgid "Syncing {0} of {1}"
-msgstr ""
+msgstr "กำลังซิงค์ {0} จาก {1}"
#: frappe/utils/data.py:2494
msgid "Syntax Error"
-msgstr ""
+msgstr "ข้อผิดพลาดทางไวยากรณ์"
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "System"
-msgstr ""
+msgstr "ระบบ"
#. Name of a DocType
#: frappe/desk/doctype/system_console/system_console.json
#: frappe/public/js/frappe/ui/dropdown_console.js:4
msgid "System Console"
-msgstr ""
+msgstr "คอนโซลระบบ"
#: frappe/custom/doctype/custom_field/custom_field.py:408
msgid "System Generated Fields can not be renamed"
-msgstr ""
+msgstr "ไม่สามารถเปลี่ยนชื่อฟิลด์ที่ระบบสร้างขึ้นได้"
#. Label of a standard help item
#. Type: Route
#: frappe/hooks.py
msgid "System Health"
-msgstr ""
+msgstr "สุขภาพระบบ"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "System Health Report"
-msgstr ""
+msgstr "รายงานสุขภาพระบบ"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json
msgid "System Health Report Errors"
-msgstr ""
+msgstr "ข้อผิดพลาดรายงานสุขภาพระบบ"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
msgid "System Health Report Failing Jobs"
-msgstr ""
+msgstr "งานที่ล้มเหลวในรายงานสุขภาพระบบ"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
msgid "System Health Report Queue"
-msgstr ""
+msgstr "คิวรายงานสุขภาพระบบ"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json
msgid "System Health Report Tables"
-msgstr ""
+msgstr "ตารางรายงานสุขภาพระบบ"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "System Health Report Workers"
-msgstr ""
+msgstr "ผู้ปฏิบัติงานรายงานสุขภาพระบบ"
#. Label of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
@@ -25212,32 +25212,32 @@ msgstr ""
#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "System Manager"
-msgstr ""
+msgstr "ผู้จัดการระบบ"
#: frappe/desk/page/backups/backups.js:38
msgid "System Manager privileges required."
-msgstr ""
+msgstr "ต้องการสิทธิ์ผู้จัดการระบบ"
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "System Notification"
-msgstr ""
+msgstr "การแจ้งเตือนระบบ"
#. Label of the system_page (Check) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "System Page"
-msgstr ""
+msgstr "หน้าระบบ"
#. Name of a DocType
#: frappe/core/doctype/system_settings/system_settings.json
msgid "System Settings"
-msgstr ""
+msgstr "การตั้งค่าระบบ"
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "System managers are allowed by default"
-msgstr ""
+msgstr "ผู้จัดการระบบได้รับอนุญาตโดยค่าเริ่มต้น"
#: frappe/public/js/frappe/utils/number_systems.js:5
msgctxt "Number system"
@@ -25429,25 +25429,25 @@ msgstr ""
#: frappe/core/doctype/translation/test_translation.py:47
#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
-msgstr ""
+msgstr "ข้อมูลทดสอบ"
#. Label of the test_job_id (Data) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Test Job ID"
-msgstr ""
+msgstr "รหัสงานทดสอบ"
#: frappe/core/doctype/translation/test_translation.py:49
#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
-msgstr ""
+msgstr "ทดสอบภาษาสเปน"
#: frappe/email/doctype/newsletter/newsletter.py:92
msgid "Test email sent to {0}"
-msgstr ""
+msgstr "อีเมลทดสอบถูกส่งไปยัง {0}"
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
-msgstr ""
+msgstr "โฟลเดอร์ทดสอบ"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -25460,22 +25460,22 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Text"
-msgstr ""
+msgstr "ข้อความ"
#. Label of the text_align (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Text Align"
-msgstr ""
+msgstr "จัดแนวข้อความ"
#. Label of the text_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Text Color"
-msgstr ""
+msgstr "สีข้อความ"
#. Label of the text_content (Code) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Text Content"
-msgstr ""
+msgstr "เนื้อหาข้อความ"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -25486,11 +25486,11 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Text Editor"
-msgstr ""
+msgstr "ตัวแก้ไขข้อความ"
#: frappe/templates/emails/password_reset.html:5
msgid "Thank you"
-msgstr ""
+msgstr "ขอบคุณ"
#: frappe/www/contact.py:39
msgid "Thank you for reaching out to us. We will get back to you at the earliest.\n\n\n"
@@ -25500,27 +25500,27 @@ msgstr ""
#: frappe/website/doctype/web_form/templates/web_form.html:140
msgid "Thank you for spending your valuable time to fill this form"
-msgstr ""
+msgstr "ขอบคุณที่สละเวลาของคุณในการกรอกแบบฟอร์มนี้"
#: frappe/templates/emails/auto_reply.html:1
msgid "Thank you for your email"
-msgstr ""
+msgstr "ขอบคุณสำหรับอีเมลของคุณ"
#: frappe/website/doctype/help_article/templates/help_article.html:27
msgid "Thank you for your feedback!"
-msgstr ""
+msgstr "ขอบคุณสำหรับความคิดเห็นของคุณ!"
#: frappe/email/doctype/newsletter/newsletter.py:332
msgid "Thank you for your interest in subscribing to our updates"
-msgstr ""
+msgstr "ขอบคุณที่สนใจสมัครรับข้อมูลอัปเดตของเรา"
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
-msgstr ""
+msgstr "ขอบคุณสำหรับข้อความของคุณ"
#: frappe/templates/emails/new_user.html:16
msgid "Thanks"
-msgstr ""
+msgstr "ขอบคุณ"
#: frappe/templates/emails/auto_repeat_fail.html:3
msgid "The Auto Repeat for this document has been disabled."
@@ -25584,32 +25584,32 @@ msgstr ""
#: frappe/core/doctype/data_import/importer.py:1009
msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format."
-msgstr ""
+msgstr "คอลัมน์ {0} มีรูปแบบวันที่ {1} รูปแบบที่แตกต่างกัน กำลังตั้งค่า {2} เป็นรูปแบบเริ่มต้นโดยอัตโนมัติเนื่องจากเป็นรูปแบบที่พบบ่อยที่สุด โปรดเปลี่ยนค่าอื่นๆ ในคอลัมน์นี้ให้เป็นรูปแบบนี้"
#: frappe/templates/includes/comments/comments.py:34
msgid "The comment cannot be empty"
-msgstr ""
+msgstr "ความคิดเห็นต้องไม่ว่างเปล่า"
#: frappe/templates/emails/workflow_action.html:9
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
-msgstr ""
+msgstr "เนื้อหาในอีเมลนี้เป็นความลับอย่างเคร่งครัด โปรดอย่าส่งต่ออีเมลนี้ให้ใคร"
#: frappe/public/js/frappe/list/list_view.js:658
msgid "The count shown is an estimated count. Click here to see the accurate count."
-msgstr ""
+msgstr "จำนวนที่แสดงเป็นจำนวนโดยประมาณ คลิกที่นี่เพื่อดูจำนวนที่ถูกต้อง"
#. Description of the 'Code' (Data) field in DocType 'Country'
#: frappe/geo/doctype/country/country.json
msgid "The country's ISO 3166 ALPHA-2 code."
-msgstr ""
+msgstr "รหัส ISO 3166 ALPHA-2 ของประเทศ"
#: frappe/public/js/frappe/views/interaction.js:301
msgid "The document could not be correctly assigned"
-msgstr ""
+msgstr "ไม่สามารถกำหนดเอกสารได้อย่างถูกต้อง"
#: frappe/public/js/frappe/views/interaction.js:295
msgid "The document has been assigned to {0}"
-msgstr ""
+msgstr "เอกสารถูกกำหนดให้กับ {0}"
#. Description of the 'Parent Document Type' (Link) field in DocType 'Dashboard
#. Chart'
@@ -25618,74 +25618,74 @@ msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "The document type selected is a child table, so the parent document type is required."
-msgstr ""
+msgstr "ประเภทเอกสารที่เลือกเป็นตารางลูก ดังนั้นจึงต้องการประเภทเอกสารหลัก"
#: frappe/core/doctype/user_type/user_type.py:110
msgid "The field {0} is mandatory"
-msgstr ""
+msgstr "ฟิลด์ {0} เป็นสิ่งจำเป็น"
#: frappe/core/doctype/file/file.py:145
msgid "The fieldname you've specified in Attached To Field is invalid"
-msgstr ""
+msgstr "ชื่อฟิลด์ที่คุณระบุในฟิลด์ที่แนบมาไม่ถูกต้อง"
#: frappe/automation/doctype/assignment_rule/assignment_rule.py:62
msgid "The following Assignment Days have been repeated: {0}"
-msgstr ""
+msgstr "วันมอบหมายต่อไปนี้ถูกทำซ้ำ: {0}"
#: frappe/printing/doctype/letter_head/letter_head.js:30
msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'"
-msgstr ""
+msgstr "สคริปต์ส่วนหัวต่อไปนี้จะเพิ่มวันที่ปัจจุบันไปยังองค์ประกอบใน 'Header HTML' ที่มีคลาส 'header-content'"
#: frappe/core/doctype/data_import/importer.py:1086
msgid "The following values are invalid: {0}. Values must be one of {1}"
-msgstr ""
+msgstr "ค่าต่อไปนี้ไม่ถูกต้อง: {0} ค่าต้องเป็นหนึ่งใน {1}"
#: frappe/core/doctype/data_import/importer.py:1043
msgid "The following values do not exist for {0}: {1}"
-msgstr ""
+msgstr "ค่าต่อไปนี้ไม่มีอยู่สำหรับ {0}: {1}"
#: frappe/core/doctype/user_type/user_type.py:89
msgid "The limit has not set for the user type {0} in the site config file."
-msgstr ""
+msgstr "ไม่ได้ตั้งค่าขีดจำกัดสำหรับประเภทผู้ใช้ {0} ในไฟล์การกำหนดค่าไซต์"
#: frappe/templates/emails/login_with_email_link.html:21
msgid "The link will expire in {0} minutes"
-msgstr ""
+msgstr "ลิงก์จะหมดอายุใน {0} นาที"
#: frappe/www/login.py:194
msgid "The link you trying to login is invalid or expired."
-msgstr ""
+msgstr "ลิงก์ที่คุณพยายามเข้าสู่ระบบไม่ถูกต้องหรือหมดอายุ"
#: frappe/website/doctype/web_page/web_page.js:125
msgid "The meta description is an HTML attribute that provides a brief summary of a web page. Search engines such as Google often display the meta description in search results, which can influence click-through rates."
-msgstr ""
+msgstr "คำอธิบายเมตาเป็นแอตทริบิวต์ HTML ที่ให้สรุปสั้นๆ ของหน้าเว็บ เครื่องมือค้นหาเช่น Google มักจะแสดงคำอธิบายเมตาในผลการค้นหา ซึ่งสามารถมีอิทธิพลต่ออัตราการคลิกผ่าน"
#: frappe/website/doctype/web_page/web_page.js:132
msgid "The meta image is unique image representing the content of the page. Images for this Card should be at least 280px in width, and at least 150px in height."
-msgstr ""
+msgstr "ภาพเมตาเป็นภาพที่ไม่ซ้ำกันซึ่งแสดงถึงเนื้อหาของหน้า รูปภาพสำหรับการ์ดนี้ควรมีความกว้างอย่างน้อย 280px และสูงอย่างน้อย 150px"
#. Description of the 'Calendar Name' (Data) field in DocType 'Google Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "The name that will appear in Google Calendar"
-msgstr ""
+msgstr "ชื่อที่จะปรากฏใน Google ปฏิทิน"
#. Description of the 'Track Steps' (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "The next tour will start from where the user left off."
-msgstr ""
+msgstr "ทัวร์ถัดไปจะเริ่มจากจุดที่ผู้ใช้หยุดไว้"
#. Description of the 'Request Timeout' (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "The number of seconds until the request expires"
-msgstr ""
+msgstr "จำนวนวินาทีก่อนที่คำขอจะหมดอายุ"
#: frappe/www/update-password.html:88
msgid "The password of your account has expired."
-msgstr ""
+msgstr "รหัสผ่านของบัญชีของคุณหมดอายุแล้ว"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:398
msgid "The process for deletion of {0} data associated with {1} has been initiated."
-msgstr ""
+msgstr "กระบวนการลบข้อมูล {0} ที่เกี่ยวข้องกับ {1} ได้เริ่มต้นขึ้นแล้ว"
#. Description of the 'App ID' (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
@@ -25696,48 +25696,48 @@ msgstr ""
#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
-msgstr ""
+msgstr "ลิงก์รีเซ็ตรหัสผ่านหมดอายุแล้ว"
#: frappe/core/doctype/user/user.py:991
msgid "The reset password link has either been used before or is invalid"
-msgstr ""
+msgstr "ลิงก์รีเซ็ตรหัสผ่านถูกใช้ไปแล้วหรือไม่ถูกต้อง"
#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
-msgstr ""
+msgstr "ทรัพยากรที่คุณกำลังมองหาไม่มีอยู่"
#: frappe/core/doctype/user_type/user_type.py:114
msgid "The role {0} should be a custom role."
-msgstr ""
+msgstr "บทบาท {0} ควรเป็นบทบาทที่กำหนดเอง"
#: frappe/core/doctype/audit_trail/audit_trail.py:46
msgid "The selected document {0} is not a {1}."
-msgstr ""
+msgstr "เอกสารที่เลือก {0} ไม่ใช่ {1}"
#: frappe/utils/response.py:331
msgid "The system is being updated. Please refresh again after a few moments."
-msgstr ""
+msgstr "ระบบกำลังอัปเดต โปรดรีเฟรชอีกครั้งหลังจากสักครู่"
#: frappe/core/page/permission_manager/permission_manager_help.html:9
msgid "The system provides many pre-defined roles. You can add new roles to set finer permissions."
-msgstr ""
+msgstr "ระบบมีบทบาทที่กำหนดไว้ล่วงหน้ามากมาย คุณสามารถเพิ่มบทบาทใหม่เพื่อกำหนดสิทธิ์ที่ละเอียดขึ้น"
#: frappe/core/doctype/user_type/user_type.py:97
msgid "The total number of user document types limit has been crossed."
-msgstr ""
+msgstr "จำนวนประเภทเอกสารผู้ใช้ทั้งหมดเกินขีดจำกัดแล้ว"
#: frappe/public/js/frappe/form/controls/data.js:25
msgid "The value you pasted was {0} characters long. Max allowed characters is {1}."
-msgstr ""
+msgstr "ค่าที่คุณวางมีความยาว {0} ตัวอักษร จำนวนตัวอักษรสูงสุดที่อนุญาตคือ {1}"
#. Description of the 'Condition' (Small Text) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "The webhook will be triggered if this expression is true"
-msgstr ""
+msgstr "Webhook จะถูกเรียกใช้หากนิพจน์นี้เป็นจริง"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175
msgid "The {0} is already on auto repeat {1}"
-msgstr ""
+msgstr "{0} อยู่ในโหมดทำซ้ำอัตโนมัติ {1} แล้ว"
#. Label of the section_break_6 (Section Break) field in DocType 'Website
#. Settings'
@@ -25802,145 +25802,145 @@ msgstr ""
#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
-msgstr ""
+msgstr "มีปัญหากับ URL ของไฟล์: {0}"
#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
-msgstr ""
+msgstr "มี {0} ที่มีตัวกรองเดียวกันอยู่ในคิวแล้ว:"
#: frappe/core/page/permission_manager/permission_manager.py:156
msgid "There must be atleast one permission rule."
-msgstr ""
+msgstr "ต้องมีอย่างน้อยหนึ่งกฎสิทธิ์"
#: frappe/www/error.py:17
msgid "There was an error building this page"
-msgstr ""
+msgstr "เกิดข้อผิดพลาดในการสร้างหน้านี้"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
msgid "There was an error saving filters"
-msgstr ""
+msgstr "เกิดข้อผิดพลาดในการบันทึกตัวกรอง"
#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
-msgstr ""
+msgstr "มีข้อผิดพลาด"
#: frappe/public/js/frappe/views/interaction.js:277
msgid "There were errors while creating the document. Please try again."
-msgstr ""
+msgstr "เกิดข้อผิดพลาดขณะสร้างเอกสาร โปรดลองอีกครั้ง"
#: frappe/public/js/frappe/views/communication.js:837
msgid "There were errors while sending email. Please try again."
-msgstr ""
+msgstr "เกิดข้อผิดพลาดขณะส่งอีเมล โปรดลองอีกครั้ง"
#: frappe/model/naming.py:494
msgid "There were some errors setting the name, please contact the administrator"
-msgstr ""
+msgstr "เกิดข้อผิดพลาดบางอย่างในการตั้งชื่อ โปรดติดต่อผู้ดูแลระบบ"
#. Description of the 'Announcement Widget' (Text Editor) field in DocType
#. 'Navbar Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "These announcements will appear inside a dismissible alert below the Navbar."
-msgstr ""
+msgstr "ประกาศเหล่านี้จะแสดงในข้อความแจ้งเตือนที่สามารถปิดได้ใต้แถบนำทาง"
#. Description of the 'LDAP Custom Settings' (Section Break) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "These settings are required if 'Custom' LDAP Directory is used"
-msgstr ""
+msgstr "การตั้งค่าเหล่านี้จำเป็นหากใช้ไดเรกทอรี LDAP แบบกำหนดเอง"
#. Description of the 'Defaults' (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values."
-msgstr ""
+msgstr "ค่าดังกล่าวจะถูกอัปเดตโดยอัตโนมัติในธุรกรรมและยังมีประโยชน์ในการจำกัดสิทธิ์สำหรับผู้ใช้นี้ในธุรกรรมที่มีค่าดังกล่าว"
#: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14
msgid "Third Party Apps"
-msgstr ""
+msgstr "แอปพลิเคชันของบุคคลที่สาม"
#. Label of the third_party_authentication (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Third Party Authentication"
-msgstr ""
+msgstr "การตรวจสอบสิทธิ์ของบุคคลที่สาม"
#: frappe/geo/doctype/currency/currency.js:8
msgid "This Currency is disabled. Enable to use in transactions"
-msgstr ""
+msgstr "สกุลเงินนี้ถูกปิดใช้งาน เปิดใช้งานเพื่อใช้ในธุรกรรม"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
msgid "This Kanban Board will be private"
-msgstr ""
+msgstr "กระดาน Kanban นี้จะเป็นส่วนตัว"
#: frappe/public/js/frappe/ui/filters/filter.js:666
msgid "This Month"
-msgstr ""
+msgstr "เดือนนี้"
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
-msgstr ""
+msgstr "ไตรมาสนี้"
#: frappe/public/js/frappe/ui/filters/filter.js:662
msgid "This Week"
-msgstr ""
+msgstr "สัปดาห์นี้"
#: frappe/public/js/frappe/ui/filters/filter.js:674
msgid "This Year"
-msgstr ""
+msgstr "ปีนี้"
#: frappe/custom/doctype/customize_form/customize_form.js:220
msgid "This action is irreversible. Do you wish to continue?"
-msgstr ""
+msgstr "การกระทำนี้ไม่สามารถย้อนกลับได้ คุณต้องการดำเนินการต่อหรือไม่?"
#: frappe/__init__.py:757
msgid "This action is only allowed for {}"
-msgstr ""
+msgstr "การกระทำนี้อนุญาตเฉพาะสำหรับ {}"
#: frappe/public/js/frappe/form/toolbar.js:117
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
-msgstr ""
+msgstr "ไม่สามารถย้อนกลับได้"
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
-msgstr ""
+msgstr "การ์ดนี้จะพร้อมใช้งานสำหรับผู้ใช้ทุกคนหากตั้งค่านี้"
#. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "This chart will be available to all Users if this is set"
-msgstr ""
+msgstr "แผนภูมินี้จะพร้อมใช้งานสำหรับผู้ใช้ทุกคนหากตั้งค่านี้"
#: frappe/custom/doctype/customize_form/customize_form.js:212
msgid "This doctype has no orphan fields to trim"
-msgstr ""
+msgstr "ประเภทเอกสารนี้ไม่มีฟิลด์ที่ไม่ได้ใช้งานให้ตัดแต่ง"
#: frappe/core/doctype/doctype/doctype.py:1054
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
-msgstr ""
+msgstr "ประเภทเอกสารนี้มีการย้ายข้อมูลที่ค้างอยู่ ให้รัน 'bench migrate' ก่อนแก้ไขประเภทเอกสารเพื่อหลีกเลี่ยงการสูญเสียการเปลี่ยนแปลง"
#: frappe/model/delete_doc.py:112
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
-msgstr ""
+msgstr "ไม่สามารถลบเอกสารนี้ได้ในขณะนี้เนื่องจากกำลังถูกแก้ไขโดยผู้ใช้อื่น โปรดลองอีกครั้งหลังจากสักครู่"
#: frappe/www/confirm_workflow_action.html:8
msgid "This document has been modified after the email was sent."
-msgstr ""
+msgstr "เอกสารนี้ถูกแก้ไขหลังจากส่งอีเมลแล้ว"
#: frappe/public/js/frappe/form/form.js:1305
msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing."
-msgstr ""
+msgstr "เอกสารนี้มีการเปลี่ยนแปลงที่ยังไม่ได้บันทึกซึ่งอาจไม่ปรากฏใน PDF สุดท้าย
พิจารณาบันทึกเอกสารก่อนพิมพ์"
#: frappe/public/js/frappe/form/form.js:1102
msgid "This document is already amended, you cannot ammend it again"
-msgstr ""
+msgstr "เอกสารนี้ได้รับการแก้ไขแล้ว คุณไม่สามารถแก้ไขได้อีก"
#: frappe/model/document.py:473
msgid "This document is currently locked and queued for execution. Please try again after some time."
-msgstr ""
+msgstr "เอกสารนี้ถูกล็อกและจัดคิวสำหรับการดำเนินการ โปรดลองอีกครั้งหลังจากสักครู่"
#: frappe/templates/emails/auto_repeat_fail.html:7
msgid "This email is autogenerated"
-msgstr ""
+msgstr "อีเมลนี้ถูกสร้างขึ้นโดยอัตโนมัติ"
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:30
msgid "This feature can not be used as dependencies are missing.\n"
@@ -25949,7 +25949,7 @@ msgstr ""
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "This feature is brand new and still experimental"
-msgstr ""
+msgstr "คุณลักษณะนี้เป็นของใหม่และยังอยู่ในขั้นทดลอง"
#. Description of the 'Depends On' (Code) field in DocType 'Customize Form
#. Field'
@@ -25962,138 +25962,138 @@ msgstr ""
#: frappe/core/doctype/file/file.py:500
msgid "This file is attached to a protected document and cannot be deleted."
-msgstr ""
+msgstr "ไฟล์นี้แนบกับเอกสารที่ได้รับการป้องกันและไม่สามารถลบได้"
#: frappe/public/js/frappe/file_uploader/FilePreview.vue:76
msgid "This file is public and can be accessed by anyone, even without logging in. Mark it private to limit access."
-msgstr ""
+msgstr "ไฟล์นี้เป็นสาธารณะและสามารถเข้าถึงได้โดยทุกคน แม้ไม่ได้เข้าสู่ระบบ ทำเครื่องหมายเป็นส่วนตัวเพื่อจำกัดการเข้าถึง"
#: frappe/core/doctype/file/file.js:20
msgid "This file is public. It can be accessed without authentication."
-msgstr ""
+msgstr "ไฟล์นี้เป็นสาธารณะ สามารถเข้าถึงได้โดยไม่ต้องยืนยันตัวตน"
#: frappe/public/js/frappe/form/form.js:1199
msgid "This form has been modified after you have loaded it"
-msgstr ""
+msgstr "ฟอร์มนี้ถูกแก้ไขหลังจากที่คุณโหลดแล้ว"
#: frappe/public/js/frappe/form/form.js:2257
msgid "This form is not editable due to a Workflow."
-msgstr ""
+msgstr "ฟอร์มนี้ไม่สามารถแก้ไขได้เนื่องจากเวิร์กโฟลว์"
#. Description of the 'Is Default' (Check) field in DocType 'Address Template'
#: frappe/contacts/doctype/address_template/address_template.json
msgid "This format is used if country specific format is not found"
-msgstr ""
+msgstr "รูปแบบนี้จะถูกใช้หากไม่พบรูปแบบเฉพาะประเทศ"
#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.py:52
msgid "This geolocation provider is not supported yet."
-msgstr ""
+msgstr "ผู้ให้บริการตำแหน่งทางภูมิศาสตร์นี้ยังไม่ได้รับการสนับสนุน"
#. Description of the 'Header' (HTML Editor) field in DocType 'Website
#. Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "This goes above the slideshow."
-msgstr ""
+msgstr "สิ่งนี้จะอยู่เหนือสไลด์โชว์"
#: frappe/public/js/frappe/views/reports/query_report.js:2128
msgid "This is a background report. Please set the appropriate filters and then generate a new one."
-msgstr ""
+msgstr "นี่คือรายงานพื้นหลัง โปรดตั้งค่าตัวกรองที่เหมาะสมแล้วสร้างใหม่"
#: frappe/utils/password_strength.py:158
msgid "This is a top-10 common password."
-msgstr ""
+msgstr "นี่คือรหัสผ่านที่พบบ่อยใน 10 อันดับแรก"
#: frappe/utils/password_strength.py:160
msgid "This is a top-100 common password."
-msgstr ""
+msgstr "นี่คือรหัสผ่านที่พบบ่อยใน 100 อันดับแรก"
#: frappe/utils/password_strength.py:162
msgid "This is a very common password."
-msgstr ""
+msgstr "นี่คือรหัสผ่านที่พบบ่อยมาก"
#: frappe/core/doctype/rq_job/rq_job.js:9
msgid "This is a virtual doctype and data is cleared periodically."
-msgstr ""
+msgstr "นี่คือประเภทเอกสารเสมือนและข้อมูลจะถูกล้างเป็นระยะ"
#: frappe/templates/emails/auto_reply.html:5
msgid "This is an automatically generated reply"
-msgstr ""
+msgstr "นี่คือการตอบกลับที่สร้างขึ้นโดยอัตโนมัติ"
#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog
#. Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "This is an example Google SERP Preview."
-msgstr ""
+msgstr "นี่คือตัวอย่างการแสดงผลใน Google SERP"
#: frappe/utils/password_strength.py:164
msgid "This is similar to a commonly used password."
-msgstr ""
+msgstr "นี่คล้ายกับรหัสผ่านที่ใช้บ่อย"
#. Description of the 'Current Value' (Int) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "This is the number of the last created transaction with this prefix"
-msgstr ""
+msgstr "นี่คือตัวเลขของธุรกรรมล่าสุดที่สร้างด้วยคำนำหน้านี้"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407
msgid "This link has already been activated for verification."
-msgstr ""
+msgstr "ลิงก์นี้ถูกเปิดใช้งานแล้วสำหรับการยืนยัน"
#: frappe/utils/verified_command.py:49
msgid "This link is invalid or expired. Please make sure you have pasted correctly."
-msgstr ""
+msgstr "ลิงก์นี้ไม่ถูกต้องหรือหมดอายุ โปรดตรวจสอบว่าคุณวางถูกต้อง"
#: frappe/printing/page/print/print.js:410
msgid "This may get printed on multiple pages"
-msgstr ""
+msgstr "สิ่งนี้อาจถูกพิมพ์ในหลายหน้า"
#: frappe/utils/goal.py:109
msgid "This month"
-msgstr ""
+msgstr "เดือนนี้"
#: frappe/email/doctype/newsletter/newsletter.js:223
msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
+msgstr "จดหมายข่าวนี้มีกำหนดส่งในวันที่ {0}"
#: frappe/email/doctype/newsletter/newsletter.js:50
msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
+msgstr "จดหมายข่าวนี้มีกำหนดส่งในภายหลัง คุณแน่ใจหรือไม่ว่าต้องการส่งตอนนี้?"
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
-msgstr ""
+msgstr "รายงานนี้มี {0} แถวและใหญ่เกินไปที่จะแสดงในเบราว์เซอร์ คุณสามารถ {1} รายงานนี้แทน"
#: frappe/templates/emails/auto_email_report.html:57
msgid "This report was generated on {0}"
-msgstr ""
+msgstr "รายงานนี้ถูกสร้างขึ้นเมื่อ {0}"
#: frappe/public/js/frappe/views/reports/query_report.js:851
msgid "This report was generated {0}."
-msgstr ""
+msgstr "รายงานนี้ถูกสร้างขึ้น {0}"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:122
msgid "This request has not yet been approved by the user."
-msgstr ""
+msgstr "คำขอนี้ยังไม่ได้รับการอนุมัติจากผู้ใช้"
#: frappe/templates/includes/navbar/navbar_items.html:95
msgid "This site is in read only mode, full functionality will be restored soon."
-msgstr ""
+msgstr "ไซต์นี้อยู่ในโหมดอ่านอย่างเดียว ฟังก์ชันการทำงานทั้งหมดจะได้รับการคืนค่าในไม่ช้า"
#: frappe/core/doctype/doctype/doctype.js:73
msgid "This site is running in developer mode. Any change made here will be updated in code."
-msgstr ""
+msgstr "ไซต์นี้กำลังทำงานในโหมดนักพัฒนา การเปลี่ยนแปลงใด ๆ ที่ทำที่นี่จะถูกอัปเดตในโค้ด"
#: frappe/www/attribution.html:11
msgid "This software is built on top of many open source packages."
-msgstr ""
+msgstr "ซอฟต์แวร์นี้สร้างขึ้นบนพื้นฐานของแพ็คเกจโอเพ่นซอร์สมากมาย"
#: frappe/website/doctype/web_page/web_page.js:71
msgid "This title will be used as the title of the webpage as well as in meta tags"
-msgstr ""
+msgstr "ชื่อนี้จะถูกใช้เป็นชื่อของหน้าเว็บรวมถึงในแท็กเมตา"
#: frappe/public/js/frappe/form/controls/base_input.js:129
msgid "This value is fetched from {0}'s {1} field"
-msgstr ""
+msgstr "ค่านี้ถูกดึงมาจากฟิลด์ {1} ของ {0}"
#. Description of the 'Max Report Rows' (Int) field in DocType 'System
#. Settings'
@@ -26103,31 +26103,31 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.js:85
msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish"
-msgstr ""
+msgstr "สิ่งนี้จะถูกสร้างขึ้นโดยอัตโนมัติเมื่อคุณเผยแพร่หน้า คุณยังสามารถป้อนเส้นทางเองได้หากต้องการ"
#. Description of the 'Callback Message' (Small Text) field in DocType
#. 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "This will be shown in a modal after routing"
-msgstr ""
+msgstr "สิ่งนี้จะแสดงในหน้าต่างโมดัลหลังจากการกำหนดเส้นทาง"
#. Description of the 'Report Description' (Data) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "This will be shown to the user in a dialog after routing to the report"
-msgstr ""
+msgstr "สิ่งนี้จะแสดงให้ผู้ใช้เห็นในกล่องโต้ตอบหลังจากการกำหนดเส้นทางไปยังรายงาน"
#: frappe/www/third_party_apps.html:23
msgid "This will log out {0} from all other devices"
-msgstr ""
+msgstr "สิ่งนี้จะออกจากระบบ {0} จากอุปกรณ์อื่นทั้งหมด"
#: frappe/templates/emails/delete_data_confirmation.html:3
msgid "This will permanently remove your data."
-msgstr ""
+msgstr "สิ่งนี้จะลบข้อมูลของคุณอย่างถาวร"
#: frappe/desk/doctype/form_tour/form_tour.js:103
msgid "This will reset this tour and show it to all users. Are you sure?"
-msgstr ""
+msgstr "สิ่งนี้จะรีเซ็ตทัวร์นี้และแสดงให้ผู้ใช้ทุกคนเห็น คุณแน่ใจหรือไม่?"
#: frappe/core/doctype/rq_job/rq_job.js:15
msgid "This will terminate the job immediately and might be dangerous, are you sure? "
@@ -26450,19 +26450,19 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.py:107
msgid "To allow more reports update limit in System Settings."
-msgstr ""
+msgstr "เพื่ออนุญาตให้รายงานเพิ่มเติมอัปเดตขีดจำกัดในการตั้งค่าระบบ"
#. Label of the section_break_10 (Section Break) field in DocType
#. 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "To and CC"
-msgstr ""
+msgstr "ถึงและสำเนา"
#. Description of the 'Use First Day of Period' (Check) field in DocType 'Auto
#. Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "To begin the date range at the start of the chosen period. For example, if 'Year' is selected as the period, the report will start from January 1st of the current year."
-msgstr ""
+msgstr "เพื่อเริ่มช่วงวันที่ตั้งแต่ต้นช่วงเวลาที่เลือก ตัวอย่างเช่น หากเลือก 'ปี' เป็นช่วงเวลา รายงานจะเริ่มตั้งแต่วันที่ 1 มกราคมของปีปัจจุบัน"
#: frappe/automation/doctype/auto_repeat/auto_repeat.js:35
msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}."
@@ -26470,44 +26470,44 @@ msgstr ""
#: frappe/www/login.html:76
msgid "To enable it follow the instructions in the following link: {0}"
-msgstr ""
+msgstr "เพื่อเปิดใช้งาน ให้ทำตามคำแนะนำในลิงก์ต่อไปนี้: {0}"
#: frappe/core/doctype/server_script/server_script.js:40
msgid "To enable server scripts, read the {0}."
-msgstr ""
+msgstr "เพื่อเปิดใช้งานสคริปต์เซิร์ฟเวอร์ อ่าน {0}"
#: frappe/desk/doctype/onboarding_step/onboarding_step.js:18
msgid "To export this step as JSON, link it in a Onboarding document and save the document."
-msgstr ""
+msgstr "เพื่อส่งออกขั้นตอนนี้เป็น JSON ให้ลิงก์ในเอกสารการเริ่มต้นใช้งานและบันทึกเอกสาร"
#: frappe/email/doctype/email_account/email_account.js:126
msgid "To generate password click {0}"
-msgstr ""
+msgstr "เพื่อสร้างรหัสผ่าน คลิก {0}"
#: frappe/public/js/frappe/views/reports/query_report.js:852
msgid "To get the updated report, click on {0}."
-msgstr ""
+msgstr "เพื่อรับรายงานที่อัปเดต คลิกที่ {0}"
#: frappe/email/doctype/email_account/email_account.js:139
msgid "To know more click {0}"
-msgstr ""
+msgstr "เพื่อทราบข้อมูลเพิ่มเติม คลิก {0}"
#. Description of the 'Console' (Code) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "To print output use print(text)"
-msgstr ""
+msgstr "เพื่อพิมพ์ผลลัพธ์ ใช้ print(text)"
#: frappe/core/doctype/user_type/user_type.py:291
msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record."
-msgstr ""
+msgstr "เพื่อกำหนดบทบาท {0} ในผู้ใช้ {1} โปรดตั้งค่าฟิลด์ {2} เป็น {3} ในระเบียน {4} หนึ่งรายการ"
#: frappe/integrations/doctype/google_calendar/google_calendar.js:8
msgid "To use Google Calendar, enable {0}."
-msgstr ""
+msgstr "เพื่อใช้ Google ปฏิทิน ให้เปิดใช้งาน {0}"
#: frappe/integrations/doctype/google_contacts/google_contacts.js:8
msgid "To use Google Contacts, enable {0}."
-msgstr ""
+msgstr "เพื่อใช้ Google ผู้ติดต่อ ให้เปิดใช้งาน {0}"
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
@@ -26522,7 +26522,7 @@ msgstr ""
#: frappe/public/js/frappe/utils/diffview.js:44
msgid "To version"
-msgstr ""
+msgstr "ถึงเวอร์ชัน"
#. Label of a shortcut in the Tools Workspace
#. Name of a DocType
@@ -26531,119 +26531,119 @@ msgstr ""
#: frappe/automation/workspace/tools/tools.json
#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.json
msgid "ToDo"
-msgstr ""
+msgstr "สิ่งที่ต้องทำ"
#: frappe/public/js/frappe/form/controls/date.js:58
#: frappe/public/js/frappe/ui/filters/filter.js:733
#: frappe/public/js/frappe/views/calendar/calendar.js:274
msgid "Today"
-msgstr ""
+msgstr "วันนี้"
#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
-msgstr ""
+msgstr "สลับแผนภูมิ"
#. Label of a standard navbar item
#. Type: Action
#: frappe/hooks.py
msgid "Toggle Full Width"
-msgstr ""
+msgstr "สลับความกว้างเต็ม"
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
-msgstr ""
+msgstr "สลับมุมมองตาราง"
#: frappe/public/js/frappe/ui/page.js:201
#: frappe/public/js/frappe/ui/page.js:203
#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
-msgstr ""
+msgstr "สลับแถบด้านข้าง"
#: frappe/public/js/frappe/list/list_view.js:1819
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
-msgstr ""
+msgstr "สลับแถบด้านข้าง"
#. Label of a standard navbar item
#. Type: Action
#: frappe/hooks.py
msgid "Toggle Theme"
-msgstr ""
+msgstr "สลับธีม"
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
-msgstr ""
+msgstr "โทเค็น"
#. Name of a DocType
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Cache"
-msgstr ""
+msgstr "แคชโทเค็น"
#. Label of the token_type (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Type"
-msgstr ""
+msgstr "ประเภทโทเค็น"
#. Label of the token_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Token URI"
-msgstr ""
+msgstr "URI โทเค็น"
#: frappe/utils/oauth.py:184
msgid "Token is missing"
-msgstr ""
+msgstr "โทเค็นหายไป"
#: frappe/public/js/frappe/ui/filters/filter.js:739
msgid "Tomorrow"
-msgstr ""
+msgstr "พรุ่งนี้"
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
#: frappe/model/workflow.py:254
msgid "Too Many Documents"
-msgstr ""
+msgstr "เอกสารมากเกินไป"
#: frappe/rate_limiter.py:101
msgid "Too Many Requests"
-msgstr ""
+msgstr "คำขอมากเกินไป"
#: frappe/database/database.py:474
msgid "Too many changes to database in single action."
-msgstr ""
+msgstr "การเปลี่ยนแปลงฐานข้อมูลมากเกินไปในหนึ่งการกระทำ"
#: frappe/utils/background_jobs.py:730
msgid "Too many queued background jobs ({0}). Please retry after some time."
-msgstr ""
+msgstr "งานพื้นหลังที่คิวมากเกินไป ({0}) โปรดลองอีกครั้งหลังจากสักครู่"
#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
-msgstr ""
+msgstr "ผู้ใช้จำนวนมากลงทะเบียนเมื่อเร็ว ๆ นี้ ดังนั้นการลงทะเบียนจึงถูกปิดใช้งาน โปรดลองอีกครั้งในหนึ่งชั่วโมง"
#. Name of a Workspace
#. Label of a Card Break in the Tools Workspace
#: frappe/automation/workspace/tools/tools.json
msgid "Tools"
-msgstr ""
+msgstr "เครื่องมือ"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:153
msgid "Top"
-msgstr ""
+msgstr "บนสุด"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13
msgid "Top 10"
-msgstr ""
+msgstr "10 อันดับแรก"
#. Name of a DocType
#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Top Bar Item"
-msgstr ""
+msgstr "รายการแถบบน"
#. Label of the top_bar_items (Table) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Top Bar Items"
-msgstr ""
+msgstr "รายการแถบบน"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -26651,18 +26651,18 @@ msgstr ""
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:245
msgid "Top Center"
-msgstr ""
+msgstr "ศูนย์กลางบนสุด"
#. Label of the top_errors (Table) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Top Errors"
-msgstr ""
+msgstr "ข้อผิดพลาดสูงสุด"
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:244
msgid "Top Left"
-msgstr ""
+msgstr "ซ้ายบน"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -26670,45 +26670,45 @@ msgstr ""
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:246
msgid "Top Right"
-msgstr ""
+msgstr "ขวาบน"
#. Label of the topic (Link) field in DocType 'Discussion Reply'
#: frappe/website/doctype/discussion_reply/discussion_reply.json
msgid "Topic"
-msgstr ""
+msgstr "หัวข้อ"
#: frappe/desk/query_report.py:533
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
-msgstr ""
+msgstr "รวม"
#. Label of the total_background_workers (Int) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Total Background Workers"
-msgstr ""
+msgstr "รวมผู้ปฏิบัติงานพื้นหลัง"
#. Label of the total_errors (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Total Errors (last 1 day)"
-msgstr ""
+msgstr "รวมข้อผิดพลาด (1 วันที่ผ่านมา)"
#: frappe/public/js/frappe/ui/capture.js:259
msgid "Total Images"
-msgstr ""
+msgstr "รวมภาพ"
#. Label of the total_outgoing_emails (Int) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Total Outgoing Emails"
-msgstr ""
+msgstr "รวมอีเมลขาออก"
#. Label of the total_recipients (Int) field in DocType 'Newsletter'
#: frappe/email/doctype/newsletter/newsletter.json
msgid "Total Recipients"
-msgstr ""
+msgstr "รวมผู้รับ"
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
@@ -26716,22 +26716,22 @@ msgstr ""
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
-msgstr ""
+msgstr "รวมผู้สมัครสมาชิก"
#. Label of the total_users (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Total Users"
-msgstr ""
+msgstr "รวมผู้ใช้"
#. Label of the total_views (Int) field in DocType 'Newsletter'
#: frappe/email/doctype/newsletter/newsletter.json
msgid "Total Views"
-msgstr ""
+msgstr "รวมการดู"
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
-msgstr ""
+msgstr "รวมเวลาทำงาน"
#. Description of the 'Initial Sync Count' (Select) field in DocType 'Email
#. Account'
@@ -26741,15 +26741,15 @@ msgstr ""
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:12
msgid "Total:"
-msgstr ""
+msgstr "รวม:"
#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
-msgstr ""
+msgstr "รวมทั้งหมด"
#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
-msgstr ""
+msgstr "แถวรวม"
#. Label of the trace_id (Data) field in DocType 'Error Log'
#: frappe/core/doctype/error_log/error_log.json
@@ -26806,7 +26806,7 @@ msgstr ""
#. Description of a DocType
#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json
msgid "Track milestones for any document"
-msgstr ""
+msgstr "ติดตามเหตุการณ์สำคัญสำหรับเอกสารใด ๆ"
#. Label of a Card Break in the Website Workspace
#: frappe/website/workspace/website/website.json
@@ -26815,41 +26815,41 @@ msgstr ""
#: frappe/public/js/frappe/utils/utils.js:1781
msgid "Tracking URL generated and copied to clipboard"
-msgstr ""
+msgstr "URL การติดตามถูกสร้างและคัดลอกไปยังคลิปบอร์ด"
#. Label of the transaction_hash (Small Text) field in DocType 'Transaction
#. Log'
#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Transaction Hash"
-msgstr ""
+msgstr "แฮชธุรกรรม"
#. Name of a DocType
#: frappe/core/doctype/transaction_log/transaction_log.json
msgid "Transaction Log"
-msgstr ""
+msgstr "บันทึกธุรกรรม"
#. Name of a report
#: frappe/core/report/transaction_log_report/transaction_log_report.json
msgid "Transaction Log Report"
-msgstr ""
+msgstr "รายงานบันทึกธุรกรรม"
#: frappe/desk/page/setup_wizard/install_fixtures.py:31
msgid "Transgender"
-msgstr ""
+msgstr "คนข้ามเพศ"
#: frappe/public/js/workflow_builder/components/Properties.vue:19
msgid "Transition Properties"
-msgstr ""
+msgstr "คุณสมบัติการเปลี่ยนผ่าน"
#. Label of the transition_rules (Section Break) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Transition Rules"
-msgstr ""
+msgstr "กฎการเปลี่ยนผ่าน"
#. Label of the transitions (Table) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Transitions"
-msgstr ""
+msgstr "การเปลี่ยนผ่าน"
#. Label of the translatable (Check) field in DocType 'DocField'
#. Label of the translatable (Check) field in DocType 'Custom Field'
@@ -26858,40 +26858,40 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Translatable"
-msgstr ""
+msgstr "สามารถแปลได้"
#: frappe/public/js/frappe/views/reports/query_report.js:2183
msgid "Translate Data"
-msgstr ""
+msgstr "แปลข้อมูล"
#. Label of the translated_doctype (Check) field in DocType 'DocType'
#. Label of the translated_doctype (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Translate Link Fields"
-msgstr ""
+msgstr "แปลฟิลด์ลิงก์"
#: frappe/public/js/frappe/views/reports/report_view.js:1656
msgid "Translate values"
-msgstr ""
+msgstr "แปลค่า"
#: frappe/public/js/frappe/views/translation_manager.js:11
msgid "Translate {0}"
-msgstr ""
+msgstr "แปล {0}"
#. Label of the translated_text (Code) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Translated Text"
-msgstr ""
+msgstr "ข้อความที่แปลแล้ว"
#. Name of a DocType
#: frappe/core/doctype/translation/translation.json
msgid "Translation"
-msgstr ""
+msgstr "การแปล"
#: frappe/public/js/frappe/views/translation_manager.js:46
msgid "Translations"
-msgstr ""
+msgstr "การแปล"
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
@@ -27116,33 +27116,33 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.js:84
msgid "URL of the page"
-msgstr ""
+msgstr "URL ของหน้า"
#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item'
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "URL to go to on clicking the slideshow image"
-msgstr ""
+msgstr "URL ที่จะไปเมื่อคลิกที่ภาพสไลด์โชว์"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
-msgstr ""
+msgstr "แคมเปญ UTM"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
-msgstr ""
+msgstr "สื่อ UTM"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
#: frappe/website/workspace/website/website.json
msgid "UTM Source"
-msgstr ""
+msgstr "แหล่งที่มา UTM"
#. Option for the 'Naming Rule' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
@@ -27151,75 +27151,75 @@ msgstr ""
#: frappe/desk/form/document_follow.py:79
msgid "Un-following document {0}"
-msgstr ""
+msgstr "เลิกติดตามเอกสาร {0}"
#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:67
msgid "Unable to find DocType {0}"
-msgstr ""
+msgstr "ไม่สามารถหา DocType {0} ได้"
#: frappe/public/js/frappe/ui/capture.js:338
msgid "Unable to load camera."
-msgstr ""
+msgstr "ไม่สามารถโหลดกล้องได้"
#: frappe/public/js/frappe/model/model.js:230
msgid "Unable to load: {0}"
-msgstr ""
+msgstr "ไม่สามารถโหลด: {0}"
#: frappe/utils/csvutils.py:37
msgid "Unable to open attached file. Did you export it as CSV?"
-msgstr ""
+msgstr "ไม่สามารถเปิดไฟล์ที่แนบมาได้ คุณได้ส่งออกเป็น CSV หรือไม่?"
#: frappe/core/doctype/file/utils.py:98 frappe/core/doctype/file/utils.py:130
msgid "Unable to read file format for {0}"
-msgstr ""
+msgstr "ไม่สามารถอ่านรูปแบบไฟล์สำหรับ {0}"
#: frappe/core/doctype/communication/email.py:179
msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account"
-msgstr ""
+msgstr "ไม่สามารถส่งอีเมลได้เนื่องจากไม่มีบัญชีอีเมล โปรดตั้งค่าบัญชีอีเมลเริ่มต้นจาก การตั้งค่า > บัญชีอีเมล"
#: frappe/public/js/frappe/views/calendar/calendar.js:450
msgid "Unable to update event"
-msgstr ""
+msgstr "ไม่สามารถอัปเดตกิจกรรมได้"
#: frappe/core/doctype/file/file.py:464
msgid "Unable to write file format for {0}"
-msgstr ""
+msgstr "ไม่สามารถเขียนรูปแบบไฟล์สำหรับ {0}"
#. Label of the unassign_condition (Code) field in DocType 'Assignment Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Unassign Condition"
-msgstr ""
+msgstr "ยกเลิกการกำหนดเงื่อนไข"
#: frappe/app.py:376
msgid "Uncaught Exception"
-msgstr ""
+msgstr "ข้อยกเว้นที่ไม่ได้จับ"
#: frappe/public/js/frappe/form/toolbar.js:103
msgid "Unchanged"
-msgstr ""
+msgstr "ไม่เปลี่ยนแปลง"
#: frappe/public/js/frappe/form/toolbar.js:515
msgid "Undo"
-msgstr ""
+msgstr "เลิกทำ"
#: frappe/public/js/frappe/form/toolbar.js:523
msgid "Undo last action"
-msgstr ""
+msgstr "เลิกทำการกระทำล่าสุด"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
-msgstr ""
+msgstr "เลิกติดตาม"
#. Name of a DocType
#: frappe/email/doctype/unhandled_email/unhandled_email.json
msgid "Unhandled Email"
-msgstr ""
+msgstr "อีเมลที่ไม่ได้จัดการ"
#. Label of the unhandled_emails (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Unhandled Emails"
-msgstr ""
+msgstr "อีเมลที่ไม่ได้จัดการ"
#. Label of the unique (Check) field in DocType 'DocField'
#. Label of the unique (Check) field in DocType 'Custom Field'
@@ -27228,76 +27228,76 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Unique"
-msgstr ""
+msgstr "ไม่ซ้ำ"
#: frappe/website/report/website_analytics/website_analytics.js:60
msgid "Unknown"
-msgstr ""
+msgstr "ไม่ทราบ"
#: frappe/public/js/frappe/model/model.js:209
msgid "Unknown Column: {0}"
-msgstr ""
+msgstr "คอลัมน์ที่ไม่ทราบ: {0}"
#: frappe/utils/data.py:1246
msgid "Unknown Rounding Method: {}"
-msgstr ""
+msgstr "วิธีการปัดเศษที่ไม่ทราบ: {}"
#: frappe/auth.py:316
msgid "Unknown User"
-msgstr ""
+msgstr "ผู้ใช้ที่ไม่ทราบ"
#: frappe/utils/csvutils.py:54
msgid "Unknown file encoding. Tried to use: {0}"
-msgstr ""
+msgstr "การเข้ารหัสไฟล์ที่ไม่ทราบ พยายามใช้: {0}"
#: frappe/core/doctype/submission_queue/submission_queue.js:7
msgid "Unlock Reference Document"
-msgstr ""
+msgstr "ปลดล็อกเอกสารอ้างอิง"
#: frappe/public/js/frappe/form/footer/form_timeline.js:632
#: frappe/website/doctype/blog_post/blog_post.js:36
#: frappe/website/doctype/web_form/web_form.js:86
msgid "Unpublish"
-msgstr ""
+msgstr "ยกเลิกการเผยแพร่"
#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue'
#: frappe/email/doctype/email_flag_queue/email_flag_queue.json
msgid "Unread"
-msgstr ""
+msgstr "ยังไม่ได้อ่าน"
#. Label of the unread_notification_sent (Check) field in DocType
#. 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Unread Notification Sent"
-msgstr ""
+msgstr "การแจ้งเตือนที่ยังไม่ได้อ่านถูกส่งแล้ว"
#: frappe/utils/safe_exec.py:496
msgid "Unsafe SQL query"
-msgstr ""
+msgstr "คำสั่ง SQL ที่ไม่ปลอดภัย"
#: frappe/public/js/frappe/data_import/data_exporter.js:159
#: frappe/public/js/frappe/form/controls/multicheck.js:166
msgid "Unselect All"
-msgstr ""
+msgstr "ยกเลิกการเลือกทั้งหมด"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Unshared"
-msgstr ""
+msgstr "ไม่ได้แชร์"
#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
msgid "Unsubscribe"
-msgstr ""
+msgstr "ยกเลิกการสมัครสมาชิก"
#. Label of the unsubscribe_method (Data) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Unsubscribe Method"
-msgstr ""
+msgstr "วิธียกเลิกการสมัครสมาชิก"
#. Label of the unsubscribe_params (Code) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Unsubscribe Params"
-msgstr ""
+msgstr "พารามิเตอร์ยกเลิกการสมัครสมาชิก"
#. Label of the unsubscribed (Check) field in DocType 'Contact'
#. Label of the unsubscribed (Check) field in DocType 'User'
@@ -27307,27 +27307,27 @@ msgstr ""
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/queue.py:122
msgid "Unsubscribed"
-msgstr ""
+msgstr "ยกเลิกการสมัครสมาชิกแล้ว"
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
-msgstr ""
+msgstr "คอลัมน์ที่ไม่มีชื่อ"
#: frappe/core/doctype/file/file.js:38
msgid "Unzip"
-msgstr ""
+msgstr "แตกไฟล์ซิป"
#: frappe/public/js/frappe/views/file/file_view.js:132
msgid "Unzipped {0} files"
-msgstr ""
+msgstr "แตกไฟล์ {0} แล้ว"
#: frappe/public/js/frappe/views/file/file_view.js:125
msgid "Unzipping files..."
-msgstr ""
+msgstr "กำลังแตกไฟล์..."
#: frappe/desk/doctype/event/event.py:269
msgid "Upcoming Events for Today"
-msgstr ""
+msgstr "กิจกรรมที่กำลังจะมาถึงสำหรับวันนี้"
#. Label of the update (Button) field in DocType 'Document Naming Settings'
#: frappe/core/doctype/data_import/data_import_list.js:36
@@ -27341,73 +27341,73 @@ msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder.js:765
#: frappe/public/js/frappe/form/grid_row.js:411
msgid "Update"
-msgstr ""
+msgstr "อัปเดต"
#. Label of the update_amendment_naming (Button) field in DocType 'Document
#. Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Amendment Naming"
-msgstr ""
+msgstr "อัปเดตการตั้งชื่อการแก้ไข"
#. Option for the 'Import Type' (Select) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Update Existing Records"
-msgstr ""
+msgstr "อัปเดตระเบียนที่มีอยู่"
#. Label of the update_field (Select) field in DocType 'Workflow Document
#. State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Update Field"
-msgstr ""
+msgstr "อัปเดตฟิลด์"
#: frappe/core/doctype/installed_applications/installed_applications.js:6
#: frappe/core/doctype/installed_applications/installed_applications.js:13
msgid "Update Hooks Resolution Order"
-msgstr ""
+msgstr "อัปเดตลำดับการแก้ไข Hooks"
#: frappe/core/doctype/installed_applications/installed_applications.js:45
msgid "Update Order"
-msgstr ""
+msgstr "อัปเดตคำสั่งซื้อ"
#: frappe/desk/page/setup_wizard/setup_wizard.js:494
msgid "Update Password"
-msgstr ""
+msgstr "อัปเดตรหัสผ่าน"
#. Label of the update_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Series Counter"
-msgstr ""
+msgstr "อัปเดตตัวนับซีรีส์"
#. Label of the update_series_start (Button) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Update Series Number"
-msgstr ""
+msgstr "อัปเดตหมายเลขซีรีส์"
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Update Settings"
-msgstr ""
+msgstr "อัปเดตการตั้งค่า"
#: frappe/public/js/frappe/views/translation_manager.js:13
msgid "Update Translations"
-msgstr ""
+msgstr "อัปเดตการแปล"
#. Label of the update_value (Small Text) field in DocType 'Bulk Update'
#. Label of the update_value (Data) field in DocType 'Workflow Document State'
#: frappe/desk/doctype/bulk_update/bulk_update.json
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Update Value"
-msgstr ""
+msgstr "อัปเดตค่า"
#: frappe/utils/change_log.py:381
msgid "Update from Frappe Cloud"
-msgstr ""
+msgstr "อัปเดตจาก Frappe Cloud"
#: frappe/public/js/frappe/list/bulk_operations.js:375
msgid "Update {0} records"
-msgstr ""
+msgstr "อัปเดตระเบียน {0}"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Option for the 'Status' (Select) field in DocType 'Permission Log'
@@ -27417,93 +27417,93 @@ msgstr ""
#: frappe/desk/doctype/workspace_settings/workspace_settings.py:41
#: frappe/public/js/frappe/web_form/web_form.js:427
msgid "Updated"
-msgstr ""
+msgstr "อัปเดตแล้ว"
#: frappe/desk/doctype/bulk_update/bulk_update.js:32
msgid "Updated Successfully"
-msgstr ""
+msgstr "อัปเดตสำเร็จ"
#: frappe/public/js/frappe/desk.js:452
msgid "Updated To A New Version 🎉"
-msgstr ""
+msgstr "อัปเดตเป็นเวอร์ชันใหม่ 🎉"
#: frappe/public/js/frappe/list/bulk_operations.js:372
msgid "Updated successfully"
-msgstr ""
+msgstr "อัปเดตสำเร็จ"
#: frappe/utils/response.py:330
msgid "Updating"
-msgstr ""
+msgstr "กำลังอัปเดต"
#: frappe/public/js/frappe/form/save.js:11
msgctxt "Freeze message while updating a document"
msgid "Updating"
-msgstr ""
+msgstr "กำลังอัปเดต"
#: frappe/email/doctype/email_queue/email_queue_list.js:49
msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run."
-msgstr ""
+msgstr "กำลังอัปเดตสถานะคิวอีเมล อีเมลจะถูกดึงขึ้นในรอบที่กำหนดถัดไป"
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:17
msgid "Updating counter may lead to document name conflicts if not done properly"
-msgstr ""
+msgstr "การอัปเดตตัวนับอาจนำไปสู่ความขัดแย้งของชื่อเอกสารหากไม่ได้ทำอย่างถูกต้อง"
#: frappe/desk/page/setup_wizard/setup_wizard.py:23
msgid "Updating global settings"
-msgstr ""
+msgstr "กำลังอัปเดตการตั้งค่าทั่วโลก"
#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59
msgid "Updating naming series options"
-msgstr ""
+msgstr "กำลังอัปเดตตัวเลือกซีรีส์การตั้งชื่อ"
#: frappe/public/js/frappe/form/toolbar.js:136
msgid "Updating related fields..."
-msgstr ""
+msgstr "กำลังอัปเดตฟิลด์ที่เกี่ยวข้อง..."
#: frappe/desk/doctype/bulk_update/bulk_update.py:95
msgid "Updating {0}"
-msgstr ""
+msgstr "กำลังอัปเดต {0}"
#: frappe/core/doctype/data_import/data_import.js:36
msgid "Updating {0} of {1}, {2}"
-msgstr ""
+msgstr "กำลังอัปเดต {0} ของ {1}, {2}"
#: frappe/public/js/billing.bundle.js:131
msgid "Upgrade plan"
-msgstr ""
+msgstr "อัปเกรดแผน"
#: frappe/public/js/frappe/list/list_sidebar.js:331
msgid "Upgrade your support experience with Frappe Helpdesk"
-msgstr ""
+msgstr "อัปเกรดประสบการณ์การสนับสนุนของคุณด้วย Frappe Helpdesk"
#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131
#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132
#: frappe/public/js/frappe/form/grid.js:66
#: frappe/public/js/frappe/form/templates/form_sidebar.html:13
msgid "Upload"
-msgstr ""
+msgstr "อัปโหลด"
#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:93
msgid "Upload Image"
-msgstr ""
+msgstr "อัปโหลดภาพ"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198
msgid "Upload file"
-msgstr ""
+msgstr "อัปโหลดไฟล์"
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201
msgid "Upload {0} files"
-msgstr ""
+msgstr "อัปโหลดไฟล์ {0}"
#. Label of the uploaded_to_dropbox (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Uploaded To Dropbox"
-msgstr ""
+msgstr "อัปโหลดไปยัง Dropbox"
#. Label of the uploaded_to_google_drive (Check) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "Uploaded To Google Drive"
-msgstr ""
+msgstr "อัปโหลดไปยัง Google Drive"
#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding
#. Step'
@@ -27515,41 +27515,41 @@ msgstr ""
#. Label of the ascii_encode_password (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Use ASCII encoding for password"
-msgstr ""
+msgstr "ใช้การเข้ารหัส ASCII สำหรับรหัสผ่าน"
#. Label of the use_first_day_of_period (Check) field in DocType 'Auto Email
#. Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Use First Day of Period"
-msgstr ""
+msgstr "ใช้วันแรกของช่วงเวลา"
#. Label of the use_html (Check) field in DocType 'Email Template'
#: frappe/email/doctype/email_template/email_template.json
msgid "Use HTML"
-msgstr ""
+msgstr "ใช้ HTML"
#. Label of the use_imap (Check) field in DocType 'Email Account'
#. Label of the use_imap (Check) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use IMAP"
-msgstr ""
+msgstr "ใช้ IMAP"
#. Label of the use_number_format_from_currency (Check) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Use Number Format from Currency"
-msgstr ""
+msgstr "ใช้รูปแบบตัวเลขจากสกุลเงิน"
#. Label of the use_post (Check) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Use POST"
-msgstr ""
+msgstr "ใช้ POST"
#. Label of the use_report_chart (Check) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Use Report Chart"
-msgstr ""
+msgstr "ใช้แผนภูมิรายงาน"
#. Label of the use_ssl (Check) field in DocType 'Email Account'
#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Account'
@@ -27558,63 +27558,63 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use SSL"
-msgstr ""
+msgstr "ใช้ SSL"
#. Label of the use_starttls (Check) field in DocType 'Email Account'
#. Label of the use_starttls (Check) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use STARTTLS"
-msgstr ""
+msgstr "ใช้ STARTTLS"
#. Label of the use_tls (Check) field in DocType 'Email Account'
#. Label of the use_tls (Check) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Use TLS"
-msgstr ""
+msgstr "ใช้ TLS"
#: frappe/utils/password_strength.py:44
msgid "Use a few words, avoid common phrases."
-msgstr ""
+msgstr "ใช้คำไม่กี่คำ หลีกเลี่ยงวลีทั่วไป"
#. Label of the login_id_is_different (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Use different Email ID"
-msgstr ""
+msgstr "ใช้รหัสอีเมลที่แตกต่าง"
#. Description of the 'Detect CSV type' (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Use if the default settings don't seem to detect your data correctly"
-msgstr ""
+msgstr "ใช้หากการตั้งค่าเริ่มต้นดูเหมือนจะไม่ตรวจจับข้อมูลของคุณอย่างถูกต้อง"
#: frappe/model/db_query.py:435
msgid "Use of function {0} in field is restricted"
-msgstr ""
+msgstr "การใช้ฟังก์ชัน {0} ในฟิลด์ถูกจำกัด"
#: frappe/model/db_query.py:412
msgid "Use of sub-query or function is restricted"
-msgstr ""
+msgstr "การใช้คำสั่งย่อยหรือฟังก์ชันถูกจำกัด"
#: frappe/printing/page/print/print.js:279
msgid "Use the new Print Format Builder"
-msgstr ""
+msgstr "ใช้ตัวสร้างรูปแบบการพิมพ์ใหม่"
#. Description of the 'Title Field' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Use this fieldname to generate title"
-msgstr ""
+msgstr "ใช้ชื่อนี้เพื่อสร้างชื่อเรื่อง"
#. Description of the 'Always BCC Address' (Data) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Use this, for example, if all sent emails should also be send to an archive."
-msgstr ""
+msgstr "ใช้สิ่งนี้ ตัวอย่างเช่น หากอีเมลที่ส่งทั้งหมดควรถูกส่งไปยังที่เก็บถาวรด้วย"
#. Label of the used_oauth (Check) field in DocType 'User Email'
#: frappe/core/doctype/user_email/user_email.json
msgid "Used OAuth"
-msgstr ""
+msgstr "ใช้ OAuth แล้ว"
#. Label of the user (Link) field in DocType 'Assignment Rule User'
#. Label of the user (Link) field in DocType 'Reminder'
@@ -27673,7 +27673,7 @@ msgstr ""
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "User"
-msgstr ""
+msgstr "ผู้ใช้"
#. Label of the user (Link) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
@@ -27682,7 +27682,7 @@ msgstr ""
#: frappe/core/doctype/has_role/has_role.py:25
msgid "User '{0}' already has the role '{1}'"
-msgstr ""
+msgstr "ผู้ใช้ '{0}' มีบทบาท '{1}' อยู่แล้ว"
#. Name of a DocType
#: frappe/core/doctype/report/user_activity_report.json
@@ -27697,120 +27697,120 @@ msgstr ""
#. Label of the user_agent (Data) field in DocType 'Web Page View'
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "User Agent"
-msgstr ""
+msgstr "ตัวแทนผู้ใช้"
#. Label of the in_create (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "User Cannot Create"
-msgstr ""
+msgstr "ผู้ใช้ไม่สามารถสร้างได้"
#. Label of the read_only (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "User Cannot Search"
-msgstr ""
+msgstr "ผู้ใช้ไม่สามารถค้นหาได้"
#: frappe/public/js/frappe/desk.js:554
msgid "User Changed"
-msgstr ""
+msgstr "ผู้ใช้เปลี่ยนแปลง"
#. Label of the defaults (Table) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Defaults"
-msgstr ""
+msgstr "ค่าเริ่มต้นของผู้ใช้"
#. Label of the user_details_tab (Tab Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Details"
-msgstr ""
+msgstr "รายละเอียดผู้ใช้"
#. Name of a report
#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.json
msgid "User Doctype Permissions"
-msgstr ""
+msgstr "สิทธิ์ประเภทเอกสารของผู้ใช้"
#. Name of a DocType
#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "User Document Type"
-msgstr ""
+msgstr "ประเภทเอกสารของผู้ใช้"
#: frappe/core/doctype/user_type/user_type.py:98
msgid "User Document Types Limit Exceeded"
-msgstr ""
+msgstr "เกินขีดจำกัดประเภทเอกสารของผู้ใช้"
#. Name of a DocType
#: frappe/core/doctype/user_email/user_email.json
msgid "User Email"
-msgstr ""
+msgstr "อีเมลผู้ใช้"
#. Label of the user_emails (Table) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Emails"
-msgstr ""
+msgstr "อีเมลผู้ใช้"
#. Name of a DocType
#: frappe/core/doctype/user_group/user_group.json
msgid "User Group"
-msgstr ""
+msgstr "กลุ่มผู้ใช้"
#. Name of a DocType
#: frappe/core/doctype/user_group_member/user_group_member.json
msgid "User Group Member"
-msgstr ""
+msgstr "สมาชิกกลุ่มผู้ใช้"
#. Label of the user_group_members (Table MultiSelect) field in DocType 'User
#. Group'
#: frappe/core/doctype/user_group/user_group.json
msgid "User Group Members"
-msgstr ""
+msgstr "สมาชิกกลุ่มผู้ใช้"
#. Label of the userid (Data) field in DocType 'User Social Login'
#: frappe/core/doctype/user_social_login/user_social_login.json
msgid "User ID"
-msgstr ""
+msgstr "รหัสผู้ใช้"
#. Label of the user_id_property (Data) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "User ID Property"
-msgstr ""
+msgstr "คุณสมบัติรหัสผู้ใช้"
#. Description of a DocType
#: frappe/website/doctype/blogger/blogger.json
msgid "User ID of a Blogger"
-msgstr ""
+msgstr "รหัสผู้ใช้ของบล็อกเกอร์"
#. Label of the user (Link) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "User Id"
-msgstr ""
+msgstr "รหัสผู้ใช้"
#. Label of the user_id_field (Select) field in DocType 'User Type'
#: frappe/core/doctype/user_type/user_type.json
msgid "User Id Field"
-msgstr ""
+msgstr "ฟิลด์รหัสผู้ใช้"
#: frappe/core/doctype/user_type/user_type.py:283
msgid "User Id Field is mandatory in the user type {0}"
-msgstr ""
+msgstr "ฟิลด์รหัสผู้ใช้เป็นสิ่งจำเป็นในประเภทผู้ใช้ {0}"
#. Label of the user_image (Attach Image) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "User Image"
-msgstr ""
+msgstr "ภาพผู้ใช้"
#: frappe/public/js/frappe/ui/toolbar/navbar.html:115
msgid "User Menu"
-msgstr ""
+msgstr "เมนูผู้ใช้"
#. Label of the user_name (Data) field in DocType 'Personal Data Download
#. Request'
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
msgid "User Name"
-msgstr ""
+msgstr "ชื่อผู้ใช้"
#. Name of a DocType
#: frappe/core/doctype/user_permission/user_permission.json
msgid "User Permission"
-msgstr ""
+msgstr "สิทธิ์ของผู้ใช้"
#. Label of a Link in the Users Workspace
#: frappe/core/page/permission_manager/permission_manager_help.html:30
@@ -27818,51 +27818,51 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:1883
#: frappe/public/js/frappe/views/reports/report_view.js:1752
msgid "User Permissions"
-msgstr ""
+msgstr "สิทธิ์ของผู้ใช้"
#: frappe/public/js/frappe/list/list_view.js:1777
msgctxt "Button in list view menu"
msgid "User Permissions"
-msgstr ""
+msgstr "สิทธิ์ของผู้ใช้"
#: frappe/core/page/permission_manager/permission_manager_help.html:32
msgid "User Permissions are used to limit users to specific records."
-msgstr ""
+msgstr "สิทธิ์ของผู้ใช้ใช้เพื่อจำกัดผู้ใช้ให้เข้าถึงระเบียนเฉพาะ"
#: frappe/core/doctype/user_permission/user_permission_list.js:124
msgid "User Permissions created successfully"
-msgstr ""
+msgstr "สร้างสิทธิ์ของผู้ใช้สำเร็จ"
#. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping'
#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json
msgid "User Role"
-msgstr ""
+msgstr "บทบาทของผู้ใช้"
#. Name of a DocType
#: frappe/core/doctype/user_role_profile/user_role_profile.json
msgid "User Role Profile"
-msgstr ""
+msgstr "โปรไฟล์บทบาทของผู้ใช้"
#. Name of a DocType
#: frappe/core/doctype/user_select_document_type/user_select_document_type.json
msgid "User Select Document Type"
-msgstr ""
+msgstr "ผู้ใช้เลือกประเภทเอกสาร"
#. Label of a standard navbar item
#. Type: Action
#: frappe/hooks.py
msgid "User Settings"
-msgstr ""
+msgstr "การตั้งค่าผู้ใช้"
#. Name of a DocType
#: frappe/core/doctype/user_social_login/user_social_login.json
msgid "User Social Login"
-msgstr ""
+msgstr "การเข้าสู่ระบบโซเชียลของผู้ใช้"
#. Label of the _user_tags (Data) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "User Tags"
-msgstr ""
+msgstr "แท็กผู้ใช้"
#. Label of the user_type (Link) field in DocType 'User'
#. Name of a DocType
@@ -27870,106 +27870,106 @@ msgstr ""
#: frappe/core/doctype/user_type/user_type.json
#: frappe/core/doctype/user_type/user_type.py:83
msgid "User Type"
-msgstr ""
+msgstr "ประเภทผู้ใช้"
#. Label of the user_type_modules (Table) field in DocType 'User Type'
#. Name of a DocType
#: frappe/core/doctype/user_type/user_type.json
#: frappe/core/doctype/user_type_module/user_type_module.json
msgid "User Type Module"
-msgstr ""
+msgstr "โมดูลประเภทผู้ใช้"
#. Description of the 'Allow Login using Mobile Number' (Check) field in
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "User can login using Email id or Mobile number"
-msgstr ""
+msgstr "ผู้ใช้สามารถเข้าสู่ระบบโดยใช้รหัสอีเมลหรือหมายเลขโทรศัพท์มือถือ"
#. Description of the 'Allow Login using User Name' (Check) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "User can login using Email id or User Name"
-msgstr ""
+msgstr "ผู้ใช้สามารถเข้าสู่ระบบโดยใช้รหัสอีเมลหรือชื่อผู้ใช้"
#: frappe/templates/includes/login/login.js:292
msgid "User does not exist."
-msgstr ""
+msgstr "ผู้ใช้ไม่มีอยู่"
#: frappe/core/doctype/user_type/user_type.py:83
msgid "User does not have permission to create the new {0}"
-msgstr ""
+msgstr "ผู้ใช้ไม่มีสิทธิ์สร้าง {0} ใหม่"
#: frappe/core/doctype/docshare/docshare.py:56
msgid "User is mandatory for Share"
-msgstr ""
+msgstr "ผู้ใช้เป็นสิ่งจำเป็นสำหรับการแชร์"
#. Label of the user_must_always_select (Check) field in DocType 'Document
#. Naming Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "User must always select"
-msgstr ""
+msgstr "ผู้ใช้ต้องเลือกเสมอ"
#: frappe/core/doctype/user_permission/user_permission.py:60
msgid "User permission already exists"
-msgstr ""
+msgstr "สิทธิ์ของผู้ใช้มีอยู่แล้ว"
#: frappe/www/login.py:171
msgid "User with email address {0} does not exist"
-msgstr ""
+msgstr "ผู้ใช้ที่มีที่อยู่อีเมล {0} ไม่มีอยู่"
#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:225
msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you."
-msgstr ""
+msgstr "ผู้ใช้ที่มีอีเมล: {0} ไม่มีอยู่ในระบบ โปรดขอให้ 'ผู้ดูแลระบบ' สร้างผู้ใช้ให้คุณ"
#: frappe/core/doctype/user/user.py:537
msgid "User {0} cannot be deleted"
-msgstr ""
+msgstr "ไม่สามารถลบผู้ใช้ {0} ได้"
#: frappe/core/doctype/user/user.py:327
msgid "User {0} cannot be disabled"
-msgstr ""
+msgstr "ไม่สามารถปิดใช้งานผู้ใช้ {0} ได้"
#: frappe/core/doctype/user/user.py:603
msgid "User {0} cannot be renamed"
-msgstr ""
+msgstr "ไม่สามารถเปลี่ยนชื่อผู้ใช้ {0} ได้"
#: frappe/permissions.py:139
msgid "User {0} does not have access to this document"
-msgstr ""
+msgstr "ผู้ใช้ {0} ไม่มีสิทธิ์เข้าถึงเอกสารนี้"
#: frappe/permissions.py:162
msgid "User {0} does not have doctype access via role permission for document {1}"
-msgstr ""
+msgstr "ผู้ใช้ {0} ไม่มีสิทธิ์เข้าถึงประเภทเอกสารผ่านสิทธิ์บทบาทสำหรับเอกสาร {1}"
#: frappe/desk/doctype/workspace/workspace.py:275
msgid "User {0} does not have the permission to create a Workspace."
-msgstr ""
+msgstr "ผู้ใช้ {0} ไม่มีสิทธิ์สร้างพื้นที่ทำงาน"
#: frappe/templates/emails/data_deletion_approval.html:1
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:112
msgid "User {0} has requested for data deletion"
-msgstr ""
+msgstr "ผู้ใช้ {0} ได้ร้องขอการลบข้อมูล"
#: frappe/core/doctype/user/user.py:1371
msgid "User {0} impersonated as {1}"
-msgstr ""
+msgstr "ผู้ใช้ {0} ปลอมตัวเป็น {1}"
#: frappe/utils/oauth.py:269
msgid "User {0} is disabled"
-msgstr ""
+msgstr "ผู้ใช้ {0} ถูกปิดใช้งาน"
#: frappe/sessions.py:242
msgid "User {0} is disabled. Please contact your System Manager."
-msgstr ""
+msgstr "ผู้ใช้ {0} ถูกปิดใช้งาน โปรดติดต่อผู้จัดการระบบของคุณ"
#: frappe/desk/form/assign_to.py:104
msgid "User {0} is not permitted to access this document."
-msgstr ""
+msgstr "ผู้ใช้ {0} ไม่ได้รับอนุญาตให้เข้าถึงเอกสารนี้"
#. Label of the userinfo_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Userinfo URI"
-msgstr ""
+msgstr "URI ข้อมูลผู้ใช้"
#. Label of the username (Data) field in DocType 'User'
#. Label of the username (Data) field in DocType 'User Social Login'
@@ -27977,11 +27977,11 @@ msgstr ""
#: frappe/core/doctype/user_social_login/user_social_login.json
#: frappe/www/login.py:110
msgid "Username"
-msgstr ""
+msgstr "ชื่อผู้ใช้"
#: frappe/core/doctype/user/user.py:689
msgid "Username {0} already exists"
-msgstr ""
+msgstr "ชื่อผู้ใช้ {0} มีอยู่แล้ว"
#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule'
#. Name of a Workspace
@@ -27992,7 +27992,7 @@ msgstr ""
#: frappe/core/workspace/users/users.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Users"
-msgstr ""
+msgstr "ผู้ใช้"
#. Description of the 'Protect Attached Files' (Check) field in DocType
#. 'DocType'
@@ -28001,25 +28001,25 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Users are only able to delete attached files if the document is either in draft or if the document is canceled and they are also able to delete the document."
-msgstr ""
+msgstr "ผู้ใช้สามารถลบไฟล์ที่แนบมาได้เฉพาะเมื่อเอกสารอยู่ในร่างหรือถูกยกเลิก และพวกเขายังสามารถลบเอกสารได้"
#: frappe/core/page/permission_manager/permission_manager.js:355
msgid "Users with role {0}:"
-msgstr ""
+msgstr "ผู้ใช้ที่มีบทบาท {0}:"
#: frappe/public/js/frappe/ui/theme_switcher.js:70
msgid "Uses system's theme to switch between light and dark mode"
-msgstr ""
+msgstr "ใช้ธีมของระบบเพื่อสลับระหว่างโหมดสว่างและมืด"
#: frappe/public/js/frappe/desk.js:154
msgid "Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand."
-msgstr ""
+msgstr "การใช้คอนโซลนี้อาจทำให้ผู้โจมตีปลอมตัวเป็นคุณและขโมยข้อมูลของคุณได้ อย่าป้อนหรือวางโค้ดที่คุณไม่เข้าใจ"
#. Label of the utilization (Percent) field in DocType 'System Health Report
#. Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Utilization"
-msgstr ""
+msgstr "การใช้งาน"
#. Label of the utilization_percent (Percent) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
@@ -28030,27 +28030,27 @@ msgstr ""
#. Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Valid"
-msgstr ""
+msgstr "ถูกต้อง"
#: frappe/templates/includes/login/login.js:52
#: frappe/templates/includes/login/login.js:65
msgid "Valid Login id required."
-msgstr ""
+msgstr "ต้องการรหัสเข้าสู่ระบบที่ถูกต้อง"
#: frappe/templates/includes/login/login.js:39
msgid "Valid email and name required"
-msgstr ""
+msgstr "ต้องการอีเมลและชื่อที่ถูกต้อง"
#. Label of the validate_action (Check) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Validate Field"
-msgstr ""
+msgstr "ตรวจสอบฟิลด์"
#. Label of the validate_frappe_mail_settings (Button) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Validate Frappe Mail Settings"
-msgstr ""
+msgstr "ตรวจสอบการตั้งค่าอีเมล Frappe"
#. Label of the validate_ssl_certificate (Check) field in DocType 'Email
#. Account'
@@ -28061,16 +28061,16 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Validate SSL Certificate"
-msgstr ""
+msgstr "ตรวจสอบใบรับรอง SSL"
#: frappe/public/js/frappe/web_form/web_form.js:360
msgid "Validation Error"
-msgstr ""
+msgstr "ข้อผิดพลาดในการตรวจสอบ"
#. Label of the validity (Select) field in DocType 'OAuth Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "Validity"
-msgstr ""
+msgstr "ความถูกต้อง"
#. Label of the value (Data) field in DocType 'Milestone'
#. Label of the defvalue (Text) field in DocType 'DefaultValue'
@@ -28097,87 +28097,87 @@ msgstr ""
#: frappe/website/doctype/web_form/web_form.js:197
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Value"
-msgstr ""
+msgstr "ค่า"
#. Label of the value_based_on (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Value Based On"
-msgstr ""
+msgstr "ค่าตาม"
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Value Change"
-msgstr ""
+msgstr "การเปลี่ยนแปลงค่า"
#. Label of the value_changed (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Value Changed"
-msgstr ""
+msgstr "ค่าที่เปลี่ยนแปลง"
#. Label of the property_value (Data) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Value To Be Set"
-msgstr ""
+msgstr "ค่าที่จะตั้ง"
#: frappe/model/base_document.py:1054 frappe/model/document.py:833
msgid "Value cannot be changed for {0}"
-msgstr ""
+msgstr "ค่าไม่สามารถเปลี่ยนแปลงได้สำหรับ {0}"
#: frappe/model/document.py:779
msgid "Value cannot be negative for"
-msgstr ""
+msgstr "ค่าไม่สามารถเป็นค่าลบได้สำหรับ"
#: frappe/model/document.py:783
msgid "Value cannot be negative for {0}: {1}"
-msgstr ""
+msgstr "ค่าไม่สามารถเป็นค่าลบได้สำหรับ {0}: {1}"
#: frappe/custom/doctype/property_setter/property_setter.js:7
msgid "Value for a check field can be either 0 or 1"
-msgstr ""
+msgstr "ค่าของฟิลด์ตรวจสอบสามารถเป็น 0 หรือ 1"
#: frappe/custom/doctype/customize_form/customize_form.py:611
msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters"
-msgstr ""
+msgstr "ค่าของฟิลด์ {0} ยาวเกินไปใน {1} ความยาวควรน้อยกว่า {2} ตัวอักษร"
#: frappe/model/base_document.py:445
msgid "Value for {0} cannot be a list"
-msgstr ""
+msgstr "ค่าของ {0} ไม่สามารถเป็นรายการได้"
#. Description of the 'Due Date Based On' (Select) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Value from this field will be set as the due date in the ToDo"
-msgstr ""
+msgstr "ค่าจากฟิลด์นี้จะถูกตั้งเป็นวันที่ครบกำหนดใน ToDo"
#: frappe/core/doctype/data_import/importer.py:714
msgid "Value must be one of {0}"
-msgstr ""
+msgstr "ค่าต้องเป็นหนึ่งใน {0}"
#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Value to Validate"
-msgstr ""
+msgstr "ค่าที่จะตรวจสอบ"
#: frappe/model/base_document.py:1124
msgid "Value too big"
-msgstr ""
+msgstr "ค่ามากเกินไป"
#: frappe/core/doctype/data_import/importer.py:727
msgid "Value {0} missing for {1}"
-msgstr ""
+msgstr "ค่า {0} หายไปสำหรับ {1}"
#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
msgid "Value {0} must be in the valid duration format: d h m s"
-msgstr ""
+msgstr "ค่า {0} ต้องอยู่ในรูปแบบระยะเวลาที่ถูกต้อง: d h m s"
#: frappe/core/doctype/data_import/importer.py:745
#: frappe/core/doctype/data_import/importer.py:760
msgid "Value {0} must in {1} format"
-msgstr ""
+msgstr "ค่า {0} ต้องอยู่ในรูปแบบ {1}"
#: frappe/core/doctype/version/version_view.html:8
msgid "Values Changed"
-msgstr ""
+msgstr "ค่าที่เปลี่ยนแปลง"
#. Option for the 'Font' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
@@ -28186,114 +28186,114 @@ msgstr ""
#: frappe/templates/includes/login/login.js:333
msgid "Verification"
-msgstr ""
+msgstr "การตรวจสอบ"
#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352
msgid "Verification Code"
-msgstr ""
+msgstr "รหัสการตรวจสอบ"
#: frappe/templates/emails/delete_data_confirmation.html:10
msgid "Verification Link"
-msgstr ""
+msgstr "ลิงก์การตรวจสอบ"
#: frappe/templates/includes/login/login.js:383
msgid "Verification code email not sent. Please contact Administrator."
-msgstr ""
+msgstr "อีเมลรหัสการตรวจสอบไม่ได้ส่ง โปรดติดต่อผู้ดูแลระบบ"
#: frappe/twofactor.py:248
msgid "Verification code has been sent to your registered email address."
-msgstr ""
+msgstr "รหัสการตรวจสอบถูกส่งไปยังที่อยู่อีเมลที่ลงทะเบียนของคุณแล้ว"
#. Option for the 'Contribution Status' (Select) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
msgid "Verified"
-msgstr ""
+msgstr "ตรวจสอบแล้ว"
#: frappe/public/js/frappe/ui/messages.js:359
#: frappe/templates/includes/login/login.js:337
msgid "Verify"
-msgstr ""
+msgstr "ตรวจสอบ"
#: frappe/public/js/frappe/ui/messages.js:358
msgid "Verify Password"
-msgstr ""
+msgstr "ตรวจสอบรหัสผ่าน"
#: frappe/templates/includes/login/login.js:171
msgid "Verifying..."
-msgstr ""
+msgstr "กำลังตรวจสอบ..."
#. Name of a DocType
#: frappe/core/doctype/version/version.json
msgid "Version"
-msgstr ""
+msgstr "เวอร์ชัน"
#: frappe/public/js/frappe/desk.js:166
msgid "Version Updated"
-msgstr ""
+msgstr "อัปเดตเวอร์ชันแล้ว"
#. Label of the video_url (Data) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Video URL"
-msgstr ""
+msgstr "URL วิดีโอ"
#. Label of the view_name (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "View"
-msgstr ""
+msgstr "ดู"
#: frappe/core/doctype/success_action/success_action.js:60
#: frappe/public/js/frappe/form/success_action.js:89
msgid "View All"
-msgstr ""
+msgstr "ดูทั้งหมด"
#: frappe/public/js/frappe/form/toolbar.js:577
msgid "View Audit Trail"
-msgstr ""
+msgstr "ดูเส้นทางการตรวจสอบ"
#: frappe/templates/includes/likes/likes.py:34
msgid "View Blog Post"
-msgstr ""
+msgstr "ดูโพสต์บล็อก"
#: frappe/templates/includes/comments/comments.py:56
msgid "View Comment"
-msgstr ""
+msgstr "ดูความคิดเห็น"
#: frappe/core/doctype/user/user.js:151
msgid "View Doctype Permissions"
-msgstr ""
+msgstr "ดูสิทธิ์ประเภทเอกสาร"
#: frappe/core/doctype/file/file.js:4
msgid "View File"
-msgstr ""
+msgstr "ดูไฟล์"
#: frappe/public/js/frappe/ui/notifications/notifications.js:220
msgid "View Full Log"
-msgstr ""
+msgstr "ดูบันทึกทั้งหมด"
#: frappe/public/js/frappe/views/treeview.js:484
#: frappe/public/js/frappe/widgets/quick_list_widget.js:258
msgid "View List"
-msgstr ""
+msgstr "ดูรายการ"
#. Name of a DocType
#: frappe/core/doctype/view_log/view_log.json
msgid "View Log"
-msgstr ""
+msgstr "ดูบันทึก"
#: frappe/core/doctype/user/user.js:142
#: frappe/core/doctype/user_permission/user_permission.js:24
msgid "View Permitted Documents"
-msgstr ""
+msgstr "ดูเอกสารที่อนุญาต"
#. Label of the view_properties (Button) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "View Properties (via Customize Form)"
-msgstr ""
+msgstr "ดูคุณสมบัติ (ผ่านการปรับแต่งฟอร์ม)"
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "View Report"
-msgstr ""
+msgstr "ดูรายงาน"
#. Label of the view_settings (Section Break) field in DocType 'DocType'
#. Label of the view_settings_section (Section Break) field in DocType
@@ -28301,158 +28301,158 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "View Settings"
-msgstr ""
+msgstr "ดูการตั้งค่า"
#. Label of the view_switcher (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "View Switcher"
-msgstr ""
+msgstr "ดูตัวสลับ"
#. Label of a standard navbar item
#. Type: Action
#: frappe/hooks.py
#: frappe/website/doctype/website_settings/website_settings.js:16
msgid "View Website"
-msgstr ""
+msgstr "ดูเว็บไซต์"
#: frappe/www/confirm_workflow_action.html:12
msgid "View document"
-msgstr ""
+msgstr "ดูเอกสาร"
#: frappe/templates/emails/auto_email_report.html:60
msgid "View report in your browser"
-msgstr ""
+msgstr "ดูรายงานในเบราว์เซอร์ของคุณ"
#: frappe/templates/emails/print_link.html:2
msgid "View this in your browser"
-msgstr ""
+msgstr "ดูสิ่งนี้ในเบราว์เซอร์ของคุณ"
#: frappe/public/js/frappe/web_form/web_form.js:454
msgctxt "Button in web form"
msgid "View your response"
-msgstr ""
+msgstr "ดูการตอบกลับของคุณ"
#: frappe/automation/doctype/auto_repeat/auto_repeat.js:43
#: frappe/desk/doctype/calendar_view/calendar_view_list.js:10
#: frappe/desk/doctype/dashboard/dashboard_list.js:10
msgid "View {0}"
-msgstr ""
+msgstr "ดู {0}"
#. Label of the viewed_by (Data) field in DocType 'View Log'
#: frappe/core/doctype/view_log/view_log.json
msgid "Viewed By"
-msgstr ""
+msgstr "ดูโดย"
#. Group in DocType's connections
#. Label of a Card Break in the Build Workspace
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/workspace/build/build.json
msgid "Views"
-msgstr ""
+msgstr "การดู"
#. Label of the is_virtual (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Virtual"
-msgstr ""
+msgstr "เสมือน"
#: frappe/model/virtual_doctype.py:76
msgid "Virtual DocType {} requires a static method called {} found {}"
-msgstr ""
+msgstr "ประเภทเอกสารเสมือน {} ต้องการเมธอดแบบคงที่ที่เรียกว่า {} พบ {}"
#: frappe/model/virtual_doctype.py:89
msgid "Virtual DocType {} requires overriding an instance method called {} found {}"
-msgstr ""
+msgstr "ประเภทเอกสารเสมือน {} ต้องการการแทนที่เมธอดอินสแตนซ์ที่เรียกว่า {} พบ {}"
#. Label of the visibility_section (Section Break) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Visibility"
-msgstr ""
+msgstr "การมองเห็น"
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:41
msgid "Visible to website/portal users."
-msgstr ""
+msgstr "มองเห็นได้สำหรับผู้ใช้เว็บไซต์/พอร์ทัล"
#. Option for the 'Type' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Visit"
-msgstr ""
+msgstr "เยี่ยมชม"
#: frappe/website/doctype/website_route_meta/website_route_meta.js:7
msgid "Visit Web Page"
-msgstr ""
+msgstr "เยี่ยมชมหน้าเว็บ"
#. Label of the visitor_id (Data) field in DocType 'Web Page View'
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Visitor ID"
-msgstr ""
+msgstr "รหัสผู้เยี่ยมชม"
#: frappe/templates/discussions/reply_section.html:39
msgid "Want to discuss?"
-msgstr ""
+msgstr "ต้องการพูดคุยหรือไม่?"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Warehouse"
-msgstr ""
+msgstr "คลังสินค้า"
#. Option for the 'Style' (Select) field in DocType 'Workflow State'
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Warning"
-msgstr ""
+msgstr "คำเตือน"
#: frappe/custom/doctype/customize_form/customize_form.js:217
msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:"
-msgstr ""
+msgstr "คำเตือน: ข้อมูลสูญหายใกล้เข้ามา! การดำเนินการจะลบคอลัมน์ฐานข้อมูลต่อไปนี้ออกจากประเภทเอกสาร {0} อย่างถาวร:"
#: frappe/core/doctype/doctype/doctype.py:1125
msgid "Warning: Naming is not set"
-msgstr ""
+msgstr "คำเตือน: ยังไม่ได้ตั้งชื่อ"
#: frappe/public/js/frappe/model/meta.js:182
msgid "Warning: Unable to find {0} in any table related to {1}"
-msgstr ""
+msgstr "คำเตือน: ไม่สามารถหา {0} ในตารางใด ๆ ที่เกี่ยวข้องกับ {1}"
#. Description of the 'Counter' (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Warning: Updating counter may lead to document name conflicts if not done properly"
-msgstr ""
+msgstr "คำเตือน: การอัปเดตตัวนับอาจนำไปสู่ความขัดแย้งของชื่อเอกสารหากไม่ได้ทำอย่างถูกต้อง"
#: frappe/website/doctype/help_article/templates/help_article.html:24
msgid "Was this article helpful?"
-msgstr ""
+msgstr "บทความนี้มีประโยชน์หรือไม่?"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:127
msgid "Watch Tutorial"
-msgstr ""
+msgstr "ดูบทแนะนำ"
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Watch Video"
-msgstr ""
+msgstr "ดูวิดีโอ"
#: frappe/desk/doctype/workspace/workspace.js:34
msgid "We do not allow editing of this document. Simply click the Edit button on the workspace page to make your workspace editable and customize it as you wish"
-msgstr ""
+msgstr "เราไม่อนุญาตให้แก้ไขเอกสารนี้ เพียงคลิกปุ่มแก้ไขในหน้าพื้นที่ทำงานเพื่อทำให้พื้นที่ทำงานของคุณสามารถแก้ไขได้และปรับแต่งตามที่คุณต้องการ"
#: frappe/templates/emails/delete_data_confirmation.html:2
msgid "We have received a request for deletion of {0} data associated with: {1}"
-msgstr ""
+msgstr "เราได้รับคำขอให้ลบข้อมูล {0} ที่เกี่ยวข้องกับ: {1}"
#: frappe/templates/emails/download_data.html:2
msgid "We have received a request from you to download your {0} data associated with: {1}"
-msgstr ""
+msgstr "เราได้รับคำขอจากคุณเพื่อดาวน์โหลดข้อมูล {0} ที่เกี่ยวข้องกับ: {1}"
#: frappe/www/attribution.html:12
msgid "We would like to thank the authors of these packages for their contribution."
-msgstr ""
+msgstr "เราขอขอบคุณผู้เขียนแพ็คเกจเหล่านี้สำหรับการมีส่วนร่วมของพวกเขา"
#: frappe/www/contact.py:50
msgid "We've received your query!"
-msgstr ""
+msgstr "เราได้รับคำถามของคุณแล้ว!"
#: frappe/public/js/frappe/form/controls/password.js:87
msgid "Weak"
-msgstr ""
+msgstr "อ่อนแอ"
#. Name of a DocType
#. Label of a Link in the Website Workspace
@@ -28460,22 +28460,22 @@ msgstr ""
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/workspace/website/website.json
msgid "Web Form"
-msgstr ""
+msgstr "ฟอร์มเว็บ"
#. Name of a DocType
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Web Form Field"
-msgstr ""
+msgstr "ฟิลด์ฟอร์มเว็บ"
#. Label of the web_form_fields (Table) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Web Form Fields"
-msgstr ""
+msgstr "ฟิลด์ฟอร์มเว็บ"
#. Name of a DocType
#: frappe/website/doctype/web_form_list_column/web_form_list_column.json
msgid "Web Form List Column"
-msgstr ""
+msgstr "คอลัมน์รายการฟอร์มเว็บ"
#. Name of a DocType
#. Label of a Link in the Website Workspace
@@ -28483,21 +28483,21 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/workspace/website/website.json
msgid "Web Page"
-msgstr ""
+msgstr "หน้าเว็บ"
#. Name of a DocType
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Web Page Block"
-msgstr ""
+msgstr "บล็อกหน้าเว็บ"
#: frappe/public/js/frappe/utils/utils.js:1709
msgid "Web Page URL"
-msgstr ""
+msgstr "URL หน้าเว็บ"
#. Name of a DocType
#: frappe/website/doctype/web_page_view/web_page_view.json
msgid "Web Page View"
-msgstr ""
+msgstr "มุมมองหน้าเว็บ"
#. Label of a Card Break in the Website Workspace
#: frappe/website/workspace/website/website.json
@@ -28509,26 +28509,26 @@ msgstr ""
#: frappe/website/doctype/web_page_block/web_page_block.json
#: frappe/website/doctype/web_template/web_template.json
msgid "Web Template"
-msgstr ""
+msgstr "แม่แบบเว็บ"
#. Name of a DocType
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Web Template Field"
-msgstr ""
+msgstr "ฟิลด์แม่แบบเว็บ"
#. Label of the web_template_values (Code) field in DocType 'Web Page Block'
#: frappe/website/doctype/web_page_block/web_page_block.json
msgid "Web Template Values"
-msgstr ""
+msgstr "ค่าของแม่แบบเว็บ"
#: frappe/utils/jinja_globals.py:48
msgid "Web Template is not specified"
-msgstr ""
+msgstr "ไม่ได้ระบุแม่แบบเว็บ"
#. Label of the web_view (Tab Break) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Web View"
-msgstr ""
+msgstr "มุมมองเว็บ"
#. Name of a DocType
#. Label of the webhook (Link) field in DocType 'Webhook Request Log'
@@ -28544,49 +28544,49 @@ msgstr ""
#: frappe/integrations/doctype/webhook/webhook.json
#: frappe/integrations/doctype/webhook_data/webhook_data.json
msgid "Webhook Data"
-msgstr ""
+msgstr "ข้อมูล Webhook"
#. Name of a DocType
#: frappe/integrations/doctype/webhook_header/webhook_header.json
msgid "Webhook Header"
-msgstr ""
+msgstr "ส่วนหัว Webhook"
#. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Headers"
-msgstr ""
+msgstr "ส่วนหัว Webhook"
#. Label of the sb_webhook (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Request"
-msgstr ""
+msgstr "คำขอ Webhook"
#. Label of a Link in the Build Workspace
#. Name of a DocType
#: frappe/core/workspace/build/build.json
#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json
msgid "Webhook Request Log"
-msgstr ""
+msgstr "บันทึกคำขอ Webhook"
#. Label of the webhook_secret (Password) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Secret"
-msgstr ""
+msgstr "ความลับ Webhook"
#. Label of the sb_security (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Security"
-msgstr ""
+msgstr "ความปลอดภัย Webhook"
#. Label of the sb_condition (Section Break) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "Webhook Trigger"
-msgstr ""
+msgstr "ทริกเกอร์ Webhook"
#. Label of the webhook_url (Data) field in DocType 'Slack Webhook URL'
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
msgid "Webhook URL"
-msgstr ""
+msgstr "URL Webhook"
#. Group in Module Def's connections
#. Name of a Workspace
@@ -28596,14 +28596,14 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
msgid "Website"
-msgstr ""
+msgstr "เว็บไซต์"
#. Name of a report
#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
-msgstr ""
+msgstr "การวิเคราะห์เว็บไซต์"
#. Name of a role
#: frappe/core/doctype/comment/comment.json
@@ -28624,47 +28624,47 @@ msgstr ""
#: frappe/website/doctype/website_slideshow/website_slideshow.json
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Website Manager"
-msgstr ""
+msgstr "ผู้จัดการเว็บไซต์"
#. Name of a DocType
#: frappe/website/doctype/website_meta_tag/website_meta_tag.json
msgid "Website Meta Tag"
-msgstr ""
+msgstr "แท็กเมตาเว็บไซต์"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/website_route_meta/website_route_meta.json
#: frappe/website/workspace/website/website.json
msgid "Website Route Meta"
-msgstr ""
+msgstr "เมตาเส้นทางเว็บไซต์"
#. Name of a DocType
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
msgid "Website Route Redirect"
-msgstr ""
+msgstr "เปลี่ยนเส้นทางเว็บไซต์"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/website_script/website_script.json
#: frappe/website/workspace/website/website.json
msgid "Website Script"
-msgstr ""
+msgstr "สคริปต์เว็บไซต์"
#. Label of the website_search_field (Data) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Website Search Field"
-msgstr ""
+msgstr "ฟิลด์ค้นหาเว็บไซต์"
#: frappe/core/doctype/doctype/doctype.py:1522
msgid "Website Search Field must be a valid fieldname"
-msgstr ""
+msgstr "ฟิลด์ค้นหาเว็บไซต์ต้องเป็นชื่อฟิลด์ที่ถูกต้อง"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/workspace/website/website.json
msgid "Website Settings"
-msgstr ""
+msgstr "การตั้งค่าเว็บไซต์"
#. Label of the website_sidebar (Link) field in DocType 'Web Form'
#. Label of the website_sidebar (Link) field in DocType 'Web Page'
@@ -28675,24 +28675,24 @@ msgstr ""
#: frappe/website/doctype/website_sidebar/website_sidebar.json
#: frappe/website/workspace/website/website.json
msgid "Website Sidebar"
-msgstr ""
+msgstr "แถบด้านข้างเว็บไซต์"
#. Name of a DocType
#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json
msgid "Website Sidebar Item"
-msgstr ""
+msgstr "รายการแถบด้านข้างเว็บไซต์"
#. Name of a DocType
#. Label of a Link in the Website Workspace
#: frappe/website/doctype/website_slideshow/website_slideshow.json
#: frappe/website/workspace/website/website.json
msgid "Website Slideshow"
-msgstr ""
+msgstr "สไลด์โชว์เว็บไซต์"
#. Name of a DocType
#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json
msgid "Website Slideshow Item"
-msgstr ""
+msgstr "รายการสไลด์โชว์เว็บไซต์"
#. Label of the website_theme (Link) field in DocType 'Website Settings'
#. Name of a DocType
@@ -28701,23 +28701,23 @@ msgstr ""
#: frappe/website/doctype/website_theme/website_theme.json
#: frappe/website/workspace/website/website.json
msgid "Website Theme"
-msgstr ""
+msgstr "ธีมเว็บไซต์"
#. Name of a DocType
#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json
msgid "Website Theme Ignore App"
-msgstr ""
+msgstr "ธีมเว็บไซต์ไม่สนใจแอป"
#. Label of the website_theme_image (Image) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Website Theme Image"
-msgstr ""
+msgstr "ภาพธีมเว็บไซต์"
#. Label of the website_theme_image_link (Code) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Website Theme image link"
-msgstr ""
+msgstr "ลิงก์ภาพธีมเว็บไซต์"
#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System
#. Health Report'
@@ -28739,16 +28739,16 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Wednesday"
-msgstr ""
+msgstr "วันพุธ"
#: frappe/public/js/frappe/views/calendar/calendar.js:276
msgid "Week"
-msgstr ""
+msgstr "สัปดาห์"
#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Weekdays"
-msgstr ""
+msgstr "วันธรรมดา"
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
@@ -28770,18 +28770,18 @@ msgstr ""
#: frappe/public/js/frappe/utils/common.js:399
#: frappe/website/report/website_analytics/website_analytics.js:24
msgid "Weekly"
-msgstr ""
+msgstr "รายสัปดาห์"
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
#: frappe/core/doctype/server_script/server_script.json
msgid "Weekly Long"
-msgstr ""
+msgstr "รายสัปดาห์แบบยาว"
#: frappe/desk/page/setup_wizard/setup_wizard.js:384
msgid "Welcome"
-msgstr ""
+msgstr "ยินดีต้อนรับ"
#. Label of the welcome_email_template (Link) field in DocType 'System
#. Settings'
@@ -28789,12 +28789,12 @@ msgstr ""
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/email/doctype/email_group/email_group.json
msgid "Welcome Email Template"
-msgstr ""
+msgstr "แม่แบบอีเมลต้อนรับ"
#. Label of the welcome_url (Data) field in DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Welcome URL"
-msgstr ""
+msgstr "URL ต้อนรับ"
#. Name of a Workspace
#: frappe/core/workspace/welcome_workspace/welcome_workspace.json
@@ -28803,44 +28803,44 @@ msgstr ""
#: frappe/core/doctype/user/user.py:415
msgid "Welcome email sent"
-msgstr ""
+msgstr "ส่งอีเมลต้อนรับแล้ว"
#: frappe/core/doctype/user/user.py:476
msgid "Welcome to {0}"
-msgstr ""
+msgstr "ยินดีต้อนรับสู่ {0}"
#: frappe/public/js/frappe/ui/notifications/notifications.js:62
msgid "What's New"
-msgstr ""
+msgstr "มีอะไรใหม่"
#. Description of the 'Allow Guests to Upload Files' (Check) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "When enabled this will allow guests to upload files to your application, You can enable this if you wish to collect files from user without having them to log in, for example in job applications web form."
-msgstr ""
+msgstr "เมื่อเปิดใช้งาน จะอนุญาตให้ผู้เยี่ยมชมอัปโหลดไฟล์ไปยังแอปพลิเคชันของคุณ คุณสามารถเปิดใช้งานได้หากต้องการรวบรวมไฟล์จากผู้ใช้โดยไม่ต้องให้พวกเขาเข้าสู่ระบบ เช่น ในฟอร์มสมัครงาน"
#. Description of the 'Store Attached PDF Document' (Check) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "When sending document using email, store the PDF on Communication. Warning: This can increase your storage usage."
-msgstr ""
+msgstr "เมื่อส่งเอกสารทางอีเมล ให้เก็บ PDF ไว้ในการสื่อสาร คำเตือน: สิ่งนี้อาจเพิ่มการใช้งานพื้นที่เก็บข้อมูลของคุณ"
#. Description of the 'Force Web Capture Mode for Uploads' (Check) field in
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected."
-msgstr ""
+msgstr "เมื่ออัปโหลดไฟล์ บังคับให้ใช้การจับภาพบนเว็บ หากไม่ได้เลือกสิ่งนี้ พฤติกรรมเริ่มต้นคือการใช้กล้องพื้นฐานของมือถือเมื่อมีการตรวจพบการใช้งานจากมือถือ"
#: frappe/core/page/permission_manager/permission_manager_help.html:18
msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number."
-msgstr ""
+msgstr "เมื่อคุณแก้ไขเอกสารหลังจากยกเลิกและบันทึก มันจะได้รับหมายเลขใหม่ที่เป็นเวอร์ชันของหมายเลขเก่า"
#. Description of the 'DocType View' (Select) field in DocType 'Workspace
#. Shortcut'
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
#: frappe/public/js/frappe/widgets/widget_dialog.js:481
msgid "Which view of the associated DocType should this shortcut take you to?"
-msgstr ""
+msgstr "มุมมองใดของ DocType ที่เกี่ยวข้องที่ทางลัดนี้ควรนำคุณไป?"
#. Label of the width (Data) field in DocType 'DocField'
#. Label of the width (Int) field in DocType 'Report Column'
@@ -28855,7 +28855,7 @@ msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11
msgid "Width"
-msgstr ""
+msgstr "ความกว้าง"
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:2
msgid "Widths can be set in px or %."
@@ -28864,7 +28864,7 @@ msgstr ""
#. Label of the wildcard_filter (Check) field in DocType 'Report Filter'
#: frappe/core/doctype/report_filter/report_filter.json
msgid "Wildcard Filter"
-msgstr ""
+msgstr "ตัวกรองไวลด์การ์ด"
#. Description of the 'Wildcard Filter' (Check) field in DocType 'Report
#. Filter'
@@ -28875,36 +28875,36 @@ msgstr ""
#. Description of the 'Short Name' (Data) field in DocType 'Blogger'
#: frappe/website/doctype/blogger/blogger.json
msgid "Will be used in url (usually first name)."
-msgstr ""
+msgstr "จะใช้ใน URL (โดยปกติคือชื่อแรก)"
#: frappe/desk/page/setup_wizard/setup_wizard.js:485
msgid "Will be your login ID"
-msgstr ""
+msgstr "จะเป็นรหัสเข้าสู่ระบบของคุณ"
#: frappe/printing/page/print_format_builder/print_format_builder.js:424
msgid "Will only be shown if section headings are enabled"
-msgstr ""
+msgstr "จะแสดงเฉพาะเมื่อเปิดใช้งานหัวข้อส่วน"
#. Description of the 'Run Jobs only Daily if Inactive For (Days)' (Int) field
#. in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler."
-msgstr ""
+msgstr "จะรันงานตามกำหนดเวลาเพียงครั้งเดียวต่อวันสำหรับไซต์ที่ไม่ได้ใช้งาน ตั้งค่าเป็น 0 เพื่อหลีกเลี่ยงการปิดใช้งานตัวกำหนดเวลาโดยอัตโนมัติ"
#: frappe/public/js/frappe/form/print_utils.js:15
msgid "With Letter head"
-msgstr ""
+msgstr "พร้อมหัวจดหมาย"
#. Label of the worker_information_section (Section Break) field in DocType 'RQ
#. Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Worker Information"
-msgstr ""
+msgstr "ข้อมูลพนักงาน"
#. Label of the worker_name (Data) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Worker Name"
-msgstr ""
+msgstr "ชื่อพนักงาน"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#. Group in DocType's connections
@@ -28914,42 +28914,42 @@ msgstr ""
#: frappe/public/js/workflow_builder/store.js:129
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow"
-msgstr ""
+msgstr "เวิร์กโฟลว์"
#. Name of a DocType
#: frappe/workflow/doctype/workflow_action/workflow_action.json
#: frappe/workflow/doctype/workflow_action/workflow_action.py:444
msgid "Workflow Action"
-msgstr ""
+msgstr "การดำเนินการเวิร์กโฟลว์"
#. Name of a DocType
#. Description of a DocType
#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
msgid "Workflow Action Master"
-msgstr ""
+msgstr "มาสเตอร์การดำเนินการเวิร์กโฟลว์"
#. Label of the workflow_action_name (Data) field in DocType 'Workflow Action
#. Master'
#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json
msgid "Workflow Action Name"
-msgstr ""
+msgstr "ชื่อการดำเนินการเวิร์กโฟลว์"
#. Name of a DocType
#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json
msgid "Workflow Action Permitted Role"
-msgstr ""
+msgstr "บทบาทที่อนุญาตให้ดำเนินการเวิร์กโฟลว์"
#. Description of the 'Is Optional State' (Check) field in DocType 'Workflow
#. Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Workflow Action is not created for optional states"
-msgstr ""
+msgstr "ไม่ได้สร้างการดำเนินการเวิร์กโฟลว์สำหรับสถานะที่เลือกได้"
#: frappe/public/js/workflow_builder/store.js:129
#: frappe/workflow/doctype/workflow/workflow.js:25
#: frappe/workflow/page/workflow_builder/workflow_builder.js:4
msgid "Workflow Builder"
-msgstr ""
+msgstr "ตัวสร้างเวิร์กโฟลว์"
#. Label of the workflow_builder_id (Data) field in DocType 'Workflow Document
#. State'
@@ -28958,72 +28958,72 @@ msgstr ""
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Workflow Builder ID"
-msgstr ""
+msgstr "รหัสตัวสร้างเวิร์กโฟลว์"
#: frappe/workflow/doctype/workflow/workflow.js:11
msgid "Workflow Builder allows you to create workflows visually. You can drag and drop states and link them to create transitions. Also you can update thieir properties from the sidebar."
-msgstr ""
+msgstr "ตัวสร้างเวิร์กโฟลว์ช่วยให้คุณสร้างเวิร์กโฟลว์ได้อย่างเห็นภาพ คุณสามารถลากและวางสถานะและเชื่อมโยงเพื่อสร้างการเปลี่ยนผ่าน นอกจากนี้คุณยังสามารถอัปเดตคุณสมบัติของพวกเขาจากแถบด้านข้าง"
#. Label of the workflow_data (JSON) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Data"
-msgstr ""
+msgstr "ข้อมูลเวิร์กโฟลว์"
#: frappe/public/js/workflow_builder/components/Properties.vue:42
msgid "Workflow Details"
-msgstr ""
+msgstr "รายละเอียดเวิร์กโฟลว์"
#. Name of a DocType
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Workflow Document State"
-msgstr ""
+msgstr "สถานะเอกสารเวิร์กโฟลว์"
#. Label of the workflow_name (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow Name"
-msgstr ""
+msgstr "ชื่อเวิร์กโฟลว์"
#. Label of the workflow_state (Data) field in DocType 'Workflow Action'
#. Name of a DocType
#: frappe/workflow/doctype/workflow_action/workflow_action.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Workflow State"
-msgstr ""
+msgstr "สถานะเวิร์กโฟลว์"
#. Label of the workflow_state_field (Data) field in DocType 'Workflow'
#: frappe/workflow/doctype/workflow/workflow.json
msgid "Workflow State Field"
-msgstr ""
+msgstr "ฟิลด์สถานะเวิร์กโฟลว์"
#: frappe/model/workflow.py:61
msgid "Workflow State not set"
-msgstr ""
+msgstr "ไม่ได้ตั้งค่าสถานะเวิร์กโฟลว์"
#: frappe/model/workflow.py:204 frappe/model/workflow.py:212
msgid "Workflow State transition not allowed from {0} to {1}"
-msgstr ""
+msgstr "ไม่อนุญาตให้เปลี่ยนสถานะเวิร์กโฟลว์จาก {0} เป็น {1}"
#: frappe/workflow/doctype/workflow/workflow.js:140
msgid "Workflow States Don't Exist"
-msgstr ""
+msgstr "สถานะเวิร์กโฟลว์ไม่มีอยู่"
#: frappe/model/workflow.py:328
msgid "Workflow Status"
-msgstr ""
+msgstr "สถานะเวิร์กโฟลว์"
#. Name of a DocType
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "Workflow Transition"
-msgstr ""
+msgstr "การเปลี่ยนผ่านเวิร์กโฟลว์"
#. Description of a DocType
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Workflow state represents the current state of a document."
-msgstr ""
+msgstr "สถานะเวิร์กโฟลว์แสดงถึงสถานะปัจจุบันของเอกสาร"
#: frappe/public/js/workflow_builder/store.js:83
msgid "Workflow updated successfully"
-msgstr ""
+msgstr "อัปเดตเวิร์กโฟลว์สำเร็จ"
#. Label of the workspace_section (Section Break) field in DocType 'User'
#. Label of a Link in the Build Workspace
@@ -29035,43 +29035,43 @@ msgstr ""
#: frappe/public/js/frappe/utils/utils.js:929
#: frappe/public/js/frappe/views/workspace/workspace.js:10
msgid "Workspace"
-msgstr ""
+msgstr "พื้นที่ทำงาน"
#: frappe/public/js/frappe/router.js:173
msgid "Workspace {0} does not exist"
-msgstr ""
+msgstr "พื้นที่ทำงาน {0} ไม่มีอยู่"
#. Name of a DocType
#: frappe/desk/doctype/workspace_chart/workspace_chart.json
msgid "Workspace Chart"
-msgstr ""
+msgstr "แผนภูมิพื้นที่ทำงาน"
#. Name of a DocType
#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json
msgid "Workspace Custom Block"
-msgstr ""
+msgstr "บล็อกที่กำหนดเองของพื้นที่ทำงาน"
#. Name of a DocType
#: frappe/desk/doctype/workspace_link/workspace_link.json
msgid "Workspace Link"
-msgstr ""
+msgstr "ลิงก์พื้นที่ทำงาน"
#. Name of a role
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/desk/doctype/workspace_settings/workspace_settings.json
msgid "Workspace Manager"
-msgstr ""
+msgstr "ผู้จัดการพื้นที่ทำงาน"
#. Name of a DocType
#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json
msgid "Workspace Number Card"
-msgstr ""
+msgstr "การ์ดตัวเลขพื้นที่ทำงาน"
#. Name of a DocType
#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json
msgid "Workspace Quick List"
-msgstr ""
+msgstr "รายการด่วนพื้นที่ทำงาน"
#. Label of a standard navbar item
#. Type: Action
@@ -29079,45 +29079,45 @@ msgstr ""
#: frappe/desk/doctype/workspace_settings/workspace_settings.json
#: frappe/hooks.py
msgid "Workspace Settings"
-msgstr ""
+msgstr "การตั้งค่าพื้นที่ทำงาน"
#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace
#. Settings'
#: frappe/desk/doctype/workspace_settings/workspace_settings.json
msgid "Workspace Setup Completed"
-msgstr ""
+msgstr "การตั้งค่าพื้นที่ทำงานเสร็จสมบูรณ์"
#. Name of a DocType
#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json
msgid "Workspace Shortcut"
-msgstr ""
+msgstr "ทางลัดพื้นที่ทำงาน"
#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace
#. Settings'
#: frappe/desk/doctype/workspace_settings/workspace_settings.json
msgid "Workspace Visibility"
-msgstr ""
+msgstr "การมองเห็นพื้นที่ทำงาน"
#: frappe/public/js/frappe/views/workspace/workspace.js:538
msgid "Workspace {0} created"
-msgstr ""
+msgstr "สร้างพื้นที่ทำงาน {0} แล้ว"
#. Option for the 'View' (Select) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Workspaces"
-msgstr ""
+msgstr "พื้นที่ทำงาน"
#: frappe/public/js/frappe/form/footer/form_timeline.js:756
msgid "Would you like to publish this comment? This means it will become visible to website/portal users."
-msgstr ""
+msgstr "คุณต้องการเผยแพร่ความคิดเห็นนี้หรือไม่? ซึ่งหมายความว่ามันจะมองเห็นได้สำหรับผู้ใช้เว็บไซต์/พอร์ทัล"
#: frappe/public/js/frappe/form/footer/form_timeline.js:760
msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users."
-msgstr ""
+msgstr "คุณต้องการยกเลิกการเผยแพร่ความคิดเห็นนี้หรือไม่? ซึ่งหมายความว่ามันจะไม่มองเห็นได้สำหรับผู้ใช้เว็บไซต์/พอร์ทัลอีกต่อไป"
#: frappe/desk/page/setup_wizard/setup_wizard.py:41
msgid "Wrapping up"
-msgstr ""
+msgstr "กำลังสรุป"
#. Label of the write (Check) field in DocType 'Custom DocPerm'
#. Label of the write (Check) field in DocType 'DocPerm'
@@ -29128,20 +29128,20 @@ msgstr ""
#: frappe/core/doctype/docshare/docshare.json
#: frappe/core/doctype/user_document_type/user_document_type.json
msgid "Write"
-msgstr ""
+msgstr "เขียน"
#: frappe/model/base_document.py:954
msgid "Wrong Fetch From value"
-msgstr ""
+msgstr "ค่าที่ดึงมาผิด"
#: frappe/public/js/frappe/views/reports/report_view.js:490
msgid "X Axis Field"
-msgstr ""
+msgstr "ฟิลด์แกน X"
#. Label of the x_field (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "X Field"
-msgstr ""
+msgstr "ฟิลด์ X"
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
@@ -29151,17 +29151,17 @@ msgstr ""
#. Label of the y_axis (Table) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Y Axis"
-msgstr ""
+msgstr "แกน Y"
#: frappe/public/js/frappe/views/reports/report_view.js:497
msgid "Y Axis Fields"
-msgstr ""
+msgstr "ฟิลด์แกน Y"
#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field'
#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json
#: frappe/public/js/frappe/views/reports/query_report.js:1223
msgid "Y Field"
-msgstr ""
+msgstr "ฟิลด์ Y"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -29178,7 +29178,7 @@ msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/website/doctype/company_history/company_history.json
msgid "Year"
-msgstr ""
+msgstr "ปี"
#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat'
#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type'
@@ -29196,14 +29196,14 @@ msgstr ""
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/public/js/frappe/utils/common.js:403
msgid "Yearly"
-msgstr ""
+msgstr "รายปี"
#. Option for the 'Color' (Select) field in DocType 'DocType State'
#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column'
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Yellow"
-msgstr ""
+msgstr "สีเหลือง"
#. Option for the 'Standard' (Select) field in DocType 'Page'
#. Option for the 'Is Standard' (Select) field in DocType 'Report'
@@ -29223,130 +29223,130 @@ msgstr ""
#: frappe/public/js/frappe/views/reports/query_report.js:1614
#: frappe/website/doctype/help_article/templates/help_article.html:25
msgid "Yes"
-msgstr ""
+msgstr "ใช่"
#: frappe/public/js/frappe/ui/messages.js:32
msgctxt "Approve confirmation dialog"
msgid "Yes"
-msgstr ""
+msgstr "ใช่"
#: frappe/public/js/frappe/ui/filters/filter.js:545
msgctxt "Checkbox is checked"
msgid "Yes"
-msgstr ""
+msgstr "ใช่"
#: frappe/public/js/frappe/ui/filters/filter.js:727
msgid "Yesterday"
-msgstr ""
+msgstr "เมื่อวาน"
#: frappe/public/js/frappe/utils/user.js:33
msgctxt "Name of the current user. For example: You edited this 5 hours ago."
msgid "You"
-msgstr ""
+msgstr "คุณ"
#: frappe/public/js/frappe/form/footer/form_timeline.js:463
msgid "You Liked"
-msgstr ""
+msgstr "คุณชอบ"
#: frappe/public/js/frappe/dom.js:438
msgid "You are connected to internet."
-msgstr ""
+msgstr "คุณเชื่อมต่อกับอินเทอร์เน็ตแล้ว"
#: frappe/public/js/frappe/ui/toolbar/navbar.html:20
msgid "You are impersonating as another user."
-msgstr ""
+msgstr "คุณกำลังปลอมตัวเป็นผู้ใช้อื่น"
#: frappe/integrations/frappe_providers/frappecloud_billing.py:28
msgid "You are not allowed to access this resource"
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงทรัพยากรนี้"
#: frappe/permissions.py:418
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงระเบียน {0} นี้เนื่องจากเชื่อมโยงกับ {1} '{2}' ในฟิลด์ {3}"
#: frappe/permissions.py:407
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงระเบียน {0} นี้เนื่องจากเชื่อมโยงกับ {1} '{2}' ในแถว {3}, ฟิลด์ {4}"
#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:68
msgid "You are not allowed to create columns"
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้สร้างคอลัมน์"
#: frappe/core/doctype/report/report.py:97
msgid "You are not allowed to delete Standard Report"
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้ลบรายงานมาตรฐาน"
#: frappe/website/doctype/website_theme/website_theme.py:73
msgid "You are not allowed to delete a standard Website Theme"
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้ลบธีมเว็บไซต์มาตรฐาน"
#: frappe/core/doctype/report/report.py:391
msgid "You are not allowed to edit the report."
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้แก้ไขรายงาน"
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
#: frappe/permissions.py:613
msgid "You are not allowed to export {} doctype"
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้นำออกประเภทเอกสาร {}"
#: frappe/public/js/frappe/views/treeview.js:448
msgid "You are not allowed to print this report"
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้พิมพ์รายงานนี้"
#: frappe/public/js/frappe/views/communication.js:781
msgid "You are not allowed to send emails related to this document"
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้ส่งอีเมลที่เกี่ยวข้องกับเอกสารนี้"
#: frappe/website/doctype/web_form/web_form.py:566
msgid "You are not allowed to update this Web Form Document"
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้อัปเดตเอกสารฟอร์มเว็บนี้"
#: frappe/public/js/frappe/request.js:37
msgid "You are not connected to Internet. Retry after sometime."
-msgstr ""
+msgstr "คุณไม่ได้เชื่อมต่อกับอินเทอร์เน็ต โปรดลองอีกครั้งในภายหลัง"
#: frappe/public/js/frappe/web_form/webform_script.js:22
msgid "You are not permitted to access this page without login."
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงหน้านี้โดยไม่เข้าสู่ระบบ"
#: frappe/www/app.py:27
msgid "You are not permitted to access this page."
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงหน้านี้"
#: frappe/__init__.py:676
msgid "You are not permitted to access this resource. Login to access"
-msgstr ""
+msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงทรัพยากรนี้ โปรดเข้าสู่ระบบเพื่อเข้าถึง"
#: frappe/public/js/frappe/form/sidebar/document_follow.js:131
msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings."
-msgstr ""
+msgstr "คุณกำลังติดตามเอกสารนี้ คุณจะได้รับการอัปเดตรายวันทางอีเมล คุณสามารถเปลี่ยนแปลงได้ในการตั้งค่าผู้ใช้"
#: frappe/core/doctype/installed_applications/installed_applications.py:86
msgid "You are only allowed to update order, do not remove or add apps."
-msgstr ""
+msgstr "คุณได้รับอนุญาตให้ปรับปรุงคำสั่งซื้อเท่านั้น ห้ามลบหรือเพิ่มแอป"
#: frappe/email/doctype/email_account/email_account.js:284
msgid "You are selecting Sync Option as ALL, It will resync all read as well as unread message from server. This may also cause the duplication of Communication (emails)."
-msgstr ""
+msgstr "คุณกำลังเลือกตัวเลือกการซิงค์เป็น ALL ซึ่งจะซิงค์ข้อความที่อ่านและยังไม่ได้อ่านทั้งหมดจากเซิร์ฟเวอร์อีกครั้ง ซึ่งอาจทำให้เกิดการซ้ำซ้อนของการสื่อสาร (อีเมล) ได้"
#: frappe/public/js/frappe/form/footer/form_timeline.js:414
msgctxt "Form timeline"
msgid "You attached {0}"
-msgstr ""
+msgstr "คุณแนบ {0}"
#: frappe/printing/page/print_format_builder/print_format_builder.js:749
msgid "You can add dynamic properties from the document by using Jinja templating."
-msgstr ""
+msgstr "คุณสามารถเพิ่มคุณสมบัติแบบไดนามิกจากเอกสารโดยใช้ Jinja templating"
#: frappe/printing/doctype/letter_head/letter_head.js:32
msgid "You can also access wkhtmltopdf variables (valid only in PDF print):"
-msgstr ""
+msgstr "คุณยังสามารถเข้าถึงตัวแปร wkhtmltopdf (ใช้ได้เฉพาะในการพิมพ์ PDF):"
#: frappe/templates/emails/new_user.html:22
msgid "You can also copy-paste following link in your browser"
-msgstr ""
+msgstr "คุณยังสามารถคัดลอก-วางลิงก์ต่อไปนี้ในเบราว์เซอร์ของคุณ"
#: frappe/templates/emails/download_data.html:9
msgid "You can also copy-paste this "
@@ -29354,69 +29354,69 @@ msgstr ""
#: frappe/templates/emails/delete_data_confirmation.html:11
msgid "You can also copy-paste this {0} to your browser"
-msgstr ""
+msgstr "คุณยังสามารถคัดลอก-วาง {0} นี้ในเบราว์เซอร์ของคุณ"
#: frappe/core/page/permission_manager/permission_manager_help.html:17
msgid "You can change Submitted documents by cancelling them and then, amending them."
-msgstr ""
+msgstr "คุณสามารถเปลี่ยนเอกสารที่ส่งแล้วโดยการยกเลิกและแก้ไข"
#: frappe/public/js/frappe/logtypes.js:21
msgid "You can change the retention policy from {0}."
-msgstr ""
+msgstr "คุณสามารถเปลี่ยนนโยบายการเก็บรักษาจาก {0}"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:194
msgid "You can continue with the onboarding after exploring this page"
-msgstr ""
+msgstr "คุณสามารถดำเนินการต่อกับการเริ่มต้นใช้งานหลังจากสำรวจหน้านี้"
#: frappe/model/delete_doc.py:136
msgid "You can disable this {0} instead of deleting it."
-msgstr ""
+msgstr "คุณสามารถปิดใช้งาน {0} นี้แทนการลบได้"
#: frappe/core/doctype/file/file.py:736
msgid "You can increase the limit from System Settings."
-msgstr ""
+msgstr "คุณสามารถเพิ่มขีดจำกัดจากการตั้งค่าระบบ"
#: frappe/utils/synchronization.py:48
msgid "You can manually remove the lock if you think it's safe: {}"
-msgstr ""
+msgstr "คุณสามารถลบการล็อกด้วยตนเองหากคุณคิดว่าปลอดภัย: {}"
#: frappe/public/js/frappe/form/controls/markdown_editor.js:75
msgid "You can only insert images in Markdown fields"
-msgstr ""
+msgstr "คุณสามารถแทรกรูปภาพในฟิลด์ Markdown เท่านั้น"
#: frappe/public/js/frappe/list/bulk_operations.js:42
msgid "You can only print upto {0} documents at a time"
-msgstr ""
+msgstr "คุณสามารถพิมพ์เอกสารได้สูงสุด {0} ฉบับในครั้งเดียว"
#: frappe/core/doctype/user_type/user_type.py:104
msgid "You can only set the 3 custom doctypes in the Document Types table."
-msgstr ""
+msgstr "คุณสามารถตั้งค่าประเภทเอกสารที่กำหนดเองได้เพียง 3 ประเภทในตารางประเภทเอกสาร"
#: frappe/handler.py:182
msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents."
-msgstr ""
+msgstr "คุณสามารถอัปโหลดเอกสาร JPG, PNG, PDF, TXT, CSV หรือ Microsoft เท่านั้น"
#: frappe/core/doctype/data_export/exporter.py:199
msgid "You can only upload upto 5000 records in one go. (may be less in some cases)"
-msgstr ""
+msgstr "คุณสามารถอัปโหลดระเบียนได้สูงสุด 5000 ระเบียนในครั้งเดียว (อาจน้อยกว่านี้ในบางกรณี)"
#: frappe/website/doctype/web_page/web_page.js:92
msgid "You can select one from the following,"
-msgstr ""
+msgstr "คุณสามารถเลือกหนึ่งจากรายการต่อไปนี้,"
#. Description of the 'Rate limit for email link login' (Int) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "You can set a high value here if multiple users will be logging in from the same network."
-msgstr ""
+msgstr "คุณสามารถตั้งค่าค่าสูงที่นี่หากมีผู้ใช้หลายคนเข้าสู่ระบบจากเครือข่ายเดียวกัน"
#: frappe/desk/query_report.py:343
msgid "You can try changing the filters of your report."
-msgstr ""
+msgstr "คุณสามารถลองเปลี่ยนตัวกรองของรายงานของคุณ"
#: frappe/core/page/permission_manager/permission_manager_help.html:27
msgid "You can use Customize Form to set levels on fields."
-msgstr ""
+msgstr "คุณสามารถใช้ฟอร์มปรับแต่งเพื่อกำหนดระดับในฟิลด์"
#: frappe/public/js/frappe/form/link_selector.js:30
msgid "You can use wildcard %"
@@ -29424,100 +29424,100 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.py:389
msgid "You can't set 'Options' for field {0}"
-msgstr ""
+msgstr "คุณไม่สามารถตั้งค่า 'ตัวเลือก' สำหรับฟิลด์ {0} ได้"
#: frappe/custom/doctype/customize_form/customize_form.py:393
msgid "You can't set 'Translatable' for field {0}"
-msgstr ""
+msgstr "คุณไม่สามารถตั้งค่า 'แปลได้' สำหรับฟิลด์ {0} ได้"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:74
msgctxt "Form timeline"
msgid "You cancelled this document"
-msgstr ""
+msgstr "คุณยกเลิกเอกสารนี้"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:61
msgctxt "Form timeline"
msgid "You cancelled this document {1}"
-msgstr ""
+msgstr "คุณยกเลิกเอกสารนี้ {1}"
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:417
msgid "You cannot create a dashboard chart from single DocTypes"
-msgstr ""
+msgstr "คุณไม่สามารถสร้างแผนภูมิแดชบอร์ดจากประเภทเอกสารเดียวได้"
#: frappe/custom/doctype/customize_form/customize_form.py:385
msgid "You cannot unset 'Read Only' for field {0}"
-msgstr ""
+msgstr "คุณไม่สามารถยกเลิกการตั้งค่า 'อ่านอย่างเดียว' สำหรับฟิลด์ {0} ได้"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125
msgid "You changed the value of {0}"
-msgstr ""
+msgstr "คุณเปลี่ยนค่าของ {0}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114
msgid "You changed the value of {0} {1}"
-msgstr ""
+msgstr "คุณเปลี่ยนค่าของ {0} {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:191
msgid "You changed the values for {0}"
-msgstr ""
+msgstr "คุณเปลี่ยนค่าของ {0}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:180
msgid "You changed the values for {0} {1}"
-msgstr ""
+msgstr "คุณเปลี่ยนค่าของ {0} {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:443
msgctxt "Form timeline"
msgid "You changed {0} to {1}"
-msgstr ""
+msgstr "คุณเปลี่ยน {0} เป็น {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:140
#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:94
msgid "You created this"
-msgstr ""
+msgstr "คุณสร้างสิ่งนี้"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247
msgctxt "Form timeline"
msgid "You created this document {0}"
-msgstr ""
+msgstr "คุณสร้างเอกสารนี้ {0}"
#: frappe/client.py:417
msgid "You do not have Read or Select Permissions for {}"
-msgstr ""
+msgstr "คุณไม่มีสิทธิ์อ่านหรือเลือกสำหรับ {}"
#: frappe/public/js/frappe/request.js:177
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
-msgstr ""
+msgstr "คุณไม่มีสิทธิ์เพียงพอที่จะเข้าถึงทรัพยากรนี้ โปรดติดต่อผู้จัดการของคุณเพื่อขอสิทธิ์เข้าถึง"
#: frappe/app.py:361
msgid "You do not have enough permissions to complete the action"
-msgstr ""
+msgstr "คุณไม่มีสิทธิ์เพียงพอที่จะดำเนินการให้เสร็จสิ้น"
#: frappe/desk/query_report.py:831
msgid "You do not have permission to access {0}: {1}."
-msgstr ""
+msgstr "คุณไม่มีสิทธิ์เข้าถึง {0}: {1}"
#: frappe/public/js/frappe/form/form.js:960
msgid "You do not have permissions to cancel all linked documents."
-msgstr ""
+msgstr "คุณไม่มีสิทธิ์ยกเลิกเอกสารที่เชื่อมโยงทั้งหมด"
#: frappe/desk/query_report.py:42
msgid "You don't have access to Report: {0}"
-msgstr ""
+msgstr "คุณไม่มีสิทธิ์เข้าถึงรายงาน: {0}"
#: frappe/website/doctype/web_form/web_form.py:769
msgid "You don't have permission to access the {0} DocType."
-msgstr ""
+msgstr "คุณไม่มีสิทธิ์เข้าถึงประเภทเอกสาร {0}"
#: frappe/utils/response.py:283 frappe/utils/response.py:287
msgid "You don't have permission to access this file"
-msgstr ""
+msgstr "คุณไม่มีสิทธิ์เข้าถึงไฟล์นี้"
#: frappe/desk/query_report.py:48
msgid "You don't have permission to get a report on: {0}"
-msgstr ""
+msgstr "คุณไม่มีสิทธิ์รับรายงานเกี่ยวกับ: {0}"
#: frappe/website/doctype/web_form/web_form.py:172
msgid "You don't have the permissions to access this document"
-msgstr ""
+msgstr "คุณไม่มีสิทธิ์เข้าถึงเอกสารนี้"
#: frappe/templates/emails/new_message.html:1
msgid "You have a new message from: "
@@ -29525,96 +29525,96 @@ msgstr ""
#: frappe/handler.py:118
msgid "You have been successfully logged out"
-msgstr ""
+msgstr "คุณออกจากระบบสำเร็จแล้ว"
#: frappe/custom/doctype/customize_form/customize_form.py:244
msgid "You have hit the row size limit on database table: {0}"
-msgstr ""
+msgstr "คุณถึงขีดจำกัดขนาดแถวในตารางฐานข้อมูล: {0}"
#: frappe/public/js/frappe/list/bulk_operations.js:412
msgid "You have not entered a value. The field will be set to empty."
-msgstr ""
+msgstr "คุณไม่ได้ป้อนค่า ฟิลด์จะถูกตั้งค่าเป็นว่างเปล่า"
#: frappe/templates/includes/likes/likes.py:31
msgid "You have received a ❤️ like on your blog post"
-msgstr ""
+msgstr "คุณได้รับการกดถูกใจ ❤️ ในโพสต์บล็อกของคุณ"
#: frappe/twofactor.py:432
msgid "You have to enable Two Factor Auth from System Settings."
-msgstr ""
+msgstr "คุณต้องเปิดใช้งานการยืนยันตัวตนสองขั้นตอนจากการตั้งค่าระบบ"
#: frappe/public/js/frappe/model/create_new.js:328
msgid "You have unsaved changes in this form. Please save before you continue."
-msgstr ""
+msgstr "คุณมีการเปลี่ยนแปลงที่ยังไม่ได้บันทึกในฟอร์มนี้ โปรดบันทึกก่อนดำเนินการต่อ"
#: frappe/public/js/frappe/ui/toolbar/navbar.html:50
msgid "You have unseen notifications"
-msgstr ""
+msgstr "คุณมีการแจ้งเตือนที่ยังไม่ได้ดู"
#: frappe/core/doctype/log_settings/log_settings.py:125
msgid "You have unseen {0}"
-msgstr ""
+msgstr "คุณมี {0} ที่ยังไม่ได้ดู"
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:192
msgid "You haven't added any Dashboard Charts or Number Cards yet."
-msgstr ""
+msgstr "คุณยังไม่ได้เพิ่มแผนภูมิแดชบอร์ดหรือการ์ดตัวเลขใด ๆ"
#: frappe/public/js/frappe/list/list_view.js:498
msgid "You haven't created a {0} yet"
-msgstr ""
+msgstr "คุณยังไม่ได้สร้าง {0}"
#: frappe/rate_limiter.py:166
msgid "You hit the rate limit because of too many requests. Please try after sometime."
-msgstr ""
+msgstr "คุณถึงขีดจำกัดอัตราเนื่องจากคำขอมากเกินไป โปรดลองอีกครั้งในภายหลัง"
#: frappe/public/js/frappe/form/footer/form_timeline.js:151
#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105
msgid "You last edited this"
-msgstr ""
+msgstr "คุณแก้ไขสิ่งนี้ล่าสุด"
#: frappe/public/js/frappe/widgets/widget_dialog.js:352
msgid "You must add atleast one link."
-msgstr ""
+msgstr "คุณต้องเพิ่มลิงก์อย่างน้อยหนึ่งลิงก์"
#: frappe/website/doctype/web_form/web_form.py:765
msgid "You must be logged in to use this form."
-msgstr ""
+msgstr "คุณต้องเข้าสู่ระบบเพื่อใช้ฟอร์มนี้"
#: frappe/website/doctype/web_form/web_form.py:606
msgid "You must login to submit this form"
-msgstr ""
+msgstr "คุณต้องเข้าสู่ระบบเพื่อส่งฟอร์มนี้"
#: frappe/model/document.py:356
msgid "You need the '{0}' permission on {1} {2} to perform this action."
-msgstr ""
+msgstr "คุณต้องมีสิทธิ์ '{0}' ใน {1} {2} เพื่อดำเนินการนี้"
#: frappe/desk/doctype/workspace/workspace.py:127
msgid "You need to be Workspace Manager to delete a public workspace."
-msgstr ""
+msgstr "คุณต้องเป็นผู้จัดการพื้นที่ทำงานเพื่อที่จะลบพื้นที่ทำงานสาธารณะ"
#: frappe/desk/doctype/workspace/workspace.py:76
msgid "You need to be Workspace Manager to edit this document"
-msgstr ""
+msgstr "คุณต้องเป็นผู้จัดการพื้นที่ทำงานเพื่อแก้ไขเอกสารนี้"
#: frappe/www/attribution.py:16
msgid "You need to be a system user to access this page."
-msgstr ""
+msgstr "คุณต้องเป็นผู้ใช้ระบบเพื่อเข้าถึงหน้านี้"
#: frappe/website/doctype/web_form/web_form.py:91
msgid "You need to be in developer mode to edit a Standard Web Form"
-msgstr ""
+msgstr "คุณต้องอยู่ในโหมดนักพัฒนาเพื่อแก้ไขฟอร์มเว็บมาตรฐาน"
#: frappe/utils/response.py:272
msgid "You need to be logged in and have System Manager Role to be able to access backups."
-msgstr ""
+msgstr "คุณต้องเข้าสู่ระบบและมีบทบาทผู้จัดการระบบเพื่อเข้าถึงข้อมูลสำรอง"
#: frappe/www/me.py:13 frappe/www/third_party_apps.py:10
msgid "You need to be logged in to access this page"
-msgstr ""
+msgstr "คุณต้องเข้าสู่ระบบเพื่อเข้าถึงหน้านี้"
#: frappe/website/doctype/web_form/web_form.py:161
msgid "You need to be logged in to access this {0}."
-msgstr ""
+msgstr "คุณต้องเข้าสู่ระบบเพื่อเข้าถึง {0} นี้"
#: frappe/public/js/frappe/widgets/links_widget.js:63
msgid "You need to create these first: "
@@ -29622,7 +29622,7 @@ msgstr ""
#: frappe/www/login.html:76
msgid "You need to enable JavaScript for your app to work."
-msgstr ""
+msgstr "คุณต้องเปิดใช้งาน JavaScript เพื่อให้แอปของคุณทำงานได้"
#: frappe/core/doctype/docshare/docshare.py:62
msgid "You need to have \"Share\" permission"
@@ -29630,171 +29630,171 @@ msgstr ""
#: frappe/utils/print_format.py:268
msgid "You need to install pycups to use this feature!"
-msgstr ""
+msgstr "คุณต้องติดตั้ง pycups เพื่อใช้คุณสมบัตินี้!"
#: frappe/core/doctype/recorder/recorder.js:38
msgid "You need to select indexes you want to add first."
-msgstr ""
+msgstr "คุณต้องเลือกดัชนีที่คุณต้องการเพิ่มก่อน"
#: frappe/email/doctype/email_account/email_account.py:160
msgid "You need to set one IMAP folder for {0}"
-msgstr ""
+msgstr "คุณต้องตั้งค่าหนึ่งโฟลเดอร์ IMAP สำหรับ {0}"
#: frappe/model/rename_doc.py:391
msgid "You need write permission on {0} {1} to merge"
-msgstr ""
+msgstr "คุณต้องมีสิทธิ์เขียนใน {0} {1} เพื่อรวม"
#: frappe/model/rename_doc.py:386
msgid "You need write permission on {0} {1} to rename"
-msgstr ""
+msgstr "คุณต้องมีสิทธิ์เขียนใน {0} {1} เพื่อเปลี่ยนชื่อ"
#: frappe/client.py:449
msgid "You need {0} permission to fetch values from {1} {2}"
-msgstr ""
+msgstr "คุณต้องมีสิทธิ์ {0} เพื่อดึงค่าจาก {1} {2}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:419
msgctxt "Form timeline"
msgid "You removed attachment {0}"
-msgstr ""
+msgstr "คุณลบไฟล์แนบ {0}"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:520
msgid "You seem good to go!"
-msgstr ""
+msgstr "คุณดูพร้อมที่จะไป!"
#: frappe/templates/includes/contact.js:20
msgid "You seem to have written your name instead of your email. Please enter a valid email address so that we can get back."
-msgstr ""
+msgstr "คุณดูเหมือนจะเขียนชื่อของคุณแทนอีเมล โปรดป้อนที่อยู่อีเมลที่ถูกต้องเพื่อให้เราสามารถติดต่อกลับได้"
#: frappe/public/js/frappe/list/bulk_operations.js:31
msgid "You selected Draft or Cancelled documents"
-msgstr ""
+msgstr "คุณเลือกเอกสารที่เป็นร่างหรือถูกยกเลิก"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:48
msgctxt "Form timeline"
msgid "You submitted this document"
-msgstr ""
+msgstr "คุณส่งเอกสารนี้"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:35
msgctxt "Form timeline"
msgid "You submitted this document {0}"
-msgstr ""
+msgstr "คุณส่งเอกสารนี้ {0}"
#: frappe/public/js/frappe/form/sidebar/document_follow.js:144
msgid "You unfollowed this document"
-msgstr ""
+msgstr "คุณเลิกติดตามเอกสารนี้"
#: frappe/public/js/frappe/form/footer/form_timeline.js:183
msgid "You viewed this"
-msgstr ""
+msgstr "คุณดูสิ่งนี้"
#: frappe/public/js/frappe/desk.js:551
msgid "You've logged in as another user from another tab. Refresh this page to continue using system."
-msgstr ""
+msgstr "คุณเข้าสู่ระบบในฐานะผู้ใช้อื่นจากแท็บอื่น โปรดรีเฟรชหน้านี้เพื่อใช้งานระบบต่อ"
#: frappe/core/doctype/prepared_report/prepared_report.js:57
msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download."
-msgstr ""
+msgstr "ไฟล์ CSV ของคุณกำลังถูกสร้างและจะปรากฏในส่วนไฟล์แนบเมื่อพร้อมใช้งาน นอกจากนี้คุณจะได้รับการแจ้งเตือนเมื่อไฟล์พร้อมให้ดาวน์โหลด"
#: frappe/desk/page/setup_wizard/setup_wizard.js:397
msgid "Your Country"
-msgstr ""
+msgstr "ประเทศของคุณ"
#: frappe/desk/page/setup_wizard/setup_wizard.js:389
msgid "Your Language"
-msgstr ""
+msgstr "ภาษาของคุณ"
#: frappe/templates/includes/comments/comments.html:21
msgid "Your Name"
-msgstr ""
+msgstr "ชื่อของคุณ"
#: frappe/public/js/frappe/list/bulk_operations.js:132
msgid "Your PDF is ready for download"
-msgstr ""
+msgstr "PDF ของคุณพร้อมให้ดาวน์โหลดแล้ว"
#: frappe/patches/v14_0/update_workspace2.py:34
msgid "Your Shortcuts"
-msgstr ""
+msgstr "ทางลัดของคุณ"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:145
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:151
msgid "Your account has been deleted"
-msgstr ""
+msgstr "บัญชีของคุณถูกลบแล้ว"
#: frappe/auth.py:514
msgid "Your account has been locked and will resume after {0} seconds"
-msgstr ""
+msgstr "บัญชีของคุณถูกล็อกและจะกลับมาใช้งานได้หลังจาก {0} วินาที"
#: frappe/desk/form/assign_to.py:279
msgid "Your assignment on {0} {1} has been removed by {2}"
-msgstr ""
+msgstr "การมอบหมายของคุณใน {0} {1} ถูกลบโดย {2}"
#: frappe/core/doctype/file/file.js:73
msgid "Your browser does not support the audio element."
-msgstr ""
+msgstr "เบราว์เซอร์ของคุณไม่รองรับองค์ประกอบเสียง"
#: frappe/core/doctype/file/file.js:55
msgid "Your browser does not support the video element."
-msgstr ""
+msgstr "เบราว์เซอร์ของคุณไม่รองรับองค์ประกอบวิดีโอ"
#: frappe/templates/pages/integrations/gcalendar-success.html:11
msgid "Your connection request to Google Calendar was successfully accepted"
-msgstr ""
+msgstr "คำขอเชื่อมต่อของคุณไปยัง Google Calendar ได้รับการยอมรับเรียบร้อยแล้ว"
#: frappe/www/contact.html:35
msgid "Your email address"
-msgstr ""
+msgstr "ที่อยู่อีเมลของคุณ"
#: frappe/public/js/frappe/web_form/web_form.js:428
msgid "Your form has been successfully updated"
-msgstr ""
+msgstr "ฟอร์มของคุณได้รับการอัปเดตเรียบร้อยแล้ว"
#: frappe/templates/emails/new_user.html:6
msgid "Your login id is"
-msgstr ""
+msgstr "รหัสเข้าสู่ระบบของคุณคือ"
#: frappe/www/update-password.html:167
msgid "Your new password has been set successfully."
-msgstr ""
+msgstr "รหัสผ่านใหม่ของคุณถูกตั้งค่าเรียบร้อยแล้ว"
#: frappe/www/update-password.html:147
msgid "Your old password is incorrect."
-msgstr ""
+msgstr "รหัสผ่านเก่าของคุณไม่ถูกต้อง"
#. Description of the 'Email Footer Address' (Small Text) field in DocType
#. 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Your organization name and address for the email footer."
-msgstr ""
+msgstr "ชื่อและที่อยู่ขององค์กรของคุณสำหรับส่วนท้ายอีเมล"
#: frappe/templates/emails/auto_reply.html:2
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
-msgstr ""
+msgstr "คำถามของคุณได้รับแล้ว เราจะตอบกลับในไม่ช้า หากคุณมีข้อมูลเพิ่มเติม โปรดตอบกลับอีเมลนี้"
#: frappe/app.py:354
msgid "Your session has expired, please login again to continue."
-msgstr ""
+msgstr "เซสชันของคุณหมดอายุแล้ว โปรดเข้าสู่ระบบอีกครั้งเพื่อดำเนินการต่อ"
#: frappe/public/js/frappe/ui/toolbar/navbar.html:15
msgid "Your site is undergoing maintenance or being updated."
-msgstr ""
+msgstr "ไซต์ของคุณกำลังอยู่ในระหว่างการบำรุงรักษาหรือกำลังอัปเดต"
#: frappe/templates/emails/verification_code.html:1
msgid "Your verification code is {0}"
-msgstr ""
+msgstr "รหัสยืนยันของคุณคือ {0}"
#: frappe/utils/data.py:1547
msgid "Zero"
-msgstr ""
+msgstr "ศูนย์"
#. Description of the 'Only Send Records Updated in Last X Hours' (Int) field
#. in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Zero means send records updated at anytime"
-msgstr ""
+msgstr "ศูนย์หมายถึงส่งระเบียนที่อัปเดตได้ตลอดเวลา"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265
msgid "[Action taken by {0}]"
-msgstr ""
+msgstr "[การดำเนินการโดย {0}]"
#. Label of the _doctype (Link) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
@@ -29808,146 +29808,146 @@ msgstr ""
#: frappe/database/database.py:361
msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`"
-msgstr ""
+msgstr "`as_iterator` ใช้งานได้เฉพาะกับ `as_list=True` หรือ `as_dict=True`"
#: frappe/utils/background_jobs.py:120
msgid "`job_id` paramater is required for deduplication."
-msgstr ""
+msgstr "ต้องการพารามิเตอร์ `job_id` สำหรับการลบข้อมูลซ้ำ"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232
msgid "added rows for {0}"
-msgstr ""
+msgstr "เพิ่มแถวสำหรับ {0}"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "after_insert"
-msgstr ""
+msgstr "หลังจากแทรก"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "amend"
-msgstr ""
+msgstr "แก้ไข"
#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
msgid "and"
-msgstr ""
+msgstr "และ"
#: frappe/public/js/frappe/ui/sort_selector.html:5
#: frappe/public/js/frappe/ui/sort_selector.js:48
msgid "ascending"
-msgstr ""
+msgstr "เรียงจากน้อยไปมาก"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "blue"
-msgstr ""
+msgstr "สีน้ำเงิน"
#: frappe/public/js/frappe/form/workflow.js:35
msgid "by Role"
-msgstr ""
+msgstr "ตามบทบาท"
#. Label of the profile (Code) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "cProfile Output"
-msgstr ""
+msgstr "ผลลัพธ์ cProfile"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286
msgid "calendar"
-msgstr ""
+msgstr "ปฏิทิน"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "cancel"
-msgstr ""
+msgstr "ยกเลิก"
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "canceled"
-msgstr ""
+msgstr "ถูกยกเลิก"
#: frappe/templates/includes/list/filters.html:19
msgid "clear"
-msgstr ""
+msgstr "ล้าง"
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:34
msgid "commented"
-msgstr ""
+msgstr "แสดงความคิดเห็น"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "create"
-msgstr ""
+msgstr "สร้าง"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "cyan"
-msgstr ""
+msgstr "สีฟ้า"
#: frappe/public/js/frappe/form/controls/duration.js:208
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
-msgstr ""
+msgstr "วัน"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "darkgrey"
-msgstr ""
+msgstr "สีเทาเข้ม"
#: frappe/core/page/dashboard_view/dashboard_view.js:65
msgid "dashboard"
-msgstr ""
+msgstr "แดชบอร์ด"
#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "dd-mm-yyyy"
-msgstr ""
+msgstr "วว-ดด-ปปปป"
#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "dd.mm.yyyy"
-msgstr ""
+msgstr "วว.ดด.ปปปป"
#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "dd/mm/yyyy"
-msgstr ""
+msgstr "วว/ดด/ปปปป"
#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "default"
-msgstr ""
+msgstr "ค่าเริ่มต้น"
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "deferred"
-msgstr ""
+msgstr "เลื่อนออกไป"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "delete"
-msgstr ""
+msgstr "ลบ"
#: frappe/public/js/frappe/ui/sort_selector.html:5
#: frappe/public/js/frappe/ui/sort_selector.js:48
msgid "descending"
-msgstr ""
+msgstr "เรียงจากมากไปน้อย"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163
msgid "document type..., e.g. customer"
-msgstr ""
+msgstr "ประเภทเอกสาร..., เช่น ลูกค้า"
#. Description of the 'Email Account Name' (Data) field in DocType 'Email
#. Account'
@@ -29957,36 +29957,36 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:183
msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..."
-msgstr ""
+msgstr "เช่น (55 + 434) / 4 หรือ =Math.sin(Math.PI/2)..."
#. Description of the 'Incoming Server' (Data) field in DocType 'Email Account'
#. Description of the 'Incoming Server' (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "e.g. pop.gmail.com / imap.gmail.com"
-msgstr ""
+msgstr "เช่น pop.gmail.com / imap.gmail.com"
#. Description of the 'Default Incoming' (Check) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "e.g. replies@yourcomany.com. All replies will come to this inbox."
-msgstr ""
+msgstr "เช่น replies@yourcomany.com. การตอบกลับทั้งหมดจะมาที่กล่องจดหมายนี้"
#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Account'
#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_account/email_account.json
#: frappe/email/doctype/email_domain/email_domain.json
msgid "e.g. smtp.gmail.com"
-msgstr ""
+msgstr "เช่น smtp.gmail.com"
#: frappe/custom/doctype/custom_field/custom_field.js:98
msgid "e.g.:"
-msgstr ""
+msgstr "เช่น:"
#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "emacs"
-msgstr ""
+msgstr "อีแมคส์"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
@@ -29995,63 +29995,63 @@ msgstr ""
#: frappe/core/doctype/permission_inspector/permission_inspector.json
#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "email"
-msgstr ""
+msgstr "อีเมล"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305
msgid "email inbox"
-msgstr ""
+msgstr "กล่องจดหมายอีเมล"
#: frappe/permissions.py:412 frappe/permissions.py:423
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
-msgstr ""
+msgstr "ว่างเปล่า"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "export"
-msgstr ""
+msgstr "ส่งออก"
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "facebook"
-msgstr ""
+msgstr "เฟซบุ๊ก"
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "failed"
-msgstr ""
+msgstr "ล้มเหลว"
#. Option for the 'Social Login Provider' (Select) field in DocType 'Social
#. Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "fairlogin"
-msgstr ""
+msgstr "เข้าสู่ระบบอย่างยุติธรรม"
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "finished"
-msgstr ""
+msgstr "เสร็จสิ้น"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "gray"
-msgstr ""
+msgstr "สีเทา"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "green"
-msgstr ""
+msgstr "สีเขียว"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "grey"
-msgstr ""
+msgstr "สีเทา"
#: frappe/utils/backups.py:399
msgid "gzip not found in PATH! This is required to take a backup."
-msgstr ""
+msgstr "ไม่พบ gzip ใน PATH! จำเป็นต้องใช้เพื่อสำรองข้อมูล"
#: frappe/public/js/frappe/form/controls/duration.js:209
#: frappe/public/js/frappe/utils/utils.js:1120
@@ -30061,23 +30061,23 @@ msgstr ""
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296
msgid "hub"
-msgstr ""
+msgstr "ฮับ"
#. Label of the icon (Data) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "icon"
-msgstr ""
+msgstr "ไอคอน"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "import"
-msgstr ""
+msgstr "นำเข้า"
#. Description of the 'Read Time' (Int) field in DocType 'Blog Post'
#: frappe/website/doctype/blog_post/blog_post.json
msgid "in minutes"
-msgstr ""
+msgstr "ในนาที"
#: frappe/templates/signup.html:11 frappe/www/login.html:11
msgid "jane@example.com"
@@ -30085,243 +30085,243 @@ msgstr ""
#: frappe/public/js/frappe/utils/pretty_date.js:46
msgid "just now"
-msgstr ""
+msgstr "เมื่อสักครู่"
#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
msgid "label"
-msgstr ""
+msgstr "ป้ายกำกับ"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "light-blue"
-msgstr ""
+msgstr "สีฟ้าอ่อน"
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "link"
-msgstr ""
+msgstr "ลิงก์"
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "linkedin"
-msgstr ""
+msgstr "ลิงก์อิน"
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "list"
-msgstr ""
+msgstr "รายการ"
#: frappe/www/third_party_apps.html:43
msgid "logged in"
-msgstr ""
+msgstr "เข้าสู่ระบบแล้ว"
#: frappe/website/doctype/web_form/web_form.js:362
msgid "login_required"
-msgstr ""
+msgstr "ต้องเข้าสู่ระบบ"
#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "long"
-msgstr ""
+msgstr "ยาว"
#: frappe/public/js/frappe/form/controls/duration.js:210
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
-msgstr ""
+msgstr "นาที"
#: frappe/model/rename_doc.py:215
msgid "merged {0} into {1}"
-msgstr ""
+msgstr "รวม {0} เข้ากับ {1}"
#: frappe/website/doctype/blog_post/templates/blog_post.html:25
#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36
msgid "min read"
-msgstr ""
+msgstr "อ่านขั้นต่ำ"
#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "mm-dd-yyyy"
-msgstr ""
+msgstr "ดด-วว-ปปปป"
#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "mm/dd/yyyy"
-msgstr ""
+msgstr "ดด/วว/ปปปป"
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "module"
-msgstr ""
+msgstr "โมดูล"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:178
msgid "module name..."
-msgstr ""
+msgstr "ชื่อโมดูล..."
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160
msgid "new"
-msgstr ""
+msgstr "ใหม่"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:158
msgid "new type of document"
-msgstr ""
+msgstr "ประเภทเอกสารใหม่"
#. Label of the no_failed (Int) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "no failed attempts"
-msgstr ""
+msgstr "ไม่มีความพยายามที่ล้มเหลว"
#. Label of the nonce (Data) field in DocType 'OAuth Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "nonce"
-msgstr ""
+msgstr "โนนซ์"
#. Label of the notified (Check) field in DocType 'Reminder'
#: frappe/automation/doctype/reminder/reminder.json
msgid "notified"
-msgstr ""
+msgstr "แจ้งเตือนแล้ว"
#: frappe/public/js/frappe/utils/pretty_date.js:25
msgid "now"
-msgstr ""
+msgstr "ตอนนี้"
#: frappe/public/js/frappe/form/grid_pagination.js:116
msgid "of"
-msgstr ""
+msgstr "ของ"
#. Label of the old_parent (Data) field in DocType 'File'
#: frappe/core/doctype/file/file.json
msgid "old_parent"
-msgstr ""
+msgstr "ผู้ปกครองเก่า"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_cancel"
-msgstr ""
+msgstr "เมื่อยกเลิก"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_change"
-msgstr ""
+msgstr "เมื่อเปลี่ยนแปลง"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_submit"
-msgstr ""
+msgstr "เมื่อส่ง"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_trash"
-msgstr ""
+msgstr "เมื่อทิ้ง"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_update"
-msgstr ""
+msgstr "เมื่ออัปเดต"
#. Option for the 'Doc Event' (Select) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "on_update_after_submit"
-msgstr ""
+msgstr "เมื่ออัปเดตหลังจากส่ง"
#: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90
#: frappe/www/login.py:112
msgid "or"
-msgstr ""
+msgstr "หรือ"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "orange"
-msgstr ""
+msgstr "สีส้ม"
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "page"
-msgstr ""
+msgstr "หน้า"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "pink"
-msgstr ""
+msgstr "สีชมพู"
#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth
#. Authorization Code'
#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json
msgid "plain"
-msgstr ""
+msgstr "ธรรมดา"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "print"
-msgstr ""
+msgstr "พิมพ์"
#. Label of the processlist (HTML) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "processlist"
-msgstr ""
+msgstr "รายการกระบวนการ"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "purple"
-msgstr ""
+msgstr "สีม่วง"
#. Option for the 'Type' (Select) field in DocType 'Desktop Icon'
#: frappe/desk/doctype/desktop_icon/desktop_icon.json
msgid "query-report"
-msgstr ""
+msgstr "รายงานคำถาม"
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "queued"
-msgstr ""
+msgstr "อยู่ในคิว"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "read"
-msgstr ""
+msgstr "อ่าน"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "red"
-msgstr ""
+msgstr "สีแดง"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234
msgid "removed rows for {0}"
-msgstr ""
+msgstr "ลบแถวสำหรับ {0}"
#: frappe/model/rename_doc.py:217
msgid "renamed from {0} to {1}"
-msgstr ""
+msgstr "เปลี่ยนชื่อจาก {0} เป็น {1}"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "report"
-msgstr ""
+msgstr "รายงาน"
#. Label of the response (HTML) field in DocType 'Custom Role'
#: frappe/core/doctype/custom_role/custom_role.json
msgid "response"
-msgstr ""
+msgstr "การตอบกลับ"
#: frappe/core/doctype/deleted_document/deleted_document.py:61
msgid "restored {0} as {1}"
-msgstr ""
+msgstr "กู้คืน {0} เป็น {1}"
#: frappe/public/js/frappe/form/controls/duration.js:211
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
-msgstr ""
+msgstr "วินาที"
#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth
#. Authorization Code'
@@ -30332,101 +30332,101 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "scheduled"
-msgstr ""
+msgstr "กำหนดเวลา"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "select"
-msgstr ""
+msgstr "เลือก"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "share"
-msgstr ""
+msgstr "แชร์"
#. Option for the 'Queue' (Select) field in DocType 'RQ Job'
#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_job/rq_job.json
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "short"
-msgstr ""
+msgstr "สั้น"
#: frappe/public/js/frappe/widgets/number_card_widget.js:298
msgid "since last month"
-msgstr ""
+msgstr "ตั้งแต่เดือนที่แล้ว"
#: frappe/public/js/frappe/widgets/number_card_widget.js:297
msgid "since last week"
-msgstr ""
+msgstr "ตั้งแต่สัปดาห์ที่แล้ว"
#: frappe/public/js/frappe/widgets/number_card_widget.js:299
msgid "since last year"
-msgstr ""
+msgstr "ตั้งแต่ปีที่แล้ว"
#: frappe/public/js/frappe/widgets/number_card_widget.js:296
msgid "since yesterday"
-msgstr ""
+msgstr "ตั้งแต่เมื่อวาน"
#. Option for the 'Status' (Select) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "started"
-msgstr ""
+msgstr "เริ่มต้นแล้ว"
#: frappe/desk/page/setup_wizard/setup_wizard.js:201
msgid "starting the setup..."
-msgstr ""
+msgstr "กำลังเริ่มการตั้งค่า..."
#. Description of the 'Group Object Class' (Data) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "string value, i.e. group"
-msgstr ""
+msgstr "ค่าข้อความ เช่น กลุ่ม"
#. Description of the 'LDAP Group Member attribute' (Data) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "string value, i.e. member"
-msgstr ""
+msgstr "ค่าข้อความ เช่น สมาชิก"
#. Description of the 'Custom Group Search' (Data) field in DocType 'LDAP
#. Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "string value, i.e. {0} or uid={0},ou=users,dc=example,dc=com"
-msgstr ""
+msgstr "ค่าข้อความ เช่น {0} หรือ uid={0},ou=users,dc=example,dc=com"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "submit"
-msgstr ""
+msgstr "ส่ง"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:173
msgid "tag name..., e.g. #tag"
-msgstr ""
+msgstr "ชื่อแท็ก เช่น #tag"
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:168
msgid "text in document type"
-msgstr ""
+msgstr "ข้อความในประเภทเอกสาร"
#: frappe/public/js/frappe/form/controls/data.js:36
msgid "this form"
-msgstr ""
+msgstr "ฟอร์มนี้"
#: frappe/tests/test_translate.py:174
msgid "this shouldn't break"
-msgstr ""
+msgstr "สิ่งนี้ไม่ควรเสียหาย"
#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link
#. Settings'
#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "twitter"
-msgstr ""
+msgstr "ทวิตเตอร์"
#: frappe/public/js/frappe/change_log.html:7
msgid "updated to {0}"
-msgstr ""
+msgstr "อัปเดตเป็น {0}"
#: frappe/public/js/frappe/ui/filters/filter.js:361
msgid "use % as wildcard"
@@ -30434,38 +30434,38 @@ msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:360
msgid "values separated by commas"
-msgstr ""
+msgstr "ค่าที่คั่นด้วยเครื่องหมายจุลภาค"
#. Label of the version_table (HTML) field in DocType 'Audit Trail'
#: frappe/core/doctype/audit_trail/audit_trail.json
msgid "version_table"
-msgstr ""
+msgstr "ตารางเวอร์ชัน"
#: frappe/automation/doctype/assignment_rule/assignment_rule.py:382
msgid "via Assignment Rule"
-msgstr ""
+msgstr "ผ่านกฎการมอบหมาย"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242
msgid "via Auto Repeat"
-msgstr ""
+msgstr "ผ่านการทำซ้ำอัตโนมัติ"
#: frappe/core/doctype/data_import/importer.py:271
#: frappe/core/doctype/data_import/importer.py:292
msgid "via Data Import"
-msgstr ""
+msgstr "ผ่านการนำเข้าข้อมูล"
#. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "via Google Meet"
-msgstr ""
+msgstr "ผ่าน Google Meet"
#: frappe/email/doctype/notification/notification.py:361
msgid "via Notification"
-msgstr ""
+msgstr "ผ่านการแจ้งเตือน"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:17
msgid "via {0}"
-msgstr ""
+msgstr "ผ่าน {0}"
#. Option for the 'Code Editor Type' (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
@@ -30479,13 +30479,13 @@ msgstr ""
#: frappe/templates/includes/oauth_confirmation.html:5
msgid "wants to access the following details from your account"
-msgstr ""
+msgstr "ต้องการเข้าถึงรายละเอียดต่อไปนี้จากบัญชีของคุณ"
#. Description of the 'Popover Element' (Check) field in DocType 'Form Tour
#. Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
msgid "when clicked on element it will focus popover if present."
-msgstr ""
+msgstr "เมื่อคลิกที่องค์ประกอบ จะโฟกัสไปที่ป๊อปโอเวอร์หากมีอยู่"
#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -30494,29 +30494,29 @@ msgstr ""
#: frappe/printing/page/print/print.js:622
msgid "wkhtmltopdf 0.12.x (with patched qt)."
-msgstr ""
+msgstr "wkhtmltopdf 0.12.x (พร้อม qt ที่แก้ไขแล้ว)"
#. Option for the 'Permission Type' (Select) field in DocType 'Permission
#. Inspector'
#: frappe/core/doctype/permission_inspector/permission_inspector.json
msgid "write"
-msgstr ""
+msgstr "เขียน"
#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
msgid "yellow"
-msgstr ""
+msgstr "สีเหลือง"
#: frappe/public/js/frappe/utils/pretty_date.js:58
msgid "yesterday"
-msgstr ""
+msgstr "เมื่อวาน"
#. Option for the 'Date Format' (Select) field in DocType 'Language'
#. Option for the 'Date Format' (Select) field in DocType 'System Settings'
#: frappe/core/doctype/language/language.json
#: frappe/core/doctype/system_settings/system_settings.json
msgid "yyyy-mm-dd"
-msgstr ""
+msgstr "ปปปป-ดด-วว"
#: frappe/desk/doctype/event/event.js:87
#: frappe/public/js/frappe/form/footer/form_timeline.js:547
@@ -30538,7 +30538,7 @@ msgstr ""
#: frappe/public/js/frappe/data_import/data_exporter.js:77
msgid "{0} ({1}) (1 row mandatory)"
-msgstr ""
+msgstr "{0} ({1}) (1 แถวจำเป็น)"
#: frappe/public/js/frappe/views/gantt/gantt_view.js:53
msgid "{0} ({1}) - {2}%"
@@ -30551,43 +30551,43 @@ msgstr ""
#: frappe/public/js/frappe/views/calendar/calendar.js:30
msgid "{0} Calendar"
-msgstr ""
+msgstr "ปฏิทิน {0}"
#: frappe/public/js/frappe/views/reports/report_view.js:570
msgid "{0} Chart"
-msgstr ""
+msgstr "แผนภูมิ {0}"
#: frappe/core/page/dashboard_view/dashboard_view.js:67
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348
#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12
msgid "{0} Dashboard"
-msgstr ""
+msgstr "แดชบอร์ด {0}"
#: frappe/public/js/frappe/form/grid_row.js:470
#: frappe/public/js/frappe/list/list_settings.js:227
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178
msgid "{0} Fields"
-msgstr ""
+msgstr "ฟิลด์ {0}"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:376
msgid "{0} Google Calendar Events synced."
-msgstr ""
+msgstr "กิจกรรม Google Calendar {0} ซิงค์แล้ว"
#: frappe/integrations/doctype/google_contacts/google_contacts.py:193
msgid "{0} Google Contacts synced."
-msgstr ""
+msgstr "รายชื่อ Google {0} ซิงค์แล้ว"
#: frappe/public/js/frappe/form/footer/form_timeline.js:464
msgid "{0} Liked"
-msgstr ""
+msgstr "ชอบ {0}"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:83
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:84
#: frappe/public/js/frappe/widgets/chart_widget.js:358 frappe/www/list.html:4
#: frappe/www/list.html:8
msgid "{0} List"
-msgstr ""
+msgstr "รายการ {0}"
#: frappe/public/js/frappe/utils/pretty_date.js:37
msgid "{0} M"
@@ -30595,498 +30595,498 @@ msgstr ""
#: frappe/public/js/frappe/views/map/map_view.js:14
msgid "{0} Map"
-msgstr ""
+msgstr "แผนที่ {0}"
#: frappe/public/js/frappe/form/quick_entry.js:122
msgid "{0} Name"
-msgstr ""
+msgstr "ชื่อ {0}"
#: frappe/model/base_document.py:1154
msgid "{0} Not allowed to change {1} after submission from {2} to {3}"
-msgstr ""
+msgstr "{0} ไม่อนุญาตให้เปลี่ยน {1} หลังจากส่งจาก {2} เป็น {3}"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96
#: frappe/public/js/frappe/widgets/chart_widget.js:366
msgid "{0} Report"
-msgstr ""
+msgstr "รายงาน {0}"
#: frappe/public/js/frappe/views/reports/query_report.js:954
msgid "{0} Reports"
-msgstr ""
+msgstr "รายงาน {0}"
#: frappe/public/js/frappe/list/list_settings.js:32
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:26
msgid "{0} Settings"
-msgstr ""
+msgstr "การตั้งค่า {0}"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:87
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:88
#: frappe/public/js/frappe/views/treeview.js:152
msgid "{0} Tree"
-msgstr ""
+msgstr "ต้นไม้ {0}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:128
#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:73
msgid "{0} Web page views"
-msgstr ""
+msgstr "การดูหน้าเว็บ {0}"
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:91
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92
msgid "{0} Workspace"
-msgstr ""
+msgstr "พื้นที่ทำงาน {0}"
#: frappe/public/js/frappe/form/link_selector.js:225
msgid "{0} added"
-msgstr ""
+msgstr "เพิ่ม {0}"
#: frappe/public/js/frappe/form/controls/data.js:204
msgid "{0} already exists. Select another name"
-msgstr ""
+msgstr "{0} มีอยู่แล้ว เลือกชื่ออื่น"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:36
msgid "{0} already unsubscribed"
-msgstr ""
+msgstr "{0} ยกเลิกการสมัครแล้ว"
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49
msgid "{0} already unsubscribed for {1} {2}"
-msgstr ""
+msgstr "{0} ยกเลิกการสมัครแล้วสำหรับ {1} {2}"
#: frappe/utils/data.py:1740
msgid "{0} and {1}"
-msgstr ""
+msgstr "{0} และ {1}"
#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:72
msgid "{0} are currently {1}"
-msgstr ""
+msgstr "{0} ปัจจุบันคือ {1}"
#: frappe/printing/doctype/print_format/print_format.py:89
msgid "{0} are required"
-msgstr ""
+msgstr "ต้องการ {0}"
#: frappe/desk/form/assign_to.py:286
msgid "{0} assigned a new task {1} {2} to you"
-msgstr ""
+msgstr "{0} มอบหมายงานใหม่ {1} {2} ให้คุณ"
#: frappe/desk/doctype/todo/todo.py:48
msgid "{0} assigned {1}: {2}"
-msgstr ""
+msgstr "{0} มอบหมาย {1}: {2}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:415
msgctxt "Form timeline"
msgid "{0} attached {1}"
-msgstr ""
+msgstr "{0} แนบ {1}"
#: frappe/core/doctype/system_settings/system_settings.py:150
msgid "{0} can not be more than {1}"
-msgstr ""
+msgstr "{0} ต้องไม่เกิน {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:77
msgid "{0} cancelled this document"
-msgstr ""
+msgstr "{0} ยกเลิกเอกสารนี้"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:68
msgctxt "Form timeline"
msgid "{0} cancelled this document {1}"
-msgstr ""
+msgstr "{0} ยกเลิกเอกสารนี้ {1}"
#: frappe/model/document.py:546
msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment."
-msgstr ""
+msgstr "{0} ไม่สามารถแก้ไขได้เนื่องจากยังไม่ได้ยกเลิก โปรดยกเลิกเอกสารก่อนสร้างการแก้ไข"
#: frappe/public/js/form_builder/store.js:190
msgid "{0} cannot be hidden and mandatory without any default value"
-msgstr ""
+msgstr "{0} ไม่สามารถซ่อนและบังคับได้โดยไม่มีค่าเริ่มต้น"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128
msgid "{0} changed the value of {1}"
-msgstr ""
+msgstr "{0} เปลี่ยนค่าของ {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:119
msgid "{0} changed the value of {1} {2}"
-msgstr ""
+msgstr "{0} เปลี่ยนค่าของ {1} {2}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:194
msgid "{0} changed the values for {1}"
-msgstr ""
+msgstr "{0} เปลี่ยนค่าของ {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:185
msgid "{0} changed the values for {1} {2}"
-msgstr ""
+msgstr "{0} เปลี่ยนค่าของ {1} {2}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:444
msgctxt "Form timeline"
msgid "{0} changed {1} to {2}"
-msgstr ""
+msgstr "{0} เปลี่ยน {1} เป็น {2}"
#: frappe/website/doctype/blog_post/blog_post.py:382
msgid "{0} comments"
-msgstr ""
+msgstr "{0} ความคิดเห็น"
#: frappe/core/doctype/doctype/doctype.py:1605
msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential."
-msgstr ""
+msgstr "{0} มีนิพจน์ Fetch From ที่ไม่ถูกต้อง Fetch From ไม่สามารถอ้างอิงตัวเองได้"
#: frappe/public/js/frappe/views/interaction.js:261
msgid "{0} created successfully"
-msgstr ""
+msgstr "{0} สร้างสำเร็จ"
#: frappe/public/js/frappe/form/footer/form_timeline.js:141
#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:95
msgid "{0} created this"
-msgstr ""
+msgstr "{0} สร้างสิ่งนี้"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250
msgctxt "Form timeline"
msgid "{0} created this document {1}"
-msgstr ""
+msgstr "{0} สร้างเอกสารนี้ {1}"
#: frappe/public/js/frappe/utils/pretty_date.js:33
msgid "{0} d"
-msgstr ""
+msgstr "{0} วัน"
#: frappe/public/js/frappe/utils/pretty_date.js:60
msgid "{0} days ago"
-msgstr ""
+msgstr "{0} วันที่ผ่านมา"
#: frappe/website/doctype/website_settings/website_settings.py:96
#: frappe/website/doctype/website_settings/website_settings.py:116
msgid "{0} does not exist in row {1}"
-msgstr ""
+msgstr "{0} ไม่มีอยู่ในแถว {1}"
#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:184
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
-msgstr ""
+msgstr "ฟิลด์ {0} ไม่สามารถตั้งค่าเป็นค่าที่ไม่ซ้ำใน {1} ได้ เนื่องจากมีค่าที่ไม่ซ้ำอยู่แล้ว"
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
-msgstr ""
+msgstr "ไม่สามารถกำหนดรูปแบบ {0} จากค่าที่อยู่ในคอลัมน์นี้ได้ กำหนดค่าเริ่มต้นเป็น {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101
msgid "{0} from {1} to {2}"
-msgstr ""
+msgstr "{0} จาก {1} ถึง {2}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:165
msgid "{0} from {1} to {2} in row #{3}"
-msgstr ""
+msgstr "{0} จาก {1} ถึง {2} ในแถว #{3}"
#: frappe/public/js/frappe/utils/pretty_date.js:29
msgid "{0} h"
-msgstr ""
+msgstr "{0} ชั่วโมง"
#: frappe/core/doctype/user_permission/user_permission.py:77
msgid "{0} has already assigned default value for {1}."
-msgstr ""
+msgstr "{0} ได้กำหนดค่าเริ่มต้นสำหรับ {1} แล้ว"
#: frappe/email/doctype/newsletter/newsletter.py:380
msgid "{0} has been successfully added to the Email Group."
-msgstr ""
+msgstr "{0} ถูกเพิ่มในกลุ่มอีเมลเรียบร้อยแล้ว"
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
-msgstr ""
+msgstr "{0} ออกจากการสนทนาใน {1} {2}"
#: frappe/public/js/frappe/utils/pretty_date.js:54
msgid "{0} hours ago"
-msgstr ""
+msgstr "{0} ชั่วโมงที่ผ่านมา"
#: frappe/website/doctype/web_form/templates/web_form.html:148
msgid "{0} if you are not redirected within {1} seconds"
-msgstr ""
+msgstr "{0} หากคุณไม่ได้ถูกเปลี่ยนเส้นทางภายใน {1} วินาที"
#: frappe/website/doctype/website_settings/website_settings.py:102
#: frappe/website/doctype/website_settings/website_settings.py:122
msgid "{0} in row {1} cannot have both URL and child items"
-msgstr ""
+msgstr "{0} ในแถว {1} ไม่สามารถมีทั้ง URL และรายการลูกได้"
#: frappe/core/doctype/doctype/doctype.py:934
msgid "{0} is a mandatory field"
-msgstr ""
+msgstr "{0} เป็นฟิลด์ที่จำเป็น"
#: frappe/core/doctype/file/file.py:544
msgid "{0} is a not a valid zip file"
-msgstr ""
+msgstr "{0} ไม่ใช่ไฟล์ zip ที่ถูกต้อง"
#: frappe/core/doctype/doctype/doctype.py:1618
msgid "{0} is an invalid Data field."
-msgstr ""
+msgstr "{0} เป็นฟิลด์ข้อมูลที่ไม่ถูกต้อง"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154
msgid "{0} is an invalid email address in 'Recipients'"
-msgstr ""
+msgstr "{0} เป็นที่อยู่อีเมลที่ไม่ถูกต้องใน 'ผู้รับ'"
#: frappe/public/js/frappe/views/reports/report_view.js:1468
msgid "{0} is between {1} and {2}"
-msgstr ""
+msgstr "{0} อยู่ระหว่าง {1} และ {2}"
#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:41
#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:69
msgid "{0} is currently {1}"
-msgstr ""
+msgstr "{0} ปัจจุบันคือ {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1437
msgid "{0} is equal to {1}"
-msgstr ""
+msgstr "{0} เท่ากับ {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1457
msgid "{0} is greater than or equal to {1}"
-msgstr ""
+msgstr "{0} มากกว่าหรือเท่ากับ {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1447
msgid "{0} is greater than {1}"
-msgstr ""
+msgstr "{0} มากกว่า {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1462
msgid "{0} is less than or equal to {1}"
-msgstr ""
+msgstr "{0} น้อยกว่าหรือเท่ากับ {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1452
msgid "{0} is less than {1}"
-msgstr ""
+msgstr "{0} น้อยกว่า {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1487
msgid "{0} is like {1}"
-msgstr ""
+msgstr "{0} คล้ายกับ {1}"
#: frappe/email/doctype/email_account/email_account.py:193
msgid "{0} is mandatory"
-msgstr ""
+msgstr "{0} เป็นสิ่งจำเป็น"
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
-msgstr ""
+msgstr "{0} ไม่ใช่ฟิลด์ของประเภทเอกสาร {1}"
#: frappe/www/printview.py:384
msgid "{0} is not a raw printing format."
-msgstr ""
+msgstr "{0} ไม่ใช่รูปแบบการพิมพ์ดิบ"
#: frappe/public/js/frappe/views/calendar/calendar.js:82
msgid "{0} is not a valid Calendar. Redirecting to default Calendar."
-msgstr ""
+msgstr "{0} ไม่ใช่ปฏิทินที่ถูกต้อง กำลังเปลี่ยนเส้นทางไปยังปฏิทินเริ่มต้น"
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67
msgid "{0} is not a valid Cron expression."
-msgstr ""
+msgstr "{0} ไม่ใช่นิพจน์ Cron ที่ถูกต้อง"
#: frappe/public/js/frappe/form/controls/dynamic_link.js:27
msgid "{0} is not a valid DocType for Dynamic Link"
-msgstr ""
+msgstr "{0} ไม่ใช่ประเภทเอกสารที่ถูกต้องสำหรับลิงก์แบบไดนามิก"
#: frappe/email/doctype/email_group/email_group.py:131
#: frappe/utils/__init__.py:202
msgid "{0} is not a valid Email Address"
-msgstr ""
+msgstr "{0} ไม่ใช่ที่อยู่อีเมลที่ถูกต้อง"
#: frappe/geo/doctype/country/country.py:30
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
-msgstr ""
+msgstr "{0} ไม่ใช่รหัส ISO 3166 ALPHA-2 ที่ถูกต้อง"
#: frappe/utils/__init__.py:170
msgid "{0} is not a valid Name"
-msgstr ""
+msgstr "{0} ไม่ใช่ชื่อที่ถูกต้อง"
#: frappe/utils/__init__.py:149
msgid "{0} is not a valid Phone Number"
-msgstr ""
+msgstr "{0} ไม่ใช่หมายเลขโทรศัพท์ที่ถูกต้อง"
#: frappe/model/workflow.py:189
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
-msgstr ""
+msgstr "{0} ไม่ใช่สถานะเวิร์กโฟลว์ที่ถูกต้อง โปรดอัปเดตเวิร์กโฟลว์ของคุณและลองอีกครั้ง"
#: frappe/permissions.py:796
msgid "{0} is not a valid parent DocType for {1}"
-msgstr ""
+msgstr "{0} ไม่ใช่ประเภทเอกสารหลักที่ถูกต้องสำหรับ {1}"
#: frappe/permissions.py:816
msgid "{0} is not a valid parentfield for {1}"
-msgstr ""
+msgstr "{0} ไม่ใช่ฟิลด์หลักที่ถูกต้องสำหรับ {1}"
#: frappe/email/doctype/auto_email_report/auto_email_report.py:115
msgid "{0} is not a valid report format. Report format should one of the following {1}"
-msgstr ""
+msgstr "{0} ไม่ใช่รูปแบบรายงานที่ถูกต้อง รูปแบบรายงานควรเป็นหนึ่งในสิ่งต่อไปนี้ {1}"
#: frappe/core/doctype/file/file.py:524
msgid "{0} is not a zip file"
-msgstr ""
+msgstr "{0} ไม่ใช่ไฟล์ zip"
#: frappe/public/js/frappe/views/reports/report_view.js:1442
msgid "{0} is not equal to {1}"
-msgstr ""
+msgstr "{0} ไม่เท่ากับ {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1489
msgid "{0} is not like {1}"
-msgstr ""
+msgstr "{0} ไม่คล้ายกับ {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1483
msgid "{0} is not one of {1}"
-msgstr ""
+msgstr "{0} ไม่ใช่หนึ่งใน {1}"
#: frappe/public/js/frappe/views/reports/report_view.js:1493
msgid "{0} is not set"
-msgstr ""
+msgstr "{0} ไม่ได้ตั้งค่า"
#: frappe/printing/doctype/print_format/print_format.py:164
msgid "{0} is now default print format for {1} doctype"
-msgstr ""
+msgstr "{0} เป็นรูปแบบการพิมพ์เริ่มต้นสำหรับประเภทเอกสาร {1} แล้ว"
#: frappe/public/js/frappe/views/reports/report_view.js:1476
msgid "{0} is one of {1}"
-msgstr ""
+msgstr "{0} เป็นหนึ่งใน {1}"
#: frappe/email/doctype/email_account/email_account.py:304
#: frappe/model/naming.py:218
#: frappe/printing/doctype/print_format/print_format.py:92
#: frappe/utils/csvutils.py:156
msgid "{0} is required"
-msgstr ""
+msgstr "{0} เป็นสิ่งจำเป็น"
#: frappe/public/js/frappe/views/reports/report_view.js:1492
msgid "{0} is set"
-msgstr ""
+msgstr "{0} ถูกตั้งค่า"
#: frappe/public/js/frappe/views/reports/report_view.js:1471
msgid "{0} is within {1}"
-msgstr ""
+msgstr "{0} อยู่ภายใน {1}"
#: frappe/public/js/frappe/list/list_view.js:1694
msgid "{0} items selected"
-msgstr ""
+msgstr "{0} รายการที่เลือก"
#: frappe/core/doctype/user/user.py:1380
msgid "{0} just impersonated as you. They gave this reason: {1}"
-msgstr ""
+msgstr "{0} เพิ่งปลอมตัวเป็นคุณ พวกเขาให้เหตุผลนี้: {1}"
#: frappe/public/js/frappe/form/footer/form_timeline.js:152
#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106
msgid "{0} last edited this"
-msgstr ""
+msgstr "{0} แก้ไขสิ่งนี้ล่าสุด"
#: frappe/core/doctype/activity_log/feed.py:13
msgid "{0} logged in"
-msgstr ""
+msgstr "{0} เข้าสู่ระบบแล้ว"
#: frappe/core/doctype/activity_log/feed.py:19
msgid "{0} logged out: {1}"
-msgstr ""
+msgstr "{0} ออกจากระบบ: {1}"
#: frappe/public/js/frappe/utils/pretty_date.js:27
msgid "{0} m"
-msgstr ""
+msgstr "{0} นาที"
#: frappe/desk/notifications.py:408
msgid "{0} mentioned you in a comment in {1} {2}"
-msgstr ""
+msgstr "{0} กล่าวถึงคุณในความคิดเห็นใน {1} {2}"
#: frappe/public/js/frappe/utils/pretty_date.js:50
msgid "{0} minutes ago"
-msgstr ""
+msgstr "{0} นาทีที่ผ่านมา"
#: frappe/public/js/frappe/utils/pretty_date.js:68
msgid "{0} months ago"
-msgstr ""
+msgstr "{0} เดือนที่ผ่านมา"
#: frappe/model/document.py:1791
msgid "{0} must be after {1}"
-msgstr ""
+msgstr "{0} ต้องอยู่หลังจาก {1}"
#: frappe/model/document.py:1550
msgid "{0} must be beginning with '{1}'"
-msgstr ""
+msgstr "{0} ต้องเริ่มต้นด้วย '{1}'"
#: frappe/model/document.py:1552
msgid "{0} must be equal to '{1}'"
-msgstr ""
+msgstr "{0} ต้องเท่ากับ '{1}'"
#: frappe/model/document.py:1548
msgid "{0} must be none of {1}"
-msgstr ""
+msgstr "{0} ต้องไม่เป็นหนึ่งใน {1}"
#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
-msgstr ""
+msgstr "{0} ต้องเป็นหนึ่งใน {1}"
#: frappe/model/base_document.py:876
msgid "{0} must be set first"
-msgstr ""
+msgstr "{0} ต้องตั้งค่าก่อน"
#: frappe/model/base_document.py:729
msgid "{0} must be unique"
-msgstr ""
+msgstr "{0} ต้องไม่ซ้ำกัน"
#: frappe/model/document.py:1554
msgid "{0} must be {1} {2}"
-msgstr ""
+msgstr "{0} ต้องเป็น {1} {2}"
#: frappe/core/doctype/language/language.py:79
msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore."
-msgstr ""
+msgstr "{0} ต้องเริ่มต้นและสิ้นสุดด้วยตัวอักษร และสามารถมีได้เฉพาะตัวอักษร, ขีดกลาง หรือขีดล่างเท่านั้น"
#: frappe/workflow/doctype/workflow/workflow.py:90
msgid "{0} not a valid State"
-msgstr ""
+msgstr "{0} ไม่ใช่สถานะที่ถูกต้อง"
#: frappe/model/rename_doc.py:394
msgid "{0} not allowed to be renamed"
-msgstr ""
+msgstr "{0} ไม่อนุญาตให้เปลี่ยนชื่อ"
#: frappe/desk/doctype/desktop_icon/desktop_icon.py:365
msgid "{0} not found"
-msgstr ""
+msgstr "ไม่พบ {0}"
#: frappe/core/doctype/report/report.py:427
#: frappe/public/js/frappe/list/list_view.js:1068
msgid "{0} of {1}"
-msgstr ""
+msgstr "{0} ของ {1}"
#: frappe/public/js/frappe/list/list_view.js:1070
msgid "{0} of {1} ({2} rows with children)"
-msgstr ""
+msgstr "{0} ของ {1} ({2} แถวที่มีลูก)"
#: frappe/email/doctype/newsletter/newsletter.js:205
msgid "{0} of {1} sent"
-msgstr ""
+msgstr "{0} ของ {1} ถูกส่งแล้ว"
#: frappe/utils/data.py:1555
msgctxt "Money in words"
msgid "{0} only."
-msgstr ""
+msgstr "เฉพาะ {0} เท่านั้น"
#: frappe/utils/data.py:1730
msgid "{0} or {1}"
-msgstr ""
+msgstr "{0} หรือ {1}"
#: frappe/core/doctype/user_permission/user_permission_list.js:177
msgid "{0} record deleted"
-msgstr ""
+msgstr "ระเบียน {0} ถูกลบ"
#: frappe/public/js/frappe/logtypes.js:22
msgid "{0} records are not automatically deleted."
-msgstr ""
+msgstr "ระเบียน {0} จะไม่ถูกลบโดยอัตโนมัติ"
#: frappe/public/js/frappe/logtypes.js:29
msgid "{0} records are retained for {1} days."
-msgstr ""
+msgstr "ระเบียน {0} ถูกเก็บไว้เป็นเวลา {1} วัน"
#: frappe/core/doctype/user_permission/user_permission_list.js:179
msgid "{0} records deleted"
-msgstr ""
+msgstr "ระเบียน {0} ถูกลบ"
#: frappe/public/js/frappe/data_import/data_exporter.js:229
msgid "{0} records will be exported"
-msgstr ""
+msgstr "ระเบียน {0} จะถูกส่งออก"
#: frappe/public/js/frappe/form/footer/form_timeline.js:420
msgctxt "Form timeline"
msgid "{0} removed attachment {1}"
-msgstr ""
+msgstr "{0} ลบไฟล์แนบ {1}"
#: frappe/desk/doctype/todo/todo.py:58
msgid "{0} removed their assignment."
-msgstr ""
+msgstr "{0} ลบการมอบหมายของพวกเขา"
#: frappe/public/js/frappe/roles_editor.js:62
msgid "{0} role does not have permission on any doctype"
-msgstr ""
+msgstr "บทบาท {0} ไม่มีสิทธิ์ในประเภทเอกสารใด ๆ"
#: frappe/model/document.py:1784
msgid "{0} row #{1}: "
@@ -31094,99 +31094,99 @@ msgstr ""
#: frappe/desk/query_report.py:612
msgid "{0} saved successfully"
-msgstr ""
+msgstr "{0} บันทึกสำเร็จ"
#: frappe/desk/doctype/todo/todo.py:44
msgid "{0} self assigned this task: {1}"
-msgstr ""
+msgstr "{0} มอบหมายงานนี้ให้ตัวเอง: {1}"
#: frappe/share.py:233
msgid "{0} shared a document {1} {2} with you"
-msgstr ""
+msgstr "{0} แชร์เอกสาร {1} {2} กับคุณ"
#: frappe/core/doctype/docshare/docshare.py:77
msgid "{0} shared this document with everyone"
-msgstr ""
+msgstr "{0} แชร์เอกสารนี้กับทุกคน"
#: frappe/core/doctype/docshare/docshare.py:80
msgid "{0} shared this document with {1}"
-msgstr ""
+msgstr "{0} แชร์เอกสารนี้กับ {1}"
#: frappe/core/doctype/doctype/doctype.py:316
msgid "{0} should be indexed because it's referred in dashboard connections"
-msgstr ""
+msgstr "{0} ควรถูกจัดทำดัชนีเพราะถูกอ้างอิงในการเชื่อมต่อแดชบอร์ด"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141
msgid "{0} should not be same as {1}"
-msgstr ""
+msgstr "{0} ไม่ควรเหมือนกับ {1}"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:51
msgid "{0} submitted this document"
-msgstr ""
+msgstr "{0} ส่งเอกสารนี้"
#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:42
msgctxt "Form timeline"
msgid "{0} submitted this document {1}"
-msgstr ""
+msgstr "{0} ส่งเอกสารนี้ {1}"
#: frappe/email/doctype/email_group/email_group.py:62
#: frappe/email/doctype/email_group/email_group.py:133
msgid "{0} subscribers added"
-msgstr ""
+msgstr "เพิ่มผู้ติดตาม {0}"
#: frappe/email/queue.py:68
msgid "{0} to stop receiving emails of this type"
-msgstr ""
+msgstr "{0} เพื่อหยุดรับอีเมลประเภทนี้"
#: frappe/public/js/frappe/form/controls/date_range.js:48
#: frappe/public/js/frappe/form/controls/date_range.js:64
#: frappe/public/js/frappe/form/formatters.js:234
msgid "{0} to {1}"
-msgstr ""
+msgstr "{0} ถึง {1}"
#: frappe/core/doctype/docshare/docshare.py:89
msgid "{0} un-shared this document with {1}"
-msgstr ""
+msgstr "{0} ยกเลิกการแชร์เอกสารนี้กับ {1}"
#: frappe/custom/doctype/customize_form/customize_form.py:253
msgid "{0} updated"
-msgstr ""
+msgstr "{0} อัปเดตแล้ว"
#: frappe/public/js/frappe/form/controls/multiselect_list.js:198
msgid "{0} values selected"
-msgstr ""
+msgstr "เลือกค่า {0} แล้ว"
#: frappe/public/js/frappe/form/footer/form_timeline.js:184
msgid "{0} viewed this"
-msgstr ""
+msgstr "{0} ดูสิ่งนี้"
#: frappe/public/js/frappe/utils/pretty_date.js:35
msgid "{0} w"
-msgstr ""
+msgstr "{0} สัปดาห์"
#: frappe/public/js/frappe/utils/pretty_date.js:64
msgid "{0} weeks ago"
-msgstr ""
+msgstr "{0} สัปดาห์ที่ผ่านมา"
#: frappe/public/js/frappe/utils/pretty_date.js:39
msgid "{0} y"
-msgstr ""
+msgstr "{0} ปี"
#: frappe/public/js/frappe/utils/pretty_date.js:72
msgid "{0} years ago"
-msgstr ""
+msgstr "{0} ปีที่ผ่านมา"
#: frappe/public/js/frappe/form/link_selector.js:219
msgid "{0} {1} added"
-msgstr ""
+msgstr "เพิ่ม {0} {1}"
#: frappe/public/js/frappe/utils/dashboard_utils.js:270
msgid "{0} {1} added to Dashboard {2}"
-msgstr ""
+msgstr "เพิ่ม {0} {1} ในแดชบอร์ด {2}"
#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110
msgid "{0} {1} already exists"
-msgstr ""
+msgstr "{0} {1} มีอยู่แล้ว"
#: frappe/model/base_document.py:987
msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\""
@@ -31194,123 +31194,123 @@ msgstr ""
#: frappe/utils/nestedset.py:340
msgid "{0} {1} cannot be a leaf node as it has children"
-msgstr ""
+msgstr "{0} {1} ไม่สามารถเป็นโหนดใบได้เนื่องจากมีลูก"
#: frappe/model/rename_doc.py:376
msgid "{0} {1} does not exist, select a new target to merge"
-msgstr ""
+msgstr "{0} {1} ไม่มีอยู่ โปรดเลือกเป้าหมายใหม่เพื่อรวม"
#: frappe/public/js/frappe/form/form.js:951
msgid "{0} {1} is linked with the following submitted documents: {2}"
-msgstr ""
+msgstr "{0} {1} เชื่อมโยงกับเอกสารที่ส่งต่อไปนี้: {2}"
#: frappe/model/document.py:256 frappe/permissions.py:567
msgid "{0} {1} not found"
-msgstr ""
+msgstr "ไม่พบ {0} {1}"
#: frappe/model/delete_doc.py:247
msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first."
-msgstr ""
+msgstr "{0} {1}: ไม่สามารถลบระเบียนที่ส่งได้ คุณต้อง {2} ยกเลิก {3} ก่อน"
#: frappe/model/base_document.py:1115
msgid "{0}, Row {1}"
-msgstr ""
+msgstr "{0}, แถว {1}"
#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192
msgid "{0}/{1} complete | Please leave this tab open until completion."
-msgstr ""
+msgstr "{0}/{1} เสร็จสิ้น | โปรดเปิดแท็บนี้ไว้จนกว่าจะเสร็จสิ้น"
#: frappe/model/base_document.py:1120
msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}"
-msgstr ""
+msgstr "{0}: '{1}' ({3}) จะถูกตัดออก เนื่องจากจำนวนตัวอักษรสูงสุดที่อนุญาตคือ {2}"
#: frappe/core/doctype/doctype/doctype.py:1800
msgid "{0}: Cannot set Amend without Cancel"
-msgstr ""
+msgstr "{0}: ไม่สามารถตั้งค่าแก้ไขได้โดยไม่ยกเลิก"
#: frappe/core/doctype/doctype/doctype.py:1818
msgid "{0}: Cannot set Assign Amend if not Submittable"
-msgstr ""
+msgstr "{0}: ไม่สามารถตั้งค่ามอบหมายการแก้ไขได้หากไม่สามารถส่งได้"
#: frappe/core/doctype/doctype/doctype.py:1816
msgid "{0}: Cannot set Assign Submit if not Submittable"
-msgstr ""
+msgstr "{0}: ไม่สามารถตั้งค่ามอบหมายการส่งได้หากไม่สามารถส่งได้"
#: frappe/core/doctype/doctype/doctype.py:1795
msgid "{0}: Cannot set Cancel without Submit"
-msgstr ""
+msgstr "{0}: ไม่สามารถตั้งค่ายกเลิกได้โดยไม่ส่ง"
#: frappe/core/doctype/doctype/doctype.py:1802
msgid "{0}: Cannot set Import without Create"
-msgstr ""
+msgstr "{0}: ไม่สามารถตั้งค่านำเข้าได้โดยไม่สร้าง"
#: frappe/core/doctype/doctype/doctype.py:1798
msgid "{0}: Cannot set Submit, Cancel, Amend without Write"
-msgstr ""
+msgstr "{0}: ไม่สามารถตั้งค่าส่ง ยกเลิก แก้ไขได้โดยไม่มีการเขียน"
#: frappe/core/doctype/doctype/doctype.py:1822
msgid "{0}: Cannot set import as {1} is not importable"
-msgstr ""
+msgstr "{0}: ไม่สามารถตั้งค่านำเข้าได้เนื่องจาก {1} ไม่สามารถนำเข้าได้"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405
msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings"
-msgstr ""
+msgstr "{0}: ล้มเหลวในการแนบเอกสารที่เกิดซ้ำใหม่ เพื่อเปิดใช้งานการแนบเอกสารในอีเมลแจ้งเตือนการทำซ้ำอัตโนมัติ โปรดเปิดใช้งาน {1} ในการตั้งค่าการพิมพ์"
#: frappe/core/doctype/doctype/doctype.py:1426
msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values"
-msgstr ""
+msgstr "{0}: ฟิลด์ '{1}' ไม่สามารถตั้งค่าเป็นค่าที่ไม่ซ้ำได้เนื่องจากมีค่าที่ซ้ำกัน"
#: frappe/core/doctype/doctype/doctype.py:1334
msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default"
-msgstr ""
+msgstr "{0}: ฟิลด์ {1} ในแถว {2} ไม่สามารถซ่อนและบังคับได้โดยไม่มีค่าเริ่มต้น"
#: frappe/core/doctype/doctype/doctype.py:1293
msgid "{0}: Field {1} of type {2} cannot be mandatory"
-msgstr ""
+msgstr "{0}: ฟิลด์ {1} ประเภท {2} ไม่สามารถบังคับได้"
#: frappe/core/doctype/doctype/doctype.py:1281
msgid "{0}: Fieldname {1} appears multiple times in rows {2}"
-msgstr ""
+msgstr "{0}: ชื่อฟิลด์ {1} ปรากฏหลายครั้งในแถว {2}"
#: frappe/core/doctype/doctype/doctype.py:1413
msgid "{0}: Fieldtype {1} for {2} cannot be unique"
-msgstr ""
+msgstr "{0}: ประเภทฟิลด์ {1} สำหรับ {2} ไม่สามารถเป็นค่าที่ไม่ซ้ำได้"
#: frappe/core/doctype/doctype/doctype.py:1755
msgid "{0}: No basic permissions set"
-msgstr ""
+msgstr "{0}: ไม่มีการตั้งค่าสิทธิ์พื้นฐาน"
#: frappe/core/doctype/doctype/doctype.py:1769
msgid "{0}: Only one rule allowed with the same Role, Level and {1}"
-msgstr ""
+msgstr "{0}: อนุญาตให้มีกฎเพียงข้อเดียวที่มีบทบาท ระดับ และ {1} เดียวกัน"
#: frappe/core/doctype/doctype/doctype.py:1315
msgid "{0}: Options must be a valid DocType for field {1} in row {2}"
-msgstr ""
+msgstr "{0}: ตัวเลือกต้องเป็นประเภทเอกสารที่ถูกต้องสำหรับฟิลด์ {1} ในแถว {2}"
#: frappe/core/doctype/doctype/doctype.py:1304
msgid "{0}: Options required for Link or Table type field {1} in row {2}"
-msgstr ""
+msgstr "{0}: ต้องการตัวเลือกสำหรับฟิลด์ประเภทลิงก์หรือตาราง {1} ในแถว {2}"
#: frappe/core/doctype/doctype/doctype.py:1322
msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}"
-msgstr ""
+msgstr "{0}: ตัวเลือก {1} ต้องเหมือนกับชื่อประเภทเอกสาร {2} สำหรับฟิลด์ {3}"
#: frappe/public/js/frappe/form/workflow.js:45
msgid "{0}: Other permission rules may also apply"
-msgstr ""
+msgstr "{0}: กฎสิทธิ์อื่น ๆ อาจมีผลบังคับใช้ด้วย"
#: frappe/core/doctype/doctype/doctype.py:1784
msgid "{0}: Permission at level 0 must be set before higher levels are set"
-msgstr ""
+msgstr "{0}: ต้องตั้งค่าสิทธิ์ที่ระดับ 0 ก่อนที่จะตั้งค่าระดับที่สูงกว่า"
#: frappe/public/js/frappe/form/controls/data.js:51
msgid "{0}: You can increase the limit for the field if required via {1}"
-msgstr ""
+msgstr "{0}: คุณสามารถเพิ่มขีดจำกัดสำหรับฟิลด์ได้หากจำเป็นผ่าน {1}"
#: frappe/core/doctype/doctype/doctype.py:1268
msgid "{0}: fieldname cannot be set to reserved keyword {1}"
-msgstr ""
+msgstr "{0}: ชื่อฟิลด์ไม่สามารถตั้งค่าเป็นคำสำรอง {1} ได้"
#: frappe/contacts/doctype/address/address.js:35
#: frappe/contacts/doctype/contact/contact.js:88
@@ -31319,51 +31319,51 @@ msgstr ""
#: frappe/workflow/doctype/workflow_action/workflow_action.py:172
msgid "{0}: {1} is set to state {2}"
-msgstr ""
+msgstr "{0}: {1} ถูกตั้งค่าเป็นสถานะ {2}"
#: frappe/public/js/frappe/views/reports/query_report.js:1281
msgid "{0}: {1} vs {2}"
-msgstr ""
+msgstr "{0}: {1} เทียบกับ {2}"
#: frappe/core/doctype/doctype/doctype.py:1434
msgid "{0}:Fieldtype {1} for {2} cannot be indexed"
-msgstr ""
+msgstr "{0}: ประเภทฟิลด์ {1} สำหรับ {2} ไม่สามารถจัดทำดัชนีได้"
#: frappe/public/js/frappe/form/quick_entry.js:195
msgid "{1} saved"
-msgstr ""
+msgstr "{1} ถูกบันทึกแล้ว"
#: frappe/public/js/frappe/utils/datatable.js:12
msgid "{count} cell copied"
-msgstr ""
+msgstr "คัดลอกเซลล์ {count} แล้ว"
#: frappe/public/js/frappe/utils/datatable.js:13
msgid "{count} cells copied"
-msgstr ""
+msgstr "คัดลอกเซลล์ {count} แล้ว"
#: frappe/public/js/frappe/utils/datatable.js:16
msgid "{count} row selected"
-msgstr ""
+msgstr "เลือกแถว {count} แล้ว"
#: frappe/public/js/frappe/utils/datatable.js:17
msgid "{count} rows selected"
-msgstr ""
+msgstr "เลือกแถว {count} แล้ว"
#: frappe/core/doctype/doctype/doctype.py:1488
msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}."
-msgstr ""
+msgstr "{{{0}}} ไม่ใช่รูปแบบชื่อฟิลด์ที่ถูกต้อง ควรเป็น {{field_name}}"
#: frappe/public/js/frappe/form/form.js:521
msgid "{} Complete"
-msgstr ""
+msgstr "{} เสร็จสมบูรณ์"
#: frappe/utils/data.py:2488
msgid "{} Invalid python code on line {}"
-msgstr ""
+msgstr "{} โค้ด Python ไม่ถูกต้องในบรรทัด {}"
#: frappe/utils/data.py:2497
msgid "{} Possibly invalid python code.
{}"
-msgstr ""
+msgstr "{} โค้ด Python อาจไม่ถูกต้อง
{}"
#. Count format of shortcut in the Website Workspace
#: frappe/website/workspace/website/website.json
@@ -31372,35 +31372,35 @@ msgstr ""
#: frappe/core/doctype/log_settings/log_settings.py:54
msgid "{} does not support automated log clearing."
-msgstr ""
+msgstr "{} ไม่รองรับการล้างบันทึกอัตโนมัติ"
#: frappe/core/doctype/audit_trail/audit_trail.py:41
msgid "{} field cannot be empty."
-msgstr ""
+msgstr "ฟิลด์ {} ไม่สามารถว่างเปล่าได้"
#: frappe/email/doctype/email_account/email_account.py:223
#: frappe/email/doctype/email_account/email_account.py:231
msgid "{} has been disabled. It can only be enabled if {} is checked."
-msgstr ""
+msgstr "{} ถูกปิดใช้งาน สามารถเปิดใช้งานได้เฉพาะเมื่อเลือก {}"
#: frappe/utils/data.py:135
msgid "{} is not a valid date string."
-msgstr ""
+msgstr "{} ไม่ใช่สตริงวันที่ที่ถูกต้อง"
#: frappe/commands/utils.py:562
msgid "{} not found in PATH! This is required to access the console."
-msgstr ""
+msgstr "ไม่พบ {} ใน PATH! จำเป็นต้องใช้เพื่อเข้าถึงคอนโซล"
#: frappe/database/db_manager.py:99
msgid "{} not found in PATH! This is required to restore the database."
-msgstr ""
+msgstr "ไม่พบ {} ใน PATH! จำเป็นต้องใช้เพื่อกู้คืนฐานข้อมูล"
#: frappe/utils/backups.py:466
msgid "{} not found in PATH! This is required to take a backup."
-msgstr ""
+msgstr "ไม่พบ {} ใน PATH! จำเป็นต้องใช้เพื่อสำรองข้อมูล"
#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:5
#: frappe/public/js/frappe/file_uploader/WebLink.vue:4
msgid "← Back to upload files"
-msgstr ""
+msgstr "← กลับไปที่อัปโหลดไฟล์"
From 39c554d100c76e701822cc38c12591abdb0944d3 Mon Sep 17 00:00:00 2001
From: sokumon
Date: Fri, 27 Jun 2025 02:34:29 +0530
Subject: [PATCH 135/196] fix: more cleanup
---
frappe/automation/workspace/tools/tools.json | 21 +-------------------
frappe/hooks.py | 2 --
2 files changed, 1 insertion(+), 22 deletions(-)
diff --git a/frappe/automation/workspace/tools/tools.json b/frappe/automation/workspace/tools/tools.json
index a4f3d35404..e9aff3d67a 100644
--- a/frappe/automation/workspace/tools/tools.json
+++ b/frappe/automation/workspace/tools/tools.json
@@ -1,6 +1,6 @@
{
"charts": [],
- "content": "[{\"id\":\"sR-UFcO7II\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Import Data\",\"col\":3}},{\"id\":\"IkcVmgWb3z\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"ToDo\",\"col\":3}},{\"id\":\"6wir-jZFRE\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"File\",\"col\":3}},{\"id\":\"45a1jzQkTm\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Assignment Rule\",\"col\":3}},{\"id\":\"EgtURZsoiF\",\"type\":\"spacer\",\"data\":{\"col\":12}},{\"id\":\"0yceBIfhHM\",\"type\":\"card\",\"data\":{\"card_name\":\"Data\",\"col\":4}},{\"id\":\"42WbBA9rpj\",\"type\":\"card\",\"data\":{\"card_name\":\"Tools\",\"col\":4}},{\"id\":\"wE9n7TIrAc\",\"type\":\"card\",\"data\":{\"card_name\":\"Alerts and Notifications\",\"col\":4}},{\"id\":\"7_U7_xCOos\",\"type\":\"card\",\"data\":{\"card_name\":\"Email\",\"col\":4}},{\"id\":\"3imoh2oqsJ\",\"type\":\"card\",\"data\":{\"card_name\":\"Printing\",\"col\":4}},{\"id\":\"SlYKJZj5r3\",\"type\":\"card\",\"data\":{\"card_name\":\"Automation\",\"col\":4}},{\"id\":\"O7jrc2YQTN\",\"type\":\"card\",\"data\":{\"card_name\":\"Newsletter\",\"col\":4}}]",
+ "content": "[{\"id\":\"sR-UFcO7II\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Import Data\",\"col\":3}},{\"id\":\"IkcVmgWb3z\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"ToDo\",\"col\":3}},{\"id\":\"6wir-jZFRE\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"File\",\"col\":3}},{\"id\":\"45a1jzQkTm\",\"type\":\"shortcut\",\"data\":{\"shortcut_name\":\"Assignment Rule\",\"col\":3}},{\"id\":\"EgtURZsoiF\",\"type\":\"spacer\",\"data\":{\"col\":12}},{\"id\":\"0yceBIfhHM\",\"type\":\"card\",\"data\":{\"card_name\":\"Data\",\"col\":4}},{\"id\":\"42WbBA9rpj\",\"type\":\"card\",\"data\":{\"card_name\":\"Tools\",\"col\":4}},{\"id\":\"wE9n7TIrAc\",\"type\":\"card\",\"data\":{\"card_name\":\"Alerts and Notifications\",\"col\":4}},{\"id\":\"7_U7_xCOos\",\"type\":\"card\",\"data\":{\"card_name\":\"Email\",\"col\":4}},{\"id\":\"3imoh2oqsJ\",\"type\":\"card\",\"data\":{\"card_name\":\"Printing\",\"col\":4}},{\"id\":\"SlYKJZj5r3\",\"type\":\"card\",\"data\":{\"card_name\":\"Automation\",\"col\":4}}]",
"creation": "2020-03-02 14:53:24.980279",
"custom_blocks": [],
"docstatus": 0,
@@ -144,25 +144,6 @@
"onboard": 0,
"type": "Link"
},
- {
- "hidden": 0,
- "is_query_report": 0,
- "label": "Newsletter",
- "link_count": 2,
- "link_type": "DocType",
- "onboard": 0,
- "type": "Card Break"
- },
- {
- "hidden": 0,
- "is_query_report": 0,
- "label": "Newsletter",
- "link_count": 0,
- "link_to": "Newsletter",
- "link_type": "DocType",
- "onboard": 0,
- "type": "Link"
- },
{
"hidden": 0,
"is_query_report": 0,
diff --git a/frappe/hooks.py b/frappe/hooks.py
index 50b5f8f42f..0340e891d3 100644
--- a/frappe/hooks.py
+++ b/frappe/hooks.py
@@ -56,7 +56,6 @@ email_css = ["email.bundle.css"]
website_route_rules = [
{"from_route": "/blog/", "to_route": "Blog Post"},
{"from_route": "/kb/", "to_route": "Help Article"},
- {"from_route": "/newsletters", "to_route": "Newsletter"},
{"from_route": "/profile", "to_route": "me"},
{"from_route": "/app/", "to_route": "app"},
]
@@ -360,7 +359,6 @@ global_search_doctypes = {
{"doctype": "Dashboard"},
{"doctype": "Country"},
{"doctype": "Currency"},
- {"doctype": "Newsletter"},
{"doctype": "Letter Head"},
{"doctype": "Workflow"},
{"doctype": "Web Page"},
From 9e437cd0715b29daff891f4acb56b01a05c575d2 Mon Sep 17 00:00:00 2001
From: Ankush Menat
Date: Fri, 27 Jun 2025 10:13:30 +0530
Subject: [PATCH 136/196] fix: Git branch is not mandatory (#33131)
You can have an app without git repo :shrug:
---
.../installed_application/installed_application.json | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/frappe/core/doctype/installed_application/installed_application.json b/frappe/core/doctype/installed_application/installed_application.json
index fa0cda8cc4..4175c3d7eb 100644
--- a/frappe/core/doctype/installed_application/installed_application.json
+++ b/frappe/core/doctype/installed_application/installed_application.json
@@ -17,8 +17,7 @@
"fieldtype": "Data",
"in_list_view": 1,
"label": "Git Branch",
- "read_only": 1,
- "reqd": 1
+ "read_only": 1
},
{
"columns": 2,
@@ -35,8 +34,7 @@
"fieldtype": "Data",
"in_list_view": 1,
"label": "Application Version",
- "read_only": 1,
- "reqd": 1
+ "read_only": 1
},
{
"columns": 2,
@@ -58,7 +56,7 @@
"grid_page_length": 50,
"istable": 1,
"links": [],
- "modified": "2025-05-22 12:26:49.523690",
+ "modified": "2025-05-27 12:26:49.523690",
"modified_by": "Administrator",
"module": "Core",
"name": "Installed Application",
From b63b00da348db8cafd8167ecda0bd734c6cab613 Mon Sep 17 00:00:00 2001
From: Ankush Menat
Date: Fri, 27 Jun 2025 11:21:28 +0530
Subject: [PATCH 137/196] fix: Commit before starting a patch (#33133)
Closes https://github.com/frappe/frappe/issues/33092
---
frappe/modules/patch_handler.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/frappe/modules/patch_handler.py b/frappe/modules/patch_handler.py
index 0ed2ad35b2..90d5a74cc9 100644
--- a/frappe/modules/patch_handler.py
+++ b/frappe/modules/patch_handler.py
@@ -176,7 +176,7 @@ def execute_patch(patchmodule: str, method=None, methodargs=None):
)
start_time = time.monotonic()
- frappe.db.begin()
+ frappe.db.commit()
frappe.db.auto_commit_on_many_writes = 0
try:
if patchmodule:
From 949820c3515087c68ca3da13bbf5da980ba08c12 Mon Sep 17 00:00:00 2001
From: sokumon
Date: Fri, 27 Jun 2025 11:41:33 +0530
Subject: [PATCH 138/196] fix: tools workspace
---
frappe/automation/workspace/tools/tools.json | 100 +++++++++----------
1 file changed, 50 insertions(+), 50 deletions(-)
diff --git a/frappe/automation/workspace/tools/tools.json b/frappe/automation/workspace/tools/tools.json
index e9aff3d67a..503740b5ce 100644
--- a/frappe/automation/workspace/tools/tools.json
+++ b/frappe/automation/workspace/tools/tools.json
@@ -105,55 +105,6 @@
"onboard": 0,
"type": "Link"
},
- {
- "hidden": 0,
- "is_query_report": 0,
- "label": "Email",
- "link_count": 3,
- "link_type": "DocType",
- "onboard": 0,
- "type": "Card Break"
- },
- {
- "hidden": 0,
- "is_query_report": 0,
- "label": "Email Account",
- "link_count": 0,
- "link_to": "Email Account",
- "link_type": "DocType",
- "onboard": 0,
- "type": "Link"
- },
- {
- "hidden": 0,
- "is_query_report": 0,
- "label": "Email Domain",
- "link_count": 0,
- "link_to": "Email Domain",
- "link_type": "DocType",
- "onboard": 0,
- "type": "Link"
- },
- {
- "hidden": 0,
- "is_query_report": 0,
- "label": "Email Template",
- "link_count": 0,
- "link_to": "Email Template",
- "link_type": "DocType",
- "onboard": 0,
- "type": "Link"
- },
- {
- "hidden": 0,
- "is_query_report": 0,
- "label": "Email Group",
- "link_count": 0,
- "link_to": "Email Group",
- "link_type": "DocType",
- "onboard": 0,
- "type": "Link"
- },
{
"hidden": 0,
"is_query_report": 0,
@@ -301,9 +252,58 @@
"link_type": "DocType",
"onboard": 0,
"type": "Link"
+ },
+ {
+ "hidden": 0,
+ "is_query_report": 0,
+ "label": "Email",
+ "link_count": 4,
+ "link_type": "DocType",
+ "onboard": 0,
+ "type": "Card Break"
+ },
+ {
+ "hidden": 0,
+ "is_query_report": 0,
+ "label": "Email Account",
+ "link_count": 0,
+ "link_to": "Email Account",
+ "link_type": "DocType",
+ "onboard": 0,
+ "type": "Link"
+ },
+ {
+ "hidden": 0,
+ "is_query_report": 0,
+ "label": "Email Domain",
+ "link_count": 0,
+ "link_to": "Email Domain",
+ "link_type": "DocType",
+ "onboard": 0,
+ "type": "Link"
+ },
+ {
+ "hidden": 0,
+ "is_query_report": 0,
+ "label": "Email Template",
+ "link_count": 0,
+ "link_to": "Email Template",
+ "link_type": "DocType",
+ "onboard": 0,
+ "type": "Link"
+ },
+ {
+ "hidden": 0,
+ "is_query_report": 0,
+ "label": "Email Group",
+ "link_count": 0,
+ "link_to": "Email Group",
+ "link_type": "DocType",
+ "onboard": 0,
+ "type": "Link"
}
],
- "modified": "2024-09-03 21:54:05.403066",
+ "modified": "2025-06-27 11:39:44.392114",
"modified_by": "Administrator",
"module": "Automation",
"name": "Tools",
From 0613f4b11fcb3ceb17f8de766086bd28a92e461b Mon Sep 17 00:00:00 2001
From: Ankush Menat
Date: Fri, 27 Jun 2025 13:42:22 +0530
Subject: [PATCH 139/196] fix: Update session after request (#33136)
---
frappe/app.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/frappe/app.py b/frappe/app.py
index 1bad66a891..e3934314ba 100644
--- a/frappe/app.py
+++ b/frappe/app.py
@@ -403,7 +403,7 @@ def sync_database():
# update session
if session := getattr(frappe.local, "session_obj", None):
- session.update()
+ frappe.request.after_response.add(session.update)
# Always initialize sentry SDK if the DSN is sent
From 76276566bd8f1ba07b3bbafe4c5811e3f44d2f4d Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Fri, 27 Jun 2025 13:56:07 +0530
Subject: [PATCH 140/196] test: remove `in_test` exception in `only_for`
---
frappe/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/frappe/__init__.py b/frappe/__init__.py
index 4f8e8b6e88..ec0f0ab58b 100644
--- a/frappe/__init__.py
+++ b/frappe/__init__.py
@@ -744,7 +744,7 @@ def only_for(roles: list[str] | tuple[str] | str, message=False):
:param roles: Permitted role(s)
"""
- if in_test or local.session.user == "Administrator":
+ if local.session.user == "Administrator":
return
if isinstance(roles, str):
From a6e87dad27fa4c9b278db41b7bcfe1955805dcdc Mon Sep 17 00:00:00 2001
From: MochaMind
Date: Fri, 27 Jun 2025 14:30:38 +0530
Subject: [PATCH 141/196] chore: update POT file (#33139)
---
frappe/locale/main.pot | 718 ++++++++++++++++++-----------------------
1 file changed, 316 insertions(+), 402 deletions(-)
diff --git a/frappe/locale/main.pot b/frappe/locale/main.pot
index 869d395b0c..cd3744bb78 100644
--- a/frappe/locale/main.pot
+++ b/frappe/locale/main.pot
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Framework VERSION\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 09:34+0000\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 08:47+0000\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: developers@frappe.io\n"
"MIME-Version: 1.0\n"
@@ -88,7 +88,7 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -885,7 +885,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr ""
@@ -1524,6 +1524,14 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1564,7 +1572,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -2011,7 +2018,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2129,7 +2136,7 @@ msgstr ""
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr ""
@@ -2343,10 +2350,6 @@ msgstr ""
msgid "Are you sure you want to save this document?"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr ""
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2600,9 +2603,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr ""
@@ -2629,10 +2630,7 @@ msgid "Attachment Removed"
msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2650,11 +2648,6 @@ msgstr ""
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3081,7 +3074,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr ""
@@ -3810,9 +3803,7 @@ msgstr ""
msgid "Camera"
msgstr ""
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3898,10 +3889,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4195,7 +4182,7 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr ""
@@ -4365,10 +4352,6 @@ msgstr ""
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4392,10 +4375,6 @@ msgstr ""
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr ""
@@ -4442,6 +4421,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4531,10 +4514,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4876,7 +4855,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr ""
@@ -5199,17 +5178,12 @@ msgstr ""
msgid "Confirm Request"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr ""
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr ""
@@ -5340,8 +5314,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5349,7 +5321,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5374,10 +5345,8 @@ msgstr ""
msgid "Content Hash"
msgstr ""
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5483,6 +5452,10 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5538,7 +5511,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5669,11 +5642,6 @@ msgstr ""
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -6022,6 +5990,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6079,7 +6051,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr ""
@@ -6372,7 +6344,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6436,6 +6407,11 @@ msgstr ""
msgid "Day of Week"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6703,6 +6679,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -7015,6 +6992,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7769,7 +7747,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8387,7 +8365,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8481,11 +8458,9 @@ msgstr ""
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr ""
@@ -8558,18 +8533,11 @@ msgstr ""
msgid "Email Rule"
msgstr ""
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr ""
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8676,10 +8644,18 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9144,6 +9120,14 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9340,6 +9324,10 @@ msgstr ""
msgid "Expand All"
msgstr ""
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -9871,7 +9859,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9887,7 +9875,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -9939,6 +9927,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10104,6 +10096,14 @@ msgstr ""
msgid "Filter Values"
msgstr ""
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10347,10 +10347,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10768,10 +10764,8 @@ msgid "Friday"
msgstr ""
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr ""
@@ -10852,10 +10846,14 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr ""
@@ -11337,6 +11335,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr ""
@@ -11385,7 +11387,6 @@ msgstr ""
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11399,7 +11400,6 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11908,6 +11908,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr ""
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12673,11 +12678,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12829,11 +12834,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12983,7 +12988,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr ""
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr ""
@@ -12991,7 +12996,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13003,6 +13008,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13067,7 +13077,7 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13111,10 +13121,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13127,10 +13165,26 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13139,11 +13193,26 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13165,10 +13234,22 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr ""
@@ -13610,11 +13691,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14326,6 +14407,10 @@ msgstr ""
msgid "Limit"
msgstr ""
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14589,6 +14674,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15107,11 +15193,9 @@ msgstr ""
msgid "Mark as Unread"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15300,7 +15384,6 @@ msgstr ""
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15313,7 +15396,6 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15328,16 +15410,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr ""
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr ""
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15461,7 +15533,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15511,6 +15583,11 @@ msgstr ""
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15906,7 +15983,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr ""
@@ -16095,6 +16172,10 @@ msgstr ""
msgid "Negative Value"
msgstr ""
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr ""
@@ -16177,7 +16258,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr ""
@@ -16321,48 +16402,13 @@ msgstr ""
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr ""
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr ""
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16624,7 +16670,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16652,10 +16698,6 @@ msgstr ""
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr ""
@@ -16692,7 +16734,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr ""
@@ -16712,7 +16754,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16771,7 +16813,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16899,7 +16941,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16925,7 +16967,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16934,7 +16976,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -16962,7 +17004,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr ""
@@ -16995,7 +17036,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17429,6 +17470,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr ""
@@ -17602,7 +17647,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17774,7 +17819,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr ""
@@ -17873,6 +17918,10 @@ msgstr ""
msgid "Order"
msgstr ""
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18268,7 +18317,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18390,10 +18439,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr ""
@@ -18539,7 +18584,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr ""
@@ -18691,7 +18736,7 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -18964,10 +19009,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr ""
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr ""
@@ -19000,7 +19041,7 @@ msgstr ""
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19016,7 +19057,7 @@ msgstr ""
msgid "Please select a valid csv file with data"
msgstr ""
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr ""
@@ -19094,7 +19135,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19131,10 +19172,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr ""
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19228,6 +19265,10 @@ msgstr ""
msgid "Posts filed under {0}"
msgstr ""
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19287,7 +19328,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19316,8 +19357,6 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19705,7 +19744,7 @@ msgstr ""
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr ""
@@ -19800,14 +19839,7 @@ msgstr ""
msgid "Publish"
msgstr ""
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19815,7 +19847,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19990,7 +20021,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -20036,7 +20067,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr ""
@@ -20059,19 +20089,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20272,7 +20294,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21139,7 +21161,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr ""
@@ -21160,7 +21182,7 @@ msgstr ""
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr ""
@@ -21493,10 +21515,8 @@ msgstr ""
msgid "Revoked"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21707,7 +21727,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21721,7 +21740,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21839,7 +21857,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22028,11 +22046,11 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22124,32 +22142,17 @@ msgstr ""
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr ""
@@ -22183,17 +22186,6 @@ msgstr ""
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr ""
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr ""
@@ -22405,6 +22397,11 @@ msgstr ""
msgid "Searching ..."
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22794,9 +22791,7 @@ msgstr ""
msgid "Self approval is not allowed"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr ""
@@ -22827,11 +22822,6 @@ msgstr ""
msgid "Send Email Alert"
msgstr ""
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22889,38 +22879,16 @@ msgstr ""
msgid "Send System Notification"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr ""
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr ""
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22968,10 +22936,6 @@ msgstr ""
msgid "Send me a copy"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22987,19 +22951,15 @@ msgstr ""
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr ""
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr ""
@@ -23016,9 +22976,7 @@ msgid "Sender Field should have Email in options"
msgstr ""
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -23038,18 +22996,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23057,8 +23006,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr ""
@@ -23128,7 +23075,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23147,7 +23094,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23186,15 +23133,15 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr ""
@@ -23427,7 +23374,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24510,7 +24457,6 @@ msgstr ""
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24535,7 +24481,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24676,8 +24621,6 @@ msgstr ""
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24686,7 +24629,6 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25057,7 +24999,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25364,7 +25306,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25491,10 +25433,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr ""
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25564,10 +25502,6 @@ msgstr ""
msgid "Thank you for your feedback!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr ""
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25759,7 +25693,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25771,7 +25705,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25924,7 +25858,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr ""
@@ -25948,7 +25882,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr ""
@@ -26110,14 +26044,6 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26230,7 +26156,6 @@ msgstr ""
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26456,10 +26381,8 @@ msgid "Title of the page"
msgstr ""
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr ""
@@ -26742,7 +26665,7 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26770,16 +26693,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr ""
@@ -26788,11 +26703,6 @@ msgstr ""
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27191,23 +27101,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27257,7 +27161,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27273,6 +27177,10 @@ msgstr ""
msgid "Undo last action"
msgstr ""
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27305,7 +27213,7 @@ msgstr ""
msgid "Unknown Column: {0}"
msgstr ""
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27338,7 +27246,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27352,7 +27260,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr ""
@@ -27376,6 +27284,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr ""
@@ -27498,7 +27411,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr ""
@@ -28233,7 +28146,7 @@ msgstr ""
msgid "Value {0} missing for {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr ""
@@ -28658,7 +28571,6 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28666,9 +28578,7 @@ msgid "Website"
msgstr ""
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr ""
@@ -29104,7 +29014,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29327,11 +29237,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29354,7 +29264,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29382,7 +29292,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29477,7 +29387,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29554,11 +29464,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29566,7 +29480,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr ""
@@ -29574,11 +29488,11 @@ msgstr ""
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr ""
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr ""
@@ -29671,7 +29585,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29837,7 +29751,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29849,7 +29763,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr ""
@@ -29896,7 +29810,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -29953,7 +29867,7 @@ msgstr ""
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30068,7 +29982,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30120,7 +30034,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30154,7 +30068,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30194,7 +30108,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30384,7 +30298,7 @@ msgstr ""
msgid "restored {0} as {1}"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30719,7 +30633,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr ""
@@ -30825,6 +30739,10 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30845,10 +30763,6 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr ""
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -30919,6 +30833,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -30940,7 +30858,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -30948,11 +30866,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -30960,11 +30878,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31052,23 +30970,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -31080,7 +30998,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31109,16 +31027,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr ""
@@ -31155,11 +31069,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr ""
@@ -31271,7 +31185,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
@@ -31424,11 +31338,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31450,7 +31364,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr ""
From 1812cdb613dc20d2051c6e0023aaca1b0aca5fbd Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Fri, 27 Jun 2025 14:30:52 +0530
Subject: [PATCH 142/196] test: improve report permission test
---
frappe/core/doctype/report/test_report.py | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/frappe/core/doctype/report/test_report.py b/frappe/core/doctype/report/test_report.py
index 73f67b044d..ef606d00cf 100644
--- a/frappe/core/doctype/report/test_report.py
+++ b/frappe/core/doctype/report/test_report.py
@@ -175,12 +175,11 @@ class TestReport(IntegrationTestCase):
)
def test_report_permissions(self):
- frappe.set_user("test@example.com")
- frappe.db.delete("Has Role", {"parent": frappe.session.user, "role": "Test Has Role"})
- frappe.db.commit()
+ # create role "Test Has Role"
if not frappe.db.exists("Role", "Test Has Role"):
frappe.get_doc({"doctype": "Role", "role_name": "Test Has Role"}).insert(ignore_permissions=True)
+ # create report "Test Report"
if not frappe.db.exists("Report", "Test Report"):
report = frappe.get_doc(
{
@@ -195,8 +194,10 @@ class TestReport(IntegrationTestCase):
else:
report = frappe.get_doc("Report", "Test Report")
- self.assertNotEqual(report.is_permitted(), True)
- frappe.set_user("Administrator")
+ with self.set_user("test@example.com"):
+ # remove role "Test Has Role" from user if found
+ frappe.db.delete("Has Role", {"parent": frappe.session.user, "role": "Test Has Role"})
+ self.assertNotEqual(report.is_permitted(), True)
def test_report_custom_permissions(self):
frappe.set_user("test@example.com")
From e01b6ff4ec64bf64e34f3e956825c09eb814d521 Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Fri, 27 Jun 2025 14:35:34 +0530
Subject: [PATCH 143/196] test: improve report custom permission test
---
frappe/core/doctype/report/test_report.py | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/frappe/core/doctype/report/test_report.py b/frappe/core/doctype/report/test_report.py
index ef606d00cf..29b22b1799 100644
--- a/frappe/core/doctype/report/test_report.py
+++ b/frappe/core/doctype/report/test_report.py
@@ -200,9 +200,10 @@ class TestReport(IntegrationTestCase):
self.assertNotEqual(report.is_permitted(), True)
def test_report_custom_permissions(self):
- frappe.set_user("test@example.com")
+ # delete custom role if exists
frappe.db.delete("Custom Role", {"report": "Test Custom Role Report"})
- frappe.db.commit() # nosemgrep
+
+ # create report if not exists
if not frappe.db.exists("Report", "Test Custom Role Report"):
report = frappe.get_doc(
{
@@ -217,8 +218,11 @@ class TestReport(IntegrationTestCase):
else:
report = frappe.get_doc("Report", "Test Custom Role Report")
- self.assertEqual(report.is_permitted(), True)
+ # check report is permitted without custom role created
+ with self.set_user("test@example.com"):
+ self.assertEqual(report.is_permitted(), True)
+ # create custom role for report
frappe.get_doc(
{
"doctype": "Custom Role",
@@ -228,8 +232,9 @@ class TestReport(IntegrationTestCase):
}
).insert(ignore_permissions=True)
- self.assertNotEqual(report.is_permitted(), True)
- frappe.set_user("Administrator")
+ # check report is not permitted with custom role created
+ with self.set_user("test@example.com"):
+ self.assertNotEqual(report.is_permitted(), True)
# test for the `_format` method if report data doesn't have sort_by parameter
def test_format_method(self):
From 35581eb50bd41a2fdc66490cabe5a2660823a862 Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Fri, 27 Jun 2025 14:44:09 +0530
Subject: [PATCH 144/196] test: fix test for nested permission
---
frappe/tests/test_db_query.py | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/frappe/tests/test_db_query.py b/frappe/tests/test_db_query.py
index f04cdd5190..aaa6d79c6d 100644
--- a/frappe/tests/test_db_query.py
+++ b/frappe/tests/test_db_query.py
@@ -566,8 +566,8 @@ class TestDBQuery(IntegrationTestCase):
# to avoid if_owner filter
update("Nested DocType", "All", 0, "if_owner", 0)
- frappe.set_user("test2@example.com")
- data = DatabaseQuery("Nested DocType").execute()
+ with self.set_user("test2@example.com"):
+ data = DatabaseQuery("Nested DocType").execute()
# children of root folder (for which we added user permission) should be accessible
self.assertTrue({"name": "Level 2 A"} in data)
@@ -577,7 +577,6 @@ class TestDBQuery(IntegrationTestCase):
self.assertFalse({"name": "Level 1 B"} in data)
self.assertFalse({"name": "Level 2 B"} in data)
update("Nested DocType", "All", 0, "if_owner", 1)
- frappe.set_user("Administrator")
def test_filter_sanitizer(self):
self.assertRaises(
From 547bc6b7f56b52e2992b8a0e1d91ee068994847b Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Fri, 27 Jun 2025 14:47:03 +0530
Subject: [PATCH 145/196] test: fix `test_if_owner_permission_on_delete`
---
frappe/tests/test_permissions.py | 47 ++++++++++++++++----------------
1 file changed, 23 insertions(+), 24 deletions(-)
diff --git a/frappe/tests/test_permissions.py b/frappe/tests/test_permissions.py
index 7bbc17aaea..df802f8d07 100644
--- a/frappe/tests/test_permissions.py
+++ b/frappe/tests/test_permissions.py
@@ -594,36 +594,35 @@ class TestPermissions(IntegrationTestCase):
frappe.clear_cache(doctype="Blog Post")
- frappe.set_user("test2@example.com")
+ with self.set_user("test2@example.com"):
+ doc = frappe.get_doc(
+ {
+ "doctype": "Blog Post",
+ "blog_category": "-test-blog-category",
+ "blogger": "_Test Blogger 1",
+ "title": "_Test Blog Post Title New 1",
+ "content": "_Test Blog Post Content",
+ }
+ )
- doc = frappe.get_doc(
- {
- "doctype": "Blog Post",
- "blog_category": "-test-blog-category",
- "blogger": "_Test Blogger 1",
- "title": "_Test Blog Post Title New 1",
- "content": "_Test Blog Post Content",
- }
- )
+ doc.insert()
- doc.insert()
+ getdoc("Blog Post", doc.name)
+ doclist = [d.name for d in frappe.response.docs]
+ self.assertTrue(doc.name in doclist)
- getdoc("Blog Post", doc.name)
- doclist = [d.name for d in frappe.response.docs]
- self.assertTrue(doc.name in doclist)
+ with self.set_user("testperm@example.com"):
+ # Website Manager able to read
+ getdoc("Blog Post", doc.name)
+ doclist = [d.name for d in frappe.response.docs]
+ self.assertTrue(doc.name in doclist)
- frappe.set_user("testperm@example.com")
+ # Website Manager should not be able to delete
+ self.assertRaises(frappe.PermissionError, frappe.delete_doc, "Blog Post", doc.name)
- # Website Manager able to read
- getdoc("Blog Post", doc.name)
- doclist = [d.name for d in frappe.response.docs]
- self.assertTrue(doc.name in doclist)
+ with self.set_user("test2@example.com"):
+ frappe.delete_doc("Blog Post", "-test-blog-post-title-new-1")
- # Website Manager should not be able to delete
- self.assertRaises(frappe.PermissionError, frappe.delete_doc, "Blog Post", doc.name)
-
- frappe.set_user("test2@example.com")
- frappe.delete_doc("Blog Post", "-test-blog-post-title-new-1")
update("Blog Post", "Website Manager", 0, "delete", 1, 1)
def test_clear_user_permissions(self):
From 8b13971ab28912f3bd7232594e89448d2a277023 Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Fri, 27 Jun 2025 14:51:26 +0530
Subject: [PATCH 146/196] test: use contextmanager to set user
---
frappe/tests/test_query.py | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/frappe/tests/test_query.py b/frappe/tests/test_query.py
index 4656853a1e..c8e7f93a9c 100644
--- a/frappe/tests/test_query.py
+++ b/frappe/tests/test_query.py
@@ -868,8 +868,8 @@ class TestQuery(IntegrationTestCase):
test2user = frappe.get_doc("User", "test2@example.com")
test2user.add_roles("Blogger")
- frappe.set_user("test2@example.com")
- data = frappe.qb.get_query("Nested DocType", ignore_permissions=False).run(as_dict=1)
+ with self.set_user("test2@example.com"):
+ data = frappe.qb.get_query("Nested DocType", ignore_permissions=False).run(as_dict=1)
# Children of the permitted node should be accessible
self.assertTrue(any(d.name == "Level 2 A" for d in data))
@@ -879,7 +879,6 @@ class TestQuery(IntegrationTestCase):
self.assertFalse(any(d.name == "Level 2 B" for d in data))
update("Nested DocType", "All", 0, "if_owner", 1) # Reset to default
- frappe.set_user("Administrator")
def test_is_set_is_not_set(self):
"""Test is set and is not set filters"""
From d190e07cfa49cea3625a6b4b025b1c797f7e769b Mon Sep 17 00:00:00 2001
From: Sagar Vora <16315650+sagarvora@users.noreply.github.com>
Date: Sat, 28 Jun 2025 06:45:52 +0000
Subject: [PATCH 147/196] fix: restore earlier werkzeug request default
(#33145)
---
frappe/app.py | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/frappe/app.py b/frappe/app.py
index e3934314ba..81194d7606 100644
--- a/frappe/app.py
+++ b/frappe/app.py
@@ -66,6 +66,11 @@ import frappe.website.website_generator # web page doctypes
# end: module pre-loading
+# better werkzeug default
+# this is necessary because frappe desk sends most requests as form data
+# and some of them can exceed werkzeug's default limit of 500kb
+Request.max_form_memory_size = None
+
def after_response_wrapper(app):
"""Wrap a WSGI application to call after_response hooks after we have responded.
From 4d8fdb93f1b5865a29666d5b1a6df8cf1e0fbd31 Mon Sep 17 00:00:00 2001
From: Ejaaz Khan
Date: Sat, 28 Jun 2025 14:32:42 +0530
Subject: [PATCH 148/196] fix(minor): alignmet issue on ratng field while
editing
---
frappe/public/scss/common/grid.scss | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/frappe/public/scss/common/grid.scss b/frappe/public/scss/common/grid.scss
index 4de26b7310..75f797036b 100644
--- a/frappe/public/scss/common/grid.scss
+++ b/frappe/public/scss/common/grid.scss
@@ -340,8 +340,8 @@
}
.grid-static-col[data-fieldtype="Rating"] .field-area {
- margin-top: 1rem;
- margin-left: 1rem;
+ margin-top: 0.6rem;
+ margin-left: 0.5rem;
}
.grid-static-col[data-fieldtype="Code"],
From 7884a660da20814632724ed10988cab5bfef2227 Mon Sep 17 00:00:00 2001
From: MochaMind
Date: Sun, 29 Jun 2025 19:31:41 +0530
Subject: [PATCH 149/196] fix: sync translations from crowdin (#33143)
---
frappe/locale/ar.po | 718 ++++++++++++++++++---------------------
frappe/locale/bs.po | 718 ++++++++++++++++++---------------------
frappe/locale/cs.po | 718 ++++++++++++++++++---------------------
frappe/locale/de.po | 718 ++++++++++++++++++---------------------
frappe/locale/eo.po | 718 ++++++++++++++++++---------------------
frappe/locale/es.po | 718 ++++++++++++++++++---------------------
frappe/locale/fa.po | 738 ++++++++++++++++++-----------------------
frappe/locale/fr.po | 718 ++++++++++++++++++---------------------
frappe/locale/hr.po | 718 ++++++++++++++++++---------------------
frappe/locale/hu.po | 718 ++++++++++++++++++---------------------
frappe/locale/it.po | 718 ++++++++++++++++++---------------------
frappe/locale/nl.po | 718 ++++++++++++++++++---------------------
frappe/locale/pl.po | 718 ++++++++++++++++++---------------------
frappe/locale/pt.po | 718 ++++++++++++++++++---------------------
frappe/locale/pt_BR.po | 718 ++++++++++++++++++---------------------
frappe/locale/ru.po | 718 ++++++++++++++++++---------------------
frappe/locale/sr.po | 718 ++++++++++++++++++---------------------
frappe/locale/sr_CS.po | 718 ++++++++++++++++++---------------------
frappe/locale/sv.po | 720 ++++++++++++++++++----------------------
frappe/locale/th.po | 718 ++++++++++++++++++---------------------
frappe/locale/tr.po | 718 ++++++++++++++++++---------------------
frappe/locale/vi.po | 718 ++++++++++++++++++---------------------
frappe/locale/zh.po | 718 ++++++++++++++++++---------------------
23 files changed, 7279 insertions(+), 9257 deletions(-)
diff --git a/frappe/locale/ar.po b/frappe/locale/ar.po
index 925d735b7f..95e0f1b9e9 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-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Arabic\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "'في عرض القائمة' غير مسموح للنوع {0} في ال
msgid "'Recipients' not specified"
msgstr "لم يتم تحديد "المستلمين""
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -860,7 +860,7 @@ msgstr "العمل / الطريق"
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "فشل العمل"
@@ -1499,6 +1499,14 @@ msgstr "إنذار"
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1539,7 +1547,6 @@ msgstr "محاذاة القيمة"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1984,7 +1991,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr "حدث خطأ أثناء إعداد الإعدادات الافتراضية للجلسة"
@@ -2102,7 +2109,7 @@ msgstr "اسم التطبيق"
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "لم يتم تثبيت التطبيق {0}"
@@ -2316,10 +2323,6 @@ msgstr "هل أنت متأكد أنك تريد إعادة تعيين كافة ا
msgid "Are you sure you want to save this document?"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr ""
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2573,9 +2576,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "مرفق"
@@ -2602,10 +2603,7 @@ msgid "Attachment Removed"
msgstr "تم حذف المرفق"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2623,11 +2621,6 @@ msgstr "محاولة إطلاق QZ Tray ..."
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3054,7 +3047,7 @@ msgstr "صورة الخلفية"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr "خلفية عن الخبرات السابقة"
@@ -3782,9 +3775,7 @@ msgstr "عنوان رد الاتصال"
msgid "Camera"
msgstr "الة تصوير"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3870,10 +3861,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr "الغاء جميع الوثائق"
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4167,7 +4154,7 @@ msgstr "وصف الفئة"
msgid "Category Name"
msgstr "اسم التصنيف"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr "سنت"
@@ -4335,10 +4322,6 @@ msgstr "التحقق من"
msgid "Check Request URL"
msgstr "تحقق من عنوان الرابط المطلوب"
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4362,10 +4345,6 @@ msgstr "التحقق من ذلك إذا كنت تريد لإجبار المست
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "فحص لحظة واحدة"
@@ -4412,6 +4391,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "يتم عرض الجداول الفرعية كشبكة في DocTypes الأخرى"
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "اختر بطاقة موجودة أو أنشئ بطاقة جديدة"
@@ -4501,10 +4484,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "انقر هنا للتأكيد"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4846,7 +4825,7 @@ msgstr "الأعمدة"
msgid "Columns / Fields"
msgstr "الأعمدة / الحقول"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "أعمدة بناء على"
@@ -5166,17 +5145,12 @@ msgstr ""
msgid "Confirm Request"
msgstr "تأكيد الطلب"
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "تأكيد البريد الإلكتروني الخاص بك"
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "نموذج البريد الإلكتروني للتأكيد"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "مؤكد"
@@ -5307,8 +5281,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5316,7 +5288,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5341,10 +5312,8 @@ msgstr "المحتوى (تخفيض السعر)"
msgid "Content Hash"
msgstr "تجزئة المحتوى"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5450,6 +5419,10 @@ msgstr "لا يمكن أن تجد {0}"
msgid "Could not map column {0} to field {1}"
msgstr "تعذر تعيين العمود {0} للحقل {1}"
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5505,7 +5478,7 @@ msgstr "عداد"
msgid "Country"
msgstr "الدولة"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5636,11 +5609,6 @@ msgstr "انشاء جديد {0}"
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -5989,6 +5957,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6046,7 +6018,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "تخصيص نموذج"
@@ -6339,7 +6311,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6403,6 +6374,11 @@ msgstr "يوم"
msgid "Day of Week"
msgstr "يوم من الأسبوع"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr "أيام"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6670,6 +6646,7 @@ msgstr "مؤجل"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6982,6 +6959,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7735,7 +7713,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8353,7 +8331,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8447,11 +8424,9 @@ msgstr "تذييل البريد الإلكتروني"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "البريد الإلكتروني المجموعة"
@@ -8524,18 +8499,11 @@ msgstr ""
msgid "Email Rule"
msgstr "البريد الإلكتروني القاعدة"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "إرسال البريد الإلكتروني"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8642,10 +8610,18 @@ msgstr "سيتم إرسال رسائل البريد الإلكتروني مع إ
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9109,6 +9085,14 @@ msgstr "خطأ في الإخطار"
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "حدث خطأ أثناء الاتصال بحساب البريد الإلكتروني {0}"
@@ -9305,6 +9289,10 @@ msgstr "وسعت"
msgid "Expand All"
msgstr "توسيع الكل"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -9836,7 +9824,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "اسم الحقل محدد ب 64 حرف
Fieldname is limited to 64 characters ({0})"
@@ -9852,7 +9840,7 @@ msgstr "أسم الحقل الذي سيكون DOCTYPE لهذا الحقل الا
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "FIELDNAME {0} لا يمكن أن يكون أحرف خاصة مثل {1}"
@@ -9904,6 +9892,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10069,6 +10061,14 @@ msgstr "اسم الفلتر"
msgid "Filter Values"
msgstr "قيم التصفية"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10312,10 +10312,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr "الحقول التالية والقيم المفقودة:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10732,10 +10728,8 @@ msgid "Friday"
msgstr "الجمعة"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "من"
@@ -10816,10 +10810,14 @@ msgstr "وظيفة"
msgid "Function Based On"
msgstr "وظيفة على أساس"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "العقد الإضافية التي يمكن أن تنشأ إلا في ظل العقد نوع ' المجموعة '"
@@ -11301,6 +11299,10 @@ msgstr "مجموعة حسب النوع"
msgid "Group By field is required to create a dashboard chart"
msgstr "حقل تجميع حسب مطلوب لإنشاء مخطط لوحة القيادة"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "عقدة المجموعة"
@@ -11349,7 +11351,6 @@ msgstr "HH: MM: SS"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11363,7 +11364,6 @@ msgstr "HH: MM: SS"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11872,6 +11872,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr "حد المعدل بالساعة لإنشاء روابط إعادة تعيين كلمة المرور"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "ساعات"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12637,11 +12642,11 @@ msgstr "مستخدم غير صحيح أو كلمة مرور"
msgid "Incorrect Verification code"
msgstr "رمز التحقق غير صحيح"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12793,11 +12798,11 @@ msgstr "تعليمات"
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "عدم كفاية الإذن {0}"
@@ -12947,7 +12952,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr "بيانات الاعتماد غير صالحة"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "تاريخ غير صالح"
@@ -12955,7 +12960,7 @@ msgstr "تاريخ غير صالح"
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -12967,6 +12972,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13031,7 +13041,7 @@ msgstr ""
msgid "Invalid Password"
msgstr "رمز مرور خاطئ"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13075,10 +13085,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "عمود غير صالح"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13091,10 +13129,26 @@ msgstr "تم تعيين تعبير غير صالح في عامل التصفية
msgid "Invalid expression set in filter {0} ({1})"
msgstr "تم تعيين تعبير غير صالح في عامل التصفية {0} ({1})"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "اسم الحقل غير صالح {0}"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "اسم الحقل غير صالح '{0}' في الااسم تلقائي"
@@ -13103,11 +13157,26 @@ msgstr "اسم الحقل غير صالح '{0}' في الااسم تلقائي"
msgid "Invalid file path: {0}"
msgstr "مسار الملف غير صالح: {0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "مرشح غير صالح: {0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13129,10 +13198,22 @@ msgstr "محتوى غير صالح أو تالف للاستيراد"
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "ملف نموذج غير صالح للاستيراد"
@@ -13574,11 +13655,11 @@ msgstr "عمود لوح كانبان"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "اسم لوح كانبان"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14290,6 +14371,10 @@ msgstr "اعجابات"
msgid "Limit"
msgstr "حد"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14553,6 +14638,7 @@ msgid "Load Balancing"
msgstr "تحميل موازنة"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15071,11 +15157,9 @@ msgstr "علامة كدعاية"
msgid "Mark as Unread"
msgstr "حدده كغير مقروء"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15264,7 +15348,6 @@ msgstr "الدمج مسموح فقط بين مجموعة ومجموعة أو ف
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15277,7 +15360,6 @@ msgstr "الدمج مسموح فقط بين مجموعة ومجموعة أو ف
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15292,16 +15374,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "رسالة"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "الرسالة (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "الرسالة (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15425,7 +15497,7 @@ msgstr "عنوان Meta لـ SEO"
msgid "Method"
msgstr "طريقة"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15475,6 +15547,11 @@ msgstr "الحد الأدنى من كلمة المرور"
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr "الدقائق"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15870,7 +15947,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr "يجب أن يكون من نوع "إرفاق صورة""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "يجب أن يكون لديك إذن تقارير للوصول إلى هذا التقرير."
@@ -16058,6 +16135,10 @@ msgstr ""
msgid "Negative Value"
msgstr "قيمة سالبة"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "خطأ مجموعة متداخلة . يرجى الاتصال بمدير البرنامج."
@@ -16140,7 +16221,7 @@ msgstr "حدث جديد"
msgid "New Folder"
msgstr "ملف جديد"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "مجلس كانبان جديدة"
@@ -16284,48 +16365,13 @@ msgstr "تتوفر {} إصدارات جديدة للتطبيقات التالي
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "النشرة الإخبارية"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "البريد الإلكتروني المجموعة البريدية"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "مدير النشرة الإخبارية"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "الرسالة الإخبارية قد تم إرسالها من قبل"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "يجب أن تحتوي الرسالة الإخبارية على متلقي واحد على الأقل"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "النشرات الإخبارية"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16587,7 +16633,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16615,10 +16661,6 @@ msgstr "لا تنبيهات لهذا اليوم"
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "لا توجد تغييرات في المستند"
@@ -16655,7 +16697,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr "لا جهات اتصال مرتبطة بالمستند"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "لا توجد بيانات للتصدير"
@@ -16675,7 +16717,7 @@ msgstr "لا يوجد حساب بريد إلكتروني مرتبط بالمست
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16734,7 +16776,7 @@ msgstr "عدد الصفوف (بحد أقصى 500)"
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "لا يوجد صلاحية لـ {0}
No permission for {0}"
@@ -16862,7 +16904,7 @@ msgstr "ليس من أحفاد"
msgid "Not Equals"
msgstr "لا تساوي"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "لم يتم العثور على"
@@ -16888,7 +16930,7 @@ msgstr "غير مرتبط بأي سجل"
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16897,7 +16939,7 @@ msgstr ""
msgid "Not Permitted"
msgstr "لا يسمح"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -16925,7 +16967,6 @@ msgstr "لا أرى"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "لا ترسل"
@@ -16958,7 +16999,7 @@ msgstr ""
msgid "Not active"
msgstr "غير نشطة"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "غير مسموح لـ {0}: {1}"
@@ -17392,6 +17433,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "كلمة المرور القديمة"
@@ -17565,7 +17610,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17737,7 +17782,7 @@ msgstr "افتتح"
msgid "Operation"
msgstr "عملية"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "يجب أن يكون المشغل واحدا من {0}"
@@ -17836,6 +17881,10 @@ msgstr ""
msgid "Order"
msgstr "طلب"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18231,7 +18280,7 @@ msgstr "الأصل هو اسم المستند الذي ستتم إضافة ال
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18353,10 +18402,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr "كلمة المرور غير مطابقة!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "لصق"
@@ -18502,7 +18547,7 @@ msgstr "إرسال دائم {0} ؟"
msgid "Permanently delete {0}?"
msgstr "حذف بشكل دائم {0} ؟"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "خطأ في الإذن"
@@ -18654,7 +18699,7 @@ msgstr "هاتف"
msgid "Phone No."
msgstr "رقم الهاتف"
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -18927,10 +18972,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr "الرجاء حفظ قبل إرفاق."
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "يرجى حفظ النشرة الإخبارية قبل إرسالها"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "الرجاء حفظ المستند قبل التعيين"
@@ -18963,7 +19004,7 @@ msgstr "يرجى تحديد الحد الأدنى لسجل كلمة المرور
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -18979,7 +19020,7 @@ msgstr "يرجى تحديد ملف أو URL"
msgid "Please select a valid csv file with data"
msgstr "يرجى تحديد ملف CSV ساري المفعول مع البيانات"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "الرجاء تحديد مرشح تاريخ صالح"
@@ -19057,7 +19098,7 @@ msgstr ""
msgid "Please specify"
msgstr "رجاء حدد"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19094,10 +19135,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "يرجى التحقق من عنوان البريد الإلكتروني الخاص بك"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19191,6 +19228,10 @@ msgstr "مشاركات {0}"
msgid "Posts filed under {0}"
msgstr "الوظائف المقدمة في إطار {0}"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19250,7 +19291,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr "إعداد تقرير المستخدم"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19279,8 +19320,6 @@ msgstr "اضغط على إنتر للحفظ"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19668,7 +19707,7 @@ msgstr ""
msgid "Progress"
msgstr "تقدم"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "مشروع"
@@ -19763,14 +19802,7 @@ msgstr ""
msgid "Publish"
msgstr "نشر"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19778,7 +19810,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19953,7 +19984,7 @@ msgstr "الاستعلام عن"
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -19999,7 +20030,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "قائمة الانتظار"
@@ -20022,19 +20052,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr "قائمة الانتظار للنسخ الاحتياطي. سوف تتلقى رسالة بريد إلكتروني مع رابط التحميل"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20235,7 +20257,7 @@ msgstr "قراءة من قبل المتلقي"
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21102,7 +21124,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "تم تحديث التقرير بنجاح"
@@ -21123,7 +21145,7 @@ msgstr "تقرير {0}"
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "تقرير غير مفعلة {0}"
@@ -21456,10 +21478,8 @@ msgstr "سحب"
msgid "Revoked"
msgstr "إلغاء"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21670,7 +21690,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21684,7 +21703,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21802,7 +21820,7 @@ msgstr "قاعدة"
msgid "Rule Conditions"
msgstr "شروط القاعدة"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -21991,11 +22009,11 @@ msgstr "السبت"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22087,32 +22105,17 @@ msgstr "مسح رمز الاستجابة السريعة وأدخل رمز الن
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "من المقرر"
@@ -22146,17 +22149,6 @@ msgstr "نوع الوظيفة المجدولة"
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "من المقرر أن ترسل"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "تم تحديث التنفيذ المجدول للنص {0}"
@@ -22368,6 +22360,11 @@ msgstr "بحث..."
msgid "Searching ..."
msgstr "جاري البحث ..."
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22757,9 +22754,7 @@ msgstr "حدد {0}"
msgid "Self approval is not allowed"
msgstr "الموافقة الذاتية غير مسموح بها"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "إرسال"
@@ -22790,11 +22785,6 @@ msgstr "إرسال تنبيه في"
msgid "Send Email Alert"
msgstr "إرسال تنبيه عبر البريد الإلكتروني"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22852,38 +22842,16 @@ msgstr "إرسال مقروءة إيصال"
msgid "Send System Notification"
msgstr "إرسال إشعار النظام"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "أرسل إلى جميع المعينين"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "إرسال رابط إلغاء الإشتراك"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "إرسال رسالة ترحيبية"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22931,10 +22899,6 @@ msgstr ""
msgid "Send me a copy"
msgstr "أرسل لي نسخة"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22950,19 +22914,15 @@ msgstr "إرسال رسالة إلغاء الاشتراك في البريد ال
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "مرسل"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "البريد الإلكتروني المرسل"
@@ -22979,9 +22939,7 @@ msgid "Sender Field should have Email in options"
msgstr "يجب أن يحتوي حقل المرسل على البريد الإلكتروني في الخيارات"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -23001,18 +22959,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "إرسال"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23020,8 +22969,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "أرسلت"
@@ -23091,7 +23038,7 @@ msgstr "الترقيم المتسلسل {0} مستخدم بالفعل في {1}"
msgid "Server Action"
msgstr "عمل الخادم"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "خطأ في الخادم"
@@ -23110,7 +23057,7 @@ msgstr "خادم IP"
msgid "Server Script"
msgstr "خادم النصي"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23149,15 +23096,15 @@ msgstr "إعدادات الجلسة الافتراضية"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "الجلسة الافتراضية"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "تم حفظ الإعدادات الافتراضية للجلسة"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "انتهت الجلسة"
@@ -23387,7 +23334,7 @@ msgstr "إعداد النظام الخاص بك"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24470,7 +24417,6 @@ msgstr "الفاصل الزمني للإحصائيات"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24495,7 +24441,6 @@ msgstr "الفاصل الزمني للإحصائيات"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24636,8 +24581,6 @@ msgstr "مجال فرعي"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24646,7 +24589,6 @@ msgstr "مجال فرعي"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25017,7 +24959,7 @@ msgstr "المزامنة"
msgid "Syncing {0} of {1}"
msgstr "مزامنة {0} من {1}"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25324,7 +25266,7 @@ msgstr ""
msgid "Table updated"
msgstr "الجدول محدث"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "جدول {0} لا يمكن أن يكون فارغا"
@@ -25451,10 +25393,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "تم إرسال بريد إلكتروني تجريبي إلى {0}"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "إختبار_المجلد"
@@ -25520,10 +25458,6 @@ msgstr "شكرا لك على بريدك الالكتروني"
msgid "Thank you for your feedback!"
msgstr "شكرا لك على ملاحظاتك!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "شكرا لك على اهتمامك في الاشتراك في تحديثاتنا"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25712,7 +25646,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "المصدر الذي تبحث عنه غير متاح\\n
\\nThe resource you are looking for is not available"
@@ -25724,7 +25658,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25877,7 +25811,7 @@ msgstr "إثبات أصالة الطرف الثالث"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "تم تعطيل هذه العملات . تمكين لاستخدامها في المعاملات"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "وهذا المجلس كانبان يكون القطاع الخاص"
@@ -25901,7 +25835,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "هذا الإجراء مسموح به فقط لـ {}"
@@ -26061,14 +25995,6 @@ msgstr "قد تتم طباعة هذا على صفحات متعددة"
msgid "This month"
msgstr "هذا الشهر"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26181,7 +26107,6 @@ msgstr "الخميس"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "زمن"
@@ -26407,10 +26332,8 @@ msgid "Title of the page"
msgstr "عنوان الصفحة"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "إلى"
@@ -26687,7 +26610,7 @@ msgstr ""
msgid "Topic"
msgstr "موضوع"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26715,16 +26638,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "إجمالي عدد المشتركين"
@@ -26733,11 +26648,6 @@ msgstr "إجمالي عدد المشتركين"
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27134,23 +27044,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "عنوان URL للانتقال إليه عند النقر فوق صورة عرض الشرائح"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27200,7 +27104,7 @@ msgstr "تعذر كتابة تنسيق الملف {0}"
msgid "Unassign Condition"
msgstr "إلغاء تعيين الشرط"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27216,6 +27120,10 @@ msgstr ""
msgid "Undo last action"
msgstr ""
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27248,7 +27156,7 @@ msgstr "غير معروف"
msgid "Unknown Column: {0}"
msgstr "عمود غير معروف: {0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27281,7 +27189,7 @@ msgstr "غير مقروء"
msgid "Unread Notification Sent"
msgstr "إرسال الإشعارات غير المقروءة"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27295,7 +27203,7 @@ msgstr ""
msgid "Unshared"
msgstr "غير مشارك"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "إلغاء الاشتراك"
@@ -27319,6 +27227,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr "إلغاء اشتراكك"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "عمود بلا عنوان"
@@ -27441,7 +27354,7 @@ msgstr "تم التحديث إلى إصدار جديد 🎉"
msgid "Updated successfully"
msgstr "تم التحديث بنجاح"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "يتم التحديث"
@@ -28176,7 +28089,7 @@ msgstr "قيمة كبيرة جدا"
msgid "Value {0} missing for {1}"
msgstr "القيمة {0} مفقودة لـ {1}"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "يجب أن تكون القيمة {0} بتنسيق المدة الصالح: dhms"
@@ -28601,7 +28514,6 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28609,9 +28521,7 @@ msgid "Website"
msgstr "الموقع"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "تحليلات الموقع"
@@ -29047,7 +28957,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29270,11 +29180,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "لا يسمح لك بالوصول إلى هذا السجل {0} لأنه مرتبط بـ {1} '{2}' في الحقل {3}"
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29297,7 +29207,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "غير مسموح لك بتصدير النمط {}"
@@ -29325,7 +29235,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr "لا يسمح لك بالوصول إلى هذه الصفحة."
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29420,7 +29330,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "يمكنك محاولة تغيير عوامل تصفية تقريرك."
@@ -29497,11 +29407,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "ليس لديك الأذونات الكافية للوصول إلى هذا المورد. الرجاء الاتصال بالمدير للحصول علي الوصول."
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "لا يوجد لديك الصلاحية الكافية لاتمام هذا العمل"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29509,7 +29423,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr "ليس لديك أذونات لإلغاء كافة المستندات المرتبطة."
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "ليس لديك حق الوصول إلى التقرير: {0}"
@@ -29517,11 +29431,11 @@ msgstr "ليس لديك حق الوصول إلى التقرير: {0}"
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "لا تتوفر لديك الصلاحية للوصول الى هذا الملف"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "ليس لديك إذن للحصول على تقرير عن: {0}"
@@ -29614,7 +29528,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "عليك أن تكون في وضع المطور لتعديل نموذج ويب قياسي"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "يتوجب عليك تسجيل الدخول بصلاحية مدير النظام حتي تتمكن من الوصول الى النسخ الأحتياطية."
@@ -29780,7 +29694,7 @@ msgstr "اسم المؤسسة وعنوانك لتذييل البريد الإل
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "وقد وردت الاستعلام الخاص بك. سوف نقوم بالرد مرة أخرى قريبا. إذا كان لديك أي معلومات إضافية، يرجى الرد على هذا البريد."
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "انتهت صلاحية الجلسة، يرجى تسجيل الدخول مرة أخرى للمتابعة."
@@ -29792,7 +29706,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "صفر"
@@ -29839,7 +29753,7 @@ msgstr "أدخل_بعد"
msgid "amend"
msgstr "تعديل"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "و"
@@ -29896,7 +29810,7 @@ msgstr "إنشاء"
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30011,7 +29925,7 @@ msgstr "البريد الإلكتروني"
msgid "email inbox"
msgstr "البريد الوارد"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "فارغة"
@@ -30063,7 +29977,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30097,7 +30011,7 @@ msgstr ""
msgid "just now"
msgstr "الآن فقط"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30137,7 +30051,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30327,7 +30241,7 @@ msgstr "استجابة"
msgid "restored {0} as {1}"
msgstr "استعادة {0} ك {1}"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30662,7 +30576,7 @@ msgstr "{0} غير مشترك أصلاً"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} تم إلغاء الاشتراك في {1} {2}"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} و {1}"
@@ -30768,6 +30682,10 @@ msgstr "{0} غير موجود في الصف {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "لا يمكن أن يحتوي اسم الحقل {0} على أحرف خاصة مثل {1}"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30788,10 +30706,6 @@ msgstr "{0} ح"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} قام بالفعل بتعيين القيمة الافتراضية لـ {1}."
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} تم بنجاح الإضافة إلى مجموعة البريد الإلكتروني"
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} تركت محادثة في {1} {2}"
@@ -30862,6 +30776,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr "{0} إلزامي"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -30883,7 +30801,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} ليس نوع DocType صالحًا للارتباط الديناميكي"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0} بريد الكتروني غير صالح
{0} is not a valid Email Address"
@@ -30891,11 +30809,11 @@ msgstr "{0} بريد الكتروني غير صالح
{0} is not a valid Emai
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0} ليس اسمًا صالحًا"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} ليس رقم هاتف صالحًا"
@@ -30903,11 +30821,11 @@ msgstr "{0} ليس رقم هاتف صالحًا"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} ليست حالة سير عمل صالحة. يرجى تحديث سير العمل والمحاولة مرة أخرى."
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -30995,23 +30913,23 @@ msgstr "قبل {0} دقائق"
msgid "{0} months ago"
msgstr "قبل {0} أشهر"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0} يجب أن يكون بعد {1}"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} يجب أن يكون واحدا من {1}"
@@ -31023,7 +30941,7 @@ msgstr "يجب تعيين {0} أولا"
msgid "{0} must be unique"
msgstr "{0} يجب أن تكون فريدة من نوعها"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31052,16 +30970,12 @@ msgstr "{0} من {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} من {1} ({2} صفوف تحتوي على أطفال)"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} أو {1}"
@@ -31098,11 +31012,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "تم حفظ {0} بنجاح"
@@ -31214,7 +31128,7 @@ msgstr "{0} {1} غير موجود ، حدد هدفا جديدا لدمج"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} مرتبط بالمستندات المرسلة التالية: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} غير موجود"
@@ -31367,11 +31281,11 @@ msgstr "{{{0}}} غير صالح كأسم حقل. يجب أن يكون {{field_na
msgid "{} Complete"
msgstr "{} اكتمال"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31393,7 +31307,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{} ليست سلسلة تاريخ صالحة."
diff --git a/frappe/locale/bs.po b/frappe/locale/bs.po
index 252770ba90..62129430b8 100644
--- a/frappe/locale/bs.po
+++ b/frappe/locale/bs.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:41\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-28 17:46\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Bosnian\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "'U Prikazu Liste' nije dozvoljeno za tip {0} u redu {1}"
msgid "'Recipients' not specified"
msgstr "'Primaoci' nisu navedeni"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "'{0}' nije važeći URL"
@@ -1034,7 +1034,7 @@ msgstr "Radnja / Ruta"
msgid "Action Complete"
msgstr "Radnja Završena"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "Radnja Neuspješna"
@@ -1673,6 +1673,14 @@ msgstr "Upozorenje"
msgid "Alerts and Notifications"
msgstr "Upozorenja i Obavještenja"
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr "Alias ne može biti SQL ključna riječ: {0}"
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr "Alias mora biti niz"
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1713,7 +1721,6 @@ msgstr "Poravnaj Vrijednost"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -2159,7 +2166,7 @@ msgstr "Izmjena nije Dozvoljena"
msgid "Amendment naming rules updated."
msgstr "Pravila Izmjene Imenovanje ažurirana"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr "Došlo je do greške prilikom postavljanja standard Postavki Sesije"
@@ -2277,7 +2284,7 @@ msgstr "Naziv Aplikacije"
msgid "App not found for module: {0}"
msgstr "Aplikacija nije pronađena za modul: {0}"
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "Aplikacija {0} nije instalirana"
@@ -2491,10 +2498,6 @@ msgstr "Jeste li sigurni da želite poništiti sve prilagodbe?"
msgid "Are you sure you want to save this document?"
msgstr "Jeste li sigurni da želite spremiti ovaj dokument?"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "Jeste li sigurni da sada želite poslati ovaj bilten?"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2748,9 +2751,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr "Priloženo Imenu mora biti niz ili cijeli broj"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "Prilog"
@@ -2777,10 +2778,7 @@ msgid "Attachment Removed"
msgstr "Prilog Uklonjen"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2798,11 +2796,6 @@ msgstr "Pokušaj pokretanja QZ Tray..."
msgid "Attribution"
msgstr "Pripisivanje"
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr "Publika"
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3229,7 +3222,7 @@ msgstr "Pozadinska Slika"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr "Poslovi u Pozadini"
@@ -3957,9 +3950,7 @@ msgstr "Naziv Povratnog Poziva"
msgid "Camera"
msgstr "Kamera"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -4045,10 +4036,6 @@ msgstr "Otkaži"
msgid "Cancel All Documents"
msgstr "Otkaži Sve Dokumente"
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr "Otkaži Planiranje"
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4342,7 +4329,7 @@ msgstr "Opis Kategorije"
msgid "Category Name"
msgstr "Naziv Kategorije"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr "Cent"
@@ -4511,10 +4498,6 @@ msgstr "Provjeri"
msgid "Check Request URL"
msgstr "Provjeri URL zahtjeva"
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr "Provjeri neispravne veze"
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr "Označite kolone za odabir, povucite da postavite redoslijed."
@@ -4538,10 +4521,6 @@ msgstr "Označite ovo ako želite prisiliti korisnika da odabere seriju prije sp
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr "Označite za prikaz pune numeričke vrijednosti (npr. 1.234.567 umjesto 1,2 miliona)."
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr "Provjera neispravnih veza..."
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "Provjerava se samo trenutak"
@@ -4588,6 +4567,10 @@ msgstr "Podređena tabela {0} za polje {1}"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Podređene tabele su prikazane kao mreža u drugim DocTypes"
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr "Podređena polja upita za '{0}' moraju biti lista ili torka."
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "Odaberi postojeću karticu ili kreiraj novu karticu"
@@ -4677,10 +4660,6 @@ msgstr "Klikni Prilagodi kako biste dodali svoj prvi vidžet"
msgid "Click here"
msgstr "Klikni ovdje"
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "Klikni ovdje za potvrdu"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "Klikni na datoteku da biste je odabrali."
@@ -5022,7 +5001,7 @@ msgstr "Kolone"
msgid "Columns / Fields"
msgstr "Kolone / Polja"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "Kolone zasnovane na"
@@ -5344,17 +5323,12 @@ msgstr "Potvrdi Lozinku"
msgid "Confirm Request"
msgstr "Potvrdi Zahtjev"
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "Potvrdi vašu e-poštu"
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "Šablon e-pošte Potvrde"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "Potvrđeno"
@@ -5485,8 +5459,6 @@ msgstr "Sadrži {0} sigurnosne ispravke"
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5494,7 +5466,6 @@ msgstr "Sadrži {0} sigurnosne ispravke"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5519,10 +5490,8 @@ msgstr "Sadržaj (Markdown)"
msgid "Content Hash"
msgstr "Hash Sadržaja"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5628,6 +5597,10 @@ msgstr "Nije moguće pronaći {0}"
msgid "Could not map column {0} to field {1}"
msgstr "Nije moguće mapirati kolonu {0} na polje {1}"
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr "Nije moguće parsirati polje: {0}"
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr "Nije moguće pokrenuti: "
@@ -5683,7 +5656,7 @@ msgstr "Brojač"
msgid "Country"
msgstr "Zemlja"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr "Kod Zemlje Obavezan"
@@ -5814,11 +5787,6 @@ msgstr "+ {0}"
msgid "Create a {0} Account"
msgstr "+ {0} Račun"
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr "Kreiraj i šalji e-poštu određenoj grupi pretplatnika periodično."
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr "Kreiraj ili Uredi Format Ispisa"
@@ -6167,6 +6135,10 @@ msgstr "Prilagođeni Prijevod"
msgid "Custom field renamed to {0} successfully."
msgstr "Prilagođeno polje uspješno je preimenovano u {0}."
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr "Prilagođena metoda get_list za {0} mora vratiti objekt QueryBuilder ili None, dobijeno {1}"
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6224,7 +6196,7 @@ msgstr "Prilagodi nadzornu ploču"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "Prilagodi Formu"
@@ -6517,7 +6489,6 @@ msgstr "Verzija Baze Podataka"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6581,6 +6552,11 @@ msgstr "Dan"
msgid "Day of Week"
msgstr "Dan u Sedmici"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr "Dana"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6848,6 +6824,7 @@ msgstr "Odgođeno"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -7160,6 +7137,7 @@ msgstr "Tema Radne Površine"
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7916,7 +7894,7 @@ msgid "Document Types and Permissions"
msgstr "Tipovi Dokumenata i Dozvole"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr "Dokument Otključan"
@@ -8534,7 +8512,6 @@ msgstr "Birač Elementa"
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8628,11 +8605,9 @@ msgstr "Adresa Podnožju e-pošte"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "Grupa e-pošte"
@@ -8705,18 +8680,11 @@ msgstr "Broj Pokušaja e-pošte"
msgid "Email Rule"
msgstr "Pravilo e-pošte"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "E-pošta Poslana"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr "E-pošta poslana"
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8823,10 +8791,18 @@ msgstr "E-pošta će biti poslane sa sljedećim mogućim radnjama radnog toka"
msgid "Embed code copied"
msgstr "Kod Ugradnje kopiran"
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr "Prazan pseudonim nije dozvoljen"
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr "Prazna kolona"
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr "Prazni niz argumenti nisu dozvoljeni"
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9291,6 +9267,14 @@ msgstr "Greška u Obavještenju"
msgid "Error in print format on line {0}: {1}"
msgstr "Greška u formatu za ispisivanje na liniji {0}: {1}"
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr "Greška u {0}.get_list: {1}"
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr "Greška pri parsiranju ugniježđenih filtera: {0}"
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "Greška prilikom povezivanja na račun e-pošte {0}"
@@ -9487,6 +9471,10 @@ msgstr "Proširi"
msgid "Expand All"
msgstr "Rasklopi Sve"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr "Očekivani operator 'and' ili 'or', pronađen: {0}"
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr "Eksperimentalno"
@@ -10018,7 +10006,7 @@ msgstr "Ime polja '{0}' je u konfliktu sa {1} imena {2} u {3}"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Ime polja {0} mora postojati da bi se omogućilo automatsko imenovanje"
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Ime polja je ograničeno na 64 znaka ({0})"
@@ -10034,7 +10022,7 @@ msgstr "Ime polja koje će biti DocType za ovo polje veze."
msgid "Fieldname {0} appears multiple times"
msgstr "Ime polja {0} pojavljuje se više puta"
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Ime polja {0} ne može imati posebne znakove kao što je {1}"
@@ -10086,6 +10074,10 @@ msgstr "Polja `file_name` ili `file_url` moraju biti postavljena za datoteku"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Polja moraju biti lista ili tuple kada je as_list omogućen"
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr "Polja moraju biti niz, lista, torka, pypika Polje ili pypika Funkcija"
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10251,6 +10243,14 @@ msgstr "Filter Naziv"
msgid "Filter Values"
msgstr "Filter Vrijednosti"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr "Nedostaje uslov filtera nakon operatora: {0}"
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr "Polja filtera ne mogu sadržavati povratne crte (`)."
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr "Filtriraj..."
@@ -10494,10 +10494,6 @@ msgstr "Sljedeća polja nemaju vrijednosti"
msgid "Following fields have missing values:"
msgstr "Sljedeća polja nemaju vrijednosti:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr "Sljedeće veze su prekinute u sadržaju e-pošte: {0}"
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10915,10 +10911,8 @@ msgid "Friday"
msgstr "Petak"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "Od"
@@ -10999,10 +10993,14 @@ msgstr "Funkcija"
msgid "Function Based On"
msgstr "Funkcija zasnovana na"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr "Funkcija {0} nije na bijeloj listi."
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr "Funkcija {0} zahtijeva argumente, ali nijedan nije dat"
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Podređeni članovi se mogu kreirati samo pod članovima tipa 'Grupa'"
@@ -11484,6 +11482,10 @@ msgstr "Grupiši Po Tipu"
msgid "Group By field is required to create a dashboard chart"
msgstr "Polje Grupiši Po je obavezno za kreiranje grafikona nadzorne table"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr "Grupiraj Po mora biti niz"
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "Grupa"
@@ -11532,7 +11534,6 @@ msgstr "HH:mm:ss"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11546,7 +11547,6 @@ msgstr "HH:mm:ss"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -12055,6 +12055,11 @@ msgstr "Satno Održavanje"
msgid "Hourly rate limit for generating password reset links"
msgstr "Broj veza koji se mogu kreirati po satu za poništavanje lozinke"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "Sati"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12820,11 +12825,11 @@ msgstr "Netačan korisnik ili lozinka"
msgid "Incorrect Verification code"
msgstr "Netačan Verifikacioni Kod"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr "Netačna vrijednost u redu {0}:"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr "Netačna vrijednost:"
@@ -12976,11 +12981,11 @@ msgstr "Instrukcije"
msgid "Instructions Emailed"
msgstr "Instrukcije Poslane e-poštom"
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr "Nedovoljan Nivo Dozvola za {0}"
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "Nedovoljne Dozvole za {0}"
@@ -13130,7 +13135,7 @@ msgstr "Nevažeći Uslov: {}"
msgid "Invalid Credentials"
msgstr "Nevažeći Podaci"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "Nevažeći Datum"
@@ -13138,7 +13143,7 @@ msgstr "Nevažeći Datum"
msgid "Invalid DocType"
msgstr "Nevažeći DocType"
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr "Nevažeći DocType: {0}"
@@ -13150,6 +13155,11 @@ msgstr "Nevažeći Naziv Polja"
msgid "Invalid File URL"
msgstr "Nevažeći URL Datoteke"
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr "Nevažeći Filter"
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr "Nevažeći Format Filtera za polje {0} tipa {1}. Pokušajte koristiti ikonu filtera na polju da ga ispravno postavite"
@@ -13214,7 +13224,7 @@ msgstr "Nevažeći Parametri."
msgid "Invalid Password"
msgstr "Nevažeća Lozinka"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr "Nevažeći Broj Telefona"
@@ -13258,10 +13268,38 @@ msgstr "Nevažeća Tajna Webhooka"
msgid "Invalid aggregate function"
msgstr "Nevažeća agregatna funkcija"
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr "Nevažeći format aliasa: {0}. Alias mora biti jednostavan identifikator."
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr "Nevažeći format argumenta: {0}. Dozvoljeni su samo navodni niz literali ili jednostavna imena polja."
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr "Nevažeći tip argumenta: {0}. Dozvoljeni su samo nizovi, brojevi i None."
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr "Nevažeći znakovi u nazivu polja: {0}. Dozvoljeni su samo slova, brojevi i podvlake."
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr "Nevažeći znakovi u nazivu tabele: {0}"
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "Nevažeća kolona"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr "Nevažeći tip uslova u ugniježđenim filterima: {0}"
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr "Nevažeći smjer u Sortiraj Po: {0}. Mora biti 'ASC' ili 'DESC'."
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "Nevažeći status dokumenta"
@@ -13274,10 +13312,26 @@ msgstr "Nevažeći izraz postavljen u filteru {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Nevažeći izraz postavljen u filteru {0} ({1})"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr "Nevažeći format polja za SELECT: {0}. Nazivi polja moraju biti jednostavni, sa povratnim ukrštanjem, kvalifikovani tabelom, aliasirani ili sa '*'."
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr "Nevažeći format polja u {0}: {1}. Koristi 'field', 'link_field.field' ili 'child_table.field'."
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr "Nevažeći naziv polja u funkciji: {0}. Dozvoljeni su samo jednostavni nazivi polja."
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "Nevažeći naziv polja {0}"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr "Nevažeći tip polja: {0}"
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Nevažeći naziv polja '{0}' u automatskom nazivu"
@@ -13286,11 +13340,26 @@ msgstr "Nevažeći naziv polja '{0}' u automatskom nazivu"
msgid "Invalid file path: {0}"
msgstr "Nevažeći put datoteke: {0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr "Nevažeći uslov filtera: {0}. Očekivana je lista ili torka."
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr "Nevažeći format polja filtera: {0}. Koristi 'fieldname' ili 'link_fieldname.target_fieldname'."
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "Nevažeći filter: {0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr "Nevažeći tip argumenta funkcije: {0}. Dozvoljeni su samo nizovi, brojevi, liste i None."
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr "Nevažeći format rječnika funkcija"
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13312,10 +13381,22 @@ msgstr "Nevažeći ili oštećeni sadržaj za uvoz"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Nevažeći regex za preusmjeravanje u redu #{}: {}"
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr "Nevažeći argumenti zahtjeva"
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr "Nevažeći format jednostavnog filtera: {0}"
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr "Nevažeći početak za uslov filtera: {0}. Očekivana je lista ili torka."
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr "Nevažeći format niza literala: {0}"
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "Nevažeća datoteka šablona za uvoz"
@@ -13757,11 +13838,11 @@ msgstr "Kolona Oglasne Table"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "Naziv Oglasne Table"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "Postavke Oglasne Table"
@@ -14473,6 +14554,10 @@ msgstr "Lajkova"
msgid "Limit"
msgstr "Ograniči"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr "Granica mora biti cijeli broj koji nije negativan"
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14736,6 +14821,7 @@ msgid "Load Balancing"
msgstr "Load Balancing"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15254,11 +15340,9 @@ msgstr "Označi kao Neželjenu Poštu"
msgid "Mark as Unread"
msgstr "Označi kao Nepročitano"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15447,7 +15531,6 @@ msgstr "Spajanje je moguće samo između Grupe na Grupe ili podređeni na podre
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15460,7 +15543,6 @@ msgstr "Spajanje je moguće samo između Grupe na Grupe ili podređeni na podre
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15475,16 +15557,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Poruka"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "Poruka (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "Poruka (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15608,7 +15680,7 @@ msgstr "Meta naslov za SEO"
msgid "Method"
msgstr "Metoda"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr "Metoda nije Dozvoljena"
@@ -15658,6 +15730,11 @@ msgstr "Minimalna Vrijdnost Lozinke"
msgid "Minor"
msgstr "Manja"
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr "Minuta"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -16053,7 +16130,7 @@ msgstr "Mora biti zatvoren u '()' i uključiti '{0}', što je čuvar mjesta za k
msgid "Must be of type \"Attach Image\""
msgstr "Mora biti tipa \"Priloži Sliku\""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "Mora imati dozvolu za pristup ovom izvještaju."
@@ -16243,6 +16320,10 @@ msgstr "Potrebna je uloga Upravitelja Radnog Prostora za uređivanje privatnog r
msgid "Negative Value"
msgstr "Negativna Vrijednost"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr "Ugniježđeni filteri moraju biti dati kao lista ili torka."
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "Greška ugniježđenog skupa. Kontaktiraj Administratora."
@@ -16325,7 +16406,7 @@ msgstr "Novi Događaj"
msgid "New Folder"
msgstr "Nova Mapa"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "Nova Oglasna Tabla"
@@ -16469,48 +16550,13 @@ msgstr "Dostupna su nova {} izdanja za sljedeće aplikacije"
msgid "Newly created user {0} has no roles enabled."
msgstr "Novokreirani korisnik {0} nema omogućene uloge."
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "Bilten"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr "Prilog Biltena"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "Grupa e-pošte Biltena"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "Upravitelj Biltena"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "Bilten je već poslan"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr "Bilten mora biti objavljen da biste poslali vezu za web pregled u e-mailu"
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "Bilten treba da ima najmanje jednog primaoca"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "Bilteni"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16772,7 +16818,7 @@ msgstr "Nema Rezultata"
msgid "No Roles Specified"
msgstr "Nisu Navedene Uloge"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr "Nije Pronađeno Odabirno Polje"
@@ -16800,10 +16846,6 @@ msgstr "Nema upozorenja za danas"
msgid "No automatic optimization suggestions available."
msgstr "Nema dostupnih prijedloga za automatsku optimizaciju."
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr "U sadržaju e-pošte nisu pronađene neispravne veze"
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "Nema promjena u dokumentu"
@@ -16840,7 +16882,7 @@ msgstr "Još nema dodanih kontakata."
msgid "No contacts linked to document"
msgstr "Nema kontakata povezanih s dokumentom"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "Nema podataka za izvoz"
@@ -16860,7 +16902,7 @@ msgstr "Nijedan račun e-pošte nije povezan s korisnikom. Dodajte račun pod Ko
msgid "No failed logs"
msgstr "Nema neuspjelih zapisa"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "Nisu pronađena polja koja se mogu koristiti kao kolona Oglasne Table. Koristite formu za prilagođavanje da dodate prilagođeno polje tipa \"Odaberi\"."
@@ -16919,7 +16961,7 @@ msgstr "Broj Redova (Max. 500)"
msgid "No of Sent SMS"
msgstr "Broj Poslanih SMS-ova"
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Nema dozvole za {0}"
@@ -17047,7 +17089,7 @@ msgstr "Nisu Podređeni Od"
msgid "Not Equals"
msgstr "Nije Jednako"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "Nije Pronađeno"
@@ -17073,7 +17115,7 @@ msgstr "Nije povezano ni sa jednim zapisom"
msgid "Not Nullable"
msgstr "Nemože se Nulirati"
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17082,7 +17124,7 @@ msgstr "Nemože se Nulirati"
msgid "Not Permitted"
msgstr "Nije Dozvoljeno"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr "Nije Dozvoljeno čitati {0}"
@@ -17110,7 +17152,6 @@ msgstr "Nije Viđeno"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "Nije Poslano"
@@ -17143,7 +17184,7 @@ msgstr "Nije važeći korisnik"
msgid "Not active"
msgstr "Nije aktivno"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "Nije dozvoljeno za {0}: {1}"
@@ -17577,6 +17618,10 @@ msgstr "Pomak X"
msgid "Offset Y"
msgstr "Pomak Y"
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr "Pomak mora biti cijeli broj koji nije negativan"
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "Stara Lozinka"
@@ -17750,7 +17795,7 @@ msgstr "Samo Upravitelj Radnog Prostorar može uređivati javne radne prostore"
msgid "Only allowed to export customizations in developer mode"
msgstr "Dozvoljeno je izvoziti prilagođavanja samo u načinu rada za programere"
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr "Mogu se odbaciti samo nacrti dokumenata"
@@ -17922,7 +17967,7 @@ msgstr "Otvoreno"
msgid "Operation"
msgstr "Operacija"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "Operator mora biti jedan od {0}"
@@ -18021,6 +18066,10 @@ msgstr "Narandžasta"
msgid "Order"
msgstr "Red"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr "Sortiraj Po mora biti niz"
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18416,7 +18465,7 @@ msgstr "Nadređeni je naziv dokumenta u koji će se dodati podaci."
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr "Grupiranje roditelj-dijete ili dijete-roditelj nije dozvoljeno."
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr "Nadređeno polje nije navedeno u {0}: {1}"
@@ -18538,10 +18587,6 @@ msgstr "Lozinke se ne podudaraju"
msgid "Passwords do not match!"
msgstr "Lozinke se ne podudaraju!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr "Prošli datumi nisu dozvoljeni za zakazivanje."
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "Zalijepi"
@@ -18687,7 +18732,7 @@ msgstr "Trajno Podnesi {0}?"
msgid "Permanently delete {0}?"
msgstr "Trajno izbriši {0}?"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "Greška Dozvole"
@@ -18839,7 +18884,7 @@ msgstr "Telefon"
msgid "Phone No."
msgstr "Broj Telefona."
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Telefonski Broj {0} postavljen u polje {1} nije važeći."
@@ -19112,10 +19157,6 @@ msgstr "Ukloni mapiranje pisača u Postavkama Pisača i pokušaj ponovo."
msgid "Please save before attaching."
msgstr "Spremi prije prilaganja."
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "Spremi bilten prije slanja"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "Spremi dokument prije dodjele"
@@ -19148,7 +19189,7 @@ msgstr "Odaberi Minimalnu Vrijednost Lozinke"
msgid "Please select X and Y fields"
msgstr "Odaberi X i Y polja"
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr "Odaberi pozivni broj zemlje za polje {1}."
@@ -19164,7 +19205,7 @@ msgstr "Odaberi datoteku ili url"
msgid "Please select a valid csv file with data"
msgstr "Odaberi važeću csv datoteku sa podacima"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "Odaberi važeći filter datuma"
@@ -19242,7 +19283,7 @@ msgstr "Podesi standard odlazni račun e-pošte iz Alati > Račun e-pošte"
msgid "Please specify"
msgstr "Navedi"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr "Navedi važeći nadređeni DocType za {0}"
@@ -19279,10 +19320,6 @@ msgstr "Ažuriraj {} prije nego nastavite."
msgid "Please use a valid LDAP search filter"
msgstr "Koristi važeći LDAP filter za pretraživanje"
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "Potvrdi vašu adresu e-pošte"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "Za više informacija posjeti https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key."
@@ -19376,6 +19413,10 @@ msgstr "Objave od {0}"
msgid "Posts filed under {0}"
msgstr "Objave zavedene pod {0}"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr "Potencijalno opasan sadržaj u niz literalu: {0}"
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19435,7 +19476,7 @@ msgstr "Analitika Pripremljenog Izvještaja"
msgid "Prepared Report User"
msgstr "Korisnik Pripremljenog Izvještaja"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr "Generisanje Pripremljenog Izvještaja nije uspjelo"
@@ -19464,8 +19505,6 @@ msgstr "Pritisni Enter da spremite"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19853,7 +19892,7 @@ msgstr "Profil"
msgid "Progress"
msgstr "Napredak"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "Projekat"
@@ -19948,14 +19987,7 @@ msgstr "Javne Datoteke (MB)"
msgid "Publish"
msgstr "Objavi"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr "Objavi kao web stranicu"
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19963,7 +19995,6 @@ msgstr "Objavi kao web stranicu"
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -20138,7 +20169,7 @@ msgstr "Izvještaj Upita"
msgid "Query analysis complete. Check suggested indexes."
msgstr "Analiza Upita završena. Provjeri predložene indekse."
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr "Upit mora biti tipa SELECT ili samo za čitanje WITH."
@@ -20184,7 +20215,6 @@ msgstr "Red(ovi)"
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "U Redu"
@@ -20207,19 +20237,11 @@ msgstr "U Redu za Podnošenje. Možete pratiti napredak preko {0}."
msgid "Queued for backup. You will receive an email with the download link"
msgstr "U Redu za Sigurnosno Kopiranje. Primit ćete e-poruku s vezom za preuzimanje"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr "Broj poruka e-pošte u redu čekanja {0}"
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr "Redovi"
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr "E-pošta u redu čekanja..."
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr "U redu za Podnošenje {0}"
@@ -20420,7 +20442,7 @@ msgstr "Čitanje Primatelja Omogućeno"
msgid "Read mode"
msgstr "Način Čitanja"
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr "Pročitaj dokumentaciju da biste saznali više"
@@ -21287,7 +21309,7 @@ msgstr "Granica Izvještaja Dostignuta"
msgid "Report timed out."
msgstr "Izvještaj je istekao."
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "Izvještaj je uspješno ažuriran"
@@ -21308,7 +21330,7 @@ msgstr "Izvještaj {0}"
msgid "Report {0} deleted"
msgstr "Izvještaj {0} izbrisan"
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "Izvještaj {0} je onemogućen"
@@ -21641,10 +21663,8 @@ msgstr "Opozovi"
msgid "Revoked"
msgstr "Opozvano"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21855,7 +21875,6 @@ msgstr "Metoda Zaokruživanja"
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21869,7 +21888,6 @@ msgstr "Metoda Zaokruživanja"
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21987,7 +22005,7 @@ msgstr "Pravilo"
msgid "Rule Conditions"
msgstr "Uslovi Pravila"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Pravilo za ovu kombinaciju tipa dokumenta, uloge, nivoa dozvole i vlasnika već postoji."
@@ -22176,11 +22194,11 @@ msgstr "Subota"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22272,32 +22290,17 @@ msgstr "Skenirajte QR Kod i unesi prikazani rezultirajući kod."
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr "Raspored"
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr "Zakaži Bilten"
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr "Raspored Slanja"
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr "Zakaži Slanje"
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr "Zakažite slanje za kasnije"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "Zakazano"
@@ -22331,17 +22334,6 @@ msgstr "Tip Zakazanog Posla"
msgid "Scheduled Jobs Logs"
msgstr "Zapisnik Zakazanih Poslova"
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr "Zakazano Slanje"
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "Zakazano Slanje"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "Zakazano izvršenje za skriptu {0} je ažurirano"
@@ -22553,6 +22545,11 @@ msgstr "Traži..."
msgid "Searching ..."
msgstr "Pretraživanje u toku..."
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr "Sekundi"
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22942,9 +22939,7 @@ msgstr "Odaberi {0}"
msgid "Self approval is not allowed"
msgstr "Samoodobrenje nije dozvoljeno"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "Pošalji"
@@ -22975,11 +22970,6 @@ msgstr "Pošalji Upozorenje"
msgid "Send Email Alert"
msgstr "Pošalji Upozorenje e-poštom"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr "Pošalji e-poštu"
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -23037,38 +23027,16 @@ msgstr "Pošalji Potvrdu o Čitanju"
msgid "Send System Notification"
msgstr "Pošalji Sistemsko Obaveštenje"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr "Pošalji Probnu e-poštu"
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "Pošalji svim Dodjeljnim"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "Pošalji Vezu Odjave"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr "Pošalji vezu za Web Pregled"
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "Pošalji e-poštu Dobrodošlice"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr "Pošalji Probnu e-poštu"
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr "Pošalji ponovo"
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -23116,10 +23084,6 @@ msgstr "Pošalji Vezu Prijave"
msgid "Send me a copy"
msgstr "Pošalji Mi Kopiju"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr "Pošalji sada"
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -23135,19 +23099,15 @@ msgstr "Pošaljite poruku za odjavu putem e-pošte"
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "Pošiljatelj"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "E-pošta Pošiljatelja"
@@ -23164,9 +23124,7 @@ msgid "Sender Field should have Email in options"
msgstr "Polje Pošiljatelja treba da ima opciju E-pošta"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr "Ime Pošiljatelja"
@@ -23186,18 +23144,9 @@ msgstr "Sendgrid"
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "Šalje se"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr "Šalje se e-pošta"
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr "Slanje u toku..."
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23205,8 +23154,6 @@ msgstr "Slanje u toku..."
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "Poslano"
@@ -23276,7 +23223,7 @@ msgstr "Serija Imenovanja {0} se već koristi u {1}"
msgid "Server Action"
msgstr "Radnja Servera"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Greška Servera"
@@ -23295,7 +23242,7 @@ msgstr "IP Servera"
msgid "Server Script"
msgstr "Server Skripta"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "Server Skripte su onemogućene. Omogućite server skripte iz bench konfiguracije."
@@ -23334,15 +23281,15 @@ msgstr "Standard Postavke Sesije"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "Standard Sesije"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "Standard Postavke Sesije Spremljene"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "Sesija Istekla"
@@ -23596,7 +23543,7 @@ msgstr "Postavljanje vašeg sistema"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24679,7 +24626,6 @@ msgstr "Vremenski Interval Statistike"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24704,7 +24650,6 @@ msgstr "Vremenski Interval Statistike"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24845,8 +24790,6 @@ msgstr "Poddomena"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24855,7 +24798,6 @@ msgstr "Poddomena"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25226,7 +25168,7 @@ msgstr "Sinhronizacija u toku"
msgid "Syncing {0} of {1}"
msgstr "Sinhronizira se {0} od {1}"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr "Greška Sintakse"
@@ -25533,7 +25475,7 @@ msgstr "Tabela Optimizirana"
msgid "Table updated"
msgstr "Tabela Ažurirana"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "Tabela {0} ne može biti prazna"
@@ -25660,10 +25602,6 @@ msgstr "ID Test Posla"
msgid "Test Spanish"
msgstr "Test Španski"
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "Probna e-pošta poslana na {0}"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Test Mapa"
@@ -25731,10 +25669,6 @@ msgstr "Hvala vam na poruci e-pošte"
msgid "Thank you for your feedback!"
msgstr "Hvala vam na povratnim informacijama!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "Hvala vam na interesovanju da se pretplatite na naša ažuriranja"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr "Hvala vam na poruci"
@@ -25929,7 +25863,7 @@ msgstr "Veza za poništavanje lozinke je istekla"
msgid "The reset password link has either been used before or is invalid"
msgstr "Veza za poništavanje lozinke je ili ranije korištena ili je nevažeća"
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Resurs koji tražite nije dostupan"
@@ -25941,7 +25875,7 @@ msgstr "Uloga {0} bi trebala biti prilagođena uloga."
msgid "The selected document {0} is not a {1}."
msgstr "Odabrani dokument {0} nije {1}."
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Sistem se ažurira. Osvježite ponovo nakon nekoliko trenutaka."
@@ -26094,7 +26028,7 @@ msgstr "Autentifikacija Trećeih Strane"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Ova valuta je onemogućena. Omogućite korištenje u transakcijama"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "Ova Oglasna Tabla će biti privatna"
@@ -26118,7 +26052,7 @@ msgstr "Ove Godine"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Ova radnja je nepovratna. Da li želite da nastavite?"
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "Ova radnja je dozvoljena samo za {}"
@@ -26282,14 +26216,6 @@ msgstr "Ovo se može ispisati na više stranica"
msgid "This month"
msgstr "Ovog mjeseca"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr "Ovaj bilten je planiran za slanje {0}"
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr "Slanje ovog biltena bilo je planirano za neki kasniji datum. Jeste li sigurni da ga želite sada poslati?"
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Ovaj izvještaj sadrži {0} redova i prevelik je za prikaz u pretraživaču, umjesto toga možete {1} ovaj izvještaj."
@@ -26402,7 +26328,6 @@ msgstr "Četvrtak"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Vrijeme"
@@ -26628,10 +26553,8 @@ msgid "Title of the page"
msgstr "Naziv stranice"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "Za"
@@ -26914,7 +26837,7 @@ msgstr "Vrh Desno"
msgid "Topic"
msgstr "Tema"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26942,16 +26865,8 @@ msgstr "Ukupno Slika"
msgid "Total Outgoing Emails"
msgstr "Ukupno Odlazne e-pošte"
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr "Ukupno Primatelja"
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "Ukupno Pretplatnika"
@@ -26960,11 +26875,6 @@ msgstr "Ukupno Pretplatnika"
msgid "Total Users"
msgstr "Ukupno Korisnika"
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr "Ukupno Pregleda"
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27364,23 +27274,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "URL na koji ćete otići nakon klika na sliku slajdova"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr "UTM Kampanja"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr "UTM Medij"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr "UTM Izvor"
@@ -27430,7 +27334,7 @@ msgstr "Nije moguće napisati format datoteke za {0}"
msgid "Unassign Condition"
msgstr "Poništi Dodjelu Uslova"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr "Neuhvaćena Iznimka"
@@ -27446,6 +27350,10 @@ msgstr "Poništi"
msgid "Undo last action"
msgstr "Poništi posljednju radnju"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr "Neizbjegnuti navodnici u niz literalu: {0}"
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27478,7 +27386,7 @@ msgstr "Nepoznato"
msgid "Unknown Column: {0}"
msgstr "Nepoznata Kolona: {0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr "Nepoznata Metoda Zaokruživanja: {}"
@@ -27511,7 +27419,7 @@ msgstr "Nepročitano"
msgid "Unread Notification Sent"
msgstr "Nepročitana Obavijest Poslana"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr "Nesiguran SQL upit"
@@ -27525,7 +27433,7 @@ msgstr "Poništi Odabir Svih"
msgid "Unshared"
msgstr "Nedijeljeno"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "Otkaži Pretplatu"
@@ -27549,6 +27457,11 @@ msgstr "Parametri Otkazivanja"
msgid "Unsubscribed"
msgstr "Otkazano"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr "Nepodržana funkcija ili nevažeći naziv polja: {0}"
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "Kolona bez Naziva"
@@ -27671,7 +27584,7 @@ msgstr "Ažurirano na Novu Verziju 🎉"
msgid "Updated successfully"
msgstr "Uspješno Ažurirano"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "Ažuriranje"
@@ -28406,7 +28319,7 @@ msgstr "Vrijednost je Prevelika"
msgid "Value {0} missing for {1}"
msgstr "Nedostaje vrijednost {0} za {1}"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "Vrijednost {0} mora biti u važećem formatu trajanja: d h m s"
@@ -28831,7 +28744,6 @@ msgstr "Webhook URL"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28839,9 +28751,7 @@ msgid "Website"
msgstr "Web Stranica"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "Analiza Web Stranice"
@@ -29277,7 +29187,7 @@ msgstr "Radni Tok je uspješno ažuriran"
msgid "Workspace"
msgstr "Radni Prostor"
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr "Radni Prostor {0} ne postoji"
@@ -29500,11 +29410,11 @@ msgstr "Predstavljate se kao neki drugi korisnik."
msgid "You are not allowed to access this resource"
msgstr "Nije vam dozvoljen pristup ovom resursu"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "Nije vam dozvoljen pristup ovom {0} zapisu jer je povezan sa {1} '{2}' u polju {3}"
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "Nije vam dozvoljen pristup ovom zapisu {0} jer je povezan s {1} '{2}' u redu {3}, polju {4}"
@@ -29527,7 +29437,7 @@ msgstr "Nije vam dozvoljeno uređivati izvještaj."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "Nije vam dozvoljeno da izvezete {} doctype"
@@ -29555,7 +29465,7 @@ msgstr "Nije vam dozvoljen pristup ovoj stranici bez prijave."
msgid "You are not permitted to access this page."
msgstr "Nije vam dozvoljen pristup ovoj stranici."
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr "Nemate dozvolu za pristup ovom resursu. Prijavite se za pristup"
@@ -29650,7 +29560,7 @@ msgstr "Možete odabrati jedan od sljedećih,"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "Ovdje možete postaviti visoku vrijednost ako će se više korisnika prijavljivati sa iste mreže."
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "Možete pokušati promijeniti filtere vašeg izvještaja."
@@ -29727,11 +29637,15 @@ msgstr "Nemate dozvole za Čitanje ili Odabir za {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Nemate dovoljno dozvola za pristup ovom resursu. Kontaktiraj svog odgovornog da dobijete pristup."
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "Nemate dovoljno dozvola da dovršite radnju"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr "Nemate dozvolu za pristup polju: {0}"
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr "Nemate dozvolu za pristup {0}: {1}."
@@ -29739,7 +29653,7 @@ msgstr "Nemate dozvolu za pristup {0}: {1}."
msgid "You do not have permissions to cancel all linked documents."
msgstr "Nemate dozvole za otkazivanje svih povezanih dokumenata."
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "Nemate pristup Izvještaju: {0}"
@@ -29747,11 +29661,11 @@ msgstr "Nemate pristup Izvještaju: {0}"
msgid "You don't have permission to access the {0} DocType."
msgstr "Nemate dozvolu za pristup {0} DocType."
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "Nemate dozvolu za pristup ovoj datoteci"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "Nemate dozvolu da preuzmete izvještaj o: {0}"
@@ -29844,7 +29758,7 @@ msgstr "Morate biti korisnik sistema da biste pristupili ovoj stranici."
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Morate biti u modu programera da biste uredili Standardni Web Formu"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Morate biti prijavljeni i imati ulogu Upravitelja Sistema da biste mogli pristupiti sigurnosnim kopijama."
@@ -30010,7 +29924,7 @@ msgstr "Ime vaše organizacije i adresa za podnožje e-pošte."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Vaš upit je primljen. Odgovorit ćemo vam uskoro. Ako imate dodatnih informacija, odgovorite na ovu poruku e-pošte."
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "Vaša sesija je istekla, prijavite se ponovo da nastavite."
@@ -30022,7 +29936,7 @@ msgstr "Vaša je stranica u toku održavanja ili ažuriranja."
msgid "Your verification code is {0}"
msgstr "Vaš verifikacioni kod je {0}"
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "Nula"
@@ -30069,7 +29983,7 @@ msgstr "nakon_umetanja"
msgid "amend"
msgstr "izmijeni"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "i"
@@ -30126,7 +30040,7 @@ msgstr "kreiraj"
msgid "cyan"
msgstr "cijan"
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30241,7 +30155,7 @@ msgstr "e-pošta"
msgid "email inbox"
msgstr "prijemno sanduče e-pošte"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "prazno"
@@ -30293,7 +30207,7 @@ msgstr "siva"
msgid "gzip not found in PATH! This is required to take a backup."
msgstr "gzip nije pronađen u PATH! Ovo je potrebno za izradu sigurnosne kopije."
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30327,7 +30241,7 @@ msgstr "jane@example.com"
msgid "just now"
msgstr "upravo sada"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr "oznaka"
@@ -30367,7 +30281,7 @@ msgstr "prijava_potrebna"
msgid "long"
msgstr "dugo"
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30557,7 +30471,7 @@ msgstr "odgovor"
msgid "restored {0} as {1}"
msgstr "vraćeno {0} kao {1}"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30892,7 +30806,7 @@ msgstr "{0} je već odjavljen"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} je već otkazan za {1} {2}"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} i {1}"
@@ -30998,6 +30912,10 @@ msgstr "{0} ne postoji u redu {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "Polje {0} ne može se postaviti kao jedinstveno u {1}, budući da postoje nejedinstvene vrijednosti"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr "Polja {0} ne mogu sadržavati povratne naznake (`): {1}"
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "{0} format nije mogao biti određen iz vrijednosti u ovoj koloni. Standard je {1}."
@@ -31018,10 +30936,6 @@ msgstr "{0} h"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} je već dodijelio(la) standard vrijednost za {1}."
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} je uspješno dodan u grupu e-pošte."
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} je napustio(la) konverzaciju u {1} {2}"
@@ -31092,6 +31006,10 @@ msgstr "{0} je kao {1}"
msgid "{0} is mandatory"
msgstr "{0} je obavezan"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr "{0} nije podređena tabela od {1}"
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr "{0} nije polje tipa dokumenta {1}"
@@ -31113,7 +31031,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} nije važeća DocType za dinamičku vezu"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0} nije važeća adresa e-pošte"
@@ -31121,11 +31039,11 @@ msgstr "{0} nije važeća adresa e-pošte"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} nije važeći ISO 3166 ALPHA-2 kod."
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0} nije važeće Ime"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} nije ispravan broj telefona"
@@ -31133,11 +31051,11 @@ msgstr "{0} nije ispravan broj telefona"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} nije važeće Stanje Radnog Toka. Ažuriraj Radni Tok i pokušaj ponovo."
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} nije važeći nadređeni DocType za {1}"
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} nije važeće nadređeno polje za {1}"
@@ -31225,23 +31143,23 @@ msgstr "prije {0} minuta"
msgid "{0} months ago"
msgstr "{0} mjeseci prije"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0} mora biti iza {1}"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr "{0} mora početi sa '{1}'"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr "{0} mora biti jednako '{1}'"
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr "{0} ne smije biti ni jedna od {1}"
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} mora biti jedan od {1}"
@@ -31253,7 +31171,7 @@ msgstr "{0} se mora prvo postaviti"
msgid "{0} must be unique"
msgstr "{0} mora biti jedinstven"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr "{0} mora biti {1} {2}"
@@ -31282,16 +31200,12 @@ msgstr "{0} od {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} od {1} ({2} redovi sa potomcima)"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr "{0} od {1} poslano"
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr "Samo {0}."
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} ili {1}"
@@ -31328,11 +31242,11 @@ msgstr "{0} je uklonio(la) svoju dodjelu."
msgid "{0} role does not have permission on any doctype"
msgstr "{0} uloga nema dozvolu ni za jedan tip dokumenta"
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr "{0} red #{1}: "
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0} uspješno spremljen"
@@ -31444,7 +31358,7 @@ msgstr "{0} {1} ne postoji, odaberi novi cilj za spajanje"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} je povezan sa sljedećim podesenim dokumentima: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} nije pronađeno"
@@ -31597,11 +31511,11 @@ msgstr "{{{0}}} nije važeća forma naziva polja. Trebalo bi da bude {{field_nam
msgid "{} Complete"
msgstr "{} Završeno"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr "{} Nevažeći python kod na liniji {}"
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Možda nevažeći python kod.
{}"
@@ -31623,7 +31537,7 @@ msgstr "Polje {} ne može biti prazno."
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr "{} je onemogućen. Može se omogućiti samo ako je označeno {}."
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{} nije ispravan datumski niz."
diff --git a/frappe/locale/cs.po b/frappe/locale/cs.po
index 5085672df2..939db438e0 100644
--- a/frappe/locale/cs.po
+++ b/frappe/locale/cs.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:41\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Czech\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -850,7 +850,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr ""
@@ -1489,6 +1489,14 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1529,7 +1537,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1974,7 +1981,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2092,7 +2099,7 @@ msgstr ""
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr ""
@@ -2306,10 +2313,6 @@ msgstr ""
msgid "Are you sure you want to save this document?"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr ""
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2563,9 +2566,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr ""
@@ -2592,10 +2593,7 @@ msgid "Attachment Removed"
msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2613,11 +2611,6 @@ msgstr ""
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3044,7 +3037,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr ""
@@ -3772,9 +3765,7 @@ msgstr ""
msgid "Camera"
msgstr ""
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3860,10 +3851,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4157,7 +4144,7 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr ""
@@ -4325,10 +4312,6 @@ msgstr ""
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4352,10 +4335,6 @@ msgstr ""
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr ""
@@ -4402,6 +4381,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4491,10 +4474,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4836,7 +4815,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr ""
@@ -5156,17 +5135,12 @@ msgstr ""
msgid "Confirm Request"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr ""
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr ""
@@ -5297,8 +5271,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5306,7 +5278,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5331,10 +5302,8 @@ msgstr ""
msgid "Content Hash"
msgstr ""
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5440,6 +5409,10 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5495,7 +5468,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5626,11 +5599,6 @@ msgstr ""
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -5979,6 +5947,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6036,7 +6008,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr ""
@@ -6329,7 +6301,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6393,6 +6364,11 @@ msgstr ""
msgid "Day of Week"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6660,6 +6636,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6972,6 +6949,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7725,7 +7703,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8343,7 +8321,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8437,11 +8414,9 @@ msgstr ""
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr ""
@@ -8514,18 +8489,11 @@ msgstr ""
msgid "Email Rule"
msgstr ""
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr ""
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8632,10 +8600,18 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9099,6 +9075,14 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9295,6 +9279,10 @@ msgstr ""
msgid "Expand All"
msgstr ""
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -9826,7 +9814,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9842,7 +9830,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -9894,6 +9882,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10059,6 +10051,14 @@ msgstr ""
msgid "Filter Values"
msgstr ""
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10302,10 +10302,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10722,10 +10718,8 @@ msgid "Friday"
msgstr ""
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr ""
@@ -10806,10 +10800,14 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr ""
@@ -11291,6 +11289,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr ""
@@ -11339,7 +11341,6 @@ msgstr ""
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11353,7 +11354,6 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11862,6 +11862,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr ""
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12627,11 +12632,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12783,11 +12788,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12937,7 +12942,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr ""
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr ""
@@ -12945,7 +12950,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -12957,6 +12962,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13021,7 +13031,7 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13065,10 +13075,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13081,10 +13119,26 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13093,11 +13147,26 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13119,10 +13188,22 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr ""
@@ -13564,11 +13645,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14280,6 +14361,10 @@ msgstr ""
msgid "Limit"
msgstr ""
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14543,6 +14628,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15061,11 +15147,9 @@ msgstr ""
msgid "Mark as Unread"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15254,7 +15338,6 @@ msgstr ""
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15267,7 +15350,6 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15282,16 +15364,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr ""
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr ""
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15415,7 +15487,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15465,6 +15537,11 @@ msgstr ""
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15860,7 +15937,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr ""
@@ -16048,6 +16125,10 @@ msgstr ""
msgid "Negative Value"
msgstr ""
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr ""
@@ -16130,7 +16211,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr ""
@@ -16274,48 +16355,13 @@ msgstr ""
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr ""
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr ""
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16577,7 +16623,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16605,10 +16651,6 @@ msgstr ""
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr ""
@@ -16645,7 +16687,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr ""
@@ -16665,7 +16707,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16724,7 +16766,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16852,7 +16894,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16878,7 +16920,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16887,7 +16929,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -16915,7 +16957,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr ""
@@ -16948,7 +16989,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17382,6 +17423,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr ""
@@ -17555,7 +17600,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17727,7 +17772,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr ""
@@ -17826,6 +17871,10 @@ msgstr ""
msgid "Order"
msgstr ""
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18221,7 +18270,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18343,10 +18392,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr ""
@@ -18492,7 +18537,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr ""
@@ -18644,7 +18689,7 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -18917,10 +18962,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr ""
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr ""
@@ -18953,7 +18994,7 @@ msgstr ""
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -18969,7 +19010,7 @@ msgstr ""
msgid "Please select a valid csv file with data"
msgstr ""
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr ""
@@ -19047,7 +19088,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19084,10 +19125,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr ""
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19181,6 +19218,10 @@ msgstr ""
msgid "Posts filed under {0}"
msgstr ""
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19240,7 +19281,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19269,8 +19310,6 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19658,7 +19697,7 @@ msgstr ""
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr ""
@@ -19753,14 +19792,7 @@ msgstr ""
msgid "Publish"
msgstr ""
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19768,7 +19800,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19943,7 +19974,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -19989,7 +20020,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr ""
@@ -20012,19 +20042,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20225,7 +20247,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21092,7 +21114,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr ""
@@ -21113,7 +21135,7 @@ msgstr ""
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr ""
@@ -21446,10 +21468,8 @@ msgstr ""
msgid "Revoked"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21660,7 +21680,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21674,7 +21693,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21792,7 +21810,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -21981,11 +21999,11 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22077,32 +22095,17 @@ msgstr ""
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr ""
@@ -22136,17 +22139,6 @@ msgstr ""
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr ""
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr ""
@@ -22358,6 +22350,11 @@ msgstr ""
msgid "Searching ..."
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22747,9 +22744,7 @@ msgstr ""
msgid "Self approval is not allowed"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr ""
@@ -22780,11 +22775,6 @@ msgstr ""
msgid "Send Email Alert"
msgstr ""
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22842,38 +22832,16 @@ msgstr ""
msgid "Send System Notification"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr ""
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr ""
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22921,10 +22889,6 @@ msgstr ""
msgid "Send me a copy"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22940,19 +22904,15 @@ msgstr ""
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr ""
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr ""
@@ -22969,9 +22929,7 @@ msgid "Sender Field should have Email in options"
msgstr ""
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -22991,18 +22949,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23010,8 +22959,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr ""
@@ -23081,7 +23028,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23100,7 +23047,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23139,15 +23086,15 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr ""
@@ -23377,7 +23324,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24460,7 +24407,6 @@ msgstr ""
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24485,7 +24431,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24626,8 +24571,6 @@ msgstr ""
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24636,7 +24579,6 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25007,7 +24949,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25314,7 +25256,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25441,10 +25383,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr ""
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25510,10 +25448,6 @@ msgstr ""
msgid "Thank you for your feedback!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr ""
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25702,7 +25636,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25714,7 +25648,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25867,7 +25801,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr ""
@@ -25891,7 +25825,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr ""
@@ -26051,14 +25985,6 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26171,7 +26097,6 @@ msgstr ""
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26397,10 +26322,8 @@ msgid "Title of the page"
msgstr ""
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr ""
@@ -26677,7 +26600,7 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26705,16 +26628,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr ""
@@ -26723,11 +26638,6 @@ msgstr ""
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27124,23 +27034,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27190,7 +27094,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27206,6 +27110,10 @@ msgstr ""
msgid "Undo last action"
msgstr ""
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27238,7 +27146,7 @@ msgstr ""
msgid "Unknown Column: {0}"
msgstr ""
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27271,7 +27179,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27285,7 +27193,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr ""
@@ -27309,6 +27217,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr ""
@@ -27431,7 +27344,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr ""
@@ -28166,7 +28079,7 @@ msgstr ""
msgid "Value {0} missing for {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr ""
@@ -28591,7 +28504,6 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28599,9 +28511,7 @@ msgid "Website"
msgstr ""
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr ""
@@ -29037,7 +28947,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29260,11 +29170,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29287,7 +29197,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29315,7 +29225,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29410,7 +29320,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29487,11 +29397,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29499,7 +29413,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr ""
@@ -29507,11 +29421,11 @@ msgstr ""
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr ""
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr ""
@@ -29604,7 +29518,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29770,7 +29684,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29782,7 +29696,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr ""
@@ -29829,7 +29743,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -29886,7 +29800,7 @@ msgstr ""
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30001,7 +29915,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30053,7 +29967,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30087,7 +30001,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30127,7 +30041,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30317,7 +30231,7 @@ msgstr ""
msgid "restored {0} as {1}"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30652,7 +30566,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr ""
@@ -30758,6 +30672,10 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30778,10 +30696,6 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr ""
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -30852,6 +30766,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -30873,7 +30791,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -30881,11 +30799,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -30893,11 +30811,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -30985,23 +30903,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -31013,7 +30931,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31042,16 +30960,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr ""
@@ -31088,11 +31002,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr ""
@@ -31204,7 +31118,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
@@ -31357,11 +31271,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31383,7 +31297,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr ""
diff --git a/frappe/locale/de.po b/frappe/locale/de.po
index b52c8d6edc..321d6d449a 100644
--- a/frappe/locale/de.po
+++ b/frappe/locale/de.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: German\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "\"In der Listenansicht\" nicht erlaubt für den Typ {0} in Zeile {1}"
msgid "'Recipients' not specified"
msgstr "Keine \"Empfänger\" angegeben"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "'{0} ist keine gültige URL"
@@ -1035,7 +1035,7 @@ msgstr "Aktion / Route"
msgid "Action Complete"
msgstr "Aktion abgeschlossen"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "Aktion fehlgeschlagen"
@@ -1674,6 +1674,14 @@ msgstr "Hinweis"
msgid "Alerts and Notifications"
msgstr "Warnungen und Benachrichtigungen"
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1714,7 +1722,6 @@ msgstr "Wert anordnen"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -2160,7 +2167,7 @@ msgstr "Berichtigung nicht erlaubt"
msgid "Amendment naming rules updated."
msgstr "Benennungsregeln für Berichtigungen aktualisiert."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr "Beim Festlegen der Sitzungsstandards ist ein Fehler aufgetreten"
@@ -2278,7 +2285,7 @@ msgstr "App-Name"
msgid "App not found for module: {0}"
msgstr "App nicht gefunden für Modul: {0}"
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "App {0} ist nicht installiert"
@@ -2492,10 +2499,6 @@ msgstr "Möchten Sie wirklich alle Anpassungen zurücksetzen?"
msgid "Are you sure you want to save this document?"
msgstr "Sind Sie sicher, dass Sie dieses Dokument speichern möchten?"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "Sind Sie sicher, dass Sie diesen Newsletter jetzt senden möchten?"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2749,9 +2752,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr "Angehängt an Name muss eine Zeichenfolge oder eine Ganzzahl sein"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "Anhang"
@@ -2778,10 +2779,7 @@ msgid "Attachment Removed"
msgstr "Anlage entfernt"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2799,11 +2797,6 @@ msgstr "Es wird versucht, QZ Tray zu starten ..."
msgid "Attribution"
msgstr "Namensnennung"
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr "Zielgruppe"
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3230,7 +3223,7 @@ msgstr "Hintergrundbild"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr "Hintergrundprozesse"
@@ -3959,9 +3952,7 @@ msgstr "Rückruftitel"
msgid "Camera"
msgstr "Kamera"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -4047,10 +4038,6 @@ msgstr "Alle stornieren"
msgid "Cancel All Documents"
msgstr "Alle Dokumente abbrechen"
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr "Planung abbrechen"
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4344,7 +4331,7 @@ msgstr "Kategoriebeschreibung"
msgid "Category Name"
msgstr "Kategoriename"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr "Cent"
@@ -4513,10 +4500,6 @@ msgstr "Kontrollkästchen"
msgid "Check Request URL"
msgstr "Anfrage-URL prüfen"
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr "Überprüfe kaputte Links"
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr "Markieren Sie Spalten, um sie auszuwählen, ziehen Sie sie, um die Reihenfolge festzulegen."
@@ -4540,10 +4523,6 @@ msgstr "Aktivieren, falls der Benutzer gezwungen sein soll, vor dem Speichern ei
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr "Aktivieren Sie diese Option, um den vollständigen numerischen Wert anzuzeigen (z.B. 1.234.567 statt 1,2M)."
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr "Überprüfe kaputte Links..."
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "Einen Moment bitte, Überprüfung läuft."
@@ -4590,6 +4569,10 @@ msgstr "Untertabelle {0} für Feld {1}"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Untergeordnete Tabellen werden in anderen DocTypes als Raster angezeigt"
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "Wählen Sie Vorhandene Karte oder erstellen Sie eine neue Karte"
@@ -4679,10 +4662,6 @@ msgstr "Klicken Sie auf „Anpassen“, um Ihr erstes Widget hinzuzufügen"
msgid "Click here"
msgstr "Klicken Sie hier"
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "Hier klicken um die Richtigkeit zu bestätigen"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "Klicken Sie auf eine Datei, um sie auszuwählen."
@@ -5024,7 +5003,7 @@ msgstr "Spalten"
msgid "Columns / Fields"
msgstr "Spalten / Felder"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "Spalten basierend auf"
@@ -5346,17 +5325,12 @@ msgstr "Kennwort bestätigen"
msgid "Confirm Request"
msgstr "Anfrage bestätigen"
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "Email-Adresse bestätigen"
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "Bestätigungs-E-Mail-Vorlage"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "Bestätigt"
@@ -5487,8 +5461,6 @@ msgstr "Enthält {0} Sicherheitsfixes"
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5496,7 +5468,6 @@ msgstr "Enthält {0} Sicherheitsfixes"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5521,10 +5492,8 @@ msgstr "Inhalt (Markdown)"
msgid "Content Hash"
msgstr "Inhalts-Hash"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5630,6 +5599,10 @@ msgstr "{0} konnte nicht gefunden werden"
msgid "Could not map column {0} to field {1}"
msgstr "Die Spalte {0} konnte dem Feld {1} nicht zugeordnet werden."
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr "Konnte nicht gestartet werden: "
@@ -5685,7 +5658,7 @@ msgstr "Zähler"
msgid "Country"
msgstr "Land"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr "Landesvorwahl erforderlich"
@@ -5816,11 +5789,6 @@ msgstr "Neu erstellen: {0}"
msgid "Create a {0} Account"
msgstr "Ein {0} Konto erstellen"
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr "Erstellen und versenden Sie in regelmäßigen Abständen E-Mails an eine bestimmte Gruppe von Abonnenten."
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr "Druckformat erstellen oder bearbeiten"
@@ -6169,6 +6137,10 @@ msgstr "Benutzerdefinierte Übersetzung"
msgid "Custom field renamed to {0} successfully."
msgstr "Benutzerdefiniertes Feld erfolgreich in {0} umbenannt."
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6226,7 +6198,7 @@ msgstr "Dashboard anpassen"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "Formular anpassen"
@@ -6519,7 +6491,6 @@ msgstr "Datenbankversion"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6583,6 +6554,11 @@ msgstr "Tag"
msgid "Day of Week"
msgstr "Wochentag"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr "Tage"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6850,6 +6826,7 @@ msgstr "Verzögert"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -7162,6 +7139,7 @@ msgstr "Schreibtisch-Design"
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7917,7 +7895,7 @@ msgid "Document Types and Permissions"
msgstr "Dokumenttypen und Berechtigungen"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr "Dokument entsperrt"
@@ -8535,7 +8513,6 @@ msgstr "Element Selektor"
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8629,11 +8606,9 @@ msgstr "Signatur in der E-Mail-Fußzeile"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "E-Mail-Gruppe"
@@ -8706,18 +8681,11 @@ msgstr "E-Mail-Wiederholungslimit"
msgid "Email Rule"
msgstr "E-Mail-Regel"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "E-Mail gesendet"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr "E-Mail gesendet am"
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8824,10 +8792,18 @@ msgstr "E-Mails werden mit den nächsten möglichen Workflow-Aktionen gesendet"
msgid "Embed code copied"
msgstr "Einbettungscode kopiert"
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr "Leere Spalte"
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9292,6 +9268,14 @@ msgstr "Fehler in der Benachrichtigung"
msgid "Error in print format on line {0}: {1}"
msgstr "Fehler im Druckformat in Zeile {0}: {1}"
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "Fehler beim Verbinden mit dem E-Mail-Konto {0}"
@@ -9488,6 +9472,10 @@ msgstr "Erweitern"
msgid "Expand All"
msgstr "Alle ausklappen"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr "Experimentell"
@@ -10019,7 +10007,7 @@ msgstr "Feldname '{0}' im Konflikt mit einem {1} mit dem Namen {2} in {3}"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Der Feldname {0} muss existieren, um die automatische Benennung zu ermöglichen"
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Feldname ist auf 64 Zeichen ({0})"
@@ -10035,7 +10023,7 @@ msgstr "Feldname, der der DocType für dieses Verknüpfungsfeld sein wird."
msgid "Fieldname {0} appears multiple times"
msgstr "Feldname {0} erscheint mehrfach"
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Feldname {0} kann nicht Sonderzeichen wie {1} beinhalten"
@@ -10087,6 +10075,10 @@ msgstr "Felder `file_name` oder `file_url` müssen für die Datei gesetzt sein"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Felder müssen eine Liste oder ein Tupel sein, wenn as_list aktiviert ist"
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10252,6 +10244,14 @@ msgstr "Name des Filters"
msgid "Filter Values"
msgstr "Werte filtern"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr "Filter..."
@@ -10495,10 +10495,6 @@ msgstr "Den folgende Feldern fehlen Werte"
msgid "Following fields have missing values:"
msgstr "Den folgende Feldern fehlen Werte:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr "Die folgenden Links in der E-Mail sind defekt: {0}"
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10916,10 +10912,8 @@ msgid "Friday"
msgstr "Freitag"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "Von"
@@ -11000,10 +10994,14 @@ msgstr "Funktion"
msgid "Function Based On"
msgstr "Funktion basiert auf"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr "Funktion {0} ist nicht freigegeben."
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Weitere Knoten können nur unter Knoten vom Typ \"Gruppe\" erstellt werden"
@@ -11485,6 +11483,10 @@ msgstr "Nach Typ gruppieren"
msgid "Group By field is required to create a dashboard chart"
msgstr "Das Feld Gruppieren nach ist erforderlich, um ein Dashboard-Diagramm zu erstellen"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "Gruppen-Knoten"
@@ -11533,7 +11535,6 @@ msgstr "HH: mm: ss"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11547,7 +11548,6 @@ msgstr "HH: mm: ss"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -12056,6 +12056,11 @@ msgstr "Stündliche Wartung"
msgid "Hourly rate limit for generating password reset links"
msgstr "Stundensatzlimit zum Generieren von Links zum Zurücksetzen von Passwörtern"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "Stunden"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12821,11 +12826,11 @@ msgstr "Falscher Benutzer oder Passwort"
msgid "Incorrect Verification code"
msgstr "Falscher Bestätigungscode"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr "Falscher Wert in Zeile {0}:"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr "Falscher Wert:"
@@ -12977,11 +12982,11 @@ msgstr "Anweisungen"
msgid "Instructions Emailed"
msgstr "Anweisungen per E-Mail gesendet"
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr "Unzureichende Berechtigungsstufe für {0}"
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "Unzureichende Berechtigung für {0}"
@@ -13131,7 +13136,7 @@ msgstr "Ungültige Bedingung: {}"
msgid "Invalid Credentials"
msgstr "Ungültige Anmeldeinformationen"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "Ungültiges Datum"
@@ -13139,7 +13144,7 @@ msgstr "Ungültiges Datum"
msgid "Invalid DocType"
msgstr "Ungültiger DocType"
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr "Ungültiger DocType: {0}"
@@ -13151,6 +13156,11 @@ msgstr "Ungültiger Feldname"
msgid "Invalid File URL"
msgstr "Ungültige Datei-URL"
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr "Ungültiges Filterformat für Feld {0} des Typs {1}. Versuchen Sie, das Filtersymbol im Feld zu verwenden, um es korrekt zu setzen"
@@ -13215,7 +13225,7 @@ msgstr "Ungültige Parameter."
msgid "Invalid Password"
msgstr "Ungültiges Passwort"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr "Ungültige Telefonnummer"
@@ -13259,10 +13269,38 @@ msgstr "Ungültiges Webhook Geheimnis"
msgid "Invalid aggregate function"
msgstr "Ungültige Aggregatfunktion"
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "Ungültige Spalte"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "Ungültiger Status"
@@ -13275,10 +13313,26 @@ msgstr "Ungültiger Ausdruck in Filter {0} festgelegt"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Ungültiger Ausdruck im Filter {0} ({1}) gesetzt"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "Ungültiger Feldname {0}"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Ungültige Feldname '{0}' in auton"
@@ -13287,11 +13341,26 @@ msgstr "Ungültige Feldname '{0}' in auton"
msgid "Invalid file path: {0}"
msgstr "Ungültiger Dateipfad: {0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "Ungültiger Filter: {0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13313,10 +13382,22 @@ msgstr "Ungültiger oder beschädigter Inhalt für den Import"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Ungültige Weiterleitungs-Regex in Zeile #{}: {}"
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr "Ungültige Anfrageargumente"
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "Ungültige Vorlagendatei für den Import"
@@ -13758,11 +13839,11 @@ msgstr "Kanban-Tafel Spalte"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "Kanban-Tafel Name"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "Kanban-Einstellungen"
@@ -14474,6 +14555,10 @@ msgstr "Likes"
msgid "Limit"
msgstr "Limit"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14737,6 +14822,7 @@ msgid "Load Balancing"
msgstr "Lastverteilung"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15255,11 +15341,9 @@ msgstr "Als Spam markieren"
msgid "Mark as Unread"
msgstr "Als ungelesen markieren"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15448,7 +15532,6 @@ msgstr "Zusammenführung ist nur möglich zwischen Gruppen oder Knoten"
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15461,7 +15544,6 @@ msgstr "Zusammenführung ist nur möglich zwischen Gruppen oder Knoten"
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15476,16 +15558,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Nachricht"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "Nachricht (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "Nachricht (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15609,7 +15681,7 @@ msgstr "Metatitel für SEO"
msgid "Method"
msgstr "Methode"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr "Methode nicht erlaubt"
@@ -15659,6 +15731,11 @@ msgstr "Mindest-Passwort-Score"
msgid "Minor"
msgstr "Minor"
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr "Minuten"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -16054,7 +16131,7 @@ msgstr "Muss in '()' eingeschlossen sein und '{0}' enthalten, was ein Platzhalte
msgid "Must be of type \"Attach Image\""
msgstr "Muss vom Typ „Bild anhängen“ sein"
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "Um auf diesen Bericht zuzugreifen, muss eine Berichtsberechtigung vorliegen."
@@ -16244,6 +16321,10 @@ msgstr "Sie benötigen die Rolle des Workspace Managers, um den privaten Arbeits
msgid "Negative Value"
msgstr "Negativer Wert"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "Schachtelfehler. Bitte den Administrator kontaktieren."
@@ -16326,7 +16407,7 @@ msgstr "Neues Ereignis"
msgid "New Folder"
msgstr "Neuer Ordner"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "Neue Kanban-Tafel"
@@ -16470,48 +16551,13 @@ msgstr "Neue {} Versionen für die folgenden Apps sind verfügbar"
msgid "Newly created user {0} has no roles enabled."
msgstr "Der neu erstellte Benutzer {0} hat keine aktivierten Rollen."
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "Newsletter"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr "Newsletter-Anhang"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "Rundbrief E-Mail-Gruppe"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "Newsletter-Manager"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "Newsletter wurde bereits gesendet"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr "Newsletter muss veröffentlicht werden, um Webview-Link in der E-Mail zu senden"
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "Der Newsletter sollte mindestens einen Empfänger haben"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "Newsletter"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16773,7 +16819,7 @@ msgstr "Keine Ergebnisse gefunden"
msgid "No Roles Specified"
msgstr "Keine Rollen festgelegt"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr "Kein Auswahlfeld gefunden"
@@ -16801,10 +16847,6 @@ msgstr "Keine Warnungen für heute"
msgid "No automatic optimization suggestions available."
msgstr "Keine automatischen Optimierungsvorschläge verfügbar."
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr "Keine kaputten Links im E-Mail-Inhalt gefunden"
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "Keine Änderungen im Dokument"
@@ -16841,7 +16883,7 @@ msgstr "Noch keine Kontakte hinzugefügt."
msgid "No contacts linked to document"
msgstr "Keine Kontakte mit dem Dokument verknüpft"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "Keine zu exportierenden Daten"
@@ -16861,7 +16903,7 @@ msgstr "Dem Benutzer ist kein E-Mail-Konto zugeordnet. Bitte fügen Sie unter Be
msgid "No failed logs"
msgstr "Keine fehlgeschlagenen Protokolle"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "Keine Felder gefunden, die als Kanban-Spalte verwendet werden können. Verwenden Sie „Formular anpassen“, um ein benutzerdefiniertes Feld vom Typ \"Auswählen\" hinzuzufügen."
@@ -16920,7 +16962,7 @@ msgstr "Keine der Zeilen (Max 500)"
msgid "No of Sent SMS"
msgstr "Anzahl der gesendeten SMS"
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Keine Berechtigung für {0}"
@@ -17048,7 +17090,7 @@ msgstr "Nicht Nachkommen von"
msgid "Not Equals"
msgstr "Ungleich"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "Nicht gefunden"
@@ -17074,7 +17116,7 @@ msgstr "Nicht mit jedem Datensatz verknüpft"
msgid "Not Nullable"
msgstr "Nicht nullbar"
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17083,7 +17125,7 @@ msgstr "Nicht nullbar"
msgid "Not Permitted"
msgstr "Nicht zulässig"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr "Keine Berechtigung zum Lesen von {0}"
@@ -17111,7 +17153,6 @@ msgstr "ungelesen"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "Nicht versendet"
@@ -17144,7 +17185,7 @@ msgstr "Kein gültiger Benutzer"
msgid "Not active"
msgstr "Nicht aktiv"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "Nicht zulässig für {0}: {1}"
@@ -17578,6 +17619,10 @@ msgstr "Versatz X"
msgid "Offset Y"
msgstr "Versatz Y"
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "Altes Passwort"
@@ -17751,7 +17796,7 @@ msgstr "Nur der Workspace Manager kann öffentliche Arbeitsbereiche bearbeiten"
msgid "Only allowed to export customizations in developer mode"
msgstr "Anpassungen können nur im Entwicklermodus exportiert werden"
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr "Nur Dokumente im Entwurfsstatus können verworfen werden"
@@ -17923,7 +17968,7 @@ msgstr "Geöffnet"
msgid "Operation"
msgstr "Arbeitsgang"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "Betreiber muss einer von {0}"
@@ -18022,6 +18067,10 @@ msgstr "Orange"
msgid "Order"
msgstr "Auftrag"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18417,7 +18466,7 @@ msgstr "Parent ist der Name des Dokuments, zu dem die Daten hinzugefügt werden.
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr "Das übergeordnete Feld wurde in {0}: {1} nicht angegeben"
@@ -18539,10 +18588,6 @@ msgstr "Passwörter stimmen nicht überein"
msgid "Passwords do not match!"
msgstr "Passwörter stimmen nicht überein!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr "Termine in der Vergangenheit sind für die Planung nicht zulässig."
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "Einfügen"
@@ -18688,7 +18733,7 @@ msgstr "{0} endgültig übertragen?"
msgid "Permanently delete {0}?"
msgstr "{0} endgültig löschen?"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "Berechtigungsfehler"
@@ -18840,7 +18885,7 @@ msgstr "Telefon"
msgid "Phone No."
msgstr "Telefonnr."
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Telefonnummer {0} im Feld {1} ist ungültig."
@@ -19113,10 +19158,6 @@ msgstr "Bitte entfernen Sie die Druckerzuordnung in den Druckereinstellungen und
msgid "Please save before attaching."
msgstr "Bitte vor dem Anhängen speichern"
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "Bitte den Newsletter vor dem Senden speichern"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "Bitte das Dokument vor der Zuweisung abspeichern"
@@ -19149,7 +19190,7 @@ msgstr "Bitte wählen Sie Minimum Password Score"
msgid "Please select X and Y fields"
msgstr "Bitte wählen Sie X- und Y-Felder aus"
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr "Bitte wählen Sie einen Ländercode für das Feld {1} aus."
@@ -19165,7 +19206,7 @@ msgstr "Bitte eine Datei oder URL auswählen"
msgid "Please select a valid csv file with data"
msgstr "Bitte eine gültige CSV-Datei mit Daten auswählen"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "Bitte wählen Sie einen gültigen Datumsfilter"
@@ -19243,7 +19284,7 @@ msgstr "Bitte richten Sie das Standardkonto für ausgehende E-Mails unter Extras
msgid "Please specify"
msgstr "Bitte angeben"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr "Bitte geben Sie einen gültigen übergeordneten DocType für {0} an"
@@ -19280,10 +19321,6 @@ msgstr "Bitte aktualisieren Sie {}, bevor Sie fortfahren."
msgid "Please use a valid LDAP search filter"
msgstr "Bitte verwenden Sie einen gültigen LDAP-Suchfilter"
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "Bitte bestätigen Sie Ihre E-Mail-Adresse"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "Bitte besuchen Sie https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key für weitere Informationen."
@@ -19377,6 +19414,10 @@ msgstr "Beiträge von {0}"
msgid "Posts filed under {0}"
msgstr "Beiträge abgelegt unter {0}"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19436,7 +19477,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr "Vorbereiteter Berichtsbenutzer"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr "Das Rendern des vorbereiteten Berichts ist fehlgeschlagen"
@@ -19465,8 +19506,6 @@ msgstr "Drücken Sie zum Speichern die Eingabetaste"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19854,7 +19893,7 @@ msgstr "Profil"
msgid "Progress"
msgstr "Fortschritt"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "Projekt"
@@ -19949,14 +19988,7 @@ msgstr "Öffentliche Dateien (MB)"
msgid "Publish"
msgstr "Veröffentlichen"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr "Als Webseite veröffentlichen"
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19964,7 +19996,6 @@ msgstr "Als Webseite veröffentlichen"
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -20139,7 +20170,7 @@ msgstr "Abfragebericht"
msgid "Query analysis complete. Check suggested indexes."
msgstr "Analyse der Abfrage abgeschlossen. Prüfen Sie die vorgeschlagenen Indizes."
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr "Die Abfrage muss vom Typ SELECT oder Read-Only WITH sein."
@@ -20185,7 +20216,6 @@ msgstr "Warteschlange(n)"
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "In der Warteschlange"
@@ -20208,19 +20238,11 @@ msgstr "In der Warteschlange für die Buchung. Sie können den Fortschritt über
msgid "Queued for backup. You will receive an email with the download link"
msgstr "Warteschlange für Backup. Sie erhalten eine E-Mail mit dem Download-Link"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr "{0} E-Mails in der Warteschlange"
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr "Warteschlangen"
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr "E-Mails in die Warteschlange stellen..."
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr "Einreihen von {0} zur Buchung"
@@ -20421,7 +20443,7 @@ msgstr "Vom Empfänger gelesen am"
msgid "Read mode"
msgstr "Lesemodus"
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr "Lesen Sie die Dokumentation, um mehr zu erfahren"
@@ -21288,7 +21310,7 @@ msgstr "Berichtsgrenze erreicht"
msgid "Report timed out."
msgstr "Zeitüberschreitung des Berichts."
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "Bericht erfolgreich aktualisiert"
@@ -21309,7 +21331,7 @@ msgstr "Bericht {0}"
msgid "Report {0} deleted"
msgstr "Bericht {0} gelöscht"
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "Bericht {0} ist deaktiviert"
@@ -21642,10 +21664,8 @@ msgstr "Widerrufen"
msgid "Revoked"
msgstr "Widerrufen"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21856,7 +21876,6 @@ msgstr "Rundungsmethode"
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21870,7 +21889,6 @@ msgstr "Rundungsmethode"
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21988,7 +22006,7 @@ msgstr "Regel"
msgid "Rule Conditions"
msgstr "Regelbedingungen"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Die Regel für diese Kombination aus Doctype, Rolle, Permlevel und if-owner existiert bereits."
@@ -22177,11 +22195,11 @@ msgstr "Samstag"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22273,32 +22291,17 @@ msgstr "Scannen Sie den QR-Code und geben Sie den dargestellten Code ein."
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr "Planen"
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr "Newsletter planen"
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr "Senden planen am"
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr "Senden planen"
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr "Senden zu einem späteren Zeitpunkt planen"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "Geplant"
@@ -22332,17 +22335,6 @@ msgstr "Geplanter Auftragstyp"
msgid "Scheduled Jobs Logs"
msgstr "Protokolle geplanter Jobs"
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr "Geplanter Versand"
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "in Sendewarteschlange"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "Die geplante Ausführung für Skript {0} wurde aktualisiert"
@@ -22554,6 +22546,11 @@ msgstr "Suche..."
msgid "Searching ..."
msgstr "Suchen ..."
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr "Sekunden"
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22943,9 +22940,7 @@ msgstr "{0} auswählen"
msgid "Self approval is not allowed"
msgstr "Selbstgenehmigung ist nicht erlaubt"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "Absenden"
@@ -22976,11 +22971,6 @@ msgstr "Benachrichtigung senden bei"
msgid "Send Email Alert"
msgstr "E-Mail-Benachrichtigung senden"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr "E-Mail senden am"
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -23038,38 +23028,16 @@ msgstr "Lesebestätigung senden"
msgid "Send System Notification"
msgstr "Systembenachrichtigung senden"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr "Test-E-Mail senden"
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "An alle Beauftragten senden"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "Abmelde-Link senden"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr "Link zur Webansicht senden"
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "Willkommens-E-Mail senden"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr "Test-E-Mail senden"
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr "Erneut senden"
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -23117,10 +23085,6 @@ msgstr "Anmelde-Link senden"
msgid "Send me a copy"
msgstr "Kopie an mich senden"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr "Jetzt senden"
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -23136,19 +23100,15 @@ msgstr "Abmelde-Link in E-Mails hinzufügen"
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "Absender"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "Absender E-Mail"
@@ -23165,9 +23125,7 @@ msgid "Sender Field should have Email in options"
msgstr "Das Absenderfeld sollte E-Mail-Optionen enthalten"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr "Absendername"
@@ -23187,18 +23145,9 @@ msgstr "Sendgrid"
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "Versand"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr "Sende E-Mails"
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr "Senden..."
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23206,8 +23155,6 @@ msgstr "Senden..."
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "Gesendet"
@@ -23277,7 +23224,7 @@ msgstr "Serie {0} bereits verwendet in {1}"
msgid "Server Action"
msgstr "Serveraktion"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Serverfehler"
@@ -23296,7 +23243,7 @@ msgstr "Server-IP-Adresse"
msgid "Server Script"
msgstr "Serverskript"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "Serverskripte sind deaktiviert. Bitte aktivieren Sie Server-Skripte in der Bankkonfiguration."
@@ -23335,15 +23282,15 @@ msgstr "Sitzungsstandardeinstellungen"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "Sitzungsstandards"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "Sitzungsstandards gespeichert"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "Sitzung abgelaufen"
@@ -23597,7 +23544,7 @@ msgstr "Einrichten Ihres Systems"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24680,7 +24627,6 @@ msgstr "Statistik Zeitintervall"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24705,7 +24651,6 @@ msgstr "Statistik Zeitintervall"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24846,8 +24791,6 @@ msgstr "Unterdomäne"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24856,7 +24799,6 @@ msgstr "Unterdomäne"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25227,7 +25169,7 @@ msgstr "Synchronisiert"
msgid "Syncing {0} of {1}"
msgstr "{0} von {1} synchronisieren"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr "Syntaxfehler"
@@ -25534,7 +25476,7 @@ msgstr "Tabelle gekürzt"
msgid "Table updated"
msgstr "Tabelle aktualisiert"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "Tabelle {0} darf nicht leer sein"
@@ -25661,10 +25603,6 @@ msgstr "Test-Auftrags-ID"
msgid "Test Spanish"
msgstr "Test Spanisch"
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "Test-E-Mail an {0} gesendet"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Test_Ordner"
@@ -25732,10 +25670,6 @@ msgstr "Vielen Dank für Ihre E-Mail"
msgid "Thank you for your feedback!"
msgstr "Vielen Dank für dein Feedback!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "Vielen Dank für Ihr Interesse an einem Abonnement unserer Aktualisierungen"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr "Vielen Dank für Ihre Nachricht"
@@ -25930,7 +25864,7 @@ msgstr "Der Link zum Zurücksetzen des Passworts ist abgelaufen"
msgid "The reset password link has either been used before or is invalid"
msgstr "Der Link zum Zurücksetzen des Passworts wurde bereits verwendet oder ist ungültig"
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Die von Ihnen gesuchte Ressource ist nicht verfügbar"
@@ -25942,7 +25876,7 @@ msgstr "Die Rolle {0} sollte eine benutzerdefinierte Rolle sein."
msgid "The selected document {0} is not a {1}."
msgstr "Das ausgewählte Dokument {0} ist nicht vom Typ {1}."
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Das System wird gerade aktualisiert. Bitte probieren Sie es nach einigen Augenblicken erneut."
@@ -26095,7 +26029,7 @@ msgstr "Drittpartei-Authentifizierung"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Diese Währung ist deaktiviert. Aktivieren, um in Transaktionen zu verwenden"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "Dieser Kanbantafel wird privat"
@@ -26119,7 +26053,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Diese Aktion ist unumkehrbar. Möchten Sie fortfahren?"
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "Diese Aktion ist nur für {} zulässig"
@@ -26283,14 +26217,6 @@ msgstr "Dies kann auf mehreren Seiten ausgedruckt werden"
msgid "This month"
msgstr "Diesen Monat"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr "Dieser Newsletter wird voraussichtlich am {0} verschickt"
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr "Der Versand dieses Newsletters war zu einem späteren Zeitpunkt geplant. Sind Sie sicher, dass Sie es jetzt senden möchten?"
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Dieser Bericht enthält {0} Zeilen und ist zu groß, um im Browser angezeigt zu werden. Sie können diesen Bericht stattdessen unter {1} aufrufen."
@@ -26403,7 +26329,6 @@ msgstr "Donnerstag"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Zeit"
@@ -26629,10 +26554,8 @@ msgid "Title of the page"
msgstr "Titel der Seite"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "An"
@@ -26915,7 +26838,7 @@ msgstr "Oben rechts"
msgid "Topic"
msgstr "Thema"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26943,16 +26866,8 @@ msgstr "Anzahl Bilder"
msgid "Total Outgoing Emails"
msgstr "Anzahl ausgehender E-Mails"
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr "Empfänger insgesamt"
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "Abonnenten insgesamt"
@@ -26961,11 +26876,6 @@ msgstr "Abonnenten insgesamt"
msgid "Total Users"
msgstr "Anzahl der Benutzer"
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr "Ansichten insgesamt"
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27365,23 +27275,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "URL, die beim Anklicken des Diashow-Bildes aufgerufen wird"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr "UTM-Kampagne"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr "UTM-Medium"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr "UTM-Quelle"
@@ -27431,7 +27335,7 @@ msgstr "Das Dateiformat für {0} kann nicht geschrieben werden."
msgid "Unassign Condition"
msgstr "Bedingung für das Aufheben der Zuweisung"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr "Nicht abgefangene Ausnahme"
@@ -27447,6 +27351,10 @@ msgstr "Rückgängig machen"
msgid "Undo last action"
msgstr "Letzte Aktion rückgängig machen"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27479,7 +27387,7 @@ msgstr "Unbekannt"
msgid "Unknown Column: {0}"
msgstr "Unbekannte Spalte: {0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr "Unbekannte Rundungsmethode: {}"
@@ -27512,7 +27420,7 @@ msgstr "Ungelesen"
msgid "Unread Notification Sent"
msgstr "Ungelesene Benachrichtigung gesendet"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr "Unsichere SQL-Abfrage"
@@ -27526,7 +27434,7 @@ msgstr "Auswahl aufheben"
msgid "Unshared"
msgstr "Nicht geteilt"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "Abmelden"
@@ -27550,6 +27458,11 @@ msgstr "Abmeldeparameter"
msgid "Unsubscribed"
msgstr "Abgemeldet"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "Unbenannte Spalte"
@@ -27672,7 +27585,7 @@ msgstr "Auf eine neue Version aktualisiert 🎉"
msgid "Updated successfully"
msgstr "Erfolgreich geupdated"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "Aktualisierung läuft"
@@ -28407,7 +28320,7 @@ msgstr "Wert zu groß"
msgid "Value {0} missing for {1}"
msgstr "Wert {0} fehlt für {1}"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "Der Wert {0} muss das gültige Dauerformat haben: dhms"
@@ -28832,7 +28745,6 @@ msgstr "Webhook-URL"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28840,9 +28752,7 @@ msgid "Website"
msgstr "Webseite"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "Website-Analysen"
@@ -29278,7 +29188,7 @@ msgstr "Workflow erfolgreich aktualisiert"
msgid "Workspace"
msgstr "Arbeitsbereich"
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr "Arbeitsbereich {0} existiert nicht"
@@ -29501,11 +29411,11 @@ msgstr "Sie geben sich als ein anderer Benutzer aus."
msgid "You are not allowed to access this resource"
msgstr "Sie dürfen nicht auf diese Ressource zuzugreifen"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "Sie haben keine Berechtigung, auf diesen Eintrag in {0} zuzugreifen, da dieser in Feld {3} mit {1} '{2}' verknüpft ist"
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "Sie können auf diesen Datensatz {0} nicht zugreifen, da er mit {1} '{2}' in Zeile {3}, Feld {4} verknüpft ist"
@@ -29528,7 +29438,7 @@ msgstr "Sie sind nicht berechtigt, den Bericht zu bearbeiten."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "Sie dürfen keinen {} Doctype exportieren"
@@ -29556,7 +29466,7 @@ msgstr "Sie sind nicht berechtigt, ohne Anmeldung auf diese Seite zuzugreifen."
msgid "You are not permitted to access this page."
msgstr "Sie sind nicht berechtigt auf diese Seite zuzugreifen."
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr "Sie haben keinen Zugriff auf diese Ressource. Melden Sie sich an, um darauf zuzugreifen"
@@ -29651,7 +29561,7 @@ msgstr "Sie können eine der folgenden Optionen auswählen,"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "Sie können hier einen hohen Wert einstellen, wenn sich mehrere Benutzer über dasselbe Netzwerk anmelden."
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "Sie können versuchen, die Filter Ihres Berichts zu ändern."
@@ -29728,11 +29638,15 @@ msgstr "Sie haben keine Lese- oder Auswahlberechtigung für {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Sie haben nicht genügend Rechte, um auf diese Ressource zuzugreifen. Bitte kontaktieren Sie Ihren Manager um Zugang zu erhalten."
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "Sie verfügen nicht über genügend Berechtigungen, um die Aktion durchzuführen"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr "Sie haben keine Zugriffsberechtigung für {0}: {1}."
@@ -29740,7 +29654,7 @@ msgstr "Sie haben keine Zugriffsberechtigung für {0}: {1}."
msgid "You do not have permissions to cancel all linked documents."
msgstr "Sie haben keine Berechtigung, alle verknüpften Dokumente zu stornieren."
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "Sie haben keine Zugriffsrechte für den Bericht: {0}"
@@ -29748,11 +29662,11 @@ msgstr "Sie haben keine Zugriffsrechte für den Bericht: {0}"
msgid "You don't have permission to access the {0} DocType."
msgstr "Sie haben keine Berechtigung, auf den DocType {0} zuzugreifen."
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "Keine Berechtigung für den Zugriff auf diese Datei vorhanden"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "Sie haben keine ausreichenden Benutzerrechte um einen Bericht über: {0} zu erhalten"
@@ -29845,7 +29759,7 @@ msgstr "Sie müssen ein Systembenutzer sein, um auf diese Seite zugreifen zu kö
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Sie müssen sich im Entwicklermodus befinden, um ein Standard-Webformular zu bearbeiten"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Sie müssen eingeloggt sein und die Systemmanager-Rolle haben um auf Datensicherungen zuzugreifen."
@@ -30011,7 +29925,7 @@ msgstr "Name und Anschrift Ihrer Firma für die Fußzeile der E-Mail."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Ihre Anfrage ist eingegangen. Wir werden in Kürze antworten. Wenn Sie zusätzliche Informationen haben, antworten Sie bitte auf diese E-Mail."
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "Ihre Sitzung ist abgelaufen, bitte melden Sie sich erneut an, um fortzufahren."
@@ -30023,7 +29937,7 @@ msgstr "Ihre Website wird gerade gewartet oder aktualisiert."
msgid "Your verification code is {0}"
msgstr "Ihr Bestätigungscode ist {0}"
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "Null"
@@ -30070,7 +29984,7 @@ msgstr "nach_einfügen"
msgid "amend"
msgstr "berichtigen"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "und"
@@ -30127,7 +30041,7 @@ msgstr "erstellen"
msgid "cyan"
msgstr "türkis"
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30242,7 +30156,7 @@ msgstr "E-Mail"
msgid "email inbox"
msgstr "E-Mail-Eingang"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "leeren"
@@ -30294,7 +30208,7 @@ msgstr "grau"
msgid "gzip not found in PATH! This is required to take a backup."
msgstr "gzip nicht in PATH gefunden! Dies ist erforderlich, um ein Backup zu erstellen."
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30328,7 +30242,7 @@ msgstr "beate@beispiel.de"
msgid "just now"
msgstr "gerade eben"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr "bezeichnung"
@@ -30368,7 +30282,7 @@ msgstr "login_required"
msgid "long"
msgstr "lang"
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30558,7 +30472,7 @@ msgstr "Antwort"
msgid "restored {0} as {1}"
msgstr "restauriert {0} als {1}"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30893,7 +30807,7 @@ msgstr "{0} bereits abgemeldet"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} bereits abgemeldet für {1} {2}"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} und {1}"
@@ -30999,6 +30913,10 @@ msgstr "{0} existiert nicht in Zeile {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "Feld {0} kann in {1} nicht als einzigartig gesetzt werden, da es nicht-eindeutige Werte gibt"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "Das {0} Format konnte nicht von den Werten in dieser Spalte bestimmt werden. Standard ist {1}."
@@ -31019,10 +30937,6 @@ msgstr "{0} Std"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} hat bereits einen Standardwert für {1} zugewiesen."
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} wurde zur E-Mail-Gruppe hinzugefügt."
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} wurde von E-Mail-Benachrichtigungen zu {1} {2} abgemeldet"
@@ -31093,6 +31007,10 @@ msgstr "{0} ist wie {1}"
msgid "{0} is mandatory"
msgstr "{0} ist erforderlich"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr "{0} ist kein Feld in Doctype {1}"
@@ -31114,7 +31032,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} ist kein gültiger DocType für Dynamic Link"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0} ist keine gültige E-Mail-Adresse"
@@ -31122,11 +31040,11 @@ msgstr "{0} ist keine gültige E-Mail-Adresse"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} ist kein gültiger ISO 3166 ALPHA-2-Code."
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0} ist kein gültiger Name"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} ist keine gültige Telefonnummer"
@@ -31134,11 +31052,11 @@ msgstr "{0} ist keine gültige Telefonnummer"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} ist kein gültiger Workflow-Status. Bitte aktualisieren Sie Ihren Workflow und versuchen Sie es erneut."
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} ist kein gültiger übergeordneter DocType für {1}"
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} ist kein gültiges übergeordnetes Feld für {1}"
@@ -31226,23 +31144,23 @@ msgstr "vor {0} Minuten"
msgid "{0} months ago"
msgstr "vor {0} Monaten"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0} muss nach {1} liegen"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr "{0} muss mit '{1}' beginnen"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr "{0} muss gleich '{1}' sein"
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr "{0} darf nichts von {1} sein"
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} muss aus {1} sein"
@@ -31254,7 +31172,7 @@ msgstr "{0} muss als erstes gesetzt sein"
msgid "{0} must be unique"
msgstr "{0} muss einmalig sein"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr "{0} muss {1} {2} sein"
@@ -31283,16 +31201,12 @@ msgstr "{0} von {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} von {1} ({2} Zeilen mit untergeordneten Elementen)"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr "{0} von {1} gesendet"
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr "{0}."
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} oder {1}"
@@ -31329,11 +31243,11 @@ msgstr "{0} hat seine Zuordnung entfernt."
msgid "{0} role does not have permission on any doctype"
msgstr "{0} Die Rolle hat keine Berechtigung für einen Doctype"
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr "{0} Zeile #{1}: "
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0} wurde erfolgreich gespeichert"
@@ -31445,7 +31359,7 @@ msgstr "{0} {1} existiert nicht. Bitte ein neues Ziel zum Zusammenführen wähle
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} ist mit den folgenden eingereichten Dokumenten verknüpft: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} nicht gefunden"
@@ -31598,11 +31512,11 @@ msgstr "{{{0}}} ist kein gültiges Format für Feldnamen. Es sollte sein {{field
msgid "{} Complete"
msgstr "{} Komplett"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr "{} Ungültiger Python-Code in Zeile {}"
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Possibly invalid python code.
{}"
@@ -31624,7 +31538,7 @@ msgstr "{}-Feld darf nicht leer sein."
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr "{} wurde deaktiviert. Es kann nur aktiviert werden, wenn {} aktiviert ist."
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{} ist keine gültige Datumszeichenfolge."
diff --git a/frappe/locale/eo.po b/frappe/locale/eo.po
index 1e68f69943..9b6e677942 100644
--- a/frappe/locale/eo.po
+++ b/frappe/locale/eo.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:41\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Esperanto\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "crwdns90528:0{0}crwdnd90528:0{1}crwdne90528:0"
msgid "'Recipients' not specified"
msgstr "crwdns90530:0crwdne90530:0"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "crwdns90532:0{0}crwdne90532:0"
@@ -852,7 +852,7 @@ msgstr "crwdns128016:0crwdne128016:0"
msgid "Action Complete"
msgstr "crwdns90762:0crwdne90762:0"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "crwdns90764:0crwdne90764:0"
@@ -1491,6 +1491,14 @@ msgstr "crwdns128094:0crwdne128094:0"
msgid "Alerts and Notifications"
msgstr "crwdns90990:0crwdne90990:0"
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr "crwdns155510:0{0}crwdne155510:0"
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr "crwdns155512:0crwdne155512:0"
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1531,7 +1539,6 @@ msgstr "crwdns90998:0crwdne90998:0"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1976,7 +1983,7 @@ msgstr "crwdns151842:0crwdne151842:0"
msgid "Amendment naming rules updated."
msgstr "crwdns91190:0crwdne91190:0"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr "crwdns91192:0crwdne91192:0"
@@ -2094,7 +2101,7 @@ msgstr "crwdns91230:0crwdne91230:0"
msgid "App not found for module: {0}"
msgstr "crwdns91240:0{0}crwdne91240:0"
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "crwdns91242:0{0}crwdne91242:0"
@@ -2308,10 +2315,6 @@ msgstr "crwdns91328:0crwdne91328:0"
msgid "Are you sure you want to save this document?"
msgstr "crwdns110810:0crwdne110810:0"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "crwdns91330:0crwdne91330:0"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2565,9 +2568,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr "crwdns91456:0crwdne91456:0"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "crwdns128308:0crwdne128308:0"
@@ -2594,10 +2595,7 @@ msgid "Attachment Removed"
msgstr "crwdns128314:0crwdne128314:0"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2615,11 +2613,6 @@ msgstr "crwdns91484:0crwdne91484:0"
msgid "Attribution"
msgstr "crwdns112680:0crwdne112680:0"
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr "crwdns128316:0crwdne128316:0"
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3046,7 +3039,7 @@ msgstr "crwdns128396:0crwdne128396:0"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr "crwdns91668:0crwdne91668:0"
@@ -3774,9 +3767,7 @@ msgstr "crwdns128580:0crwdne128580:0"
msgid "Camera"
msgstr "crwdns91992:0crwdne91992:0"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3862,10 +3853,6 @@ msgstr "crwdns92026:0crwdne92026:0"
msgid "Cancel All Documents"
msgstr "crwdns92028:0crwdne92028:0"
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr "crwdns92030:0crwdne92030:0"
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4159,7 +4146,7 @@ msgstr "crwdns128592:0crwdne128592:0"
msgid "Category Name"
msgstr "crwdns128594:0crwdne128594:0"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr "crwdns92178:0crwdne92178:0"
@@ -4327,10 +4314,6 @@ msgstr "crwdns128622:0crwdne128622:0"
msgid "Check Request URL"
msgstr "crwdns92246:0crwdne92246:0"
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr "crwdns92248:0crwdne92248:0"
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr "crwdns110834:0crwdne110834:0"
@@ -4354,10 +4337,6 @@ msgstr "crwdns128624:0crwdne128624:0"
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr "crwdns155322:0crwdne155322:0"
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr "crwdns92256:0crwdne92256:0"
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "crwdns92258:0crwdne92258:0"
@@ -4404,6 +4383,10 @@ msgstr "crwdns92274:0{0}crwdnd92274:0{1}crwdne92274:0"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "crwdns92276:0crwdne92276:0"
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr "crwdns155514:0{0}crwdne155514:0"
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "crwdns92280:0crwdne92280:0"
@@ -4493,10 +4476,6 @@ msgstr "crwdns110838:0crwdne110838:0"
msgid "Click here"
msgstr "crwdns92312:0crwdne92312:0"
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "crwdns92314:0crwdne92314:0"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "crwdns143008:0crwdne143008:0"
@@ -4838,7 +4817,7 @@ msgstr "crwdns128678:0crwdne128678:0"
msgid "Columns / Fields"
msgstr "crwdns128680:0crwdne128680:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "crwdns92484:0crwdne92484:0"
@@ -5158,17 +5137,12 @@ msgstr "crwdns92620:0crwdne92620:0"
msgid "Confirm Request"
msgstr "crwdns92622:0crwdne92622:0"
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "crwdns92624:0crwdne92624:0"
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "crwdns128724:0crwdne128724:0"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "crwdns92628:0crwdne92628:0"
@@ -5299,8 +5273,6 @@ msgstr "crwdns127604:0{0}crwdne127604:0"
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5308,7 +5280,6 @@ msgstr "crwdns127604:0{0}crwdne127604:0"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5333,10 +5304,8 @@ msgstr "crwdns128740:0crwdne128740:0"
msgid "Content Hash"
msgstr "crwdns128742:0crwdne128742:0"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5442,6 +5411,10 @@ msgstr "crwdns92744:0{0}crwdne92744:0"
msgid "Could not map column {0} to field {1}"
msgstr "crwdns92746:0{0}crwdnd92746:0{1}crwdne92746:0"
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr "crwdns155516:0{0}crwdne155516:0"
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr "crwdns152054:0crwdne152054:0"
@@ -5497,7 +5470,7 @@ msgstr "crwdns128760:0crwdne128760:0"
msgid "Country"
msgstr "crwdns92764:0crwdne92764:0"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr "crwdns92774:0crwdne92774:0"
@@ -5628,11 +5601,6 @@ msgstr "crwdns92824:0{0}crwdne92824:0"
msgid "Create a {0} Account"
msgstr "crwdns92826:0{0}crwdne92826:0"
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr "crwdns111496:0crwdne111496:0"
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr "crwdns92828:0crwdne92828:0"
@@ -5981,6 +5949,10 @@ msgstr "crwdns143304:0crwdne143304:0"
msgid "Custom field renamed to {0} successfully."
msgstr "crwdns111394:0{0}crwdne111394:0"
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr "crwdns155518:0{0}crwdnd155518:0{1}crwdne155518:0"
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6038,7 +6010,7 @@ msgstr "crwdns93022:0crwdne93022:0"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "crwdns93024:0crwdne93024:0"
@@ -6331,7 +6303,6 @@ msgstr "crwdns128852:0crwdne128852:0"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6395,6 +6366,11 @@ msgstr "crwdns93220:0crwdne93220:0"
msgid "Day of Week"
msgstr "crwdns128860:0crwdne128860:0"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr "crwdns155520:0crwdne155520:0"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6662,6 +6638,7 @@ msgstr "crwdns128908:0crwdne128908:0"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6974,6 +6951,7 @@ msgstr "crwdns128936:0crwdne128936:0"
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7727,7 +7705,7 @@ msgid "Document Types and Permissions"
msgstr "crwdns129022:0crwdne129022:0"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr "crwdns93812:0crwdne93812:0"
@@ -8345,7 +8323,6 @@ msgstr "crwdns129070:0crwdne129070:0"
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8439,11 +8416,9 @@ msgstr "crwdns129076:0crwdne129076:0"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "crwdns94104:0crwdne94104:0"
@@ -8516,18 +8491,11 @@ msgstr "crwdns129088:0crwdne129088:0"
msgid "Email Rule"
msgstr "crwdns94138:0crwdne94138:0"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "crwdns129090:0crwdne129090:0"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr "crwdns129092:0crwdne129092:0"
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8634,10 +8602,18 @@ msgstr "crwdns129108:0crwdne129108:0"
msgid "Embed code copied"
msgstr "crwdns111510:0crwdne111510:0"
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr "crwdns155522:0crwdne155522:0"
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr "crwdns143066:0crwdne143066:0"
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr "crwdns155524:0crwdne155524:0"
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9101,6 +9077,14 @@ msgstr "crwdns94424:0crwdne94424:0"
msgid "Error in print format on line {0}: {1}"
msgstr "crwdns94426:0{0}crwdnd94426:0{1}crwdne94426:0"
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr "crwdns155526:0{0}crwdnd155526:0{1}crwdne155526:0"
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr "crwdns155528:0{0}crwdne155528:0"
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "crwdns94428:0{0}crwdne94428:0"
@@ -9297,6 +9281,10 @@ msgstr "crwdns94504:0crwdne94504:0"
msgid "Expand All"
msgstr "crwdns94506:0crwdne94506:0"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr "crwdns155530:0{0}crwdne155530:0"
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr "crwdns110928:0crwdne110928:0"
@@ -9828,7 +9816,7 @@ msgstr "crwdns94726:0{0}crwdnd94726:0{1}crwdnd94726:0{2}crwdnd94726:0{3}crwdne94
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "crwdns94728:0{0}crwdne94728:0"
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "crwdns94730:0{0}crwdne94730:0"
@@ -9844,7 +9832,7 @@ msgstr "crwdns94734:0crwdne94734:0"
msgid "Fieldname {0} appears multiple times"
msgstr "crwdns94736:0{0}crwdne94736:0"
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "crwdns94738:0{0}crwdnd94738:0{1}crwdne94738:0"
@@ -9896,6 +9884,10 @@ msgstr "crwdns94760:0crwdne94760:0"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "crwdns112694:0crwdne112694:0"
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr "crwdns155532:0crwdne155532:0"
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10061,6 +10053,14 @@ msgstr "crwdns94836:0crwdne94836:0"
msgid "Filter Values"
msgstr "crwdns129314:0crwdne129314:0"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr "crwdns155534:0{0}crwdne155534:0"
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr "crwdns155536:0crwdne155536:0"
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr "crwdns110940:0crwdne110940:0"
@@ -10304,10 +10304,6 @@ msgstr "crwdns94958:0crwdne94958:0"
msgid "Following fields have missing values:"
msgstr "crwdns94960:0crwdne94960:0"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr "crwdns94962:0{0}crwdne94962:0"
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10724,10 +10720,8 @@ msgid "Friday"
msgstr "crwdns129428:0crwdne129428:0"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "crwdns95150:0crwdne95150:0"
@@ -10808,10 +10802,14 @@ msgstr "crwdns95188:0crwdne95188:0"
msgid "Function Based On"
msgstr "crwdns95192:0crwdne95192:0"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr "crwdns95194:0{0}crwdne95194:0"
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr "crwdns155538:0{0}crwdne155538:0"
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "crwdns95196:0crwdne95196:0"
@@ -11293,6 +11291,10 @@ msgstr "crwdns129502:0crwdne129502:0"
msgid "Group By field is required to create a dashboard chart"
msgstr "crwdns95408:0crwdne95408:0"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr "crwdns155540:0crwdne155540:0"
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "crwdns95410:0crwdne95410:0"
@@ -11341,7 +11343,6 @@ msgstr "crwdns129510:0crwdne129510:0"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11355,7 +11356,6 @@ msgstr "crwdns129510:0crwdne129510:0"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11864,6 +11864,11 @@ msgstr "crwdns155022:0crwdne155022:0"
msgid "Hourly rate limit for generating password reset links"
msgstr "crwdns129600:0crwdne129600:0"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "crwdns155542:0crwdne155542:0"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12629,11 +12634,11 @@ msgstr "crwdns96004:0crwdne96004:0"
msgid "Incorrect Verification code"
msgstr "crwdns96006:0crwdne96006:0"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr "crwdns148658:0{0}crwdne148658:0"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr "crwdns148660:0crwdne148660:0"
@@ -12785,11 +12790,11 @@ msgstr "crwdns129764:0crwdne129764:0"
msgid "Instructions Emailed"
msgstr "crwdns110976:0crwdne110976:0"
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr "crwdns96072:0{0}crwdne96072:0"
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "crwdns96074:0{0}crwdne96074:0"
@@ -12939,7 +12944,7 @@ msgstr "crwdns96140:0crwdne96140:0"
msgid "Invalid Credentials"
msgstr "crwdns96142:0crwdne96142:0"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "crwdns96144:0crwdne96144:0"
@@ -12947,7 +12952,7 @@ msgstr "crwdns96144:0crwdne96144:0"
msgid "Invalid DocType"
msgstr "crwdns96146:0crwdne96146:0"
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr "crwdns96148:0{0}crwdne96148:0"
@@ -12959,6 +12964,11 @@ msgstr "crwdns96150:0crwdne96150:0"
msgid "Invalid File URL"
msgstr "crwdns96152:0crwdne96152:0"
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr "crwdns155544:0crwdne155544:0"
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr "crwdns96154:0{0}crwdnd96154:0{1}crwdne96154:0"
@@ -13023,7 +13033,7 @@ msgstr "crwdns96176:0crwdne96176:0"
msgid "Invalid Password"
msgstr "crwdns96178:0crwdne96178:0"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr "crwdns96180:0crwdne96180:0"
@@ -13067,10 +13077,38 @@ msgstr "crwdns96194:0crwdne96194:0"
msgid "Invalid aggregate function"
msgstr "crwdns96196:0crwdne96196:0"
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr "crwdns155546:0{0}crwdne155546:0"
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr "crwdns155548:0{0}crwdne155548:0"
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr "crwdns155550:0{0}crwdne155550:0"
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr "crwdns155552:0{0}crwdne155552:0"
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr "crwdns155554:0{0}crwdne155554:0"
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "crwdns96198:0crwdne96198:0"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr "crwdns155556:0{0}crwdne155556:0"
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr "crwdns155558:0{0}crwdne155558:0"
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "crwdns96200:0crwdne96200:0"
@@ -13083,10 +13121,26 @@ msgstr "crwdns96202:0{0}crwdne96202:0"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "crwdns96204:0{0}crwdnd96204:0{1}crwdne96204:0"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr "crwdns155560:0{0}crwdne155560:0"
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr "crwdns155562:0{0}crwdnd155562:0{1}crwdne155562:0"
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr "crwdns155564:0{0}crwdne155564:0"
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "crwdns96206:0{0}crwdne96206:0"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr "crwdns155566:0{0}crwdne155566:0"
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "crwdns96208:0{0}crwdne96208:0"
@@ -13095,11 +13149,26 @@ msgstr "crwdns96208:0{0}crwdne96208:0"
msgid "Invalid file path: {0}"
msgstr "crwdns96210:0{0}crwdne96210:0"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr "crwdns155568:0{0}crwdne155568:0"
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr "crwdns155570:0{0}crwdne155570:0"
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "crwdns96212:0{0}crwdne96212:0"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr "crwdns155572:0{0}crwdne155572:0"
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr "crwdns155574:0crwdne155574:0"
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13121,10 +13190,22 @@ msgstr "crwdns96222:0crwdne96222:0"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "crwdns96224:0crwdne96224:0"
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr "crwdns96226:0crwdne96226:0"
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr "crwdns155576:0{0}crwdne155576:0"
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr "crwdns155578:0{0}crwdne155578:0"
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr "crwdns155580:0{0}crwdne155580:0"
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "crwdns96230:0crwdne96230:0"
@@ -13566,11 +13647,11 @@ msgstr "crwdns96438:0crwdne96438:0"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "crwdns96440:0crwdne96440:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "crwdns96444:0crwdne96444:0"
@@ -14282,6 +14363,10 @@ msgstr "crwdns130010:0crwdne130010:0"
msgid "Limit"
msgstr "crwdns130012:0crwdne130012:0"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr "crwdns155582:0crwdne155582:0"
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14545,6 +14630,7 @@ msgid "Load Balancing"
msgstr "crwdns130066:0crwdne130066:0"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15063,11 +15149,9 @@ msgstr "crwdns97090:0crwdne97090:0"
msgid "Mark as Unread"
msgstr "crwdns97092:0crwdne97092:0"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15256,7 +15340,6 @@ msgstr "crwdns97172:0crwdne97172:0"
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15269,7 +15352,6 @@ msgstr "crwdns97172:0crwdne97172:0"
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15284,16 +15366,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "crwdns97184:0crwdne97184:0"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "crwdns130178:0crwdne130178:0"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "crwdns130180:0crwdne130180:0"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15417,7 +15489,7 @@ msgstr "crwdns97252:0crwdne97252:0"
msgid "Method"
msgstr "crwdns130200:0crwdne130200:0"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr "crwdns142858:0crwdne142858:0"
@@ -15467,6 +15539,11 @@ msgstr "crwdns130208:0crwdne130208:0"
msgid "Minor"
msgstr "crwdns130210:0crwdne130210:0"
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr "crwdns155584:0crwdne155584:0"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15862,7 +15939,7 @@ msgstr "crwdns130242:0{0}crwdnd130242:0{0}crwdne130242:0"
msgid "Must be of type \"Attach Image\""
msgstr "crwdns130244:0crwdne130244:0"
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "crwdns97490:0crwdne97490:0"
@@ -16050,6 +16127,10 @@ msgstr "crwdns97572:0crwdne97572:0"
msgid "Negative Value"
msgstr "crwdns97576:0crwdne97576:0"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr "crwdns155586:0crwdne155586:0"
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "crwdns97578:0crwdne97578:0"
@@ -16132,7 +16213,7 @@ msgstr "crwdns97604:0crwdne97604:0"
msgid "New Folder"
msgstr "crwdns97606:0crwdne97606:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "crwdns97608:0crwdne97608:0"
@@ -16276,48 +16357,13 @@ msgstr "crwdns97650:0crwdne97650:0"
msgid "Newly created user {0} has no roles enabled."
msgstr "crwdns97652:0{0}crwdne97652:0"
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "crwdns97654:0crwdne97654:0"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr "crwdns97658:0crwdne97658:0"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "crwdns97660:0crwdne97660:0"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "crwdns97662:0crwdne97662:0"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "crwdns97664:0crwdne97664:0"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr "crwdns97666:0crwdne97666:0"
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "crwdns97668:0crwdne97668:0"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "crwdns97670:0crwdne97670:0"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16579,7 +16625,7 @@ msgstr "crwdns97752:0crwdne97752:0"
msgid "No Roles Specified"
msgstr "crwdns97754:0crwdne97754:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr "crwdns97756:0crwdne97756:0"
@@ -16607,10 +16653,6 @@ msgstr "crwdns97760:0crwdne97760:0"
msgid "No automatic optimization suggestions available."
msgstr "crwdns127878:0crwdne127878:0"
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr "crwdns97762:0crwdne97762:0"
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "crwdns97764:0crwdne97764:0"
@@ -16647,7 +16689,7 @@ msgstr "crwdns111060:0crwdne111060:0"
msgid "No contacts linked to document"
msgstr "crwdns97778:0crwdne97778:0"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "crwdns97780:0crwdne97780:0"
@@ -16667,7 +16709,7 @@ msgstr "crwdns97786:0crwdne97786:0"
msgid "No failed logs"
msgstr "crwdns111062:0crwdne111062:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "crwdns111064:0crwdne111064:0"
@@ -16726,7 +16768,7 @@ msgstr "crwdns130300:0crwdne130300:0"
msgid "No of Sent SMS"
msgstr "crwdns130302:0crwdne130302:0"
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "crwdns97808:0{0}crwdne97808:0"
@@ -16854,7 +16896,7 @@ msgstr "crwdns97850:0crwdne97850:0"
msgid "Not Equals"
msgstr "crwdns97852:0crwdne97852:0"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "crwdns97854:0crwdne97854:0"
@@ -16880,7 +16922,7 @@ msgstr "crwdns97862:0crwdne97862:0"
msgid "Not Nullable"
msgstr "crwdns130314:0crwdne130314:0"
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16889,7 +16931,7 @@ msgstr "crwdns130314:0crwdne130314:0"
msgid "Not Permitted"
msgstr "crwdns97866:0crwdne97866:0"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr "crwdns97868:0{0}crwdne97868:0"
@@ -16917,7 +16959,6 @@ msgstr "crwdns97874:0crwdne97874:0"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "crwdns97876:0crwdne97876:0"
@@ -16950,7 +16991,7 @@ msgstr "crwdns111082:0crwdne111082:0"
msgid "Not active"
msgstr "crwdns97892:0crwdne97892:0"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "crwdns97894:0{0}crwdnd97894:0{1}crwdne97894:0"
@@ -17384,6 +17425,10 @@ msgstr "crwdns130378:0crwdne130378:0"
msgid "Offset Y"
msgstr "crwdns130380:0crwdne130380:0"
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr "crwdns155588:0crwdne155588:0"
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "crwdns98074:0crwdne98074:0"
@@ -17557,7 +17602,7 @@ msgstr "crwdns98128:0crwdne98128:0"
msgid "Only allowed to export customizations in developer mode"
msgstr "crwdns98132:0crwdne98132:0"
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr "crwdns127690:0crwdne127690:0"
@@ -17729,7 +17774,7 @@ msgstr "crwdns130426:0crwdne130426:0"
msgid "Operation"
msgstr "crwdns130428:0crwdne130428:0"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "crwdns98200:0{0}crwdne98200:0"
@@ -17828,6 +17873,10 @@ msgstr "crwdns130436:0crwdne130436:0"
msgid "Order"
msgstr "crwdns130438:0crwdne130438:0"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr "crwdns155590:0crwdne155590:0"
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18223,7 +18272,7 @@ msgstr "crwdns98416:0crwdne98416:0"
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr "crwdns154732:0crwdne154732:0"
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr "crwdns98418:0{0}crwdnd98418:0{1}crwdne98418:0"
@@ -18345,10 +18394,6 @@ msgstr "crwdns98474:0crwdne98474:0"
msgid "Passwords do not match!"
msgstr "crwdns98476:0crwdne98476:0"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr "crwdns98478:0crwdne98478:0"
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "crwdns98480:0crwdne98480:0"
@@ -18494,7 +18539,7 @@ msgstr "crwdns98536:0{0}crwdne98536:0"
msgid "Permanently delete {0}?"
msgstr "crwdns98538:0{0}crwdne98538:0"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "crwdns98540:0crwdne98540:0"
@@ -18646,7 +18691,7 @@ msgstr "crwdns130562:0crwdne130562:0"
msgid "Phone No."
msgstr "crwdns130564:0crwdne130564:0"
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "crwdns98606:0{0}crwdnd98606:0{1}crwdne98606:0"
@@ -18919,10 +18964,6 @@ msgstr "crwdns98724:0crwdne98724:0"
msgid "Please save before attaching."
msgstr "crwdns98726:0crwdne98726:0"
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "crwdns98728:0crwdne98728:0"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "crwdns98730:0crwdne98730:0"
@@ -18955,7 +18996,7 @@ msgstr "crwdns98744:0crwdne98744:0"
msgid "Please select X and Y fields"
msgstr "crwdns111128:0crwdne111128:0"
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr "crwdns98746:0{1}crwdne98746:0"
@@ -18971,7 +19012,7 @@ msgstr "crwdns98748:0crwdne98748:0"
msgid "Please select a valid csv file with data"
msgstr "crwdns98750:0crwdne98750:0"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "crwdns98752:0crwdne98752:0"
@@ -19049,7 +19090,7 @@ msgstr "crwdns154306:0crwdne154306:0"
msgid "Please specify"
msgstr "crwdns98790:0crwdne98790:0"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr "crwdns98792:0{0}crwdne98792:0"
@@ -19086,10 +19127,6 @@ msgstr "crwdns98800:0crwdne98800:0"
msgid "Please use a valid LDAP search filter"
msgstr "crwdns98802:0crwdne98802:0"
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "crwdns98804:0crwdne98804:0"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "crwdns111462:0crwdne111462:0"
@@ -19183,6 +19220,10 @@ msgstr "crwdns98850:0{0}crwdne98850:0"
msgid "Posts filed under {0}"
msgstr "crwdns98852:0{0}crwdne98852:0"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr "crwdns155592:0{0}crwdne155592:0"
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19242,7 +19283,7 @@ msgstr "crwdns154308:0crwdne154308:0"
msgid "Prepared Report User"
msgstr "crwdns98878:0crwdne98878:0"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr "crwdns98880:0crwdne98880:0"
@@ -19271,8 +19312,6 @@ msgstr "crwdns98886:0crwdne98886:0"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19660,7 +19699,7 @@ msgstr "crwdns130650:0crwdne130650:0"
msgid "Progress"
msgstr "crwdns99060:0crwdne99060:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "crwdns99062:0crwdne99062:0"
@@ -19755,14 +19794,7 @@ msgstr "crwdns130662:0crwdne130662:0"
msgid "Publish"
msgstr "crwdns99094:0crwdne99094:0"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr "crwdns130664:0crwdne130664:0"
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19770,7 +19802,6 @@ msgstr "crwdns130664:0crwdne130664:0"
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19945,7 +19976,7 @@ msgstr "crwdns99178:0crwdne99178:0"
msgid "Query analysis complete. Check suggested indexes."
msgstr "crwdns127880:0crwdne127880:0"
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr "crwdns99182:0crwdne99182:0"
@@ -19991,7 +20022,6 @@ msgstr "crwdns130700:0crwdne130700:0"
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "crwdns99196:0crwdne99196:0"
@@ -20014,19 +20044,11 @@ msgstr "crwdns99208:0{0}crwdne99208:0"
msgid "Queued for backup. You will receive an email with the download link"
msgstr "crwdns99212:0crwdne99212:0"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr "crwdns99214:0{0}crwdne99214:0"
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr "crwdns130706:0crwdne130706:0"
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr "crwdns99216:0crwdne99216:0"
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr "crwdns99218:0{0}crwdne99218:0"
@@ -20227,7 +20249,7 @@ msgstr "crwdns130736:0crwdne130736:0"
msgid "Read mode"
msgstr "crwdns99316:0crwdne99316:0"
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr "crwdns99318:0crwdne99318:0"
@@ -21094,7 +21116,7 @@ msgstr "crwdns99726:0crwdne99726:0"
msgid "Report timed out."
msgstr "crwdns99728:0crwdne99728:0"
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "crwdns99730:0crwdne99730:0"
@@ -21115,7 +21137,7 @@ msgstr "crwdns99736:0{0}crwdne99736:0"
msgid "Report {0} deleted"
msgstr "crwdns99738:0{0}crwdne99738:0"
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "crwdns99740:0{0}crwdne99740:0"
@@ -21448,10 +21470,8 @@ msgstr "crwdns99904:0crwdne99904:0"
msgid "Revoked"
msgstr "crwdns130900:0crwdne130900:0"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21662,7 +21682,6 @@ msgstr "crwdns130926:0crwdne130926:0"
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21676,7 +21695,6 @@ msgstr "crwdns130926:0crwdne130926:0"
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21794,7 +21812,7 @@ msgstr "crwdns130940:0crwdne130940:0"
msgid "Rule Conditions"
msgstr "crwdns130942:0crwdne130942:0"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "crwdns100084:0crwdne100084:0"
@@ -21983,11 +22001,11 @@ msgstr "crwdns130978:0crwdne130978:0"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22079,32 +22097,17 @@ msgstr "crwdns100204:0crwdne100204:0"
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr "crwdns100206:0crwdne100206:0"
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr "crwdns100208:0crwdne100208:0"
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr "crwdns100210:0crwdne100210:0"
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr "crwdns100212:0crwdne100212:0"
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr "crwdns130982:0crwdne130982:0"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "crwdns100216:0crwdne100216:0"
@@ -22138,17 +22141,6 @@ msgstr "crwdns100228:0crwdne100228:0"
msgid "Scheduled Jobs Logs"
msgstr "crwdns143312:0crwdne143312:0"
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr "crwdns130986:0crwdne130986:0"
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "crwdns130988:0crwdne130988:0"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "crwdns100240:0{0}crwdne100240:0"
@@ -22360,6 +22352,11 @@ msgstr "crwdns100316:0crwdne100316:0"
msgid "Searching ..."
msgstr "crwdns100318:0crwdne100318:0"
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr "crwdns155594:0crwdne155594:0"
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22749,9 +22746,7 @@ msgstr "crwdns100490:0{0}crwdne100490:0"
msgid "Self approval is not allowed"
msgstr "crwdns100492:0crwdne100492:0"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "crwdns100494:0crwdne100494:0"
@@ -22782,11 +22777,6 @@ msgstr "crwdns131050:0crwdne131050:0"
msgid "Send Email Alert"
msgstr "crwdns131052:0crwdne131052:0"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr "crwdns131054:0crwdne131054:0"
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22844,38 +22834,16 @@ msgstr "crwdns100532:0crwdne100532:0"
msgid "Send System Notification"
msgstr "crwdns131076:0crwdne131076:0"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr "crwdns100536:0crwdne100536:0"
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "crwdns131078:0crwdne131078:0"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "crwdns131080:0crwdne131080:0"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr "crwdns131082:0crwdne131082:0"
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "crwdns131084:0crwdne131084:0"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr "crwdns100548:0crwdne100548:0"
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr "crwdns100550:0crwdne100550:0"
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22923,10 +22891,6 @@ msgstr "crwdns100562:0crwdne100562:0"
msgid "Send me a copy"
msgstr "crwdns100564:0crwdne100564:0"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr "crwdns100566:0crwdne100566:0"
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22942,19 +22906,15 @@ msgstr "crwdns131098:0crwdne131098:0"
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "crwdns131100:0crwdne131100:0"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "crwdns131102:0crwdne131102:0"
@@ -22971,9 +22931,7 @@ msgid "Sender Field should have Email in options"
msgstr "crwdns100592:0crwdne100592:0"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr "crwdns131106:0crwdne131106:0"
@@ -22993,18 +22951,9 @@ msgstr "crwdns131110:0crwdne131110:0"
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "crwdns100604:0crwdne100604:0"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr "crwdns100610:0crwdne100610:0"
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr "crwdns100612:0crwdne100612:0"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23012,8 +22961,6 @@ msgstr "crwdns100612:0crwdne100612:0"
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "crwdns100614:0crwdne100614:0"
@@ -23083,7 +23030,7 @@ msgstr "crwdns100642:0{0}crwdnd100642:0{1}crwdne100642:0"
msgid "Server Action"
msgstr "crwdns131128:0crwdne131128:0"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "crwdns100646:0crwdne100646:0"
@@ -23102,7 +23049,7 @@ msgstr "crwdns131130:0crwdne131130:0"
msgid "Server Script"
msgstr "crwdns100650:0crwdne100650:0"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "crwdns100660:0crwdne100660:0"
@@ -23141,15 +23088,15 @@ msgstr "crwdns100672:0crwdne100672:0"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "crwdns100674:0crwdne100674:0"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "crwdns100678:0crwdne100678:0"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "crwdns100680:0crwdne100680:0"
@@ -23379,7 +23326,7 @@ msgstr "crwdns100754:0crwdne100754:0"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24462,7 +24409,6 @@ msgstr "crwdns131324:0crwdne131324:0"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24487,7 +24433,6 @@ msgstr "crwdns131324:0crwdne131324:0"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24628,8 +24573,6 @@ msgstr "crwdns131356:0crwdne131356:0"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24638,7 +24581,6 @@ msgstr "crwdns131356:0crwdne131356:0"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25009,7 +24951,7 @@ msgstr "crwdns101474:0crwdne101474:0"
msgid "Syncing {0} of {1}"
msgstr "crwdns101476:0{0}crwdnd101476:0{1}crwdne101476:0"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr "crwdns101478:0crwdne101478:0"
@@ -25316,7 +25258,7 @@ msgstr "crwdns112742:0crwdne112742:0"
msgid "Table updated"
msgstr "crwdns101536:0crwdne101536:0"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "crwdns101538:0{0}crwdne101538:0"
@@ -25443,10 +25385,6 @@ msgstr "crwdns131430:0crwdne131430:0"
msgid "Test Spanish"
msgstr "crwdns149016:0crwdne149016:0"
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "crwdns101590:0{0}crwdne101590:0"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "crwdns101592:0crwdne101592:0"
@@ -25512,10 +25450,6 @@ msgstr "crwdns101622:0crwdne101622:0"
msgid "Thank you for your feedback!"
msgstr "crwdns101624:0crwdne101624:0"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "crwdns101626:0crwdne101626:0"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr "crwdns148336:0crwdne148336:0"
@@ -25704,7 +25638,7 @@ msgstr "crwdns101696:0crwdne101696:0"
msgid "The reset password link has either been used before or is invalid"
msgstr "crwdns101698:0crwdne101698:0"
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "crwdns101700:0crwdne101700:0"
@@ -25716,7 +25650,7 @@ msgstr "crwdns101702:0{0}crwdne101702:0"
msgid "The selected document {0} is not a {1}."
msgstr "crwdns101704:0{0}crwdnd101704:0{1}crwdne101704:0"
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "crwdns101706:0crwdne101706:0"
@@ -25869,7 +25803,7 @@ msgstr "crwdns131474:0crwdne131474:0"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "crwdns101768:0crwdne101768:0"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "crwdns101774:0crwdne101774:0"
@@ -25893,7 +25827,7 @@ msgstr "crwdns155058:0crwdne155058:0"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "crwdns112746:0crwdne112746:0"
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "crwdns101776:0crwdne101776:0"
@@ -26053,14 +25987,6 @@ msgstr "crwdns101834:0crwdne101834:0"
msgid "This month"
msgstr "crwdns101836:0crwdne101836:0"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr "crwdns101838:0{0}crwdne101838:0"
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr "crwdns101840:0crwdne101840:0"
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "crwdns111474:0{0}crwdnd111474:0{1}crwdne111474:0"
@@ -26173,7 +26099,6 @@ msgstr "crwdns131496:0crwdne131496:0"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "crwdns101884:0crwdne101884:0"
@@ -26399,10 +26324,8 @@ msgid "Title of the page"
msgstr "crwdns102014:0crwdne102014:0"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "crwdns102016:0crwdne102016:0"
@@ -26679,7 +26602,7 @@ msgstr "crwdns131572:0crwdne131572:0"
msgid "Topic"
msgstr "crwdns131574:0crwdne131574:0"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26707,16 +26630,8 @@ msgstr "crwdns111290:0crwdne111290:0"
msgid "Total Outgoing Emails"
msgstr "crwdns131580:0crwdne131580:0"
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr "crwdns131582:0crwdne131582:0"
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "crwdns131584:0crwdne131584:0"
@@ -26725,11 +26640,6 @@ msgstr "crwdns131584:0crwdne131584:0"
msgid "Total Users"
msgstr "crwdns131586:0crwdne131586:0"
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr "crwdns131588:0crwdne131588:0"
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27126,23 +27036,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "crwdns131658:0crwdne131658:0"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr "crwdns148956:0crwdne148956:0"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr "crwdns148958:0crwdne148958:0"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr "crwdns148960:0crwdne148960:0"
@@ -27192,7 +27096,7 @@ msgstr "crwdns102342:0{0}crwdne102342:0"
msgid "Unassign Condition"
msgstr "crwdns131662:0crwdne131662:0"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr "crwdns151458:0crwdne151458:0"
@@ -27208,6 +27112,10 @@ msgstr "crwdns102350:0crwdne102350:0"
msgid "Undo last action"
msgstr "crwdns102352:0crwdne102352:0"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr "crwdns155596:0{0}crwdne155596:0"
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27240,7 +27148,7 @@ msgstr "crwdns111298:0crwdne111298:0"
msgid "Unknown Column: {0}"
msgstr "crwdns102366:0{0}crwdne102366:0"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr "crwdns102368:0crwdne102368:0"
@@ -27273,7 +27181,7 @@ msgstr "crwdns131668:0crwdne131668:0"
msgid "Unread Notification Sent"
msgstr "crwdns131670:0crwdne131670:0"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr "crwdns102382:0crwdne102382:0"
@@ -27287,7 +27195,7 @@ msgstr "crwdns111300:0crwdne111300:0"
msgid "Unshared"
msgstr "crwdns131672:0crwdne131672:0"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "crwdns102388:0crwdne102388:0"
@@ -27311,6 +27219,11 @@ msgstr "crwdns154322:0crwdne154322:0"
msgid "Unsubscribed"
msgstr "crwdns102394:0crwdne102394:0"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr "crwdns155598:0{0}crwdne155598:0"
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "crwdns102402:0crwdne102402:0"
@@ -27433,7 +27346,7 @@ msgstr "crwdns102450:0crwdne102450:0"
msgid "Updated successfully"
msgstr "crwdns102452:0crwdne102452:0"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "crwdns102456:0crwdne102456:0"
@@ -28168,7 +28081,7 @@ msgstr "crwdns102770:0crwdne102770:0"
msgid "Value {0} missing for {1}"
msgstr "crwdns102772:0{0}crwdnd102772:0{1}crwdne102772:0"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "crwdns102774:0{0}crwdne102774:0"
@@ -28593,7 +28506,6 @@ msgstr "crwdns131842:0crwdne131842:0"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28601,9 +28513,7 @@ msgid "Website"
msgstr "crwdns102952:0crwdne102952:0"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "crwdns102956:0crwdne102956:0"
@@ -29039,7 +28949,7 @@ msgstr "crwdns112760:0crwdne112760:0"
msgid "Workspace"
msgstr "crwdns103156:0crwdne103156:0"
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr "crwdns103162:0{0}crwdne103162:0"
@@ -29262,11 +29172,11 @@ msgstr "crwdns111444:0crwdne111444:0"
msgid "You are not allowed to access this resource"
msgstr "crwdns151618:0crwdne151618:0"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "crwdns103258:0{0}crwdnd103258:0{1}crwdnd103258:0{2}crwdnd103258:0{3}crwdne103258:0"
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "crwdns103260:0{0}crwdnd103260:0{1}crwdnd103260:0{2}crwdnd103260:0{3}crwdnd103260:0{4}crwdne103260:0"
@@ -29289,7 +29199,7 @@ msgstr "crwdns103268:0crwdne103268:0"
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "crwdns103270:0crwdne103270:0"
@@ -29317,7 +29227,7 @@ msgstr "crwdns103280:0crwdne103280:0"
msgid "You are not permitted to access this page."
msgstr "crwdns103282:0crwdne103282:0"
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr "crwdns155350:0crwdne155350:0"
@@ -29412,7 +29322,7 @@ msgstr "crwdns111340:0crwdne111340:0"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "crwdns148354:0crwdne148354:0"
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "crwdns103318:0crwdne103318:0"
@@ -29489,11 +29399,15 @@ msgstr "crwdns103348:0crwdne103348:0"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "crwdns103350:0crwdne103350:0"
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "crwdns103352:0crwdne103352:0"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr "crwdns155600:0{0}crwdne155600:0"
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr "crwdns149134:0{0}crwdnd149134:0{1}crwdne149134:0"
@@ -29501,7 +29415,7 @@ msgstr "crwdns149134:0{0}crwdnd149134:0{1}crwdne149134:0"
msgid "You do not have permissions to cancel all linked documents."
msgstr "crwdns103360:0crwdne103360:0"
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "crwdns103362:0{0}crwdne103362:0"
@@ -29509,11 +29423,11 @@ msgstr "crwdns103362:0{0}crwdne103362:0"
msgid "You don't have permission to access the {0} DocType."
msgstr "crwdns103364:0{0}crwdne103364:0"
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "crwdns103366:0crwdne103366:0"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "crwdns103368:0{0}crwdne103368:0"
@@ -29606,7 +29520,7 @@ msgstr "crwdns112716:0crwdne112716:0"
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "crwdns103406:0crwdne103406:0"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "crwdns103408:0crwdne103408:0"
@@ -29772,7 +29686,7 @@ msgstr "crwdns131910:0crwdne131910:0"
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "crwdns103468:0crwdne103468:0"
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "crwdns103470:0crwdne103470:0"
@@ -29784,7 +29698,7 @@ msgstr "crwdns111354:0crwdne111354:0"
msgid "Your verification code is {0}"
msgstr "crwdns103472:0{0}crwdne103472:0"
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "crwdns103476:0crwdne103476:0"
@@ -29831,7 +29745,7 @@ msgstr "crwdns131918:0crwdne131918:0"
msgid "amend"
msgstr "crwdns131920:0crwdne131920:0"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "crwdns103502:0crwdne103502:0"
@@ -29888,7 +29802,7 @@ msgstr "crwdns131930:0crwdne131930:0"
msgid "cyan"
msgstr "crwdns131932:0crwdne131932:0"
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30003,7 +29917,7 @@ msgstr "crwdns131958:0crwdne131958:0"
msgid "email inbox"
msgstr "crwdns103630:0crwdne103630:0"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "crwdns103632:0crwdne103632:0"
@@ -30055,7 +29969,7 @@ msgstr "crwdns131974:0crwdne131974:0"
msgid "gzip not found in PATH! This is required to take a backup."
msgstr "crwdns103692:0crwdne103692:0"
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30089,7 +30003,7 @@ msgstr "crwdns103730:0crwdne103730:0"
msgid "just now"
msgstr "crwdns103732:0crwdne103732:0"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr "crwdns103734:0crwdne103734:0"
@@ -30129,7 +30043,7 @@ msgstr "crwdns111362:0crwdne111362:0"
msgid "long"
msgstr "crwdns131990:0crwdne131990:0"
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30319,7 +30233,7 @@ msgstr "crwdns132042:0crwdne132042:0"
msgid "restored {0} as {1}"
msgstr "crwdns103898:0{0}crwdnd103898:0{1}crwdne103898:0"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30654,7 +30568,7 @@ msgstr "crwdns104100:0{0}crwdne104100:0"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "crwdns104102:0{0}crwdnd104102:0{1}crwdnd104102:0{2}crwdne104102:0"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "crwdns104104:0{0}crwdnd104104:0{1}crwdne104104:0"
@@ -30760,6 +30674,10 @@ msgstr "crwdns104166:0{0}crwdnd104166:0{1}crwdne104166:0"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "crwdns104168:0{0}crwdnd104168:0{1}crwdne104168:0"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr "crwdns155602:0{0}crwdnd155602:0{1}crwdne155602:0"
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "crwdns104170:0{0}crwdnd104170:0{1}crwdne104170:0"
@@ -30780,10 +30698,6 @@ msgstr "crwdns104184:0{0}crwdne104184:0"
msgid "{0} has already assigned default value for {1}."
msgstr "crwdns104186:0{0}crwdnd104186:0{1}crwdne104186:0"
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "crwdns104188:0{0}crwdne104188:0"
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "crwdns104190:0{0}crwdnd104190:0{1}crwdnd104190:0{2}crwdne104190:0"
@@ -30854,6 +30768,10 @@ msgstr "crwdns104222:0{0}crwdnd104222:0{1}crwdne104222:0"
msgid "{0} is mandatory"
msgstr "crwdns104224:0{0}crwdne104224:0"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr "crwdns155604:0{0}crwdnd155604:0{1}crwdne155604:0"
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr "crwdns104226:0{0}crwdnd104226:0{1}crwdne104226:0"
@@ -30875,7 +30793,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "crwdns104232:0{0}crwdne104232:0"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "crwdns104234:0{0}crwdne104234:0"
@@ -30883,11 +30801,11 @@ msgstr "crwdns104234:0{0}crwdne104234:0"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "crwdns152102:0{0}crwdne152102:0"
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "crwdns104236:0{0}crwdne104236:0"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "crwdns104238:0{0}crwdne104238:0"
@@ -30895,11 +30813,11 @@ msgstr "crwdns104238:0{0}crwdne104238:0"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "crwdns104240:0{0}crwdne104240:0"
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr "crwdns104242:0{0}crwdnd104242:0{1}crwdne104242:0"
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr "crwdns104244:0{0}crwdnd104244:0{1}crwdne104244:0"
@@ -30987,23 +30905,23 @@ msgstr "crwdns104280:0{0}crwdne104280:0"
msgid "{0} months ago"
msgstr "crwdns104282:0{0}crwdne104282:0"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "crwdns104284:0{0}crwdnd104284:0{1}crwdne104284:0"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr "crwdns148714:0{0}crwdnd148714:0{1}crwdne148714:0"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr "crwdns148716:0{0}crwdnd148716:0{1}crwdne148716:0"
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr "crwdns148718:0{0}crwdnd148718:0{1}crwdne148718:0"
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "crwdns104286:0{0}crwdnd104286:0{1}crwdne104286:0"
@@ -31015,7 +30933,7 @@ msgstr "crwdns104288:0{0}crwdne104288:0"
msgid "{0} must be unique"
msgstr "crwdns104290:0{0}crwdne104290:0"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr "crwdns148720:0{0}crwdnd148720:0{1}crwdnd148720:0{2}crwdne148720:0"
@@ -31044,16 +30962,12 @@ msgstr "crwdns104300:0{0}crwdnd104300:0{1}crwdne104300:0"
msgid "{0} of {1} ({2} rows with children)"
msgstr "crwdns104302:0{0}crwdnd104302:0{1}crwdnd104302:0{2}crwdne104302:0"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr "crwdns104304:0{0}crwdnd104304:0{1}crwdne104304:0"
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr "crwdns104510:0{0}crwdne104510:0"
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "crwdns104306:0{0}crwdnd104306:0{1}crwdne104306:0"
@@ -31090,11 +31004,11 @@ msgstr "crwdns104320:0{0}crwdne104320:0"
msgid "{0} role does not have permission on any doctype"
msgstr "crwdns111370:0{0}crwdne111370:0"
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr "crwdns152018:0{0}crwdnd152018:0#{1}crwdne152018:0"
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "crwdns104328:0{0}crwdne104328:0"
@@ -31206,7 +31120,7 @@ msgstr "crwdns104378:0{0}crwdnd104378:0{1}crwdne104378:0"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "crwdns104380:0{0}crwdnd104380:0{1}crwdnd104380:0{2}crwdne104380:0"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "crwdns104382:0{0}crwdnd104382:0{1}crwdne104382:0"
@@ -31359,11 +31273,11 @@ msgstr "crwdns104448:0{{{0}}}crwdnd104448:0{{field_name}}crwdne104448:0"
msgid "{} Complete"
msgstr "crwdns104450:0crwdne104450:0"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr "crwdns104452:0crwdne104452:0"
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr "crwdns104454:0crwdne104454:0"
@@ -31385,7 +31299,7 @@ msgstr "crwdns104458:0crwdne104458:0"
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr "crwdns104460:0crwdne104460:0"
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "crwdns104462:0crwdne104462:0"
diff --git a/frappe/locale/es.po b/frappe/locale/es.po
index b44ca7bbac..aa2b29f469 100644
--- a/frappe/locale/es.po
+++ b/frappe/locale/es.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:33\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Spanish\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "'En vista de lista' no está permitido para el tipo {0} en el renglón {
msgid "'Recipients' not specified"
msgstr "'Destinatarios' no especificados"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "'{0}' no es una URL válida"
@@ -986,7 +986,7 @@ msgstr "Acción / Ruta"
msgid "Action Complete"
msgstr "Acción completada"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "Acción Fallida"
@@ -1625,6 +1625,14 @@ msgstr "Alerta"
msgid "Alerts and Notifications"
msgstr "Alertas y Notificaciones"
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1665,7 +1673,6 @@ msgstr "Alinear Valor"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -2111,7 +2118,7 @@ msgstr "Enmienda no permitida"
msgid "Amendment naming rules updated."
msgstr "Reglas de nomenclatura rectificada actualizadas."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr "Se produjo un error al configurar los valores predeterminados de la sesión"
@@ -2229,7 +2236,7 @@ msgstr "Nombre de la Aplicación"
msgid "App not found for module: {0}"
msgstr "App no encontrada para el módulo: {0}"
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "Aplicación {0} no está instalada"
@@ -2443,10 +2450,6 @@ msgstr "¿Está seguro de que desea restablecer todas las personalizaciones?"
msgid "Are you sure you want to save this document?"
msgstr "¿Está seguro de que desea guardar este documento?"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "¿Está seguro de que desea enviar este boletín ahora?"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2700,9 +2703,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr "El nombre \"Adjuntado a\" debe ser una cadena o un entero"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "Adjunto"
@@ -2729,10 +2730,7 @@ msgid "Attachment Removed"
msgstr "Adjunto Eliminado"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2750,11 +2748,6 @@ msgstr "Intentando iniciar QZ Tray..."
msgid "Attribution"
msgstr "Atribuciones"
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr "Audiencia"
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3181,7 +3174,7 @@ msgstr "Imagen de Fondo"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr "Trabajos en Segundo Plano"
@@ -3910,9 +3903,7 @@ msgstr "Título de devolución de llamada"
msgid "Camera"
msgstr "Cámara"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3998,10 +3989,6 @@ msgstr "Cancelar todo"
msgid "Cancel All Documents"
msgstr "Cancelar todos los documentos"
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr "Cancelar Programación"
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4295,7 +4282,7 @@ msgstr "Descripción de categoría"
msgid "Category Name"
msgstr "Nombre Categoría"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr "Centavo"
@@ -4464,10 +4451,6 @@ msgstr "Marcar"
msgid "Check Request URL"
msgstr "Verificar URL de Solicitud"
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr "Comprobar enlaces rotos"
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr "Marque las columnas para seleccionar, arrastrar para establecer el orden."
@@ -4491,10 +4474,6 @@ msgstr "Seleccione esta opción si desea obligar al usuario a seleccionar una se
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr "Comprobando enlaces rotos..."
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "Comprobando un momento"
@@ -4541,6 +4520,10 @@ msgstr "Tabla secundaria {0} para el campo {1}"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Las tablas secundarias se muestran como una cuadrícula en otros DocTypes"
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "Elija una tarjeta existente o cree una nueva tarjeta"
@@ -4630,10 +4613,6 @@ msgstr "Haga clic en Personalizar para agregar su primer widget"
msgid "Click here"
msgstr "Click aquí"
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "Haga clic aquí para verificar"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "Haga clic en un archivo para seleccionarlo."
@@ -4975,7 +4954,7 @@ msgstr "Columnas"
msgid "Columns / Fields"
msgstr "Columnas / Campos"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "Columnas basadas en"
@@ -5297,17 +5276,12 @@ msgstr "Confirmar Contraseña"
msgid "Confirm Request"
msgstr "Confirmar petición"
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "Confirme su Email"
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "Plantilla de correo electrónico de confirmación"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "Confirmado"
@@ -5438,8 +5412,6 @@ msgstr "Contiene {0} correcciones de seguridad"
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5447,7 +5419,6 @@ msgstr "Contiene {0} correcciones de seguridad"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5472,10 +5443,8 @@ msgstr "Contenido (descuento)"
msgid "Content Hash"
msgstr "Contenido Hash"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5581,6 +5550,10 @@ msgstr "No se pudo encontrar {0}"
msgid "Could not map column {0} to field {1}"
msgstr "No se pudo asignar la columna {0} al campo {1}"
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr "No se pudo iniciar: "
@@ -5636,7 +5609,7 @@ msgstr "Mostrador"
msgid "Country"
msgstr "País"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr "Código de País requerido"
@@ -5767,11 +5740,6 @@ msgstr "Crear: {0}"
msgid "Create a {0} Account"
msgstr "Cree una cuenta en {0}"
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr "Cree y envíe periódicamente correos electrónicos a un grupo específico de suscriptores."
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr "Crear o Editar Formato Impresión"
@@ -6120,6 +6088,10 @@ msgstr "Traducción personalizada"
msgid "Custom field renamed to {0} successfully."
msgstr "Campo personalizado renombrado a {0} exitosamente."
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6177,7 +6149,7 @@ msgstr "Personalizar el Tablero"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "Personalizar Formulario"
@@ -6470,7 +6442,6 @@ msgstr "Versión de la base de datos"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6534,6 +6505,11 @@ msgstr "Día"
msgid "Day of Week"
msgstr "Día de la semana"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr "Dias"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6801,6 +6777,7 @@ msgstr "Retrasado"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -7113,6 +7090,7 @@ msgstr "Tema de Escritorio"
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7869,7 +7847,7 @@ msgid "Document Types and Permissions"
msgstr "Tipos de documentos y permisos"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr "Documento desbloqueado"
@@ -8487,7 +8465,6 @@ msgstr "Selector de elementos"
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8581,11 +8558,9 @@ msgstr "Adjuntar dirección en pie de página"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "Grupo de Correo Electrónico"
@@ -8658,18 +8633,11 @@ msgstr "Límite de reintentos de correo electrónico"
msgid "Email Rule"
msgstr "Regla de correo electrónico"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "Correo Electrónico Enviado"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr "Correo enviado el"
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8776,10 +8744,18 @@ msgstr "Los Correos Electrónicos se enviarán con las próximas acciones de flu
msgid "Embed code copied"
msgstr "Código integrado copiado"
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr "Columna vacía"
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9244,6 +9220,14 @@ msgstr "Error en la Notificación"
msgid "Error in print format on line {0}: {1}"
msgstr "Error en formato de impresión en línea {0}: {1}"
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "Error al conectarte a la cuenta de correo electrónico {0}"
@@ -9440,6 +9424,10 @@ msgstr "Expandir"
msgid "Expand All"
msgstr "Expandir todo"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr "Experimental"
@@ -9971,7 +9959,7 @@ msgstr "Nombre de campo '{0}' en conflicto con un {1} del nombre {2} en {3}"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "El nombre de campo llamado {0} debe existir para habilitar el nombre automático"
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Nombre de campo está limitado a 64 caracteres ({0})"
@@ -9987,7 +9975,7 @@ msgstr "Nombre de campo por el cual el 'DocType' enlazará el campo."
msgid "Fieldname {0} appears multiple times"
msgstr "El nombre de campo {0} aparece varias veces"
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "El nombre del campo {0} no puede tener caracteres especiales como {1}"
@@ -10039,6 +10027,10 @@ msgstr "Los campos `file_name` o `file_url` deben establecerse para Archivo"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Los campos deben ser una lista o tupla cuando as_list está activado"
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10204,6 +10196,14 @@ msgstr "Nombre del Filtro"
msgid "Filter Values"
msgstr "Valores del Filtro"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr "Filtrar..."
@@ -10447,10 +10447,6 @@ msgstr "Siguientes campos tienen valores que faltan"
msgid "Following fields have missing values:"
msgstr "Siguientes campos tienen valores que faltan:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr "Los siguientes enlaces están rotos en el contenido del correo electrónico: {0}"
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10868,10 +10864,8 @@ msgid "Friday"
msgstr "Viernes"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "Desde"
@@ -10952,10 +10946,14 @@ msgstr "Función"
msgid "Function Based On"
msgstr "Función basada en"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr "La función {0} no está en la lista blanca."
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Sólo se pueden crear más nodos bajo nodos de tipo 'Grupo'"
@@ -11437,6 +11435,10 @@ msgstr "Agrupar por tipo"
msgid "Group By field is required to create a dashboard chart"
msgstr "El campo agrupar por, es obligatorio para crear un gráfico del tablero"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "Agrupar por nota"
@@ -11485,7 +11487,6 @@ msgstr "HH: mm: ss"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11499,7 +11500,6 @@ msgstr "HH: mm: ss"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -12008,6 +12008,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr "Límite de tarifa por hora para generar enlaces de restablecimiento de contraseña"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "Horas"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12773,11 +12778,11 @@ msgstr "Usuario o Contraseña Incorrecta"
msgid "Incorrect Verification code"
msgstr "Código de Verificación incorrecto"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr "Valor incorrecto en la fila {0}:"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr "Valor incorrecto:"
@@ -12929,11 +12934,11 @@ msgstr "Instrucciones"
msgid "Instructions Emailed"
msgstr "Instrucciones enviadas por correo electrónico"
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr "Nivel de permiso insuficiente para {0}"
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "Permiso insuficiente para {0}"
@@ -13083,7 +13088,7 @@ msgstr "Condición inválida: {}"
msgid "Invalid Credentials"
msgstr "Credenciales no válidas"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "Fecha invalida"
@@ -13091,7 +13096,7 @@ msgstr "Fecha invalida"
msgid "Invalid DocType"
msgstr "DocType inválido"
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr "DocType no válido: {0}"
@@ -13103,6 +13108,11 @@ msgstr "Nombre de campo no válido"
msgid "Invalid File URL"
msgstr "URL de archivo inválida"
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr "Formato de filtro no válido para el campo {0} de tipo {1}. Pruebe a utilizar el icono de filtro en el campo para configurarlo correctamente"
@@ -13167,7 +13177,7 @@ msgstr "Parámetros Inválidos."
msgid "Invalid Password"
msgstr "Contraseña invalida"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr "Numero de telefono invalido"
@@ -13211,10 +13221,38 @@ msgstr "Secreto de Webhook inválido"
msgid "Invalid aggregate function"
msgstr "Función de agregación inválida"
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "Columna inválida"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "Estado del documento no válido"
@@ -13227,10 +13265,26 @@ msgstr "Conjunto de expresión no válida en el filtro {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Conjunto de expresión no válida en el filtro {0} ({1})"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "Nombre de campo inválido {0}"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Nombre de campo no válido '{0}' en nombre automático"
@@ -13239,11 +13293,26 @@ msgstr "Nombre de campo no válido '{0}' en nombre automático"
msgid "Invalid file path: {0}"
msgstr "Ruta no válida archivo: {0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "Filtro no válido: {0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13265,10 +13334,22 @@ msgstr "Contenido no válido o dañado para importar"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Regex de redirección no válida en la fila #{}: {}"
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr "Argumentos de solicitud inválidos"
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "Archivo de plantilla no válido para importar"
@@ -13710,11 +13791,11 @@ msgstr "Columna de Tablero Kanban"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "Nombre del Tablero Kanban"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "Configuración de Kanban"
@@ -14426,6 +14507,10 @@ msgstr "Me Gustas"
msgid "Limit"
msgstr "Límite"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14689,6 +14774,7 @@ msgid "Load Balancing"
msgstr "Balanceo de carga"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15207,11 +15293,9 @@ msgstr "Marcar como Correo No Deseado"
msgid "Mark as Unread"
msgstr "Marcar como no Leído"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15400,7 +15484,6 @@ msgstr "La fusión sólo es posible de Grupo -a- Grupo o de Nodo -a- Nodo en la
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15413,7 +15496,6 @@ msgstr "La fusión sólo es posible de Grupo -a- Grupo o de Nodo -a- Nodo en la
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15428,16 +15510,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Mensaje"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "Mensaje (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "Mensaje (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15561,7 +15633,7 @@ msgstr "Meta título para SEO"
msgid "Method"
msgstr "Método"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr "Método no permitido"
@@ -15611,6 +15683,11 @@ msgstr "Puntuación mínima de contraseña"
msgid "Minor"
msgstr "Menor"
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr "Minutos"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -16006,7 +16083,7 @@ msgstr "Debe ir encerrado entre '()' e incluir '{0}', que es un marcador de posi
msgid "Must be of type \"Attach Image\""
msgstr "Debe ser del tipo \"Adjuntar Imagen\""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "Debe tener permisos de reporte para ver este documento."
@@ -16196,6 +16273,10 @@ msgstr "Necesita el rol de Administrador del Área de Trabajo para editar el ár
msgid "Negative Value"
msgstr "Valor negativo"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "Error de conjunto anidado. Contacta con el administrador."
@@ -16278,7 +16359,7 @@ msgstr "Nuevo Evento"
msgid "New Folder"
msgstr "Nueva carpeta"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "Nuevo Tablero Kanban"
@@ -16422,48 +16503,13 @@ msgstr "Las nuevas {} versiones para las siguientes aplicaciones están disponib
msgid "Newly created user {0} has no roles enabled."
msgstr "El usuario recién creado {0} no tiene ningún rol habilitado."
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "Boletín de noticias"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr "Adjuntar boletín de noticias"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "Boletín Grupo de correo electrónico"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "Administrador de boletínes"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "El boletín ya ha sido enviado"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr "Se debe publicar el boletín de noticias para enviar un enlace a la vista web en el correo electrónico"
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "El boletín debe tener al menos un destinatario"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "Boletines"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16725,7 +16771,7 @@ msgstr "No se encontraron resultados"
msgid "No Roles Specified"
msgstr "No hay Roles especificados"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr "No se ha encontrado ningún campo de selección"
@@ -16753,10 +16799,6 @@ msgstr "No hay alertas para hoy"
msgid "No automatic optimization suggestions available."
msgstr "No hay sugerencias de optimización automática disponibles."
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr "No se han encontrado enlaces rotos en el contenido del correo electrónico"
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "Sin cambios en el documento"
@@ -16793,7 +16835,7 @@ msgstr "Ningún contacto agregado todavía."
msgid "No contacts linked to document"
msgstr "No hay contactos vinculados al documento"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "No hay datos para exportar"
@@ -16813,7 +16855,7 @@ msgstr "No hay una cuenta de correo electrónico asociada con el usuario. Por fa
msgid "No failed logs"
msgstr "No hay registros fallidos"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "No se han encontrado campos que puedan utilizarse como Columna Kanban. Utilice el formulario de personalización para añadir un campo personalizado de tipo \"Seleccionar\"."
@@ -16872,7 +16914,7 @@ msgstr "No se de filas (máx 500)"
msgid "No of Sent SMS"
msgstr "Nº de SMS enviados"
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Sin permiso para {0}"
@@ -17000,7 +17042,7 @@ msgstr "No son Descendientes de"
msgid "Not Equals"
msgstr "No es igual"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "No encontrado"
@@ -17026,7 +17068,7 @@ msgstr "No está vinculado a ningún registro"
msgid "Not Nullable"
msgstr "No nulo"
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17035,7 +17077,7 @@ msgstr "No nulo"
msgid "Not Permitted"
msgstr "No permitido"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr "No permitido leer {0}"
@@ -17063,7 +17105,6 @@ msgstr "No visto"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "No enviado"
@@ -17096,7 +17137,7 @@ msgstr "Usuario no válido"
msgid "Not active"
msgstr "No activo"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "No permitido para {0}: {1}"
@@ -17530,6 +17571,10 @@ msgstr "Desplazamiento X"
msgid "Offset Y"
msgstr "Desplazamiento Y"
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "Contraseña anterior"
@@ -17703,7 +17748,7 @@ msgstr "Solo el Administrador del Área de Trabajo puede editar Áreas de Trabaj
msgid "Only allowed to export customizations in developer mode"
msgstr "Solo se permite exportar personalizaciones en modo desarrollador"
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr "Solo pueden descartarse los borradores de documentos"
@@ -17875,7 +17920,7 @@ msgstr "Abierto"
msgid "Operation"
msgstr "Operación"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "El Operador debe ser uno de {0}"
@@ -17974,6 +18019,10 @@ msgstr "Naranja"
msgid "Order"
msgstr "Orden"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18369,7 +18418,7 @@ msgstr "Parent es el nombre del documento al que se agregarán los datos."
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr "Campo padre no especificado en {0}: {1}"
@@ -18491,10 +18540,6 @@ msgstr "Las contraseñas no coinciden"
msgid "Passwords do not match!"
msgstr "¡Las contraseñas no coinciden!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr "Las fechas pasadas no están permitidas para Programación."
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "Pegar"
@@ -18640,7 +18685,7 @@ msgstr "¿Validar permanentemente {0}?"
msgid "Permanently delete {0}?"
msgstr "¿Eliminar permanentemente \"{0}\"?"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "Error de Permiso"
@@ -18792,7 +18837,7 @@ msgstr "Teléfono"
msgid "Phone No."
msgstr "No. de teléfono"
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Número de teléfono {0} establecido en el campo {1} no es válido."
@@ -19065,10 +19110,6 @@ msgstr "Por favor, elimine la asignación de la impresora en Configuración de l
msgid "Please save before attaching."
msgstr "Por favor, guarde los cambios antes de adjuntar"
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "Por favor, guarde el boletín antes de enviarlo"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "Por favor, guarde el documento antes de la asignación"
@@ -19101,7 +19142,7 @@ msgstr "Seleccione el valor mínimo de la contraseña"
msgid "Please select X and Y fields"
msgstr "Por favor, seleccione campos X e Y"
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr "Por favor, seleccione un código de país para el campo {1}."
@@ -19117,7 +19158,7 @@ msgstr "Por favor, seleccione un archivo o url"
msgid "Please select a valid csv file with data"
msgstr "Por favor, seleccione un archivo csv con datos válidos"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "Seleccione un filtro de fecha válido"
@@ -19195,7 +19236,7 @@ msgstr ""
msgid "Please specify"
msgstr "Por favor, especifique"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr "Por favor, especifique un DocType padre válido para {0}"
@@ -19232,10 +19273,6 @@ msgstr "Por favor, actualice {} antes de continuar."
msgid "Please use a valid LDAP search filter"
msgstr "Por favor, utilice un filtro de búsqueda LDAP válido"
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "Por favor verifica tu dirección de correo"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "Por favor, visite https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key para más información."
@@ -19329,6 +19366,10 @@ msgstr "Entradas por {0}"
msgid "Posts filed under {0}"
msgstr "Publicar bajo {0}"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19388,7 +19429,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr "Usuario de informe preparado"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr "Error en la representación del informe preparado"
@@ -19417,8 +19458,6 @@ msgstr "Presione Enter para guardar"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19806,7 +19845,7 @@ msgstr "Perfil"
msgid "Progress"
msgstr "Progreso"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "Proyecto"
@@ -19901,14 +19940,7 @@ msgstr "Archivos públicos (MB)"
msgid "Publish"
msgstr "Publicar"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr "Publicar como página web"
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19916,7 +19948,6 @@ msgstr "Publicar como página web"
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -20091,7 +20122,7 @@ msgstr "Informe de Consultas"
msgid "Query analysis complete. Check suggested indexes."
msgstr "Análisis de consultas finalizado. Compruebe los índices sugeridos."
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr "La consulta debe ser de tipo SELECT o WITH de sólo lectura."
@@ -20137,7 +20168,6 @@ msgstr "Cola(s)"
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "En cola"
@@ -20160,19 +20190,11 @@ msgstr "En cola para envío. Puedes seguir el progreso durante {0}."
msgid "Queued for backup. You will receive an email with the download link"
msgstr "En cola para la copia de seguridad. Recibirá un correo electrónico con el enlace de descarga"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr "Correos electrónicos {0} en cola"
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr "Colas"
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr "Poniendo correos electrónicos en cola..."
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr "Poniendo en cola {0} para su envío"
@@ -20373,7 +20395,7 @@ msgstr "Leído por el Destinatario en"
msgid "Read mode"
msgstr "Modo de lectura"
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr "Lea la documentación para saber más"
@@ -21240,7 +21262,7 @@ msgstr "Límite de reportes alcanzado"
msgid "Report timed out."
msgstr "Se agotó el tiempo de espera para reportar."
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "Informe actualizado con éxito"
@@ -21261,7 +21283,7 @@ msgstr "Informe {0}"
msgid "Report {0} deleted"
msgstr "Informe {0} eliminado"
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "El reporte {0} está deshabilitado"
@@ -21594,10 +21616,8 @@ msgstr "Revocar"
msgid "Revoked"
msgstr "Revocado"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21808,7 +21828,6 @@ msgstr "Método de Redondeo"
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21822,7 +21841,6 @@ msgstr "Método de Redondeo"
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21940,7 +21958,7 @@ msgstr "Regla"
msgid "Rule Conditions"
msgstr "Condiciones de la regla"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Ya existe una regla para este DocType, Rol, Permlevel y la combinación if-owner."
@@ -22129,11 +22147,11 @@ msgstr "Sábado"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22225,32 +22243,17 @@ msgstr "Escanee el código QR e ingrese el código resultante que se muestra."
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr "Calendario"
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr "Calendario del Boletín de noticias"
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr "Programar envío el"
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr "Programar envío el"
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr "Programar el envío para más tarde"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "Programado."
@@ -22284,17 +22287,6 @@ msgstr "Tipo de trabajo programado"
msgid "Scheduled Jobs Logs"
msgstr "Registro de Trabajos Programados"
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr "Enviando Programado"
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "Programado para enviar"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "Se actualizó la ejecución programada de la secuencia de comandos {0}"
@@ -22506,6 +22498,11 @@ msgstr "Buscar..."
msgid "Searching ..."
msgstr "Buscando ..."
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22895,9 +22892,7 @@ msgstr "Seleccionar {0}"
msgid "Self approval is not allowed"
msgstr "La auto aprobación no está permitida"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "Enviar"
@@ -22928,11 +22923,6 @@ msgstr "Enviar alerta en"
msgid "Send Email Alert"
msgstr "Enviar Alerta de Correo Electrónico"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr "Enviar correo el"
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22990,38 +22980,16 @@ msgstr "Enviar confirmación de lectura"
msgid "Send System Notification"
msgstr "Enviar notificación del sistema"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr "Enviar correo de prueba"
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "Enviar a todos los cesionarios"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "Enviar Enlace de cancelar suscripción"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr "Enviar enlace de vista web"
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "Enviar Email de bienvenida"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr "Enviar un correo de prueba"
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr "Volver a enviar"
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -23069,10 +23037,6 @@ msgstr "Enviar enlace de inicio de sesión"
msgid "Send me a copy"
msgstr "Enviarme una copia"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr "Enviar ahora"
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -23088,19 +23052,15 @@ msgstr "Enviar mensaje de correo electrónico para darse de baja"
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "Remitente"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "Correo electrónico del Remitente"
@@ -23117,9 +23077,7 @@ msgid "Sender Field should have Email in options"
msgstr "El campo del remitente debe tener opciones de correo electrónico"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr "Nombre del Remitente"
@@ -23139,18 +23097,9 @@ msgstr "SendGrid"
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "Enviando"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr "Enviando Correos"
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr "Enviando..."
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23158,8 +23107,6 @@ msgstr "Enviando..."
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "Enviado"
@@ -23229,7 +23176,7 @@ msgstr "Secuencia {0} ya utilizada en {1}"
msgid "Server Action"
msgstr "Acción del servidor"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Error del Servidor"
@@ -23248,7 +23195,7 @@ msgstr "Servidor IP"
msgid "Server Script"
msgstr "Script del servidor"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "Los scripts de servidor están desactivados. Por favor, habilite los scripts de servidor desde la configuración de bench."
@@ -23287,15 +23234,15 @@ msgstr "Configuración predeterminada de sesión"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "Valores predeterminados de sesión"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "Valores predeterminados de sesión guardados"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "Sesión expirada"
@@ -23549,7 +23496,7 @@ msgstr "Configurando su Sistema"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24632,7 +24579,6 @@ msgstr "Intervalo de tiempo de estadísticas"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24657,7 +24603,6 @@ msgstr "Intervalo de tiempo de estadísticas"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24798,8 +24743,6 @@ msgstr "Sub-dominio"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24808,7 +24751,6 @@ msgstr "Sub-dominio"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25179,7 +25121,7 @@ msgstr "Sincronización"
msgid "Syncing {0} of {1}"
msgstr "Sincronizando {0} de {1}"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr "Error de sintaxis"
@@ -25486,7 +25428,7 @@ msgstr "Tabla recortada"
msgid "Table updated"
msgstr "Tabla actualiza"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "La tabla {0} no puede estar vacía"
@@ -25613,10 +25555,6 @@ msgstr "ID del trabajo de prueba"
msgid "Test Spanish"
msgstr "Probar español"
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "Correo electrónico de prueba enviado a {0}"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Carpeta_Prueba"
@@ -25684,10 +25622,6 @@ msgstr "Gracias por su Email"
msgid "Thank you for your feedback!"
msgstr "¡Gracias por tus comentarios!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "Gracias por su interés en suscribirse a nuestras actualizaciones"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr "¡Muchas gracias por tu mensaje!"
@@ -25882,7 +25816,7 @@ msgstr "El enlace para restablecer la contraseña ha caducado"
msgid "The reset password link has either been used before or is invalid"
msgstr "El enlace para restablecer la contraseña ya se ha utilizado antes o no es válido"
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "El recurso que está buscando no está disponible"
@@ -25894,7 +25828,7 @@ msgstr "El Rol {0} debe ser un Rol personalizado."
msgid "The selected document {0} is not a {1}."
msgstr "El documento seleccionado {0} no es un {1}."
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "El sistema se está actualizando. Por favor, actualice de nuevo después de unos momentos."
@@ -26047,7 +25981,7 @@ msgstr "Autenticación por otros medios"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Esta divisa está deshabilitada. Debe habilitarla para utilizarla en las transacciones"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "Este tablero Kanban será privado"
@@ -26071,7 +26005,7 @@ msgstr "Este año"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Esta acción es irreversible. ¿Desea continuar?"
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "Esta acción solo está permitida para {}"
@@ -26235,14 +26169,6 @@ msgstr "Esto puede imprimirse en varias páginas."
msgid "This month"
msgstr "Este mes"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr "El envío de este boletín está previsto en {0}."
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr "Este boletín estaba programado para enviarse en una fecha posterior. ¿Está seguro de que desea enviarlo ahora?"
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Este informe contiene {0} filas y es demasiado grande para mostrarse en el navegador, puede {1} este informe en su lugar."
@@ -26355,7 +26281,6 @@ msgstr "Jueves"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Hora"
@@ -26581,10 +26506,8 @@ msgid "Title of the page"
msgstr "Título de la página"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "A"
@@ -26867,7 +26790,7 @@ msgstr "Parte superior derecha"
msgid "Topic"
msgstr "Tema"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26895,16 +26818,8 @@ msgstr "Imágenes totales"
msgid "Total Outgoing Emails"
msgstr "Total de correos salientes"
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr "Total de destinatarios"
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "Suscriptores Totales"
@@ -26913,11 +26828,6 @@ msgstr "Suscriptores Totales"
msgid "Total Users"
msgstr "Total de usuarios"
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr "Total de visualizaciones"
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27317,23 +27227,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "URL para ir al hacer clic en la imagen de la presentación de diapositivas"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr "Campaña UTM"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr "Medio UTM"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr "Fuente UTM"
@@ -27383,7 +27287,7 @@ msgstr "Incapaz de escribir el formato de archivo para {0}"
msgid "Unassign Condition"
msgstr "Desasignar condición"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr "Excepción no controlada"
@@ -27399,6 +27303,10 @@ msgstr "Deshacer"
msgid "Undo last action"
msgstr "Deshacer última acción"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27431,7 +27339,7 @@ msgstr "Desconocido"
msgid "Unknown Column: {0}"
msgstr "Columna desconocida: {0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr "Método de Redondeo desconocido: {}"
@@ -27464,7 +27372,7 @@ msgstr "No leído"
msgid "Unread Notification Sent"
msgstr "Envíar una notificación al no ser leído"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr "Consulta SQL insegura"
@@ -27478,7 +27386,7 @@ msgstr "Deseleccionar Todo"
msgid "Unshared"
msgstr "Incompartible"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "Darse de baja"
@@ -27502,6 +27410,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr "No suscrito"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "Columna sin título"
@@ -27624,7 +27537,7 @@ msgstr "Actualizado a una nueva versión 🎉"
msgid "Updated successfully"
msgstr "Actualizado exitosamente"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "Actualización"
@@ -28359,7 +28272,7 @@ msgstr "Valor demasiado grande"
msgid "Value {0} missing for {1}"
msgstr "Falta el valor {0} para {1}"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "El valor {0} debe tener un formato de duración válido: dhms"
@@ -28784,7 +28697,6 @@ msgstr "URL de Webhook"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28792,9 +28704,7 @@ msgid "Website"
msgstr "Sitio Web"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "Análisis de sitios web"
@@ -29230,7 +29140,7 @@ msgstr "Flujo de trabajo actualizado correctamente"
msgid "Workspace"
msgstr "Área de Trabajo"
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr "El Área de Trabajo {0} no existe"
@@ -29453,11 +29363,11 @@ msgstr "Estás accediendo a la cuenta de otro usuario."
msgid "You are not allowed to access this resource"
msgstr "No tiene permiso para acceder a este recurso"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "No tiene permiso para acceder a este registro {0} porque está vinculado a {1} '{2}' en el campo {3}"
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "No tiene permiso para acceder a este registro {0} porque está vinculado a {1} '{2}' en el campo {3}"
@@ -29480,7 +29390,7 @@ msgstr "No tiene permiso para editar el informe."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "No está permitido exportar {} doctype"
@@ -29508,7 +29418,7 @@ msgstr "No está autorizado a acceder a esta página sin iniciar sesión."
msgid "You are not permitted to access this page."
msgstr "Usted no está autorizado a acceder a esta página."
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29603,7 +29513,7 @@ msgstr "Puede seleccionar uno de los siguientes:"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "Puede establecer un valor alto aquí si varios usuarios iniciarán sesión desde la misma red."
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "Puede intentar cambiar los filtros de su informe."
@@ -29680,11 +29590,15 @@ msgstr "No tienes permisos de lectura o selección para {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Usted no tiene permisos suficientes para acceder a este apartado. Por favor, póngase en contacto con su administrador para obtener acceso."
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "Usted no tiene suficientes permisos para completar la acción"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr "No tienes permiso para acceder a {0}: {1}."
@@ -29692,7 +29606,7 @@ msgstr "No tienes permiso para acceder a {0}: {1}."
msgid "You do not have permissions to cancel all linked documents."
msgstr "No tiene permisos para cancelar todos los documentos vinculados."
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "Usted no tiene acceso al Reporte: {0}"
@@ -29700,11 +29614,11 @@ msgstr "Usted no tiene acceso al Reporte: {0}"
msgid "You don't have permission to access the {0} DocType."
msgstr "No tienes permiso para acceder al DocType {0} ."
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "Usted no tiene permiso para acceder a este archivo"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "Usted no tiene permiso para obtener un informe sobre: {0}"
@@ -29797,7 +29711,7 @@ msgstr "Tiene que estar registrado para acceder a esta página."
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Usted necesita estar en el modo de programador para editar un formulario Web Estándar"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Debe haber iniciado sesión y tener la función de administrador del sistema, para poder tener acceso a las copias de seguridad."
@@ -29963,7 +29877,7 @@ msgstr "El nombre de la organización y dirección para el pie de página del co
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Su consulta ha sido recibida. Responderemos a la mayor brevedad posible. Si usted tiene alguna información adicional, puede responder a este correo."
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "Tu sesión ha caducado, vuelve a iniciar sesión para continuar."
@@ -29975,7 +29889,7 @@ msgstr "Su sitio está en mantenimiento o se está actualizando."
msgid "Your verification code is {0}"
msgstr "Su código de verificación es {0}"
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "Cero"
@@ -30022,7 +29936,7 @@ msgstr "after_insert"
msgid "amend"
msgstr "modificar"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "y"
@@ -30079,7 +29993,7 @@ msgstr "crear"
msgid "cyan"
msgstr "cian"
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30194,7 +30108,7 @@ msgstr "correo electrónico"
msgid "email inbox"
msgstr "bandeja de entrada de email"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "vacío"
@@ -30246,7 +30160,7 @@ msgstr "gris"
msgid "gzip not found in PATH! This is required to take a backup."
msgstr "¡gzip no encontrado en RUTA! Esto es necesario para realizar una copia de seguridad."
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30280,7 +30194,7 @@ msgstr "juan@example.com"
msgid "just now"
msgstr "justo ahora"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr "etiqueta"
@@ -30320,7 +30234,7 @@ msgstr "login_required"
msgid "long"
msgstr "larga"
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30510,7 +30424,7 @@ msgstr "respuesta"
msgid "restored {0} as {1}"
msgstr "restaurado {0} como {1}"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30845,7 +30759,7 @@ msgstr "{0} ya ha sido dado de baja"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} ya ha sido dado de baja para {1} {2}"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} y {1}"
@@ -30951,6 +30865,10 @@ msgstr "{0} no existe en el renglón {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "El campo {0} no puede establecerse como único en {1}, ya que existen valores no únicos"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "No se pudo determinar el formato {0} a partir de los valores de esta columna. El valor predeterminado será {1}."
@@ -30971,10 +30889,6 @@ msgstr "{0} h"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} ya ha asignado un valor por defecto para {1}."
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} ha sido añadido al grupo de correo electrónico."
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} ha dejado la conversación en {1} {2}"
@@ -31045,6 +30959,10 @@ msgstr "{0} es como {1}"
msgid "{0} is mandatory"
msgstr "{0} es obligatorio"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr "{0} no es un campo del doctype {1}"
@@ -31066,7 +30984,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} no es un DocType válido para Dynamic Link"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0} no es una dirección de correo electrónico válida"
@@ -31074,11 +30992,11 @@ msgstr "{0} no es una dirección de correo electrónico válida"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} no es un código ISO 3166 ALFA-2 válido."
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0} no es un nombre válido"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} no es un número de teléfono válido"
@@ -31086,11 +31004,11 @@ msgstr "{0} no es un número de teléfono válido"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} no es un estado de flujo de trabajo válido. Actualice su flujo de trabajo y vuelva a intentarlo."
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} no es un DocType padre válido para {1}"
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} no es un campo padre válido para {1}"
@@ -31178,23 +31096,23 @@ msgstr "Hace {0} minutos"
msgid "{0} months ago"
msgstr "Hace {0} meses"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0} debe ser después de {1}"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr "{0} debe comenzar con '{1}'"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr "{0} debe ser igual a '{1}'"
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr "{0} debe ser uno de {1}"
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} debe ser uno de {1}"
@@ -31206,7 +31124,7 @@ msgstr "{0} debe establecerse primero"
msgid "{0} must be unique"
msgstr "{0} debe ser único"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr "{0} debe ser {1} {2}"
@@ -31235,16 +31153,12 @@ msgstr "{0} de {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} de {1} ({2} filas con hijos)"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr "{0} de {1} enviado"
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr "{0} solamente."
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} o {1}"
@@ -31281,11 +31195,11 @@ msgstr "{0} eliminado su asignación."
msgid "{0} role does not have permission on any doctype"
msgstr "{0} el rol no tiene permiso sobre ningún doctype"
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr "{0} fila #{1}: "
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0} guardado exitosamente"
@@ -31397,7 +31311,7 @@ msgstr "{0} {1} no existe, seleccione un nuevo objetivo para fusionar"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} está vinculado con los siguientes documentos enviados: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} no encontrado"
@@ -31550,11 +31464,11 @@ msgstr "{{{0}}} no es un formato válido de nombre de campo. Debe ser {{field_na
msgid "{} Complete"
msgstr "{} Completo"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr "{} Código python inválido en la línea {}"
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Código python posiblemente inválido.
{}"
@@ -31576,7 +31490,7 @@ msgstr "El campo {} no puede estar vacío."
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr "{} ha sido deshabilitado. Solo se puede habilitar si {} está marcado."
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{} no es una cadena de fecha válida."
diff --git a/frappe/locale/fa.po b/frappe/locale/fa.po
index 263157b495..a37e49022d 100644
--- a/frappe/locale/fa.po
+++ b/frappe/locale/fa.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-28 17:46\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Persian\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "در نمای فهرست برای نوع {0} در ردیف {1} مجاز
msgid "'Recipients' not specified"
msgstr "دریافت کنندگان مشخص نشده است"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "{0} یک URL معتبر نیست"
@@ -851,7 +851,7 @@ msgstr "اقدام / مسیر"
msgid "Action Complete"
msgstr "اقدام کامل شد"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "اقدام ناموفق بود"
@@ -1490,6 +1490,14 @@ msgstr "هشدار"
msgid "Alerts and Notifications"
msgstr "هشدارها و اعلان ها"
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1530,7 +1538,6 @@ msgstr "تراز کردن مقدار"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1975,7 +1982,7 @@ msgstr "اصلاحیه مجاز نیست"
msgid "Amendment naming rules updated."
msgstr "قوانین نامگذاری اصلاحیه به روز شد."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr "هنگام تنظیم پیشفرضهای نشست خطایی روی داد"
@@ -2093,7 +2100,7 @@ msgstr "نام برنامه"
msgid "App not found for module: {0}"
msgstr "برنامه برای ماژول یافت نشد: {0}"
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "برنامه {0} نصب نشده است"
@@ -2307,10 +2314,6 @@ msgstr "آیا مطمئن هستید که میخواهید همه سفارش
msgid "Are you sure you want to save this document?"
msgstr "آیا مطمئن هستید که میخواهید این سند را ذخیره کنید؟"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "آیا مطمئن هستید که اکنون میخواهید این خبرنامه را ارسال کنید؟"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2564,9 +2567,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr "پیوست به نام باید یک رشته یا یک عدد صحیح باشد"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "پیوست"
@@ -2593,10 +2594,7 @@ msgid "Attachment Removed"
msgstr "پیوست حذف شد"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2614,11 +2612,6 @@ msgstr "تلاش برای راهاندازی QZ Tray..."
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr "حضار"
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3045,7 +3038,7 @@ msgstr "تصویر پس زمینه"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr "کارهای پس زمینه"
@@ -3774,9 +3767,7 @@ msgstr "عنوان پاسخ به تماس"
msgid "Camera"
msgstr "دوربین"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3862,10 +3853,6 @@ msgstr "لغو همه"
msgid "Cancel All Documents"
msgstr "لغو تمام اسناد"
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr "لغو زمانبندی"
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4159,7 +4146,7 @@ msgstr "توضیحات دسته"
msgid "Category Name"
msgstr "نام دسته"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr "سنت"
@@ -4327,10 +4314,6 @@ msgstr "بررسی"
msgid "Check Request URL"
msgstr "URL درخواست را بررسی کنید"
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr "لینک های خراب را بررسی کنید"
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr "برای انتخاب، ستونها را علامت بزنید، برای تنظیم ترتیب آن را بکشید."
@@ -4354,10 +4337,6 @@ msgstr "اگر میخواهید کاربر را مجبور به انتخاب
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr "بررسی لینک های خراب..."
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "یک لحظه چک کردن"
@@ -4404,6 +4383,10 @@ msgstr "جدول فرزند {0} برای فیلد {1}"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "جداول Child به صورت Grid در سایر DocType ها نشان داده میشوند"
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "انتخاب کارت موجود یا ایجاد کارت جدید"
@@ -4493,10 +4476,6 @@ msgstr "روی Customize کلیک کنید تا اولین ویجت خود را
msgid "Click here"
msgstr "اینجا کلیک کنید"
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "برای تایید اینجا را کلیک کنید"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4831,14 +4810,14 @@ msgstr "ستون {0}"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/kanban_board/kanban_board.json
msgid "Columns"
-msgstr "ستون ها"
+msgstr "ستونها"
#. Label of the columns (HTML Editor) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Columns / Fields"
msgstr "ستون ها / فیلدها"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "ستون ها بر اساس"
@@ -5158,17 +5137,12 @@ msgstr "گذرواژه را تایید کنید"
msgid "Confirm Request"
msgstr "درخواست را تایید کنید"
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "ایمیل خود را تایید کنید"
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "الگوی ایمیل تایید"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "تایید شده"
@@ -5299,8 +5273,6 @@ msgstr "حاوی {0} اصلاحات امنیتی است"
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5308,7 +5280,6 @@ msgstr "حاوی {0} اصلاحات امنیتی است"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5333,10 +5304,8 @@ msgstr "محتوا (Markdown)"
msgid "Content Hash"
msgstr "هش محتوا"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5442,6 +5411,10 @@ msgstr "{0} پیدا نشد"
msgid "Could not map column {0} to field {1}"
msgstr "ستون {0} به فیلد {1} نگاشت نشد"
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr "راه اندازی نشد: "
@@ -5482,7 +5455,7 @@ msgstr ""
#. Label of the counter (Int) field in DocType 'Document Naming Rule'
#: frappe/core/doctype/document_naming_rule/document_naming_rule.json
msgid "Counter"
-msgstr "پیشخوان"
+msgstr "شمارنده"
#. Label of the country (Link) field in DocType 'Address'
#. Label of the country (Link) field in DocType 'Address Template'
@@ -5497,7 +5470,7 @@ msgstr "پیشخوان"
msgid "Country"
msgstr "کشور"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr "کد کشور مورد نیاز است"
@@ -5628,11 +5601,6 @@ msgstr "ایجاد یک {0} جدید"
msgid "Create a {0} Account"
msgstr "یک حساب {0} ایجاد کنید"
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr "ایجاد و ارسال ایمیل برای گروه خاصی از مشترکین به صورت دوره ای."
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr "ایجاد یا ویرایش فرمت چاپ"
@@ -5981,6 +5949,10 @@ msgstr "ترجمه سفارشی"
msgid "Custom field renamed to {0} successfully."
msgstr "فیلد سفارشی با موفقیت به {0} تغییر نام داد."
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6038,7 +6010,7 @@ msgstr "داشبورد را سفارشی کنید"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "سفارشیسازی فرم"
@@ -6065,14 +6037,14 @@ msgstr "برش"
#: frappe/core/doctype/doctype_state/doctype_state.json
#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json
msgid "Cyan"
-msgstr "فیروزه ای"
+msgstr "فیروزهای"
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
#: frappe/core/doctype/recorder/recorder.json
#: frappe/integrations/doctype/webhook/webhook.json
msgid "DELETE"
-msgstr "حذف"
+msgstr "DELETE"
#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType'
#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form'
@@ -6140,7 +6112,7 @@ msgstr "خطر"
#. Option for the 'Desk Theme' (Select) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Dark"
-msgstr "تاریک"
+msgstr "تیره"
#. Label of the dark_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
@@ -6331,7 +6303,6 @@ msgstr "نسخه پایگاه داده"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6395,6 +6366,11 @@ msgstr "روز"
msgid "Day of Week"
msgstr "روز هفته"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr "روزها"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6662,6 +6638,7 @@ msgstr "با تاخیر"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6974,6 +6951,7 @@ msgstr "تم پیشخوان"
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7727,7 +7705,7 @@ msgid "Document Types and Permissions"
msgstr "انواع اسناد و مجوزها"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr "قفل سند باز شد"
@@ -8345,7 +8323,6 @@ msgstr "انتخابگر عنصر"
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8439,11 +8416,9 @@ msgstr "آدرس پاورقی ایمیل"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "گروه ایمیل"
@@ -8516,18 +8491,11 @@ msgstr "محدودیت تلاش مجدد ایمیل"
msgid "Email Rule"
msgstr "قانون ایمیل"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "ایمیل ارسال شد"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr "ایمیل ارسال شده در"
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8634,10 +8602,18 @@ msgstr "ایمیلها با اقدامات بعدی ممکن در گردش ک
msgid "Embed code copied"
msgstr "کد جاسازی کپی شد"
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9101,6 +9077,14 @@ msgstr "خطا در اعلان"
msgid "Error in print format on line {0}: {1}"
msgstr "خطا در قالب چاپ در خط {0}: {1}"
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "خطا هنگام اتصال به حساب ایمیل {0}"
@@ -9297,6 +9281,10 @@ msgstr "بسط دادن"
msgid "Expand All"
msgstr "گسترش همه"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr "آزمایشی"
@@ -9828,7 +9816,7 @@ msgstr "نام فیلد \"{0}\" در تضاد با یک {1} از نام {2} در
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "برای فعال کردن نامگذاری خودکار، نام فیلد به نام {0} باید وجود داشته باشد"
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "نام فیلد به 64 کاراکتر محدود شده است ({0})"
@@ -9844,7 +9832,7 @@ msgstr "نام فیلد که DocType برای این فیلد پیوند خوا
msgid "Fieldname {0} appears multiple times"
msgstr "نام فیلد {0} چندین بار ظاهر میشود"
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "نام فیلد {0} نمیتواند نویسه های خاصی مانند {1} داشته باشد"
@@ -9896,6 +9884,10 @@ msgstr "فیلدهای \"file_name\" یا \"file_url\" باید برای File ت
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "وقتی as_list فعال است، فیلدها باید یک لیست یا تاپل باشند"
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10061,6 +10053,14 @@ msgstr "نام فیلتر"
msgid "Filter Values"
msgstr "مقادیر فیلتر"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr "فیلتر..."
@@ -10304,10 +10304,6 @@ msgstr "فیلدهای زیر دارای مقادیر جا افتاده هستن
msgid "Following fields have missing values:"
msgstr "فیلدهای زیر مقادیر گمشده دارند:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr "پیوندهای زیر در محتوای ایمیل خراب هستند: {0}"
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10724,10 +10720,8 @@ msgid "Friday"
msgstr "جمعه"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "از"
@@ -10808,10 +10802,14 @@ msgstr "تابع"
msgid "Function Based On"
msgstr "عملکرد بر اساس"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr "تابع {0} در لیست سفید قرار ندارد."
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "گره های بیشتر را فقط میتوان تحت گره های نوع «گروهی» ایجاد کرد"
@@ -10823,7 +10821,7 @@ msgstr "Fw: {0}"
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "GET"
-msgstr "گرفتن"
+msgstr "GET"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
@@ -11293,6 +11291,10 @@ msgstr "گروه بر اساس نوع"
msgid "Group By field is required to create a dashboard chart"
msgstr "برای ایجاد نمودار داشبورد فیلد Group By لازم است"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "گره گروه"
@@ -11341,7 +11343,6 @@ msgstr "HH:mm:ss"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11355,7 +11356,6 @@ msgstr "HH:mm:ss"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11864,6 +11864,11 @@ msgstr "تعمیر و نگهداری ساعتی"
msgid "Hourly rate limit for generating password reset links"
msgstr "محدودیت نرخ ساعتی برای ایجاد پیوندهای بازنشانی گذرواژه"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "ساعت ها"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12629,11 +12634,11 @@ msgstr "کاربر یا گذرواژه نادرست"
msgid "Incorrect Verification code"
msgstr "کد تأیید نادرست"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr "مقدار نادرست در ردیف {0}:"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr "مقدار نادرست:"
@@ -12785,11 +12790,11 @@ msgstr "دستورالعمل ها"
msgid "Instructions Emailed"
msgstr "دستورالعمل ها ایمیل شد"
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr "سطح مجوز ناکافی برای {0}"
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "مجوز ناکافی برای {0}"
@@ -12939,7 +12944,7 @@ msgstr "شرایط نامعتبر: {}"
msgid "Invalid Credentials"
msgstr "گواهی نامه نامعتبر"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "تاریخ نامعتبر است"
@@ -12947,7 +12952,7 @@ msgstr "تاریخ نامعتبر است"
msgid "Invalid DocType"
msgstr "DocType نامعتبر است"
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr "DocType نامعتبر: {0}"
@@ -12959,6 +12964,11 @@ msgstr "نام فیلد نامعتبر است"
msgid "Invalid File URL"
msgstr "URL فایل نامعتبر است"
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13023,7 +13033,7 @@ msgstr "پارامترهای نامعتبر"
msgid "Invalid Password"
msgstr "گذرواژه نامعتبر"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr "شماره تلفن نامعتبر"
@@ -13067,10 +13077,38 @@ msgstr "راز Webhook نامعتبر است"
msgid "Invalid aggregate function"
msgstr "تابع تجمیع نامعتبر است"
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "ستون نامعتبر است"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "docstatus نامعتبر است"
@@ -13083,10 +13121,26 @@ msgstr "عبارت نامعتبر تنظیم شده در فیلتر {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "عبارت نامعتبر تنظیم شده در فیلتر {0} ({1})"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "نام فیلد نامعتبر {0}"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "نام فیلد \"{0}\" در نام خودکار نامعتبر است"
@@ -13095,11 +13149,26 @@ msgstr "نام فیلد \"{0}\" در نام خودکار نامعتبر است"
msgid "Invalid file path: {0}"
msgstr "مسیر فایل نامعتبر: {0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "فیلتر نامعتبر: {0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13121,10 +13190,22 @@ msgstr "محتوای نامعتبر یا خراب برای درونبُرد"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Regex تغییر مسیر نامعتبر در ردیف #{}: {}"
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr "آرگومان های درخواست نامعتبر"
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "فایل الگو برای درونبُرد نامعتبر است"
@@ -13566,11 +13647,11 @@ msgstr "ستون نمودار کانبان"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "نام نمودار کانبان"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "تنظیمات کانبان"
@@ -14282,6 +14363,10 @@ msgstr "دوست دارد"
msgid "Limit"
msgstr "حد"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14545,6 +14630,7 @@ msgid "Load Balancing"
msgstr "تعادل بار"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15063,11 +15149,9 @@ msgstr "علامت گذاری به عنوان هرزنامه"
msgid "Mark as Unread"
msgstr "به عنوان \"خوانده نشده\" علامت گذاری کن"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15256,7 +15340,6 @@ msgstr "ادغام فقط بین گره گروه به گروه یا گره بر
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15269,7 +15352,6 @@ msgstr "ادغام فقط بین گره گروه به گروه یا گره بر
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15284,16 +15366,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "پیام"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "پیام (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "پیام (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15417,7 +15489,7 @@ msgstr "عنوان متا برای سئو"
msgid "Method"
msgstr "روش"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15467,6 +15539,11 @@ msgstr "حداقل امتیاز گذرواژه"
msgid "Minor"
msgstr "جزئی"
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr "دقایق"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15862,7 +15939,7 @@ msgstr "باید در \"()\" محصور شود و شامل \"{0}\" باشد که
msgid "Must be of type \"Attach Image\""
msgstr "باید از نوع «پیوست تصویر» باشد"
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "برای دسترسی به این گزارش باید مجوز گزارش را داشته باشد."
@@ -16050,6 +16127,10 @@ msgstr "برای ویرایش محیط کار خصوصی سایر کاربران
msgid "Negative Value"
msgstr "مقدار منفی"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "خطای مجموعه تو در تو. لطفا با ادمین تماس بگیرید."
@@ -16132,7 +16213,7 @@ msgstr "رویداد جدید"
msgid "New Folder"
msgstr "پوشه جدید"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "نمودار کانبان جدید"
@@ -16276,48 +16357,13 @@ msgstr "نسخههای جدید {} برای برنامههای زیر در
msgid "Newly created user {0} has no roles enabled."
msgstr "کاربر تازه ایجاد شده {0} هیچ نقشی فعال ندارد."
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "خبرنامه"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr "پیوست خبرنامه"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "گروه ایمیل خبرنامه"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "مدیر خبرنامه"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "خبرنامه قبلا ارسال شده است"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr "برای ارسال لینک مشاهده وب در ایمیل، خبرنامه باید منتشر شود"
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "خبرنامه باید حداقل یک گیرنده داشته باشد"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "خبرنامه ها"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16579,7 +16625,7 @@ msgstr "نتیجه ای پیدا نشد"
msgid "No Roles Specified"
msgstr "هیچ نقشی مشخص نشده است"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr "فیلد انتخابی یافت نشد"
@@ -16607,10 +16653,6 @@ msgstr "هیچ هشداری برای امروز وجود ندارد"
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr "هیچ پیوند شکسته ای در محتوای ایمیل یافت نشد"
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "بدون تغییر در سند"
@@ -16647,7 +16689,7 @@ msgstr "هنوز مخاطبی اضافه نشده است."
msgid "No contacts linked to document"
msgstr "هیچ مخاطبی به سند پیوند داده نشده است"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "داده ای برای برونبُرد نیست"
@@ -16667,7 +16709,7 @@ msgstr "هیچ حساب ایمیلی با کاربر مرتبط نیست. لطف
msgid "No failed logs"
msgstr "هیچ لاگ ناموفقی نیست"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "هیچ فیلدی یافت نشد که بتوان از آن به عنوان ستون Kanban استفاده کرد. از فرم سفارشی برای افزودن یک فیلد سفارشی از نوع \"انتخاب\" استفاده کنید."
@@ -16726,7 +16768,7 @@ msgstr "تعداد ردیف (حداکثر 500)"
msgid "No of Sent SMS"
msgstr "شماره پیامک ارسالی"
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "بدون مجوز برای {0}"
@@ -16854,7 +16896,7 @@ msgstr "نه فرزندان"
msgid "Not Equals"
msgstr "برابر نیست"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "پیدا نشد"
@@ -16880,7 +16922,7 @@ msgstr "به هیچ رکوردی مرتبط نیست"
msgid "Not Nullable"
msgstr "غیرقابل تهی"
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16889,7 +16931,7 @@ msgstr "غیرقابل تهی"
msgid "Not Permitted"
msgstr "غیر مجاز"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr "خواندن {0} مجاز نیست"
@@ -16917,7 +16959,6 @@ msgstr "دیده نشد"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "فرستاده نشد"
@@ -16950,7 +16991,7 @@ msgstr "کاربر معتبری نیست"
msgid "Not active"
msgstr "غیر فعال"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "برای {0} مجاز نیست: {1}"
@@ -17384,6 +17425,10 @@ msgstr "افست X"
msgid "Offset Y"
msgstr "افست Y"
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "گذرواژه قدیمی"
@@ -17557,7 +17602,7 @@ msgstr "فقط Workspace Manager میتواند فضاهای کاری عمو
msgid "Only allowed to export customizations in developer mode"
msgstr "فقط مجاز به صدور سفارشی سازی در حالت برنامه نویس است"
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr "فقط پیشنویس اسناد را میتوان دور انداخت"
@@ -17729,7 +17774,7 @@ msgstr "باز شد"
msgid "Operation"
msgstr "عملیات"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "اپراتور باید یکی از {0} باشد"
@@ -17828,6 +17873,10 @@ msgstr "نارنجی"
msgid "Order"
msgstr "سفارش"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -17983,7 +18032,7 @@ msgstr "PID"
#: frappe/core/doctype/recorder/recorder.json
#: frappe/integrations/doctype/webhook/webhook.json
msgid "POST"
-msgstr "پست"
+msgstr "POST"
#. Option for the 'Method' (Select) field in DocType 'Recorder'
#. Option for the 'Request Method' (Select) field in DocType 'Webhook'
@@ -18223,7 +18272,7 @@ msgstr "والد نام سندی است که داده ها به آن اضافه
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr "فیلد والد در {0} مشخص نشده است: {1}"
@@ -18345,10 +18394,6 @@ msgstr "گذرواژهها مطابقت ندارند"
msgid "Passwords do not match!"
msgstr "گذرواژهها مطابقت ندارند!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr "تاریخهای گذشته برای زمانبندی مجاز نیستند."
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "چسباندن"
@@ -18494,7 +18539,7 @@ msgstr "برای همیشه {0} ارسال شود؟"
msgid "Permanently delete {0}?"
msgstr "{0} برای همیشه حذف شود؟"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "خطای مجوز"
@@ -18646,7 +18691,7 @@ msgstr "تلفن"
msgid "Phone No."
msgstr "شماره تلفن"
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "شماره تلفن {0} تنظیم شده در فیلد {1} معتبر نیست."
@@ -18919,10 +18964,6 @@ msgstr "لطفاً نگاشت چاپگر را در تنظیمات چاپگر ح
msgid "Please save before attaching."
msgstr "لطفا قبل از پیوست ذخیره کنید."
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "لطفا قبل از ارسال خبرنامه را ذخیره کنید"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "لطفاً سند را قبل از تخصیص ذخیره کنید"
@@ -18955,7 +18996,7 @@ msgstr "لطفا حداقل امتیاز گذرواژه را انتخاب کنی
msgid "Please select X and Y fields"
msgstr "لطفاً فیلدهای X و Y را انتخاب کنید"
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr "لطفاً یک کد کشور برای فیلد {1} انتخاب کنید."
@@ -18971,7 +19012,7 @@ msgstr "لطفاً یک فایل یا آدرس اینترنتی را انتخا
msgid "Please select a valid csv file with data"
msgstr "لطفاً یک فایل csv معتبر با داده انتخاب کنید"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "لطفاً یک فیلتر تاریخ معتبر انتخاب کنید"
@@ -19049,7 +19090,7 @@ msgstr ""
msgid "Please specify"
msgstr "لطفا مشخص کنید"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr "لطفاً یک DocType والد معتبر برای {0} مشخص کنید"
@@ -19086,10 +19127,6 @@ msgstr "لطفاً قبل از ادامه {} را به روز کنید."
msgid "Please use a valid LDAP search filter"
msgstr "لطفاً از یک فیلتر جستجوی معتبر LDAP استفاده کنید"
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "لطفا آدرس ایمیل خود را تایید کنید"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "لطفاً برای اطلاعات بیشتر به https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key مراجعه کنید."
@@ -19120,7 +19157,7 @@ msgstr "Popover یا Modal Description"
#: frappe/email/doctype/email_domain/email_domain.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
msgid "Port"
-msgstr "بندر"
+msgstr "پورت"
#. Label of the menu (Table) field in DocType 'Portal Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
@@ -19183,6 +19220,10 @@ msgstr "پست های {0}"
msgid "Posts filed under {0}"
msgstr "پست های ثبت شده تحت {0}"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19242,7 +19283,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr "کاربر گزارش آماده شده"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr "ارائه گزارش آماده انجام نشد"
@@ -19271,8 +19312,6 @@ msgstr "برای ذخیره Enter را فشار دهید"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19660,7 +19699,7 @@ msgstr "نمایه"
msgid "Progress"
msgstr "پیشرفت"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "پروژه"
@@ -19755,14 +19794,7 @@ msgstr "فایل های عمومی (MB)"
msgid "Publish"
msgstr "انتشار"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr "به عنوان یک صفحه وب منتشر کنید"
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19770,7 +19802,6 @@ msgstr "به عنوان یک صفحه وب منتشر کنید"
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19945,7 +19976,7 @@ msgstr "گزارش پرسمان"
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr "پرسمان باید از نوع SELECT یا فقط خواندنی WITH باشد."
@@ -19991,7 +20022,6 @@ msgstr "صف(های)"
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "در صف"
@@ -20014,18 +20044,10 @@ msgstr "در صف ارسال میتوانید پیشرفت را در {0} دن
msgid "Queued for backup. You will receive an email with the download link"
msgstr "در صف پشتیبان گیری یک ایمیل با لینک دانلود دریافت خواهید کرد"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr "{0} ایمیل در صف"
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr "در صف ایمیل..."
+msgstr "صفها"
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
@@ -20227,7 +20249,7 @@ msgstr "خوانده شده توسط گیرنده روشن"
msgid "Read mode"
msgstr "حالت خواندن"
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr "برای دانستن بیشتر مستندات را بخوانید"
@@ -21094,7 +21116,7 @@ msgstr "به حد مجاز گزارش رسیده است"
msgid "Report timed out."
msgstr "زمان گزارش تمام شد."
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "گزارش با موفقیت به روز شد"
@@ -21115,7 +21137,7 @@ msgstr "گزارش {0}"
msgid "Report {0} deleted"
msgstr "گزارش {0} حذف شد"
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "گزارش {0} غیرفعال است"
@@ -21448,10 +21470,8 @@ msgstr "لغو"
msgid "Revoked"
msgstr "لغو شد"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21662,7 +21682,6 @@ msgstr "روش گرد کردن"
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21676,7 +21695,6 @@ msgstr "روش گرد کردن"
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21794,7 +21812,7 @@ msgstr "قانون"
msgid "Rule Conditions"
msgstr "شرایط قانون"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "قانون برای این ترکیب doctype، role، permlevel و if-owner از قبل وجود دارد."
@@ -21983,11 +22001,11 @@ msgstr "شنبه"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22079,32 +22097,17 @@ msgstr "کد QR را اسکن کرده و کد نمایش داده شده را
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr "زمانبندی"
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr "زمانبندی خبرنامه"
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr "زمانبندی ارسال در"
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr "زمانبندی ارسال"
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr "برای ارسال در زمان دیگری زمانبندی کنید"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "زمانبندی شده است"
@@ -22138,17 +22141,6 @@ msgstr "نوع کار زمانبندی شده"
msgid "Scheduled Jobs Logs"
msgstr "لاگ کارهای زمانبندی شده"
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr "ارسال زمانبندی شده"
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "زمانبندی شده برای ارسال"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "اجرای زمانبندی شده برای اسکریپت {0} به روز شده است"
@@ -22360,6 +22352,11 @@ msgstr "جستجو کردن..."
msgid "Searching ..."
msgstr "جستجوکردن ..."
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22749,9 +22746,7 @@ msgstr "انتخاب {0}"
msgid "Self approval is not allowed"
msgstr "تایید خود مجاز نیست"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "ارسال"
@@ -22782,11 +22777,6 @@ msgstr "ارسال هشدار در"
msgid "Send Email Alert"
msgstr "ارسال هشدار ایمیل"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr "ارسال ایمیل در"
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22844,38 +22834,16 @@ msgstr "ارسال رسید خواندن"
msgid "Send System Notification"
msgstr "ارسال اعلان سیستم"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr "ارسال ایمیل آزمایشی"
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "ارسال برای تمامی افراد واگذار شده"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "ارسال لینک لغو اشتراک"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr "ارسال لینک مشاهده وب"
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "ارسال ایمیل خوش آمدگویی"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr "یک ایمیل آزمایشی ارسال کنید"
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr "دوباره بفرست"
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22923,10 +22891,6 @@ msgstr "ارسال لینک ورود"
msgid "Send me a copy"
msgstr "یک کپی برای من بفرست"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr "در حال حاضر ارسال"
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22942,19 +22906,15 @@ msgstr "ارسال پیام لغو اشتراک در ایمیل"
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "فرستنده"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "ایمیل فرستنده"
@@ -22971,9 +22931,7 @@ msgid "Sender Field should have Email in options"
msgstr "فیلد فرستنده باید گزینههای ایمیل را داشته باشد"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr "نام فرستنده"
@@ -22993,18 +22951,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "در حال ارسال"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr "ارسال ایمیل"
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr "در حال ارسال..."
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23012,8 +22961,6 @@ msgstr "در حال ارسال..."
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "ارسال شد"
@@ -23083,7 +23030,7 @@ msgstr "سری {0} قبلاً در {1} استفاده شده است"
msgid "Server Action"
msgstr "اقدام سرور"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "خطای سرور"
@@ -23102,7 +23049,7 @@ msgstr "IP سرور"
msgid "Server Script"
msgstr "اسکریپت سرور"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "اسکریپت های سرور غیرفعال هستند. لطفاً اسکریپت های سرور را از پیکربندی بنچ فعال کنید."
@@ -23141,15 +23088,15 @@ msgstr "تنظیمات پیشفرض نشست"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "پیشفرضهای نشست"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "پیشفرضهای نشست ذخیره شد"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "نشست منقضی شده"
@@ -23379,7 +23326,7 @@ msgstr "راهاندازی سیستم شما"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24462,7 +24409,6 @@ msgstr "فاصله زمانی آمار"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24487,7 +24433,6 @@ msgstr "فاصله زمانی آمار"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24628,8 +24573,6 @@ msgstr "زیر دامنه"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24638,7 +24581,6 @@ msgstr "زیر دامنه"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25009,7 +24951,7 @@ msgstr "در حال همگام سازی"
msgid "Syncing {0} of {1}"
msgstr "در حال همگام سازی {0} از {1}"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr "اشتباه نوشتاری"
@@ -25316,7 +25258,7 @@ msgstr "جدول بریده شده"
msgid "Table updated"
msgstr "جدول به روز شد"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "جدول {0} نمیتواند خالی باشد"
@@ -25443,10 +25385,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "ایمیل آزمایشی به {0} ارسال شد"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Test_Folder"
@@ -25512,10 +25450,6 @@ msgstr "ممنون برای ایمیلت"
msgid "Thank you for your feedback!"
msgstr "با تشکر از شما برای بازخورد شما!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "از علاقه شما به اشتراک در به روز رسانی های ما سپاسگزاریم"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr "ممنون از پیام شما"
@@ -25704,7 +25638,7 @@ msgstr "پیوند بازنشانی گذرواژه منقضی شده است"
msgid "The reset password link has either been used before or is invalid"
msgstr "پیوند بازنشانی گذرواژه یا قبلا استفاده شده است یا نامعتبر است"
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "منبع مورد نظر شما در دسترس نیست"
@@ -25716,7 +25650,7 @@ msgstr "نقش {0} باید یک نقش سفارشی باشد."
msgid "The selected document {0} is not a {1}."
msgstr "سند انتخاب شده {0} یک {1} نیست."
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "سیستم در حال به روز رسانی است. لطفاً پس از چند لحظه دوباره بازخوانی کنید."
@@ -25748,7 +25682,7 @@ msgstr "{0} قبلاً روی تکرار خودکار است {1}"
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme"
-msgstr "موضوع"
+msgstr "پوسته"
#: frappe/public/js/frappe/ui/theme_switcher.js:130
msgid "Theme Changed"
@@ -25869,7 +25803,7 @@ msgstr "احراز هویت شخص ثالث"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "این ارز غیرفعال است. فعال کردن برای استفاده در معاملات"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "این نمودار کانبان خصوصی خواهد بود"
@@ -25893,7 +25827,7 @@ msgstr "امسال"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "این عمل برگشتناپذیر است. آیا مایل هستید ادامه دهید؟"
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "این عمل فقط برای {} مجاز است"
@@ -26053,14 +25987,6 @@ msgstr "این ممکن است در چندین صفحه چاپ شود"
msgid "This month"
msgstr "این ماه"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr "این خبرنامه قرار است در تاریخ {0} ارسال شود"
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr "این خبرنامه قرار بود در تاریخ بعدی ارسال شود. آیا مطمئن هستید که میخواهید آن را اکنون ارسال کنید؟"
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26173,7 +26099,6 @@ msgstr "پنجشنبه"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "زمان"
@@ -26399,10 +26324,8 @@ msgid "Title of the page"
msgstr "عنوان صفحه"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "به"
@@ -26679,7 +26602,7 @@ msgstr "بالا سمت راست"
msgid "Topic"
msgstr "موضوع"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26707,16 +26630,8 @@ msgstr "مجموع تصاویر"
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr "کل گیرندگان"
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "کل مشترکین"
@@ -26725,11 +26640,6 @@ msgstr "کل مشترکین"
msgid "Total Users"
msgstr "مجموع کاربران"
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr "کل بازدیدها"
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27128,23 +27038,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "URL برای رفتن با کلیک بر روی تصویر نمایش اسلاید"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27194,7 +27098,7 @@ msgstr "امکان نوشتن فرمت فایل برای {0} وجود ندارد
msgid "Unassign Condition"
msgstr "شرط لغو اختصاص"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27210,6 +27114,10 @@ msgstr "واگرد"
msgid "Undo last action"
msgstr "واگرد آخرین اقدام"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27242,7 +27150,7 @@ msgstr "ناشناخته"
msgid "Unknown Column: {0}"
msgstr "ستون ناشناخته: {0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr "روش گرد کردن نامشخص: {}"
@@ -27275,7 +27183,7 @@ msgstr "خوانده نشده"
msgid "Unread Notification Sent"
msgstr "اعلان خوانده نشده ارسال شد"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr "پرسمان ناامن SQL"
@@ -27289,7 +27197,7 @@ msgstr "همه را لغو انتخاب کنید"
msgid "Unshared"
msgstr "اشتراک گذاری نشده است"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "لغو اشتراک"
@@ -27313,6 +27221,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr "لغو اشتراک شده"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "ستون بدون عنوان"
@@ -27435,7 +27348,7 @@ msgstr "بهروزرسانی به نسخه جدید 🎉"
msgid "Updated successfully"
msgstr "با موفقیت به روز شد"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "در حال بروز رسانی"
@@ -28170,7 +28083,7 @@ msgstr "ارزش خیلی بزرگ است"
msgid "Value {0} missing for {1}"
msgstr "مقدار {0} برای {1} وجود ندارد"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "مقدار {0} باید در قالب مدت زمان معتبر باشد: dhms"
@@ -28595,7 +28508,6 @@ msgstr "آدرس وب هوک"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28603,9 +28515,7 @@ msgid "Website"
msgstr "سایت اینترنتی"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "تجزیه و تحلیل وب سایت"
@@ -29041,7 +28951,7 @@ msgstr "گردش کار با موفقیت به روز شد"
msgid "Workspace"
msgstr "فضای کار"
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr "محیط کار {0} وجود ندارد"
@@ -29264,11 +29174,11 @@ msgstr "شما در حال جعل هویت به عنوان کاربر دیگری
msgid "You are not allowed to access this resource"
msgstr "شما اجازه دسترسی به این منبع را ندارید"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "شما مجاز به دسترسی به این رکورد {0} نیستید زیرا به {1} '{2}' در فیلد {3} پیوند داده شده است."
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "شما مجاز به دسترسی به این رکورد {0} نیستید زیرا به {1} \"{2}\" در ردیف {3}، فیلد {4} پیوند داده شده است."
@@ -29291,7 +29201,7 @@ msgstr "شما مجاز به ویرایش گزارش نیستید."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "شما مجاز به برونبُرد {} doctype نیستید"
@@ -29319,7 +29229,7 @@ msgstr "بدون ورود به سیستم اجازه دسترسی به این ص
msgid "You are not permitted to access this page."
msgstr "شما اجازه دسترسی به این صفحه را ندارید."
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29414,7 +29324,7 @@ msgstr "میتوانید یکی از موارد زیر را انتخاب کن
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "اگر چندین کاربر از یک شبکه وارد سیستم شوند، میتوانید مقدار بالایی را در اینجا تنظیم کنید."
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "میتوانید فیلترهای گزارش خود را تغییر دهید."
@@ -29491,11 +29401,15 @@ msgstr "شما مجوزهای خواندن یا انتخاب برای {} را ن
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "شما مجوز کافی برای دسترسی به این منبع را ندارید. لطفاً برای دسترسی با مدیر خود تماس بگیرید."
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "شما مجوز کافی برای تکمیل عمل را ندارید"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr "شما اجازه دسترسی به {0}: {1} را ندارید."
@@ -29503,7 +29417,7 @@ msgstr "شما اجازه دسترسی به {0}: {1} را ندارید."
msgid "You do not have permissions to cancel all linked documents."
msgstr "شما مجوز لغو همه اسناد مرتبط را ندارید."
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "شما به گزارش دسترسی ندارید: {0}"
@@ -29511,11 +29425,11 @@ msgstr "شما به گزارش دسترسی ندارید: {0}"
msgid "You don't have permission to access the {0} DocType."
msgstr "شما اجازه دسترسی به {0} DocType را ندارید."
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "شما اجازه دسترسی به این فایل را ندارید"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "شما مجوز دریافت گزارش در مورد: {0} را ندارید"
@@ -29608,7 +29522,7 @@ msgstr "برای دسترسی به این صفحه باید کاربر سیست
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "برای ویرایش یک فرم وب استاندارد، باید در حالت توسعه دهنده باشید"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "برای اینکه بتوانید به نسخههای پشتیبان دسترسی داشته باشید، باید وارد سیستم شوید و نقش مدیر سیستم را داشته باشید."
@@ -29774,7 +29688,7 @@ msgstr "نام و آدرس سازمان شما برای پاورقی ایمیل.
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "پرسمان شما دریافت شد. ما به زودی پاسخ خواهیم داد. اگر اطلاعات بیشتری دارید، لطفا به این ایمیل پاسخ دهید."
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "نشست شما منقضی شده است، لطفا برای ادامه دوباره وارد شوید."
@@ -29786,7 +29700,7 @@ msgstr "سایت شما در حال تعمیر یا به روز رسانی اس
msgid "Your verification code is {0}"
msgstr "کد تأیید شما {0} است"
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "صفر"
@@ -29833,7 +29747,7 @@ msgstr "after_insert"
msgid "amend"
msgstr "اصلاح"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "و"
@@ -29890,7 +29804,7 @@ msgstr "ایجاد كردن"
msgid "cyan"
msgstr "فیروزه ای"
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30005,7 +29919,7 @@ msgstr "ایمیل"
msgid "email inbox"
msgstr "صندوق ورودی ایمیل"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "خالی"
@@ -30057,7 +29971,7 @@ msgstr "خاکستری"
msgid "gzip not found in PATH! This is required to take a backup."
msgstr "gzip در PATH یافت نشد! این برای تهیه نسخه پشتیبان لازم است."
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30091,7 +30005,7 @@ msgstr "jane@example.com"
msgid "just now"
msgstr "همین الان"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr "برچسب"
@@ -30131,7 +30045,7 @@ msgstr "login_required"
msgid "long"
msgstr "طولانی"
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30321,7 +30235,7 @@ msgstr "واکنش"
msgid "restored {0} as {1}"
msgstr "{0} به عنوان {1} بازیابی شد"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30656,7 +30570,7 @@ msgstr "{0} قبلاً اشتراک خود را لغو کرده است"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} قبلاً اشتراک {1} {2} را لغو کرده است"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} و {1}"
@@ -30762,6 +30676,10 @@ msgstr "{0} در ردیف {1} وجود ندارد"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "فیلد {0} را نمیتوان در {1} منحصربهفرد تنظیم کرد، زیرا مقادیر موجود غیر منحصر به فردی وجود دارد"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "قالب {0} را نمیتوان از مقادیر این ستون تعیین کرد. پیشفرض {1}."
@@ -30782,10 +30700,6 @@ msgstr "{0} ساعت"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} قبلاً مقدار پیشفرض را برای {1} اختصاص داده است."
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} با موفقیت به گروه ایمیل اضافه شد."
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} مکالمه را در {1} {2} ترک کرده است"
@@ -30856,6 +30770,10 @@ msgstr "{0} مانند {1} است"
msgid "{0} is mandatory"
msgstr "{0} اجباری است"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr "{0} یک فیلد از نوع doctype نیست {1}"
@@ -30877,7 +30795,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} یک DocType معتبر برای پیوند پویا نیست"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0} یک آدرس ایمیل معتبر نیست"
@@ -30885,11 +30803,11 @@ msgstr "{0} یک آدرس ایمیل معتبر نیست"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} یک کد ISO 3166 ALPHA-2 معتبر نیست."
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0} یک نام معتبر نیست"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} یک شماره تلفن معتبر نیست"
@@ -30897,11 +30815,11 @@ msgstr "{0} یک شماره تلفن معتبر نیست"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} یک وضعیت گردش کار معتبر نیست. لطفاً گردش کار خود را به روز کنید و دوباره امتحان کنید."
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} یک DocType والد معتبر برای {1} نیست"
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} یک فیلد والد معتبر برای {1} نیست"
@@ -30989,23 +30907,23 @@ msgstr "{0} دقیقه قبل"
msgid "{0} months ago"
msgstr "{0} ماه پیش"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0} باید بعد از {1} باشد"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr "{0} باید با '{1}' شروع شود"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr "{0} باید برابر با '{1}' باشد"
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr "{0} نباید هیچ یک از {1} باشد"
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} باید یکی از {1} باشد"
@@ -31017,7 +30935,7 @@ msgstr "ابتدا باید {0} تنظیم شود"
msgid "{0} must be unique"
msgstr "{0} باید منحصر به فرد باشد"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr "{0} باید {1} {2} باشد"
@@ -31046,16 +30964,12 @@ msgstr "{0} از {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} از {1} ({2} ردیف با فرزندان)"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr "{0} از {1} ارسال شد"
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr "فقط {0}."
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} یا {1}"
@@ -31092,11 +31006,11 @@ msgstr "{0} تخصیص خود را حذف کرد."
msgid "{0} role does not have permission on any doctype"
msgstr "نقش {0} اجازه هیچ نوع doctype را ندارد"
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr "{0} ردیف #{1}: "
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0} با موفقیت ذخیره شد"
@@ -31208,7 +31122,7 @@ msgstr "{0} {1} وجود ندارد، یک هدف جدید را برای ادغ
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} با اسناد ارسالی زیر پیوند داده شده است: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} یافت نشد"
@@ -31361,11 +31275,11 @@ msgstr "{{{0}}} یک الگوی نام فیلد معتبر نیست. باید {{
msgid "{} Complete"
msgstr "{} کامل"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr "{} کد پایتون نامعتبر در خط {}"
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr "{} احتمالاً کد پایتون نامعتبر است.
{}"
@@ -31387,7 +31301,7 @@ msgstr "فیلد {} نمیتواند خالی باشد."
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr "{} غیر فعال شده است. فقط در صورتی میتوان آن را فعال کرد که {} علامت زده شود."
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{} یک رشته تاریخ معتبر نیست."
diff --git a/frappe/locale/fr.po b/frappe/locale/fr.po
index 4f16dfb066..4c608ce286 100644
--- a/frappe/locale/fr.po
+++ b/frappe/locale/fr.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:33\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: French\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "'Dans La Vue En Liste’ n'est pas permis pour le type {0} à la ligne {
msgid "'Recipients' not specified"
msgstr "«Destinataires» non spécifiés"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "'{0}' n'est pas une URL valide"
@@ -953,7 +953,7 @@ msgstr "Action / Route"
msgid "Action Complete"
msgstr "Action terminée"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "Échec de l'action"
@@ -1592,6 +1592,14 @@ msgstr "Alerte"
msgid "Alerts and Notifications"
msgstr "Alertes et notifications"
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1632,7 +1640,6 @@ msgstr "Aligner la Valeur"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -2078,7 +2085,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr "Règles de nommage mises à jour."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr "Une erreur s'est produite lors de la définition des paramètres de session par défaut."
@@ -2196,7 +2203,7 @@ msgstr "Nom de l'App"
msgid "App not found for module: {0}"
msgstr "Application introuvable pour le module : {0}"
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "App {0} n'est pas installée"
@@ -2410,10 +2417,6 @@ msgstr "Voulez-vous vraiment réinitialiser toutes les personnalisations?"
msgid "Are you sure you want to save this document?"
msgstr "Êtes-vous sûr de vouloir enregistrer ce document ?"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "Etes-vous sûr de vouloir envoyer cette newsletter maintenant ?"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2667,9 +2670,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr "Le nom joint à un nom doit être une chaîne ou un entier"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "Pièce jointe"
@@ -2696,10 +2697,7 @@ msgid "Attachment Removed"
msgstr "Pièce jointe retirée"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2717,11 +2715,6 @@ msgstr "Tenter de lancer QZ Tray ..."
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr "Audience"
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3148,7 +3141,7 @@ msgstr "Image d'arrière-plan"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr "Travaux en Arrière-plan"
@@ -3876,9 +3869,7 @@ msgstr "Titre de rappel"
msgid "Camera"
msgstr "Caméra"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3964,10 +3955,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr "Annuler tous les documents"
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4261,7 +4248,7 @@ msgstr "Description de la Catégorie"
msgid "Category Name"
msgstr "Nom de la Catégorie"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr "Centime"
@@ -4430,10 +4417,6 @@ msgstr "Vérifier"
msgid "Check Request URL"
msgstr "Vérifier l'URL de Demande"
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4457,10 +4440,6 @@ msgstr "Cochez cette case si vous voulez forcer l'utilisateur à sélectionner u
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "Vérification un moment"
@@ -4507,6 +4486,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Les tables enfants sont affichées sous forme de grille dans d'autres DocTypes"
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "Choisissez une carte existante ou créez une nouvelle carte"
@@ -4596,10 +4579,6 @@ msgstr ""
msgid "Click here"
msgstr "Cliquez ici"
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "Cliquez ici pour vérifier"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4941,7 +4920,7 @@ msgstr "Colonnes"
msgid "Columns / Fields"
msgstr "Colonnes / Champs"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "Colonnes basées sur"
@@ -5263,17 +5242,12 @@ msgstr ""
msgid "Confirm Request"
msgstr "Confirmer la requête"
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "Confirmez Votre Email"
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "Modèle de courriel de confirmation"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "Confirmé"
@@ -5404,8 +5378,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5413,7 +5385,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5438,10 +5409,8 @@ msgstr "Contenu (Markdown)"
msgid "Content Hash"
msgstr "Hash du Contenu"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5547,6 +5516,10 @@ msgstr "Impossible de trouver {0}"
msgid "Could not map column {0} to field {1}"
msgstr "Impossible de mapper la colonne {0} au champ {1}"
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5602,7 +5575,7 @@ msgstr "Compteur"
msgid "Country"
msgstr "Pays"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5733,11 +5706,6 @@ msgstr "Créer un(e) nouveau(elle) {0}"
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -6086,6 +6054,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6143,7 +6115,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "Personnaliser le formulaire"
@@ -6436,7 +6408,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6500,6 +6471,11 @@ msgstr "Jour"
msgid "Day of Week"
msgstr "Jour de la semaine"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr "Journées"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6767,6 +6743,7 @@ msgstr "Différé"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -7079,6 +7056,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7832,7 +7810,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8450,7 +8428,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8544,11 +8521,9 @@ msgstr "Pied de Page Email"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "Groupe Email"
@@ -8621,18 +8596,11 @@ msgstr ""
msgid "Email Rule"
msgstr "Règle Email"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "Email Envoyé"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8739,10 +8707,18 @@ msgstr "Les e-mails seront envoyés lors des actions de workflow"
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9206,6 +9182,14 @@ msgstr "Erreur dans la notification"
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "Erreur lors de la connexion au compte Email {0}"
@@ -9402,6 +9386,10 @@ msgstr "Développer"
msgid "Expand All"
msgstr "Développer Tout"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -9933,7 +9921,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Le Nom du champ est limité à 64 caractères ({0})"
@@ -9949,7 +9937,7 @@ msgstr "Nom du champ qui sera le DocType pour ce champ lié"
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Nom du Champ {0} ne peut pas avoir des caractères spéciaux comme {1}"
@@ -10001,6 +9989,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10166,6 +10158,14 @@ msgstr "Nom du filtre"
msgid "Filter Values"
msgstr "Valeurs du filtre"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10409,10 +10409,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr "Les champs suivants ont des valeurs manquantes:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10829,10 +10825,8 @@ msgid "Friday"
msgstr "Vendredi"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "À partir de"
@@ -10913,10 +10907,14 @@ msgstr "Une fonction"
msgid "Function Based On"
msgstr "Fonction basée sur"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "D'autres nœuds peuvent être créés uniquement sous les nœuds de type 'Groupe'"
@@ -11398,6 +11396,10 @@ msgstr "Regrouper par type"
msgid "Group By field is required to create a dashboard chart"
msgstr "Le champ Grouper par est requis pour créer un tableau de bord"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "Niveau parent"
@@ -11446,7 +11448,6 @@ msgstr "HH: mm: ss"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11460,7 +11461,6 @@ msgstr "HH: mm: ss"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11969,6 +11969,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr "Limite de taux horaire pour générer des liens de réinitialisation de mot de passe"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "Heures"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12734,11 +12739,11 @@ msgstr "Utilisateur ou mot de passe incorrect"
msgid "Incorrect Verification code"
msgstr "Code de Vérification incorrect"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12890,11 +12895,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "Autorisation Insuffisante Pour {0}"
@@ -13044,7 +13049,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr "Les informations d'identification invalides"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "Date invalide"
@@ -13052,7 +13057,7 @@ msgstr "Date invalide"
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13064,6 +13069,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13128,7 +13138,7 @@ msgstr ""
msgid "Invalid Password"
msgstr "Mot de Passe Invalide"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13172,10 +13182,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "Colonne incorrecte"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13188,10 +13226,26 @@ msgstr "Expression non valide définie dans le filtre {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Expression non valide définie dans le filtre {0} ({1})"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "Nom de champ {0} invalide"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Champ invalide '{0}' dans nom automatique"
@@ -13200,11 +13254,26 @@ msgstr "Champ invalide '{0}' dans nom automatique"
msgid "Invalid file path: {0}"
msgstr "Chemin de fichier invalide : {0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "Filtre non valide: {0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13226,10 +13295,22 @@ msgstr "Contenu non valide ou corrompu pour l'importation"
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "Fichier de modèle non valide pour l'importation"
@@ -13671,11 +13752,11 @@ msgstr "Colonne Tableau Kanban"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "Nom du Tableau Kanban"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14387,6 +14468,10 @@ msgstr "Aime"
msgid "Limit"
msgstr "Limite"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14650,6 +14735,7 @@ msgid "Load Balancing"
msgstr "L'équilibrage de charge"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15168,11 +15254,9 @@ msgstr "Marquer comme spam"
msgid "Mark as Unread"
msgstr "Marquer comme non Lu"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15361,7 +15445,6 @@ msgstr "La combinaison n'est possible que de Groupe à Groupe ou Nœud-Feuille
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15374,7 +15457,6 @@ msgstr "La combinaison n'est possible que de Groupe à Groupe ou Nœud-Feuille
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15389,16 +15471,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr ""
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr ""
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15522,7 +15594,7 @@ msgstr "Meta title pour le référencement"
msgid "Method"
msgstr "Méthode"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15572,6 +15644,11 @@ msgstr "Score Minimum de Mot de Passe"
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15967,7 +16044,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr "Doit être de type \"Joindre l'Image\""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "Doit avoir l'autorisation d'accéder aux rapport dont celui-ci."
@@ -16155,6 +16232,10 @@ msgstr ""
msgid "Negative Value"
msgstr "Valeur négative"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "Erreur d'ensemble imbriqué. Veuillez contacter l'Administrateur."
@@ -16237,7 +16318,7 @@ msgstr "Nouvel évènement"
msgid "New Folder"
msgstr "Nouveau Dossier"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "Nouveau Tableau Kanban"
@@ -16381,48 +16462,13 @@ msgstr "De nouvelles {} versions pour les applications suivantes sont disponible
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "Groupe Email pour Newsletter"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "Responsable de la Newsletter"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "La Newsletter a déjà été envoyée"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "Le bulletin devrait avoir au moins un destinataire"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr ""
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16684,7 +16730,7 @@ msgstr "Aucun résultat trouvs"
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16712,10 +16758,6 @@ msgstr "Aucune alerte pour aujourd'hui"
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "Aucun changement dans le document"
@@ -16752,7 +16794,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr "Aucun contact lié au document"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "Aucune donnée à exporter"
@@ -16772,7 +16814,7 @@ msgstr "Aucun compte de messagerie associé à l'utilisateur. Veuillez ajout
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16831,7 +16873,7 @@ msgstr "Nb de lignes (Max 500)"
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Pas d'autorisation pour {0}"
@@ -16959,7 +17001,7 @@ msgstr "Pas des descendants de"
msgid "Not Equals"
msgstr "Non égaux"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "Non Trouvé"
@@ -16985,7 +17027,7 @@ msgstr "Lié à aucun enregistrement"
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16994,7 +17036,7 @@ msgstr ""
msgid "Not Permitted"
msgstr "Non Autorisé"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17022,7 +17064,6 @@ msgstr "Non Vu"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "Non Envoyé"
@@ -17055,7 +17096,7 @@ msgstr ""
msgid "Not active"
msgstr "Non actif"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "Non autorisé pour {0}: {1}"
@@ -17489,6 +17530,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "Ancien Mot De Passe"
@@ -17662,7 +17707,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17834,7 +17879,7 @@ msgstr "Ouvert"
msgid "Operation"
msgstr "Opération"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "L'Opérateur doit être parmi {0}"
@@ -17933,6 +17978,10 @@ msgstr ""
msgid "Order"
msgstr "Commande"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18328,7 +18377,7 @@ msgstr "Parent est le nom du document auquel les données seront ajoutées."
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18450,10 +18499,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr "Les mots de passe ne correspondent pas!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "Coller"
@@ -18599,7 +18644,7 @@ msgstr "Valider de Manière Permanente {0} ?"
msgid "Permanently delete {0}?"
msgstr "Supprimer de Manière Permanente {0} ?"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "Erreur d'autorisation"
@@ -18751,7 +18796,7 @@ msgstr "Téléphone"
msgid "Phone No."
msgstr "N° de Téléphone."
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -19024,10 +19069,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr "Veuillez enregistrer avant de joindre une pièce."
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "Veuillez sauvegarder la Newsletter avant de l'envoyer"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "Veuillez enregistrer le document avant l'affectation"
@@ -19060,7 +19101,7 @@ msgstr "Veuillez sélectionner le Score Minimum du Mot de Passe"
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19076,7 +19117,7 @@ msgstr "Veuillez sélectionner un fichier ou une URL"
msgid "Please select a valid csv file with data"
msgstr "Veuillez sélectionner un fichier CSV valide contenant des données"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "Veuillez sélectionner un filtre de date valide"
@@ -19154,7 +19195,7 @@ msgstr ""
msgid "Please specify"
msgstr "Veuillez spécifier"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19191,10 +19232,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "Veuillez vérifier votre adresse e-mail"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19288,6 +19325,10 @@ msgstr "Messages de {0}"
msgid "Posts filed under {0}"
msgstr "Messages déposés en vertu de {0}"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19347,7 +19388,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr "Utilisateur du rapport préparé"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19376,8 +19417,6 @@ msgstr "Appuyez sur Entrée pour enregistrer"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19765,7 +19804,7 @@ msgstr ""
msgid "Progress"
msgstr "Progression"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "Projet"
@@ -19860,14 +19899,7 @@ msgstr ""
msgid "Publish"
msgstr "Publier"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19875,7 +19907,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -20050,7 +20081,7 @@ msgstr "Rapport de Requête"
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -20096,7 +20127,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "Dans la file d'attente"
@@ -20119,19 +20149,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr "En file d'attente pour la sauvegarde. Vous recevrez un courriel avec le lien de téléchargement"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20332,7 +20354,7 @@ msgstr "Lu par le destinataire sur"
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21199,7 +21221,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "Rapport mis à jour avec succès"
@@ -21220,7 +21242,7 @@ msgstr "Rapport {0}"
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "Rapport {0} est désactivé"
@@ -21553,10 +21575,8 @@ msgstr "Révoquer"
msgid "Revoked"
msgstr "Révoqué"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21767,7 +21787,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21781,7 +21800,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21899,7 +21917,7 @@ msgstr "Règle"
msgid "Rule Conditions"
msgstr "Conditions de règle"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22088,11 +22106,11 @@ msgstr "Samedi"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22184,32 +22202,17 @@ msgstr "Veuillez scanner le QR Code et entrer le code que vous recevez."
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "Prévu"
@@ -22243,17 +22246,6 @@ msgstr "Type de travail planifié"
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "Prévu pour envoyer"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "L'exécution planifiée du script {0} a été mise à jour"
@@ -22465,6 +22457,11 @@ msgstr "Rechercher..."
msgid "Searching ..."
msgstr "Recherche ..."
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22854,9 +22851,7 @@ msgstr "Sélectionner {0}"
msgid "Self approval is not allowed"
msgstr "L'auto-approbation n'est pas autorisée"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "Envoyer"
@@ -22887,11 +22882,6 @@ msgstr "Envoyer une Alerte Sur"
msgid "Send Email Alert"
msgstr "Envoyer une alerte email"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22949,38 +22939,16 @@ msgstr "Envoyer Accusé de Réception"
msgid "Send System Notification"
msgstr "Envoyer une notification système"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "Envoyer à tous les cessionnaires"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "Envoyer le Lien de Désabonnement"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "Envoyer un Email de Bienvenue"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -23028,10 +22996,6 @@ msgstr ""
msgid "Send me a copy"
msgstr "M'Envoyer Une Copie"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -23047,19 +23011,15 @@ msgstr "Envoyer un message de désabonnement dans l'email"
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "Expéditeur"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "Email d'expéditeur"
@@ -23076,9 +23036,7 @@ msgid "Sender Field should have Email in options"
msgstr "Le champ de l'expéditeur doit avoir un e-mail dans les options"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -23098,18 +23056,9 @@ msgstr "SendGrid"
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "Envoi"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23117,8 +23066,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "Envoyé"
@@ -23188,7 +23135,7 @@ msgstr "Séries {0} déjà utilisé dans {1}"
msgid "Server Action"
msgstr "Action du serveur"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Erreur du Serveur"
@@ -23207,7 +23154,7 @@ msgstr "IP serveur"
msgid "Server Script"
msgstr "Script de serveur"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23246,15 +23193,15 @@ msgstr "Paramètres de session par défaut"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "Session par défaut"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "Session par défaut enregistrée"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "La Session a Expiré"
@@ -23484,7 +23431,7 @@ msgstr "Configuration de votre système"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24567,7 +24514,6 @@ msgstr "Intervalle de temps des statistiques"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24592,7 +24538,6 @@ msgstr "Intervalle de temps des statistiques"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24733,8 +24678,6 @@ msgstr "Sous-domaine"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24743,7 +24686,6 @@ msgstr "Sous-domaine"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25114,7 +25056,7 @@ msgstr "Synchronisation"
msgid "Syncing {0} of {1}"
msgstr "Synchroniser {0} sur {1}"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25421,7 +25363,7 @@ msgstr ""
msgid "Table updated"
msgstr "Table Mise à Jour"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "La Table {0} ne peut pas être vide"
@@ -25548,10 +25490,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "E-mail de test envoyé à {0}"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Dossier_Test"
@@ -25617,10 +25555,6 @@ msgstr "Merci pour votre Email"
msgid "Thank you for your feedback!"
msgstr "Merci pour votre avis!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "Merci de l’intérêt que vous nous montrez en vous abonnant à notre actualité"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25809,7 +25743,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "La ressource que vous recherchez n'est pas disponible"
@@ -25821,7 +25755,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25974,7 +25908,7 @@ msgstr "Authentification Tierce"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Cette devise est désactivée. Activez la pour l'utiliser dans les transactions"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "Ce Tableau Kanban sera privé"
@@ -25998,7 +25932,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "Cette action n'est autorisée que pour {}"
@@ -26158,14 +26092,6 @@ msgstr "Cela peut être imprimé sur plusieurs pages"
msgid "This month"
msgstr "Ce mois-ci"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26278,7 +26204,6 @@ msgstr "Jeudi"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Temps"
@@ -26504,10 +26429,8 @@ msgid "Title of the page"
msgstr "Titre de la page"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "À"
@@ -26786,7 +26709,7 @@ msgstr ""
msgid "Topic"
msgstr "Sujet"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26814,16 +26737,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "Total d'Abonnés"
@@ -26832,11 +26747,6 @@ msgstr "Total d'Abonnés"
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27233,23 +27143,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "URL à consulter en cliquant sur l'image du diaporama"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27299,7 +27203,7 @@ msgstr "Impossible d'écrire le format de fichier pour {0}"
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27315,6 +27219,10 @@ msgstr "Annuler l'action"
msgid "Undo last action"
msgstr "Annuler l'action précédente"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27347,7 +27255,7 @@ msgstr "Inconnu"
msgid "Unknown Column: {0}"
msgstr "Colonne Inconnue : {0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27380,7 +27288,7 @@ msgstr "Non Lus"
msgid "Unread Notification Sent"
msgstr "Notification Non Lue Envoyée"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27394,7 +27302,7 @@ msgstr ""
msgid "Unshared"
msgstr "Non Partagé"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "Se Désinscrire"
@@ -27418,6 +27326,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr "Désinscrit"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "Colonne sans titre"
@@ -27540,7 +27453,7 @@ msgstr "Mise à jour vers une nouvelle version 🎉"
msgid "Updated successfully"
msgstr "Mis à jour avec succés"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "Réactualisation"
@@ -28275,7 +28188,7 @@ msgstr "Valeur trop grande"
msgid "Value {0} missing for {1}"
msgstr "Valeur {0} manquante pour {1}"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "La valeur {0} doit être au format de durée valide: dhms"
@@ -28700,7 +28613,6 @@ msgstr "URL du webhook"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28708,9 +28620,7 @@ msgid "Website"
msgstr "Site Web"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "Analyse de site Web"
@@ -29146,7 +29056,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29369,11 +29279,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "Vous n'êtes pas autorisé à accéder à cet enregistrement {0} car il est lié à {1} '{2}' dans le champ {3}"
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29396,7 +29306,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "Vous n'êtes pas autorisé à exporter {} doctype"
@@ -29424,7 +29334,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr "Vous n'êtes pas autorisé à accéder à cette page."
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29519,7 +29429,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "Vous pouvez essayer de modifier les filtres de votre rapport."
@@ -29596,11 +29506,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Vous ne disposez pas de suffisamment d'autorisations pour accéder à cette ressource. Veuillez contacter votre responsable pour obtenir l'accès."
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "Vous ne disposez pas de suffisamment d'autorisations pour compléter l'action"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29608,7 +29522,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr "Vous n'êtes pas autorisé à annuler tous les documents liés."
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "Vous n'avez pas accès au Rapport : {0}"
@@ -29616,11 +29530,11 @@ msgstr "Vous n'avez pas accès au Rapport : {0}"
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "Vous n'avez pas l'autorisation d'accéder à ce fichier"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "Vous n'avez pas l'autorisation d'obtenir un rapport sur : {0}"
@@ -29713,7 +29627,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Vous devez être en Mode Développeur pour modifier un Formulaire Web Standard"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Vous devez être connecté et avoir le Role Responsable Système pour pouvoir accéder aux sauvegardes."
@@ -29879,7 +29793,7 @@ msgstr "Le nom de votre société et l'adresse pour le pied de l'email."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Votre requête a été reçue. Nous vous répondrons au plus vite. Si vous avez des informations supplémentaires, veuillez répondre à cet email."
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "Votre session a expiré, connectez-vous à nouveau pour continuer."
@@ -29891,7 +29805,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "Zéro"
@@ -29938,7 +29852,7 @@ msgstr ""
msgid "amend"
msgstr "Nouv. version"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "et"
@@ -29995,7 +29909,7 @@ msgstr "créer"
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30110,7 +30024,7 @@ msgstr ""
msgid "email inbox"
msgstr "Boîte de réception e-mail"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "vide"
@@ -30162,7 +30076,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30196,7 +30110,7 @@ msgstr ""
msgid "just now"
msgstr "juste maintenant"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30236,7 +30150,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30426,7 +30340,7 @@ msgstr "réponse"
msgid "restored {0} as {1}"
msgstr "restauré(e) {0} comme {1}"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30761,7 +30675,7 @@ msgstr "{0} déjà désinscrit"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} déjà désabonné pour {1} {2}"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} et {1}"
@@ -30867,6 +30781,10 @@ msgstr "{0} n'existe pas dans la ligne {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "Le champ {0} ne peut pas être défini comme unique dans {1}, car il existe des valeurs non-uniques"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30887,10 +30805,6 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr "{0} a déjà attribué la valeur par défaut à {1}."
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} a été ajouté avec succès au Groupe d’Email."
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} a quitté la conversation dans {1} {2}"
@@ -30961,6 +30875,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr "{0} est obligatoire"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -30982,7 +30900,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} n'est pas un DocType valide pour Dynamic Link"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0} n’est pas une Adresse Email valide"
@@ -30990,11 +30908,11 @@ msgstr "{0} n’est pas une Adresse Email valide"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0} n'est pas un nom valide"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} n'est pas un numéro de téléphone valide"
@@ -31002,11 +30920,11 @@ msgstr "{0} n'est pas un numéro de téléphone valide"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} n'est pas un état de Workflow valide. Veuillez mettre à jour votre Workflow et réessayer."
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31094,23 +31012,23 @@ msgstr "Il y a {0} minutes"
msgid "{0} months ago"
msgstr "Il y a {0} mois"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0} doit être après {1}"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} doit être l'un des {1}"
@@ -31122,7 +31040,7 @@ msgstr "{0} doit être défini en premier"
msgid "{0} must be unique"
msgstr "{0} doit être unique"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31151,16 +31069,12 @@ msgstr "{0} sur {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} sur {1} ({2} lignes avec des enfants)"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} ou {1}"
@@ -31197,11 +31111,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0} enregistré avec succès"
@@ -31313,7 +31227,7 @@ msgstr "{0} {1} n'existe pas, veuillez sélectionner une nouvelle cible à fusio
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} est lié aux documents validés suivants: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} introuvable"
@@ -31466,11 +31380,11 @@ msgstr "{{{0}}} n'est pas un motif de nom de champ valide. Il devrait être {{fi
msgid "{} Complete"
msgstr "{} Achevée"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31492,7 +31406,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{} n'est pas une chaîne de date valide."
diff --git a/frappe/locale/hr.po b/frappe/locale/hr.po
index b3911f912b..fb70eb1f90 100644
--- a/frappe/locale/hr.po
+++ b/frappe/locale/hr.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:41\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-28 17:46\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Croatian\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "'U Prikazu Liste' nije dopušteno za tip {0} u redu {1}"
msgid "'Recipients' not specified"
msgstr "'Primatelji' nisu navedeni"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "'{0}' nije važeći URL"
@@ -1034,7 +1034,7 @@ msgstr "Radnja / Ruta"
msgid "Action Complete"
msgstr "Radnja Završena"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "Radnja Neuspješna"
@@ -1673,6 +1673,14 @@ msgstr "Upozorenje"
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1713,7 +1721,6 @@ msgstr "Poravnaj Vrijednost"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -2158,7 +2165,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2276,7 +2283,7 @@ msgstr ""
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr ""
@@ -2490,10 +2497,6 @@ msgstr ""
msgid "Are you sure you want to save this document?"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr ""
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2747,9 +2750,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr ""
@@ -2776,10 +2777,7 @@ msgid "Attachment Removed"
msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2797,11 +2795,6 @@ msgstr ""
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3228,7 +3221,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr ""
@@ -3956,9 +3949,7 @@ msgstr ""
msgid "Camera"
msgstr "Kamera"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -4044,10 +4035,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4341,7 +4328,7 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr ""
@@ -4509,10 +4496,6 @@ msgstr ""
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4536,10 +4519,6 @@ msgstr ""
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr ""
@@ -4586,6 +4565,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4675,10 +4658,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -5020,7 +4999,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr ""
@@ -5340,17 +5319,12 @@ msgstr ""
msgid "Confirm Request"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr ""
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr ""
@@ -5481,8 +5455,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5490,7 +5462,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5515,10 +5486,8 @@ msgstr ""
msgid "Content Hash"
msgstr ""
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5624,6 +5593,10 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5679,7 +5652,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5810,11 +5783,6 @@ msgstr ""
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -6163,6 +6131,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6220,7 +6192,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr ""
@@ -6513,7 +6485,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6577,6 +6548,11 @@ msgstr ""
msgid "Day of Week"
msgstr "Dan u Tjednu"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6844,6 +6820,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -7156,6 +7133,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7909,7 +7887,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8527,7 +8505,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8621,11 +8598,9 @@ msgstr ""
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr ""
@@ -8698,18 +8673,11 @@ msgstr ""
msgid "Email Rule"
msgstr ""
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr ""
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8816,10 +8784,18 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9283,6 +9259,14 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9479,6 +9463,10 @@ msgstr ""
msgid "Expand All"
msgstr ""
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -10010,7 +9998,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -10026,7 +10014,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -10078,6 +10066,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10243,6 +10235,14 @@ msgstr ""
msgid "Filter Values"
msgstr ""
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10486,10 +10486,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10906,10 +10902,8 @@ msgid "Friday"
msgstr ""
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr ""
@@ -10990,10 +10984,14 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr ""
@@ -11475,6 +11473,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr ""
@@ -11523,7 +11525,6 @@ msgstr ""
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11537,7 +11538,6 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -12046,6 +12046,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr ""
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12811,11 +12816,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12967,11 +12972,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -13121,7 +13126,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr ""
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr ""
@@ -13129,7 +13134,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -13141,6 +13146,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13205,7 +13215,7 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13249,10 +13259,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13265,10 +13303,26 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13277,11 +13331,26 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13303,10 +13372,22 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr ""
@@ -13748,11 +13829,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14464,6 +14545,10 @@ msgstr ""
msgid "Limit"
msgstr ""
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr "Granica mora biti cijeli broj koji nije negativan"
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14727,6 +14812,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15245,11 +15331,9 @@ msgstr ""
msgid "Mark as Unread"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15438,7 +15522,6 @@ msgstr ""
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15451,7 +15534,6 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15466,16 +15548,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr ""
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr ""
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15599,7 +15671,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15649,6 +15721,11 @@ msgstr ""
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -16044,7 +16121,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr ""
@@ -16232,6 +16309,10 @@ msgstr ""
msgid "Negative Value"
msgstr ""
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr ""
@@ -16314,7 +16395,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr ""
@@ -16458,48 +16539,13 @@ msgstr ""
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr ""
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr ""
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16761,7 +16807,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16789,10 +16835,6 @@ msgstr ""
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr ""
@@ -16829,7 +16871,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr ""
@@ -16849,7 +16891,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16908,7 +16950,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -17036,7 +17078,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -17062,7 +17104,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17071,7 +17113,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -17099,7 +17141,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr ""
@@ -17132,7 +17173,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17566,6 +17607,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr ""
@@ -17739,7 +17784,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17911,7 +17956,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr ""
@@ -18010,6 +18055,10 @@ msgstr ""
msgid "Order"
msgstr ""
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18405,7 +18454,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18527,10 +18576,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr ""
@@ -18676,7 +18721,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr ""
@@ -18828,7 +18873,7 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -19101,10 +19146,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr ""
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr ""
@@ -19137,7 +19178,7 @@ msgstr ""
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -19153,7 +19194,7 @@ msgstr ""
msgid "Please select a valid csv file with data"
msgstr ""
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr ""
@@ -19231,7 +19272,7 @@ msgstr "Postavi zadani račun odlazne e-pošte iz Alati > Račun e-pošte"
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19268,10 +19309,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr ""
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19365,6 +19402,10 @@ msgstr ""
msgid "Posts filed under {0}"
msgstr ""
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19424,7 +19465,7 @@ msgstr "Analitika Pripremljenog Izvješća"
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19453,8 +19494,6 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19842,7 +19881,7 @@ msgstr ""
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr ""
@@ -19937,14 +19976,7 @@ msgstr ""
msgid "Publish"
msgstr ""
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19952,7 +19984,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -20127,7 +20158,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -20173,7 +20204,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr ""
@@ -20196,19 +20226,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20409,7 +20431,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21276,7 +21298,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr ""
@@ -21297,7 +21319,7 @@ msgstr ""
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr ""
@@ -21630,10 +21652,8 @@ msgstr ""
msgid "Revoked"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21844,7 +21864,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21858,7 +21877,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21976,7 +21994,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -22165,11 +22183,11 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22261,32 +22279,17 @@ msgstr ""
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr ""
@@ -22320,17 +22323,6 @@ msgstr ""
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr ""
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr ""
@@ -22542,6 +22534,11 @@ msgstr ""
msgid "Searching ..."
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22931,9 +22928,7 @@ msgstr ""
msgid "Self approval is not allowed"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr ""
@@ -22964,11 +22959,6 @@ msgstr ""
msgid "Send Email Alert"
msgstr ""
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -23026,38 +23016,16 @@ msgstr ""
msgid "Send System Notification"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr ""
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr ""
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -23105,10 +23073,6 @@ msgstr ""
msgid "Send me a copy"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -23124,19 +23088,15 @@ msgstr ""
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr ""
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr ""
@@ -23153,9 +23113,7 @@ msgid "Sender Field should have Email in options"
msgstr ""
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -23175,18 +23133,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23194,8 +23143,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr ""
@@ -23265,7 +23212,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23284,7 +23231,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23323,15 +23270,15 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr ""
@@ -23561,7 +23508,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24644,7 +24591,6 @@ msgstr ""
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24669,7 +24615,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24810,8 +24755,6 @@ msgstr ""
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24820,7 +24763,6 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25191,7 +25133,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25498,7 +25440,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25625,10 +25567,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr ""
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25694,10 +25632,6 @@ msgstr ""
msgid "Thank you for your feedback!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr ""
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25886,7 +25820,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25898,7 +25832,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -26051,7 +25985,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr ""
@@ -26075,7 +26009,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr ""
@@ -26235,14 +26169,6 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26355,7 +26281,6 @@ msgstr ""
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26581,10 +26506,8 @@ msgid "Title of the page"
msgstr ""
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr ""
@@ -26861,7 +26784,7 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26889,16 +26812,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr ""
@@ -26907,11 +26822,6 @@ msgstr ""
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27308,23 +27218,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27374,7 +27278,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27390,6 +27294,10 @@ msgstr ""
msgid "Undo last action"
msgstr ""
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27422,7 +27330,7 @@ msgstr ""
msgid "Unknown Column: {0}"
msgstr ""
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27455,7 +27363,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27469,7 +27377,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr ""
@@ -27493,6 +27401,11 @@ msgstr "Parametri Otkazivanja"
msgid "Unsubscribed"
msgstr ""
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr ""
@@ -27615,7 +27528,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr ""
@@ -28350,7 +28263,7 @@ msgstr ""
msgid "Value {0} missing for {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr ""
@@ -28775,7 +28688,6 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28783,9 +28695,7 @@ msgid "Website"
msgstr ""
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr ""
@@ -29221,7 +29131,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29444,11 +29354,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29471,7 +29381,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29499,7 +29409,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29594,7 +29504,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29671,11 +29581,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29683,7 +29597,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr ""
@@ -29691,11 +29605,11 @@ msgstr ""
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr ""
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr ""
@@ -29788,7 +29702,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29954,7 +29868,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29966,7 +29880,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr ""
@@ -30013,7 +29927,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -30070,7 +29984,7 @@ msgstr ""
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30185,7 +30099,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30237,7 +30151,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30271,7 +30185,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30311,7 +30225,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30501,7 +30415,7 @@ msgstr ""
msgid "restored {0} as {1}"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30836,7 +30750,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr ""
@@ -30942,6 +30856,10 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30962,10 +30880,6 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr ""
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -31036,6 +30950,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -31057,7 +30975,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -31065,11 +30983,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -31077,11 +30995,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -31169,23 +31087,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -31197,7 +31115,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31226,16 +31144,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr ""
@@ -31272,11 +31186,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr ""
@@ -31388,7 +31302,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
@@ -31541,11 +31455,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31567,7 +31481,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr ""
diff --git a/frappe/locale/hu.po b/frappe/locale/hu.po
index 5a063ebaf7..0f53e90069 100644
--- a/frappe/locale/hu.po
+++ b/frappe/locale/hu.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -850,7 +850,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr ""
@@ -1489,6 +1489,14 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1529,7 +1537,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1974,7 +1981,7 @@ msgstr "Módosítás nem engedélyezett"
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2092,7 +2099,7 @@ msgstr ""
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr ""
@@ -2306,10 +2313,6 @@ msgstr ""
msgid "Are you sure you want to save this document?"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr ""
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2563,9 +2566,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr ""
@@ -2592,10 +2593,7 @@ msgid "Attachment Removed"
msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2613,11 +2611,6 @@ msgstr ""
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3044,7 +3037,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr ""
@@ -3772,9 +3765,7 @@ msgstr ""
msgid "Camera"
msgstr ""
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3860,10 +3851,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4157,7 +4144,7 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr ""
@@ -4325,10 +4312,6 @@ msgstr ""
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4352,10 +4335,6 @@ msgstr ""
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr ""
@@ -4402,6 +4381,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4491,10 +4474,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4836,7 +4815,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr ""
@@ -5156,17 +5135,12 @@ msgstr ""
msgid "Confirm Request"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr ""
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr ""
@@ -5297,8 +5271,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5306,7 +5278,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5331,10 +5302,8 @@ msgstr ""
msgid "Content Hash"
msgstr ""
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5440,6 +5409,10 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr "Nem sikerült elindulni: "
@@ -5495,7 +5468,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5626,11 +5599,6 @@ msgstr ""
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -5979,6 +5947,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6036,7 +6008,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr ""
@@ -6329,7 +6301,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6393,6 +6364,11 @@ msgstr ""
msgid "Day of Week"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6660,6 +6636,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6972,6 +6949,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7725,7 +7703,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8343,7 +8321,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8437,11 +8414,9 @@ msgstr ""
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr ""
@@ -8514,18 +8489,11 @@ msgstr ""
msgid "Email Rule"
msgstr ""
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr ""
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8632,10 +8600,18 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9099,6 +9075,14 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9295,6 +9279,10 @@ msgstr ""
msgid "Expand All"
msgstr ""
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -9826,7 +9814,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9842,7 +9830,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -9894,6 +9882,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10059,6 +10051,14 @@ msgstr ""
msgid "Filter Values"
msgstr ""
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10302,10 +10302,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10722,10 +10718,8 @@ msgid "Friday"
msgstr ""
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr ""
@@ -10806,10 +10800,14 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr ""
@@ -11291,6 +11289,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr ""
@@ -11339,7 +11341,6 @@ msgstr ""
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11353,7 +11354,6 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11862,6 +11862,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr ""
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12627,11 +12632,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12783,11 +12788,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12937,7 +12942,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr ""
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr ""
@@ -12945,7 +12950,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -12957,6 +12962,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13021,7 +13031,7 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13065,10 +13075,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13081,10 +13119,26 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13093,11 +13147,26 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13119,10 +13188,22 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr ""
@@ -13564,11 +13645,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14280,6 +14361,10 @@ msgstr ""
msgid "Limit"
msgstr ""
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14543,6 +14628,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15061,11 +15147,9 @@ msgstr ""
msgid "Mark as Unread"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15254,7 +15338,6 @@ msgstr ""
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15267,7 +15350,6 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15282,16 +15364,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr ""
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr ""
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15415,7 +15487,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15465,6 +15537,11 @@ msgstr ""
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15860,7 +15937,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr ""
@@ -16048,6 +16125,10 @@ msgstr ""
msgid "Negative Value"
msgstr ""
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr ""
@@ -16130,7 +16211,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr ""
@@ -16274,48 +16355,13 @@ msgstr ""
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr ""
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr ""
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16577,7 +16623,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16605,10 +16651,6 @@ msgstr ""
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr ""
@@ -16645,7 +16687,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr ""
@@ -16665,7 +16707,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16724,7 +16766,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16852,7 +16894,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16878,7 +16920,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16887,7 +16929,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -16915,7 +16957,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr ""
@@ -16948,7 +16989,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17382,6 +17423,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr ""
@@ -17555,7 +17600,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17727,7 +17772,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr ""
@@ -17826,6 +17871,10 @@ msgstr ""
msgid "Order"
msgstr ""
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18221,7 +18270,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18343,10 +18392,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr ""
@@ -18492,7 +18537,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr ""
@@ -18644,7 +18689,7 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -18917,10 +18962,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr ""
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr ""
@@ -18953,7 +18994,7 @@ msgstr ""
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -18969,7 +19010,7 @@ msgstr ""
msgid "Please select a valid csv file with data"
msgstr ""
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr ""
@@ -19047,7 +19088,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19084,10 +19125,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr ""
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19181,6 +19218,10 @@ msgstr ""
msgid "Posts filed under {0}"
msgstr ""
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19240,7 +19281,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19269,8 +19310,6 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19658,7 +19697,7 @@ msgstr ""
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr ""
@@ -19753,14 +19792,7 @@ msgstr ""
msgid "Publish"
msgstr ""
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19768,7 +19800,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19943,7 +19974,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -19989,7 +20020,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr ""
@@ -20012,19 +20042,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20225,7 +20247,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21092,7 +21114,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr ""
@@ -21113,7 +21135,7 @@ msgstr ""
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr ""
@@ -21446,10 +21468,8 @@ msgstr ""
msgid "Revoked"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21660,7 +21680,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21674,7 +21693,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21792,7 +21810,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -21981,11 +21999,11 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22077,32 +22095,17 @@ msgstr ""
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr ""
@@ -22136,17 +22139,6 @@ msgstr ""
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr ""
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr ""
@@ -22358,6 +22350,11 @@ msgstr ""
msgid "Searching ..."
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22747,9 +22744,7 @@ msgstr ""
msgid "Self approval is not allowed"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr ""
@@ -22780,11 +22775,6 @@ msgstr ""
msgid "Send Email Alert"
msgstr ""
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22842,38 +22832,16 @@ msgstr ""
msgid "Send System Notification"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr ""
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr ""
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22921,10 +22889,6 @@ msgstr ""
msgid "Send me a copy"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22940,19 +22904,15 @@ msgstr ""
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr ""
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr ""
@@ -22969,9 +22929,7 @@ msgid "Sender Field should have Email in options"
msgstr ""
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -22991,18 +22949,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23010,8 +22959,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr ""
@@ -23081,7 +23028,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23100,7 +23047,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23139,15 +23086,15 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr ""
@@ -23377,7 +23324,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24460,7 +24407,6 @@ msgstr ""
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24485,7 +24431,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24626,8 +24571,6 @@ msgstr ""
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24636,7 +24579,6 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25007,7 +24949,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25314,7 +25256,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25441,10 +25383,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr ""
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25510,10 +25448,6 @@ msgstr ""
msgid "Thank you for your feedback!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr ""
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25702,7 +25636,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25714,7 +25648,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25867,7 +25801,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr ""
@@ -25891,7 +25825,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr ""
@@ -26051,14 +25985,6 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26171,7 +26097,6 @@ msgstr ""
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26397,10 +26322,8 @@ msgid "Title of the page"
msgstr ""
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr ""
@@ -26677,7 +26600,7 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26705,16 +26628,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr ""
@@ -26723,11 +26638,6 @@ msgstr ""
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27124,23 +27034,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27190,7 +27094,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27206,6 +27110,10 @@ msgstr ""
msgid "Undo last action"
msgstr ""
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27238,7 +27146,7 @@ msgstr ""
msgid "Unknown Column: {0}"
msgstr ""
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27271,7 +27179,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27285,7 +27193,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr ""
@@ -27309,6 +27217,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr ""
@@ -27431,7 +27344,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr ""
@@ -28166,7 +28079,7 @@ msgstr ""
msgid "Value {0} missing for {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr ""
@@ -28591,7 +28504,6 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28599,9 +28511,7 @@ msgid "Website"
msgstr ""
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr ""
@@ -29037,7 +28947,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29260,11 +29170,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29287,7 +29197,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29315,7 +29225,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29410,7 +29320,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29487,11 +29397,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29499,7 +29413,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr ""
@@ -29507,11 +29421,11 @@ msgstr ""
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr ""
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr ""
@@ -29604,7 +29518,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29770,7 +29684,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29782,7 +29696,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr ""
@@ -29829,7 +29743,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -29886,7 +29800,7 @@ msgstr ""
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30001,7 +29915,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30053,7 +29967,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30087,7 +30001,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30127,7 +30041,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30317,7 +30231,7 @@ msgstr ""
msgid "restored {0} as {1}"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30652,7 +30566,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr ""
@@ -30758,6 +30672,10 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30778,10 +30696,6 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr ""
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -30852,6 +30766,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -30873,7 +30791,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -30881,11 +30799,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -30893,11 +30811,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -30985,23 +30903,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -31013,7 +30931,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31042,16 +30960,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr ""
@@ -31088,11 +31002,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr ""
@@ -31204,7 +31118,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
@@ -31357,11 +31271,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31383,7 +31297,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr ""
diff --git a/frappe/locale/it.po b/frappe/locale/it.po
index 0628d32a08..b0240b6879 100644
--- a/frappe/locale/it.po
+++ b/frappe/locale/it.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:41\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Italian\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -850,7 +850,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr ""
@@ -1489,6 +1489,14 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1529,7 +1537,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1974,7 +1981,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2092,7 +2099,7 @@ msgstr ""
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr ""
@@ -2306,10 +2313,6 @@ msgstr ""
msgid "Are you sure you want to save this document?"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr ""
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2563,9 +2566,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr ""
@@ -2592,10 +2593,7 @@ msgid "Attachment Removed"
msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2613,11 +2611,6 @@ msgstr ""
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3044,7 +3037,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr ""
@@ -3772,9 +3765,7 @@ msgstr ""
msgid "Camera"
msgstr ""
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3860,10 +3851,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4157,7 +4144,7 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr ""
@@ -4325,10 +4312,6 @@ msgstr ""
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4352,10 +4335,6 @@ msgstr ""
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr ""
@@ -4402,6 +4381,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4491,10 +4474,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4836,7 +4815,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr ""
@@ -5156,17 +5135,12 @@ msgstr ""
msgid "Confirm Request"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr ""
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr ""
@@ -5297,8 +5271,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5306,7 +5278,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5331,10 +5302,8 @@ msgstr ""
msgid "Content Hash"
msgstr ""
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5440,6 +5409,10 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5495,7 +5468,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5626,11 +5599,6 @@ msgstr ""
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -5979,6 +5947,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6036,7 +6008,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr ""
@@ -6329,7 +6301,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6393,6 +6364,11 @@ msgstr ""
msgid "Day of Week"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6660,6 +6636,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6972,6 +6949,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7725,7 +7703,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8343,7 +8321,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8437,11 +8414,9 @@ msgstr ""
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr ""
@@ -8514,18 +8489,11 @@ msgstr ""
msgid "Email Rule"
msgstr ""
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr ""
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8632,10 +8600,18 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9099,6 +9075,14 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9295,6 +9279,10 @@ msgstr ""
msgid "Expand All"
msgstr ""
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -9826,7 +9814,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9842,7 +9830,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -9894,6 +9882,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10059,6 +10051,14 @@ msgstr ""
msgid "Filter Values"
msgstr ""
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10302,10 +10302,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10722,10 +10718,8 @@ msgid "Friday"
msgstr ""
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr ""
@@ -10806,10 +10800,14 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr ""
@@ -11291,6 +11289,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr ""
@@ -11339,7 +11341,6 @@ msgstr ""
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11353,7 +11354,6 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11862,6 +11862,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr ""
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12627,11 +12632,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12783,11 +12788,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12937,7 +12942,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr ""
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr ""
@@ -12945,7 +12950,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -12957,6 +12962,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13021,7 +13031,7 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13065,10 +13075,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13081,10 +13119,26 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13093,11 +13147,26 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13119,10 +13188,22 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr ""
@@ -13564,11 +13645,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14280,6 +14361,10 @@ msgstr ""
msgid "Limit"
msgstr ""
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14543,6 +14628,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15061,11 +15147,9 @@ msgstr ""
msgid "Mark as Unread"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15254,7 +15338,6 @@ msgstr ""
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15267,7 +15350,6 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15282,16 +15364,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr ""
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr ""
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15415,7 +15487,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15465,6 +15537,11 @@ msgstr ""
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15860,7 +15937,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr ""
@@ -16048,6 +16125,10 @@ msgstr ""
msgid "Negative Value"
msgstr ""
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr ""
@@ -16130,7 +16211,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr ""
@@ -16274,48 +16355,13 @@ msgstr ""
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr ""
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr ""
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16577,7 +16623,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16605,10 +16651,6 @@ msgstr ""
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr ""
@@ -16645,7 +16687,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr ""
@@ -16665,7 +16707,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16724,7 +16766,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16852,7 +16894,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16878,7 +16920,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16887,7 +16929,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -16915,7 +16957,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr ""
@@ -16948,7 +16989,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17382,6 +17423,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr ""
@@ -17555,7 +17600,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17727,7 +17772,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr ""
@@ -17826,6 +17871,10 @@ msgstr ""
msgid "Order"
msgstr ""
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18221,7 +18270,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18343,10 +18392,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr ""
@@ -18492,7 +18537,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr ""
@@ -18644,7 +18689,7 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -18917,10 +18962,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr ""
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr ""
@@ -18953,7 +18994,7 @@ msgstr ""
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -18969,7 +19010,7 @@ msgstr ""
msgid "Please select a valid csv file with data"
msgstr ""
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr ""
@@ -19047,7 +19088,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19084,10 +19125,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr ""
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19181,6 +19218,10 @@ msgstr ""
msgid "Posts filed under {0}"
msgstr ""
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19240,7 +19281,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19269,8 +19310,6 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19658,7 +19697,7 @@ msgstr ""
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr ""
@@ -19753,14 +19792,7 @@ msgstr ""
msgid "Publish"
msgstr ""
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19768,7 +19800,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19943,7 +19974,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -19989,7 +20020,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr ""
@@ -20012,19 +20042,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20225,7 +20247,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21092,7 +21114,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr ""
@@ -21113,7 +21135,7 @@ msgstr ""
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr ""
@@ -21446,10 +21468,8 @@ msgstr ""
msgid "Revoked"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21660,7 +21680,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21674,7 +21693,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21792,7 +21810,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -21981,11 +21999,11 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22077,32 +22095,17 @@ msgstr ""
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr ""
@@ -22136,17 +22139,6 @@ msgstr ""
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr ""
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr ""
@@ -22358,6 +22350,11 @@ msgstr ""
msgid "Searching ..."
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22747,9 +22744,7 @@ msgstr ""
msgid "Self approval is not allowed"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr ""
@@ -22780,11 +22775,6 @@ msgstr ""
msgid "Send Email Alert"
msgstr ""
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22842,38 +22832,16 @@ msgstr ""
msgid "Send System Notification"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr ""
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr ""
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22921,10 +22889,6 @@ msgstr ""
msgid "Send me a copy"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22940,19 +22904,15 @@ msgstr ""
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr ""
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr ""
@@ -22969,9 +22929,7 @@ msgid "Sender Field should have Email in options"
msgstr ""
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -22991,18 +22949,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23010,8 +22959,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr ""
@@ -23081,7 +23028,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23100,7 +23047,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23139,15 +23086,15 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr ""
@@ -23377,7 +23324,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24460,7 +24407,6 @@ msgstr ""
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24485,7 +24431,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24626,8 +24571,6 @@ msgstr ""
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24636,7 +24579,6 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25007,7 +24949,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25314,7 +25256,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25441,10 +25383,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr ""
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25510,10 +25448,6 @@ msgstr ""
msgid "Thank you for your feedback!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr ""
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25702,7 +25636,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25714,7 +25648,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25867,7 +25801,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr ""
@@ -25891,7 +25825,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr ""
@@ -26051,14 +25985,6 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26171,7 +26097,6 @@ msgstr ""
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26397,10 +26322,8 @@ msgid "Title of the page"
msgstr ""
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr ""
@@ -26677,7 +26600,7 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26705,16 +26628,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr ""
@@ -26723,11 +26638,6 @@ msgstr ""
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27124,23 +27034,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27190,7 +27094,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27206,6 +27110,10 @@ msgstr ""
msgid "Undo last action"
msgstr ""
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27238,7 +27146,7 @@ msgstr ""
msgid "Unknown Column: {0}"
msgstr ""
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27271,7 +27179,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27285,7 +27193,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr ""
@@ -27309,6 +27217,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr ""
@@ -27431,7 +27344,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr ""
@@ -28166,7 +28079,7 @@ msgstr ""
msgid "Value {0} missing for {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr ""
@@ -28591,7 +28504,6 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28599,9 +28511,7 @@ msgid "Website"
msgstr ""
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr ""
@@ -29037,7 +28947,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29260,11 +29170,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29287,7 +29197,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29315,7 +29225,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29410,7 +29320,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29487,11 +29397,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29499,7 +29413,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr ""
@@ -29507,11 +29421,11 @@ msgstr ""
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr ""
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr ""
@@ -29604,7 +29518,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29770,7 +29684,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29782,7 +29696,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr ""
@@ -29829,7 +29743,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -29886,7 +29800,7 @@ msgstr ""
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30001,7 +29915,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30053,7 +29967,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30087,7 +30001,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30127,7 +30041,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30317,7 +30231,7 @@ msgstr ""
msgid "restored {0} as {1}"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30652,7 +30566,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr ""
@@ -30758,6 +30672,10 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30778,10 +30696,6 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr ""
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -30852,6 +30766,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -30873,7 +30791,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -30881,11 +30799,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -30893,11 +30811,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -30985,23 +30903,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -31013,7 +30931,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31042,16 +30960,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr ""
@@ -31088,11 +31002,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr ""
@@ -31204,7 +31118,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
@@ -31357,11 +31271,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31383,7 +31297,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr ""
diff --git a/frappe/locale/nl.po b/frappe/locale/nl.po
index 51c022ecde..78b718fe4b 100644
--- a/frappe/locale/nl.po
+++ b/frappe/locale/nl.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:41\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Dutch\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "'In lijst weergave' niet toegestaan voor type {0} in rij {1}"
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -850,7 +850,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "Actie is mislukt"
@@ -1489,6 +1489,14 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1529,7 +1537,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1974,7 +1981,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2092,7 +2099,7 @@ msgstr "App Naam"
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "App {0} is niet geïnstalleerd"
@@ -2306,10 +2313,6 @@ msgstr ""
msgid "Are you sure you want to save this document?"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr ""
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2563,9 +2566,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr ""
@@ -2592,10 +2593,7 @@ msgid "Attachment Removed"
msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2613,11 +2611,6 @@ msgstr ""
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3044,7 +3037,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr ""
@@ -3772,9 +3765,7 @@ msgstr ""
msgid "Camera"
msgstr ""
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3860,10 +3851,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4157,7 +4144,7 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr ""
@@ -4325,10 +4312,6 @@ msgstr ""
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4352,10 +4335,6 @@ msgstr ""
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr ""
@@ -4402,6 +4381,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4491,10 +4474,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4836,7 +4815,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr ""
@@ -5156,17 +5135,12 @@ msgstr ""
msgid "Confirm Request"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr ""
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr ""
@@ -5297,8 +5271,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5306,7 +5278,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5331,10 +5302,8 @@ msgstr ""
msgid "Content Hash"
msgstr ""
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5440,6 +5409,10 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5495,7 +5468,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5626,11 +5599,6 @@ msgstr ""
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -5979,6 +5947,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6036,7 +6008,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr ""
@@ -6329,7 +6301,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6393,6 +6364,11 @@ msgstr ""
msgid "Day of Week"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6660,6 +6636,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6972,6 +6949,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7725,7 +7703,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8343,7 +8321,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8437,11 +8414,9 @@ msgstr ""
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr ""
@@ -8514,18 +8489,11 @@ msgstr ""
msgid "Email Rule"
msgstr ""
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr ""
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8632,10 +8600,18 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9099,6 +9075,14 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9295,6 +9279,10 @@ msgstr ""
msgid "Expand All"
msgstr ""
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -9826,7 +9814,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9842,7 +9830,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -9894,6 +9882,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10059,6 +10051,14 @@ msgstr ""
msgid "Filter Values"
msgstr ""
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10302,10 +10302,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10722,10 +10718,8 @@ msgid "Friday"
msgstr ""
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr ""
@@ -10806,10 +10800,14 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr ""
@@ -11291,6 +11289,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr ""
@@ -11339,7 +11341,6 @@ msgstr ""
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11353,7 +11354,6 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11862,6 +11862,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr ""
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12627,11 +12632,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12783,11 +12788,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12937,7 +12942,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr ""
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr ""
@@ -12945,7 +12950,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -12957,6 +12962,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13021,7 +13031,7 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13065,10 +13075,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13081,10 +13119,26 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13093,11 +13147,26 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13119,10 +13188,22 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr ""
@@ -13564,11 +13645,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14280,6 +14361,10 @@ msgstr ""
msgid "Limit"
msgstr ""
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14543,6 +14628,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15061,11 +15147,9 @@ msgstr ""
msgid "Mark as Unread"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15254,7 +15338,6 @@ msgstr ""
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15267,7 +15350,6 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15282,16 +15364,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr ""
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr ""
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15415,7 +15487,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15465,6 +15537,11 @@ msgstr ""
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15860,7 +15937,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr ""
@@ -16048,6 +16125,10 @@ msgstr ""
msgid "Negative Value"
msgstr ""
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr ""
@@ -16130,7 +16211,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr ""
@@ -16274,48 +16355,13 @@ msgstr ""
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr ""
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr ""
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16577,7 +16623,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16605,10 +16651,6 @@ msgstr ""
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr ""
@@ -16645,7 +16687,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr ""
@@ -16665,7 +16707,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16724,7 +16766,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16852,7 +16894,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16878,7 +16920,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16887,7 +16929,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -16915,7 +16957,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr ""
@@ -16948,7 +16989,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17382,6 +17423,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr ""
@@ -17555,7 +17600,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17727,7 +17772,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr ""
@@ -17826,6 +17871,10 @@ msgstr ""
msgid "Order"
msgstr ""
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18221,7 +18270,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18343,10 +18392,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr ""
@@ -18492,7 +18537,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr ""
@@ -18644,7 +18689,7 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -18917,10 +18962,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr ""
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr ""
@@ -18953,7 +18994,7 @@ msgstr ""
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -18969,7 +19010,7 @@ msgstr ""
msgid "Please select a valid csv file with data"
msgstr ""
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr ""
@@ -19047,7 +19088,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19084,10 +19125,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr ""
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19181,6 +19218,10 @@ msgstr ""
msgid "Posts filed under {0}"
msgstr ""
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19240,7 +19281,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19269,8 +19310,6 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19658,7 +19697,7 @@ msgstr ""
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr ""
@@ -19753,14 +19792,7 @@ msgstr ""
msgid "Publish"
msgstr ""
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19768,7 +19800,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19943,7 +19974,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -19989,7 +20020,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr ""
@@ -20012,19 +20042,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20225,7 +20247,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21092,7 +21114,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr ""
@@ -21113,7 +21135,7 @@ msgstr ""
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr ""
@@ -21446,10 +21468,8 @@ msgstr ""
msgid "Revoked"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21660,7 +21680,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21674,7 +21693,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21792,7 +21810,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -21981,11 +21999,11 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22077,32 +22095,17 @@ msgstr ""
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr ""
@@ -22136,17 +22139,6 @@ msgstr ""
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr ""
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr ""
@@ -22358,6 +22350,11 @@ msgstr ""
msgid "Searching ..."
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22747,9 +22744,7 @@ msgstr ""
msgid "Self approval is not allowed"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr ""
@@ -22780,11 +22775,6 @@ msgstr ""
msgid "Send Email Alert"
msgstr ""
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22842,38 +22832,16 @@ msgstr ""
msgid "Send System Notification"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr ""
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr ""
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22921,10 +22889,6 @@ msgstr ""
msgid "Send me a copy"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22940,19 +22904,15 @@ msgstr ""
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr ""
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr ""
@@ -22969,9 +22929,7 @@ msgid "Sender Field should have Email in options"
msgstr ""
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -22991,18 +22949,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23010,8 +22959,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr ""
@@ -23081,7 +23028,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23100,7 +23047,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23139,15 +23086,15 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr ""
@@ -23377,7 +23324,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24460,7 +24407,6 @@ msgstr ""
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24485,7 +24431,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24626,8 +24571,6 @@ msgstr ""
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24636,7 +24579,6 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25007,7 +24949,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25314,7 +25256,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25441,10 +25383,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr ""
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25510,10 +25448,6 @@ msgstr ""
msgid "Thank you for your feedback!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr ""
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25702,7 +25636,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25714,7 +25648,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25867,7 +25801,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr ""
@@ -25891,7 +25825,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr ""
@@ -26051,14 +25985,6 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26171,7 +26097,6 @@ msgstr ""
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26397,10 +26322,8 @@ msgid "Title of the page"
msgstr ""
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr ""
@@ -26677,7 +26600,7 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26705,16 +26628,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr ""
@@ -26723,11 +26638,6 @@ msgstr ""
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27124,23 +27034,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27190,7 +27094,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27206,6 +27110,10 @@ msgstr ""
msgid "Undo last action"
msgstr ""
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27238,7 +27146,7 @@ msgstr ""
msgid "Unknown Column: {0}"
msgstr ""
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27271,7 +27179,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27285,7 +27193,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr ""
@@ -27309,6 +27217,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr ""
@@ -27431,7 +27344,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr ""
@@ -28166,7 +28079,7 @@ msgstr ""
msgid "Value {0} missing for {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr ""
@@ -28591,7 +28504,6 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28599,9 +28511,7 @@ msgid "Website"
msgstr ""
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr ""
@@ -29037,7 +28947,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29260,11 +29170,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29287,7 +29197,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29315,7 +29225,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29410,7 +29320,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29487,11 +29397,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29499,7 +29413,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr ""
@@ -29507,11 +29421,11 @@ msgstr ""
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr ""
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr ""
@@ -29604,7 +29518,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29770,7 +29684,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29782,7 +29696,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr ""
@@ -29829,7 +29743,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -29886,7 +29800,7 @@ msgstr ""
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30001,7 +29915,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30053,7 +29967,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30087,7 +30001,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30127,7 +30041,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30317,7 +30231,7 @@ msgstr ""
msgid "restored {0} as {1}"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30652,7 +30566,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr ""
@@ -30758,6 +30672,10 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30778,10 +30696,6 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr ""
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -30852,6 +30766,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -30873,7 +30791,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -30881,11 +30799,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -30893,11 +30811,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -30985,23 +30903,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -31013,7 +30931,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31042,16 +30960,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr ""
@@ -31088,11 +31002,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr ""
@@ -31204,7 +31118,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
@@ -31357,11 +31271,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31383,7 +31297,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr ""
diff --git a/frappe/locale/pl.po b/frappe/locale/pl.po
index 13e21b81da..6b742a48dd 100644
--- a/frappe/locale/pl.po
+++ b/frappe/locale/pl.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Polish\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -863,7 +863,7 @@ msgstr "Akcja / Trasa"
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr ""
@@ -1502,6 +1502,14 @@ msgstr "Alarm"
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1542,7 +1550,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1987,7 +1994,7 @@ msgstr "Zmiana niedozwolona"
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2105,7 +2112,7 @@ msgstr ""
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr ""
@@ -2319,10 +2326,6 @@ msgstr ""
msgid "Are you sure you want to save this document?"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr ""
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2576,9 +2579,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "Załącznik"
@@ -2605,10 +2606,7 @@ msgid "Attachment Removed"
msgstr "Usunięto Attachment"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2626,11 +2624,6 @@ msgstr ""
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3057,7 +3050,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr ""
@@ -3785,9 +3778,7 @@ msgstr "Tytuł oddzwonienia"
msgid "Camera"
msgstr ""
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3873,10 +3864,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4170,7 +4157,7 @@ msgstr "Kategoria Opis"
msgid "Category Name"
msgstr "Nazwa kategorii"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr ""
@@ -4338,10 +4325,6 @@ msgstr "Czek"
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4365,10 +4348,6 @@ msgstr ""
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr ""
@@ -4415,6 +4394,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4504,10 +4487,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4849,7 +4828,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr "Kolumny / Pola"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr ""
@@ -5169,17 +5148,12 @@ msgstr ""
msgid "Confirm Request"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr ""
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "Szablon e-maila z potwierdzeniem"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr ""
@@ -5310,8 +5284,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5319,7 +5291,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5344,10 +5315,8 @@ msgstr "Treść (Markdown)"
msgid "Content Hash"
msgstr "Hash zawartości"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5453,6 +5422,10 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5508,7 +5481,7 @@ msgstr "Licznik"
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5639,11 +5612,6 @@ msgstr ""
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -5992,6 +5960,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6049,7 +6021,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr ""
@@ -6342,7 +6314,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6406,6 +6377,11 @@ msgstr ""
msgid "Day of Week"
msgstr "Dzień tygodnia"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6673,6 +6649,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6985,6 +6962,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7738,7 +7716,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8356,7 +8334,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8450,11 +8427,9 @@ msgstr "Stopka dla e-maila"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr ""
@@ -8527,18 +8502,11 @@ msgstr ""
msgid "Email Rule"
msgstr ""
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "Wiadomość wysłana"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8645,10 +8613,18 @@ msgstr "Wiadomości e-mail będą wysyłane z następnymi możliwymi działaniam
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9112,6 +9088,14 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9308,6 +9292,10 @@ msgstr ""
msgid "Expand All"
msgstr ""
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -9839,7 +9827,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9855,7 +9843,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -9907,6 +9895,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10072,6 +10064,14 @@ msgstr ""
msgid "Filter Values"
msgstr "Filtruj wartości"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10315,10 +10315,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10735,10 +10731,8 @@ msgid "Friday"
msgstr ""
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr ""
@@ -10819,10 +10813,14 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr ""
@@ -11304,6 +11302,10 @@ msgstr "Grupuj według typu"
msgid "Group By field is required to create a dashboard chart"
msgstr ""
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr ""
@@ -11352,7 +11354,6 @@ msgstr "GG: mm: ss"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11366,7 +11367,6 @@ msgstr "GG: mm: ss"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11875,6 +11875,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr "Limit stawki godzinowej za generowanie linków do resetowania hasła"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr ""
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12640,11 +12645,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12796,11 +12801,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12950,7 +12955,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr ""
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr ""
@@ -12958,7 +12963,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -12970,6 +12975,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13034,7 +13044,7 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13078,10 +13088,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13094,10 +13132,26 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13106,11 +13160,26 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13132,10 +13201,22 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr ""
@@ -13577,11 +13658,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14293,6 +14374,10 @@ msgstr ""
msgid "Limit"
msgstr ""
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14556,6 +14641,7 @@ msgid "Load Balancing"
msgstr "Równoważenie obciążenia"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15074,11 +15160,9 @@ msgstr ""
msgid "Mark as Unread"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15267,7 +15351,6 @@ msgstr ""
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15280,7 +15363,6 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15295,16 +15377,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "Wiadomość (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "Wiadomość (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15428,7 +15500,7 @@ msgstr ""
msgid "Method"
msgstr "Metoda"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15478,6 +15550,11 @@ msgstr "Minimalny Wynik Hasła"
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15873,7 +15950,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr ""
@@ -16061,6 +16138,10 @@ msgstr ""
msgid "Negative Value"
msgstr ""
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr ""
@@ -16143,7 +16224,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr ""
@@ -16287,48 +16368,13 @@ msgstr ""
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr ""
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr ""
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16590,7 +16636,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16618,10 +16664,6 @@ msgstr ""
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr ""
@@ -16658,7 +16700,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr ""
@@ -16678,7 +16720,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16737,7 +16779,7 @@ msgstr "Nie rzędów (max 500)"
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16865,7 +16907,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16891,7 +16933,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16900,7 +16942,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -16928,7 +16970,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr ""
@@ -16961,7 +17002,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17395,6 +17436,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr ""
@@ -17568,7 +17613,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17740,7 +17785,7 @@ msgstr "Otwarty"
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr ""
@@ -17839,6 +17884,10 @@ msgstr ""
msgid "Order"
msgstr "Zamówienie"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18234,7 +18283,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18356,10 +18405,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr ""
@@ -18505,7 +18550,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr ""
@@ -18657,7 +18702,7 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -18930,10 +18975,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr ""
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr ""
@@ -18966,7 +19007,7 @@ msgstr ""
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -18982,7 +19023,7 @@ msgstr ""
msgid "Please select a valid csv file with data"
msgstr ""
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr ""
@@ -19060,7 +19101,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19097,10 +19138,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr ""
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19194,6 +19231,10 @@ msgstr ""
msgid "Posts filed under {0}"
msgstr ""
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19253,7 +19294,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19282,8 +19323,6 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19671,7 +19710,7 @@ msgstr ""
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr ""
@@ -19766,14 +19805,7 @@ msgstr ""
msgid "Publish"
msgstr ""
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19781,7 +19813,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19956,7 +19987,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -20002,7 +20033,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr ""
@@ -20025,19 +20055,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20238,7 +20260,7 @@ msgstr "Odczytany przez odbiorcę"
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21105,7 +21127,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr ""
@@ -21126,7 +21148,7 @@ msgstr ""
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr ""
@@ -21459,10 +21481,8 @@ msgstr ""
msgid "Revoked"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21673,7 +21693,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21687,7 +21706,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21805,7 +21823,7 @@ msgstr "Reguła"
msgid "Rule Conditions"
msgstr "Warunki reguł"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -21994,11 +22012,11 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22090,32 +22108,17 @@ msgstr ""
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr ""
@@ -22149,17 +22152,6 @@ msgstr ""
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "Zaplanowane do wysłania"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr ""
@@ -22371,6 +22363,11 @@ msgstr ""
msgid "Searching ..."
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22760,9 +22757,7 @@ msgstr ""
msgid "Self approval is not allowed"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr ""
@@ -22793,11 +22788,6 @@ msgstr "Wyślij alarm na"
msgid "Send Email Alert"
msgstr "Wyślij powiadomienie e-mailem"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22855,38 +22845,16 @@ msgstr ""
msgid "Send System Notification"
msgstr "Wyślij powiadomienie systemowe"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "Wyślij do wszystkich przypisanych"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "Wyślij link Wyrejestrowanie"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "Wyślij e-mail powitalny"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22934,10 +22902,6 @@ msgstr ""
msgid "Send me a copy"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22953,19 +22917,15 @@ msgstr "Wyślij wiadomość do maila wypisz"
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr ""
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr ""
@@ -22982,9 +22942,7 @@ msgid "Sender Field should have Email in options"
msgstr ""
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -23004,18 +22962,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23023,8 +22972,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr ""
@@ -23094,7 +23041,7 @@ msgstr ""
msgid "Server Action"
msgstr "Działanie serwera"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23113,7 +23060,7 @@ msgstr "IP serwera"
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23152,15 +23099,15 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr ""
@@ -23390,7 +23337,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24473,7 +24420,6 @@ msgstr "Statystyki Interwał czasowy"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24498,7 +24444,6 @@ msgstr "Statystyki Interwał czasowy"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24639,8 +24584,6 @@ msgstr "Subdomena"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24649,7 +24592,6 @@ msgstr "Subdomena"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25020,7 +24962,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25327,7 +25269,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25454,10 +25396,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr ""
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25523,10 +25461,6 @@ msgstr ""
msgid "Thank you for your feedback!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr ""
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25715,7 +25649,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25727,7 +25661,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25880,7 +25814,7 @@ msgstr "Uwierzytelnianie przy pomocy trzeciej strony"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr ""
@@ -25904,7 +25838,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr ""
@@ -26064,14 +25998,6 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26184,7 +26110,6 @@ msgstr ""
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26410,10 +26335,8 @@ msgid "Title of the page"
msgstr ""
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr ""
@@ -26690,7 +26613,7 @@ msgstr ""
msgid "Topic"
msgstr "Temat"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26718,16 +26641,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "Wszystkich zapisani"
@@ -26736,11 +26651,6 @@ msgstr "Wszystkich zapisani"
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27137,23 +27047,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "Adres URL, do którego należy przejść po kliknięciu obrazu pokazu slajdów"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27203,7 +27107,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr "Stan niepodpisania"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27219,6 +27123,10 @@ msgstr ""
msgid "Undo last action"
msgstr ""
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27251,7 +27159,7 @@ msgstr ""
msgid "Unknown Column: {0}"
msgstr ""
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27284,7 +27192,7 @@ msgstr "Niewykształcony"
msgid "Unread Notification Sent"
msgstr "Nieprzeczytane Powiadomienie Wysłano"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27298,7 +27206,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr ""
@@ -27322,6 +27230,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr ""
@@ -27444,7 +27357,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr ""
@@ -28179,7 +28092,7 @@ msgstr ""
msgid "Value {0} missing for {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr ""
@@ -28604,7 +28517,6 @@ msgstr "Adres URL webhooka"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28612,9 +28524,7 @@ msgid "Website"
msgstr ""
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr ""
@@ -29050,7 +28960,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29273,11 +29183,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29300,7 +29210,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29328,7 +29238,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29423,7 +29333,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29500,11 +29410,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29512,7 +29426,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr ""
@@ -29520,11 +29434,11 @@ msgstr ""
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr ""
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr ""
@@ -29617,7 +29531,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29783,7 +29697,7 @@ msgstr "Twoje imię i nazwisko i adres organizacji w stopce e-mail."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29795,7 +29709,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr ""
@@ -29842,7 +29756,7 @@ msgstr "po"
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -29899,7 +29813,7 @@ msgstr ""
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30014,7 +29928,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30066,7 +29980,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30100,7 +30014,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30140,7 +30054,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30330,7 +30244,7 @@ msgstr "odpowiedź"
msgid "restored {0} as {1}"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30665,7 +30579,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr ""
@@ -30771,6 +30685,10 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30791,10 +30709,6 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr ""
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -30865,6 +30779,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -30886,7 +30804,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -30894,11 +30812,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -30906,11 +30824,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -30998,23 +30916,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -31026,7 +30944,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31055,16 +30973,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr ""
@@ -31101,11 +31015,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr ""
@@ -31217,7 +31131,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
@@ -31370,11 +31284,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31396,7 +31310,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr ""
diff --git a/frappe/locale/pt.po b/frappe/locale/pt.po
index f4904c1329..67022ecf23 100644
--- a/frappe/locale/pt.po
+++ b/frappe/locale/pt.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Portuguese\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -850,7 +850,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr ""
@@ -1489,6 +1489,14 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1529,7 +1537,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1974,7 +1981,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2092,7 +2099,7 @@ msgstr ""
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr ""
@@ -2306,10 +2313,6 @@ msgstr ""
msgid "Are you sure you want to save this document?"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr ""
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2563,9 +2566,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr ""
@@ -2592,10 +2593,7 @@ msgid "Attachment Removed"
msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2613,11 +2611,6 @@ msgstr ""
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3044,7 +3037,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr ""
@@ -3772,9 +3765,7 @@ msgstr ""
msgid "Camera"
msgstr ""
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3860,10 +3851,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4157,7 +4144,7 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr ""
@@ -4325,10 +4312,6 @@ msgstr ""
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4352,10 +4335,6 @@ msgstr ""
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr ""
@@ -4402,6 +4381,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4491,10 +4474,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4836,7 +4815,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr ""
@@ -5156,17 +5135,12 @@ msgstr ""
msgid "Confirm Request"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr ""
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr ""
@@ -5297,8 +5271,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5306,7 +5278,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5331,10 +5302,8 @@ msgstr ""
msgid "Content Hash"
msgstr ""
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5440,6 +5409,10 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5495,7 +5468,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5626,11 +5599,6 @@ msgstr ""
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -5979,6 +5947,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6036,7 +6008,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr ""
@@ -6329,7 +6301,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6393,6 +6364,11 @@ msgstr ""
msgid "Day of Week"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6660,6 +6636,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6972,6 +6949,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7725,7 +7703,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8343,7 +8321,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8437,11 +8414,9 @@ msgstr ""
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr ""
@@ -8514,18 +8489,11 @@ msgstr ""
msgid "Email Rule"
msgstr ""
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr ""
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8632,10 +8600,18 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9099,6 +9075,14 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9295,6 +9279,10 @@ msgstr ""
msgid "Expand All"
msgstr ""
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -9826,7 +9814,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9842,7 +9830,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -9894,6 +9882,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10059,6 +10051,14 @@ msgstr ""
msgid "Filter Values"
msgstr ""
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10302,10 +10302,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10722,10 +10718,8 @@ msgid "Friday"
msgstr ""
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr ""
@@ -10806,10 +10800,14 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr ""
@@ -11291,6 +11289,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr ""
@@ -11339,7 +11341,6 @@ msgstr ""
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11353,7 +11354,6 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11862,6 +11862,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr ""
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12627,11 +12632,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12783,11 +12788,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12937,7 +12942,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr ""
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr ""
@@ -12945,7 +12950,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -12957,6 +12962,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13021,7 +13031,7 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13065,10 +13075,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13081,10 +13119,26 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13093,11 +13147,26 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13119,10 +13188,22 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr ""
@@ -13564,11 +13645,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14280,6 +14361,10 @@ msgstr ""
msgid "Limit"
msgstr ""
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14543,6 +14628,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15061,11 +15147,9 @@ msgstr ""
msgid "Mark as Unread"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15254,7 +15338,6 @@ msgstr ""
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15267,7 +15350,6 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15282,16 +15364,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr ""
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr ""
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15415,7 +15487,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15465,6 +15537,11 @@ msgstr ""
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15860,7 +15937,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr ""
@@ -16048,6 +16125,10 @@ msgstr ""
msgid "Negative Value"
msgstr ""
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr ""
@@ -16130,7 +16211,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr ""
@@ -16274,48 +16355,13 @@ msgstr ""
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr ""
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr ""
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16577,7 +16623,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16605,10 +16651,6 @@ msgstr ""
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr ""
@@ -16645,7 +16687,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr ""
@@ -16665,7 +16707,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16724,7 +16766,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16852,7 +16894,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16878,7 +16920,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16887,7 +16929,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -16915,7 +16957,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr ""
@@ -16948,7 +16989,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17382,6 +17423,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr ""
@@ -17555,7 +17600,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17727,7 +17772,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr ""
@@ -17826,6 +17871,10 @@ msgstr ""
msgid "Order"
msgstr ""
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18221,7 +18270,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18343,10 +18392,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr ""
@@ -18492,7 +18537,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr ""
@@ -18644,7 +18689,7 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -18917,10 +18962,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr ""
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr ""
@@ -18953,7 +18994,7 @@ msgstr ""
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -18969,7 +19010,7 @@ msgstr ""
msgid "Please select a valid csv file with data"
msgstr ""
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr ""
@@ -19047,7 +19088,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19084,10 +19125,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr ""
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19181,6 +19218,10 @@ msgstr ""
msgid "Posts filed under {0}"
msgstr ""
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19240,7 +19281,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19269,8 +19310,6 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19658,7 +19697,7 @@ msgstr ""
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr ""
@@ -19753,14 +19792,7 @@ msgstr ""
msgid "Publish"
msgstr ""
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19768,7 +19800,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19943,7 +19974,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -19989,7 +20020,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr ""
@@ -20012,19 +20042,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20225,7 +20247,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21092,7 +21114,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr ""
@@ -21113,7 +21135,7 @@ msgstr ""
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr ""
@@ -21446,10 +21468,8 @@ msgstr ""
msgid "Revoked"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21660,7 +21680,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21674,7 +21693,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21792,7 +21810,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -21981,11 +21999,11 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22077,32 +22095,17 @@ msgstr ""
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr ""
@@ -22136,17 +22139,6 @@ msgstr ""
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr ""
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr ""
@@ -22358,6 +22350,11 @@ msgstr ""
msgid "Searching ..."
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22747,9 +22744,7 @@ msgstr ""
msgid "Self approval is not allowed"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr ""
@@ -22780,11 +22775,6 @@ msgstr ""
msgid "Send Email Alert"
msgstr ""
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22842,38 +22832,16 @@ msgstr ""
msgid "Send System Notification"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr ""
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr ""
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22921,10 +22889,6 @@ msgstr ""
msgid "Send me a copy"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22940,19 +22904,15 @@ msgstr ""
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr ""
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr ""
@@ -22969,9 +22929,7 @@ msgid "Sender Field should have Email in options"
msgstr ""
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -22991,18 +22949,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23010,8 +22959,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr ""
@@ -23081,7 +23028,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23100,7 +23047,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23139,15 +23086,15 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr ""
@@ -23377,7 +23324,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24460,7 +24407,6 @@ msgstr ""
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24485,7 +24431,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24626,8 +24571,6 @@ msgstr ""
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24636,7 +24579,6 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25007,7 +24949,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25314,7 +25256,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25441,10 +25383,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr ""
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25510,10 +25448,6 @@ msgstr ""
msgid "Thank you for your feedback!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr ""
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25702,7 +25636,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25714,7 +25648,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25867,7 +25801,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr ""
@@ -25891,7 +25825,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr ""
@@ -26051,14 +25985,6 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26171,7 +26097,6 @@ msgstr ""
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26397,10 +26322,8 @@ msgid "Title of the page"
msgstr ""
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr ""
@@ -26677,7 +26600,7 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26705,16 +26628,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr ""
@@ -26723,11 +26638,6 @@ msgstr ""
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27124,23 +27034,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27190,7 +27094,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27206,6 +27110,10 @@ msgstr ""
msgid "Undo last action"
msgstr ""
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27238,7 +27146,7 @@ msgstr ""
msgid "Unknown Column: {0}"
msgstr ""
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27271,7 +27179,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27285,7 +27193,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr ""
@@ -27309,6 +27217,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr ""
@@ -27431,7 +27344,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr ""
@@ -28166,7 +28079,7 @@ msgstr ""
msgid "Value {0} missing for {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr ""
@@ -28591,7 +28504,6 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28599,9 +28511,7 @@ msgid "Website"
msgstr ""
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr ""
@@ -29037,7 +28947,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29260,11 +29170,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29287,7 +29197,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29315,7 +29225,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29410,7 +29320,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29487,11 +29397,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29499,7 +29413,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr ""
@@ -29507,11 +29421,11 @@ msgstr ""
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr ""
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr ""
@@ -29604,7 +29518,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29770,7 +29684,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29782,7 +29696,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr ""
@@ -29829,7 +29743,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -29886,7 +29800,7 @@ msgstr ""
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30001,7 +29915,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30053,7 +29967,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30087,7 +30001,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30127,7 +30041,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30317,7 +30231,7 @@ msgstr ""
msgid "restored {0} as {1}"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30652,7 +30566,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} e {1}"
@@ -30758,6 +30672,10 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30778,10 +30696,6 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr ""
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -30852,6 +30766,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr "{0} é obrigatório"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -30873,7 +30791,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -30881,11 +30799,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} não é um número de telefone válido"
@@ -30893,11 +30811,11 @@ msgstr "{0} não é um número de telefone válido"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} não é um estado válido do fluxo de trabalho. Atualize o seu fluxo de trabalho e tente novamente."
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -30985,23 +30903,23 @@ msgstr "há {0} minutos"
msgid "{0} months ago"
msgstr "há {0} meses"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0} deve ser posterior a {1}"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} deve ser um dos {1}"
@@ -31013,7 +30931,7 @@ msgstr "{0} deve ser definido primeiro"
msgid "{0} must be unique"
msgstr "{0} deve ser único"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31042,16 +30960,12 @@ msgstr "{0} de {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} ou {1}"
@@ -31088,11 +31002,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0} guardado com sucesso"
@@ -31204,7 +31118,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} não foi encontrado"
@@ -31357,11 +31271,11 @@ msgstr ""
msgid "{} Complete"
msgstr "{} Concluído"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31383,7 +31297,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr ""
diff --git a/frappe/locale/pt_BR.po b/frappe/locale/pt_BR.po
index b94411f493..ed3059a376 100644
--- a/frappe/locale/pt_BR.po
+++ b/frappe/locale/pt_BR.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Portuguese, Brazilian\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -850,7 +850,7 @@ msgstr "Ação / Rota"
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr ""
@@ -1489,6 +1489,14 @@ msgstr "Alerta"
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1529,7 +1537,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1974,7 +1981,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2092,7 +2099,7 @@ msgstr ""
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr ""
@@ -2306,10 +2313,6 @@ msgstr ""
msgid "Are you sure you want to save this document?"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr ""
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2563,9 +2566,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "Anexo"
@@ -2592,10 +2593,7 @@ msgid "Attachment Removed"
msgstr "Anexo Removido"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2613,11 +2611,6 @@ msgstr ""
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3044,7 +3037,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr ""
@@ -3772,9 +3765,7 @@ msgstr "Título de retorno"
msgid "Camera"
msgstr ""
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3860,10 +3851,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4157,7 +4144,7 @@ msgstr "Descrição da Categoria"
msgid "Category Name"
msgstr "Nome da Categoria"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr ""
@@ -4325,10 +4312,6 @@ msgstr "Verifica"
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4352,10 +4335,6 @@ msgstr "Marque esta opção se você deseja forçar o usuário a selecionar uma
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr ""
@@ -4402,6 +4381,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4491,10 +4474,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4836,7 +4815,7 @@ msgstr "Colunas"
msgid "Columns / Fields"
msgstr "Colunas / Campos"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr ""
@@ -5156,17 +5135,12 @@ msgstr ""
msgid "Confirm Request"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr ""
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr ""
@@ -5297,8 +5271,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5306,7 +5278,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5331,10 +5302,8 @@ msgstr "Conteúdo (Markdown)"
msgid "Content Hash"
msgstr ""
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5440,6 +5409,10 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5495,7 +5468,7 @@ msgstr "Contador"
msgid "Country"
msgstr "País"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5626,11 +5599,6 @@ msgstr ""
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -5979,6 +5947,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6036,7 +6008,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr ""
@@ -6329,7 +6301,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6393,6 +6364,11 @@ msgstr ""
msgid "Day of Week"
msgstr "Dia da Semana"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6660,6 +6636,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6972,6 +6949,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7725,7 +7703,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8343,7 +8321,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8437,11 +8414,9 @@ msgstr ""
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr ""
@@ -8514,18 +8489,11 @@ msgstr ""
msgid "Email Rule"
msgstr ""
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr ""
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8632,10 +8600,18 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9099,6 +9075,14 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9295,6 +9279,10 @@ msgstr ""
msgid "Expand All"
msgstr "Expandir Todos"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -9826,7 +9814,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9842,7 +9830,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -9894,6 +9882,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10059,6 +10051,14 @@ msgstr ""
msgid "Filter Values"
msgstr "Valores de filtro"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10302,10 +10302,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10722,10 +10718,8 @@ msgid "Friday"
msgstr ""
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "De"
@@ -10806,10 +10800,14 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr ""
@@ -11291,6 +11289,10 @@ msgstr "Agrupar por tipo"
msgid "Group By field is required to create a dashboard chart"
msgstr ""
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "Grupo de Nós"
@@ -11339,7 +11341,6 @@ msgstr ""
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11353,7 +11354,6 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11862,6 +11862,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr "Limite de taxa por hora para gerar links de redefinição de senha"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "Horas"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12627,11 +12632,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12783,11 +12788,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12937,7 +12942,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr "Credenciais Inválidas"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr ""
@@ -12945,7 +12950,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -12957,6 +12962,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13021,7 +13031,7 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13065,10 +13075,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13081,10 +13119,26 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13093,11 +13147,26 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13119,10 +13188,22 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr ""
@@ -13564,11 +13645,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14280,6 +14361,10 @@ msgstr "Gostos"
msgid "Limit"
msgstr "Limite"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14543,6 +14628,7 @@ msgid "Load Balancing"
msgstr "Balanceamento de carga"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15061,11 +15147,9 @@ msgstr ""
msgid "Mark as Unread"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15254,7 +15338,6 @@ msgstr ""
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15267,7 +15350,6 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15282,16 +15364,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "Mensagem (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "Mensagem (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15415,7 +15487,7 @@ msgstr ""
msgid "Method"
msgstr "Método"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15465,6 +15537,11 @@ msgstr ""
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15860,7 +15937,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr ""
@@ -16048,6 +16125,10 @@ msgstr ""
msgid "Negative Value"
msgstr ""
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr ""
@@ -16130,7 +16211,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr ""
@@ -16274,48 +16355,13 @@ msgstr ""
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr ""
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr ""
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16577,7 +16623,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16605,10 +16651,6 @@ msgstr ""
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr ""
@@ -16645,7 +16687,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "Nenhum dado para exportar"
@@ -16665,7 +16707,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16724,7 +16766,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16852,7 +16894,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16878,7 +16920,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16887,7 +16929,7 @@ msgstr ""
msgid "Not Permitted"
msgstr "Não Permitido"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -16915,7 +16957,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr ""
@@ -16948,7 +16989,7 @@ msgstr ""
msgid "Not active"
msgstr "Inativo"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17382,6 +17423,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr ""
@@ -17555,7 +17600,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17727,7 +17772,7 @@ msgstr "Inaugurado"
msgid "Operation"
msgstr "Operação"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr ""
@@ -17826,6 +17871,10 @@ msgstr ""
msgid "Order"
msgstr "Pedido"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18221,7 +18270,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18343,10 +18392,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr ""
@@ -18492,7 +18537,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr ""
@@ -18644,7 +18689,7 @@ msgstr "Telefone"
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -18917,10 +18962,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr ""
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr ""
@@ -18953,7 +18994,7 @@ msgstr ""
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -18969,7 +19010,7 @@ msgstr ""
msgid "Please select a valid csv file with data"
msgstr ""
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr ""
@@ -19047,7 +19088,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19084,10 +19125,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr ""
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19181,6 +19218,10 @@ msgstr ""
msgid "Posts filed under {0}"
msgstr ""
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19240,7 +19281,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19269,8 +19310,6 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19658,7 +19697,7 @@ msgstr ""
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "Projeto"
@@ -19753,14 +19792,7 @@ msgstr ""
msgid "Publish"
msgstr ""
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19768,7 +19800,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19943,7 +19974,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -19989,7 +20020,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr ""
@@ -20012,19 +20042,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20225,7 +20247,7 @@ msgstr "Lido por destinatário ativado"
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21092,7 +21114,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr ""
@@ -21113,7 +21135,7 @@ msgstr ""
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr ""
@@ -21446,10 +21468,8 @@ msgstr ""
msgid "Revoked"
msgstr "Revogado"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21660,7 +21680,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21674,7 +21693,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21792,7 +21810,7 @@ msgstr "Regra"
msgid "Rule Conditions"
msgstr "Condições da regra"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -21981,11 +21999,11 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22077,32 +22095,17 @@ msgstr ""
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr ""
@@ -22136,17 +22139,6 @@ msgstr ""
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "Programado para enviar"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr ""
@@ -22358,6 +22350,11 @@ msgstr ""
msgid "Searching ..."
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22747,9 +22744,7 @@ msgstr ""
msgid "Self approval is not allowed"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "Enviar"
@@ -22780,11 +22775,6 @@ msgstr "Enviar Alerta"
msgid "Send Email Alert"
msgstr ""
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22842,38 +22832,16 @@ msgstr ""
msgid "Send System Notification"
msgstr "Enviar Notificação do Sistema"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "Enviar para todos os cessionários"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "Enviar link para cancelar inscrição"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22921,10 +22889,6 @@ msgstr ""
msgid "Send me a copy"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22940,19 +22904,15 @@ msgstr ""
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr ""
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr ""
@@ -22969,9 +22929,7 @@ msgid "Sender Field should have Email in options"
msgstr ""
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -22991,18 +22949,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "Enviando"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23010,8 +22959,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr ""
@@ -23081,7 +23028,7 @@ msgstr ""
msgid "Server Action"
msgstr "Ação do Servidor"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23100,7 +23047,7 @@ msgstr "IP do servidor"
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23139,15 +23086,15 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr ""
@@ -23377,7 +23324,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24460,7 +24407,6 @@ msgstr "Intervalo de tempo das estatísticas"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24485,7 +24431,6 @@ msgstr "Intervalo de tempo das estatísticas"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24626,8 +24571,6 @@ msgstr "Subdomínio"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24636,7 +24579,6 @@ msgstr "Subdomínio"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25007,7 +24949,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25314,7 +25256,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25441,10 +25383,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr ""
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25510,10 +25448,6 @@ msgstr ""
msgid "Thank you for your feedback!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr ""
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25702,7 +25636,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25714,7 +25648,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25867,7 +25801,7 @@ msgstr "Autenticação de Terceiros"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr ""
@@ -25891,7 +25825,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr ""
@@ -26051,14 +25985,6 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26171,7 +26097,6 @@ msgstr ""
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26397,10 +26322,8 @@ msgid "Title of the page"
msgstr ""
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "Para"
@@ -26677,7 +26600,7 @@ msgstr ""
msgid "Topic"
msgstr "Tópico"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26705,16 +26628,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "Total de Assinantes"
@@ -26723,11 +26638,6 @@ msgstr "Total de Assinantes"
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27124,23 +27034,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27190,7 +27094,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr "Desatribuir condição"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27206,6 +27110,10 @@ msgstr ""
msgid "Undo last action"
msgstr ""
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27238,7 +27146,7 @@ msgstr "Desconhecido"
msgid "Unknown Column: {0}"
msgstr ""
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27271,7 +27179,7 @@ msgstr "Não lida"
msgid "Unread Notification Sent"
msgstr "Notificação de mensagem não lida enviada"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27285,7 +27193,7 @@ msgstr ""
msgid "Unshared"
msgstr "Não Compartilhado"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr ""
@@ -27309,6 +27217,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr ""
@@ -27431,7 +27344,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr ""
@@ -28166,7 +28079,7 @@ msgstr ""
msgid "Value {0} missing for {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr ""
@@ -28591,7 +28504,6 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28599,9 +28511,7 @@ msgid "Website"
msgstr "Site"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr ""
@@ -29037,7 +28947,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29260,11 +29170,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29287,7 +29197,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29315,7 +29225,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29410,7 +29320,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29487,11 +29397,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29499,7 +29413,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr ""
@@ -29507,11 +29421,11 @@ msgstr ""
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr ""
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr ""
@@ -29604,7 +29518,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29770,7 +29684,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29782,7 +29696,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr ""
@@ -29829,7 +29743,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "e"
@@ -29886,7 +29800,7 @@ msgstr ""
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30001,7 +29915,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30053,7 +29967,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30087,7 +30001,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30127,7 +30041,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30317,7 +30231,7 @@ msgstr "resposta"
msgid "restored {0} as {1}"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30652,7 +30566,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr ""
@@ -30758,6 +30672,10 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30778,10 +30696,6 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr ""
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -30852,6 +30766,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr "{0} é obrigatório"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -30873,7 +30791,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -30881,11 +30799,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -30893,11 +30811,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -30985,23 +30903,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -31013,7 +30931,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31042,16 +30960,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr ""
@@ -31088,11 +31002,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr ""
@@ -31204,7 +31118,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
@@ -31357,11 +31271,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31383,7 +31297,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr ""
diff --git a/frappe/locale/ru.po b/frappe/locale/ru.po
index dbf864041b..78d3c55d04 100644
--- a/frappe/locale/ru.po
+++ b/frappe/locale/ru.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Russian\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -850,7 +850,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr ""
@@ -1489,6 +1489,14 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1529,7 +1537,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1974,7 +1981,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2092,7 +2099,7 @@ msgstr ""
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr ""
@@ -2306,10 +2313,6 @@ msgstr ""
msgid "Are you sure you want to save this document?"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr ""
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2563,9 +2566,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr ""
@@ -2592,10 +2593,7 @@ msgid "Attachment Removed"
msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2613,11 +2611,6 @@ msgstr ""
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3044,7 +3037,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr ""
@@ -3772,9 +3765,7 @@ msgstr ""
msgid "Camera"
msgstr ""
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3860,10 +3851,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4157,7 +4144,7 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr ""
@@ -4325,10 +4312,6 @@ msgstr ""
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4352,10 +4335,6 @@ msgstr ""
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr ""
@@ -4402,6 +4381,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4491,10 +4474,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4836,7 +4815,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr ""
@@ -5156,17 +5135,12 @@ msgstr ""
msgid "Confirm Request"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr ""
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr ""
@@ -5297,8 +5271,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5306,7 +5278,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5331,10 +5302,8 @@ msgstr ""
msgid "Content Hash"
msgstr ""
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5440,6 +5409,10 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5495,7 +5468,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5626,11 +5599,6 @@ msgstr ""
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -5979,6 +5947,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6036,7 +6008,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr ""
@@ -6329,7 +6301,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6393,6 +6364,11 @@ msgstr ""
msgid "Day of Week"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6660,6 +6636,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6972,6 +6949,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7725,7 +7703,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8343,7 +8321,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8437,11 +8414,9 @@ msgstr ""
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr ""
@@ -8514,18 +8489,11 @@ msgstr ""
msgid "Email Rule"
msgstr ""
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr ""
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8632,10 +8600,18 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9099,6 +9075,14 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9295,6 +9279,10 @@ msgstr ""
msgid "Expand All"
msgstr ""
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -9826,7 +9814,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9842,7 +9830,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -9894,6 +9882,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10059,6 +10051,14 @@ msgstr ""
msgid "Filter Values"
msgstr ""
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10302,10 +10302,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10722,10 +10718,8 @@ msgid "Friday"
msgstr ""
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr ""
@@ -10806,10 +10800,14 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr ""
@@ -11291,6 +11289,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr ""
@@ -11339,7 +11341,6 @@ msgstr ""
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11353,7 +11354,6 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11862,6 +11862,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr ""
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12627,11 +12632,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12783,11 +12788,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12937,7 +12942,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr ""
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr ""
@@ -12945,7 +12950,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -12957,6 +12962,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13021,7 +13031,7 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13065,10 +13075,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13081,10 +13119,26 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13093,11 +13147,26 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13119,10 +13188,22 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr ""
@@ -13564,11 +13645,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14280,6 +14361,10 @@ msgstr ""
msgid "Limit"
msgstr ""
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14543,6 +14628,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15061,11 +15147,9 @@ msgstr ""
msgid "Mark as Unread"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15254,7 +15338,6 @@ msgstr ""
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15267,7 +15350,6 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15282,16 +15364,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr ""
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr ""
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15415,7 +15487,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15465,6 +15537,11 @@ msgstr ""
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15860,7 +15937,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr ""
@@ -16048,6 +16125,10 @@ msgstr ""
msgid "Negative Value"
msgstr ""
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr ""
@@ -16130,7 +16211,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr ""
@@ -16274,48 +16355,13 @@ msgstr ""
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr ""
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr ""
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16577,7 +16623,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16605,10 +16651,6 @@ msgstr ""
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr ""
@@ -16645,7 +16687,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr ""
@@ -16665,7 +16707,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16724,7 +16766,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16852,7 +16894,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16878,7 +16920,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16887,7 +16929,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -16915,7 +16957,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr ""
@@ -16948,7 +16989,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17382,6 +17423,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr ""
@@ -17555,7 +17600,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17727,7 +17772,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr ""
@@ -17826,6 +17871,10 @@ msgstr ""
msgid "Order"
msgstr ""
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18221,7 +18270,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18343,10 +18392,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr ""
@@ -18492,7 +18537,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr ""
@@ -18644,7 +18689,7 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -18917,10 +18962,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr ""
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr ""
@@ -18953,7 +18994,7 @@ msgstr ""
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -18969,7 +19010,7 @@ msgstr ""
msgid "Please select a valid csv file with data"
msgstr ""
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr ""
@@ -19047,7 +19088,7 @@ msgstr "Настройте учетную запись исходящей эле
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19084,10 +19125,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr ""
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19181,6 +19218,10 @@ msgstr ""
msgid "Posts filed under {0}"
msgstr ""
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19240,7 +19281,7 @@ msgstr "Подготовленный отчет Аналитика"
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19269,8 +19310,6 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19658,7 +19697,7 @@ msgstr ""
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr ""
@@ -19753,14 +19792,7 @@ msgstr ""
msgid "Publish"
msgstr ""
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19768,7 +19800,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19943,7 +19974,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -19989,7 +20020,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr ""
@@ -20012,19 +20042,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20225,7 +20247,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21092,7 +21114,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr ""
@@ -21113,7 +21135,7 @@ msgstr ""
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr ""
@@ -21446,10 +21468,8 @@ msgstr ""
msgid "Revoked"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21660,7 +21680,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21674,7 +21693,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21792,7 +21810,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -21981,11 +21999,11 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22077,32 +22095,17 @@ msgstr ""
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr ""
@@ -22136,17 +22139,6 @@ msgstr ""
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr ""
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr ""
@@ -22358,6 +22350,11 @@ msgstr ""
msgid "Searching ..."
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22747,9 +22744,7 @@ msgstr ""
msgid "Self approval is not allowed"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr ""
@@ -22780,11 +22775,6 @@ msgstr ""
msgid "Send Email Alert"
msgstr ""
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22842,38 +22832,16 @@ msgstr ""
msgid "Send System Notification"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr ""
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr ""
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22921,10 +22889,6 @@ msgstr ""
msgid "Send me a copy"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22940,19 +22904,15 @@ msgstr ""
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr ""
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr ""
@@ -22969,9 +22929,7 @@ msgid "Sender Field should have Email in options"
msgstr ""
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -22991,18 +22949,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23010,8 +22959,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr ""
@@ -23081,7 +23028,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23100,7 +23047,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23139,15 +23086,15 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr ""
@@ -23377,7 +23324,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24460,7 +24407,6 @@ msgstr ""
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24485,7 +24431,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24626,8 +24571,6 @@ msgstr ""
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24636,7 +24579,6 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25007,7 +24949,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25314,7 +25256,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25441,10 +25383,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr ""
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25510,10 +25448,6 @@ msgstr ""
msgid "Thank you for your feedback!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr ""
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25702,7 +25636,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25714,7 +25648,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25867,7 +25801,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr ""
@@ -25891,7 +25825,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr ""
@@ -26051,14 +25985,6 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26171,7 +26097,6 @@ msgstr ""
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26397,10 +26322,8 @@ msgid "Title of the page"
msgstr ""
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr ""
@@ -26677,7 +26600,7 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26705,16 +26628,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr ""
@@ -26723,11 +26638,6 @@ msgstr ""
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27124,23 +27034,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27190,7 +27094,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27206,6 +27110,10 @@ msgstr ""
msgid "Undo last action"
msgstr ""
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27238,7 +27146,7 @@ msgstr ""
msgid "Unknown Column: {0}"
msgstr ""
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27271,7 +27179,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27285,7 +27193,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr ""
@@ -27309,6 +27217,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr ""
@@ -27431,7 +27344,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr ""
@@ -28166,7 +28079,7 @@ msgstr ""
msgid "Value {0} missing for {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr ""
@@ -28591,7 +28504,6 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28599,9 +28511,7 @@ msgid "Website"
msgstr ""
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr ""
@@ -29037,7 +28947,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29260,11 +29170,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr "Вы не имеете права доступа к этому ресурсу"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29287,7 +29197,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29315,7 +29225,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29410,7 +29320,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29487,11 +29397,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29499,7 +29413,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr ""
@@ -29507,11 +29421,11 @@ msgstr ""
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr ""
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr ""
@@ -29604,7 +29518,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29770,7 +29684,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29782,7 +29696,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr ""
@@ -29829,7 +29743,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -29886,7 +29800,7 @@ msgstr ""
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30001,7 +29915,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30053,7 +29967,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30087,7 +30001,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30127,7 +30041,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30317,7 +30231,7 @@ msgstr ""
msgid "restored {0} as {1}"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30652,7 +30566,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr ""
@@ -30758,6 +30672,10 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30778,10 +30696,6 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr ""
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -30852,6 +30766,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -30873,7 +30791,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -30881,11 +30799,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -30893,11 +30811,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -30985,23 +30903,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -31013,7 +30931,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31042,16 +30960,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr ""
@@ -31088,11 +31002,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr ""
@@ -31204,7 +31118,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
@@ -31357,11 +31271,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31383,7 +31297,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr ""
diff --git a/frappe/locale/sr.po b/frappe/locale/sr.po
index b40aa9fd2e..79a5d923cf 100644
--- a/frappe/locale/sr.po
+++ b/frappe/locale/sr.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-23 16:41\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Serbian (Cyrillic)\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "'У приказу листе' није дозвољено за врст
msgid "'Recipients' not specified"
msgstr "'Примаоци' нису наведени"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "'{0}' није важећи URL"
@@ -1035,7 +1035,7 @@ msgstr "Радња / Путања"
msgid "Action Complete"
msgstr "Радња завршена"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "Радња неуспешна"
@@ -1674,6 +1674,14 @@ msgstr "Упозорење"
msgid "Alerts and Notifications"
msgstr "Упозорења и обавештења"
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1714,7 +1722,6 @@ msgstr "Поравнај вредности"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -2160,7 +2167,7 @@ msgstr "Измена није дозвољена"
msgid "Amendment naming rules updated."
msgstr "Правила именовања измена ажурирана."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr "Дошло је до грешке приликом постављања подразумеваних подешавања сесије"
@@ -2278,7 +2285,7 @@ msgstr "Назив апликације"
msgid "App not found for module: {0}"
msgstr "Апликација није пронађена за модул: {0}"
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "Апликација {0} није инсталирана"
@@ -2492,10 +2499,6 @@ msgstr "Да ли сте сигурни да желите да поништит
msgid "Are you sure you want to save this document?"
msgstr "Да ли сте сигурни да желите да сачувате овај документ?"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "Да ли сте сигурни да желите да пошаљете овај билтен сада?"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2749,9 +2752,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr "Приложено уз назив мора бити текст или број"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "Прилог"
@@ -2778,10 +2779,7 @@ msgid "Attachment Removed"
msgstr "Прилог уклоњен"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2799,11 +2797,6 @@ msgstr "Покушава се покретање QZ Tray..."
msgid "Attribution"
msgstr "Приписивање"
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr "Публика"
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3230,7 +3223,7 @@ msgstr "Слика позадине"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr "Позадински задаци"
@@ -3959,9 +3952,7 @@ msgstr "Callback наслов"
msgid "Camera"
msgstr "Камера"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -4047,10 +4038,6 @@ msgstr "Откажи све"
msgid "Cancel All Documents"
msgstr "Откажи све документе"
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr "Откажи заказивање"
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4344,7 +4331,7 @@ msgstr "Опис категорије"
msgid "Category Name"
msgstr "Назив категорије"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr "Цент"
@@ -4513,10 +4500,6 @@ msgstr "Означи"
msgid "Check Request URL"
msgstr "Провери URL захтева"
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr "Провери прекинуте линкове"
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr "Провери колоне за означавање, превуци да поставиш редослед."
@@ -4540,10 +4523,6 @@ msgstr "Означи ово уколико желиш да натераш кор
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr "Означите за приказ пуне нумеричке вредности (нпр. 1.234.567 уместо 1.2М)."
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr "Проверавање прекинутих линкова..."
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "Проверава се, тренутак"
@@ -4590,6 +4569,10 @@ msgstr "Зависна табела {0} за поље {1}"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Зависне табеле се приказују као табеле у другим DocType-овима"
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "Изабери постојећу картицу или креирај нову картицу"
@@ -4679,10 +4662,6 @@ msgstr "Кликните на прилагоди да додате свој пр
msgid "Click here"
msgstr "Кликните овде"
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "Кликните овде да верификујете"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "Кликните на фајл да га одаберете."
@@ -5024,7 +5003,7 @@ msgstr "Колоне"
msgid "Columns / Fields"
msgstr "Колоне / Поља"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "Колоне засноване на"
@@ -5346,17 +5325,12 @@ msgstr "Потврди лозинку"
msgid "Confirm Request"
msgstr "Потврди захтев"
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "Потврдите Ваш имејл"
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "Шаблон имејла за потврду"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "Потврђено"
@@ -5487,8 +5461,6 @@ msgstr "Садржи {0} исправки безбедности"
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5496,7 +5468,6 @@ msgstr "Садржи {0} исправки безбедности"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5521,10 +5492,8 @@ msgstr "Садржај (Markdown)"
msgid "Content Hash"
msgstr "Хеш садржај"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5630,6 +5599,10 @@ msgstr "Није било могуће пронаћи {0}"
msgid "Could not map column {0} to field {1}"
msgstr "Није било могуће мапирати колону {0} на поље {1}"
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr "Није било могуће покренути: "
@@ -5685,7 +5658,7 @@ msgstr "Бројач"
msgid "Country"
msgstr "Држава"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr "Шифра државе је неопходна"
@@ -5816,11 +5789,6 @@ msgstr "Креирај нови {0}"
msgid "Create a {0} Account"
msgstr "Креирај {0} налог"
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr "Креирај и пошаљи имејлове специфичној групи претплатника периодично."
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr "Креирај или уреди формат штампе"
@@ -6169,6 +6137,10 @@ msgstr "Прилагођени превод"
msgid "Custom field renamed to {0} successfully."
msgstr "Прилагођено поље је успешно преименовано у {0}."
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6226,7 +6198,7 @@ msgstr "Прилагоди контролну таблу"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "Прилагоди образац"
@@ -6519,7 +6491,6 @@ msgstr "Верзија базе података"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6583,6 +6554,11 @@ msgstr "Дан"
msgid "Day of Week"
msgstr "Дан у недељи"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6850,6 +6826,7 @@ msgstr "Кашњење"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -7162,6 +7139,7 @@ msgstr "Тема радне површине"
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7918,7 +7896,7 @@ msgid "Document Types and Permissions"
msgstr "Врсте и дозволе документа"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr "Документ је откључан"
@@ -8536,7 +8514,6 @@ msgstr "Избор елемента"
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8630,11 +8607,9 @@ msgstr "Адреса у подножју имејла"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "Имејл група"
@@ -8707,18 +8682,11 @@ msgstr "Ограничење поновних покушаја за имејл"
msgid "Email Rule"
msgstr "Имејл правило"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "Имејл послат"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr "Имејл послат у"
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8825,10 +8793,18 @@ msgstr "Имејлови ће бити послати са следећим мо
msgid "Embed code copied"
msgstr "Код за уградњу је копиран"
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr "Празна колона"
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9293,6 +9269,14 @@ msgstr "Грешка у обавештењу"
msgid "Error in print format on line {0}: {1}"
msgstr "Грешка у формату штампе на линији {0}: {1}"
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "Грешка при повезивању са имејл налогом {0}"
@@ -9489,6 +9473,10 @@ msgstr "Прошири"
msgid "Expand All"
msgstr "Прошири све"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr "Експериментално"
@@ -10020,7 +10008,7 @@ msgstr "Назив поља '{0}' је у конфликту са {1} назив
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Назив поља {0} мора постојати да би се омогућило аутоматско именовање"
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Назив поља је ограничен на 64 карактера ({0})"
@@ -10036,7 +10024,7 @@ msgstr "Назив поља које ће бити DocType за ово линк
msgid "Fieldname {0} appears multiple times"
msgstr "Назив поља {0} се појављује више пута"
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Назив поља {0} не може садржати специјалне карактере попут {1}"
@@ -10088,6 +10076,10 @@ msgstr "Поља `file_name` или `file_url` морају бити поста
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Поља морају бити листа или тупле када је опција аслист омогућена"
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10253,6 +10245,14 @@ msgstr "Филтер назива"
msgid "Filter Values"
msgstr "Филтер вредности"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr "Филтери..."
@@ -10496,10 +10496,6 @@ msgstr "Следећа поља имају недостајуће вреднос
msgid "Following fields have missing values:"
msgstr "Следећа поља имају недостајуће вредности:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr "Следећи линкови су покидани у садржају имејла: {0}"
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10917,10 +10913,8 @@ msgid "Friday"
msgstr "Петак"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "Од"
@@ -11001,10 +10995,14 @@ msgstr "Функција"
msgid "Function Based On"
msgstr "Функција заснована на"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr "Функција {0} није на листи дозвољених."
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Даље чворове је могуће креирати само у оквиру чворова врсте 'Група'"
@@ -11486,6 +11484,10 @@ msgstr "Врста Груписано по"
msgid "Group By field is required to create a dashboard chart"
msgstr "Поље Груписано по је неопходно за креирање графикона на контролној табли"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "Чвор групе"
@@ -11534,7 +11536,6 @@ msgstr "HH:mm:ss"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11548,7 +11549,6 @@ msgstr "HH:mm:ss"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -12057,6 +12057,11 @@ msgstr "Одржавање на сваких сат времена"
msgid "Hourly rate limit for generating password reset links"
msgstr "Ограничење по часу за генерисање линкова за ресетовање лозинке"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "Сата"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12822,11 +12827,11 @@ msgstr "Погрешно корисничко име или лозинка"
msgid "Incorrect Verification code"
msgstr "Погрешан верификациони код"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr "Погрешна вредност у реду {0}:"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr "Погрешна вредност:"
@@ -12978,11 +12983,11 @@ msgstr "Упутства"
msgid "Instructions Emailed"
msgstr "Упутства послата имејлом"
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr "Недовољан ниво овлашћена за {0}"
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "Недовољна овлашћена за {0}"
@@ -13132,7 +13137,7 @@ msgstr "Неважећи услов: {}"
msgid "Invalid Credentials"
msgstr "Неважећи креденцијали"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "Неважећи датум"
@@ -13140,7 +13145,7 @@ msgstr "Неважећи датум"
msgid "Invalid DocType"
msgstr "Неважећи DocType"
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr "Неважећи DocType: {0}"
@@ -13152,6 +13157,11 @@ msgstr "Неважећи назив поља"
msgid "Invalid File URL"
msgstr "Неважећи URL фајла"
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr "Неважећи формат филтера за поље {0} врсте {1}. Покушајте да користите иконицу филтера на пољу како бисте га исправно подесили"
@@ -13216,7 +13226,7 @@ msgstr "Неважећи параметри."
msgid "Invalid Password"
msgstr "Неважећа лозинка"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr "Неважећи број телефона"
@@ -13260,10 +13270,38 @@ msgstr "Неважећа тајна за Webhook"
msgid "Invalid aggregate function"
msgstr "Неважећа агрегатна функција"
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "Неважећа колона"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "Неважећи статус документа"
@@ -13276,10 +13314,26 @@ msgstr "Неважећи израз постављен у филтеру {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Неважећи израз постављен у филтеру {0} ({1})"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "Неважећи назив поља {0}"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Неважећи назив поља '{0}' у аутоматском именовању"
@@ -13288,11 +13342,26 @@ msgstr "Неважећи назив поља '{0}' у аутоматском и
msgid "Invalid file path: {0}"
msgstr "Неважећа путања фајла: {0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "Неважећи филтер: {0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13314,10 +13383,22 @@ msgstr "Неважећи или оштећен садржај за увоз"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Неважеће преусмерење регеx функције у реду #{}: {}"
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr "Неважећи аргументи захтева"
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "Неважећи фајл шаблона за увоз"
@@ -13759,11 +13840,11 @@ msgstr "Колона Канбан табле"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "Назив Канбан табле"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "Канбан подешавање"
@@ -14475,6 +14556,10 @@ msgstr "Лајковања"
msgid "Limit"
msgstr "Лимит"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14738,6 +14823,7 @@ msgid "Load Balancing"
msgstr "Балансирање оптерећења"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15256,11 +15342,9 @@ msgstr "Означи као нежељено"
msgid "Mark as Unread"
msgstr "Означи као непрочитано"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15449,7 +15533,6 @@ msgstr "Спајање је могуће само између групе и г
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15462,7 +15545,6 @@ msgstr "Спајање је могуће само између групе и г
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15477,16 +15559,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Порука"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "Порука (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "Порука (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15610,7 +15682,7 @@ msgstr "Мета наслов за SEO"
msgid "Method"
msgstr "Метода"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr "Метода није дозвољена"
@@ -15660,6 +15732,11 @@ msgstr "Минимална оцена јачине лозинке"
msgid "Minor"
msgstr "Мањи"
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -16055,7 +16132,7 @@ msgstr "Мора бити затворен у '()' и укључивати '{0}'
msgid "Must be of type \"Attach Image\""
msgstr "Мора бити врсте \"Приложи слику\""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "Мора имати дозволу за извештај да би приступио овом извештају."
@@ -16245,6 +16322,10 @@ msgstr "Неопходна је улога менаџера радног про
msgid "Negative Value"
msgstr "Негативна вредност"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "Грешка у угњежденом сету. Молимо Вас да контактирате администратора."
@@ -16327,7 +16408,7 @@ msgstr "Нови догађај"
msgid "New Folder"
msgstr "Нова датотека"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "Нова Канбан табла"
@@ -16471,48 +16552,13 @@ msgstr "Нови {} верзије за следеће апликација су
msgid "Newly created user {0} has no roles enabled."
msgstr "Новокреирани корисник {0} нема омогућене улоге."
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "Билтен"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr "Прилог билтена"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "Имејл група за билтен"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "Менаџер билтена"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "Билтен је већ послат"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr "Билтен мора бити објављен да би се послао линк за преглед у имејлу"
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "Билтен треба да има барем једног примаоца"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "Билтени"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16774,7 +16820,7 @@ msgstr "Ниједан резултат није пронађен"
msgid "No Roles Specified"
msgstr "Улоге нису наведене"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr "Није пронађено поље за избор"
@@ -16802,10 +16848,6 @@ msgstr "Нема упозорења за данас"
msgid "No automatic optimization suggestions available."
msgstr "Нема доступних аутоматских предлога за оптимизацију."
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr "Нису пронађени неисправни линкови у садржају имејла"
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "Нема промена у документу"
@@ -16842,7 +16884,7 @@ msgstr "Ниједан контакт није још увек додат."
msgid "No contacts linked to document"
msgstr "Ниједан контакт није повезан са документом"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "Нема података за извоз"
@@ -16862,7 +16904,7 @@ msgstr "Ниједан имејл налог није повезан са кор
msgid "No failed logs"
msgstr "Нема неуспешних евиденција"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "Није пронађено поље које може бити коришћено као Канбан колона. Користите прилагоди образац да бисте додали прилагођено поље врсте \"Избор\"."
@@ -16921,7 +16963,7 @@ msgstr "Број редова (максимално 500)"
msgid "No of Sent SMS"
msgstr "Број послатих SMS порука"
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Не постоји дозвола за {0}"
@@ -17049,7 +17091,7 @@ msgstr "Нису потомци од"
msgid "Not Equals"
msgstr "Није једнако"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "Није пронађено"
@@ -17075,7 +17117,7 @@ msgstr "Није повезани ни са једним записом"
msgid "Not Nullable"
msgstr "Не може бити празно"
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17084,7 +17126,7 @@ msgstr "Не може бити празно"
msgid "Not Permitted"
msgstr "Није дозвољено"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr "Није дозвољено за читање {0}"
@@ -17112,7 +17154,6 @@ msgstr "Није виђено"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "Није послато"
@@ -17145,7 +17186,7 @@ msgstr "Неважећи корисник"
msgid "Not active"
msgstr "Није активно"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "Није дозвољено за {0}: {1}"
@@ -17579,6 +17620,10 @@ msgstr "Помак X"
msgid "Offset Y"
msgstr "Помак Y"
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "Стара лозинка"
@@ -17752,7 +17797,7 @@ msgstr "Искључиво менаџер радног простора може
msgid "Only allowed to export customizations in developer mode"
msgstr "Извоз прилагођавања је дозвољен само у развојном режиму"
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr "Искључиво нацрти докумената могу бити одбачени"
@@ -17924,7 +17969,7 @@ msgstr "Отворено"
msgid "Operation"
msgstr "Операција"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "Оператор мора бити један од следећих {0}"
@@ -18023,6 +18068,10 @@ msgstr "Наранџаста"
msgid "Order"
msgstr "Редослед"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18418,7 +18467,7 @@ msgstr "Матични означава назив документа у кој
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr "Груписање матично-ка-зависном или зависно-ка-матичном није дозвољено."
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr "Матично поље није наведено у {0}: {1}"
@@ -18540,10 +18589,6 @@ msgstr "Лозинке се не подударају"
msgid "Passwords do not match!"
msgstr "Лозинке се не подударају!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr "Прошли датуми нису дозвољени за заказивање."
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "Налепи"
@@ -18689,7 +18734,7 @@ msgstr "Трајно поднети {0}?"
msgid "Permanently delete {0}?"
msgstr "Трајно обрисати {0}?"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "Грешка у дозволама"
@@ -18841,7 +18886,7 @@ msgstr "Телефон"
msgid "Phone No."
msgstr "Телефон бр."
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Број телефона {0} постављен у пољу {1} није валидан."
@@ -19114,10 +19159,6 @@ msgstr "Молимо Вас да уклоните мапирање штампа
msgid "Please save before attaching."
msgstr "Молимо Вас да сачувате пре него што приложите."
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "Молимо Вас да сачувате билтен пре слања"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "Молимо Вас да сачувате документ пре додељивања"
@@ -19150,7 +19191,7 @@ msgstr "Молимо Вас да одаберете минималну оцен
msgid "Please select X and Y fields"
msgstr "Молимо Вас да изаберете X и Y поља"
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr "Молимо Вас да изаберете шифру државе за поље {1}."
@@ -19166,7 +19207,7 @@ msgstr "Молим Вас да изаберете фајл или URL"
msgid "Please select a valid csv file with data"
msgstr "Молимо Вас да изаберете важећи цсв фајл са подацима"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "Молимо Вас да изаберете важећи филтер да датум"
@@ -19244,7 +19285,7 @@ msgstr "Молимо Вас да поставите подразумевани
msgid "Please specify"
msgstr "Молимо Вас да наведете"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr "Молимо Вас да наведете важећи матични DocType за {0}"
@@ -19281,10 +19322,6 @@ msgstr "Молимо Вас да ажурирате {} пре него што н
msgid "Please use a valid LDAP search filter"
msgstr "Молимо Вас да користите важећи LDAP филтер за претрагу"
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "Молимо Вас да верификујете своју имејл адресу"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "Молимо Вас да посетите https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key за више информација."
@@ -19378,6 +19415,10 @@ msgstr "Објаве корисника {0}"
msgid "Posts filed under {0}"
msgstr "Објаве у категорији {0}"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19437,7 +19478,7 @@ msgstr "Аналитика припремљених извештаја"
msgid "Prepared Report User"
msgstr "Корисник припремљеног извештаја"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr "Приказ припремљеног извештаја није успео"
@@ -19466,8 +19507,6 @@ msgstr "Притисните Enter да сачувате"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19855,7 +19894,7 @@ msgstr "Профил"
msgid "Progress"
msgstr "Напредак"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "Пројекат"
@@ -19950,14 +19989,7 @@ msgstr "Јавни фајлови (МБ)"
msgid "Publish"
msgstr "Објави"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr "Објави као веб-страницу"
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19965,7 +19997,6 @@ msgstr "Објави као веб-страницу"
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -20140,7 +20171,7 @@ msgstr "Извештај по упиту"
msgid "Query analysis complete. Check suggested indexes."
msgstr "Анализа упита завршена. Погледајте предложене индексе."
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr "Упит мора бити врсте SELECT или read-only WITH type."
@@ -20186,7 +20217,6 @@ msgstr "Ред(ови)"
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "У реду"
@@ -20209,19 +20239,11 @@ msgstr "У реду за подношење. Можете пратити нап
msgid "Queued for backup. You will receive an email with the download link"
msgstr "У реду за резервну копију. Добићете имејл са линком за преузимање"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr "{0} имејлова у реду"
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr "Редови"
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr "Имејлови се стављају у ред..."
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr "{0} се ставља у ред за подношење"
@@ -20422,7 +20444,7 @@ msgstr "Прочитао прималац на"
msgid "Read mode"
msgstr "Режим читања"
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr "Прочитајте документацију за више информација"
@@ -21289,7 +21311,7 @@ msgstr "Достигнуто је ограничење извештаја"
msgid "Report timed out."
msgstr "Извештај је истекао."
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "Извештај је успешно ажуриран"
@@ -21310,7 +21332,7 @@ msgstr "Извештај {0}"
msgid "Report {0} deleted"
msgstr "Извештај {0} је обрисан"
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "Извештај {0} је онемогућен"
@@ -21643,10 +21665,8 @@ msgstr "Опозови"
msgid "Revoked"
msgstr "Опозвано"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21857,7 +21877,6 @@ msgstr "Метод заокруживања"
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21871,7 +21890,6 @@ msgstr "Метод заокруживања"
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21989,7 +22007,7 @@ msgstr "Правило"
msgid "Rule Conditions"
msgstr "Услови правила"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Правило за ову врсту доцтyпе, улога, ниво дозволе и уколико власник већ постоји."
@@ -22178,11 +22196,11 @@ msgstr "Субота"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22274,32 +22292,17 @@ msgstr "Скенирај QR код и унеси приказани код."
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr "Распоред"
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr "Заказати слање билтена"
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr "Заказати слање у"
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr "Заказати слање"
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr "Заказати слање за касније"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "Заказано"
@@ -22333,17 +22336,6 @@ msgstr "Врста заказаног задатка"
msgid "Scheduled Jobs Logs"
msgstr "Евиденције заказаних задатака"
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr "Заказано слање"
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "Заказано за слање"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "Заказано извршавање за скрипту {0} је ажурирано"
@@ -22555,6 +22547,11 @@ msgstr "Претрага..."
msgid "Searching ..."
msgstr "Претраживање ..."
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22944,9 +22941,7 @@ msgstr "Изаберите {0}"
msgid "Self approval is not allowed"
msgstr "Самопотврда није дозвољена"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "Пошаљи"
@@ -22977,11 +22972,6 @@ msgstr "Пошаљи обавештење на"
msgid "Send Email Alert"
msgstr "Пошаљи имејл упозорење"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr "Пошаљи имејл у"
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -23039,38 +23029,16 @@ msgstr "Пошаљи потврду о читању"
msgid "Send System Notification"
msgstr "Пошаљи системско обавештење"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr "Пошаљи тестни имејл"
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "Пошаљи свим задуженима"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "Пошаљи линк за отказивање претплате"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr "Пошаљи линк за приказ на вебу"
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "Пошаљи имејл добродошлице"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr "Пошаљи тестни имејл"
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr "Пошаљи поново"
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -23118,10 +23086,6 @@ msgstr "Пошаљи линк за пријаву"
msgid "Send me a copy"
msgstr "Пошаљи ми копију"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr "Пошаљи сада"
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -23137,19 +23101,15 @@ msgstr "Пошаљи поруку за отказивање претплате
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "Пошиљалац"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "Имејл пошиљаоца"
@@ -23166,9 +23126,7 @@ msgid "Sender Field should have Email in options"
msgstr "Поље пошиљаоца треба да има имејл међу опцијама"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr "Назив пошиљаоца"
@@ -23188,18 +23146,9 @@ msgstr "Сендгрид"
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "Слање"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr "Слање имејлова"
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr "Слање у току..."
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23207,8 +23156,6 @@ msgstr "Слање у току..."
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "Послато"
@@ -23278,7 +23225,7 @@ msgstr "Серија {0} је већ искоришћена у {1}"
msgid "Server Action"
msgstr "Серверска радња"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Серверска грешка"
@@ -23297,7 +23244,7 @@ msgstr "ИП адреса сервера"
msgid "Server Script"
msgstr "Серверска скрипта"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "Серверска скрипта је онемогућена. Молимо Вас да је омогућите у конфигурацији командне линије."
@@ -23336,15 +23283,15 @@ msgstr "Подешавање подразумеване сесије"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "Подразумеване вредности сесије"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "Подразумеване вредности сесије су сачуване"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "Сесија је истекла"
@@ -23598,7 +23545,7 @@ msgstr "Постављање система"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24681,7 +24628,6 @@ msgstr "Временски интервал статистике"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24706,7 +24652,6 @@ msgstr "Временски интервал статистике"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24847,8 +24792,6 @@ msgstr "Поддомен"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24857,7 +24800,6 @@ msgstr "Поддомен"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25228,7 +25170,7 @@ msgstr "Синхронизовање"
msgid "Syncing {0} of {1}"
msgstr "Синхронизовање {0} од {1}"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr "Грешка у синтакси"
@@ -25535,7 +25477,7 @@ msgstr "Скраћена табела"
msgid "Table updated"
msgstr "Табела ажурирана"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "Табела {0} не може бити празна"
@@ -25662,10 +25604,6 @@ msgstr "ИД тестног задатка"
msgid "Test Spanish"
msgstr "Тестирај шпански"
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "Тестни имејл послат на {0}"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "ТестДатотека"
@@ -25733,10 +25671,6 @@ msgstr "Хвала Вам на имејлу"
msgid "Thank you for your feedback!"
msgstr "Хвала Вам на повратним информацијама!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "Хвала Вам на интересовању за пријаву на наша обавештења"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr "Хвала Вам на поруци"
@@ -25931,7 +25865,7 @@ msgstr "Линк за ресетовање лозинке је истекао"
msgid "The reset password link has either been used before or is invalid"
msgstr "Линк за ресетовање лозинке је већ коришћен или је неважећи"
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Ресурс који тражите није доступан"
@@ -25943,7 +25877,7 @@ msgstr "Улога {0} треба да буде прилагођена улог
msgid "The selected document {0} is not a {1}."
msgstr "Изабрани документ {0} није {1}."
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Систем се ажурира. Молимо Вас да освежите страницу за неколико тренутака."
@@ -26096,7 +26030,7 @@ msgstr "Аутентификација путем екстерних аплик
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Ова валута је онемогућена. Омогућите је да бисте је користили у трансакцијама"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "Ова Канбан табла ће бити приватна"
@@ -26120,7 +26054,7 @@ msgstr "Ове године"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Ова радња је неповратна. Да ли желите да наставите?"
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "Ова радња је дозвољена само за {}"
@@ -26284,14 +26218,6 @@ msgstr "Ово може бити одштампано на више страни
msgid "This month"
msgstr "Овај месец"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr "Овај билтен је заказан за слање на {0}"
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr "Овај билтен је заказан за слање за каснији датум. Да ли сте сигурни да желите да га пошаљете сада?"
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Овај извештај садржи {0} редова и превелики је за приказ у интернет претраживачу, уместо тога можете га {1}."
@@ -26404,7 +26330,6 @@ msgstr "Четвртак"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Време"
@@ -26630,10 +26555,8 @@ msgid "Title of the page"
msgstr "Наслов странице"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "За"
@@ -26916,7 +26839,7 @@ msgstr "Горе десно"
msgid "Topic"
msgstr "Тема"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26944,16 +26867,8 @@ msgstr "Укупно слика"
msgid "Total Outgoing Emails"
msgstr "Укупно излазних имејлова"
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr "Укупно примаоца"
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "Укупно претплатника"
@@ -26962,11 +26877,6 @@ msgstr "Укупно претплатника"
msgid "Total Users"
msgstr "Укупно корисника"
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr "Укупно прегледа"
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27366,23 +27276,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "URL ка којем води клик на презентацију слика"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr "UTM кампања"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr "UTM медијум"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr "UTM извор"
@@ -27432,7 +27336,7 @@ msgstr "Није могуће уписати формат фајла за {0}"
msgid "Unassign Condition"
msgstr "Уклони додељивање услова"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr "Неухваћени изузетак"
@@ -27448,6 +27352,10 @@ msgstr "Поништи"
msgid "Undo last action"
msgstr "Поништи последњу радњу"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27480,7 +27388,7 @@ msgstr "Непознат"
msgid "Unknown Column: {0}"
msgstr "Непозната колона: {0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr "Непознат метод заокруживања: {}"
@@ -27513,7 +27421,7 @@ msgstr "Непрочитано"
msgid "Unread Notification Sent"
msgstr "Послата обавештења о непрочитаним"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr "Несигуран SQL упит"
@@ -27527,7 +27435,7 @@ msgstr "Поништи одабир свега"
msgid "Unshared"
msgstr "Није подељено"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "Отказивање претплате"
@@ -27551,6 +27459,11 @@ msgstr "Параметри отказивања претплате"
msgid "Unsubscribed"
msgstr "Отказана претплата"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "Колона без назива"
@@ -27673,7 +27586,7 @@ msgstr "Ажурирано на нову верзију 🎉"
msgid "Updated successfully"
msgstr "Успешно ажурирано"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "Ажурирање"
@@ -28408,7 +28321,7 @@ msgstr "Вредност је превелика"
msgid "Value {0} missing for {1}"
msgstr "Вредност {0} недостаје за {1}"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "Вредност {0} мора бити у важећем формату трајања: д х м с"
@@ -28833,7 +28746,6 @@ msgstr "URL Webhook-а"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28841,9 +28753,7 @@ msgid "Website"
msgstr "Веб-сајт"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "Аналитика веб-сајта"
@@ -29279,7 +29189,7 @@ msgstr "Радни ток је успешно ажуриран"
msgid "Workspace"
msgstr "Радни простор"
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr "Радни простор {0} не постоји"
@@ -29502,11 +29412,11 @@ msgstr "Пријављени сте као други корисник."
msgid "You are not allowed to access this resource"
msgstr "Немате дозволу да приступите овом ресурсу"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "Немате дозволу да приступите овом запису {0} јер је повезан са {1} '{2}' у пољу {3}"
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "Немате дозволу да приступите овом запису {0} јер је повезан са {1} '{2}' у реду {3}, поље {4}"
@@ -29529,7 +29439,7 @@ msgstr "Немате дозволу да уређујете извештај."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "Немате дозволу да извезете DocType {}"
@@ -29557,7 +29467,7 @@ msgstr "Није Вам дозвољено да приступите овој с
msgid "You are not permitted to access this page."
msgstr "Немате дозволу да приступите овој страници."
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr "Немате дозволу за приступ овом ресурсу. Пријавите се за приступ"
@@ -29652,7 +29562,7 @@ msgstr "Можете изабрати једну од следећих,"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "Можете поставити вишу вредност овде уколико се више корисника пријављује са исте мреже."
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "Можете покушати да промените филтере Вашег извештаја."
@@ -29729,11 +29639,15 @@ msgstr "Немате дозволу за читање или избор за {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Немате довољно дозвола за приступ овом ресурсу. Обратите се свом менаџеру за приступ."
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "Немате довољно дозвола да довршите ову радњу"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr "Немате дозволу за приступ {0}: {1}."
@@ -29741,7 +29655,7 @@ msgstr "Немате дозволу за приступ {0}: {1}."
msgid "You do not have permissions to cancel all linked documents."
msgstr "Немате дозволу да откажете све повезане документе."
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "Немате приступ извештају: {0}"
@@ -29749,11 +29663,11 @@ msgstr "Немате приступ извештају: {0}"
msgid "You don't have permission to access the {0} DocType."
msgstr "Немате дозволе за приступ DocType-у {0}."
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "Немате дозволу за приступ овом фајлу"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "Немате дозволу да добијате извештај за: {0}"
@@ -29846,7 +29760,7 @@ msgstr "Морате бити системски корисник да бист
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Морате бити у развојном режиму да бисте уредили стандардни веб-образац"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Морате бити пријављени и имати улогу систем менаџера да бисте приступили резервним копијама."
@@ -30012,7 +29926,7 @@ msgstr "Назив и адреса Ваше организације за под
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Ваш упит је примљен. Одговорићемо Вам ускоро, уколико имате додатне информације молимо Вас да одговорите на ову поруку."
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "Ваша сесија је истекла, молимо Вас да се пријавите поново да бисте наставили."
@@ -30024,7 +29938,7 @@ msgstr "Ваш сајт је тренутно на одржавању или с
msgid "Your verification code is {0}"
msgstr "Ваш верификациони код је {0}"
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "Нула"
@@ -30071,7 +29985,7 @@ msgstr "афтеринсерт"
msgid "amend"
msgstr "измени"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "и"
@@ -30128,7 +30042,7 @@ msgstr "креирај"
msgid "cyan"
msgstr "цијан"
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30243,7 +30157,7 @@ msgstr "имејл"
msgid "email inbox"
msgstr "пријемна пошта имејла"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "празно"
@@ -30295,7 +30209,7 @@ msgstr "сива"
msgid "gzip not found in PATH! This is required to take a backup."
msgstr "gzip није пронађен у PATH! Ово је неопходно за прављење резервне копије."
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30329,7 +30243,7 @@ msgstr "jane@example.com"
msgid "just now"
msgstr "управо сада"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr "ознака"
@@ -30369,7 +30283,7 @@ msgstr "login_required"
msgid "long"
msgstr "дуго"
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30559,7 +30473,7 @@ msgstr "одговор"
msgid "restored {0} as {1}"
msgstr "враћено {0} као {1}"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30894,7 +30808,7 @@ msgstr "{0} је већ отказао претплату"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} је већ отказао претплату за {1} {2}"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} и {1}"
@@ -31000,6 +30914,10 @@ msgstr "{0} не постоји у реду {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "{0} поље не може бити постављено као јединствено у {1}, јер постоје нејединствене постојеће вредности"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "{0} формат није могао бити одређен из вредности у овој колони. Подразумевано на {1}."
@@ -31020,10 +30938,6 @@ msgstr "{0} х"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} је већ доделио подразумевану вредност за {1}."
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} је успешно додат у Имејл групу."
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} је напустио разговор у {1} {2}"
@@ -31094,6 +31008,10 @@ msgstr "{0} је као {1}"
msgid "{0} is mandatory"
msgstr "{0} је обавезно"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr "{0} није поље за доцтyпе {1}"
@@ -31115,7 +31033,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} није важећи DocType или динамички линк"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0} није важећа имејл адреса"
@@ -31123,11 +31041,11 @@ msgstr "{0} није важећа имејл адреса"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} није важећа ISO 3166 ALPHA-2 шифра."
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0} није важећи назив"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} није важећи број телефона"
@@ -31135,11 +31053,11 @@ msgstr "{0} није важећи број телефона"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} није важеће стање радног тока. Молимо Вас да ажурирате свој радни ток и покушате поново."
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} није важећи матични DocType за {1}"
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} није важеће матично поље за {1}"
@@ -31227,23 +31145,23 @@ msgstr "пре {0} минута"
msgid "{0} months ago"
msgstr "пре {0} месеци"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0} мора бити након {1}"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr "{0} мора почињати са '{1}'"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr "{0} мора бити једнако '{1}'"
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr "{0} не сме бити ниједно од {1}"
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} мора бити један од {1}"
@@ -31255,7 +31173,7 @@ msgstr "{0} мора прво бити постављено"
msgid "{0} must be unique"
msgstr "{0} мора бити јединствено"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr "{0} мора бити {1} {2}"
@@ -31284,16 +31202,12 @@ msgstr "{0} од {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} од {1} ({2} редова са зависним подацима)"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr "{0} од {1} послато"
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr "само {0}."
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} или {1}"
@@ -31330,11 +31244,11 @@ msgstr "{0} је уклонио свој задатак."
msgid "{0} role does not have permission on any doctype"
msgstr "Улога {0} нема дозволе ни за једну врсту документа"
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr "{0} ред#{1}: "
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0} је успешно сачувано"
@@ -31446,7 +31360,7 @@ msgstr "{0} {1} не постоји, изаберите ново тачку за
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} је повезан са следећим поднетим документима: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} није пронађен"
@@ -31599,11 +31513,11 @@ msgstr "{{{0}}} није исправан формат назива поља. Т
msgid "{} Complete"
msgstr "{} завршено"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr "{} Неважећи пyтхон код на линији {}"
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Потенцијално неважећи пyтхон код.
{}"
@@ -31625,7 +31539,7 @@ msgstr "{} поље не може бити празно."
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr "{} је онемогућено. Може се омогућити само уколико је {} означено."
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{} није исправан датум у текстуалном формату."
diff --git a/frappe/locale/sr_CS.po b/frappe/locale/sr_CS.po
index 93d0b0a5e5..707b7f77bd 100644
--- a/frappe/locale/sr_CS.po
+++ b/frappe/locale/sr_CS.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-23 16:41\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Serbian (Latin)\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "'U prikazu liste' nije dozvoljeno za vrstu {0} u redu {1}"
msgid "'Recipients' not specified"
msgstr "'Primaoci' nisu navedeni"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "'{0}' nije važeći URL"
@@ -1035,7 +1035,7 @@ msgstr "Radnja / Putanja"
msgid "Action Complete"
msgstr "Radnja završena"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "Radnja neuspešna"
@@ -1674,6 +1674,14 @@ msgstr "Upozorenje"
msgid "Alerts and Notifications"
msgstr "Upozorenja i obaveštenja"
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1714,7 +1722,6 @@ msgstr "Poravnaj vrednosti"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -2160,7 +2167,7 @@ msgstr "Izmena nije dozvoljena"
msgid "Amendment naming rules updated."
msgstr "Pravila imenovanja izmena ažurirana."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr "Došlo je do greške prilikom postavljanja podrazumevanih podešavanja sesije"
@@ -2278,7 +2285,7 @@ msgstr "Naziv aplikacije"
msgid "App not found for module: {0}"
msgstr "Aplikacija nije pronađena za modul: {0}"
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "Aplikacija {0} nije instalirana"
@@ -2492,10 +2499,6 @@ msgstr "Da li ste sigurni da želite da poništite sva prilagođavanja?"
msgid "Are you sure you want to save this document?"
msgstr "Da li ste sigurni da želite da sačuvate ovaj dokument?"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "Da li ste sigurni da želite da pošaljete ovaj bilten sada?"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2749,9 +2752,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr "Priloženo uz naziv mora biti tekst ili broj"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "Prilog"
@@ -2778,10 +2779,7 @@ msgid "Attachment Removed"
msgstr "Prilog uklonjen"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2799,11 +2797,6 @@ msgstr "Pokušava se pokretanje QZ Tray..."
msgid "Attribution"
msgstr "Pripisivanje"
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr "Publika"
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3230,7 +3223,7 @@ msgstr "Slika pozadine"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr "Pozadinski zadaci"
@@ -3959,9 +3952,7 @@ msgstr "Callback naslov"
msgid "Camera"
msgstr "Kamera"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -4047,10 +4038,6 @@ msgstr "Otkaži sve"
msgid "Cancel All Documents"
msgstr "Otkaži sve dokumente"
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr "Otkaži zakazivanje"
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4344,7 +4331,7 @@ msgstr "Opis kategorije"
msgid "Category Name"
msgstr "Naziv kategorije"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr "Cent"
@@ -4513,10 +4500,6 @@ msgstr "Označi"
msgid "Check Request URL"
msgstr "Proveri URL zahteva"
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr "Proveri prekinute linkove"
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr "Proveri kolone za označavanje, prevuci da postaviš redosled."
@@ -4540,10 +4523,6 @@ msgstr "Označi ovo ukoliko želiš da nateraš korisnika da odabere seriju pre
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr "Označite za prikaz pune numeričke vrednosti (npr. 1.234.567 umesto 1.2M)."
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr "Proveravanje prekinutih linkova..."
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "Proverava se, trenutak"
@@ -4590,6 +4569,10 @@ msgstr "Zavisna tabela {0} za polje {1}"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Zavisne tabele se prikazuju kao tabele u drugim DocType-ovima"
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "Izaberi postojeću karticu ili kreiraj novu karticu"
@@ -4679,10 +4662,6 @@ msgstr "Kliknite na prilagodi da dodate svoj prvi vidžet"
msgid "Click here"
msgstr "Kliknite ovde"
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "Kliknite ovde da verifikujete"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "Kliknite na fajl da ga odaberete."
@@ -5024,7 +5003,7 @@ msgstr "Kolone"
msgid "Columns / Fields"
msgstr "Kolone / Polja"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "Kolone zasnovane na"
@@ -5346,17 +5325,12 @@ msgstr "Potvrdi lozinku"
msgid "Confirm Request"
msgstr "Potvrdi zahtev"
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "Potvrdite Vaš imejl"
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "Šablon imejla za potvrdu"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "Potvrđeno"
@@ -5487,8 +5461,6 @@ msgstr "Sadrži {0} ispravki bezbednosti"
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5496,7 +5468,6 @@ msgstr "Sadrži {0} ispravki bezbednosti"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5521,10 +5492,8 @@ msgstr "Sadržaj (Markdown)"
msgid "Content Hash"
msgstr "Heš sadržaj"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5630,6 +5599,10 @@ msgstr "Nije bilo moguće pronaći {0}"
msgid "Could not map column {0} to field {1}"
msgstr "Nije bilo moguće mapirati kolonu {0} na polje {1}"
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr "Nije bilo moguće pokrenuti: "
@@ -5685,7 +5658,7 @@ msgstr "Brojač"
msgid "Country"
msgstr "Država"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr "Šifra države je neophodna"
@@ -5816,11 +5789,6 @@ msgstr "Kreiraj novi {0}"
msgid "Create a {0} Account"
msgstr "Kreiraj {0} nalog"
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr "Kreiraj i pošalji imejlove specifičnoj grupi pretplatnika periodično."
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr "Kreiraj ili uredi format štampe"
@@ -6169,6 +6137,10 @@ msgstr "Prilagođeni prevod"
msgid "Custom field renamed to {0} successfully."
msgstr "Prilagođeno polje je uspešno preimenovano u {0}."
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6226,7 +6198,7 @@ msgstr "Prilagodi kontrolnu tablu"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "Prilagodi obrazac"
@@ -6519,7 +6491,6 @@ msgstr "Verzija baze podataka"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6583,6 +6554,11 @@ msgstr "Dan"
msgid "Day of Week"
msgstr "Dan u nedelji"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr "Dani"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6850,6 +6826,7 @@ msgstr "Kašnjenje"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -7162,6 +7139,7 @@ msgstr "Tema radne površine"
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7918,7 +7896,7 @@ msgid "Document Types and Permissions"
msgstr "Vrste i dozvole dokumenta"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr "Dokument je otključan"
@@ -8536,7 +8514,6 @@ msgstr "Izbor elementa"
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8630,11 +8607,9 @@ msgstr "Adresa u podnožju imejla"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "Imejl grupa"
@@ -8707,18 +8682,11 @@ msgstr "Ograničenje ponovnih pokušaja za imejl"
msgid "Email Rule"
msgstr "Imejl pravilo"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "Imejl poslat"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr "Imejl poslat u"
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8825,10 +8793,18 @@ msgstr "Imejlovi će biti poslati sa sledećim mogućim radnjama u radnom toku"
msgid "Embed code copied"
msgstr "Kod za ugradnju je kopiran"
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr "Prazna kolona"
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9293,6 +9269,14 @@ msgstr "Greška u obaveštenju"
msgid "Error in print format on line {0}: {1}"
msgstr "Greška u formatu štampe na liniji {0}: {1}"
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "Greška pri povezivanju sa imejl nalogom {0}"
@@ -9489,6 +9473,10 @@ msgstr "Proširi"
msgid "Expand All"
msgstr "Proširi sve"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr "Eksperimentalno"
@@ -10020,7 +10008,7 @@ msgstr "Naziv polja '{0}' je u konfliktu sa {1} nazivom {2} u {3}"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Naziv polja {0} mora postojati da bi se omogućilo automatsko imenovanje"
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Naziv polja je ograničen na 64 karaktera ({0})"
@@ -10036,7 +10024,7 @@ msgstr "Naziv polja koje će biti DocType za ovo link polje."
msgid "Fieldname {0} appears multiple times"
msgstr "Naziv polja {0} se pojavljuje više puta"
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Naziv polja {0} ne može sadržati specijalne karaktere poput {1}"
@@ -10088,6 +10076,10 @@ msgstr "Polja `file_name` ili `file_url` moraju biti postavljena za fajl"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Polja moraju biti lista ili tuple kada je opcija as_list omogućena"
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10253,6 +10245,14 @@ msgstr "Filter naziva"
msgid "Filter Values"
msgstr "Filter vrednosti"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr "Filteri..."
@@ -10496,10 +10496,6 @@ msgstr "Sledeća polja imaju nedostajuće vrednosti"
msgid "Following fields have missing values:"
msgstr "Sledeća polja imaju nedostajuće vrednosti:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr "Sledeći linkovi su pokidani u sadržaju imejla: {0}"
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10917,10 +10913,8 @@ msgid "Friday"
msgstr "Petak"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "Od"
@@ -11001,10 +10995,14 @@ msgstr "Funkcija"
msgid "Function Based On"
msgstr "Funkcija zasnovana na"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr "Funkcija {0} nije na listi dozvoljenih."
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Dalje čvorove je moguće kreirati samo u okviru čvorova vrste 'Grupa'"
@@ -11486,6 +11484,10 @@ msgstr "Vrsta Grupisano po"
msgid "Group By field is required to create a dashboard chart"
msgstr "Polje Grupisano po je neophodno za kreiranje grafikona na kontrolnoj tabli"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "Čvor grupe"
@@ -11534,7 +11536,6 @@ msgstr "HH:mm:ss"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11548,7 +11549,6 @@ msgstr "HH:mm:ss"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -12057,6 +12057,11 @@ msgstr "Održavanje na svakih sat vremena"
msgid "Hourly rate limit for generating password reset links"
msgstr "Ograničenje po času za generisanje linkova za resetovanje lozinke"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "Časovi"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12822,11 +12827,11 @@ msgstr "Pogrešno korisničko ime ili lozinka"
msgid "Incorrect Verification code"
msgstr "Pogrešan verifikacioni kod"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr "Pogrešna vrednost u redu {0}:"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr "Pogrešna vrednost:"
@@ -12978,11 +12983,11 @@ msgstr "Uputstva"
msgid "Instructions Emailed"
msgstr "Uputstva poslata imejlom"
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr "Nedovoljan nivo ovlašćena za {0}"
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "Nedovoljna ovlašćena za {0}"
@@ -13132,7 +13137,7 @@ msgstr "Nevažeći uslov: {}"
msgid "Invalid Credentials"
msgstr "Nevažeći kredencijali"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "Nevažeći datum"
@@ -13140,7 +13145,7 @@ msgstr "Nevažeći datum"
msgid "Invalid DocType"
msgstr "Nevažeći DocType"
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr "Nevažeći DocType: {0}"
@@ -13152,6 +13157,11 @@ msgstr "Nevažeći naziv polja"
msgid "Invalid File URL"
msgstr "Nevažeći URL fajla"
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr "Nevažeći format filtera za polje {0} vrste {1}. Pokušajte da koristite ikonicu filtera na polju kako biste ga ispravno podesili"
@@ -13216,7 +13226,7 @@ msgstr "Nevažeći parametri."
msgid "Invalid Password"
msgstr "Nevažeća lozinka"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr "Nevažeći broj telefona"
@@ -13260,10 +13270,38 @@ msgstr "Nevažeća tajna za Webhook"
msgid "Invalid aggregate function"
msgstr "Nevažeća agregatna funkcija"
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "Nevažeća kolona"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "Nevažeći status dokumenta"
@@ -13276,10 +13314,26 @@ msgstr "Nevažeći izraz postavljen u filteru {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Nevažeći izraz postavljen u filteru {0} ({1})"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "Nevažeći naziv polja {0}"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Nevažeći naziv polja '{0}' u automatskom imenovanju"
@@ -13288,11 +13342,26 @@ msgstr "Nevažeći naziv polja '{0}' u automatskom imenovanju"
msgid "Invalid file path: {0}"
msgstr "Nevažeća putanja fajla: {0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "Nevažeći filter: {0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13314,10 +13383,22 @@ msgstr "Nevažeći ili oštećen sadržaj za uvoz"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Nevažeće preusmerenje regex funkcije u redu #{}: {}"
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr "Nevažeći argumenti zahteva"
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "Nevažeći fajl šablona za uvoz"
@@ -13759,11 +13840,11 @@ msgstr "Kolona Kanban table"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "Naziv Kanban table"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "Kanban podešavanje"
@@ -14475,6 +14556,10 @@ msgstr "Lajkovanja"
msgid "Limit"
msgstr "Limit"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14738,6 +14823,7 @@ msgid "Load Balancing"
msgstr "Balansiranje opterećenja"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15256,11 +15342,9 @@ msgstr "Označi kao neželjeno"
msgid "Mark as Unread"
msgstr "Označi kao nepročitano"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15449,7 +15533,6 @@ msgstr "Spajanje je moguće samo između grupe i grupe ili čvora i čvora"
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15462,7 +15545,6 @@ msgstr "Spajanje je moguće samo između grupe i grupe ili čvora i čvora"
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15477,16 +15559,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Poruka"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "Poruka (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "Poruka (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15610,7 +15682,7 @@ msgstr "Meta naslov za SEO"
msgid "Method"
msgstr "Metoda"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr "Metoda nije dozvoljena"
@@ -15660,6 +15732,11 @@ msgstr "Minimalna ocena jačine lozinke"
msgid "Minor"
msgstr "Manji"
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr "Minute"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -16055,7 +16132,7 @@ msgstr "Mora biti zatvoren u '()' i uključivati '{0}', koji je rezervisani teks
msgid "Must be of type \"Attach Image\""
msgstr "Mora biti vrste \"Priloži sliku\""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "Mora imati dozvolu za izveštaj da bi pristupio ovom izveštaju."
@@ -16245,6 +16322,10 @@ msgstr "Neophodna je uloga menadžera radnog prostora da biste uređivali privat
msgid "Negative Value"
msgstr "Negativna vrednost"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "Greška u ugnježdenom setu. Molimo Vas da kontaktirate administratora."
@@ -16327,7 +16408,7 @@ msgstr "Novi događaj"
msgid "New Folder"
msgstr "Nova datoteka"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "Nova Kanban tabla"
@@ -16471,48 +16552,13 @@ msgstr "Novi {} verzije za sledeće aplikacija su dostupne"
msgid "Newly created user {0} has no roles enabled."
msgstr "Novokreirani korisnik {0} nema omogućene uloge."
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "Bilten"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr "Prilog biltena"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "Imejl grupa za bilten"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "Menadžer biltena"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "Bilten je već poslat"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr "Bilten mora biti objavljen da bi se poslao link za pregled u imejlu"
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "Bilten treba da ima barem jednog primaoca"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "Bilteni"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16774,7 +16820,7 @@ msgstr "Nijedan rezultat nije pronađen"
msgid "No Roles Specified"
msgstr "Uloge nisu navedene"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr "Nije pronađeno polje za izbor"
@@ -16802,10 +16848,6 @@ msgstr "Nema upozorenja za danas"
msgid "No automatic optimization suggestions available."
msgstr "Nema dostupnih automatskih predloga za optimizaciju."
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr "Nisu pronađeni neispravni linkovi u sadržaju imejla"
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "Nema promena u dokumentu"
@@ -16842,7 +16884,7 @@ msgstr "Nijedan kontakt nije još uvek dodat."
msgid "No contacts linked to document"
msgstr "Nijedan kontakt nije povezan sa dokumentom"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "Nema podataka za izvoz"
@@ -16862,7 +16904,7 @@ msgstr "Nijedan imejl nalog nije povezan sa korisnikom. Molimo Vas da dodate nal
msgid "No failed logs"
msgstr "Nema neuspešnih evidencija"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "Nije pronađeno polje koje može biti korišćeno kao Kanban kolona. Koristite prilagodi obrazac da biste dodali prilagođeno polje vrste \"Izbor\"."
@@ -16921,7 +16963,7 @@ msgstr "Broj redova (maksimalno 500)"
msgid "No of Sent SMS"
msgstr "Broj poslatih SMS poruka"
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Ne postoji dozvola za {0}"
@@ -17049,7 +17091,7 @@ msgstr "Nisu potomci od"
msgid "Not Equals"
msgstr "Nije jednako"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "Nije pronađeno"
@@ -17075,7 +17117,7 @@ msgstr "Nije povezani ni sa jednim zapisom"
msgid "Not Nullable"
msgstr "Ne može biti prazno"
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17084,7 +17126,7 @@ msgstr "Ne može biti prazno"
msgid "Not Permitted"
msgstr "Nije dozvoljeno"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr "Nije dozvoljeno za čitanje {0}"
@@ -17112,7 +17154,6 @@ msgstr "Nije viđeno"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "Nije poslato"
@@ -17145,7 +17186,7 @@ msgstr "Nevažeći korisnik"
msgid "Not active"
msgstr "Nije aktivno"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "Nije dozvoljeno za {0}: {1}"
@@ -17579,6 +17620,10 @@ msgstr "Pomak X"
msgid "Offset Y"
msgstr "Pomak Y"
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "Stara lozinka"
@@ -17752,7 +17797,7 @@ msgstr "Isključivo menadžer radnog prostora može da uređuje javne radne pros
msgid "Only allowed to export customizations in developer mode"
msgstr "Izvoz prilagođavanja je dozvoljen samo u razvojnom režimu"
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr "Isključivo nacrti dokumenata mogu biti odbačeni"
@@ -17924,7 +17969,7 @@ msgstr "Otvoreno"
msgid "Operation"
msgstr "Operacija"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "Operator mora biti jedan od sledećih {0}"
@@ -18023,6 +18068,10 @@ msgstr "Narandžasta"
msgid "Order"
msgstr "Redosled"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18418,7 +18467,7 @@ msgstr "Matični označava naziv dokumenta u koji će se podaci dodati."
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr "Grupisanje matično-ka-zavisnom ili zavisno-ka-matičnom nije dozvoljeno."
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr "Matično polje nije navedeno u {0}: {1}"
@@ -18540,10 +18589,6 @@ msgstr "Lozinke se ne podudaraju"
msgid "Passwords do not match!"
msgstr "Lozinke se ne podudaraju!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr "Prošli datumi nisu dozvoljeni za zakazivanje."
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "Nalepi"
@@ -18689,7 +18734,7 @@ msgstr "Trajno podneti {0}?"
msgid "Permanently delete {0}?"
msgstr "Trajno obrisati {0}?"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "Greška u dozvolama"
@@ -18841,7 +18886,7 @@ msgstr "Telefon"
msgid "Phone No."
msgstr "Telefon br."
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Broj telefona {0} postavljen u polju {1} nije validan."
@@ -19114,10 +19159,6 @@ msgstr "Molimo Vas da uklonite mapiranje štampača u podešavanjima štampe i p
msgid "Please save before attaching."
msgstr "Molimo Vas da sačuvate pre nego što priložite."
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "Molimo Vas da sačuvate bilten pre slanja"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "Molimo Vas da sačuvate dokument pre dodeljivanja"
@@ -19150,7 +19191,7 @@ msgstr "Molimo Vas da odaberete minimalnu ocenu jačine lozinke"
msgid "Please select X and Y fields"
msgstr "Molimo Vas da izaberete X i Y polja"
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr "Molimo Vas da izaberete šifru države za polje {1}."
@@ -19166,7 +19207,7 @@ msgstr "Molim Vas da izaberete fajl ili URL"
msgid "Please select a valid csv file with data"
msgstr "Molimo Vas da izaberete važeći csv fajl sa podacima"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "Molimo Vas da izaberete važeći filter da datum"
@@ -19244,7 +19285,7 @@ msgstr "Molimo Vas da postavite podrazumevani izlazni imejl nalog iz Alati > Ime
msgid "Please specify"
msgstr "Molimo Vas da navedete"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr "Molimo Vas da navedete važeći matični DocType za {0}"
@@ -19281,10 +19322,6 @@ msgstr "Molimo Vas da ažurirate {} pre nego što nastavite."
msgid "Please use a valid LDAP search filter"
msgstr "Molimo Vas da koristite važeći LDAP filter za pretragu"
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "Molimo Vas da verifikujete svoju imejl adresu"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "Molimo Vas da posetite https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key za više informacija."
@@ -19378,6 +19415,10 @@ msgstr "Objave korisnika {0}"
msgid "Posts filed under {0}"
msgstr "Objave u kategoriji {0}"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19437,7 +19478,7 @@ msgstr "Analitika pripremljenih izveštaja"
msgid "Prepared Report User"
msgstr "Korisnik pripremljenog izveštaja"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr "Prikaz pripremljenog izveštaja nije uspeo"
@@ -19466,8 +19507,6 @@ msgstr "Pritisnite Enter da sačuvate"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19855,7 +19894,7 @@ msgstr "Profil"
msgid "Progress"
msgstr "Napredak"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "Projekat"
@@ -19950,14 +19989,7 @@ msgstr "Javni fajlovi (MB)"
msgid "Publish"
msgstr "Objavi"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr "Objavi kao veb-stranicu"
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19965,7 +19997,6 @@ msgstr "Objavi kao veb-stranicu"
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -20140,7 +20171,7 @@ msgstr "Izveštaj po upitu"
msgid "Query analysis complete. Check suggested indexes."
msgstr "Analiza upita završena. Pogledajte predložene indekse."
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr "Upit mora biti vrste SELECT ili read-only."
@@ -20186,7 +20217,6 @@ msgstr "Red(ovi)"
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "U redu"
@@ -20209,19 +20239,11 @@ msgstr "U redu za podnošenje. Možete pratiti napredak preko {0}."
msgid "Queued for backup. You will receive an email with the download link"
msgstr "U redu za rezervnu kopiju. Dobićete imejl sa linkom za preuzimanje"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr "{0} imejlova u redu"
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr "Redovi"
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr "Imejlovi se stavljaju u red..."
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr "{0} se stavlja u red za podnošenje"
@@ -20422,7 +20444,7 @@ msgstr "Pročitao primalac na"
msgid "Read mode"
msgstr "Režim čitanja"
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr "Pročitajte dokumentaciju za više informacija"
@@ -21289,7 +21311,7 @@ msgstr "Dostignuto je ograničenje izveštaja"
msgid "Report timed out."
msgstr "Izveštaj je istekao."
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "Izveštaj je uspešno ažuriran"
@@ -21310,7 +21332,7 @@ msgstr "Izveštaj {0}"
msgid "Report {0} deleted"
msgstr "Izveštaj {0} je obrisan"
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "Izveštaj {0} je onemogućen"
@@ -21643,10 +21665,8 @@ msgstr "Opozovi"
msgid "Revoked"
msgstr "Opozvano"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21857,7 +21877,6 @@ msgstr "Metod zaokruživanja"
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21871,7 +21890,6 @@ msgstr "Metod zaokruživanja"
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21989,7 +22007,7 @@ msgstr "Pravilo"
msgid "Rule Conditions"
msgstr "Uslovi pravila"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Pravilo za ovu vrstu doctype, uloga, nivo dozvole i ukoliko vlasnik već postoji."
@@ -22178,11 +22196,11 @@ msgstr "Subota"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22274,32 +22292,17 @@ msgstr "Skeniraj QR kod i unesi prikazani kod."
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr "Raspored"
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr "Zakazati slanje biltena"
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr "Zakazati slanje u"
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr "Zakazati slanje"
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr "Zakazati slanje za kasnije"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "Zakazano"
@@ -22333,17 +22336,6 @@ msgstr "Vrsta zakazanog zadatka"
msgid "Scheduled Jobs Logs"
msgstr "Evidencije zakazanih zadataka"
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr "Zakazano slanje"
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "Zakazano za slanje"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "Zakazano izvršavanje za skriptu {0} je ažurirano"
@@ -22555,6 +22547,11 @@ msgstr "Pretraga..."
msgid "Searching ..."
msgstr "Pretraživanje ..."
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22944,9 +22941,7 @@ msgstr "Izaberite {0}"
msgid "Self approval is not allowed"
msgstr "Samopotvrda nije dozvoljena"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "Pošalji"
@@ -22977,11 +22972,6 @@ msgstr "Pošalji obaveštenje na"
msgid "Send Email Alert"
msgstr "Pošalji imejl upozorenje"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr "Pošalji imejl u"
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -23039,38 +23029,16 @@ msgstr "Pošalji potvrdu o čitanju"
msgid "Send System Notification"
msgstr "Pošalji sistemsko obaveštenje"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr "Pošalji testni imejl"
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "Pošalji svim zaduženima"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "Pošalji link za otkazivanje pretplate"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr "Pošalji link za prikaz na vebu"
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "Pošalji imejl dobrodošlice"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr "Pošalji testni imejl"
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr "Pošalji ponovo"
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -23118,10 +23086,6 @@ msgstr "Pošalji link za prijavu"
msgid "Send me a copy"
msgstr "Pošalji mi kopiju"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr "Pošalji sada"
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -23137,19 +23101,15 @@ msgstr "Pošalji poruku za otkazivanje pretplate u imejlu"
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "Pošiljalac"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "Imejl pošiljaoca"
@@ -23166,9 +23126,7 @@ msgid "Sender Field should have Email in options"
msgstr "Polje pošiljaoca treba da ima imejl među opcijama"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr "Naziv pošiljaoca"
@@ -23188,18 +23146,9 @@ msgstr "Sendgrid"
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "Slanje"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr "Slanje imejlova"
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr "Slanje u toku..."
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23207,8 +23156,6 @@ msgstr "Slanje u toku..."
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "Poslato"
@@ -23278,7 +23225,7 @@ msgstr "Serija {0} je već iskorišćena u {1}"
msgid "Server Action"
msgstr "Serverska radnja"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Serverska greška"
@@ -23297,7 +23244,7 @@ msgstr "IP adresa servera"
msgid "Server Script"
msgstr "Serverska skripta"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "Serverska skripta je onemogućena. Molimo Vas da je omogućite u konfiguraciji komandne linije."
@@ -23336,15 +23283,15 @@ msgstr "Podešavanje podrazumevane sesije"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "Podrazumevane vrednosti sesije"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "Podrazumevane vrednosti sesije su sačuvane"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "Sesija je istekla"
@@ -23598,7 +23545,7 @@ msgstr "Postavljanje sistema"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24681,7 +24628,6 @@ msgstr "Vremenski interval statistike"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24706,7 +24652,6 @@ msgstr "Vremenski interval statistike"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24847,8 +24792,6 @@ msgstr "Poddomen"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24857,7 +24800,6 @@ msgstr "Poddomen"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25228,7 +25170,7 @@ msgstr "Sinhronizovanje"
msgid "Syncing {0} of {1}"
msgstr "Sinhronizovanje {0} od {1}"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr "Greška u sintaksi"
@@ -25535,7 +25477,7 @@ msgstr "Skraćena tabela"
msgid "Table updated"
msgstr "Tabela ažurirana"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "Tabela {0} ne može biti prazna"
@@ -25662,10 +25604,6 @@ msgstr "ID testnog zadatka"
msgid "Test Spanish"
msgstr "Testiraj španski"
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "Testni imejl poslat na {0}"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Test_Datoteka"
@@ -25733,10 +25671,6 @@ msgstr "Hvala Vam na imejlu"
msgid "Thank you for your feedback!"
msgstr "Hvala Vam na povratnim informacijama!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "Hvala Vam na interesovanju za prijavu na naša obaveštenja"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr "Hvala Vam na poruci"
@@ -25931,7 +25865,7 @@ msgstr "Link za resetovanje lozinke je istekao"
msgid "The reset password link has either been used before or is invalid"
msgstr "Link za resetovanje lozinke je već korišćen ili je nevažeći"
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Resurs koji tražite nije dostupan"
@@ -25943,7 +25877,7 @@ msgstr "Uloga {0} treba da bude prilagođena uloga."
msgid "The selected document {0} is not a {1}."
msgstr "Izabrani dokument {0} nije {1}."
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Sistem se ažurira. Molimo Vas da osvežite stranicu za nekoliko trenutaka."
@@ -26096,7 +26030,7 @@ msgstr "Autentifikacija putem eksternih aplikacija"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Ova valuta je onemogućena. Omogućite je da biste je koristili u transakcijama"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "Ova Kanban tabla će biti privatna"
@@ -26120,7 +26054,7 @@ msgstr "Ove godine"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Ova radnja je nepovratna. Da li želite da nastavite?"
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "Ova radnja je dozvoljena samo za {}"
@@ -26284,14 +26218,6 @@ msgstr "Ovo može biti odštampano na više stranica"
msgid "This month"
msgstr "Ovaj mesec"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr "Ovaj bilten je zakazan za slanje na {0}"
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr "Ovaj bilten je zakazan za slanje za kasniji datum. Da li ste sigurni da želite da ga pošaljete sada?"
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Ovaj izveštaj sadrži {0} redova i preveliki je za prikaz u internet pretraživaču, umesto toga možete ga {1}."
@@ -26404,7 +26330,6 @@ msgstr "Četvrtak"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Vreme"
@@ -26630,10 +26555,8 @@ msgid "Title of the page"
msgstr "Naslov stranice"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "Za"
@@ -26916,7 +26839,7 @@ msgstr "Gore desno"
msgid "Topic"
msgstr "Tema"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26944,16 +26867,8 @@ msgstr "Ukupno slika"
msgid "Total Outgoing Emails"
msgstr "Ukupno izlaznih imejlova"
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr "Ukupno primaoca"
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "Ukupno pretplatnika"
@@ -26962,11 +26877,6 @@ msgstr "Ukupno pretplatnika"
msgid "Total Users"
msgstr "Ukupno korisnika"
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr "Ukupno pregleda"
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27366,23 +27276,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "URL ka kojem vodi klik na prezentaciju slika"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr "UTM kampanja"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr "UTM medijum"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr "UTM izvor"
@@ -27432,7 +27336,7 @@ msgstr "Nije moguće upisati format fajla za {0}"
msgid "Unassign Condition"
msgstr "Ukloni dodeljivanje uslova"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr "Neuhvaćeni izuzetak"
@@ -27448,6 +27352,10 @@ msgstr "Poništi"
msgid "Undo last action"
msgstr "Poništi poslednju radnju"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27480,7 +27388,7 @@ msgstr "Nepoznat"
msgid "Unknown Column: {0}"
msgstr "Nepoznata kolona: {0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr "Nepoznat metod zaokruživanja: {}"
@@ -27513,7 +27421,7 @@ msgstr "Nepročitano"
msgid "Unread Notification Sent"
msgstr "Poslata obaveštenja o nepročitanim"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr "Nesiguran SQL upit"
@@ -27527,7 +27435,7 @@ msgstr "Poništi odabir svega"
msgid "Unshared"
msgstr "Nije podeljeno"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "Otkazivanje pretplate"
@@ -27551,6 +27459,11 @@ msgstr "Parametri otkazivanja pretplate"
msgid "Unsubscribed"
msgstr "Otkazana pretplata"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "Kolona bez naziva"
@@ -27673,7 +27586,7 @@ msgstr "Ažurirano na novu verziju 🎉"
msgid "Updated successfully"
msgstr "Uspešno ažurirano"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "Ažuriranje"
@@ -28408,7 +28321,7 @@ msgstr "Vrednost je prevelika"
msgid "Value {0} missing for {1}"
msgstr "Vrednost {0} nedostaje za {1}"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "Vrednost {0} mora biti u važećem formatu trajanja: d h m s"
@@ -28833,7 +28746,6 @@ msgstr "URL webhook-a"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28841,9 +28753,7 @@ msgid "Website"
msgstr "Veb-sajt"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "Analitika veb-sajta"
@@ -29279,7 +29189,7 @@ msgstr "Radni tok je uspešno ažuriran"
msgid "Workspace"
msgstr "Radni prostor"
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr "Radni prostor {0} ne postoji"
@@ -29502,11 +29412,11 @@ msgstr "Prijavljeni ste kao drugi korisnik."
msgid "You are not allowed to access this resource"
msgstr "Nemate dozvolu da pristupite ovom resursu"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "Nemate dozvolu da pristupite ovom zapisu {0} jer je povezan sa {1} '{2}' u polju {3}"
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "Nemate dozvolu da pristupite ovom zapisu {0} jer je povezan sa {1} '{2}' u redu {3}, polje {4}"
@@ -29529,7 +29439,7 @@ msgstr "Nemate dozvolu da uređujete izveštaj."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "Nemate dozvolu da izvezete doctype {}"
@@ -29557,7 +29467,7 @@ msgstr "Nije Vam dozvoljeno da pristupite ovoj stranici bez prijavljivanja."
msgid "You are not permitted to access this page."
msgstr "Nemate dozvolu da pristupite ovoj stranici."
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr "Nemate dozvolu za pristup ovom resursu. Prijavite se za pristup"
@@ -29652,7 +29562,7 @@ msgstr "Možete izabrati jednu od sledećih,"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "Možete postaviti višu vrednost ovde ukoliko se više korisnika prijavljuje sa iste mreže."
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "Možete pokušati da promenite filtere Vašeg izveštaja."
@@ -29729,11 +29639,15 @@ msgstr "Nemate dozvolu za čitanje ili izbor za {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Nemate dovoljno dozvola za pristup ovom resursu. Obratite se svom menadžeru za pristup."
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "Nemate dovoljno dozvola da dovršite ovu radnju"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr "Nemate dozvolu za pristup {0}: {1}."
@@ -29741,7 +29655,7 @@ msgstr "Nemate dozvolu za pristup {0}: {1}."
msgid "You do not have permissions to cancel all linked documents."
msgstr "Nemate dozvolu da otkažete sve povezane dokumente."
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "Nemate pristup izveštaju: {0}"
@@ -29749,11 +29663,11 @@ msgstr "Nemate pristup izveštaju: {0}"
msgid "You don't have permission to access the {0} DocType."
msgstr "Nemate dozvole za pristup DocType-u {0}."
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "Nemate dozvolu za pristup ovom fajlu"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "Nemate dozvolu da dobijate izveštaj za: {0}"
@@ -29846,7 +29760,7 @@ msgstr "Morate biti sistemski korisnik da biste pristupili ovoj stranici."
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Morate biti u razvojnom režimu da biste uredili standardni veb-obrazac"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Morate biti prijavljeni i imati ulogu sistem menadžera da biste pristupili rezervnim kopijama."
@@ -30012,7 +29926,7 @@ msgstr "Naziv i adresa Vaše organizacije za podnožje imejla."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Vaš upit je primljen. Odgovorićemo Vam uskoro, ukoliko imate dodatne informacije molimo Vas da odgovorite na ovu poruku."
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "Vaša sesija je istekla, molimo Vas da se prijavite ponovo da biste nastavili."
@@ -30024,7 +29938,7 @@ msgstr "Vaš sajt je trenutno na održavanju ili se ažurira."
msgid "Your verification code is {0}"
msgstr "Vaš verifikacioni kod je {0}"
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "Nula"
@@ -30071,7 +29985,7 @@ msgstr "after_insert"
msgid "amend"
msgstr "izmeni"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "i"
@@ -30128,7 +30042,7 @@ msgstr "kreiraj"
msgid "cyan"
msgstr "cijan"
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30243,7 +30157,7 @@ msgstr "imejl"
msgid "email inbox"
msgstr "prijemna pošta imejla"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "prazno"
@@ -30295,7 +30209,7 @@ msgstr "siva"
msgid "gzip not found in PATH! This is required to take a backup."
msgstr "gzip nije pronađen u PATH! Ovo je neophodno za pravljenje rezervne kopije."
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30329,7 +30243,7 @@ msgstr "jane@example.com"
msgid "just now"
msgstr "upravo sada"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr "oznaka"
@@ -30369,7 +30283,7 @@ msgstr "login_required"
msgid "long"
msgstr "dugo"
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30559,7 +30473,7 @@ msgstr "odgovor"
msgid "restored {0} as {1}"
msgstr "vraćeno {0} kao {1}"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30894,7 +30808,7 @@ msgstr "{0} je već otkazao pretplatu"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} je već otkazao pretplatu za {1} {2}"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} i {1}"
@@ -31000,6 +30914,10 @@ msgstr "{0} ne postoji u redu {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "{0} polje ne može biti postavljeno kao jedinstveno u {1}, jer postoje nejedinstvene postojeće vrednosti"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "{0} format nije mogao biti određen iz vrednosti u ovoj koloni. Podrazumevano na {1}."
@@ -31020,10 +30938,6 @@ msgstr "{0} h"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} je već dodelio podrazumevanu vrednost za {1}."
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} je uspešno dodat u Imejl grupu."
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} je napustio razgovor u {1} {2}"
@@ -31094,6 +31008,10 @@ msgstr "{0} je kao {1}"
msgid "{0} is mandatory"
msgstr "{0} je obavezno"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr "{0} nije polje za doctype {1}"
@@ -31115,7 +31033,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} nije važeći DocType ili dinamički link"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0} nije važeća imejl adresa"
@@ -31123,11 +31041,11 @@ msgstr "{0} nije važeća imejl adresa"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} nije važeća ISO 3166 ALPHA-2 šifra."
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0} nije važeći naziv"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} nije važeći broj telefona"
@@ -31135,11 +31053,11 @@ msgstr "{0} nije važeći broj telefona"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} nije važeće stanje radnog toka. Molimo Vas da ažurirate svoj radni tok i pokušate ponovo."
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} nije važeći matični DocType za {1}"
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} nije važeće matično polje za {1}"
@@ -31227,23 +31145,23 @@ msgstr "pre {0} minuta"
msgid "{0} months ago"
msgstr "pre {0} meseci"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0} mora biti nakon {1}"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr "{0} mora počinjati sa '{1}'"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr "{0} mora biti jednako '{1}'"
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr "{0} ne sme biti nijedno od {1}"
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} mora biti jedan od {1}"
@@ -31255,7 +31173,7 @@ msgstr "{0} mora prvo biti postavljeno"
msgid "{0} must be unique"
msgstr "{0} mora biti jedinstveno"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr "{0} mora biti {1} {2}"
@@ -31284,16 +31202,12 @@ msgstr "{0} od {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} od {1} ({2} redova sa zavisnim podacima)"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr "{0} od {1} poslato"
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr "samo {0}."
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} ili {1}"
@@ -31330,11 +31244,11 @@ msgstr "{0} je uklonio svoj zadatak."
msgid "{0} role does not have permission on any doctype"
msgstr "Uloga {0} nema dozvole ni za jednu vrstu dokumenta"
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr "{0} red#{1}: "
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0} je uspešno sačuvano"
@@ -31446,7 +31360,7 @@ msgstr "{0} {1} ne postoji, izaberite novo tačku za spajanje"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} je povezan sa sledećim podnetim dokumentima: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} nije pronađen"
@@ -31599,11 +31513,11 @@ msgstr "{{{0}}} nije ispravan format naziva polja. Trebalo bi da bude {{field_na
msgid "{} Complete"
msgstr "{} završeno"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr "{} Nevažeći python kod na liniji {}"
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Potencijalno nevažeći python kod.
{}"
@@ -31625,7 +31539,7 @@ msgstr "{} polje ne može biti prazno."
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr "{} je onemogućeno. Može se omogućiti samo ukoliko je {} označeno."
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{} nije ispravan datum u tekstualnom formatu."
diff --git a/frappe/locale/sv.po b/frappe/locale/sv.po
index 9110367e65..86f89ad98b 100644
--- a/frappe/locale/sv.po
+++ b/frappe/locale/sv.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-28 17:46\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Swedish\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "\"I Lista Vy\" är otillåtet for typ {0} på rad {1}"
msgid "'Recipients' not specified"
msgstr "\"Mottagare\" inte angivet"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "'{0}' är inte en giltig webbadress"
@@ -1032,7 +1032,7 @@ msgstr "Åtgärd / Sökväg"
msgid "Action Complete"
msgstr "Åtgärd Klar"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "Åtgärd Misslyckades"
@@ -1671,6 +1671,14 @@ msgstr "Varna"
msgid "Alerts and Notifications"
msgstr "Varningar och Aviseringar"
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr "Alias kan inte vara SQL nyckelord: {0}"
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr "Alias måste vara sträng"
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1711,7 +1719,6 @@ msgstr "Justera Värde"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -2157,7 +2164,7 @@ msgstr "Ändring Ej Tillåten"
msgid "Amendment naming rules updated."
msgstr "Ändring av Nummer Serie uppdaterad."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr "Fel inträffade vid konfiguration av Session Standard"
@@ -2275,7 +2282,7 @@ msgstr "App Namn"
msgid "App not found for module: {0}"
msgstr "App hittades inte för modul: {0}"
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "App {0} är inte installerad"
@@ -2489,10 +2496,6 @@ msgstr "Är du säker på att du vill återställa alla anpassningar?"
msgid "Are you sure you want to save this document?"
msgstr "Är du säker på att du vill spara detta dokument?"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "Är du säker på att du vill skicka detta nyhetsbrev nu?"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2746,9 +2749,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr "Bifogat till namn måste vara en sträng eller ett heltal"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "Bilaga"
@@ -2775,10 +2776,7 @@ msgid "Attachment Removed"
msgstr "Bilaga Borttagen"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2796,11 +2794,6 @@ msgstr "Försöker starta QZ Aktivitet Fält..."
msgid "Attribution"
msgstr "Tillskrivning"
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr "Mottagare"
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3227,7 +3220,7 @@ msgstr "Bakgrund Bild"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr "Bakgrund Jobb"
@@ -3956,9 +3949,7 @@ msgstr "Återuppringning Benämning"
msgid "Camera"
msgstr "Kamera"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -4044,10 +4035,6 @@ msgstr "Annullera"
msgid "Cancel All Documents"
msgstr "Annullera Alla Dokument"
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr "Annullera Schemaläggning"
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4341,7 +4328,7 @@ msgstr "Kategori Beskrivning"
msgid "Category Name"
msgstr "Kategori Namn"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr "Cent"
@@ -4510,10 +4497,6 @@ msgstr "Markera"
msgid "Check Request URL"
msgstr "Kontrollera Begärd URL"
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr "Kontrollera felaktiga länkar"
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr "Markera kolumner för att välja, dra för att ange ordning."
@@ -4537,10 +4520,6 @@ msgstr "Välj detta för att tvinga användare att välja serie innan den kan sp
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr "Aktivera för att hela numeriska värdet visas (t.ex. 1.234.567 i stället för 1,2 miljoner)."
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr "Kontrollerar felaktiga länkar..."
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "Kontrollerar ett ögonblick"
@@ -4587,6 +4566,10 @@ msgstr "Underordnad tabell {0} för fält {1}"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Underordnade Tabeller visas som rutnät i andra DocTyper"
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr "Underordnade frågefält för '{0}' måste vara lista eller tupel."
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "Välj Befintligt Kort eller skapa Ny Kort"
@@ -4676,10 +4659,6 @@ msgstr "Klicka på Anpassa för att lägga till din första widget"
msgid "Click here"
msgstr "Klicka här"
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "Klicka här att verifiera"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "Klicka på fil för att välja det."
@@ -5021,7 +5000,7 @@ msgstr "Kolumner"
msgid "Columns / Fields"
msgstr "Kolumner / Fält"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "Kolumner baserade på"
@@ -5343,17 +5322,12 @@ msgstr "Bekräfta Lösenord"
msgid "Confirm Request"
msgstr "Bekräfta Begäran"
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "Bekräfta E-post"
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "Bekräftelse E-post Mall"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "Bekräftad"
@@ -5484,8 +5458,6 @@ msgstr "Innehåller {0} säkerhetskorrigeringar"
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5493,7 +5465,6 @@ msgstr "Innehåller {0} säkerhetskorrigeringar"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5518,10 +5489,8 @@ msgstr "Innehåll (Markdown)"
msgid "Content Hash"
msgstr "Innehåll Hash"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5627,6 +5596,10 @@ msgstr "Kunde inte hitta {0}"
msgid "Could not map column {0} to field {1}"
msgstr "Kunde inte mappa kolumn {0} till fält {1}"
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr "Kunde inte tolka fält: {0}"
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr "Kunde inte starta: "
@@ -5682,7 +5655,7 @@ msgstr "Räknare"
msgid "Country"
msgstr "Land"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr "Land Kod Erfordras"
@@ -5813,11 +5786,6 @@ msgstr "Skapa {0}"
msgid "Create a {0} Account"
msgstr "Skapa {0} Konto"
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr "Skapa och skicka e-post till specifik grupp av prenumeranter med jämna mellanrum."
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr "Skapa eller Redigera Utskrift Format"
@@ -6166,6 +6134,10 @@ msgstr "Anpassad Översättning"
msgid "Custom field renamed to {0} successfully."
msgstr "Anpassat fält bytte namn till {0}."
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr "Anpassad get_list-metod för {0} måste returnera QueryBuilder objekt eller None, fick {1}"
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6223,7 +6195,7 @@ msgstr "Anpassa Översikt Panel"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "Anpassa Formulär"
@@ -6516,7 +6488,6 @@ msgstr "Databas Version"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6580,6 +6551,11 @@ msgstr "Dag"
msgid "Day of Week"
msgstr "Veckodag"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr "Dagar"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6847,6 +6823,7 @@ msgstr "Försenad"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -7159,6 +7136,7 @@ msgstr "Skrivbord Tema"
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7915,7 +7893,7 @@ msgid "Document Types and Permissions"
msgstr "Dokument Typer och Behörigheter"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr "Dokument Upplåst"
@@ -8533,7 +8511,6 @@ msgstr "Element Väljare"
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8627,11 +8604,9 @@ msgstr "Bolag E-post Sidfot"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "E-post Grupp"
@@ -8704,18 +8679,11 @@ msgstr "Antal E-post Försök"
msgid "Email Rule"
msgstr "E-post Regel"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "E-post Skickad"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr "E-post skickad Kl"
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8822,10 +8790,18 @@ msgstr "E-post skickas med nästa möjliga arbetsflöde åtgärd"
msgid "Embed code copied"
msgstr "Bädda in kopierad kod"
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr "Tomt alias är inte tillåtet"
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr "Tom kolumn"
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr "Tomma strängargument är inte tillåtna"
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9290,6 +9266,14 @@ msgstr "Fel i Avisering"
msgid "Error in print format on line {0}: {1}"
msgstr "Fel i Utskrift Format på rad {0}: {1}"
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr "Fel i {0}.get_list: {1}"
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr "Fel vid tolkning av nästlade filter: {0}"
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "Fel vid anslutning till E-post Konto {0}"
@@ -9486,6 +9470,10 @@ msgstr "Expandera"
msgid "Expand All"
msgstr "Expandera Alla"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr "Operator \"and\" eller \"or\" förväntades, resultat: {0}"
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr "Experimentell"
@@ -10017,7 +10005,7 @@ msgstr "Fält Namn '{0}' är i konflikt med {1} av namn {2} i {3}"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Fält Namn {0} måste finnas för att aktivera automatisk namngivning"
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Fält Namn är begränsad till 64 tecken ({0})"
@@ -10033,7 +10021,7 @@ msgstr "Fält Namn som kommer att vara DocType för den här länk fält."
msgid "Fieldname {0} appears multiple times"
msgstr "Fält Namn {0} visas flera gånger"
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "Fält Namn {0} kan inte ha special tecken som {1}"
@@ -10085,6 +10073,10 @@ msgstr "Fält `file_name` eller `file_url` måste anges för fil"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "Filter måste vara lista eller tupel när as_list är aktiverad"
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr "Fält måste vara sträng, lista, tupel, pypika Fält eller pypika Funktion"
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10250,6 +10242,14 @@ msgstr "Filter Namn"
msgid "Filter Values"
msgstr "Filtervärden"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr "Filtervillkor saknas efter operator: {0}"
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr "Filterfält får inte innehålla bakåttecken (`)."
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr "Filter..."
@@ -10493,10 +10493,6 @@ msgstr "Följande fält saknar värde"
msgid "Following fields have missing values:"
msgstr "Följande fält saknar värde:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr "Följande länkar är brutna i e-postinnehållet: {0}"
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10913,10 +10909,8 @@ msgid "Friday"
msgstr "Fredag"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "Från"
@@ -10997,10 +10991,14 @@ msgstr "Funktion"
msgid "Function Based On"
msgstr "Funktion Baserad på"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr "Funktion {0} är inte vitlistad."
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr "Funktion {0} erfordrar argument men inga angavs"
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Extra noder kan endast skapas under 'grupp' typ noder"
@@ -11482,6 +11480,10 @@ msgstr "Gruppera Efter Typ"
msgid "Group By field is required to create a dashboard chart"
msgstr "Gruppera Efter Fält erfordras för att skapa Översikt Panel"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr "Gruppera Efter måste vara sträng"
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "Grupp Nod"
@@ -11530,7 +11532,6 @@ msgstr "HH: mm: ss"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11544,7 +11545,6 @@ msgstr "HH: mm: ss"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -12053,6 +12053,11 @@ msgstr "Timvis Underhåll"
msgid "Hourly rate limit for generating password reset links"
msgstr "Antal länkar som kan skapas per timme för byte av lösenord"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "Timmar"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12818,11 +12823,11 @@ msgstr "Felaktig Användare eller Lösenord"
msgid "Incorrect Verification code"
msgstr "Felaktig Verifiering Kod"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr "Felaktigt värde i rad {0}:"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr "Felaktigt värde:"
@@ -12974,11 +12979,11 @@ msgstr "Instruktioner"
msgid "Instructions Emailed"
msgstr "Instruktioner skickade per E-post"
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr "Otillräckliga Behörigheter för ändring av {0}"
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "Otillräckliga Behörigheter för ändring av {0}"
@@ -13128,7 +13133,7 @@ msgstr "Ogiltig Villkor: {}"
msgid "Invalid Credentials"
msgstr "Ogiltiga Uppgifter"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "Ogiltigt Datum"
@@ -13136,7 +13141,7 @@ msgstr "Ogiltigt Datum"
msgid "Invalid DocType"
msgstr "Ogiltig DocType"
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr "Ogiltig DocType: {0}"
@@ -13148,6 +13153,11 @@ msgstr "Ogiltigt Fält Namn"
msgid "Invalid File URL"
msgstr "Ogiltig Fil URL"
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr "Ogiltigt Filter"
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr "Ogiltig Filter Format för fält {0} av typ {1}. Försök att använda filter ikon på fält för att ange den korrekt"
@@ -13212,7 +13222,7 @@ msgstr "Ogiltiga Parametrar"
msgid "Invalid Password"
msgstr "Ogiltigt Lösenord"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr "Ogiltig Telefon Nummer"
@@ -13256,10 +13266,38 @@ msgstr "Ogiltig Webbhook Hemlighet"
msgid "Invalid aggregate function"
msgstr "Ogiltig aggregatfunktion"
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr "Ogiltig alias format: {0}. Alias måste vara enkel identifierare."
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr "Ogiltig argument format: {0}. Endast citerade sträng litteraler eller enkla fältnamn är tillåtna."
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr "Ogiltig argumenttyp: {0}. Endast strängar, siffror och None är tillåtna."
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr "Ogiltiga tecken i fältnamn: {0}. Endast bokstäver, siffror och understreck är tillåtna."
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr "Ogiltiga tecken i tabellnamn: {0}"
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "Ogiltig Kolumn"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr "Ogiltig villkorstyp i nästlade filter: {0}"
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr "Ogiltig riktning i Sortera Efter: {0}. Måste vara 'ASC' eller 'DESC'."
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "Ogiltig dokument status"
@@ -13272,10 +13310,26 @@ msgstr "Ogiltig uttryck angiven i filter {0}"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "Ogiltig uttryck angiven i sortering {0} ({1})"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr "Ogiltig fältformat för SELECT: {0}. Fältnamn måste vara enkla, bakåtkvalificerade, tabellkvalificerade, alias eller '*'."
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr "Ogiltig fältformat i {0}: {1}. Använd \"field\", \"link_field.field\" eller \"child_table.field\"."
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr "Ogiltig fältnamn i funktion: {0}. Endast enkla fältnamn är tillåtna."
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "Ogiltig Fält Namn {0}"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr "Ogiltig fälttyp: {0}"
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Ogiltig Fält Namn '{0}' i automatisk namn"
@@ -13284,11 +13338,26 @@ msgstr "Ogiltig Fält Namn '{0}' i automatisk namn"
msgid "Invalid file path: {0}"
msgstr "Ogiltig Sökväg: {0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr "Ogiltig filtervillkor: {0}. Förväntade lista eller tupel."
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr "Ogiltig filter fältformat: {0}. Använd 'fieldname' eller 'link_fieldname.target_fieldname'."
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "Ogiltig Filter: {0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr "Ogiltig typ av funktionsargument: {0}. Endast strängar, siffror, listor och None är tillåtna."
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr "Ogiltigt funktion ordbok format"
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13310,10 +13379,22 @@ msgstr "Ogiltig eller skadat innehåll för import"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "Ogiltigt omdirigering regex på rad #{}: {}"
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr "Ogiltiga begäran argument"
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr "Ogiltig enkelt filterformat: {0}"
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr "Ogiltig start för filtervillkor: {0}. Förväntade lista eller tupel."
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr "Ogiltig sträng litteral format: {0}"
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "Ogiltig mall fil för import"
@@ -13755,11 +13836,11 @@ msgstr "Anslagstavla Bord Kolumn"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "Anslagstavla Bord Namn"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "Anslagstavla Inställningar"
@@ -14471,6 +14552,10 @@ msgstr "Gillar"
msgid "Limit"
msgstr "Begränsa"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr "Gränsvärde får inte vara negativt heltal"
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14734,6 +14819,7 @@ msgid "Load Balancing"
msgstr "Last Balansering"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15252,11 +15338,9 @@ msgstr "Markera som Skräp"
msgid "Mark as Unread"
msgstr "Markera som Oläst"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15445,7 +15529,6 @@ msgstr "Sammanslafning är endast möjlig mellan grupp till grupp eller underord
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15458,7 +15541,6 @@ msgstr "Sammanslafning är endast möjlig mellan grupp till grupp eller underord
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15473,16 +15555,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Meddelande"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "Meddelande (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "Meddelande (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15606,7 +15678,7 @@ msgstr "Meta Benämning för SEO"
msgid "Method"
msgstr "Sätt"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr "Metod ej Tillåten"
@@ -15656,6 +15728,11 @@ msgstr "Minimum Lösenord Värde"
msgid "Minor"
msgstr "Minor"
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr "Minuter"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -16051,7 +16128,7 @@ msgstr "Måste omges av '()' och inkludera '{0}', som är platshållare för Anv
msgid "Must be of type \"Attach Image\""
msgstr "Måste vara av typ 'Bifoga Bild'"
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "Behörigheter saknas till den här rapport."
@@ -16241,6 +16318,10 @@ msgstr "Arbetsyta Ansvarig roll erfordras för att redigera andra användares pr
msgid "Negative Value"
msgstr "Negativ Värde"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr "Nästlade filter måste anges som lista eller tupel."
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "Nested set fel. Kontakta Administratör."
@@ -16323,7 +16404,7 @@ msgstr "Ny Händelse"
msgid "New Folder"
msgstr "Ny Mapp"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "Ny Anslagstavla"
@@ -16467,48 +16548,13 @@ msgstr "Nya {} versioner för följande appar finns tillgängliga"
msgid "Newly created user {0} has no roles enabled."
msgstr "Nyskapad användare {0} har inga roller aktiverade."
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "Nyhetsbrev"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr "Nyhetsbrev Bilaga"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "Nyhetsbrev E-post Grupp"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "Nyhetsbrev Ansvarig"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "Nyhetsbrev redan skickad"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr "Nyhetsbrev måste publiceras för att skicka webbvylänk i E-post"
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "Nyhetsbrev ska ha minst en mottagare"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "Nyhetsbrev"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16770,7 +16816,7 @@ msgstr "Inga Träffar"
msgid "No Roles Specified"
msgstr "Inga Roller Specificerade"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr "Ingen Välj Fält Hittad"
@@ -16798,10 +16844,6 @@ msgstr "Inga varningar för idag"
msgid "No automatic optimization suggestions available."
msgstr "Ingen automatisk optimering förslag tillgänglig."
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr "Inga brutna länkar hittades i e-post"
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "Inga Ändringar"
@@ -16838,7 +16880,7 @@ msgstr "Inga kontakter upplagda än."
msgid "No contacts linked to document"
msgstr "Inga Kontakter länkade till dokument"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "Ingen Data att exportera"
@@ -16858,7 +16900,7 @@ msgstr "Ingen E-post Konto kopplad till Användare. Lägg till konto under Anvä
msgid "No failed logs"
msgstr "Inga Misslyckade Logg"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "Inga fält hittades som kan användas som Anslagstavla kolumn. Använd Anpassa Formulär för att lägga till anpassat fält av typ \"Välj\"."
@@ -16917,7 +16959,7 @@ msgstr "Antal Rader (Max 500)"
msgid "No of Sent SMS"
msgstr "Antal Skickade SMS"
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "Ingen Behörighet för {0}"
@@ -17045,7 +17087,7 @@ msgstr "Ej Underordnad Av"
msgid "Not Equals"
msgstr "Inte Lika"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "Hittades Inte"
@@ -17071,7 +17113,7 @@ msgstr "Ej Länkad till någon post"
msgid "Not Nullable"
msgstr "Ej Nollställbar"
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17080,7 +17122,7 @@ msgstr "Ej Nollställbar"
msgid "Not Permitted"
msgstr "Inte Tillåtet"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr "Ej Tillåtet att läsa {0}"
@@ -17108,7 +17150,6 @@ msgstr "Ej Visad"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "Ej Skickad"
@@ -17141,7 +17182,7 @@ msgstr "Ej giltig Användare"
msgid "Not active"
msgstr "Inte Aktiv"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "Ej tillåtet för {0}: {1}"
@@ -17575,6 +17616,10 @@ msgstr "Offset X"
msgid "Offset Y"
msgstr "Offset Y"
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr "Förskjutning får inte vara negativt heltal"
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "Gammalt Lösenord"
@@ -17748,7 +17793,7 @@ msgstr "Endast Workspace Manager kan redigera offentliga arbetsytor"
msgid "Only allowed to export customizations in developer mode"
msgstr "Endast tillåtet att exportera anpassningar i utvecklarläge"
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr "Endast utkast dokument kan ångras"
@@ -17823,7 +17868,7 @@ msgstr "Öppna Awesomebar"
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:96
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:97
msgid "Open Communication"
-msgstr "Öppna Konversation"
+msgstr "Öppna Kommunikation"
#: frappe/templates/emails/new_notification.html:10
msgid "Open Document"
@@ -17920,7 +17965,7 @@ msgstr "Öppnad"
msgid "Operation"
msgstr "Åtgärd"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "Operatören måste vara en av {0}"
@@ -18019,6 +18064,10 @@ msgstr "Orange"
msgid "Order"
msgstr "Order"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr "Sortera Efter måste vara sträng"
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18414,7 +18463,7 @@ msgstr "Överordnad är namn på dokument som data kommer att läggas till."
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr "Gruppering av överordnad till underordnad eller underordnad till överordnad är inte tillåten."
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr "Överordnad fält är inte specificerad i {0}: {1}"
@@ -18536,10 +18585,6 @@ msgstr "Lösenord stämmer inte"
msgid "Passwords do not match!"
msgstr "Lösenord stämmer inte!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr "Tidigare datum är inte tillåtna för Schemaläggning."
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "Klistra In"
@@ -18685,7 +18730,7 @@ msgstr "Godkänn {0}?"
msgid "Permanently delete {0}?"
msgstr "Permanent ta bort {0}?"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "Behörighet Fel"
@@ -18837,7 +18882,7 @@ msgstr "Telefon"
msgid "Phone No."
msgstr "Telefon Nummer."
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "Telefon Nummer {0} som anges i fält {1} är inte giltig."
@@ -19110,10 +19155,6 @@ msgstr "Ta bort skrivare mappning i Skrivare Inställningar och försök igen."
msgid "Please save before attaching."
msgstr "Spara före bifoga."
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "Spara Nyhetsbrev före skicka"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "Spara dokument före tilldelning"
@@ -19146,7 +19187,7 @@ msgstr "Välj Minsta Lösenord Värde"
msgid "Please select X and Y fields"
msgstr "Välj X och Y fält"
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr "Välj landskod för fält {1}."
@@ -19162,7 +19203,7 @@ msgstr "Välj fil eller URL"
msgid "Please select a valid csv file with data"
msgstr "Välj giltig CSV fil med data"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "Välj giltig datum filter"
@@ -19240,7 +19281,7 @@ msgstr "Ange standard utgående e-postkonto från Verktyg > E-postkonto"
msgid "Please specify"
msgstr "Specificera"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr "Ange giltig överordnad DocType för {0}"
@@ -19277,10 +19318,6 @@ msgstr "Uppdatera {} innan du fortsätter."
msgid "Please use a valid LDAP search filter"
msgstr "Använd giltig LDAP Sökfilter"
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "Verifiera din e-postadress"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "Besök https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key för mer information."
@@ -19374,6 +19411,10 @@ msgstr "Poster av {0}"
msgid "Posts filed under {0}"
msgstr "Poster arkiverade under {0}"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr "Potentiell farligt innehåll i sträng litteral: {0}"
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19433,7 +19474,7 @@ msgstr "Förberedd Rapport Analys"
msgid "Prepared Report User"
msgstr "Förberedd Rapport Användare"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr "Förberedd Rapport Misslyckad"
@@ -19462,8 +19503,6 @@ msgstr "Tryck på Enter att Spara"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19851,7 +19890,7 @@ msgstr "Profil"
msgid "Progress"
msgstr "Framsteg"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "Projekt"
@@ -19946,14 +19985,7 @@ msgstr "Allmänna Filer (MB)"
msgid "Publish"
msgstr "Publicera"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr "Publicera som Webbsida"
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19961,7 +19993,6 @@ msgstr "Publicera som Webbsida"
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -20136,7 +20167,7 @@ msgstr "Dataförfråga Rapport"
msgid "Query analysis complete. Check suggested indexes."
msgstr "Frågeanalys klar. Kontrollera föreslagna index."
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr "Dataförfråga måste vara av typen SELECT eller skrivskyddad WITH."
@@ -20182,7 +20213,6 @@ msgstr "Kö(er)"
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "I Kö"
@@ -20205,19 +20235,11 @@ msgstr "I Kö för Godkännade. Du kan spåra framsteg över {0}."
msgid "Queued for backup. You will receive an email with the download link"
msgstr "I Kö för Säkerhetskopiering. Du kommer att få E-post meddelande med hämtning länk"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr " I Kö {0} e-post meddelande"
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr "Kö "
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr "E-post i kö..."
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr "I Kö {0} för Godkännade"
@@ -20418,7 +20440,7 @@ msgstr "Läst av Mottagare(Datum)"
msgid "Read mode"
msgstr "Läs läge "
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr "Läs dokumentation för att reda på mer"
@@ -21285,7 +21307,7 @@ msgstr "Rapport gräns nådd"
msgid "Report timed out."
msgstr "Rapport förföll."
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "Rapport är uppdaterad"
@@ -21306,7 +21328,7 @@ msgstr "Rapport {0}"
msgid "Report {0} deleted"
msgstr "Rapport {0} raderad"
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "Rapport {0} är inaktiverad"
@@ -21639,10 +21661,8 @@ msgstr "Återkalla"
msgid "Revoked"
msgstr "Återkallad"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21853,7 +21873,6 @@ msgstr "Avrundning Sätt"
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21867,7 +21886,6 @@ msgstr "Avrundning Sätt"
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21985,7 +22003,7 @@ msgstr "Regel"
msgid "Rule Conditions"
msgstr "Regel Villkor"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Regel för denna kombination av doctype, roll, åtkomstnivå och om ansvarig redan finns."
@@ -22174,11 +22192,11 @@ msgstr "Lördag"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22270,32 +22288,17 @@ msgstr "Skanna QR Kod och ange resulterande koden som visas."
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr "Schema"
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr "Schemalägg Nyhetsbrev"
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr "Datum och Tid att Skicka"
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr "Schemalägg Skicka"
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr "Schemalägg Skicka vid senare tillfälle"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "Schemalagd"
@@ -22329,17 +22332,6 @@ msgstr "Schemalagd Jobb"
msgid "Scheduled Jobs Logs"
msgstr "Schemalagda Jobb Logg"
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr "Schemalagd Sändning"
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "Schemalagd Att Skicka"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "Schemalagd körning av Skript {0} är uppdaterad"
@@ -22551,6 +22543,11 @@ msgstr "Sök..."
msgid "Searching ..."
msgstr "Söker..."
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr "Sekunder"
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22940,9 +22937,7 @@ msgstr "Välj {0}"
msgid "Self approval is not allowed"
msgstr "Ej Tillåtet att godkänna själv "
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "Skicka"
@@ -22973,11 +22968,6 @@ msgstr "Skicka Avisering"
msgid "Send Email Alert"
msgstr "Skicka E-post Avisering"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr "Skicka E-post"
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -23035,38 +23025,16 @@ msgstr "Skicka Läskvitto"
msgid "Send System Notification"
msgstr "Skicka System Avisering"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr "Skicka test e-post"
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "Skicka till alla Tilldelade"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "Skicka Avregistrering Länk"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr "Skicka Webb Vy Länk"
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "Skicka Välkomst E-post"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr "Skicka test e-post"
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr "Skicka igen"
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -23114,10 +23082,6 @@ msgstr "Skicka Inloggning Länk"
msgid "Send me a copy"
msgstr "Skicka Kopia till mig"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr "Skicka nu"
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -23133,19 +23097,15 @@ msgstr "Skicka Avregistrering Meddelande i E-post"
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "Avsändare"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "Avsändare E-post"
@@ -23162,9 +23122,7 @@ msgid "Sender Field should have Email in options"
msgstr "Avsändare Fält ska ha E-post i Alternativ"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr "Avsändare Namn"
@@ -23184,18 +23142,9 @@ msgstr "Sendgrid"
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "Skickar"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr "Skickar e-post"
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr "Skickar..."
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23203,8 +23152,6 @@ msgstr "Skickar..."
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "Skickad"
@@ -23274,7 +23221,7 @@ msgstr "Nummer Serie {0} används redan i {1}"
msgid "Server Action"
msgstr "Server Åtgärd"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Server Fel"
@@ -23293,7 +23240,7 @@ msgstr "Server IP"
msgid "Server Script"
msgstr "Server Skript"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "Server Skript är inaktiverad. Aktivera Server Skript från bench."
@@ -23332,15 +23279,15 @@ msgstr "Session Standard Inställningar"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "Session Inställningar"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "Session Inställningar Sparade"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "Session Förföll"
@@ -23594,7 +23541,7 @@ msgstr "Konfigurerar System"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24677,7 +24624,6 @@ msgstr "Statistik Tid Intervall"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24702,7 +24648,6 @@ msgstr "Statistik Tid Intervall"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24843,8 +24788,6 @@ msgstr "Underdomän"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24853,7 +24796,6 @@ msgstr "Underdomän"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25224,7 +25166,7 @@ msgstr "Synkroniserar"
msgid "Syncing {0} of {1}"
msgstr "Synkroniserar {0} av {1}"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr "Syntaxfel"
@@ -25531,7 +25473,7 @@ msgstr "Tabell Optimerad"
msgid "Table updated"
msgstr "Tabell Uppdaterad"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "Tabell {0} kan inte vara tom"
@@ -25658,10 +25600,6 @@ msgstr "Test Jobb ID"
msgid "Test Spanish"
msgstr "Testa Spanska"
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "Test E-post skickad till {0}"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Test Mapp"
@@ -25729,10 +25667,6 @@ msgstr "Tack för din E-post"
msgid "Thank you for your feedback!"
msgstr "Tack för återkoppling!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "Tack för prenumereration på vårt nyghetsbrev"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr "Tack för ditt meddelande"
@@ -25923,7 +25857,7 @@ msgstr "Länk för återställning av lösenord har upphört att gälla"
msgid "The reset password link has either been used before or is invalid"
msgstr "Länk för återställning av lösenord har antingen använts tidigare eller är ogiltig"
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Resurs är inte tillgänglig"
@@ -25935,7 +25869,7 @@ msgstr "Roll {0} ska vara anpassad roll."
msgid "The selected document {0} is not a {1}."
msgstr "Vald dokument {0} är inte {1}."
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Systemet håller på att uppdateras. Uppdatera igen efter en stund."
@@ -26088,7 +26022,7 @@ msgstr "Tredje Parts Autentisering"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Denna Valuta är inaktiverad. Aktivera det att använda i transaktioner"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "Detta Anslagstavla Bord kommer att vara privat"
@@ -26112,7 +26046,7 @@ msgstr "I År"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Denna åtgärd är oåterkallelig. Vill du fortsätta?"
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "Åtgärd är endast tillåten för {}"
@@ -26275,14 +26209,6 @@ msgstr "Detta kan skrivas ut på flera sidor"
msgid "This month"
msgstr "Nuvarande Månad"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr "Detta nyhetsbrev är planerat att skickas {0}"
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr "Detta nyhetsbrev var planerat att skickas vid ett senare datum. Är du säker på att du vill skicka den nu?"
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Denna rapport innehåller {0} rader och är för stor för att visas i webbläsare. Du kan {1} denna rapport istället."
@@ -26395,7 +26321,6 @@ msgstr "Torsdag"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Tid"
@@ -26621,10 +26546,8 @@ msgid "Title of the page"
msgstr "Sida Benämning"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "Till"
@@ -26905,7 +26828,7 @@ msgstr "Topp Höger"
msgid "Topic"
msgstr "Ämne"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26933,16 +26856,8 @@ msgstr "Totalt Antal Bilder"
msgid "Total Outgoing Emails"
msgstr "Totalt Utgående E-post "
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr "Totalt Antal Mottagare"
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "Totalt Antal Prenumeranter"
@@ -26951,11 +26866,6 @@ msgstr "Totalt Antal Prenumeranter"
msgid "Total Users"
msgstr "Totalt Användare"
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr "Totalt Antal Visningar"
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27355,23 +27265,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "Omdirigering URL när du klickar på Bildspel Bild"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr "UTM Kampanj"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr "UTM Medium"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr "UTM Källa"
@@ -27421,7 +27325,7 @@ msgstr "Kunde inte skriva fil format för {0}"
msgid "Unassign Condition"
msgstr "Inaktivera Villkor"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr "Ofångat Undantag"
@@ -27437,6 +27341,10 @@ msgstr "Ångra"
msgid "Undo last action"
msgstr "Ångra Senaste Åtgärd"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr "Oescapede citattecken i sträng literal: {0}"
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27469,7 +27377,7 @@ msgstr "Okänd"
msgid "Unknown Column: {0}"
msgstr "Okänd Kolumn: {0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr "Okänd Avrundning Sätt: {}"
@@ -27502,7 +27410,7 @@ msgstr "Oläst"
msgid "Unread Notification Sent"
msgstr "Oläst Avisering Skickad"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr "Osäker SQL Fråga"
@@ -27516,7 +27424,7 @@ msgstr "Avmarkera Alla"
msgid "Unshared"
msgstr "Odelad"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "Avregistrera"
@@ -27540,6 +27448,11 @@ msgstr "Avregistrering Parameter"
msgid "Unsubscribed"
msgstr "Avregistrerad"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr "Funktion som inte stöds eller ogiltigt fältnamn: {0}"
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "Namnlös Kolumn"
@@ -27662,7 +27575,7 @@ msgstr "Uppdaterad till ny Version 🎉"
msgid "Updated successfully"
msgstr "Uppdaterad"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "Uppdaterar"
@@ -28397,7 +28310,7 @@ msgstr "Värde för hög"
msgid "Value {0} missing for {1}"
msgstr "Värde {0} saknas för {1}"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "Värde {0} måste ha giltig varaktighet format: d h m s"
@@ -28822,7 +28735,6 @@ msgstr "Webhook URL"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28830,9 +28742,7 @@ msgid "Website"
msgstr "Webbplats"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "Webbplats Analys"
@@ -29268,7 +29178,7 @@ msgstr "Arbetsflöde är uppdaterad"
msgid "Workspace"
msgstr "Arbetsyta"
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr "Arbetsyta {0} finns inte"
@@ -29491,11 +29401,11 @@ msgstr "Du efterliknar som en annan användare."
msgid "You are not allowed to access this resource"
msgstr "Du har inte behörighet att komma åt denna resurs"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "Du har inte tillgång till denna {0} post eftersom den är länkad till {1} '{2}' i fält {3}"
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "Du har inte tillgång till denna {0} post eftersom den är länkad till {1} '{2}' i rad {3}, fält {4}"
@@ -29518,7 +29428,7 @@ msgstr "Du har inte behörighet att redigera rapport."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "Du har inte behörighet att exportera {} doctype"
@@ -29546,7 +29456,7 @@ msgstr "Du har inte behörighet att komma åt denna sida utan inloggning."
msgid "You are not permitted to access this page."
msgstr "Du har inte behörighet att komma åt den här sidan."
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr "Du har inte tillåtelse att komma åt denna resurs. Logga in för att komma åt"
@@ -29641,7 +29551,7 @@ msgstr "Välja en från följande,"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "Ange ett högt värde här om flera användare kommer att logga in från samma nätverk."
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "Du kan försöka ändra Filter i Rapport."
@@ -29718,11 +29628,15 @@ msgstr "Du har inte Läs eller Val Behörigheter för {}"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Du har inte behörighet för att komma åt denna resurs. Kontakta Administratör ."
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "Du har inte behörighet att slutföra åtgärd"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr "Du har inte åtkomstbehörighet till fält: {0}"
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr "Du har inte behörighet att komma åt {0}: {1}."
@@ -29730,7 +29644,7 @@ msgstr "Du har inte behörighet att komma åt {0}: {1}."
msgid "You do not have permissions to cancel all linked documents."
msgstr "Du har inte behörighet att annullera alla länkade dokument."
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "Du har inte behörighet till Rapport: {0}"
@@ -29738,11 +29652,11 @@ msgstr "Du har inte behörighet till Rapport: {0}"
msgid "You don't have permission to access the {0} DocType."
msgstr "Du har inte behörighet att komma åt {0} DocType."
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "Du har inte behörighet att komma åt den här filen"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "Du har inte behörighet att hämta rapport {0}"
@@ -29835,7 +29749,7 @@ msgstr "Du måste vara systemanvändare för att komma åt denna sida."
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Du måste vara i Utvecklarläge att redigera Standard Webb Formulär"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Du måste vara inloggad och ha System Ansvarig roll för att kunna ha tillgång till säkerhetskopior."
@@ -30001,7 +29915,7 @@ msgstr "Bolag Namn och Adress för E-post Sidfot."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Din fråga har mottagits. Vi kommer att svara inom kort. Om du har någon ytterligare information, vänligen svara på detta mail."
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "Din session har gått ut, logga in igen för att fortsätta."
@@ -30013,7 +29927,7 @@ msgstr "Webbplats genomgår underhåll eller uppdateras."
msgid "Your verification code is {0}"
msgstr "Din verifiering kod är {0}"
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "Noll"
@@ -30060,7 +29974,7 @@ msgstr "efter_infoga"
msgid "amend"
msgstr "ändra"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "och"
@@ -30117,7 +30031,7 @@ msgstr "skapa"
msgid "cyan"
msgstr "cyan"
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30232,7 +30146,7 @@ msgstr "E-post"
msgid "email inbox"
msgstr "e-post inkorg"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "tom"
@@ -30284,7 +30198,7 @@ msgstr "grå"
msgid "gzip not found in PATH! This is required to take a backup."
msgstr "gzip hittades inte i SÖKVÄG! Erfordras för att skapa säkerhetskopia."
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30318,7 +30232,7 @@ msgstr "användare@bolag"
msgid "just now"
msgstr "just nu"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr "etikett"
@@ -30358,7 +30272,7 @@ msgstr "Inloggning Erfordras "
msgid "long"
msgstr "lång"
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30548,7 +30462,7 @@ msgstr "svar"
msgid "restored {0} as {1}"
msgstr "återställde {0} som {1}"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30883,7 +30797,7 @@ msgstr "{0} redan avregistrerad"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} redan avregistrerad för {1} {2}"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} och {1}"
@@ -30989,6 +30903,10 @@ msgstr "{0} finns inte på rad {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "{0} fält kan inte anges som unikt i {1}, eftersom det inte finns unika befintliga värden"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr "{0} fält får inte innehålla bakåttecken (`): {1}"
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "{0} format kunde inte fastställas från värden i denna kolumn. Standard Inställning är {1}."
@@ -31009,10 +30927,6 @@ msgstr "{0} h"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} är redan tilldelat standard värde för {1}."
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} är lagd till E-post Grupp."
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} har lämnat konversation i {1} {2}"
@@ -31083,6 +30997,10 @@ msgstr "{0} är som {1}"
msgid "{0} is mandatory"
msgstr "{0} är erfodrad"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr "{0} är inte undertabell till {1}"
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr "{0} är inte ett fält av doctype {1}"
@@ -31104,7 +31022,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} är inte en giltig DocType för Dynamisk Länk"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0} är inte giltig E-post"
@@ -31112,11 +31030,11 @@ msgstr "{0} är inte giltig E-post"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} är inte giltig ISO 3166 ALPHA-2 kod."
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0} är inte giltigt Namn"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} är inte giltigt Telefon Nummer"
@@ -31124,11 +31042,11 @@ msgstr "{0} är inte giltigt Telefon Nummer"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} är inte giltig tillstånd för Arbetsflöde. Uppdatera Arbetsflöde och försök igen."
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} är inte en giltig överordnad DocType för {1}"
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} är inte ett giltigt överordnat fält för {1}"
@@ -31216,23 +31134,23 @@ msgstr "{0} minuter sedan"
msgid "{0} months ago"
msgstr "{0} månader sedan"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0} måste vara efter {1}"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr "{0} måste börja med '{1}'"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr "{0} måste vara lika med '{1}'"
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr "{0} måste inte vara någon av {1}"
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} måste vara en av {1}"
@@ -31244,7 +31162,7 @@ msgstr "{0} måste anges först"
msgid "{0} must be unique"
msgstr "{0} måste vara unik"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr "{0} måste vara {1} {2}"
@@ -31273,16 +31191,12 @@ msgstr "{0} av {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} av {1} ({2} rader med underordnade)"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr "{0} av {1} skickade"
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr "{0} ."
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} eller {1}"
@@ -31319,11 +31233,11 @@ msgstr "{0} tog bort sin tilldelning."
msgid "{0} role does not have permission on any doctype"
msgstr "{0} roll har inte tillstånd på någon doctype"
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr "{0} rad #{1}: "
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0} sparad"
@@ -31435,7 +31349,7 @@ msgstr "{0} {1} finns inte, välj ett nytt mål för att slå samman"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} är länkad till följande godkända dokument: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} hittades inte"
@@ -31588,11 +31502,11 @@ msgstr "{{{0}}} är inte giltigt fältnamn mönster. Det borde vara {{field_name
msgid "{} Complete"
msgstr "{} Klar"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr "{} Ogiltig python kod på rad {}"
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Möjligen ogiltig python kod.
{}"
@@ -31614,7 +31528,7 @@ msgstr "{} fält kan inte vara tom."
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr "{} är inaktiverad. Den kan bara aktiveras om {} är markerad."
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{} är inte giltig datum sträng."
diff --git a/frappe/locale/th.po b/frappe/locale/th.po
index 6269bb8093..5a2fa7be28 100644
--- a/frappe/locale/th.po
+++ b/frappe/locale/th.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-26 17:15\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Thai\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "ในมุมมองรายการ ไม่อนุญาต
msgid "'Recipients' not specified"
msgstr "ผู้รับ ไม่ได้ระบุ"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "'{0}' ไม่ใช่ URL ที่ถูกต้อง"
@@ -850,7 +850,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr ""
@@ -1489,6 +1489,14 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1529,7 +1537,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1974,7 +1981,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2092,7 +2099,7 @@ msgstr ""
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr ""
@@ -2306,10 +2313,6 @@ msgstr "คุณแน่ใจหรือไม่ว่าต้องกา
msgid "Are you sure you want to save this document?"
msgstr "คุณแน่ใจหรือไม่ว่าต้องการบันทึกเอกสารนี้?"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "คุณแน่ใจหรือไม่ว่าต้องการส่งจดหมายข่าวนี้ตอนนี้?"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2563,9 +2566,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr ""
@@ -2592,10 +2593,7 @@ msgid "Attachment Removed"
msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2613,11 +2611,6 @@ msgstr ""
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3044,7 +3037,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr ""
@@ -3772,9 +3765,7 @@ msgstr "ชื่อการเรียกกลับ"
msgid "Camera"
msgstr "กล้อง"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3860,10 +3851,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4157,7 +4144,7 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr ""
@@ -4325,10 +4312,6 @@ msgstr ""
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4352,10 +4335,6 @@ msgstr ""
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr ""
@@ -4402,6 +4381,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4491,10 +4474,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4836,7 +4815,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr ""
@@ -5156,17 +5135,12 @@ msgstr ""
msgid "Confirm Request"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr ""
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr ""
@@ -5297,8 +5271,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5306,7 +5278,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5331,10 +5302,8 @@ msgstr ""
msgid "Content Hash"
msgstr ""
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5440,6 +5409,10 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5495,7 +5468,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5626,11 +5599,6 @@ msgstr ""
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -5979,6 +5947,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6036,7 +6008,7 @@ msgstr "ปรับแต่งแดชบอร์ด"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "ปรับแต่งฟอร์ม"
@@ -6329,7 +6301,6 @@ msgstr "เวอร์ชันฐานข้อมูล"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6393,6 +6364,11 @@ msgstr "วัน"
msgid "Day of Week"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr "วัน"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6660,6 +6636,7 @@ msgstr "ล่าช้า"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6972,6 +6949,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7725,7 +7703,7 @@ msgid "Document Types and Permissions"
msgstr "ประเภทเอกสารและสิทธิ์"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr "เอกสารถูกปลดล็อก"
@@ -8343,7 +8321,6 @@ msgstr "ตัวเลือกองค์ประกอบ"
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8437,11 +8414,9 @@ msgstr "ที่อยู่ส่วนท้ายอีเมล"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "กลุ่มอีเมล"
@@ -8514,18 +8489,11 @@ msgstr "ขีดจำกัดการลองใหม่ของอีเ
msgid "Email Rule"
msgstr "กฎอีเมล"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "ส่งอีเมลแล้ว"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr "ส่งอีเมลเมื่อ"
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8632,10 +8600,18 @@ msgstr "อีเมลจะถูกส่งพร้อมกับการ
msgid "Embed code copied"
msgstr "คัดลอกรหัสฝังแล้ว"
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr "คอลัมน์ว่างเปล่า"
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9099,6 +9075,14 @@ msgstr "ข้อผิดพลาดในการแจ้งเตือน
msgid "Error in print format on line {0}: {1}"
msgstr "ข้อผิดพลาดในรูปแบบการพิมพ์ในบรรทัด {0}: {1}"
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "ข้อผิดพลาดขณะเชื่อมต่อกับบัญชีอีเมล {0}"
@@ -9295,6 +9279,10 @@ msgstr "ขยาย"
msgid "Expand All"
msgstr "ขยายทั้งหมด"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr "การทดลอง"
@@ -9826,7 +9814,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9842,7 +9830,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -9894,6 +9882,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10059,6 +10051,14 @@ msgstr ""
msgid "Filter Values"
msgstr ""
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10302,10 +10302,6 @@ msgstr "ฟิลด์ต่อไปนี้มีค่าที่ขาด
msgid "Following fields have missing values:"
msgstr "ฟิลด์ต่อไปนี้มีค่าที่ขาดหายไป:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr "ลิงก์ต่อไปนี้เสียในเนื้อหาอีเมล: {0}"
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10722,10 +10718,8 @@ msgid "Friday"
msgstr "วันศุกร์"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "จาก"
@@ -10806,10 +10800,14 @@ msgstr "ฟังก์ชัน"
msgid "Function Based On"
msgstr "ฟังก์ชันตาม"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr "ฟังก์ชัน {0} ไม่ได้อยู่ในรายการที่อนุญาต"
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "สามารถสร้างโหนดเพิ่มเติมได้เฉพาะภายใต้โหนดประเภท 'กลุ่ม'"
@@ -11291,6 +11289,10 @@ msgstr "จัดกลุ่มตามประเภท"
msgid "Group By field is required to create a dashboard chart"
msgstr "ฟิลด์จัดกลุ่มตามเป็นสิ่งจำเป็นในการสร้างแผนภูมิแดชบอร์ด"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "โหนดกลุ่ม"
@@ -11339,7 +11341,6 @@ msgstr ""
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11353,7 +11354,6 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11862,6 +11862,11 @@ msgstr "การบำรุงรักษารายชั่วโมง"
msgid "Hourly rate limit for generating password reset links"
msgstr "ขีดจำกัดอัตรารายชั่วโมงสำหรับการสร้างลิงก์รีเซ็ตรหัสผ่าน"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "ชั่วโมง"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12627,11 +12632,11 @@ msgstr "ผู้ใช้หรือรหัสผ่านไม่ถูก
msgid "Incorrect Verification code"
msgstr "รหัสยืนยันไม่ถูกต้อง"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr "ค่าที่ไม่ถูกต้องในแถว {0}:"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr "ค่าที่ไม่ถูกต้อง:"
@@ -12783,11 +12788,11 @@ msgstr "คำแนะนำ"
msgid "Instructions Emailed"
msgstr "ส่งคำแนะนำทางอีเมลแล้ว"
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr "ระดับสิทธิ์ไม่เพียงพอสำหรับ {0}"
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "สิทธิ์ไม่เพียงพอสำหรับ {0}"
@@ -12937,7 +12942,7 @@ msgstr "เงื่อนไขไม่ถูกต้อง: {}"
msgid "Invalid Credentials"
msgstr "ข้อมูลประจำตัวไม่ถูกต้อง"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "วันที่ไม่ถูกต้อง"
@@ -12945,7 +12950,7 @@ msgstr "วันที่ไม่ถูกต้อง"
msgid "Invalid DocType"
msgstr "DocType ไม่ถูกต้อง"
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr "DocType ไม่ถูกต้อง: {0}"
@@ -12957,6 +12962,11 @@ msgstr "ชื่อฟิลด์ไม่ถูกต้อง"
msgid "Invalid File URL"
msgstr "URL ไฟล์ไม่ถูกต้อง"
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr "รูปแบบตัวกรองไม่ถูกต้องสำหรับฟิลด์ {0} ของประเภท {1} ลองใช้ไอคอนตัวกรองในฟิลด์เพื่อกำหนดค่าให้ถูกต้อง"
@@ -13021,7 +13031,7 @@ msgstr "พารามิเตอร์ไม่ถูกต้อง"
msgid "Invalid Password"
msgstr "รหัสผ่านไม่ถูกต้อง"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr "หมายเลขโทรศัพท์ไม่ถูกต้อง"
@@ -13065,10 +13075,38 @@ msgstr "Webhook Secret ไม่ถูกต้อง"
msgid "Invalid aggregate function"
msgstr "ฟังก์ชันการรวมไม่ถูกต้อง"
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "คอลัมน์ไม่ถูกต้อง"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "สถานะเอกสารไม่ถูกต้อง"
@@ -13081,10 +13119,26 @@ msgstr "นิพจน์ที่ตั้งค่าในตัวกรอ
msgid "Invalid expression set in filter {0} ({1})"
msgstr "นิพจน์ที่ตั้งค่าในตัวกรอง {0} ({1}) ไม่ถูกต้อง"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "ชื่อฟิลด์ไม่ถูกต้อง {0}"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "ชื่อฟิลด์ไม่ถูกต้อง '{0}' ใน autoname"
@@ -13093,11 +13147,26 @@ msgstr "ชื่อฟิลด์ไม่ถูกต้อง '{0}' ใน a
msgid "Invalid file path: {0}"
msgstr "เส้นทางไฟล์ไม่ถูกต้อง: {0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "ตัวกรองไม่ถูกต้อง: {0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13119,10 +13188,22 @@ msgstr "เนื้อหาไม่ถูกต้องหรือเสี
msgid "Invalid redirect regex in row #{}: {}"
msgstr "รีไดเรกต์ regex ไม่ถูกต้องในแถว #{}: {}"
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr "อาร์กิวเมนต์คำขอไม่ถูกต้อง"
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "ไฟล์แม่แบบไม่ถูกต้องสำหรับการนำเข้า"
@@ -13564,11 +13645,11 @@ msgstr "คอลัมน์กระดานคัมบัง"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "ชื่อกระดานคัมบัง"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "การตั้งค่าคัมบัง"
@@ -14280,6 +14361,10 @@ msgstr "การถูกใจ"
msgid "Limit"
msgstr "ขีดจำกัด"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14543,6 +14628,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15061,11 +15147,9 @@ msgstr ""
msgid "Mark as Unread"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15254,7 +15338,6 @@ msgstr "การรวมสามารถทำได้เฉพาะระ
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15267,7 +15350,6 @@ msgstr "การรวมสามารถทำได้เฉพาะระ
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15282,16 +15364,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "ข้อความ"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "ข้อความ (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "ข้อความ (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15415,7 +15487,7 @@ msgstr "ชื่อเรื่องเมตาสำหรับ SEO"
msgid "Method"
msgstr "วิธีการ"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr "ไม่อนุญาตวิธีการ"
@@ -15465,6 +15537,11 @@ msgstr "คะแนนรหัสผ่านขั้นต่ำ"
msgid "Minor"
msgstr "เล็กน้อย"
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr "นาที"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15860,7 +15937,7 @@ msgstr "ต้องอยู่ใน '()' และรวม '{0}' ซึ่
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "ต้องมีสิทธิ์รายงานเพื่อเข้าถึงรายงานนี้"
@@ -16048,6 +16125,10 @@ msgstr "ต้องการบทบาทผู้จัดการพื้
msgid "Negative Value"
msgstr "ค่าติดลบ"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "ข้อผิดพลาดชุดซ้อน โปรดติดต่อผู้ดูแลระบบ"
@@ -16130,7 +16211,7 @@ msgstr "เหตุการณ์ใหม่"
msgid "New Folder"
msgstr "โฟลเดอร์ใหม่"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "กระดานคัมบังใหม่"
@@ -16274,48 +16355,13 @@ msgstr "มีการเผยแพร่ {} ใหม่สำหรับ
msgid "Newly created user {0} has no roles enabled."
msgstr "ผู้ใช้ที่สร้างใหม่ {0} ไม่มีบทบาทที่เปิดใช้งาน"
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "จดหมายข่าว"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr "ไฟล์แนบจดหมายข่าว"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "กลุ่มอีเมลจดหมายข่าว"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "ผู้จัดการจดหมายข่าว"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "จดหมายข่าวถูกส่งไปแล้ว"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr "จดหมายข่าวต้องเผยแพร่เพื่อส่งลิงก์เว็บวิวในอีเมล"
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "จดหมายข่าวควรมีผู้รับอย่างน้อยหนึ่งคน"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "จดหมายข่าวหลายฉบับ"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16577,7 +16623,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16605,10 +16651,6 @@ msgstr ""
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr ""
@@ -16645,7 +16687,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr ""
@@ -16665,7 +16707,7 @@ msgstr "ไม่มีบัญชีอีเมลที่เชื่อม
msgid "No failed logs"
msgstr "ไม่มีบันทึกที่ล้มเหลว"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16724,7 +16766,7 @@ msgstr "จำนวนแถว (สูงสุด 500)"
msgid "No of Sent SMS"
msgstr "จำนวน SMS ที่ส่ง"
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "ไม่มีสิทธิ์สำหรับ {0}"
@@ -16852,7 +16894,7 @@ msgstr "ไม่ใช่ลูกหลานของ"
msgid "Not Equals"
msgstr "ไม่เท่ากับ"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "ไม่พบ"
@@ -16878,7 +16920,7 @@ msgstr "ไม่ได้ลิงก์กับบันทึกใด ๆ"
msgid "Not Nullable"
msgstr "ไม่สามารถเป็นค่าว่างได้"
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16887,7 +16929,7 @@ msgstr "ไม่สามารถเป็นค่าว่างได้"
msgid "Not Permitted"
msgstr "ไม่ได้รับอนุญาต"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr "ไม่ได้รับอนุญาตให้อ่าน {0}"
@@ -16915,7 +16957,6 @@ msgstr "ไม่ได้เห็น"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "ไม่ได้ส่ง"
@@ -16948,7 +16989,7 @@ msgstr "ไม่ใช่ผู้ใช้ที่ถูกต้อง"
msgid "Not active"
msgstr "ไม่ใช้งาน"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "ไม่อนุญาตสำหรับ {0}: {1}"
@@ -17382,6 +17423,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr ""
@@ -17555,7 +17600,7 @@ msgstr "เฉพาะผู้จัดการพื้นที่ทำง
msgid "Only allowed to export customizations in developer mode"
msgstr "อนุญาตให้ส่งออกการปรับแต่งในโหมดนักพัฒนาเท่านั้น"
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr "สามารถทิ้งเอกสารร่างได้เท่านั้น"
@@ -17727,7 +17772,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "ผู้ปฏิบัติงานต้องเป็นหนึ่งใน {0}"
@@ -17826,6 +17871,10 @@ msgstr "สีส้ม"
msgid "Order"
msgstr "คำสั่งซื้อ"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18221,7 +18270,7 @@ msgstr "ผู้ปกครองคือชื่อของเอกสา
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr "ไม่อนุญาตให้จัดกลุ่มจากผู้ปกครองถึงลูกหรือจากลูกถึงผู้ปกครอง"
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr "ไม่ได้ระบุฟิลด์ผู้ปกครองใน {0}: {1}"
@@ -18343,10 +18392,6 @@ msgstr "รหัสผ่านไม่ตรงกัน"
msgid "Passwords do not match!"
msgstr "รหัสผ่านไม่ตรงกัน!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr "ไม่อนุญาตให้ใช้วันที่ที่ผ่านมาในการกำหนดเวลา"
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "วาง"
@@ -18492,7 +18537,7 @@ msgstr "ส่ง {0} อย่างถาวร?"
msgid "Permanently delete {0}?"
msgstr "ลบ {0} อย่างถาวร?"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "ข้อผิดพลาดในการอนุญาต"
@@ -18644,7 +18689,7 @@ msgstr "โทรศัพท์"
msgid "Phone No."
msgstr "หมายเลขโทรศัพท์"
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "หมายเลขโทรศัพท์ {0} ที่ตั้งค่าในฟิลด์ {1} ไม่ถูกต้อง"
@@ -18917,10 +18962,6 @@ msgstr "โปรดลบการแมปเครื่องพิมพ์
msgid "Please save before attaching."
msgstr "โปรดบันทึกก่อนแนบ"
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "โปรดบันทึกจดหมายข่าวก่อนส่ง"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "โปรดบันทึกเอกสารก่อนการมอบหมาย"
@@ -18953,7 +18994,7 @@ msgstr "โปรดเลือกคะแนนรหัสผ่านขั
msgid "Please select X and Y fields"
msgstr "โปรดเลือกฟิลด์ X และ Y"
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr "โปรดเลือกรหัสประเทศสำหรับฟิลด์ {1}"
@@ -18969,7 +19010,7 @@ msgstr "โปรดเลือกไฟล์หรือ URL"
msgid "Please select a valid csv file with data"
msgstr "โปรดเลือกไฟล์ CSV ที่ถูกต้องพร้อมข้อมูล"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "โปรดเลือกตัวกรองวันที่ที่ถูกต้อง"
@@ -19047,7 +19088,7 @@ msgstr "โปรดตั้งค่าบัญชีอีเมลขาอ
msgid "Please specify"
msgstr "โปรดระบุ"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr "โปรดระบุประเภทเอกสารหลักที่ถูกต้องสำหรับ {0}"
@@ -19084,10 +19125,6 @@ msgstr "โปรดอัปเดต {} ก่อนดำเนินกา
msgid "Please use a valid LDAP search filter"
msgstr "โปรดใช้ตัวกรองการค้นหา LDAP ที่ถูกต้อง"
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "โปรดยืนยันที่อยู่อีเมลของคุณ"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19181,6 +19218,10 @@ msgstr "โพสต์โดย {0}"
msgid "Posts filed under {0}"
msgstr "โพสต์ที่จัดเก็บภายใต้ {0}"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19240,7 +19281,7 @@ msgstr "การวิเคราะห์รายงานที่เตร
msgid "Prepared Report User"
msgstr "ผู้ใช้รายงานที่เตรียมไว้"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr "การแสดงผลรายงานที่เตรียมไว้ล้มเหลว"
@@ -19269,8 +19310,6 @@ msgstr "กด Enter เพื่อบันทึก"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19658,7 +19697,7 @@ msgstr "โปรไฟล์"
msgid "Progress"
msgstr "ความคืบหน้า"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "โครงการ"
@@ -19753,14 +19792,7 @@ msgstr "ไฟล์สาธารณะ (MB)"
msgid "Publish"
msgstr "เผยแพร่"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr "เผยแพร่เป็นหน้าเว็บ"
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19768,7 +19800,6 @@ msgstr "เผยแพร่เป็นหน้าเว็บ"
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19943,7 +19974,7 @@ msgstr "รายงานการค้นหา"
msgid "Query analysis complete. Check suggested indexes."
msgstr "การวิเคราะห์การค้นหาเสร็จสมบูรณ์ ตรวจสอบดัชนีที่แนะนำ"
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr "การค้นหาต้องเป็นประเภท SELECT หรือ read-only WITH"
@@ -19989,7 +20020,6 @@ msgstr "คิว"
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "อยู่ในคิว"
@@ -20012,19 +20042,11 @@ msgstr "อยู่ในคิวสำหรับการส่ง คุ
msgid "Queued for backup. You will receive an email with the download link"
msgstr "อยู่ในคิวสำหรับการสำรองข้อมูล คุณจะได้รับอีเมลพร้อมลิงก์ดาวน์โหลด"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr "อยู่ในคิว {0} อีเมล"
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr "คิว"
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr "กำลังจัดคิวอีเมล..."
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr "กำลังจัดคิว {0} สำหรับการส่ง"
@@ -20225,7 +20247,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21092,7 +21114,7 @@ msgstr "ถึงขีดจำกัดรายงานแล้ว"
msgid "Report timed out."
msgstr "รายงานหมดเวลา"
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "อัปเดตรายงานเรียบร้อยแล้ว"
@@ -21113,7 +21135,7 @@ msgstr "รายงาน {0}"
msgid "Report {0} deleted"
msgstr "ลบรายงาน {0} แล้ว"
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "รายงาน {0} ถูกปิดใช้งาน"
@@ -21446,10 +21468,8 @@ msgstr "เพิกถอน"
msgid "Revoked"
msgstr "ถูกเพิกถอน"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21660,7 +21680,6 @@ msgstr "วิธีการปัดเศษ"
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21674,7 +21693,6 @@ msgstr "วิธีการปัดเศษ"
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21792,7 +21810,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -21981,11 +21999,11 @@ msgstr "วันเสาร์"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22077,32 +22095,17 @@ msgstr ""
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr ""
@@ -22136,17 +22139,6 @@ msgstr ""
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr ""
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr ""
@@ -22358,6 +22350,11 @@ msgstr ""
msgid "Searching ..."
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22747,9 +22744,7 @@ msgstr "เลือก {0}"
msgid "Self approval is not allowed"
msgstr "ไม่อนุญาตให้อนุมัติด้วยตนเอง"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "ส่ง"
@@ -22780,11 +22775,6 @@ msgstr "ส่งการแจ้งเตือนเมื่อ"
msgid "Send Email Alert"
msgstr "ส่งการแจ้งเตือนทางอีเมล"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr "ส่งอีเมลเมื่อ"
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22842,38 +22832,16 @@ msgstr "ส่งใบตอบรับการอ่าน"
msgid "Send System Notification"
msgstr "ส่งการแจ้งเตือนระบบ"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr "ส่งอีเมลทดสอบ"
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "ส่งถึงผู้รับมอบหมายทั้งหมด"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "ส่งลิงก์ยกเลิกการสมัคร"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr "ส่งลิงก์มุมมองเว็บ"
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "ส่งอีเมลต้อนรับ"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr "ส่งอีเมลทดสอบ"
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr "ส่งอีกครั้ง"
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22921,10 +22889,6 @@ msgstr "ส่งลิงก์เข้าสู่ระบบ"
msgid "Send me a copy"
msgstr "ส่งสำเนาให้ฉัน"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr "ส่งเดี๋ยวนี้"
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22940,19 +22904,15 @@ msgstr "ส่งข้อความยกเลิกการสมัคร
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "ผู้ส่ง"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "อีเมลผู้ส่ง"
@@ -22969,9 +22929,7 @@ msgid "Sender Field should have Email in options"
msgstr "ฟิลด์ผู้ส่งควรมีอีเมลในตัวเลือก"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr "ชื่อผู้ส่ง"
@@ -22991,18 +22949,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "กำลังส่ง"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr "กำลังส่งอีเมล"
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr "กำลังส่ง..."
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23010,8 +22959,6 @@ msgstr "กำลังส่ง..."
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "ส่งแล้ว"
@@ -23081,7 +23028,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23100,7 +23047,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23139,15 +23086,15 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "ค่าเริ่มต้นของเซสชัน"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "บันทึกค่าเริ่มต้นของเซสชันแล้ว"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "เซสชันหมดอายุ"
@@ -23377,7 +23324,7 @@ msgstr "กำลังตั้งค่าระบบของคุณ"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24460,7 +24407,6 @@ msgstr ""
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24485,7 +24431,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24626,8 +24571,6 @@ msgstr "ซับโดเมน"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24636,7 +24579,6 @@ msgstr "ซับโดเมน"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25007,7 +24949,7 @@ msgstr "กำลังซิงค์"
msgid "Syncing {0} of {1}"
msgstr "กำลังซิงค์ {0} จาก {1}"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr "ข้อผิดพลาดทางไวยากรณ์"
@@ -25314,7 +25256,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25441,10 +25383,6 @@ msgstr "รหัสงานทดสอบ"
msgid "Test Spanish"
msgstr "ทดสอบภาษาสเปน"
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "อีเมลทดสอบถูกส่งไปยัง {0}"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "โฟลเดอร์ทดสอบ"
@@ -25510,10 +25448,6 @@ msgstr "ขอบคุณสำหรับอีเมลของคุณ"
msgid "Thank you for your feedback!"
msgstr "ขอบคุณสำหรับความคิดเห็นของคุณ!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "ขอบคุณที่สนใจสมัครรับข้อมูลอัปเดตของเรา"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr "ขอบคุณสำหรับข้อความของคุณ"
@@ -25702,7 +25636,7 @@ msgstr "ลิงก์รีเซ็ตรหัสผ่านหมดอา
msgid "The reset password link has either been used before or is invalid"
msgstr "ลิงก์รีเซ็ตรหัสผ่านถูกใช้ไปแล้วหรือไม่ถูกต้อง"
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "ทรัพยากรที่คุณกำลังมองหาไม่มีอยู่"
@@ -25714,7 +25648,7 @@ msgstr "บทบาท {0} ควรเป็นบทบาทที่กำ
msgid "The selected document {0} is not a {1}."
msgstr "เอกสารที่เลือก {0} ไม่ใช่ {1}"
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "ระบบกำลังอัปเดต โปรดรีเฟรชอีกครั้งหลังจากสักครู่"
@@ -25867,7 +25801,7 @@ msgstr "การตรวจสอบสิทธิ์ของบุคคล
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "สกุลเงินนี้ถูกปิดใช้งาน เปิดใช้งานเพื่อใช้ในธุรกรรม"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "กระดาน Kanban นี้จะเป็นส่วนตัว"
@@ -25891,7 +25825,7 @@ msgstr "ปีนี้"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "การกระทำนี้ไม่สามารถย้อนกลับได้ คุณต้องการดำเนินการต่อหรือไม่?"
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "การกระทำนี้อนุญาตเฉพาะสำหรับ {}"
@@ -26051,14 +25985,6 @@ msgstr "สิ่งนี้อาจถูกพิมพ์ในหลาย
msgid "This month"
msgstr "เดือนนี้"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr "จดหมายข่าวนี้มีกำหนดส่งในวันที่ {0}"
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr "จดหมายข่าวนี้มีกำหนดส่งในภายหลัง คุณแน่ใจหรือไม่ว่าต้องการส่งตอนนี้?"
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "รายงานนี้มี {0} แถวและใหญ่เกินไปที่จะแสดงในเบราว์เซอร์ คุณสามารถ {1} รายงานนี้แทน"
@@ -26171,7 +26097,6 @@ msgstr ""
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26397,10 +26322,8 @@ msgid "Title of the page"
msgstr ""
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr ""
@@ -26677,7 +26600,7 @@ msgstr "ขวาบน"
msgid "Topic"
msgstr "หัวข้อ"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26705,16 +26628,8 @@ msgstr "รวมภาพ"
msgid "Total Outgoing Emails"
msgstr "รวมอีเมลขาออก"
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr "รวมผู้รับ"
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "รวมผู้สมัครสมาชิก"
@@ -26723,11 +26638,6 @@ msgstr "รวมผู้สมัครสมาชิก"
msgid "Total Users"
msgstr "รวมผู้ใช้"
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr "รวมการดู"
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27124,23 +27034,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "URL ที่จะไปเมื่อคลิกที่ภาพสไลด์โชว์"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr "แคมเปญ UTM"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr "สื่อ UTM"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr "แหล่งที่มา UTM"
@@ -27190,7 +27094,7 @@ msgstr "ไม่สามารถเขียนรูปแบบไฟล์
msgid "Unassign Condition"
msgstr "ยกเลิกการกำหนดเงื่อนไข"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr "ข้อยกเว้นที่ไม่ได้จับ"
@@ -27206,6 +27110,10 @@ msgstr "เลิกทำ"
msgid "Undo last action"
msgstr "เลิกทำการกระทำล่าสุด"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27238,7 +27146,7 @@ msgstr "ไม่ทราบ"
msgid "Unknown Column: {0}"
msgstr "คอลัมน์ที่ไม่ทราบ: {0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr "วิธีการปัดเศษที่ไม่ทราบ: {}"
@@ -27271,7 +27179,7 @@ msgstr "ยังไม่ได้อ่าน"
msgid "Unread Notification Sent"
msgstr "การแจ้งเตือนที่ยังไม่ได้อ่านถูกส่งแล้ว"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr "คำสั่ง SQL ที่ไม่ปลอดภัย"
@@ -27285,7 +27193,7 @@ msgstr "ยกเลิกการเลือกทั้งหมด"
msgid "Unshared"
msgstr "ไม่ได้แชร์"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "ยกเลิกการสมัครสมาชิก"
@@ -27309,6 +27217,11 @@ msgstr "พารามิเตอร์ยกเลิกการสมัค
msgid "Unsubscribed"
msgstr "ยกเลิกการสมัครสมาชิกแล้ว"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "คอลัมน์ที่ไม่มีชื่อ"
@@ -27431,7 +27344,7 @@ msgstr "อัปเดตเป็นเวอร์ชันใหม่ 🎉"
msgid "Updated successfully"
msgstr "อัปเดตสำเร็จ"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "กำลังอัปเดต"
@@ -28166,7 +28079,7 @@ msgstr "ค่ามากเกินไป"
msgid "Value {0} missing for {1}"
msgstr "ค่า {0} หายไปสำหรับ {1}"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "ค่า {0} ต้องอยู่ในรูปแบบระยะเวลาที่ถูกต้อง: d h m s"
@@ -28591,7 +28504,6 @@ msgstr "URL Webhook"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28599,9 +28511,7 @@ msgid "Website"
msgstr "เว็บไซต์"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "การวิเคราะห์เว็บไซต์"
@@ -29037,7 +28947,7 @@ msgstr "อัปเดตเวิร์กโฟลว์สำเร็จ"
msgid "Workspace"
msgstr "พื้นที่ทำงาน"
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr "พื้นที่ทำงาน {0} ไม่มีอยู่"
@@ -29260,11 +29170,11 @@ msgstr "คุณกำลังปลอมตัวเป็นผู้ใช
msgid "You are not allowed to access this resource"
msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงทรัพยากรนี้"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงระเบียน {0} นี้เนื่องจากเชื่อมโยงกับ {1} '{2}' ในฟิลด์ {3}"
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงระเบียน {0} นี้เนื่องจากเชื่อมโยงกับ {1} '{2}' ในแถว {3}, ฟิลด์ {4}"
@@ -29287,7 +29197,7 @@ msgstr "คุณไม่ได้รับอนุญาตให้แก้
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "คุณไม่ได้รับอนุญาตให้นำออกประเภทเอกสาร {}"
@@ -29315,7 +29225,7 @@ msgstr "คุณไม่ได้รับอนุญาตให้เข้
msgid "You are not permitted to access this page."
msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงหน้านี้"
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr "คุณไม่ได้รับอนุญาตให้เข้าถึงทรัพยากรนี้ โปรดเข้าสู่ระบบเพื่อเข้าถึง"
@@ -29410,7 +29320,7 @@ msgstr "คุณสามารถเลือกหนึ่งจากรา
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "คุณสามารถตั้งค่าค่าสูงที่นี่หากมีผู้ใช้หลายคนเข้าสู่ระบบจากเครือข่ายเดียวกัน"
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "คุณสามารถลองเปลี่ยนตัวกรองของรายงานของคุณ"
@@ -29487,11 +29397,15 @@ msgstr "คุณไม่มีสิทธิ์อ่านหรือเล
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "คุณไม่มีสิทธิ์เพียงพอที่จะเข้าถึงทรัพยากรนี้ โปรดติดต่อผู้จัดการของคุณเพื่อขอสิทธิ์เข้าถึง"
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "คุณไม่มีสิทธิ์เพียงพอที่จะดำเนินการให้เสร็จสิ้น"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr "คุณไม่มีสิทธิ์เข้าถึง {0}: {1}"
@@ -29499,7 +29413,7 @@ msgstr "คุณไม่มีสิทธิ์เข้าถึง {0}: {1}
msgid "You do not have permissions to cancel all linked documents."
msgstr "คุณไม่มีสิทธิ์ยกเลิกเอกสารที่เชื่อมโยงทั้งหมด"
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "คุณไม่มีสิทธิ์เข้าถึงรายงาน: {0}"
@@ -29507,11 +29421,11 @@ msgstr "คุณไม่มีสิทธิ์เข้าถึงราย
msgid "You don't have permission to access the {0} DocType."
msgstr "คุณไม่มีสิทธิ์เข้าถึงประเภทเอกสาร {0}"
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "คุณไม่มีสิทธิ์เข้าถึงไฟล์นี้"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "คุณไม่มีสิทธิ์รับรายงานเกี่ยวกับ: {0}"
@@ -29604,7 +29518,7 @@ msgstr "คุณต้องเป็นผู้ใช้ระบบเพื
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "คุณต้องอยู่ในโหมดนักพัฒนาเพื่อแก้ไขฟอร์มเว็บมาตรฐาน"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "คุณต้องเข้าสู่ระบบและมีบทบาทผู้จัดการระบบเพื่อเข้าถึงข้อมูลสำรอง"
@@ -29770,7 +29684,7 @@ msgstr "ชื่อและที่อยู่ขององค์กรข
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "คำถามของคุณได้รับแล้ว เราจะตอบกลับในไม่ช้า หากคุณมีข้อมูลเพิ่มเติม โปรดตอบกลับอีเมลนี้"
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "เซสชันของคุณหมดอายุแล้ว โปรดเข้าสู่ระบบอีกครั้งเพื่อดำเนินการต่อ"
@@ -29782,7 +29696,7 @@ msgstr "ไซต์ของคุณกำลังอยู่ในระห
msgid "Your verification code is {0}"
msgstr "รหัสยืนยันของคุณคือ {0}"
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "ศูนย์"
@@ -29829,7 +29743,7 @@ msgstr "หลังจากแทรก"
msgid "amend"
msgstr "แก้ไข"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "และ"
@@ -29886,7 +29800,7 @@ msgstr "สร้าง"
msgid "cyan"
msgstr "สีฟ้า"
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30001,7 +29915,7 @@ msgstr "อีเมล"
msgid "email inbox"
msgstr "กล่องจดหมายอีเมล"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "ว่างเปล่า"
@@ -30053,7 +29967,7 @@ msgstr "สีเทา"
msgid "gzip not found in PATH! This is required to take a backup."
msgstr "ไม่พบ gzip ใน PATH! จำเป็นต้องใช้เพื่อสำรองข้อมูล"
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30087,7 +30001,7 @@ msgstr ""
msgid "just now"
msgstr "เมื่อสักครู่"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr "ป้ายกำกับ"
@@ -30127,7 +30041,7 @@ msgstr "ต้องเข้าสู่ระบบ"
msgid "long"
msgstr "ยาว"
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30317,7 +30231,7 @@ msgstr "การตอบกลับ"
msgid "restored {0} as {1}"
msgstr "กู้คืน {0} เป็น {1}"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30652,7 +30566,7 @@ msgstr "{0} ยกเลิกการสมัครแล้ว"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0} ยกเลิกการสมัครแล้วสำหรับ {1} {2}"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} และ {1}"
@@ -30758,6 +30672,10 @@ msgstr "{0} ไม่มีอยู่ในแถว {1}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "ฟิลด์ {0} ไม่สามารถตั้งค่าเป็นค่าที่ไม่ซ้ำใน {1} ได้ เนื่องจากมีค่าที่ไม่ซ้ำอยู่แล้ว"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "ไม่สามารถกำหนดรูปแบบ {0} จากค่าที่อยู่ในคอลัมน์นี้ได้ กำหนดค่าเริ่มต้นเป็น {1}"
@@ -30778,10 +30696,6 @@ msgstr "{0} ชั่วโมง"
msgid "{0} has already assigned default value for {1}."
msgstr "{0} ได้กำหนดค่าเริ่มต้นสำหรับ {1} แล้ว"
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} ถูกเพิ่มในกลุ่มอีเมลเรียบร้อยแล้ว"
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} ออกจากการสนทนาใน {1} {2}"
@@ -30852,6 +30766,10 @@ msgstr "{0} คล้ายกับ {1}"
msgid "{0} is mandatory"
msgstr "{0} เป็นสิ่งจำเป็น"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr "{0} ไม่ใช่ฟิลด์ของประเภทเอกสาร {1}"
@@ -30873,7 +30791,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} ไม่ใช่ประเภทเอกสารที่ถูกต้องสำหรับลิงก์แบบไดนามิก"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0} ไม่ใช่ที่อยู่อีเมลที่ถูกต้อง"
@@ -30881,11 +30799,11 @@ msgstr "{0} ไม่ใช่ที่อยู่อีเมลที่ถ
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} ไม่ใช่รหัส ISO 3166 ALPHA-2 ที่ถูกต้อง"
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0} ไม่ใช่ชื่อที่ถูกต้อง"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} ไม่ใช่หมายเลขโทรศัพท์ที่ถูกต้อง"
@@ -30893,11 +30811,11 @@ msgstr "{0} ไม่ใช่หมายเลขโทรศัพท์ท
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} ไม่ใช่สถานะเวิร์กโฟลว์ที่ถูกต้อง โปรดอัปเดตเวิร์กโฟลว์ของคุณและลองอีกครั้ง"
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0} ไม่ใช่ประเภทเอกสารหลักที่ถูกต้องสำหรับ {1}"
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0} ไม่ใช่ฟิลด์หลักที่ถูกต้องสำหรับ {1}"
@@ -30985,23 +30903,23 @@ msgstr "{0} นาทีที่ผ่านมา"
msgid "{0} months ago"
msgstr "{0} เดือนที่ผ่านมา"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0} ต้องอยู่หลังจาก {1}"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr "{0} ต้องเริ่มต้นด้วย '{1}'"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr "{0} ต้องเท่ากับ '{1}'"
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr "{0} ต้องไม่เป็นหนึ่งใน {1}"
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0} ต้องเป็นหนึ่งใน {1}"
@@ -31013,7 +30931,7 @@ msgstr "{0} ต้องตั้งค่าก่อน"
msgid "{0} must be unique"
msgstr "{0} ต้องไม่ซ้ำกัน"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr "{0} ต้องเป็น {1} {2}"
@@ -31042,16 +30960,12 @@ msgstr "{0} ของ {1}"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{0} ของ {1} ({2} แถวที่มีลูก)"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr "{0} ของ {1} ถูกส่งแล้ว"
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr "เฉพาะ {0} เท่านั้น"
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} หรือ {1}"
@@ -31088,11 +31002,11 @@ msgstr "{0} ลบการมอบหมายของพวกเขา"
msgid "{0} role does not have permission on any doctype"
msgstr "บทบาท {0} ไม่มีสิทธิ์ในประเภทเอกสารใด ๆ"
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0} บันทึกสำเร็จ"
@@ -31204,7 +31118,7 @@ msgstr "{0} {1} ไม่มีอยู่ โปรดเลือกเป้
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} เชื่อมโยงกับเอกสารที่ส่งต่อไปนี้: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "ไม่พบ {0} {1}"
@@ -31357,11 +31271,11 @@ msgstr "{{{0}}} ไม่ใช่รูปแบบชื่อฟิลด์
msgid "{} Complete"
msgstr "{} เสร็จสมบูรณ์"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr "{} โค้ด Python ไม่ถูกต้องในบรรทัด {}"
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr "{} โค้ด Python อาจไม่ถูกต้อง
{}"
@@ -31383,7 +31297,7 @@ msgstr "ฟิลด์ {} ไม่สามารถว่างเปล่
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr "{} ถูกปิดใช้งาน สามารถเปิดใช้งานได้เฉพาะเมื่อเลือก {}"
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{} ไม่ใช่สตริงวันที่ที่ถูกต้อง"
diff --git a/frappe/locale/tr.po b/frappe/locale/tr.po
index 5a7356b12c..75d9a5dfbe 100644
--- a/frappe/locale/tr.po
+++ b/frappe/locale/tr.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Turkish\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "{1} satırındaki {0} türü için 'Liste Görünümü' seçeneğine izi
msgid "'Recipients' not specified"
msgstr "'Alıcılar' belirtilmemiş"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "'{0}' geçerli bir URL değil"
@@ -1035,7 +1035,7 @@ msgstr "Aksiyon / Rota"
msgid "Action Complete"
msgstr "Eylem Tamamlandı"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "Eylem Başarısız"
@@ -1674,6 +1674,14 @@ msgstr "Uyarı"
msgid "Alerts and Notifications"
msgstr "Uyarılar ve Bildirimler"
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1714,7 +1722,6 @@ msgstr "Değer Hizala"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -2160,7 +2167,7 @@ msgstr "Değişikliğe İzin Verilmiyor"
msgid "Amendment naming rules updated."
msgstr "Değişiklik adlandırma kuralları güncellendi."
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr "Oturum Varsayılanlarını ayarlarken bir hata oluştu"
@@ -2278,7 +2285,7 @@ msgstr "Uygulama İsmi"
msgid "App not found for module: {0}"
msgstr "Modül için uygulama bulunamadı: {0}"
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "{0} Uygulaması yüklü değil"
@@ -2492,10 +2499,6 @@ msgstr "Tüm özelleştirmeleri sıfırlamak istediğinizden emin misiniz?"
msgid "Are you sure you want to save this document?"
msgstr "Bu belgeyi kaydetmek istediğinizden emin misiniz?"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "Bu bülteni şimdi göndermek istediğinizden emin misiniz?"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2749,9 +2752,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr "Bağlı Olduğu Ad, bir metin (string) veya tam sayı (integer) olmalıdır."
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "Belge Eki"
@@ -2778,10 +2779,7 @@ msgid "Attachment Removed"
msgstr "Ek Kaldırıldı"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2799,11 +2797,6 @@ msgstr "QZ Tray başlatılmaya çalışılıyor..."
msgid "Attribution"
msgstr "Özellik"
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr "Hedef Kitle"
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3230,7 +3223,7 @@ msgstr "Arkaplan Resmi"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr "Arkaplan Görevleri"
@@ -3959,9 +3952,7 @@ msgstr ""
msgid "Camera"
msgstr "Kamera"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -4047,10 +4038,6 @@ msgstr "Tümünü İptal Et"
msgid "Cancel All Documents"
msgstr "Tüm Belgeleri İptal Et"
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr "Programı İptal Et"
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4344,7 +4331,7 @@ msgstr "Kategori Açıklaması"
msgid "Category Name"
msgstr "Kategori Adı"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr "Kuruş"
@@ -4513,10 +4500,6 @@ msgstr "Kontrol et"
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr "Kırık bağlantıları kontrol edin"
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4540,10 +4523,6 @@ msgstr "Kullanıcıyı kaydetmeden önce bir seri seçmeye zorlamak istiyorsanı
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr "Kırık bağlantılar kontrol ediliyor..."
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "Kontrol ediliyor bekleyin"
@@ -4590,6 +4569,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "Alt Tablolar, diğer DocType'larda Tablo olarak gösterilir."
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "Mevcut Kartı Seçin veya Yeni Kart Oluşturun"
@@ -4679,10 +4662,6 @@ msgstr "İlk Bileşeni eklemek için Özelleştir'e tıklayın."
msgid "Click here"
msgstr "Buraya tıklayın"
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "Doğrulamak için buraya tıklayın"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "Seçmek için bir dosyaya tıklayın."
@@ -5024,7 +5003,7 @@ msgstr "Sütunlar"
msgid "Columns / Fields"
msgstr "Sütunlar / Alanlar"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "Sütun Ayarlaması"
@@ -5346,17 +5325,12 @@ msgstr "Şifreyi Onayla"
msgid "Confirm Request"
msgstr "Talebi Onayla"
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "E-postanızı Onaylayın"
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "Onay E-postası Şablonu"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "Onaylandı"
@@ -5487,8 +5461,6 @@ msgstr "{0} güvenlik düzeltmesi içerir"
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5496,7 +5468,6 @@ msgstr "{0} güvenlik düzeltmesi içerir"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5521,10 +5492,8 @@ msgstr "İçerik (Markdown)"
msgid "Content Hash"
msgstr "Hash Doğrulaması"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5630,6 +5599,10 @@ msgstr "{0} bulunamadı."
msgid "Could not map column {0} to field {1}"
msgstr "{0} sütunu {1} alanıyla eşleştirilemedi"
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr "Başlatılamadı: "
@@ -5685,7 +5658,7 @@ msgstr "Sayaç"
msgid "Country"
msgstr "Ülke"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr "Ülke Kodu Gerekli"
@@ -5816,11 +5789,6 @@ msgstr "Yeni {0} Oluştur"
msgid "Create a {0} Account"
msgstr "{0} Hesabı Oluşturun"
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr "Belirli aralıklarla belirli bir abone grubuna e-posta oluşturun ve gönderin."
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr "Yazdırma Formatı Oluştur veya Düzenle"
@@ -6169,6 +6137,10 @@ msgstr "Özel Çeviri"
msgid "Custom field renamed to {0} successfully."
msgstr "Özel alan başarıyla {0} olarak yeniden adlandırıldı."
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6226,7 +6198,7 @@ msgstr "Gösterge Paneli Özelleştir"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "Form Özelleştir"
@@ -6519,7 +6491,6 @@ msgstr "Veri Tabanı Sürümü"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6583,6 +6554,11 @@ msgstr "Gün"
msgid "Day of Week"
msgstr "Haftanın günü"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr "Gün"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6850,6 +6826,7 @@ msgstr "Gecikti"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -7162,6 +7139,7 @@ msgstr "Tema"
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7915,7 +7893,7 @@ msgid "Document Types and Permissions"
msgstr "Belge Türleri ve İzinler"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr "Belge Kilidi Açıldı"
@@ -8533,7 +8511,6 @@ msgstr "Element Seçici"
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8627,11 +8604,9 @@ msgstr "E-posta Alt Bilgi Adresi"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "E-posta Grubu"
@@ -8704,18 +8679,11 @@ msgstr "E-posta Yeniden Deneme Limiti"
msgid "Email Rule"
msgstr "E-posta Kuralı"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "E-posta Gönderildi"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr "E-posta Gönderim Zamanı"
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8822,10 +8790,18 @@ msgstr "E-postalar bir sonraki olası iş akışı eylemleriyle birlikte gönder
msgid "Embed code copied"
msgstr "Gömülü kod kopyalandı"
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr "Boş sütun"
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9289,6 +9265,14 @@ msgstr "Hata Bildirimi"
msgid "Error in print format on line {0}: {1}"
msgstr "{0} satırındaki yazdırma biçiminde hata: {1}"
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "E-posta hesabına bağlanırken hata oluştu {0}"
@@ -9485,6 +9469,10 @@ msgstr "Genişlet"
msgid "Expand All"
msgstr "Tümünü Genişlet"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr "Deneysel"
@@ -10016,7 +10004,7 @@ msgstr "DocType Alanı '{0}' {3}içinde {2} adında bir {1} ile çakışıyor"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "Otomatik adlandırmayı etkinleştirmek için {0} adlı bir alan bulunmalıdır"
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "Alan ismi 64 karakterle sınırılıdır ({0})"
@@ -10032,7 +10020,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -10084,6 +10072,10 @@ msgstr "Dosya için `file_name` veya `file_url` alanları ayarlanmalıdır"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10249,6 +10241,14 @@ msgstr "Filtre Adı"
msgid "Filter Values"
msgstr "Filtre Değerleri"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr "Filtre..."
@@ -10492,10 +10492,6 @@ msgstr "Aşağıdaki alanlarda eksik değerler bulunuyor"
msgid "Following fields have missing values:"
msgstr "Aşağıdaki alanlarda eksik değerler bulunmaktadır:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr "E-posta içeriğinde aşağıdaki bağlantılar bozuk: {0}"
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10913,10 +10909,8 @@ msgid "Friday"
msgstr "Cuma"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "itibaren"
@@ -10997,10 +10991,14 @@ msgstr "Fonksiyon"
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr "{0} fonksiyonu beyaz listeye eklenmemiş."
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "Ek kısımlar ancak 'Grup' tipi kısımlar altında oluşturulabilir"
@@ -11482,6 +11480,10 @@ msgstr "Türe Göre Gruplandır"
msgid "Group By field is required to create a dashboard chart"
msgstr "Pano grafiği oluşturmak için Grupla alanı gereklidir"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "Grup Düğümü"
@@ -11530,7 +11532,6 @@ msgstr "HH:mm:ss"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11544,7 +11545,6 @@ msgstr "HH:mm:ss"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -12053,6 +12053,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr "Şifre sıfırlama bağlantıları oluşturmak için saatlik limit."
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "Saat"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12818,11 +12823,11 @@ msgstr "Hatalı Kullanıcı Adı veya Şifre"
msgid "Incorrect Verification code"
msgstr "Hatalı Doğrulama Kodu"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr "Satırlarda yanlış değer var {0}:"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr "Geçersiz değer: "
@@ -12974,11 +12979,11 @@ msgstr "Talimatlar"
msgid "Instructions Emailed"
msgstr "Talimatlar E-postayla Gönderildi"
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr "{0} için Yetersiz İzin Seviyesi"
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "{0} için Yetki Verilmemiş"
@@ -13128,7 +13133,7 @@ msgstr "Geçersiz Koşul: {}"
msgid "Invalid Credentials"
msgstr "Geçersiz kimlik bilgileri"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "Geçersiz Tarih"
@@ -13136,7 +13141,7 @@ msgstr "Geçersiz Tarih"
msgid "Invalid DocType"
msgstr "Geçersiz DocType"
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr "Geçersiz DocType: {0}"
@@ -13148,6 +13153,11 @@ msgstr "Geçersiz Alan Adı"
msgid "Invalid File URL"
msgstr "Geçersiz Dosya URL'si"
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr "{1} türündeki {0} alanı için geçersiz filtre biçimi. Doğru şekilde ayarlamak için alandaki filtre simgesini kullanmayı deneyin"
@@ -13212,7 +13222,7 @@ msgstr "Geçersiz Parametreler."
msgid "Invalid Password"
msgstr "Geçersiz Şifre"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr "Geçersiz Telefon Numarası"
@@ -13256,10 +13266,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "Geçersiz Sütun"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "Geçersiz docstatus"
@@ -13272,10 +13310,26 @@ msgstr "{0} filtresinde geçersiz \"depends_on\" ifadesi ayarlandı"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "{0} filtresinde ayarlanmış geçersiz ifade ({1})"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "Geçersiz alan adı {0}"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "Otomatik adlandırmada geçersiz alan adı '{0}'"
@@ -13284,11 +13338,26 @@ msgstr "Otomatik adlandırmada geçersiz alan adı '{0}'"
msgid "Invalid file path: {0}"
msgstr "Geçersiz dosya yolu: {0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "Geçersiz filtre: {0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13310,10 +13379,22 @@ msgstr "İçe aktarma için geçersiz veya bozuk içerik"
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr "Geçersiz istek değişkenleri"
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "İçe aktarma için geçersiz şablon dosyası"
@@ -13755,11 +13836,11 @@ msgstr "Kanban Panosu Sütunu"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "Kanban Panosu Adı"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "Kanban Ayarları"
@@ -14471,6 +14552,10 @@ msgstr "Beğeniler"
msgid "Limit"
msgstr "Limit"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14734,6 +14819,7 @@ msgid "Load Balancing"
msgstr "Yük Dengeleme"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15252,11 +15338,9 @@ msgstr "İstenmeyen olarak İşaretle"
msgid "Mark as Unread"
msgstr "Okunmadı Olarak İşaretle"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15445,7 +15529,6 @@ msgstr ""
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15458,7 +15541,6 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15473,16 +15555,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "Mesaj"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "Mesaj (HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "Mesaj (Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15606,7 +15678,7 @@ msgstr "SEO için meta başlık"
msgid "Method"
msgstr "Yöntem"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr "İzin Verilmeyen Method"
@@ -15656,6 +15728,11 @@ msgstr "Minimum Şifre Puanı"
msgid "Minor"
msgstr "Ara Sürüm"
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr "Süreler"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -16051,7 +16128,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr "Resim Eki Formatında Olmalıdır"
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "Bu rapora erişmek için rapor iznine sahip olmanız gerekir."
@@ -16241,6 +16318,10 @@ msgstr "Diğer kullanıcıların özel çalışma alanlarını düzenlemek için
msgid "Negative Value"
msgstr "Negatif Değer"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "İç içe küme hatası. Lütfen Yönetici ile iletişime geçin."
@@ -16323,7 +16404,7 @@ msgstr "Yeni Etkinlik"
msgid "New Folder"
msgstr "Yeni Klasör"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "Yeni Kanban Panosu"
@@ -16467,48 +16548,13 @@ msgstr "Aşağıdaki uygulamalar için yeni {} sürümler kullanıma sunuldu"
msgid "Newly created user {0} has no roles enabled."
msgstr "{0} kullanıcısı için rol belirlenmedi."
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "Bülten"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr "Bülten Eki"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "Bülten E-posta Grubu"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "Bülten Yöneticisi"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "Bülten zaten gönderildi"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr "E-postada webview bağlantısını göndermek için bültenin yayınlanması gerekir"
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "Bültenin en az bir alıcısı olmalıdır"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "Bültenler"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16770,7 +16816,7 @@ msgstr "Uygun Sonuç Bulunamadı"
msgid "No Roles Specified"
msgstr "Rol Belirlenmedi"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr "Seçim Alanı Bulunamadı"
@@ -16798,10 +16844,6 @@ msgstr "Bugün için herhangi bir bildirim yok"
msgid "No automatic optimization suggestions available."
msgstr "Otomatik optimizasyon önerileri mevcut değil."
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr "E-posta içeriğinde kırık bağlantı bulunamadı"
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "Belgede Değişiklik Yapılmadı"
@@ -16838,7 +16880,7 @@ msgstr "Henüz kişi eklenmedi."
msgid "No contacts linked to document"
msgstr "Belgeye bağlı kişi yok"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "Verilecek veri yok"
@@ -16858,7 +16900,7 @@ msgstr "Kullanıcıyla ilişkilendirilmiş bir e-posta hesabı bulunmamaktadır.
msgid "No failed logs"
msgstr "Başarısız kayıt yok"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "Kanban Sütunu olarak kullanılabilecek alanlar bulunamadı. \"Seçim\" türünde yeni bir Özel Alan eklemek için Form Özelleştirmeyi kullanın."
@@ -16917,7 +16959,7 @@ msgstr "Satır Sayısı (Maksimum 500)"
msgid "No of Sent SMS"
msgstr "Gönderilen SMS sayısı"
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "{0} İçin Yetki Yok"
@@ -17045,7 +17087,7 @@ msgstr "Aynı Kategoride Değil"
msgid "Not Equals"
msgstr "Eşit Değil"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "Bulunamadı"
@@ -17071,7 +17113,7 @@ msgstr "Herhangi bir kayıtla bağlantılı değil"
msgid "Not Nullable"
msgstr "Boş Bırakılamaz"
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17080,7 +17122,7 @@ msgstr "Boş Bırakılamaz"
msgid "Not Permitted"
msgstr "İzin yok"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr "{0} için Okuma izni yok"
@@ -17108,7 +17150,6 @@ msgstr "Görülmedi"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "Gönderilmedi"
@@ -17141,7 +17182,7 @@ msgstr "Geçerli bir kullanıcı değil"
msgid "Not active"
msgstr "Aktif değil"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "{0} için izin verilmiyor: {1}"
@@ -17575,6 +17616,10 @@ msgstr "X Ekseni"
msgid "Offset Y"
msgstr "Y Ekseni"
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "Eski Şifre"
@@ -17748,7 +17793,7 @@ msgstr "Yalnızca Çalışma Alanı Yöneticisi genel çalışma alanlarını d
msgid "Only allowed to export customizations in developer mode"
msgstr "Özelleştirmelerin yalnızca geliştirici modunda dışa aktarılmasına izin verilir"
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17920,7 +17965,7 @@ msgstr "Açıldı"
msgid "Operation"
msgstr "Operasyon"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr ""
@@ -18019,6 +18064,10 @@ msgstr "Turuncu"
msgid "Order"
msgstr ""
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18414,7 +18463,7 @@ msgstr "Üst öğe, verilerin ekleneceği belgenin adıdır."
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18536,10 +18585,6 @@ msgstr "Parolalar uyuşmuyor"
msgid "Passwords do not match!"
msgstr "Şifreler uyuşmuyor!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr "Program planlaması için geçmiş tarihlere izin verilmez."
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "Yapıştır"
@@ -18685,7 +18730,7 @@ msgstr "{0} Kalıcı Olarak Kaydedilecek"
msgid "Permanently delete {0}?"
msgstr "{0} öğesi kalıcı olarak silinecek."
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "İzin Hatası"
@@ -18837,7 +18882,7 @@ msgstr "Telefon"
msgid "Phone No."
msgstr "Telefon No."
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "{1} alanına girilen Telefon Numarası {0} geçerli değil."
@@ -19110,10 +19155,6 @@ msgstr "Lütfen Yazıcı Ayarları'ndan yazıcı eşlemesini kaldırın ve tekra
msgid "Please save before attaching."
msgstr "Eklemeden önce lütfen kaydedin."
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "Lütfen göndermeden önce Bülteni kaydedin"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "Lütfen atamadan önce belgeyi kaydedin"
@@ -19146,7 +19187,7 @@ msgstr "Lütfen Minimum Şifre Puanını seçin"
msgid "Please select X and Y fields"
msgstr "Lütfen X ve Y alanlarını seçin"
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr "Lütfen {1} alanı için bir ülke kodu seçin."
@@ -19162,7 +19203,7 @@ msgstr "Lütfen bir dosya veya url seçin"
msgid "Please select a valid csv file with data"
msgstr "Lütfen veri içeren geçerli bir csv dosyası seçin"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "Lütfen geçerli bir tarih filtresi seçin"
@@ -19240,7 +19281,7 @@ msgstr ""
msgid "Please specify"
msgstr "Lütfen belirtiniz"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr "Lütfen {0} için geçerli bir üst DocType belirtin"
@@ -19277,10 +19318,6 @@ msgstr "Devam etmeden önce lütfen {} öğesini güncelleyin."
msgid "Please use a valid LDAP search filter"
msgstr "Lütfen geçerli bir LDAP arama filtresi kullanın"
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "Lütfen E-posta Adresinizi Doğrulayın"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "Daha fazla bilgi için lütfen https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key adresini ziyaret edin."
@@ -19374,6 +19411,10 @@ msgstr "{0} tarafından gönderilen gönderiler"
msgid "Posts filed under {0}"
msgstr ""
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19433,7 +19474,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr "Hazır Rapor Kullanıcısı"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr "Hazırlanan rapor işleme başarısız oldu"
@@ -19462,8 +19503,6 @@ msgstr "Kaydetmek için Enter tuşuna basın."
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19851,7 +19890,7 @@ msgstr "Profil"
msgid "Progress"
msgstr "İlerleme"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "Proje"
@@ -19946,14 +19985,7 @@ msgstr "Genel Dosyalar (MB)"
msgid "Publish"
msgstr "Yayınla"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr "Web Sayfası Olarak Yayınla"
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19961,7 +19993,6 @@ msgstr "Web Sayfası Olarak Yayınla"
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -20136,7 +20167,7 @@ msgstr "Sorgu Raporu"
msgid "Query analysis complete. Check suggested indexes."
msgstr "Sorgu analizi tamamlandı. Önerilen dizinleri kontrol edin."
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr "Sorgu SELECT veya salt okunur WITH türünde olmalıdır."
@@ -20182,7 +20213,6 @@ msgstr "Kuyruk"
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "Sıraya alındı"
@@ -20205,19 +20235,11 @@ msgstr "Gönderim için sıraya alındı. İlerlemeyi {0} üzerinden takip edebi
msgid "Queued for backup. You will receive an email with the download link"
msgstr "Yedekleme sıraya alındı. İndirme bağlantısını içeren bir e-posta alacaksınız."
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr "{0} e-postaları Kuyruğa alındı"
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr "Kuyruk"
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr "E-postalar sıraya alınıyor..."
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20418,7 +20440,7 @@ msgstr "Alıcı Tarafından Okundu"
msgid "Read mode"
msgstr "Okuma Modu"
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr "Daha fazlasını öğrenmek için belgeleri okuyun"
@@ -21285,7 +21307,7 @@ msgstr "Rapor sınırına ulaşıldı"
msgid "Report timed out."
msgstr "Rapor zaman aşımına uğradı."
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "Rapor başarıyla güncellendi"
@@ -21306,7 +21328,7 @@ msgstr "{0} Raporu"
msgid "Report {0} deleted"
msgstr "{0} Raporu silindi"
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "{0} Raporu devre dışı bırakıldı"
@@ -21639,10 +21661,8 @@ msgstr "İptal Et"
msgid "Revoked"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21853,7 +21873,6 @@ msgstr "Yuvarlama Yöntemi"
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21867,7 +21886,6 @@ msgstr "Yuvarlama Yöntemi"
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21985,7 +22003,7 @@ msgstr "Kural"
msgid "Rule Conditions"
msgstr "Kural Koşulları"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "Bu belge türüne ilişkin kural, rol, izin düzeyi ve eğer sahibiyle birleşimi zaten mevcut."
@@ -22174,11 +22192,11 @@ msgstr "Cumartesi"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22270,32 +22288,17 @@ msgstr "QR Kodunu tarayın ve çıkan kodu girin."
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr "Planla"
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr "Bülten Programı"
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr "Planlanmış Gönderim"
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr "Gönderimi zamanla"
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr "Gönderimi daha sonraki bir zamana planlayın"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "Planlandı"
@@ -22329,17 +22332,6 @@ msgstr "Planlanmış Görev Türü"
msgid "Scheduled Jobs Logs"
msgstr "Planlanmış Görev Kayıtları"
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr "Planlanmış Gönderim"
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "Gönderilmek Üzere Planlandı"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "{0} betiği için planlanan yürütme güncellendi"
@@ -22551,6 +22543,11 @@ msgstr "Arama..."
msgid "Searching ..."
msgstr "Arama Yapılıyor..."
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22940,9 +22937,7 @@ msgstr "{0} Seçimi"
msgid "Self approval is not allowed"
msgstr "Kendi kendini onaylamaya izin verilmiyor"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "Gönder"
@@ -22973,11 +22968,6 @@ msgstr "Uyarı Gönder"
msgid "Send Email Alert"
msgstr "E-Posta Uyarısı Gönder"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr "E-Posta Gönder"
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -23035,38 +23025,16 @@ msgstr "Okundu Bilgisi Gönder"
msgid "Send System Notification"
msgstr "Sistem Bildirimi Gönder"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr "Test E-postası Gönder"
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "Tüm Atananlara Gönder"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "Abonelikten Ayrılma Bağlantısını Gönder"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr "Web Görünümü Bağlantısı Gönder"
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "Hoşgeldiniz E-postası Gönder"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr "Bir test e-postası gönderin"
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr "Tekrar Gönder"
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -23114,10 +23082,6 @@ msgstr "Giriş bağlantısını gönder"
msgid "Send me a copy"
msgstr "Bir Kopyasını Bana Gönder"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr "Şimdi Gönder"
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -23133,19 +23097,15 @@ msgstr "Abonelikten çıkma mesajını e-posta ile gönder"
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "Gönderen"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "Gönderen E-postası"
@@ -23162,9 +23122,7 @@ msgid "Sender Field should have Email in options"
msgstr "Gönderen Alanı seçeneklerinde E-posta olmalıdır"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr "Gönderenin Adı"
@@ -23184,18 +23142,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "Gönderiliyor"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr "E-Posta Gönderiliyor..."
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr "Gönderiyor..."
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23203,8 +23152,6 @@ msgstr "Gönderiyor..."
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "Gönderildi"
@@ -23274,7 +23221,7 @@ msgstr "Seri {0} zaten {1} adresinde kullanılıyor"
msgid "Server Action"
msgstr "Sunucu Aksiyonu"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "Sunucu Hatası"
@@ -23293,7 +23240,7 @@ msgstr "Sunucu IP"
msgid "Server Script"
msgstr "Sunucu Komut Dosyası"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "Sunucu Komut Dosyaları devre dışı. Lütfen bench yapılandırmasından sunucu komut dosyalarını etkinleştirin."
@@ -23332,15 +23279,15 @@ msgstr "Oturum Varsayılanı Ayarları"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "Oturum Varsayılanları"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "Oturum Varsayılanları Kaydedildi"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "Oturum Sonlandırıldı"
@@ -23594,7 +23541,7 @@ msgstr "Sisteminiz Yapılandırılıyor"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24677,7 +24624,6 @@ msgstr "Zaman Aralığı"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24702,7 +24648,6 @@ msgstr "Zaman Aralığı"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24843,8 +24788,6 @@ msgstr "Alt Alan Adı"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24853,7 +24796,6 @@ msgstr "Alt Alan Adı"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25224,7 +25166,7 @@ msgstr "Senkronize Ediliyor"
msgid "Syncing {0} of {1}"
msgstr "Senkronize Ediliyor {0}/{1}"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr "Sözdizimi Hatası"
@@ -25531,7 +25473,7 @@ msgstr "Tablo Temizlendi"
msgid "Table updated"
msgstr "Tablo güncellendi"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "Tablo {0} boş olamaz"
@@ -25658,10 +25600,6 @@ msgstr "Test İş ID"
msgid "Test Spanish"
msgstr "İspanyolca Test"
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "Test e-postası {0} adresine gönderildi"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "Test_Klasoru"
@@ -25729,10 +25667,6 @@ msgstr "E-postanız için teşekkür ederiz"
msgid "Thank you for your feedback!"
msgstr "Geri bildirim için teşekkürler!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "Güncellemelerimize abone olmak konusundaki ilginiz için teşekkür ederiz"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr "Mesajınız için teşekkürler"
@@ -25927,7 +25861,7 @@ msgstr "Şifre sıfırlama bağlantısının süresi doldu"
msgid "The reset password link has either been used before or is invalid"
msgstr "Şifre sıfırlama bağlantısı daha önce kullanılmış veya geçersiz"
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "Aradığınız kaynak mevcut değil"
@@ -25939,7 +25873,7 @@ msgstr "{0} rolü özel bir rol olmalıdır."
msgid "The selected document {0} is not a {1}."
msgstr "Seçilen belge {0} bir {1} değildir."
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "Sistem güncelleniyor. Lütfen birkaç dakika sonra tekrar yenileyin."
@@ -26092,7 +26026,7 @@ msgstr "Üçüncü Taraf Kimlik Doğrulama"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "Bu Para Birimi aktif değil. İşlemlerde kullanmak için etkinleştirin."
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "Bu Kanban Panosu özel olacak"
@@ -26116,7 +26050,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr "Bu eylem geri döndürülemez. Devam etmek istiyor musunuz?"
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "Bu eylem yalnızca {} için izin verilir"
@@ -26276,14 +26210,6 @@ msgstr ""
msgid "This month"
msgstr "Bu Ay"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr "Bu bültenin {0} adresine gönderilmesi planlanmaktadır."
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr "Bu bültenin daha sonraki bir tarihte gönderilmesi planlanmıştı. Şimdi göndermek istediğinizden emin misiniz?"
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "Bu rapor {0} satırları içerir ve tarayıcıda görüntülenemeyecek kadar büyüktür, bunun yerine bu raporu {1} adresinde bulabilirsiniz."
@@ -26396,7 +26322,6 @@ msgstr "Perşembe"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "Zaman"
@@ -26622,10 +26547,8 @@ msgid "Title of the page"
msgstr "Sayfa başlığı"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "Kime"
@@ -26909,7 +26832,7 @@ msgstr "Sağ Üst"
msgid "Topic"
msgstr "Konu"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26937,16 +26860,8 @@ msgstr "Toplam Görüntüler"
msgid "Total Outgoing Emails"
msgstr "Toplam Giden E-postalar"
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr "Toplam Alıcılar"
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "Toplam Abone Sayısı"
@@ -26955,11 +26870,6 @@ msgstr "Toplam Abone Sayısı"
msgid "Total Users"
msgstr "Toplam Kullanıcı"
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr "Toplam Görüntüleme"
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27359,23 +27269,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "Slayt gösterisi görüntüsüne tıklandığında gidilecek URL"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr "UTM Kaynağı"
@@ -27425,7 +27329,7 @@ msgstr "{0} için dosya biçimi yazılamıyor"
msgid "Unassign Condition"
msgstr "Koşulu Kaldır"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27441,6 +27345,10 @@ msgstr "Geri Al"
msgid "Undo last action"
msgstr "Son işlemi geri al"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27473,7 +27381,7 @@ msgstr "Bilinmiyor"
msgid "Unknown Column: {0}"
msgstr "Bilinmeyen Sütun: {0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr "Bilinmeyen Yuvarlama Yöntemi: {}"
@@ -27506,7 +27414,7 @@ msgstr "Okunmamış"
msgid "Unread Notification Sent"
msgstr "Okunmamış Bildirim Gönderildi"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr "Güvenli olmayan SQL sorgusu"
@@ -27520,7 +27428,7 @@ msgstr "Tüm Seçimi Kaldır"
msgid "Unshared"
msgstr "Paylaşılmamış"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "Abonelikten Çık"
@@ -27544,6 +27452,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr "Kaydolmamış"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "Başlıksız Sütun"
@@ -27666,7 +27579,7 @@ msgstr "Yeni Bir Sürüme Güncellendi 🎉"
msgid "Updated successfully"
msgstr "Başarıyla Güncellendi"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "Güncelleniyor"
@@ -28401,7 +28314,7 @@ msgstr "Değer çok büyük"
msgid "Value {0} missing for {1}"
msgstr "{1} için {0} değeri eksik"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "Değer {0} geçerli süre biçiminde olmalıdır: d h m s"
@@ -28826,7 +28739,6 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28834,9 +28746,7 @@ msgid "Website"
msgstr "Website"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "Web Sitesi Analitiği"
@@ -29272,7 +29182,7 @@ msgstr "İş akışı başarıyla güncellendi"
msgid "Workspace"
msgstr "Çalışma Alanı"
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr "Çalışma Alanı {0} mevcut değil"
@@ -29495,11 +29405,11 @@ msgstr "Başka bir kullanıcı gibi davranıyorsunuz."
msgid "You are not allowed to access this resource"
msgstr "Bu kaynağa erişim izniniz yok"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29522,7 +29432,7 @@ msgstr "Raporu düzenlemenize izin verilmiyor."
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "{} doctype'ı dışa aktarmanıza izin verilmiyor"
@@ -29550,7 +29460,7 @@ msgstr "Giriş yapmadan bu sayfaya erişmenize izin verilmiyor."
msgid "You are not permitted to access this page."
msgstr "Bu sayfaya erişim yetkiniz bulunmamaktadır."
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29645,7 +29555,7 @@ msgstr "Aşağıdakilerden birini seçebilirsiniz,"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "Aynı ağdan birden fazla kullanıcı giriş yapacaksa buraya yüksek bir değer ayarlayabilirsiniz."
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "Raporunuzun filtrelerini değiştirmeyi deneyebilirsiniz."
@@ -29722,11 +29632,15 @@ msgstr "{} için Okuma veya Seçme İzniniz yok"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "Bu kaynağa erişmek için yeterli izniniz yok. Erişim için lütfen yöneticinizle iletişime geçin."
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "İşlemi tamamlamak için yeterli izniniz yok"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29734,7 +29648,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr "Bağlantılı tüm belgeleri iptal etme yetkiniz yok."
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "Rapora erişiminiz yok: {0}"
@@ -29742,11 +29656,11 @@ msgstr "Rapora erişiminiz yok: {0}"
msgid "You don't have permission to access the {0} DocType."
msgstr "{0} isimli DocType erişimi için izniniz yok."
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "Bu dosyaya erişmek için gerekli izinlere sahip değilsiniz"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "{0} Raporunu almak için izniniz yok."
@@ -29839,7 +29753,7 @@ msgstr "Bu sayfaya erişebilmek için sistem kullanıcısı olmanız gerekmekted
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "Standart Web Formlarını düzenlemeniz için geliştirici modunda olmanız gerekiyor"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "Yedeklemelere erişmek için oturum açmanız ve Sistem Yöneticisi yetkilerine sahip olmanız gerekir."
@@ -30005,7 +29919,7 @@ msgstr "E-posta alt bilgisi için kuruluşunuzun adı ve adresi."
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "Sorgunuz alındı. Kısa süre içinde geri dönüş yapacağız. Ek bilgileriniz varsa, lütfen bu e-postayı yanıtlayın."
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "Oturumunuzun süresi doldu, devam etmek için lütfen tekrar giriş yapın."
@@ -30017,7 +29931,7 @@ msgstr "Siteniz bakımda veya güncelleniyor."
msgid "Your verification code is {0}"
msgstr "Doğrulama kodunuz {0}"
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "Sıfır"
@@ -30064,7 +29978,7 @@ msgstr ""
msgid "amend"
msgstr "değiştir"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "ve"
@@ -30121,7 +30035,7 @@ msgstr "oluştur"
msgid "cyan"
msgstr "açık Mavi"
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30236,7 +30150,7 @@ msgstr "e-posta"
msgid "email inbox"
msgstr "e-posta gelen kutusu"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "boş"
@@ -30288,7 +30202,7 @@ msgstr "gri"
msgid "gzip not found in PATH! This is required to take a backup."
msgstr "gzip PATH içinde bulunamadı! Yedek almak için bu gereklidir."
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30322,7 +30236,7 @@ msgstr "eposta@ornek.com.tr"
msgid "just now"
msgstr "Şimdi"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr "etiket"
@@ -30362,7 +30276,7 @@ msgstr ""
msgid "long"
msgstr "uzun"
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30552,7 +30466,7 @@ msgstr "yanıt"
msgid "restored {0} as {1}"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30887,7 +30801,7 @@ msgstr "{0} zaten aboneliği iptal etti"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0}, zaten {1} {2} için abonelikten çıkmış."
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0} ve {1}"
@@ -30993,6 +30907,10 @@ msgstr "{1} satırında {0} mevcut değil"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "{0} alanı {1} içinde benzersiz olarak ayarlanamaz, çünkü benzersiz olmayan mevcut değerler var"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "{0} biçimi bu sütundaki değerlerden belirlenemedi. Varsayılan {1}."
@@ -31013,10 +30931,6 @@ msgstr "{0} s"
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0} başarıyla E-posta Grubuna eklendi."
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0} hesabı {1} {2} ile ilgili aboneliği sonlandırıldı."
@@ -31087,6 +31001,10 @@ msgstr "{0} {1} gibi"
msgid "{0} is mandatory"
msgstr "{0} yaşam alanı"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -31108,7 +31026,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0} Dinamik Bağlantı için geçerli bir DocType değil"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0} geçerli bir E-Posta Adresi değil."
@@ -31116,11 +31034,11 @@ msgstr "{0} geçerli bir E-Posta Adresi değil."
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0} geçerli bir ISO 3166 ALPHA-2 kodu değil."
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0} geçerli bir İsim değil"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0} geçerli bir Telefon Numarası değil"
@@ -31128,11 +31046,11 @@ msgstr "{0} geçerli bir Telefon Numarası değil"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0} geçerli bir İş Akışı Durumu değil. Lütfen İş Akışınızı güncelleyin ve tekrar deneyin."
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0}, {1} için geçerli bir üst DocType değildir."
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0}, {1} için geçerli bir üst alan değil"
@@ -31220,23 +31138,23 @@ msgstr "{0} dakika önce"
msgid "{0} months ago"
msgstr "{0} ay önce"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr "{0} '{1}' ile başlamalıdır"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr "{0} '{1}' değerine eşit olmalıdır"
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr "{0} hiçbiri {1} olmamalıdır"
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -31248,7 +31166,7 @@ msgstr "{0} önce ayarlanmalıdır"
msgid "{0} must be unique"
msgstr "{0} benzersiz olmalıdır"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31277,16 +31195,12 @@ msgstr "{0}/{1} Kayıt Listeleniyor"
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr "{0} / {1} gönderildi"
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr "Sadece {0}."
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0} veya {1}"
@@ -31323,11 +31237,11 @@ msgstr "{0} atamalarını kaldırdı."
msgid "{0} role does not have permission on any doctype"
msgstr "{0} rolünün herhangi bir DocType üzerinde izni yok."
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr "{0} satır #{1}: "
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0} başarıyla kaydedildi"
@@ -31439,7 +31353,7 @@ msgstr "{0} {1} mevcut değil, birleştirmek için yeni bir hedef seçin"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0} {1} önceden kaydedilmiş dökümanlarla bağlantılı: {2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "{0} {1} bulunamadı."
@@ -31592,11 +31506,11 @@ msgstr ""
msgid "{} Complete"
msgstr "{} Tamamlandı"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr "{} Muhtemelen geçersiz python kodu.
{}"
@@ -31618,7 +31532,7 @@ msgstr "{} alanı boş olamaz."
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr "{} devre dışı bırakılmıştır. Yalnızca {} işaretliyse etkinleştirilebilir."
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{} geçerli bir tarih dizesi değil."
diff --git a/frappe/locale/vi.po b/frappe/locale/vi.po
index ffa74f3f7b..4f92cabf60 100644
--- a/frappe/locale/vi.po
+++ b/frappe/locale/vi.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:41\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Vietnamese\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr ""
msgid "'Recipients' not specified"
msgstr ""
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr ""
@@ -850,7 +850,7 @@ msgstr ""
msgid "Action Complete"
msgstr ""
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr ""
@@ -1489,6 +1489,14 @@ msgstr ""
msgid "Alerts and Notifications"
msgstr ""
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1529,7 +1537,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -1974,7 +1981,7 @@ msgstr ""
msgid "Amendment naming rules updated."
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr ""
@@ -2092,7 +2099,7 @@ msgstr ""
msgid "App not found for module: {0}"
msgstr ""
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr ""
@@ -2306,10 +2313,6 @@ msgstr ""
msgid "Are you sure you want to save this document?"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr ""
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2563,9 +2566,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr ""
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr ""
@@ -2592,10 +2593,7 @@ msgid "Attachment Removed"
msgstr ""
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2613,11 +2611,6 @@ msgstr ""
msgid "Attribution"
msgstr ""
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr ""
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3044,7 +3037,7 @@ msgstr ""
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr ""
@@ -3772,9 +3765,7 @@ msgstr ""
msgid "Camera"
msgstr ""
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -3860,10 +3851,6 @@ msgstr ""
msgid "Cancel All Documents"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr ""
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4157,7 +4144,7 @@ msgstr ""
msgid "Category Name"
msgstr ""
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr ""
@@ -4325,10 +4312,6 @@ msgstr ""
msgid "Check Request URL"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr ""
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr ""
@@ -4352,10 +4335,6 @@ msgstr ""
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr ""
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr ""
@@ -4402,6 +4381,10 @@ msgstr ""
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr ""
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr ""
@@ -4491,10 +4474,6 @@ msgstr ""
msgid "Click here"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr ""
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr ""
@@ -4836,7 +4815,7 @@ msgstr ""
msgid "Columns / Fields"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr ""
@@ -5156,17 +5135,12 @@ msgstr ""
msgid "Confirm Request"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr ""
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr ""
@@ -5297,8 +5271,6 @@ msgstr ""
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5306,7 +5278,6 @@ msgstr ""
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5331,10 +5302,8 @@ msgstr ""
msgid "Content Hash"
msgstr ""
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5440,6 +5409,10 @@ msgstr ""
msgid "Could not map column {0} to field {1}"
msgstr ""
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr ""
@@ -5495,7 +5468,7 @@ msgstr ""
msgid "Country"
msgstr ""
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr ""
@@ -5626,11 +5599,6 @@ msgstr ""
msgid "Create a {0} Account"
msgstr ""
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr ""
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr ""
@@ -5979,6 +5947,10 @@ msgstr ""
msgid "Custom field renamed to {0} successfully."
msgstr ""
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6036,7 +6008,7 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr ""
@@ -6329,7 +6301,6 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6393,6 +6364,11 @@ msgstr ""
msgid "Day of Week"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6660,6 +6636,7 @@ msgstr ""
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -6972,6 +6949,7 @@ msgstr ""
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7725,7 +7703,7 @@ msgid "Document Types and Permissions"
msgstr ""
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr ""
@@ -8343,7 +8321,6 @@ msgstr ""
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8437,11 +8414,9 @@ msgstr ""
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr ""
@@ -8514,18 +8489,11 @@ msgstr ""
msgid "Email Rule"
msgstr ""
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr ""
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr ""
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8632,10 +8600,18 @@ msgstr ""
msgid "Embed code copied"
msgstr ""
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr ""
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9099,6 +9075,14 @@ msgstr ""
msgid "Error in print format on line {0}: {1}"
msgstr ""
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr ""
@@ -9295,6 +9279,10 @@ msgstr ""
msgid "Expand All"
msgstr ""
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr ""
@@ -9826,7 +9814,7 @@ msgstr ""
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr ""
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr ""
@@ -9842,7 +9830,7 @@ msgstr ""
msgid "Fieldname {0} appears multiple times"
msgstr ""
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr ""
@@ -9894,6 +9882,10 @@ msgstr ""
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr ""
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10059,6 +10051,14 @@ msgstr ""
msgid "Filter Values"
msgstr ""
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr ""
@@ -10302,10 +10302,6 @@ msgstr ""
msgid "Following fields have missing values:"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr ""
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10722,10 +10718,8 @@ msgid "Friday"
msgstr ""
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr ""
@@ -10806,10 +10800,14 @@ msgstr ""
msgid "Function Based On"
msgstr ""
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr ""
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr ""
@@ -11291,6 +11289,10 @@ msgstr ""
msgid "Group By field is required to create a dashboard chart"
msgstr ""
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr ""
@@ -11339,7 +11341,6 @@ msgstr ""
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11353,7 +11354,6 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -11862,6 +11862,11 @@ msgstr ""
msgid "Hourly rate limit for generating password reset links"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr ""
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12627,11 +12632,11 @@ msgstr ""
msgid "Incorrect Verification code"
msgstr ""
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr ""
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr ""
@@ -12783,11 +12788,11 @@ msgstr ""
msgid "Instructions Emailed"
msgstr ""
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr ""
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr ""
@@ -12937,7 +12942,7 @@ msgstr ""
msgid "Invalid Credentials"
msgstr ""
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr ""
@@ -12945,7 +12950,7 @@ msgstr ""
msgid "Invalid DocType"
msgstr ""
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr ""
@@ -12957,6 +12962,11 @@ msgstr ""
msgid "Invalid File URL"
msgstr ""
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr ""
@@ -13021,7 +13031,7 @@ msgstr ""
msgid "Invalid Password"
msgstr ""
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr ""
@@ -13065,10 +13075,38 @@ msgstr ""
msgid "Invalid aggregate function"
msgstr ""
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr ""
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr ""
@@ -13081,10 +13119,26 @@ msgstr ""
msgid "Invalid expression set in filter {0} ({1})"
msgstr ""
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr ""
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr ""
@@ -13093,11 +13147,26 @@ msgstr ""
msgid "Invalid file path: {0}"
msgstr ""
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr ""
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13119,10 +13188,22 @@ msgstr ""
msgid "Invalid redirect regex in row #{}: {}"
msgstr ""
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr ""
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr ""
@@ -13564,11 +13645,11 @@ msgstr ""
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr ""
@@ -14280,6 +14361,10 @@ msgstr ""
msgid "Limit"
msgstr ""
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14543,6 +14628,7 @@ msgid "Load Balancing"
msgstr ""
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15061,11 +15147,9 @@ msgstr ""
msgid "Mark as Unread"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15254,7 +15338,6 @@ msgstr ""
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15267,7 +15350,6 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15282,16 +15364,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr ""
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr ""
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr ""
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15415,7 +15487,7 @@ msgstr ""
msgid "Method"
msgstr ""
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr ""
@@ -15465,6 +15537,11 @@ msgstr ""
msgid "Minor"
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr ""
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -15860,7 +15937,7 @@ msgstr ""
msgid "Must be of type \"Attach Image\""
msgstr ""
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr ""
@@ -16048,6 +16125,10 @@ msgstr ""
msgid "Negative Value"
msgstr ""
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr ""
@@ -16130,7 +16211,7 @@ msgstr ""
msgid "New Folder"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr ""
@@ -16274,48 +16355,13 @@ msgstr ""
msgid "Newly created user {0} has no roles enabled."
msgstr ""
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr ""
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr ""
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr ""
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16577,7 +16623,7 @@ msgstr ""
msgid "No Roles Specified"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr ""
@@ -16605,10 +16651,6 @@ msgstr ""
msgid "No automatic optimization suggestions available."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr ""
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr ""
@@ -16645,7 +16687,7 @@ msgstr ""
msgid "No contacts linked to document"
msgstr ""
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr ""
@@ -16665,7 +16707,7 @@ msgstr ""
msgid "No failed logs"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr ""
@@ -16724,7 +16766,7 @@ msgstr ""
msgid "No of Sent SMS"
msgstr ""
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr ""
@@ -16852,7 +16894,7 @@ msgstr ""
msgid "Not Equals"
msgstr ""
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr ""
@@ -16878,7 +16920,7 @@ msgstr ""
msgid "Not Nullable"
msgstr ""
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -16887,7 +16929,7 @@ msgstr ""
msgid "Not Permitted"
msgstr ""
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr ""
@@ -16915,7 +16957,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr ""
@@ -16948,7 +16989,7 @@ msgstr ""
msgid "Not active"
msgstr ""
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr ""
@@ -17382,6 +17423,10 @@ msgstr ""
msgid "Offset Y"
msgstr ""
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr ""
@@ -17555,7 +17600,7 @@ msgstr ""
msgid "Only allowed to export customizations in developer mode"
msgstr ""
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr ""
@@ -17727,7 +17772,7 @@ msgstr ""
msgid "Operation"
msgstr ""
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr ""
@@ -17826,6 +17871,10 @@ msgstr ""
msgid "Order"
msgstr ""
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18221,7 +18270,7 @@ msgstr ""
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr ""
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr ""
@@ -18343,10 +18392,6 @@ msgstr ""
msgid "Passwords do not match!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr ""
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr ""
@@ -18492,7 +18537,7 @@ msgstr ""
msgid "Permanently delete {0}?"
msgstr ""
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr ""
@@ -18644,7 +18689,7 @@ msgstr ""
msgid "Phone No."
msgstr ""
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr ""
@@ -18917,10 +18962,6 @@ msgstr ""
msgid "Please save before attaching."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr ""
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr ""
@@ -18953,7 +18994,7 @@ msgstr ""
msgid "Please select X and Y fields"
msgstr ""
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr ""
@@ -18969,7 +19010,7 @@ msgstr ""
msgid "Please select a valid csv file with data"
msgstr ""
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr ""
@@ -19047,7 +19088,7 @@ msgstr ""
msgid "Please specify"
msgstr ""
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr ""
@@ -19084,10 +19125,6 @@ msgstr ""
msgid "Please use a valid LDAP search filter"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr ""
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr ""
@@ -19181,6 +19218,10 @@ msgstr ""
msgid "Posts filed under {0}"
msgstr ""
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19240,7 +19281,7 @@ msgstr ""
msgid "Prepared Report User"
msgstr ""
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr ""
@@ -19269,8 +19310,6 @@ msgstr ""
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19658,7 +19697,7 @@ msgstr ""
msgid "Progress"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr ""
@@ -19753,14 +19792,7 @@ msgstr ""
msgid "Publish"
msgstr ""
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr ""
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19768,7 +19800,6 @@ msgstr ""
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -19943,7 +19974,7 @@ msgstr ""
msgid "Query analysis complete. Check suggested indexes."
msgstr ""
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr ""
@@ -19989,7 +20020,6 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr ""
@@ -20012,19 +20042,11 @@ msgstr ""
msgid "Queued for backup. You will receive an email with the download link"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr ""
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr ""
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr ""
@@ -20225,7 +20247,7 @@ msgstr ""
msgid "Read mode"
msgstr ""
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr ""
@@ -21092,7 +21114,7 @@ msgstr ""
msgid "Report timed out."
msgstr ""
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr ""
@@ -21113,7 +21135,7 @@ msgstr ""
msgid "Report {0} deleted"
msgstr ""
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr ""
@@ -21446,10 +21468,8 @@ msgstr ""
msgid "Revoked"
msgstr ""
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21660,7 +21680,6 @@ msgstr ""
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21674,7 +21693,6 @@ msgstr ""
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21792,7 +21810,7 @@ msgstr ""
msgid "Rule Conditions"
msgstr ""
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr ""
@@ -21981,11 +21999,11 @@ msgstr ""
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22077,32 +22095,17 @@ msgstr ""
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr ""
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr ""
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr ""
@@ -22136,17 +22139,6 @@ msgstr ""
msgid "Scheduled Jobs Logs"
msgstr ""
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr ""
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr ""
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr ""
@@ -22358,6 +22350,11 @@ msgstr ""
msgid "Searching ..."
msgstr ""
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22747,9 +22744,7 @@ msgstr ""
msgid "Self approval is not allowed"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr ""
@@ -22780,11 +22775,6 @@ msgstr ""
msgid "Send Email Alert"
msgstr ""
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr ""
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -22842,38 +22832,16 @@ msgstr ""
msgid "Send System Notification"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr ""
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr ""
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr ""
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr ""
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr ""
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -22921,10 +22889,6 @@ msgstr ""
msgid "Send me a copy"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr ""
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -22940,19 +22904,15 @@ msgstr ""
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr ""
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr ""
@@ -22969,9 +22929,7 @@ msgid "Sender Field should have Email in options"
msgstr ""
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr ""
@@ -22991,18 +22949,9 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr ""
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23010,8 +22959,6 @@ msgstr ""
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr ""
@@ -23081,7 +23028,7 @@ msgstr ""
msgid "Server Action"
msgstr ""
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr ""
@@ -23100,7 +23047,7 @@ msgstr ""
msgid "Server Script"
msgstr ""
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr ""
@@ -23139,15 +23086,15 @@ msgstr ""
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr ""
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr ""
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr ""
@@ -23377,7 +23324,7 @@ msgstr ""
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24460,7 +24407,6 @@ msgstr ""
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24485,7 +24431,6 @@ msgstr ""
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24626,8 +24571,6 @@ msgstr ""
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24636,7 +24579,6 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25007,7 +24949,7 @@ msgstr ""
msgid "Syncing {0} of {1}"
msgstr ""
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr ""
@@ -25314,7 +25256,7 @@ msgstr ""
msgid "Table updated"
msgstr ""
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr ""
@@ -25441,10 +25383,6 @@ msgstr ""
msgid "Test Spanish"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr ""
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr ""
@@ -25510,10 +25448,6 @@ msgstr ""
msgid "Thank you for your feedback!"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr ""
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr ""
@@ -25702,7 +25636,7 @@ msgstr ""
msgid "The reset password link has either been used before or is invalid"
msgstr ""
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr ""
@@ -25714,7 +25648,7 @@ msgstr ""
msgid "The selected document {0} is not a {1}."
msgstr ""
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr ""
@@ -25867,7 +25801,7 @@ msgstr ""
msgid "This Currency is disabled. Enable to use in transactions"
msgstr ""
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr ""
@@ -25891,7 +25825,7 @@ msgstr ""
msgid "This action is irreversible. Do you wish to continue?"
msgstr ""
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr ""
@@ -26051,14 +25985,6 @@ msgstr ""
msgid "This month"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr ""
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr ""
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr ""
@@ -26171,7 +26097,6 @@ msgstr ""
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr ""
@@ -26397,10 +26322,8 @@ msgid "Title of the page"
msgstr ""
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr ""
@@ -26677,7 +26600,7 @@ msgstr ""
msgid "Topic"
msgstr ""
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26705,16 +26628,8 @@ msgstr ""
msgid "Total Outgoing Emails"
msgstr ""
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr ""
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr ""
@@ -26723,11 +26638,6 @@ msgstr ""
msgid "Total Users"
msgstr ""
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr ""
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27124,23 +27034,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr ""
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr ""
@@ -27190,7 +27094,7 @@ msgstr ""
msgid "Unassign Condition"
msgstr ""
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr ""
@@ -27206,6 +27110,10 @@ msgstr ""
msgid "Undo last action"
msgstr ""
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27238,7 +27146,7 @@ msgstr ""
msgid "Unknown Column: {0}"
msgstr ""
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr ""
@@ -27271,7 +27179,7 @@ msgstr ""
msgid "Unread Notification Sent"
msgstr ""
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr ""
@@ -27285,7 +27193,7 @@ msgstr ""
msgid "Unshared"
msgstr ""
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr ""
@@ -27309,6 +27217,11 @@ msgstr ""
msgid "Unsubscribed"
msgstr ""
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr ""
@@ -27431,7 +27344,7 @@ msgstr ""
msgid "Updated successfully"
msgstr ""
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr ""
@@ -28166,7 +28079,7 @@ msgstr ""
msgid "Value {0} missing for {1}"
msgstr ""
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr ""
@@ -28591,7 +28504,6 @@ msgstr ""
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28599,9 +28511,7 @@ msgid "Website"
msgstr ""
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr ""
@@ -29037,7 +28947,7 @@ msgstr ""
msgid "Workspace"
msgstr ""
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr ""
@@ -29260,11 +29170,11 @@ msgstr ""
msgid "You are not allowed to access this resource"
msgstr ""
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr ""
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr ""
@@ -29287,7 +29197,7 @@ msgstr ""
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr ""
@@ -29315,7 +29225,7 @@ msgstr ""
msgid "You are not permitted to access this page."
msgstr ""
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29410,7 +29320,7 @@ msgstr ""
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr ""
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr ""
@@ -29487,11 +29397,15 @@ msgstr ""
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr ""
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr ""
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr ""
@@ -29499,7 +29413,7 @@ msgstr ""
msgid "You do not have permissions to cancel all linked documents."
msgstr ""
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr ""
@@ -29507,11 +29421,11 @@ msgstr ""
msgid "You don't have permission to access the {0} DocType."
msgstr ""
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr ""
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr ""
@@ -29604,7 +29518,7 @@ msgstr ""
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr ""
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr ""
@@ -29770,7 +29684,7 @@ msgstr ""
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr ""
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr ""
@@ -29782,7 +29696,7 @@ msgstr ""
msgid "Your verification code is {0}"
msgstr ""
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr ""
@@ -29829,7 +29743,7 @@ msgstr ""
msgid "amend"
msgstr ""
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr ""
@@ -29886,7 +29800,7 @@ msgstr ""
msgid "cyan"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30001,7 +29915,7 @@ msgstr ""
msgid "email inbox"
msgstr ""
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr ""
@@ -30053,7 +29967,7 @@ msgstr ""
msgid "gzip not found in PATH! This is required to take a backup."
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30087,7 +30001,7 @@ msgstr ""
msgid "just now"
msgstr ""
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr ""
@@ -30127,7 +30041,7 @@ msgstr ""
msgid "long"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30317,7 +30231,7 @@ msgstr ""
msgid "restored {0} as {1}"
msgstr ""
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30652,7 +30566,7 @@ msgstr ""
msgid "{0} already unsubscribed for {1} {2}"
msgstr ""
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr ""
@@ -30758,6 +30672,10 @@ msgstr ""
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr ""
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr ""
@@ -30778,10 +30696,6 @@ msgstr ""
msgid "{0} has already assigned default value for {1}."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr ""
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr ""
@@ -30852,6 +30766,10 @@ msgstr ""
msgid "{0} is mandatory"
msgstr ""
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr ""
@@ -30873,7 +30791,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr ""
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr ""
@@ -30881,11 +30799,11 @@ msgstr ""
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr ""
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr ""
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr ""
@@ -30893,11 +30811,11 @@ msgstr ""
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr ""
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr ""
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr ""
@@ -30985,23 +30903,23 @@ msgstr ""
msgid "{0} months ago"
msgstr ""
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr ""
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr ""
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr ""
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr ""
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr ""
@@ -31013,7 +30931,7 @@ msgstr ""
msgid "{0} must be unique"
msgstr ""
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr ""
@@ -31042,16 +30960,12 @@ msgstr ""
msgid "{0} of {1} ({2} rows with children)"
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr ""
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr ""
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr ""
@@ -31088,11 +31002,11 @@ msgstr ""
msgid "{0} role does not have permission on any doctype"
msgstr ""
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr ""
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr ""
@@ -31204,7 +31118,7 @@ msgstr ""
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr ""
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr ""
@@ -31357,11 +31271,11 @@ msgstr ""
msgid "{} Complete"
msgstr ""
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr ""
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr ""
@@ -31383,7 +31297,7 @@ msgstr ""
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr ""
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr ""
diff --git a/frappe/locale/zh.po b/frappe/locale/zh.po
index b47c542771..b328bc1df3 100644
--- a/frappe/locale/zh.po
+++ b/frappe/locale/zh.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: developers@frappe.io\n"
-"POT-Creation-Date: 2025-06-22 09:34+0000\n"
-"PO-Revision-Date: 2025-06-22 16:40\n"
+"POT-Creation-Date: 2025-06-27 08:47+0000\n"
+"PO-Revision-Date: 2025-06-27 17:34\n"
"Last-Translator: developers@frappe.io\n"
"Language-Team: Chinese Simplified\n"
"MIME-Version: 1.0\n"
@@ -90,7 +90,7 @@ msgstr "第{1}行类型{0}不允许显示在'列表视图'"
msgid "'Recipients' not specified"
msgstr "未指定'收件人'"
-#: frappe/utils/__init__.py:255
+#: frappe/utils/__init__.py:256
msgid "'{0}' is not a valid URL"
msgstr "'{0}' 不是有效的URL"
@@ -1035,7 +1035,7 @@ msgstr "操作/路由"
msgid "Action Complete"
msgstr "操作完成"
-#: frappe/model/document.py:1871
+#: frappe/model/document.py:1873
msgid "Action Failed"
msgstr "操作失败"
@@ -1674,6 +1674,14 @@ msgstr "警报"
msgid "Alerts and Notifications"
msgstr "警报与通知"
+#: frappe/database/query.py:1608
+msgid "Alias cannot be a SQL keyword: {0}"
+msgstr ""
+
+#: frappe/database/query.py:1533
+msgid "Alias must be a string"
+msgstr ""
+
#. Label of the align (Select) field in DocType 'Letter Head'
#. Label of the footer_align (Select) field in DocType 'Letter Head'
#: frappe/printing/doctype/letter_head/letter_head.json
@@ -1714,7 +1722,6 @@ msgstr "数值对齐"
#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json
#: frappe/integrations/doctype/connected_app/connected_app.json
#: frappe/integrations/doctype/token_cache/token_cache.json
-#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json
#: frappe/website/doctype/website_settings/website_settings.json
msgid "All"
@@ -2160,7 +2167,7 @@ msgstr "不允许修订"
msgid "Amendment naming rules updated."
msgstr "修订命名规则已更新。"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:346
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:345
msgid "An error occurred while setting Session Defaults"
msgstr "设置会话默认值时发生错误"
@@ -2278,7 +2285,7 @@ msgstr "应用名称"
msgid "App not found for module: {0}"
msgstr "未找到模块{0}对应的应用"
-#: frappe/__init__.py:1465
+#: frappe/__init__.py:1466
msgid "App {0} is not installed"
msgstr "应用{0}未安装"
@@ -2492,10 +2499,6 @@ msgstr "确定要重置所有自定义设置吗?"
msgid "Are you sure you want to save this document?"
msgstr "确定要保存此文档吗?"
-#: frappe/email/doctype/newsletter/newsletter.js:60
-msgid "Are you sure you want to send this newsletter now?"
-msgstr "确定要立即发送此新闻稿吗?"
-
#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16
#: frappe/core/doctype/user_permission/user_permission_list.js:165
msgid "Are you sure?"
@@ -2749,9 +2752,7 @@ msgid "Attached To Name must be a string or an integer"
msgstr "附加到名称必须是字符串或整数"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
-#. Label of the attachment (Attach) field in DocType 'Newsletter Attachment'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
msgid "Attachment"
msgstr "附件"
@@ -2778,10 +2779,7 @@ msgid "Attachment Removed"
msgstr "附件已移除"
#. Label of the attachments (Code) field in DocType 'Email Queue'
-#. Label of the attachments (Table) field in DocType 'Newsletter'
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
-#: frappe/email/doctype/newsletter/templates/newsletter.html:47
#: frappe/public/js/frappe/form/templates/form_sidebar.html:63
#: frappe/website/doctype/web_form/templates/web_form.html:106
msgid "Attachments"
@@ -2799,11 +2797,6 @@ msgstr "正在尝试启动QZ Tray..."
msgid "Attribution"
msgstr "归属"
-#. Label of the email_group (Table) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Audience"
-msgstr "受众"
-
#. Name of a report
#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json
msgid "Audit System Hooks"
@@ -3230,7 +3223,7 @@ msgstr "背景图像"
#. 'System Health Report'
#: frappe/core/workspace/build/build.json
#: frappe/desk/doctype/system_health_report/system_health_report.json
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:182
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:181
msgid "Background Jobs"
msgstr "后台作业"
@@ -3959,9 +3952,7 @@ msgstr "回调标题"
msgid "Camera"
msgstr "摄像头"
-#. Label of the campaign (Link) field in DocType 'Newsletter'
#. Label of the campaign (Data) field in DocType 'Web Page View'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1726
#: frappe/website/doctype/web_page_view/web_page_view.json
#: frappe/website/report/website_analytics/website_analytics.js:39
@@ -4047,10 +4038,6 @@ msgstr "全部取消"
msgid "Cancel All Documents"
msgstr "取消所有文档"
-#: frappe/email/doctype/newsletter/newsletter.js:132
-msgid "Cancel Scheduling"
-msgstr "取消调度"
-
#: frappe/public/js/frappe/list/list_view.js:2064
msgctxt "Title of confirmation dialog"
msgid "Cancel {0} documents?"
@@ -4344,7 +4331,7 @@ msgstr "类别描述"
msgid "Category Name"
msgstr "类别名称"
-#: frappe/utils/data.py:1520
+#: frappe/utils/data.py:1530
msgid "Cent"
msgstr "分"
@@ -4513,10 +4500,6 @@ msgstr "检查"
msgid "Check Request URL"
msgstr "检查请求URL"
-#: frappe/email/doctype/newsletter/newsletter.js:18
-msgid "Check broken links"
-msgstr "检查损坏链接"
-
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1
msgid "Check columns to select, drag to set order."
msgstr "勾选要选择的列,拖拽调整顺序。"
@@ -4540,10 +4523,6 @@ msgstr "勾选此项将强制用户在保存前选择序列。若勾选则无默
msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)."
msgstr ""
-#: frappe/email/doctype/newsletter/newsletter.js:20
-msgid "Checking broken links..."
-msgstr "正在检查损坏链接..."
-
#: frappe/public/js/frappe/desk.js:235
msgid "Checking one moment"
msgstr "正在检查,请稍候"
@@ -4590,6 +4569,10 @@ msgstr "字段{1}的子表{0}"
msgid "Child Tables are shown as a Grid in other DocTypes"
msgstr "子表在其他文档类型中显示为网格"
+#: frappe/database/query.py:660
+msgid "Child query fields for '{0}' must be a list or tuple."
+msgstr ""
+
#: frappe/public/js/frappe/widgets/widget_dialog.js:651
msgid "Choose Existing Card or create New Card"
msgstr "选择现有卡片或创建新卡片"
@@ -4679,10 +4662,6 @@ msgstr "点击'自定义'添加第一个组件"
msgid "Click here"
msgstr "点击此处"
-#: frappe/email/doctype/newsletter/newsletter.py:335
-msgid "Click here to verify"
-msgstr "点击此处验证"
-
#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518
msgid "Click on a file to select it."
msgstr "点击文件进行选择。"
@@ -5024,7 +5003,7 @@ msgstr "列"
msgid "Columns / Fields"
msgstr "列/字段"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:396
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:397
msgid "Columns based on"
msgstr "基于的列"
@@ -5346,17 +5325,12 @@ msgstr "确认密码"
msgid "Confirm Request"
msgstr "确认请求"
-#: frappe/email/doctype/newsletter/newsletter.py:330
-msgid "Confirm Your Email"
-msgstr "确认您的邮箱"
-
#. Label of the confirmation_email_template (Link) field in DocType 'Email
#. Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Confirmation Email Template"
msgstr "确认邮件模板"
-#: frappe/email/doctype/newsletter/newsletter.py:379
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397
msgid "Confirmed"
msgstr "已确认"
@@ -5487,8 +5461,6 @@ msgstr "包含{0}个安全修复"
#. Label of the content (HTML Editor) field in DocType 'Comment'
#. Label of the content (Text Editor) field in DocType 'Note'
#. Label of the content (Long Text) field in DocType 'Workspace'
-#. Label of the newsletter_content (Section Break) field in DocType
-#. 'Newsletter'
#. Label of the content (Text Editor) field in DocType 'Blog Post'
#. Label of the content (Text Editor) field in DocType 'Help Article'
#. Label of the section_title (Tab Break) field in DocType 'Web Page'
@@ -5496,7 +5468,6 @@ msgstr "包含{0}个安全修复"
#. Label of the content (Data) field in DocType 'Web Page View'
#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json
#: frappe/desk/doctype/workspace/workspace.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/utils/utils.js:1742
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -5521,10 +5492,8 @@ msgstr "内容(Markdown)"
msgid "Content Hash"
msgstr "内容哈希"
-#. Label of the content_type (Select) field in DocType 'Newsletter'
#. Label of the content_type (Select) field in DocType 'Blog Post'
#. Label of the content_type (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.json
msgid "Content Type"
@@ -5630,6 +5599,10 @@ msgstr "未找到{0}"
msgid "Could not map column {0} to field {1}"
msgstr "无法映射列{0}到字段{1}"
+#: frappe/database/query.py:564
+msgid "Could not parse field: {0}"
+msgstr ""
+
#: frappe/desk/page/setup_wizard/setup_wizard.js:234
msgid "Could not start up: "
msgstr "无法启动:"
@@ -5685,7 +5658,7 @@ msgstr "计数器"
msgid "Country"
msgstr "国家"
-#: frappe/utils/__init__.py:129
+#: frappe/utils/__init__.py:130
msgid "Country Code Required"
msgstr "需要国家代码"
@@ -5816,11 +5789,6 @@ msgstr "新建{0}"
msgid "Create a {0} Account"
msgstr "创建{0}账户"
-#. Description of a DocType
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Create and send emails to a specific group of subscribers periodically."
-msgstr "定期创建并发送邮件给特定订阅者群组。"
-
#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34
msgid "Create or Edit Print Format"
msgstr "创建或编辑打印格式"
@@ -6169,6 +6137,10 @@ msgstr "自定义翻译"
msgid "Custom field renamed to {0} successfully."
msgstr "自定义字段成功重命名为{0}。"
+#: frappe/api/v2.py:148
+msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}"
+msgstr ""
+
#. Label of the custom (Check) field in DocType 'DocType'
#. Label of the custom (Check) field in DocType 'Website Theme'
#: frappe/core/doctype/doctype/doctype.json
@@ -6226,7 +6198,7 @@ msgstr "自定义仪表板"
#: frappe/core/doctype/doctype/doctype.js:61
#: frappe/core/workspace/build/build.json
#: frappe/custom/doctype/customize_form/customize_form.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
msgid "Customize Form"
msgstr "自定义表单"
@@ -6519,7 +6491,6 @@ msgstr "数据库版本"
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/report/todo/todo.py:38
-#: frappe/email/doctype/newsletter/newsletter.js:109
#: frappe/public/js/frappe/views/interaction.js:80
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Date"
@@ -6583,6 +6554,11 @@ msgstr "日"
msgid "Day of Week"
msgstr "星期几"
+#: frappe/public/js/frappe/form/controls/duration.js:27
+msgctxt "Duration"
+msgid "Days"
+msgstr "天数"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Days After"
@@ -6850,6 +6826,7 @@ msgstr "延迟"
#: frappe/public/js/frappe/form/toolbar.js:461
#: frappe/public/js/frappe/views/reports/report_view.js:1740
#: frappe/public/js/frappe/views/treeview.js:329
+#: frappe/public/js/frappe/web_form/web_form_list.js:282
#: frappe/templates/discussions/reply_card.html:35
#: frappe/templates/discussions/reply_section.html:29
msgid "Delete"
@@ -7162,6 +7139,7 @@ msgstr "工作台主题"
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json
#: frappe/printing/doctype/print_format/print_format.json
+#: frappe/printing/doctype/print_heading/print_heading.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
@@ -7918,7 +7896,7 @@ msgid "Document Types and Permissions"
msgstr "文档类型与权限"
#: frappe/core/doctype/submission_queue/submission_queue.py:163
-#: frappe/model/document.py:1942
+#: frappe/model/document.py:1944
msgid "Document Unlocked"
msgstr "文档已解锁"
@@ -8536,7 +8514,6 @@ msgstr "元素选择器"
#: frappe/desk/doctype/event_participants/event_participants.json
#: frappe/email/doctype/email_group_member/email_group_member.json
#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json
-#: frappe/email/doctype/newsletter/newsletter.js:156
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/form/success_action.js:85
#: frappe/public/js/frappe/form/toolbar.js:379
@@ -8630,11 +8607,9 @@ msgstr "邮件页脚地址"
#. Label of a Link in the Tools Workspace
#. Name of a DocType
#. Label of the email_group (Link) field in DocType 'Email Group Member'
-#. Label of the email_group (Link) field in DocType 'Newsletter Email Group'
#: frappe/automation/workspace/tools/tools.json
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Email Group"
msgstr "电子邮件组"
@@ -8707,18 +8682,11 @@ msgstr "电子邮件重试次数限制"
msgid "Email Rule"
msgstr "电子邮件规则"
-#. Label of the email_sent (Check) field in DocType 'Newsletter'
#. Label of the email_sent (Check) field in DocType 'Blog Post'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
msgid "Email Sent"
msgstr "已发送电子邮件"
-#. Label of the email_sent_at (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Email Sent At"
-msgstr "电子邮件发送时间"
-
#. Label of the email_settings_sb (Section Break) field in DocType 'DocType'
#. Label of the email_settings_section (Section Break) field in DocType
#. 'Customize Form'
@@ -8825,10 +8793,18 @@ msgstr "电子邮件将随下次工作流操作一并发送"
msgid "Embed code copied"
msgstr "嵌入代码已复制"
+#: frappe/database/query.py:1537
+msgid "Empty alias is not allowed"
+msgstr ""
+
#: frappe/public/js/form_builder/components/Section.vue:285
msgid "Empty column"
msgstr "空列"
+#: frappe/database/query.py:1455
+msgid "Empty string arguments are not allowed"
+msgstr ""
+
#. Label of the enable (Check) field in DocType 'Google Calendar'
#. Label of the enable (Check) field in DocType 'Google Contacts'
#. Label of the enable (Check) field in DocType 'Google Settings'
@@ -9293,6 +9269,14 @@ msgstr "通知错误"
msgid "Error in print format on line {0}: {1}"
msgstr "打印格式第{0}行错误:{1}"
+#: frappe/api/v2.py:156
+msgid "Error in {0}.get_list: {1}"
+msgstr ""
+
+#: frappe/database/query.py:231
+msgid "Error parsing nested filters: {0}"
+msgstr ""
+
#: frappe/email/doctype/email_account/email_account.py:670
msgid "Error while connecting to email account {0}"
msgstr "连接电子邮件账户{0}时出错"
@@ -9489,6 +9473,10 @@ msgstr "展开"
msgid "Expand All"
msgstr "全部展开"
+#: frappe/database/query.py:352
+msgid "Expected 'and' or 'or' operator, found: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:23
msgid "Experimental"
msgstr "实验性功能"
@@ -10020,7 +10008,7 @@ msgstr "字段名'{0}'与{3}中的{1} {2}冲突"
msgid "Fieldname called {0} must exist to enable autonaming"
msgstr "必须存在名为{0}的字段才能启用自动命名"
-#: frappe/database/schema.py:127 frappe/database/schema.py:363
+#: frappe/database/schema.py:127 frappe/database/schema.py:385
msgid "Fieldname is limited to 64 characters ({0})"
msgstr "字段名限制为64个字符({0})"
@@ -10036,7 +10024,7 @@ msgstr "将作为此链接字段文档类型的字段名。"
msgid "Fieldname {0} appears multiple times"
msgstr "字段名{0}重复出现"
-#: frappe/database/schema.py:353
+#: frappe/database/schema.py:375
msgid "Fieldname {0} cannot have special characters like {1}"
msgstr "字段名{0}不能包含{1}等特殊字符"
@@ -10088,6 +10076,10 @@ msgstr "文件必须设置`file_name`或`file_url`字段"
msgid "Fields must be a list or tuple when as_list is enabled"
msgstr "启用as_list时字段必须为列表或元组"
+#: frappe/database/query.py:611
+msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function"
+msgstr ""
+
#. Description of the 'Search Fields' (Data) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Fields separated by comma (,) will be included in the \"Search By\" list of Search dialog box"
@@ -10253,6 +10245,14 @@ msgstr "过滤器名称"
msgid "Filter Values"
msgstr "过滤值"
+#: frappe/database/query.py:358
+msgid "Filter condition missing after operator: {0}"
+msgstr ""
+
+#: frappe/database/query.py:425
+msgid "Filter fields cannot contain backticks (`)."
+msgstr ""
+
#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3
msgid "Filter..."
msgstr "过滤..."
@@ -10496,10 +10496,6 @@ msgstr "以下字段缺少值"
msgid "Following fields have missing values:"
msgstr "以下字段缺少值:"
-#: frappe/email/doctype/newsletter/newsletter.js:30
-msgid "Following links are broken in the email content: {0}"
-msgstr "邮件内容中存在失效链接:{0}"
-
#. Label of the font (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Font"
@@ -10917,10 +10913,8 @@ msgid "Friday"
msgstr "星期五"
#. Label of the sender (Data) field in DocType 'Communication'
-#. Label of the from_section (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "From"
msgstr "从"
@@ -11001,10 +10995,14 @@ msgstr "函数"
msgid "Function Based On"
msgstr "函数依据"
-#: frappe/__init__.py:677
+#: frappe/__init__.py:678
msgid "Function {0} is not whitelisted."
msgstr "函数{0}未在白名单中"
+#: frappe/database/query.py:1417
+msgid "Function {0} requires arguments but none were provided"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:419
msgid "Further nodes can be only created under 'Group' type nodes"
msgstr "后续节点只能在'组'类型节点下创建"
@@ -11486,6 +11484,10 @@ msgstr "分组类型"
msgid "Group By field is required to create a dashboard chart"
msgstr "创建仪表板图表需要分组依据字段"
+#: frappe/database/query.py:750
+msgid "Group By must be a string"
+msgstr ""
+
#: frappe/public/js/frappe/views/treeview.js:418
msgid "Group Node"
msgstr "组节点"
@@ -11534,7 +11536,6 @@ msgstr "HH:mm:ss"
#. Label of the html_section (Section Break) field in DocType 'Custom HTML
#. Block'
#. Option for the 'Format' (Select) field in DocType 'Auto Email Report'
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter
#. Head'
@@ -11548,7 +11549,6 @@ msgstr "HH:mm:ss"
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/printing/doctype/letter_head/letter_head.json
#: frappe/printing/doctype/print_format/print_format.json
@@ -12057,6 +12057,11 @@ msgstr "按小时维护"
msgid "Hourly rate limit for generating password reset links"
msgstr "密码重置链接生成速率限制(每小时)"
+#: frappe/public/js/frappe/form/controls/duration.js:29
+msgctxt "Duration"
+msgid "Hours"
+msgstr "小时数"
+
#. Description of the 'Number Format' (Select) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "How should this currency be formatted? If not set, will use system defaults"
@@ -12822,11 +12827,11 @@ msgstr "用户名或密码错误"
msgid "Incorrect Verification code"
msgstr "验证码错误"
-#: frappe/model/document.py:1541
+#: frappe/model/document.py:1543
msgid "Incorrect value in row {0}:"
msgstr "第{0}行值错误:"
-#: frappe/model/document.py:1543
+#: frappe/model/document.py:1545
msgid "Incorrect value:"
msgstr "错误值:"
@@ -12978,11 +12983,11 @@ msgstr "操作指南"
msgid "Instructions Emailed"
msgstr "已邮件发送操作指南"
-#: frappe/permissions.py:827
+#: frappe/permissions.py:840
msgid "Insufficient Permission Level for {0}"
msgstr "{0}权限级别不足"
-#: frappe/database/query.py:383
+#: frappe/database/query.py:806 frappe/database/query.py:1052
msgid "Insufficient Permission for {0}"
msgstr "{0}权限不足"
@@ -13132,7 +13137,7 @@ msgstr "无效条件:{}"
msgid "Invalid Credentials"
msgstr "凭证无效"
-#: frappe/utils/data.py:136 frappe/utils/data.py:299
+#: frappe/utils/data.py:146 frappe/utils/data.py:309
msgid "Invalid Date"
msgstr "日期无效"
@@ -13140,7 +13145,7 @@ msgstr "日期无效"
msgid "Invalid DocType"
msgstr "文档类型无效"
-#: frappe/database/query.py:103
+#: frappe/database/query.py:144
msgid "Invalid DocType: {0}"
msgstr "无效文档类型:{0}"
@@ -13152,6 +13157,11 @@ msgstr "字段名无效"
msgid "Invalid File URL"
msgstr "文件URL无效"
+#: frappe/database/query.py:427 frappe/database/query.py:454
+#: frappe/database/query.py:464 frappe/database/query.py:487
+msgid "Invalid Filter"
+msgstr ""
+
#: frappe/public/js/form_builder/store.js:221
msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly"
msgstr "{1}类型字段{0}的过滤格式无效,请使用字段过滤图标正确设置"
@@ -13216,7 +13226,7 @@ msgstr "参数无效"
msgid "Invalid Password"
msgstr "密码无效"
-#: frappe/utils/__init__.py:122
+#: frappe/utils/__init__.py:123
msgid "Invalid Phone Number"
msgstr "电话号码无效"
@@ -13260,10 +13270,38 @@ msgstr "Webhook密钥无效"
msgid "Invalid aggregate function"
msgstr "无效聚合函数"
+#: frappe/database/query.py:1542
+msgid "Invalid alias format: {0}. Alias must be a simple identifier."
+msgstr ""
+
+#: frappe/database/query.py:1468
+msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1444
+msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:460
+msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed."
+msgstr ""
+
+#: frappe/database/query.py:575
+msgid "Invalid characters in table name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/views/reports/report_view.js:399
msgid "Invalid column"
msgstr "无效列"
+#: frappe/database/query.py:381
+msgid "Invalid condition type in nested filters: {0}"
+msgstr ""
+
+#: frappe/database/query.py:787
+msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'."
+msgstr ""
+
#: frappe/model/document.py:1014 frappe/model/document.py:1028
msgid "Invalid docstatus"
msgstr "文档状态无效"
@@ -13276,10 +13314,26 @@ msgstr "过滤器{0}中的表达式无效"
msgid "Invalid expression set in filter {0} ({1})"
msgstr "过滤器{0}({1})中的表达式无效"
-#: frappe/utils/data.py:2186
+#: frappe/database/query.py:1301
+msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'."
+msgstr ""
+
+#: frappe/database/query.py:734
+msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'."
+msgstr ""
+
+#: frappe/database/query.py:1620
+msgid "Invalid field name in function: {0}. Only simple field names are allowed."
+msgstr ""
+
+#: frappe/utils/data.py:2196
msgid "Invalid field name {0}"
msgstr "字段名{0}无效"
+#: frappe/database/query.py:668
+msgid "Invalid field type: {0}"
+msgstr ""
+
#: frappe/core/doctype/doctype/doctype.py:1085
msgid "Invalid fieldname '{0}' in autoname"
msgstr "自动命名中的字段名'{0}'无效"
@@ -13288,11 +13342,26 @@ msgstr "自动命名中的字段名'{0}'无效"
msgid "Invalid file path: {0}"
msgstr "文件路径无效:{0}"
-#: frappe/database/query.py:189
+#: frappe/database/query.py:364
+msgid "Invalid filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:450
+msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'."
+msgstr ""
+
#: frappe/public/js/frappe/ui/filters/filter_list.js:201
msgid "Invalid filter: {0}"
msgstr "无效过滤器:{0}"
+#: frappe/database/query.py:1422
+msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed."
+msgstr ""
+
+#: frappe/database/query.py:1383
+msgid "Invalid function dictionary format"
+msgstr ""
+
#: frappe/desk/doctype/dashboard/dashboard.py:67
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424
msgid "Invalid json added in the custom options: {0}"
@@ -13314,10 +13383,22 @@ msgstr "导入内容无效或损坏"
msgid "Invalid redirect regex in row #{}: {}"
msgstr "第{}行重定向正则表达式无效:{}"
-#: frappe/app.py:317
+#: frappe/app.py:316
msgid "Invalid request arguments"
msgstr "请求参数无效"
+#: frappe/database/query.py:410
+msgid "Invalid simple filter format: {0}"
+msgstr ""
+
+#: frappe/database/query.py:341
+msgid "Invalid start for filter condition: {0}. Expected a list or tuple."
+msgstr ""
+
+#: frappe/database/query.py:1489
+msgid "Invalid string literal format: {0}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:430
msgid "Invalid template file for import"
msgstr "导入模板文件无效"
@@ -13759,11 +13840,11 @@ msgstr "看板面板列"
#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:387
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:388
msgid "Kanban Board Name"
msgstr "看板面板名称"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:264
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:265
msgctxt "Button in kanban view menu"
msgid "Kanban Settings"
msgstr "看板设置"
@@ -14475,6 +14556,10 @@ msgstr "点赞数"
msgid "Limit"
msgstr "限制"
+#: frappe/database/query.py:116
+msgid "Limit must be a non-negative integer"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "Line"
@@ -14738,6 +14823,7 @@ msgid "Load Balancing"
msgstr "负载均衡"
#: frappe/public/js/frappe/list/base_list.js:388
+#: frappe/public/js/frappe/web_form/web_form_list.js:305
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50
#: frappe/website/doctype/help_article/templates/help_article_list.html:30
msgid "Load More"
@@ -15256,11 +15342,9 @@ msgstr "标记为垃圾邮件"
msgid "Mark as Unread"
msgstr "标记为未读"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Message Type' (Select) field in DocType 'Notification'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
@@ -15449,7 +15533,6 @@ msgstr "仅支持组到组或叶子节点到叶子节点合并"
#. Report'
#. Label of the description (Text Editor) field in DocType 'Auto Email Report'
#. Label of the message (Code) field in DocType 'Email Queue'
-#. Label of the message (Text Editor) field in DocType 'Newsletter'
#. Label of the message_sb (Section Break) field in DocType 'Notification'
#. Label of the message (Code) field in DocType 'Notification'
#. Label of the message (Text) field in DocType 'Workflow Document State'
@@ -15462,7 +15545,6 @@ msgstr "仅支持组到组或叶子节点到叶子节点合并"
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:201
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/ui/messages.js:182
@@ -15477,16 +15559,6 @@ msgctxt "Default title of the message dialog"
msgid "Message"
msgstr "消息"
-#. Label of the message_html (HTML Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (HTML)"
-msgstr "消息(HTML)"
-
-#. Label of the message_md (Markdown Editor) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Message (Markdown)"
-msgstr "消息(Markdown)"
-
#. Label of the message_examples (HTML) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Message Examples"
@@ -15610,7 +15682,7 @@ msgstr "SEO元标题"
msgid "Method"
msgstr "方法"
-#: frappe/__init__.py:679
+#: frappe/__init__.py:680
msgid "Method Not Allowed"
msgstr "方法不允许"
@@ -15660,6 +15732,11 @@ msgstr "密码最低强度"
msgid "Minor"
msgstr "次要"
+#: frappe/public/js/frappe/form/controls/duration.js:30
+msgctxt "Duration"
+msgid "Minutes"
+msgstr "分钟数"
+
#. Option for the 'Send Alert On' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Minutes After"
@@ -16055,7 +16132,7 @@ msgstr "必须用'()'括起来并包含'{0}'作为用户/登录名的占位符
msgid "Must be of type \"Attach Image\""
msgstr "必须为“附加图片”类型"
-#: frappe/desk/query_report.py:208
+#: frappe/desk/query_report.py:209
msgid "Must have report permission to access this report."
msgstr "需具备报表权限才能访问该报表"
@@ -16245,6 +16322,10 @@ msgstr "需具备工作区管理员角色才能编辑其他用户的私有工作
msgid "Negative Value"
msgstr "负值"
+#: frappe/database/query.py:333
+msgid "Nested filters must be provided as a list or tuple."
+msgstr ""
+
#: frappe/utils/nestedset.py:94
msgid "Nested set error. Please contact the Administrator."
msgstr "嵌套集合错误,请联系管理员"
@@ -16327,7 +16408,7 @@ msgstr "新建事件"
msgid "New Folder"
msgstr "新建文件夹"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "New Kanban Board"
msgstr "新建看板"
@@ -16471,48 +16552,13 @@ msgstr "以下应用有新版本{}发布"
msgid "Newly created user {0} has no roles enabled."
msgstr "新创建用户{0}未启用任何角色"
-#. Label of a Card Break in the Tools Workspace
-#. Label of a Link in the Tools Workspace
-#. Name of a DocType
-#: frappe/automation/workspace/tools/tools.json
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Newsletter"
-msgstr "简讯"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_attachment/newsletter_attachment.json
-msgid "Newsletter Attachment"
-msgstr "简讯附件"
-
-#. Name of a DocType
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
-msgid "Newsletter Email Group"
-msgstr "简讯邮件组"
-
#. Name of a role
#: frappe/email/doctype/email_group/email_group.json
#: frappe/email/doctype/email_group_member/email_group_member.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/utm_campaign/utm_campaign.json
msgid "Newsletter Manager"
msgstr "简讯管理员"
-#: frappe/email/doctype/newsletter/newsletter.py:128
-msgid "Newsletter has already been sent"
-msgstr "简讯已发送"
-
-#: frappe/email/doctype/newsletter/newsletter.py:147
-msgid "Newsletter must be published to send webview link in email"
-msgstr "简讯需发布才能在邮件中发送网页版链接"
-
-#: frappe/email/doctype/newsletter/newsletter.py:135
-msgid "Newsletter should have atleast one recipient"
-msgstr "简讯至少需要一个收件人"
-
-#: frappe/email/doctype/newsletter/newsletter.py:390
-msgid "Newsletters"
-msgstr "简讯列表"
-
#: frappe/public/js/frappe/form/form_tour.js:14
#: frappe/public/js/frappe/form/form_tour.js:324
#: frappe/public/js/frappe/web_form/web_form.js:91
@@ -16774,7 +16820,7 @@ msgstr "未找到结果"
msgid "No Roles Specified"
msgstr "未指定角色"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:344
msgid "No Select Field Found"
msgstr "未找到选择字段"
@@ -16802,10 +16848,6 @@ msgstr "今日无提醒"
msgid "No automatic optimization suggestions available."
msgstr "暂无自动优化建议"
-#: frappe/email/doctype/newsletter/newsletter.js:34
-msgid "No broken links found in the email content"
-msgstr "邮件内容中未发现失效链接"
-
#: frappe/public/js/frappe/form/save.js:36
msgid "No changes in document"
msgstr "文档无变更"
@@ -16842,7 +16884,7 @@ msgstr "尚未添加联系人"
msgid "No contacts linked to document"
msgstr "文档未关联联系人"
-#: frappe/desk/query_report.py:342
+#: frappe/desk/query_report.py:343
msgid "No data to export"
msgstr "无数据可导出"
@@ -16862,7 +16904,7 @@ msgstr "用户未关联邮件账户,请通过 用户 > 收件箱 添加"
msgid "No failed logs"
msgstr "无失败日志"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:370
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:371
msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"."
msgstr "没有找到可用作看板的列的字段。使用自定义表单添加类型“选择”的自定义字段。"
@@ -16921,7 +16963,7 @@ msgstr "行数(最多500)"
msgid "No of Sent SMS"
msgstr "已发送短信数量"
-#: frappe/__init__.py:834 frappe/client.py:109 frappe/client.py:151
+#: frappe/__init__.py:835 frappe/client.py:109 frappe/client.py:151
msgid "No permission for {0}"
msgstr "无{0}权限"
@@ -17049,7 +17091,7 @@ msgstr "非下级节点"
msgid "Not Equals"
msgstr "不等于"
-#: frappe/app.py:367 frappe/www/404.html:3
+#: frappe/app.py:366 frappe/www/404.html:3
msgid "Not Found"
msgstr "未找到"
@@ -17075,7 +17117,7 @@ msgstr "未关联到任何记录"
msgid "Not Nullable"
msgstr "不可为空"
-#: frappe/__init__.py:761 frappe/app.py:360 frappe/desk/calendar.py:26
+#: frappe/__init__.py:762 frappe/app.py:359 frappe/desk/calendar.py:26
#: frappe/public/js/frappe/web_form/webform_script.js:15
#: frappe/website/doctype/web_form/web_form.py:708
#: frappe/website/page_renderers/not_permitted_page.py:22
@@ -17084,7 +17126,7 @@ msgstr "不可为空"
msgid "Not Permitted"
msgstr "未经许可"
-#: frappe/desk/query_report.py:542
+#: frappe/desk/query_report.py:543
msgid "Not Permitted to read {0}"
msgstr "无权限读取{0}"
@@ -17112,7 +17154,6 @@ msgstr "未读"
#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient'
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:9
msgid "Not Sent"
msgstr "未发送"
@@ -17145,7 +17186,7 @@ msgstr "无效用户"
msgid "Not active"
msgstr "未激活"
-#: frappe/permissions.py:370
+#: frappe/permissions.py:383
msgid "Not allowed for {0}: {1}"
msgstr "{0}不允许:{1}"
@@ -17579,6 +17620,10 @@ msgstr "X轴偏移"
msgid "Offset Y"
msgstr "Y轴偏移"
+#: frappe/database/query.py:121
+msgid "Offset must be a non-negative integer"
+msgstr ""
+
#: frappe/www/update-password.html:38
msgid "Old Password"
msgstr "旧密码"
@@ -17752,7 +17797,7 @@ msgstr "仅工作区管理员可编辑公共工作区"
msgid "Only allowed to export customizations in developer mode"
msgstr "仅开发者模式下允许导出自定义项"
-#: frappe/model/document.py:1231
+#: frappe/model/document.py:1233
msgid "Only draft documents can be discarded"
msgstr "仅草稿文档可丢弃"
@@ -17924,7 +17969,7 @@ msgstr "已打开"
msgid "Operation"
msgstr "操作"
-#: frappe/utils/data.py:2117
+#: frappe/utils/data.py:2127
msgid "Operator must be one of {0}"
msgstr "运算符必须是{0}之一"
@@ -18023,6 +18068,10 @@ msgstr "橙色"
msgid "Order"
msgstr "顺序"
+#: frappe/database/query.py:767
+msgid "Order By must be a string"
+msgstr ""
+
#. Label of the sb0 (Section Break) field in DocType 'About Us Settings'
#. Label of the company_history (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
@@ -18418,7 +18467,7 @@ msgstr "父项是数据将被添加到的文档名称"
msgid "Parent-to-child or child-to-parent grouping is not allowed."
msgstr "禁止父子层级互相嵌套的分组方式。"
-#: frappe/permissions.py:807
+#: frappe/permissions.py:820
msgid "Parentfield not specified in {0}: {1}"
msgstr "{0}中未指定父字段:{1}"
@@ -18540,10 +18589,6 @@ msgstr "密码不匹配"
msgid "Passwords do not match!"
msgstr "密码不匹配!"
-#: frappe/email/doctype/newsletter/newsletter.py:157
-msgid "Past dates are not allowed for Scheduling."
-msgstr "计划调度不允许使用过去日期"
-
#: frappe/public/js/frappe/views/file/file_view.js:151
msgid "Paste"
msgstr "粘贴"
@@ -18689,7 +18734,7 @@ msgstr "永久提交{0}?"
msgid "Permanently delete {0}?"
msgstr "永久删除{0}?"
-#: frappe/core/doctype/user_type/user_type.py:84
+#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533
msgid "Permission Error"
msgstr "权限错误"
@@ -18841,7 +18886,7 @@ msgstr "电话"
msgid "Phone No."
msgstr "电话号码"
-#: frappe/utils/__init__.py:121
+#: frappe/utils/__init__.py:122
msgid "Phone Number {0} set in field {1} is not valid."
msgstr "字段{1}中设置的电话号码{0}无效"
@@ -19114,10 +19159,6 @@ msgstr "请在打印机设置中移除打印机映射后重试"
msgid "Please save before attaching."
msgstr "附加前请先保存"
-#: frappe/email/doctype/newsletter/newsletter.py:131
-msgid "Please save the Newsletter before sending"
-msgstr "发送前请先保存新闻稿"
-
#: frappe/public/js/frappe/form/sidebar/assign_to.js:52
msgid "Please save the document before assignment"
msgstr "分配前请先保存文档"
@@ -19150,7 +19191,7 @@ msgstr "请选择最低密码强度"
msgid "Please select X and Y fields"
msgstr "请选择X和Y字段"
-#: frappe/utils/__init__.py:128
+#: frappe/utils/__init__.py:129
msgid "Please select a country code for field {1}."
msgstr "请为字段{1}选择国家代码"
@@ -19166,7 +19207,7 @@ msgstr "请选择文件或URL"
msgid "Please select a valid csv file with data"
msgstr "请选择包含数据的有效CSV文件"
-#: frappe/utils/data.py:299
+#: frappe/utils/data.py:309
msgid "Please select a valid date filter"
msgstr "请选择有效日期过滤器"
@@ -19244,7 +19285,7 @@ msgstr "请通过工具 > 邮箱账户配置默认发件账户"
msgid "Please specify"
msgstr "请具体说明"
-#: frappe/permissions.py:783
+#: frappe/permissions.py:796
msgid "Please specify a valid parent DocType for {0}"
msgstr "请为{0}指定有效的父文档类型"
@@ -19281,10 +19322,6 @@ msgstr "继续前请更新{}"
msgid "Please use a valid LDAP search filter"
msgstr "请使用有效的LDAP搜索过滤器"
-#: frappe/email/doctype/newsletter/newsletter.py:333
-msgid "Please verify your Email Address"
-msgstr "请验证邮箱地址"
-
#: frappe/utils/password.py:218
msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information."
msgstr "更多信息请访问https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key"
@@ -19378,6 +19415,10 @@ msgstr "{0}发布的文章"
msgid "Posts filed under {0}"
msgstr "归类于{0}的文章"
+#: frappe/database/query.py:1518
+msgid "Potentially dangerous content in string literal: {0}"
+msgstr ""
+
#. Label of the precision (Select) field in DocType 'DocField'
#. Label of the precision (Select) field in DocType 'Custom Field'
#. Label of the precision (Select) field in DocType 'Customize Form Field'
@@ -19437,7 +19478,7 @@ msgstr "预制报表分析"
msgid "Prepared Report User"
msgstr "预制报表用户"
-#: frappe/desk/query_report.py:306
+#: frappe/desk/query_report.py:307
msgid "Prepared report render failed"
msgstr "预制报表渲染失败"
@@ -19466,8 +19507,6 @@ msgstr "按Enter键保存"
#: frappe/core/doctype/data_import/data_import.json
#: frappe/core/doctype/file/file.json
#: frappe/desk/doctype/custom_html_block/custom_html_block.json
-#: frappe/email/doctype/newsletter/newsletter.js:14
-#: frappe/email/doctype/newsletter/newsletter.js:42
#: frappe/email/doctype/notification/notification.js:190
#: frappe/integrations/doctype/webhook/webhook.js:90
#: frappe/printing/doctype/print_style/print_style.json
@@ -19855,7 +19894,7 @@ msgstr "个人资料"
msgid "Progress"
msgstr "进度"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:407
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:408
msgid "Project"
msgstr "项目"
@@ -19950,14 +19989,7 @@ msgstr "公开文件(MB)"
msgid "Publish"
msgstr "发布"
-#. Label of the publish_as_a_web_page_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Publish as a web page"
-msgstr "发布为网页"
-
#. Label of the published (Check) field in DocType 'Comment'
-#. Label of the published (Check) field in DocType 'Newsletter'
#. Label of the published (Check) field in DocType 'Blog Category'
#. Label of the published (Check) field in DocType 'Blog Post'
#. Label of the published (Check) field in DocType 'Help Article'
@@ -19965,7 +19997,6 @@ msgstr "发布为网页"
#. Label of the published (Check) field in DocType 'Web Form'
#. Label of the published (Check) field in DocType 'Web Page'
#: frappe/core/doctype/comment/comment.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
@@ -20140,7 +20171,7 @@ msgstr "查询报表"
msgid "Query analysis complete. Check suggested indexes."
msgstr "查询分析完成,请检查建议索引"
-#: frappe/utils/safe_exec.py:495
+#: frappe/utils/safe_exec.py:499
msgid "Query must be of SELECT or read-only WITH type."
msgstr "查询必须为SELECT或只读WITH类型"
@@ -20186,7 +20217,6 @@ msgstr "队列"
#. Option for the 'Status' (Select) field in DocType 'Integration Request'
#: frappe/core/doctype/prepared_report/prepared_report.json
#: frappe/core/doctype/submission_queue/submission_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:208
#: frappe/integrations/doctype/integration_request/integration_request.json
msgid "Queued"
msgstr "已排队"
@@ -20209,19 +20239,11 @@ msgstr "已加入提交队列,可通过{0}跟踪进度"
msgid "Queued for backup. You will receive an email with the download link"
msgstr "已加入备份队列,下载链接将通过邮件发送"
-#: frappe/email/doctype/newsletter/newsletter.js:95
-msgid "Queued {0} emails"
-msgstr "已排队{0}封邮件"
-
#. Label of the queues (Data) field in DocType 'System Health Report Workers'
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "Queues"
msgstr "队列列表"
-#: frappe/email/doctype/newsletter/newsletter.js:90
-msgid "Queuing emails..."
-msgstr "正在加入邮件队列..."
-
#: frappe/desk/doctype/bulk_update/bulk_update.py:85
msgid "Queuing {0} for Submission"
msgstr "正在将{0}加入提交队列"
@@ -20422,7 +20444,7 @@ msgstr "收件人阅读时间"
msgid "Read mode"
msgstr "阅读模式"
-#: frappe/utils/safe_exec.py:95
+#: frappe/utils/safe_exec.py:97
msgid "Read the documentation to know more"
msgstr "查阅文档以了解更多"
@@ -21289,7 +21311,7 @@ msgstr "达到报表限制"
msgid "Report timed out."
msgstr "报表超时"
-#: frappe/desk/query_report.py:597
+#: frappe/desk/query_report.py:598
msgid "Report updated successfully"
msgstr "报表更新成功"
@@ -21310,7 +21332,7 @@ msgstr "报表{0}"
msgid "Report {0} deleted"
msgstr "报表{0}已删除"
-#: frappe/desk/query_report.py:53
+#: frappe/desk/query_report.py:54
msgid "Report {0} is disabled"
msgstr "报表{0}已禁用"
@@ -21643,10 +21665,8 @@ msgstr "撤销"
msgid "Revoked"
msgstr "已撤销"
-#. Option for the 'Content Type' (Select) field in DocType 'Newsletter'
#. Option for the 'Content Type' (Select) field in DocType 'Blog Post'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/web_page/web_page.js:92
#: frappe/website/doctype/web_page/web_page.json
@@ -21857,7 +21877,6 @@ msgstr "舍入方法"
#. Label of the route (Data) field in DocType 'Navbar Item'
#. Label of the route (Data) field in DocType 'DocType Layout'
#. Label of the route (Data) field in DocType 'Route History'
-#. Label of the route (Data) field in DocType 'Newsletter'
#. Label of the route (Data) field in DocType 'Blog Category'
#. Label of the route (Data) field in DocType 'Blog Post'
#. Label of the route (Data) field in DocType 'Help Article'
@@ -21871,7 +21890,6 @@ msgstr "舍入方法"
#: frappe/core/doctype/navbar_item/navbar_item.json
#: frappe/custom/doctype/doctype_layout/doctype_layout.json
#: frappe/desk/doctype/route_history/route_history.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/website/doctype/blog_category/blog_category.json
#: frappe/website/doctype/blog_post/blog_post.json
#: frappe/website/doctype/help_article/help_article.json
@@ -21989,7 +22007,7 @@ msgstr "规则"
msgid "Rule Conditions"
msgstr "规则条件"
-#: frappe/permissions.py:662
+#: frappe/permissions.py:675
msgid "Rule for this doctype, role, permlevel and if-owner combination already exists."
msgstr "该文档类型、角色、权限层级和所有者条件的组合规则已存在。"
@@ -22178,11 +22196,11 @@ msgstr "周六"
#: frappe/public/js/frappe/list/list_settings.js:36
#: frappe/public/js/frappe/list/list_settings.js:247
#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:356
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:355
#: frappe/public/js/frappe/utils/common.js:443
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:342
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:343
#: frappe/public/js/frappe/views/reports/query_report.js:1896
#: frappe/public/js/frappe/views/reports/report_view.js:1726
#: frappe/public/js/frappe/views/workspace/workspace.js:335
@@ -22274,32 +22292,17 @@ msgstr "扫描二维码并输入显示的验证码。"
#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
-#: frappe/email/doctype/newsletter/newsletter.js:125
msgid "Schedule"
msgstr "计划"
-#: frappe/email/doctype/newsletter/newsletter.js:106
-msgid "Schedule Newsletter"
-msgstr "计划发送新闻稿"
-
#: frappe/public/js/frappe/views/communication.js:94
msgid "Schedule Send At"
msgstr "计划发送时间"
-#: frappe/email/doctype/newsletter/newsletter.js:70
-msgid "Schedule sending"
-msgstr "计划发送"
-
-#. Label of the schedule_sending (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Schedule sending at a later time"
-msgstr "稍后计划发送"
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json
-#: frappe/email/doctype/newsletter/newsletter_list.js:7
msgid "Scheduled"
msgstr "已计划"
@@ -22333,17 +22336,6 @@ msgstr "计划作业类型"
msgid "Scheduled Jobs Logs"
msgstr "计划作业日志"
-#. Label of the schedule_settings_section (Section Break) field in DocType
-#. 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled Sending"
-msgstr "计划发送"
-
-#. Label of the scheduled_to_send (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Scheduled To Send"
-msgstr "计划发送"
-
#: frappe/core/doctype/server_script/server_script.py:148
msgid "Scheduled execution for script {0} has updated"
msgstr "脚本{0}的计划执行已更新"
@@ -22555,6 +22547,11 @@ msgstr "搜索..."
msgid "Searching ..."
msgstr "正在搜索..."
+#: frappe/public/js/frappe/form/controls/duration.js:35
+msgctxt "Duration"
+msgid "Seconds"
+msgstr ""
+
#. Option for the 'Type' (Select) field in DocType 'Web Template'
#: frappe/public/js/form_builder/components/Section.vue:263
#: frappe/website/doctype/web_template/web_template.json
@@ -22944,9 +22941,7 @@ msgstr "选择{0}"
msgid "Self approval is not allowed"
msgstr "不允许自我审批"
-#: frappe/email/doctype/newsletter/newsletter.js:66
-#: frappe/email/doctype/newsletter/newsletter.js:74
-#: frappe/email/doctype/newsletter/newsletter.js:162 frappe/www/contact.html:41
+#: frappe/www/contact.html:41
msgid "Send"
msgstr "发送"
@@ -22977,11 +22972,6 @@ msgstr "发送警报于"
msgid "Send Email Alert"
msgstr "发送邮件提醒"
-#. Label of the schedule_send (Datetime) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Email At"
-msgstr "发送邮件于"
-
#. Label of the send_email (Check) field in DocType 'Workflow Document State'
#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json
msgid "Send Email On State"
@@ -23039,38 +23029,16 @@ msgstr "发送已读回执"
msgid "Send System Notification"
msgstr "发送系统通知"
-#: frappe/email/doctype/newsletter/newsletter.js:153
-msgid "Send Test Email"
-msgstr "发送测试邮件"
-
#. Label of the send_to_all_assignees (Check) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send To All Assignees"
msgstr "发送给所有负责人"
-#. Label of the send_unsubscribe_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Unsubscribe Link"
-msgstr "发送退订链接"
-
-#. Label of the send_webview_link (Check) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Send Web View Link"
-msgstr "发送网页视图链接"
-
#. Label of the send_welcome_email (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Send Welcome Email"
msgstr "发送欢迎邮件"
-#: frappe/email/doctype/newsletter/newsletter.js:10
-msgid "Send a test email"
-msgstr "发送测试邮件"
-
-#: frappe/email/doctype/newsletter/newsletter.js:166
-msgid "Send again"
-msgstr "重新发送"
-
#. Description of the 'Reference Date' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Send alert if date matches this field's value"
@@ -23118,10 +23086,6 @@ msgstr "发送登录链接"
msgid "Send me a copy"
msgstr "发送副本给我"
-#: frappe/email/doctype/newsletter/newsletter.js:46
-msgid "Send now"
-msgstr "立即发送"
-
#. Label of the send_if_data (Check) field in DocType 'Auto Email Report'
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Send only if there is any data"
@@ -23137,19 +23101,15 @@ msgstr "在邮件中包含退订信息"
#. Label of the sender (Data) field in DocType 'ToDo'
#. Label of the sender (Link) field in DocType 'Auto Email Report'
#. Label of the sender (Data) field in DocType 'Email Queue'
-#. Label of the send_from (Data) field in DocType 'Newsletter'
#. Label of the sender (Link) field in DocType 'Notification'
#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender"
msgstr "发件人"
-#. Label of the sender_email (Data) field in DocType 'Newsletter'
#. Label of the sender_email (Data) field in DocType 'Notification'
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.json
msgid "Sender Email"
msgstr "发件人邮箱"
@@ -23166,9 +23126,7 @@ msgid "Sender Field should have Email in options"
msgstr "发件人字段选项中应包含邮箱"
#. Label of the sender_name (Data) field in DocType 'SMS Log'
-#. Label of the sender_name (Data) field in DocType 'Newsletter'
#: frappe/core/doctype/sms_log/sms_log.json
-#: frappe/email/doctype/newsletter/newsletter.json
msgid "Sender Name"
msgstr "发件人名称"
@@ -23188,18 +23146,9 @@ msgstr "Sendgrid"
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
-#: frappe/email/doctype/newsletter/newsletter.js:201
msgid "Sending"
msgstr "正在发送"
-#: frappe/email/doctype/newsletter/newsletter.js:203
-msgid "Sending emails"
-msgstr "发送邮件中"
-
-#: frappe/email/doctype/newsletter/newsletter.js:164
-msgid "Sending..."
-msgstr "发送中..."
-
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#. Option for the 'Sent or Received' (Select) field in DocType 'Communication'
#. Option for the 'Status' (Select) field in DocType 'Email Queue'
@@ -23207,8 +23156,6 @@ msgstr "发送中..."
#: frappe/core/doctype/communication/communication.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.js:196
-#: frappe/email/doctype/newsletter/newsletter_list.js:5
msgid "Sent"
msgstr "已发送"
@@ -23278,7 +23225,7 @@ msgstr "序列{0}已在{1}中使用"
msgid "Server Action"
msgstr "服务器操作"
-#: frappe/app.py:376 frappe/public/js/frappe/request.js:611
+#: frappe/app.py:375 frappe/public/js/frappe/request.js:611
#: frappe/www/error.html:36 frappe/www/error.py:15
msgid "Server Error"
msgstr "服务器错误"
@@ -23297,7 +23244,7 @@ msgstr "服务器IP"
msgid "Server Script"
msgstr "服务器脚本"
-#: frappe/utils/safe_exec.py:94
+#: frappe/utils/safe_exec.py:96
msgid "Server Scripts are disabled. Please enable server scripts from bench configuration."
msgstr "服务器脚本已禁用。请从bench配置启用服务器脚本"
@@ -23336,15 +23283,15 @@ msgstr "会话默认设置"
#. Label of the session_defaults (Table) field in DocType 'Session Default
#. Settings'
#: frappe/core/doctype/session_default_settings/session_default_settings.json
-#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:355
+#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:354
msgid "Session Defaults"
msgstr "会话默认值"
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:340
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:339
msgid "Session Defaults Saved"
msgstr "会话默认值已保存"
-#: frappe/app.py:353
+#: frappe/app.py:352
msgid "Session Expired"
msgstr "会话已过期"
@@ -23598,7 +23545,7 @@ msgstr "系统设置中"
#: frappe/integrations/workspace/integrations/integrations.json
#: frappe/public/js/frappe/form/templates/print_layout.html:25
#: frappe/public/js/frappe/ui/apps_switcher.js:137
-#: frappe/public/js/frappe/ui/toolbar/toolbar.js:313
+#: frappe/public/js/frappe/ui/toolbar/toolbar.js:312
#: frappe/public/js/frappe/views/workspace/workspace.js:362
#: frappe/website/doctype/web_form/web_form.json
#: frappe/website/doctype/web_page/web_page.json
@@ -24681,7 +24628,6 @@ msgstr "统计时间间隔"
#. Label of the status (Select) field in DocType 'ToDo'
#. Label of the status (Select) field in DocType 'Email Queue'
#. Label of the status (Select) field in DocType 'Email Queue Recipient'
-#. Label of the status_section (Section Break) field in DocType 'Newsletter'
#. Label of the status (Select) field in DocType 'Integration Request'
#. Label of the status (Select) field in DocType 'OAuth Bearer Token'
#. Label of the status (Select) field in DocType 'Personal Data Deletion
@@ -24706,7 +24652,6 @@ msgstr "统计时间间隔"
#: frappe/desk/doctype/todo/todo.json
#: frappe/email/doctype/email_queue/email_queue.json
#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/integrations/doctype/integration_request/integration_request.json
#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json
#: frappe/public/js/frappe/list/list_settings.js:359
@@ -24847,8 +24792,6 @@ msgstr "子域名"
#. Label of the subject (Small Text) field in DocType 'Event'
#. Label of the subject (Text) field in DocType 'Notification Log'
#. Label of the subject (Data) field in DocType 'Email Template'
-#. Label of the subject (Small Text) field in DocType 'Newsletter'
-#. Label of the subject_section (Section Break) field in DocType 'Newsletter'
#. Label of the subject (Data) field in DocType 'Notification'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/core/doctype/activity_log/activity_log.json
@@ -24857,7 +24800,6 @@ msgstr "子域名"
#: frappe/desk/doctype/event/event.json
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/email/doctype/email_template/email_template.json
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/email/doctype/notification/notification.js:200
#: frappe/email/doctype/notification/notification.json
#: frappe/public/js/frappe/views/communication.js:116
@@ -25228,7 +25170,7 @@ msgstr "同步中"
msgid "Syncing {0} of {1}"
msgstr "正在同步{1}中的{0}"
-#: frappe/utils/data.py:2494
+#: frappe/utils/data.py:2528
msgid "Syntax Error"
msgstr "语法错误"
@@ -25535,7 +25477,7 @@ msgstr "表格已截断"
msgid "Table updated"
msgstr "表格已更新"
-#: frappe/model/document.py:1564
+#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
msgstr "表{0}不能为空"
@@ -25662,10 +25604,6 @@ msgstr "测试任务ID"
msgid "Test Spanish"
msgstr "测试西班牙语"
-#: frappe/email/doctype/newsletter/newsletter.py:92
-msgid "Test email sent to {0}"
-msgstr "测试邮件已发送至{0}"
-
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
msgstr "测试文件夹"
@@ -25733,10 +25671,6 @@ msgstr "感谢您的邮件"
msgid "Thank you for your feedback!"
msgstr "感谢您的反馈!"
-#: frappe/email/doctype/newsletter/newsletter.py:332
-msgid "Thank you for your interest in subscribing to our updates"
-msgstr "感谢您订阅我们的更新"
-
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
msgstr "感谢您的留言"
@@ -25931,7 +25865,7 @@ msgstr "重置密码链接已过期"
msgid "The reset password link has either been used before or is invalid"
msgstr "重置密码链接已被使用或无效"
-#: frappe/app.py:368 frappe/public/js/frappe/request.js:149
+#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
msgstr "您请求的资源不可用"
@@ -25943,7 +25877,7 @@ msgstr "角色{0}应为自定义角色。"
msgid "The selected document {0} is not a {1}."
msgstr "所选文档{0}不是{1}类型。"
-#: frappe/utils/response.py:331
+#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
msgstr "系统正在更新。请稍后刷新页面。"
@@ -26096,7 +26030,7 @@ msgstr "第三方认证"
msgid "This Currency is disabled. Enable to use in transactions"
msgstr "此货币已禁用。启用后方可用于交易"
-#: frappe/public/js/frappe/views/kanban/kanban_view.js:390
+#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
msgstr "此看板将设为私有"
@@ -26120,7 +26054,7 @@ msgstr "本年"
msgid "This action is irreversible. Do you wish to continue?"
msgstr "此操作不可逆。是否继续?"
-#: frappe/__init__.py:757
+#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
msgstr "此操作仅允许{}执行"
@@ -26284,14 +26218,6 @@ msgstr "可能分多页打印"
msgid "This month"
msgstr "本月"
-#: frappe/email/doctype/newsletter/newsletter.js:223
-msgid "This newsletter is scheduled to be sent on {0}"
-msgstr "此简讯计划于{0}发送"
-
-#: frappe/email/doctype/newsletter/newsletter.js:50
-msgid "This newsletter was scheduled to send on a later date. Are you sure you want to send it now?"
-msgstr "此简讯原计划稍后发送。确定要立即发送吗?"
-
#: frappe/public/js/frappe/views/reports/query_report.js:1035
msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead."
msgstr "此报告包含{0}行数据,浏览器显示过大,建议{1}此报告。"
@@ -26404,7 +26330,6 @@ msgstr "星期四"
#: frappe/core/doctype/report_filter/report_filter.json
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
-#: frappe/email/doctype/newsletter/newsletter.js:118
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Time"
msgstr "时间"
@@ -26630,10 +26555,8 @@ msgid "Title of the page"
msgstr "页面标题"
#. Label of the recipients (Code) field in DocType 'Communication'
-#. Label of the recipients (Section Break) field in DocType 'Newsletter'
#: frappe/core/doctype/communication/communication.json
#: frappe/core/doctype/permission_log/permission_log.js:12
-#: frappe/email/doctype/newsletter/newsletter.json
#: frappe/public/js/frappe/views/inbox/inbox_view.js:70
msgid "To"
msgstr "至"
@@ -26916,7 +26839,7 @@ msgstr "右上角"
msgid "Topic"
msgstr "主题"
-#: frappe/desk/query_report.py:533
+#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
@@ -26944,16 +26867,8 @@ msgstr "总图片数"
msgid "Total Outgoing Emails"
msgstr "总发送邮件数"
-#. Label of the total_recipients (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Recipients"
-msgstr "总收件人数"
-
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
-#. Label of the total_subscribers (Read Only) field in DocType 'Newsletter
-#. Email Group'
#: frappe/email/doctype/email_group/email_group.json
-#: frappe/email/doctype/newsletter_email_group/newsletter_email_group.json
msgid "Total Subscribers"
msgstr "总订阅人数"
@@ -26962,11 +26877,6 @@ msgstr "总订阅人数"
msgid "Total Users"
msgstr "总用户数"
-#. Label of the total_views (Int) field in DocType 'Newsletter'
-#: frappe/email/doctype/newsletter/newsletter.json
-msgid "Total Views"
-msgstr "总浏览量"
-
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
@@ -27366,23 +27276,17 @@ msgid "URL to go to on clicking the slideshow image"
msgstr "点击轮播图片后跳转的URL"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_campaign/utm_campaign.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Campaign"
msgstr "UTM活动"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_medium/utm_medium.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Medium"
msgstr "UTM媒介"
#. Name of a DocType
-#. Label of a Link in the Website Workspace
#: frappe/website/doctype/utm_source/utm_source.json
-#: frappe/website/workspace/website/website.json
msgid "UTM Source"
msgstr "UTM来源"
@@ -27432,7 +27336,7 @@ msgstr "无法写入{0}的文件格式"
msgid "Unassign Condition"
msgstr "取消分配条件"
-#: frappe/app.py:376
+#: frappe/app.py:375
msgid "Uncaught Exception"
msgstr "未捕获异常"
@@ -27448,6 +27352,10 @@ msgstr "撤销"
msgid "Undo last action"
msgstr "撤销上一步操作"
+#: frappe/database/query.py:1495
+msgid "Unescaped quotes in string literal: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/form/templates/form_sidebar.html:109
#: frappe/public/js/frappe/form/toolbar.js:876
msgid "Unfollow"
@@ -27480,7 +27388,7 @@ msgstr "未知"
msgid "Unknown Column: {0}"
msgstr "未知列:{0}"
-#: frappe/utils/data.py:1246
+#: frappe/utils/data.py:1256
msgid "Unknown Rounding Method: {}"
msgstr "未知舍入方法:{}"
@@ -27513,7 +27421,7 @@ msgstr "未读"
msgid "Unread Notification Sent"
msgstr "已发送未读通知"
-#: frappe/utils/safe_exec.py:496
+#: frappe/utils/safe_exec.py:500
msgid "Unsafe SQL query"
msgstr "不安全的SQL查询"
@@ -27527,7 +27435,7 @@ msgstr "取消全选"
msgid "Unshared"
msgstr "取消共享"
-#: frappe/email/queue.py:66 frappe/www/unsubscribe.html:32
+#: frappe/email/queue.py:66
msgid "Unsubscribe"
msgstr "退订"
@@ -27551,6 +27459,11 @@ msgstr "退订参数"
msgid "Unsubscribed"
msgstr "已退订"
+#: frappe/database/query.py:653 frappe/database/query.py:1387
+#: frappe/database/query.py:1397
+msgid "Unsupported function or invalid field name: {0}"
+msgstr ""
+
#: frappe/public/js/frappe/data_import/import_preview.js:72
msgid "Untitled Column"
msgstr "未命名列"
@@ -27673,7 +27586,7 @@ msgstr "已更新至新版本🎉"
msgid "Updated successfully"
msgstr "更新成功"
-#: frappe/utils/response.py:330
+#: frappe/utils/response.py:337
msgid "Updating"
msgstr "更新中"
@@ -28408,7 +28321,7 @@ msgstr "值过大"
msgid "Value {0} missing for {1}"
msgstr "{1}缺少值{0}"
-#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:859
+#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869
msgid "Value {0} must be in the valid duration format: d h m s"
msgstr "值{0}必须符合有效时长格式:d h m s"
@@ -28833,7 +28746,6 @@ msgstr "Webhook URL"
#. Group in Module Def's connections
#. Name of a Workspace
#: frappe/core/doctype/module_def/module_def.json
-#: frappe/email/doctype/newsletter/newsletter.py:457
#: frappe/public/js/frappe/ui/apps_switcher.js:125
#: frappe/public/js/frappe/ui/toolbar/about.js:8
#: frappe/website/workspace/website/website.json
@@ -28841,9 +28753,7 @@ msgid "Website"
msgstr "网站"
#. Name of a report
-#. Label of a Link in the Website Workspace
#: frappe/website/report/website_analytics/website_analytics.json
-#: frappe/website/workspace/website/website.json
msgid "Website Analytics"
msgstr "网站分析"
@@ -29279,7 +29189,7 @@ msgstr "工作流更新成功"
msgid "Workspace"
msgstr "工作区"
-#: frappe/public/js/frappe/router.js:173
+#: frappe/public/js/frappe/router.js:175
msgid "Workspace {0} does not exist"
msgstr "工作区{0}不存在"
@@ -29502,11 +29412,11 @@ msgstr "您正在模拟其他用户"
msgid "You are not allowed to access this resource"
msgstr "您无权访问此资源"
-#: frappe/permissions.py:418
+#: frappe/permissions.py:431
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}"
msgstr "您无权访问{0}记录,因其通过字段{3}关联到{1}'{2}'"
-#: frappe/permissions.py:407
+#: frappe/permissions.py:420
msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}"
msgstr "您无权访问{0}记录,因其在第{3}行字段{4}关联到{1}'{2}'"
@@ -29529,7 +29439,7 @@ msgstr "您无权编辑此报表"
#: frappe/core/doctype/data_import/exporter.py:121
#: frappe/core/doctype/data_import/exporter.py:125
#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411
-#: frappe/permissions.py:613
+#: frappe/permissions.py:626
msgid "You are not allowed to export {} doctype"
msgstr "您无权导出{}文档类型"
@@ -29557,7 +29467,7 @@ msgstr "未登录状态下无权访问此页面"
msgid "You are not permitted to access this page."
msgstr "您无权访问此页面"
-#: frappe/__init__.py:676
+#: frappe/__init__.py:677
msgid "You are not permitted to access this resource. Login to access"
msgstr ""
@@ -29652,7 +29562,7 @@ msgstr "可从以下选项中选择:"
msgid "You can set a high value here if multiple users will be logging in from the same network."
msgstr "若多用户同网络登录可设置较高值"
-#: frappe/desk/query_report.py:343
+#: frappe/desk/query_report.py:344
msgid "You can try changing the filters of your report."
msgstr "可尝试调整报表过滤器"
@@ -29729,11 +29639,15 @@ msgstr "您对{}无读取或选择权限"
msgid "You do not have enough permissions to access this resource. Please contact your manager to get access."
msgstr "权限不足,请联系管理员获取访问权限"
-#: frappe/app.py:361
+#: frappe/app.py:360
msgid "You do not have enough permissions to complete the action"
msgstr "权限不足无法完成操作"
-#: frappe/desk/query_report.py:831
+#: frappe/database/query.py:529
+msgid "You do not have permission to access field: {0}"
+msgstr ""
+
+#: frappe/desk/query_report.py:861
msgid "You do not have permission to access {0}: {1}."
msgstr "您无权访问{0}:{1}。"
@@ -29741,7 +29655,7 @@ msgstr "您无权访问{0}:{1}。"
msgid "You do not have permissions to cancel all linked documents."
msgstr "您无权取消所有关联文档"
-#: frappe/desk/query_report.py:42
+#: frappe/desk/query_report.py:43
msgid "You don't have access to Report: {0}"
msgstr "您无权访问报表:{0}"
@@ -29749,11 +29663,11 @@ msgstr "您无权访问报表:{0}"
msgid "You don't have permission to access the {0} DocType."
msgstr "您无权访问{0}文档类型"
-#: frappe/utils/response.py:283 frappe/utils/response.py:287
+#: frappe/utils/response.py:290 frappe/utils/response.py:294
msgid "You don't have permission to access this file"
msgstr "您无权访问此文件"
-#: frappe/desk/query_report.py:48
+#: frappe/desk/query_report.py:49
msgid "You don't have permission to get a report on: {0}"
msgstr "您无权获取{0}的报表"
@@ -29846,7 +29760,7 @@ msgstr "您需要是系统用户才能访问此页面"
msgid "You need to be in developer mode to edit a Standard Web Form"
msgstr "您需要处于开发者模式才能编辑标准Web表单"
-#: frappe/utils/response.py:272
+#: frappe/utils/response.py:279
msgid "You need to be logged in and have System Manager Role to be able to access backups."
msgstr "您需要登录并具有系统管理员角色才能访问备份"
@@ -30012,7 +29926,7 @@ msgstr "用于邮件页脚的组织名称和地址"
msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail."
msgstr "我们已收到您的查询。我们将尽快回复。如有其他信息,请回复此邮件"
-#: frappe/app.py:354
+#: frappe/app.py:353
msgid "Your session has expired, please login again to continue."
msgstr "您的会话已过期,请重新登录以继续"
@@ -30024,7 +29938,7 @@ msgstr "您的站点正在进行维护或更新"
msgid "Your verification code is {0}"
msgstr "您的验证码是{0}"
-#: frappe/utils/data.py:1547
+#: frappe/utils/data.py:1557
msgid "Zero"
msgstr "零"
@@ -30071,7 +29985,7 @@ msgstr "插入后"
msgid "amend"
msgstr "修订"
-#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1553
+#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1563
msgid "and"
msgstr "和"
@@ -30128,7 +30042,7 @@ msgstr "创建"
msgid "cyan"
msgstr "青色"
-#: frappe/public/js/frappe/form/controls/duration.js:208
+#: frappe/public/js/frappe/form/controls/duration.js:218
#: frappe/public/js/frappe/utils/utils.js:1116
msgctxt "Days (Field: Duration)"
msgid "d"
@@ -30243,7 +30157,7 @@ msgstr "电子邮件"
msgid "email inbox"
msgstr "电子邮件收件箱"
-#: frappe/permissions.py:412 frappe/permissions.py:423
+#: frappe/permissions.py:425 frappe/permissions.py:436
#: frappe/public/js/frappe/form/controls/link.js:503
msgid "empty"
msgstr "空"
@@ -30295,7 +30209,7 @@ msgstr "灰色"
msgid "gzip not found in PATH! This is required to take a backup."
msgstr "在PATH中找不到gzip!这是进行备份的必要条件"
-#: frappe/public/js/frappe/form/controls/duration.js:209
+#: frappe/public/js/frappe/form/controls/duration.js:219
#: frappe/public/js/frappe/utils/utils.js:1120
msgctxt "Hours (Field: Duration)"
msgid "h"
@@ -30329,7 +30243,7 @@ msgstr "jane@example.com"
msgid "just now"
msgstr "刚刚"
-#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:289
+#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290
msgid "label"
msgstr "标签"
@@ -30369,7 +30283,7 @@ msgstr "需要登录"
msgid "long"
msgstr "长整型"
-#: frappe/public/js/frappe/form/controls/duration.js:210
+#: frappe/public/js/frappe/form/controls/duration.js:220
#: frappe/public/js/frappe/utils/utils.js:1124
msgctxt "Minutes (Field: Duration)"
msgid "m"
@@ -30559,7 +30473,7 @@ msgstr "响应"
msgid "restored {0} as {1}"
msgstr "已将{0}恢复为{1}"
-#: frappe/public/js/frappe/form/controls/duration.js:211
+#: frappe/public/js/frappe/form/controls/duration.js:221
#: frappe/public/js/frappe/utils/utils.js:1128
msgctxt "Seconds (Field: Duration)"
msgid "s"
@@ -30894,7 +30808,7 @@ msgstr "{0}已退订"
msgid "{0} already unsubscribed for {1} {2}"
msgstr "{0}已为{1} {2}退订"
-#: frappe/utils/data.py:1740
+#: frappe/utils/data.py:1750
msgid "{0} and {1}"
msgstr "{0}和{1}"
@@ -31000,6 +30914,10 @@ msgstr "第{1}行不存在{0}"
msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values"
msgstr "{1}中的{0}字段存在重复值,不能设置为唯一"
+#: frappe/database/query.py:708
+msgid "{0} fields cannot contain backticks (`): {1}"
+msgstr ""
+
#: frappe/core/doctype/data_import/importer.py:1068
msgid "{0} format could not be determined from the values in this column. Defaulting to {1}."
msgstr "无法根据此列值确定{0}格式,默认使用{1}"
@@ -31020,10 +30938,6 @@ msgstr "{0}小时"
msgid "{0} has already assigned default value for {1}."
msgstr "{0}已为{1}分配默认值"
-#: frappe/email/doctype/newsletter/newsletter.py:380
-msgid "{0} has been successfully added to the Email Group."
-msgstr "{0}已成功加入邮件组"
-
#: frappe/email/queue.py:123
msgid "{0} has left the conversation in {1} {2}"
msgstr "{0}已退出{1} {2}的对话"
@@ -31094,6 +31008,10 @@ msgstr "{0}类似于{1}"
msgid "{0} is mandatory"
msgstr "{0}是必填项"
+#: frappe/database/query.py:485
+msgid "{0} is not a child table of {1}"
+msgstr ""
+
#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50
msgid "{0} is not a field of doctype {1}"
msgstr "{0}不是文档类型{1}的字段"
@@ -31115,7 +31033,7 @@ msgid "{0} is not a valid DocType for Dynamic Link"
msgstr "{0}不是有效的动态链接文档类型"
#: frappe/email/doctype/email_group/email_group.py:131
-#: frappe/utils/__init__.py:202
+#: frappe/utils/__init__.py:203
msgid "{0} is not a valid Email Address"
msgstr "{0}不是有效的电子邮箱地址"
@@ -31123,11 +31041,11 @@ msgstr "{0}不是有效的电子邮箱地址"
msgid "{0} is not a valid ISO 3166 ALPHA-2 code."
msgstr "{0}不是有效的ISO 3166 ALPHA-2代码"
-#: frappe/utils/__init__.py:170
+#: frappe/utils/__init__.py:171
msgid "{0} is not a valid Name"
msgstr "{0}不是有效的名称"
-#: frappe/utils/__init__.py:149
+#: frappe/utils/__init__.py:150
msgid "{0} is not a valid Phone Number"
msgstr "{0}不是有效的电话号码"
@@ -31135,11 +31053,11 @@ msgstr "{0}不是有效的电话号码"
msgid "{0} is not a valid Workflow State. Please update your Workflow and try again."
msgstr "{0}不是有效的工作流状态。请更新工作流后重试"
-#: frappe/permissions.py:796
+#: frappe/permissions.py:809
msgid "{0} is not a valid parent DocType for {1}"
msgstr "{0}不是{1}的有效父文档类型"
-#: frappe/permissions.py:816
+#: frappe/permissions.py:829
msgid "{0} is not a valid parentfield for {1}"
msgstr "{0}不是{1}的有效父字段"
@@ -31227,23 +31145,23 @@ msgstr "{0}分钟前"
msgid "{0} months ago"
msgstr "{0}个月前"
-#: frappe/model/document.py:1791
+#: frappe/model/document.py:1793
msgid "{0} must be after {1}"
msgstr "{0}必须在{1}之后"
-#: frappe/model/document.py:1550
+#: frappe/model/document.py:1552
msgid "{0} must be beginning with '{1}'"
msgstr "{0}必须以'{1}'开头"
-#: frappe/model/document.py:1552
+#: frappe/model/document.py:1554
msgid "{0} must be equal to '{1}'"
msgstr "{0}必须等于'{1}'"
-#: frappe/model/document.py:1548
+#: frappe/model/document.py:1550
msgid "{0} must be none of {1}"
msgstr "{0}不能是{1}中的任何一项"
-#: frappe/model/document.py:1546 frappe/utils/csvutils.py:161
+#: frappe/model/document.py:1548 frappe/utils/csvutils.py:161
msgid "{0} must be one of {1}"
msgstr "{0}必须是{1}中的一项"
@@ -31255,7 +31173,7 @@ msgstr "需先设置{0}"
msgid "{0} must be unique"
msgstr "{0}必须唯一"
-#: frappe/model/document.py:1554
+#: frappe/model/document.py:1556
msgid "{0} must be {1} {2}"
msgstr "{0}必须为{1}{2}"
@@ -31284,16 +31202,12 @@ msgstr "{1}中的第{0}项"
msgid "{0} of {1} ({2} rows with children)"
msgstr "{1}中的第{0}项(含{2}行子项)"
-#: frappe/email/doctype/newsletter/newsletter.js:205
-msgid "{0} of {1} sent"
-msgstr "已发送{1}中的{0}"
-
-#: frappe/utils/data.py:1555
+#: frappe/utils/data.py:1565
msgctxt "Money in words"
msgid "{0} only."
msgstr "仅{0}"
-#: frappe/utils/data.py:1730
+#: frappe/utils/data.py:1740
msgid "{0} or {1}"
msgstr "{0}或{1}"
@@ -31330,11 +31244,11 @@ msgstr "{0}移除了其分配"
msgid "{0} role does not have permission on any doctype"
msgstr "{0}角色无任何文档类型权限"
-#: frappe/model/document.py:1784
+#: frappe/model/document.py:1786
msgid "{0} row #{1}: "
msgstr "{0}行#{1}:"
-#: frappe/desk/query_report.py:612
+#: frappe/desk/query_report.py:613
msgid "{0} saved successfully"
msgstr "{0}保存成功"
@@ -31446,7 +31360,7 @@ msgstr "{0}{1}不存在,请选择新合并目标"
msgid "{0} {1} is linked with the following submitted documents: {2}"
msgstr "{0}{1}关联了以下已提交文档:{2}"
-#: frappe/model/document.py:256 frappe/permissions.py:567
+#: frappe/model/document.py:256 frappe/permissions.py:580
msgid "{0} {1} not found"
msgstr "未找到{0}{1}"
@@ -31599,11 +31513,11 @@ msgstr "{{{0}}}不是有效字段名模式,应为{{field_name}}"
msgid "{} Complete"
msgstr "已完成{}"
-#: frappe/utils/data.py:2488
+#: frappe/utils/data.py:2522
msgid "{} Invalid python code on line {}"
msgstr "第{}行存在无效Python代码"
-#: frappe/utils/data.py:2497
+#: frappe/utils/data.py:2531
msgid "{} Possibly invalid python code.
{}"
msgstr "可能存在无效Python代码:
{}"
@@ -31625,7 +31539,7 @@ msgstr "{}字段不能为空"
msgid "{} has been disabled. It can only be enabled if {} is checked."
msgstr "{}已被禁用,需勾选{}方可启用"
-#: frappe/utils/data.py:135
+#: frappe/utils/data.py:145
msgid "{} is not a valid date string."
msgstr "{}不是有效日期字符串"
From e1217282acc6f35b2a5ecc55387b001a96105097 Mon Sep 17 00:00:00 2001
From: Vishal Sindham
Date: Sat, 28 Jun 2025 17:11:47 +0530
Subject: [PATCH 150/196] feat(password-reset-form): Add show/hide toggle
option to password reset form
---
frappe/templates/styles/card_style.css | 23 +++++++++++++++
frappe/www/update-password.html | 40 ++++++++++++++++++++------
2 files changed, 55 insertions(+), 8 deletions(-)
diff --git a/frappe/templates/styles/card_style.css b/frappe/templates/styles/card_style.css
index d400347e6d..7e843cc0de 100644
--- a/frappe/templates/styles/card_style.css
+++ b/frappe/templates/styles/card_style.css
@@ -90,3 +90,26 @@ button#update {
max-width: 100%;
vertical-align: middle;
}
+.field-icon {
+ left: 9px;
+ top: 5px;
+ position: absolute;
+ z-index: 2;
+ fill: var(--text-light);
+}
+.password-field {
+ position: relative;
+
+ input {
+ padding-left: 35px;
+ }
+
+ .toggle-password {
+ right: 9px;
+ top: 5px;
+ position: absolute;
+ z-index: 2;
+ cursor: pointer;
+ font-size: 12px;
+ }
+}
diff --git a/frappe/www/update-password.html b/frappe/www/update-password.html
index bd13302bca..604c111bbc 100644
--- a/frappe/www/update-password.html
+++ b/frappe/www/update-password.html
@@ -35,17 +35,30 @@
"
-msgstr ""
+msgstr "Postavi filtere ovdje. Na primjer:\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"
+"
"
#. Description of the 'Method' (Data) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
@@ -23483,19 +23511,26 @@ msgid "Set the path to a whitelisted function that will return the data for the
"\t\"route_options\": {\"from_date\": \"2023-05-23\"},\n"
"\t\"route\": [\"query-report\", \"Permitted Documents For User\"]\n"
"}"
-msgstr ""
+msgstr "Postavi put do funkcije s popisa dozvoljenih koja će vratiti podatke za numeričku karticu u formatu:\n\n"
+"\n"
+"{\n"
+"\"value\": value,\n"
+"\"fieldtype\": \"Valuta\",\n"
+"\"route_options\": {\"from_date\": \"2023-05-23\"},\n"
+"\"route\": [\"query-report\", \"Dopušteni dokumenti za korisnika\"]\n"
+"}"
#: frappe/contacts/doctype/address_template/address_template.py:33
msgid "Setting this Address Template as default as there is no other default"
-msgstr ""
+msgstr "Postavlja se ovog Šablona Adrese kao standard jer ne postoji drugi standard"
#: frappe/desk/doctype/global_search_settings/global_search_settings.py:86
msgid "Setting up Global Search documents."
-msgstr ""
+msgstr "Postavljanje dokumenata Globalne pretrage."
#: frappe/desk/page/setup_wizard/setup_wizard.js:285
msgid "Setting up your system"
-msgstr ""
+msgstr "Postavljanje vašeg sistema"
#. Label of the settings_tab (Tab Break) field in DocType 'DocType'
#. Label of the settings_tab (Tab Break) field in DocType 'User'
@@ -23514,66 +23549,66 @@ msgstr ""
#: frappe/website/doctype/web_page/web_page.json
#: frappe/website/workspace/website/website.json frappe/www/me.html:20
msgid "Settings"
-msgstr ""
+msgstr "Postavke"
#. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "Settings Dropdown"
-msgstr ""
+msgstr "Padajući Meni Postavki"
#. Description of a DocType
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Settings for Contact Us Page"
-msgstr ""
+msgstr "Postavke za Kontaktirajte Nas Stranicu"
#. Description of a DocType
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Settings for the About Us Page"
-msgstr ""
+msgstr "Postavke za O nama Stranicu"
#. Description of a DocType
#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Settings to control blog categories and interactions like comments and likes"
-msgstr ""
+msgstr "Postavke za kontrolu kategorija blogova i interakcija poput komentara i lajkova"
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567
msgid "Setup"
-msgstr ""
+msgstr "Postavljanja"
#: frappe/core/page/permission_manager/permission_manager_help.html:27
msgid "Setup > Customize Form"
-msgstr ""
+msgstr "Postavljanje> Prilagodi Formu"
#: frappe/core/page/permission_manager/permission_manager_help.html:8
msgid "Setup > User"
-msgstr ""
+msgstr "Postavljanje> Korisnik"
#: frappe/core/page/permission_manager/permission_manager_help.html:33
msgid "Setup > User Permissions"
-msgstr ""
+msgstr "Postavljanje > Korisničke Dozvole"
#: frappe/public/js/frappe/views/reports/query_report.js:1765
#: frappe/public/js/frappe/views/reports/report_view.js:1704
msgid "Setup Auto Email"
-msgstr ""
+msgstr "Postavljanje Automatske e-pošte"
#. Label of the setup_complete (Check) field in DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/desk/page/setup_wizard/setup_wizard.js:211
msgid "Setup Complete"
-msgstr ""
+msgstr "Postavljanje je Završeno"
#. Label of the setup_series (Section Break) field in DocType 'Document Naming
#. Settings'
#: frappe/core/doctype/document_naming_settings/document_naming_settings.json
msgid "Setup Series for transactions"
-msgstr ""
+msgstr "Postavljanje Serije Imenovanja za Transakcije"
#: frappe/desk/page/setup_wizard/setup_wizard.js:236
msgid "Setup failed"
-msgstr ""
+msgstr "Postavljanje nije uspjelo"
#. Label of the share (Check) field in DocType 'Custom DocPerm'
#. Label of the share (Check) field in DocType 'DocPerm'
@@ -23587,69 +23622,69 @@ msgstr ""
#: frappe/desk/doctype/notification_log/notification_log.json
#: frappe/public/js/frappe/form/templates/form_sidebar.html:90
msgid "Share"
-msgstr ""
+msgstr "Dijeli"
#: frappe/public/js/frappe/form/sidebar/share.js:107
msgid "Share With"
-msgstr ""
+msgstr "Podijeli sa"
#: frappe/public/js/frappe/form/templates/set_sharing.html:49
msgid "Share this document with"
-msgstr ""
+msgstr "Podijeli ovaj dokument sa"
#: frappe/public/js/frappe/form/sidebar/share.js:45
msgid "Share {0} with"
-msgstr ""
+msgstr "Podijeli {0} sa"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
msgid "Shared"
-msgstr ""
+msgstr "Podijeljeno"
#: frappe/desk/form/assign_to.py:132
msgid "Shared with the following Users with Read access:{0}"
-msgstr ""
+msgstr "Dijeli se sa sljedećim korisnicima s dozvolom za čitanje:{0}"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Shipping"
-msgstr ""
+msgstr "Dostava"
#: frappe/public/js/frappe/form/templates/address_list.html:31
msgid "Shipping Address"
-msgstr ""
+msgstr "Dostavna Adresa"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Shop"
-msgstr ""
+msgstr "Trgovina"
#. Label of the short_name (Data) field in DocType 'Blogger'
#: frappe/website/doctype/blogger/blogger.json
msgid "Short Name"
-msgstr ""
+msgstr "Kratko Ime"
#: frappe/utils/password_strength.py:91
msgid "Short keyboard patterns are easy to guess"
-msgstr ""
+msgstr "Kratke mustre tastature je lako pogoditi"
#. Label of the shortcuts (Table) field in DocType 'Workspace'
#. Label of the tab_break_15 (Tab Break) field in DocType 'Workspace'
#: frappe/desk/doctype/workspace/workspace.json
#: frappe/public/js/frappe/form/grid_row_form.js:42
msgid "Shortcuts"
-msgstr ""
+msgstr "Prečice"
#: frappe/public/js/frappe/widgets/base_widget.js:46
#: frappe/public/js/frappe/widgets/base_widget.js:178
#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31
msgid "Show"
-msgstr ""
+msgstr "Prikaži"
#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings'
#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Show \"Call to Action\" in Blog"
-msgstr ""
+msgstr "Prikaži \"Poziv na Akciju\" u Blogu"
#. Label of the show_absolute_datetime_in_timeline (Check) field in DocType
#. 'System Settings'
@@ -23658,25 +23693,25 @@ msgstr ""
#: frappe/core/doctype/system_settings/system_settings.json
#: frappe/core/doctype/user/user.json
msgid "Show Absolute Datetime in Timeline"
-msgstr ""
+msgstr "Prikaži apsolutni datum i vrijeme na vremenskoj traci"
#. Label of the absolute_value (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Absolute Values"
-msgstr ""
+msgstr "Prikaži Apsolutne Vrijednosti"
#: frappe/public/js/frappe/form/templates/form_sidebar.html:73
msgid "Show All"
-msgstr ""
+msgstr "Prikaži Sve"
#: frappe/desk/doctype/calendar_view/calendar_view.js:10
msgid "Show Calendar"
-msgstr ""
+msgstr "Prikaži Kalendar"
#. Label of the symbol_on_right (Check) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Show Currency Symbol on Right Side"
-msgstr ""
+msgstr "Prikaži simbol valute na desnoj strani"
#. Label of the show_dashboard (Check) field in DocType 'DocField'
#. Label of the show_dashboard (Check) field in DocType 'Custom Field'
@@ -23686,121 +23721,121 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/desk/doctype/dashboard/dashboard.js:6
msgid "Show Dashboard"
-msgstr ""
+msgstr "Prikaži Nadzornu Tablu"
#. Label of the show_document (Button) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
msgid "Show Document"
-msgstr ""
+msgstr "Prikaži Dokument"
#: frappe/www/error.html:42 frappe/www/error.html:65
msgid "Show Error"
-msgstr ""
+msgstr "Prikaži Grešku"
#: frappe/public/js/frappe/form/layout.js:579
msgid "Show Fieldname (click to copy on clipboard)"
-msgstr ""
+msgstr "Prikaži Naziv Polja (klikni da kopirate u međuspremnik)"
#. Label of the first_document (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Show First Document Tour"
-msgstr ""
+msgstr "Prikaži Introdukciju Prvog Dokumenta"
#. Option for the 'Action' (Select) field in DocType 'Onboarding Step'
#. Label of the show_form_tour (Check) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show Form Tour"
-msgstr ""
+msgstr "Prikaži Introdukciju Forme"
#. Label of the allow_error_traceback (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Show Full Error and Allow Reporting of Issues to the Developer"
-msgstr ""
+msgstr "Prikaži potpunu grešku i dozvoli prijavljivanje problema programeru"
#. Label of the show_full_form (Check) field in DocType 'Onboarding Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show Full Form?"
-msgstr ""
+msgstr "Prikaži Punu Formu?"
#. Label of the show_full_number (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Show Full Number"
-msgstr ""
+msgstr "Prikaži puni broj"
#: frappe/public/js/frappe/ui/keyboard.js:234
msgid "Show Keyboard Shortcuts"
-msgstr ""
+msgstr "Prikaži Prečice Tastature"
#. Label of the show_labels (Check) field in DocType 'Kanban Board'
#: frappe/desk/doctype/kanban_board/kanban_board.json
#: frappe/public/js/frappe/views/kanban/kanban_settings.js:30
msgid "Show Labels"
-msgstr ""
+msgstr "Prikaži Oznake"
#. Label of the show_language_picker (Check) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show Language Picker"
-msgstr ""
+msgstr "Prikaži Birač Jezika"
#. Label of the line_breaks (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Show Line Breaks after Sections"
-msgstr ""
+msgstr "Prikaži Prijelome Reda nakon Sekcije"
#: frappe/public/js/frappe/form/toolbar.js:407
msgid "Show Links"
-msgstr ""
+msgstr "Prikaži Veze"
#. Label of the show_failed_logs (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Show Only Failed Logs"
-msgstr ""
+msgstr "Prikaži Samo Neuspjele zapise"
#. Label of the show_percentage_stats (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Show Percentage Stats"
-msgstr ""
+msgstr "Prikaži Procentualnu Statistiku"
#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30
msgid "Show Permissions"
-msgstr ""
+msgstr "Prikaži Dozvole"
#: frappe/public/js/form_builder/form_builder.bundle.js:31
#: frappe/public/js/form_builder/form_builder.bundle.js:43
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:18
#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54
msgid "Show Preview"
-msgstr ""
+msgstr "Prikaži Pregled"
#. Label of the show_preview_popup (Check) field in DocType 'DocType'
#. Label of the show_preview_popup (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Show Preview Popup"
-msgstr ""
+msgstr "Prikaži skočni prozor za pregled"
#. Label of the show_processlist (Check) field in DocType 'System Console'
#: frappe/desk/doctype/system_console/system_console.json
msgid "Show Processlist"
-msgstr ""
+msgstr "Prikaži Procesnu Listu"
#: frappe/core/doctype/error_log/error_log.js:9
msgid "Show Related Errors"
-msgstr ""
+msgstr "Prikaži Povezane Greške"
#. Label of the show_report (Button) field in DocType 'Access Log'
#: frappe/core/doctype/access_log/access_log.json
#: frappe/core/doctype/prepared_report/prepared_report.js:43
#: frappe/core/doctype/report/report.js:16
msgid "Show Report"
-msgstr ""
+msgstr "Prikaži Izvještaj"
#: frappe/public/js/frappe/list/list_filter.js:15
#: frappe/public/js/frappe/list/list_filter.js:94
msgid "Show Saved"
-msgstr ""
+msgstr "Prikaži Spremljeno"
#. Label of the show_section_headings (Check) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
@@ -23810,17 +23845,17 @@ msgstr "Prikaži Naslove Odjeljaka"
#. Label of the show_sidebar (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Show Sidebar"
-msgstr ""
+msgstr "Prikaži Bočnu Traku"
#: frappe/public/js/frappe/list/list_sidebar.html:77
#: frappe/public/js/frappe/list/list_view.js:1704
msgid "Show Tags"
-msgstr ""
+msgstr "Prikaži Oznake"
#. Label of the show_title (Check) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Show Title"
-msgstr ""
+msgstr "Prikaži Naziv"
#. Label of the show_title_field_in_link (Check) field in DocType 'DocType'
#. Label of the show_title_field_in_link (Check) field in DocType 'Customize
@@ -23828,166 +23863,166 @@ msgstr ""
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Show Title in Link Fields"
-msgstr ""
+msgstr "Prikaži Naziv u Poljima Veza"
#: frappe/public/js/frappe/views/reports/report_view.js:1527
msgid "Show Totals"
-msgstr ""
+msgstr "Prikaži Ukupno"
#: frappe/desk/doctype/form_tour/form_tour.js:116
msgid "Show Tour"
-msgstr ""
+msgstr "Prikaži Introdukciju"
#: frappe/core/doctype/data_import/data_import.js:448
msgid "Show Traceback"
-msgstr ""
+msgstr "Prikaži Povratno Praćenje"
#: frappe/public/js/frappe/data_import/import_preview.js:204
msgid "Show Warnings"
-msgstr ""
+msgstr "Prikaži Upozorenja"
#: frappe/public/js/frappe/views/calendar/calendar.js:179
msgid "Show Weekends"
-msgstr ""
+msgstr "Prikaži Vikende"
#. Label of the show_account_deletion_link (Check) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show account deletion link in My Account page"
-msgstr ""
+msgstr "Prikaži vezu za brisanje računa na stranici Moj Račun"
#: frappe/core/doctype/version/version.js:6
msgid "Show all Versions"
-msgstr ""
+msgstr "Prikaži sve Verzije"
#: frappe/public/js/frappe/form/footer/form_timeline.js:69
msgid "Show all activity"
-msgstr ""
+msgstr "Prikaži sve Aktivnosti"
#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24
msgid "Show all blogs"
-msgstr ""
+msgstr "Prikaži sve Blogove"
#. Label of the show_as_cc (Small Text) field in DocType 'Email Queue'
#: frappe/email/doctype/email_queue/email_queue.json
msgid "Show as cc"
-msgstr ""
+msgstr "Prikaži kao Kopija za"
#. Label of the show_attachments (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Show attachments"
-msgstr ""
+msgstr "Prikaži Priloge"
#. Label of the show_footer_on_login (Check) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show footer on login"
-msgstr ""
+msgstr "Prikaži podnožje prilikom prijave"
#. Description of the 'Show Full Form?' (Check) field in DocType 'Onboarding
#. Step'
#: frappe/desk/doctype/onboarding_step/onboarding_step.json
msgid "Show full form instead of a quick entry modal"
-msgstr ""
+msgstr "Prikaži punu formu umjesto modalnog za brzi unos"
#. Label of the document_type (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Show in Module Section"
-msgstr ""
+msgstr "Prikaži u Sekciji Modula"
#. Label of the show_in_filter (Check) field in DocType 'Web Form Field'
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Show in filter"
-msgstr ""
+msgstr "Prikaži u filteru"
#. Label of the show_document_link (Check) field in DocType 'Slack Webhook URL'
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
msgid "Show link to document"
-msgstr ""
+msgstr "Prikaži vezu do dokumenta"
#. Label of the show_list (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Show list"
-msgstr ""
+msgstr "Prikaži listu"
#: frappe/public/js/frappe/form/layout.js:273
#: frappe/public/js/frappe/form/layout.js:291
msgid "Show more details"
-msgstr ""
+msgstr "Prikaži više detalja"
#. Label of the show_on_timeline (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
msgid "Show on Timeline"
-msgstr ""
+msgstr "Prikaži na Vremenskoj liniji"
#. Description of the 'Stats Time Interval' (Select) field in DocType 'Number
#. Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Show percentage difference according to this time interval"
-msgstr ""
+msgstr "Prikaži procentnu razliku prema ovom vremenskom intervalu"
#. Label of the show_sidebar (Check) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Show sidebar"
-msgstr ""
+msgstr "Prikaži Bočnu Traku"
#. Description of the 'Title Prefix' (Data) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Show title in browser window as \"Prefix - title\""
-msgstr ""
+msgstr "Prikaži naziv u prozoru pretraživača kao \"Prefiks - naziv\""
#: frappe/public/js/frappe/widgets/onboarding_widget.js:148
msgid "Show {0} List"
-msgstr ""
+msgstr "Prikaži {0} Listu"
#: frappe/public/js/frappe/views/reports/report_view.js:501
msgid "Showing only Numeric fields from Report"
-msgstr ""
+msgstr "Prikazuju se samo numerička polja iz Izvještaja"
#: frappe/public/js/frappe/data_import/import_preview.js:153
msgid "Showing only first {0} rows out of {1}"
-msgstr ""
+msgstr "Prikazuje se samo prvih {0} redova od {1}"
#. Label of the list_sidebar (Check) field in DocType 'User'
#. Label of the form_sidebar (Check) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Sidebar"
-msgstr ""
+msgstr "Bočna Traka"
#. Label of the sidebar_items (Table) field in DocType 'Website Sidebar'
#: frappe/website/doctype/website_sidebar/website_sidebar.json
msgid "Sidebar Items"
-msgstr ""
+msgstr "Stavke Bočne Trake"
#. Label of the section_break_4 (Section Break) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Sidebar Settings"
-msgstr ""
+msgstr "Postavke Bočne Trake"
#. Label of the section_break_17 (Section Break) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Sidebar and Comments"
-msgstr ""
+msgstr "Bočna Traka i Komentari"
#. Label of the sign_up_and_confirmation_section (Section Break) field in
#. DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Sign Up and Confirmation"
-msgstr ""
+msgstr "Prijava i Potvrda"
#: frappe/core/doctype/user/user.py:1018
msgid "Sign Up is disabled"
-msgstr ""
+msgstr "Prijava je onemogućena"
#: frappe/templates/signup.html:16 frappe/www/login.html:140
#: frappe/www/login.html:156 frappe/www/update-password.html:58
msgid "Sign up"
-msgstr ""
+msgstr "Prijavi se"
#. Label of the sign_ups (Select) field in DocType 'Social Login Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Sign ups"
-msgstr ""
+msgstr "Prijave"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -24002,66 +24037,66 @@ msgstr ""
#: frappe/email/doctype/email_account/email_account.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Signature"
-msgstr ""
+msgstr "Potpis"
#: frappe/www/login.html:168
msgid "Signup Disabled"
-msgstr ""
+msgstr "Prijava Onemogućena"
#: frappe/www/login.html:169
msgid "Signups have been disabled for this website."
-msgstr ""
+msgstr "Prijave su onemogućene za ovu web stranicu."
#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")"
-msgstr ""
+msgstr "Jednostavan Python izraz, primjer: status u (\"Zatvoreno\", \"Otkazano\")"
#. Description of the 'Close Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Simple Python Expression, Example: Status in (\"Invalid\")"
-msgstr ""
+msgstr "Jednostavan Python izraz, primjer: status u (\"Nevažeći\")"
#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment
#. Rule'
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'"
-msgstr ""
+msgstr "Jednostavan Python izraz, primjer: status == 'Otvoren' i tip == 'Bug'"
#. Label of the simultaneous_sessions (Int) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Simultaneous Sessions"
-msgstr ""
+msgstr "Simultane Sesije"
#: frappe/custom/doctype/customize_form/customize_form.py:125
msgid "Single DocTypes cannot be customized."
-msgstr ""
+msgstr "Pojedinačni DocTypes se ne mogu prilagoditi."
#. Description of the 'Is Single' (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/core/doctype/doctype/doctype_list.js:67
msgid "Single Types have only one record no tables associated. Values are stored in tabSingles"
-msgstr ""
+msgstr "Pojedinačni tipovi imaju samo jedan zapis bez pridruženih tablica. Vrijednosti se pohranjuju u tabSingles"
#: frappe/database/database.py:284
msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later."
-msgstr ""
+msgstr "Stranica radi u načinu samo za čitanje radi održavanja ili ažuriranja stranice, ova radnja se trenutno ne može izvršiti. Molimo pokušajte ponovo kasnije."
#: frappe/public/js/frappe/views/file/file_view.js:337
msgid "Size"
-msgstr ""
+msgstr "Veličina"
#. Label of the size (Float) field in DocType 'System Health Report Tables'
#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json
msgid "Size (MB)"
-msgstr ""
+msgstr "Veličina (MB)"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:82
#: frappe/public/js/onboarding_tours/onboarding_tours.js:18
msgid "Skip"
-msgstr ""
+msgstr "Preskoči"
#. Label of the skip_authorization (Check) field in DocType 'OAuth Client'
#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider
@@ -24069,83 +24104,83 @@ msgstr ""
#: frappe/integrations/doctype/oauth_client/oauth_client.json
#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json
msgid "Skip Authorization"
-msgstr ""
+msgstr "Preskoči Autorizaciju"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:332
msgid "Skip Step"
-msgstr ""
+msgstr "Preskoči Korak"
#. Label of the skipped (Check) field in DocType 'Patch Log'
#: frappe/core/doctype/patch_log/patch_log.json
msgid "Skipped"
-msgstr ""
+msgstr "Preskočeno"
#: frappe/core/doctype/data_import/importer.py:952
msgid "Skipping Duplicate Column {0}"
-msgstr ""
+msgstr "Preskače se Kopirana Kolona {0}"
#: frappe/core/doctype/data_import/importer.py:977
msgid "Skipping Untitled Column"
-msgstr ""
+msgstr "Preskače se Kolona bez Naziva"
#: frappe/core/doctype/data_import/importer.py:963
msgid "Skipping column {0}"
-msgstr ""
+msgstr "Preskače se kolona {0}"
#: frappe/modules/utils.py:176
msgid "Skipping fixture syncing for doctype {0} from file {1}"
-msgstr ""
+msgstr "Preskače se sinhronizacija fiksiranja za tip dokumenta {0} iz datoteke {1}"
#: frappe/core/doctype/data_import/data_import.js:39
msgid "Skipping {0} of {1}, {2}"
-msgstr ""
+msgstr "Preskače se {0} od {1}, {2}"
#. Label of the skype (Data) field in DocType 'Contact Us Settings'
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "Skype"
-msgstr ""
+msgstr "Skype"
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Slack"
-msgstr ""
+msgstr "Slack"
#. Label of the slack_webhook_url (Link) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "Slack Channel"
-msgstr ""
+msgstr "Slack Kanal"
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65
msgid "Slack Webhook Error"
-msgstr ""
+msgstr "Slack Webhook Greška"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Slack Webhook URL"
-msgstr ""
+msgstr "Slack Webhook URL"
#. Label of the slideshow (Link) field in DocType 'Web Page'
#. Option for the 'Content Type' (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Slideshow"
-msgstr ""
+msgstr "Dijaprojekcija"
#. Label of the slideshow_items (Table) field in DocType 'Website Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Items"
-msgstr ""
+msgstr "Stavke Dijaprojekcije"
#. Label of the slideshow_name (Data) field in DocType 'Website Slideshow'
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow Name"
-msgstr ""
+msgstr "Naziv Dijaprojekcije"
#. Description of a DocType
#: frappe/website/doctype/website_slideshow/website_slideshow.json
msgid "Slideshow like display for the website"
-msgstr ""
+msgstr "Prikaz Dijaprojekcije za web stranicu"
#. Label of the slug (Data) field in DocType 'UTM Campaign'
#. Label of the slug (Data) field in DocType 'UTM Medium'
@@ -24154,7 +24189,7 @@ msgstr ""
#: frappe/website/doctype/utm_medium/utm_medium.json
#: frappe/website/doctype/utm_source/utm_source.json
msgid "Slug"
-msgstr ""
+msgstr "Slug"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -24167,115 +24202,115 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Small Text"
-msgstr ""
+msgstr "Mali Tekst"
#. Label of the smallest_currency_fraction_value (Currency) field in DocType
#. 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Smallest Currency Fraction Value"
-msgstr ""
+msgstr "Najmanja Vrijednost Frakcije Valute"
#. Description of the 'Smallest Currency Fraction Value' (Currency) field in
#. DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01"
-msgstr ""
+msgstr "Jedinica najmanjih frakcija u opticaju (kovanica). Za npr. 1 cent za USD i treba ga unijeti kao 0,01"
#: frappe/printing/doctype/letter_head/letter_head.js:32
msgid "Snippet and more variables: {0}"
-msgstr ""
+msgstr "Isječak i više varijabli: {0}"
#. Name of a DocType
#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "Social Link Settings"
-msgstr ""
+msgstr "Postavke Društvenih Veza"
#. Label of the social_link_type (Select) field in DocType 'Social Link
#. Settings'
#: frappe/website/doctype/social_link_settings/social_link_settings.json
msgid "Social Link Type"
-msgstr ""
+msgstr "Tip Društvene Veze"
#. Name of a DocType
#. Label of a Link in the Integrations Workspace
#: frappe/integrations/doctype/social_login_key/social_login_key.json
#: frappe/integrations/workspace/integrations/integrations.json
msgid "Social Login Key"
-msgstr ""
+msgstr "Ključ Prijave Društvenih Mreža"
#. Label of the social_login_provider (Select) field in DocType 'Social Login
#. Key'
#: frappe/integrations/doctype/social_login_key/social_login_key.json
msgid "Social Login Provider"
-msgstr ""
+msgstr "Dobavljač Društvenih Mreža"
#. Label of the social_logins (Table) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Social Logins"
-msgstr ""
+msgstr "Prijave Društvenih Mreža"
#. Label of the socketio_ping_check (Select) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "SocketIO Ping Check"
-msgstr ""
+msgstr "SocketIO Ping Provjera"
#. Label of the socketio_transport_mode (Select) field in DocType 'System
#. Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "SocketIO Transport Mode"
-msgstr ""
+msgstr "SocketIO Transport Način"
#. Option for the 'Delivery Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Soft-Bounced"
-msgstr ""
+msgstr "Mekano Odbijeno"
#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4
msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10."
-msgstr ""
+msgstr "Neke kolone mogu biti odsječene prilikom ispisa u PDF. Pokušaj zadržati broj kolona ispod 10."
#. Description of the 'Sent Folder Name' (Data) field in DocType 'Email Domain'
#: frappe/email/doctype/email_domain/email_domain.json
msgid "Some mailboxes require a different Sent Folder Name e.g. \"INBOX.Sent\""
-msgstr ""
+msgstr "Neki poštanski sandučići zahtijevaju drugačije ime poslane mape, npr. \"INBOX.Sent\""
#: frappe/public/js/frappe/desk.js:20
msgid "Some of the features might not work in your browser. Please update your browser to the latest version."
-msgstr ""
+msgstr "Neke od funkcija možda neće raditi u vašem pretraživaču. Molimo ažurirajte svoj pretraživač na najnoviju verziju."
#: frappe/public/js/frappe/views/translation_manager.js:101
msgid "Something went wrong"
-msgstr ""
+msgstr "Nešto je pošlo po zlu"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:133
msgid "Something went wrong during the token generation. Click on {0} to generate a new one."
-msgstr ""
+msgstr "Nešto je pošlo po zlu tokom generisanja tokena. Klikni na {0} da generišete novi."
#: frappe/templates/includes/login/login.js:293
msgid "Something went wrong."
-msgstr ""
+msgstr "Nešto je pošlo po zlu."
#: frappe/public/js/frappe/views/pageview.js:114
msgid "Sorry! I could not find what you were looking for."
-msgstr ""
+msgstr "Izvinite! Nije pronađeno ono što tražite."
#: frappe/public/js/frappe/views/pageview.js:122
msgid "Sorry! You are not permitted to view this page."
-msgstr ""
+msgstr "Izvinite! Nije vam dozvoljeno da vidite ovu stranicu."
#: frappe/public/js/frappe/utils/datatable.js:6
msgid "Sort Ascending"
-msgstr ""
+msgstr "Sortiraj Uzlazno"
#: frappe/public/js/frappe/utils/datatable.js:7
msgid "Sort Descending"
-msgstr ""
+msgstr "Sortiraj Silazno"
#. Label of the sort_field (Select) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sort Field"
-msgstr ""
+msgstr "Polje sortiranja"
#. Label of the sort_options (Check) field in DocType 'DocField'
#. Label of the sort_options (Check) field in DocType 'Custom Field'
@@ -24284,16 +24319,16 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Sort Options"
-msgstr ""
+msgstr "Opcije Sortiranja"
#. Label of the sort_order (Select) field in DocType 'Customize Form'
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Sort Order"
-msgstr ""
+msgstr "Redoslijed Sortiranja"
#: frappe/core/doctype/doctype/doctype.py:1550
msgid "Sort field {0} must be a valid fieldname"
-msgstr ""
+msgstr "Polje sortiranja {0} mora biti važeći naziv polja"
#. Label of the source (Data) field in DocType 'Web Page View'
#. Label of the source (Small Text) field in DocType 'Website Route Redirect'
@@ -24303,74 +24338,74 @@ msgstr ""
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
#: frappe/website/report/website_analytics/website_analytics.js:38
msgid "Source"
-msgstr ""
+msgstr "Izvor"
#. Label of the source_name (Data) field in DocType 'Dashboard Chart Source'
#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json
msgid "Source Name"
-msgstr ""
+msgstr "Naziv Izvora"
#. Label of the source_text (Code) field in DocType 'Translation'
#: frappe/core/doctype/translation/translation.json
#: frappe/public/js/frappe/views/translation_manager.js:38
msgid "Source Text"
-msgstr ""
+msgstr "Izvorni Tekst"
#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:23
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:174
msgid "Spacer"
-msgstr ""
+msgstr "Razmak"
#. Option for the 'Email Status' (Select) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Spam"
-msgstr ""
+msgstr "Neželjena Pošta"
#. Option for the 'Service' (Select) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "SparkPost"
-msgstr ""
+msgstr "SparkPost"
#: frappe/custom/doctype/custom_field/custom_field.js:83
msgid "Special Characters are not allowed"
-msgstr ""
+msgstr "Posebni Znakovi nisu dozvoljeni"
#: frappe/model/naming.py:68
msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}"
-msgstr ""
+msgstr "Posebni Znakovi osim '-', '#', '.', '/', '{{' and '}}' nisu dozvoljeni u seriji imenovanja {0}"
#. Description of the 'Timeout (In Seconds)' (Int) field in DocType 'Report'
#: frappe/core/doctype/report/report.json
msgid "Specify a custom timeout, default timeout is 1500 seconds"
-msgstr ""
+msgstr "Odredi prilagođeno vremensko ograničenje, standardno vremensko ograničenje je 1500 sekundi"
#. Description of the 'Allowed embedding domains' (Small Text) field in DocType
#. 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin."
-msgstr ""
+msgstr "Navedi domene ili porijekla kojima je dozvoljeno ugraditi ovaj obrazac. Unesite jednu domenu po liniji (npr. https://example.com). Ako nema specificiranih domena, obrazac se može ugraditi samo na isto porijeklo."
#. Label of the splash_image (Attach Image) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Splash Image"
-msgstr ""
+msgstr "Uvodna Slika"
#: frappe/desk/reportview.py:419
#: frappe/public/js/frappe/web_form/web_form_list.js:175
#: frappe/templates/print_formats/standard_macros.html:44
msgid "Sr"
-msgstr ""
+msgstr "Red"
#: frappe/public/js/print_format_builder/Field.vue:143
#: frappe/public/js/print_format_builder/Field.vue:164
msgid "Sr No."
-msgstr ""
+msgstr "Serijski Broj."
#. Label of the stack_html (HTML) field in DocType 'Recorder Query'
#: frappe/core/doctype/recorder/recorder.js:82
#: frappe/core/doctype/recorder_query/recorder_query.json
msgid "Stack Trace"
-msgstr ""
+msgstr "Stack Trace"
#. Label of the standard (Select) field in DocType 'Page'
#. Label of the standard (Check) field in DocType 'Desktop Icon'
@@ -24386,72 +24421,72 @@ msgstr ""
#: frappe/printing/doctype/print_style/print_style.json
#: frappe/website/doctype/web_template/web_template.json
msgid "Standard"
-msgstr ""
+msgstr "Standard"
#: frappe/model/delete_doc.py:78
msgid "Standard DocType can not be deleted."
-msgstr ""
+msgstr "Standardni DocType se ne može izbrisati."
#: frappe/core/doctype/doctype/doctype.py:228
msgid "Standard DocType cannot have default print format, use Customize Form"
-msgstr ""
+msgstr "Standardni DocType ne može imati standard ormat za ispise, koristi Prilagodi Formu"
#: frappe/desk/doctype/dashboard/dashboard.py:58
msgid "Standard Not Set"
-msgstr ""
+msgstr "Standard nije Postavljeno"
#: frappe/core/page/permission_manager/permission_manager.js:132
msgid "Standard Permissions"
-msgstr ""
+msgstr "Standard Dozvole"
#: frappe/printing/doctype/print_format/print_format.py:75
msgid "Standard Print Format cannot be updated"
-msgstr ""
+msgstr "Standard Ispis Format ne može se ažurirati"
#: frappe/printing/doctype/print_style/print_style.py:31
msgid "Standard Print Style cannot be changed. Please duplicate to edit."
-msgstr ""
+msgstr "Standard Ispis Stil ne može se promeniti. Kopiraj za uređivanje."
#: frappe/desk/reportview.py:354
msgid "Standard Reports cannot be deleted"
-msgstr ""
+msgstr "Standard Izvještaji ne mogu se izbrisati"
#: frappe/desk/reportview.py:325
msgid "Standard Reports cannot be edited"
-msgstr ""
+msgstr "Standard Izvještaji ne mogu se uređivati"
#. Label of the standard_menu_items (Section Break) field in DocType 'Portal
#. Settings'
#: frappe/website/doctype/portal_settings/portal_settings.json
msgid "Standard Sidebar Menu"
-msgstr ""
+msgstr "Standardni Bočni Meni"
#: frappe/website/doctype/web_form/web_form.js:40
msgid "Standard Web Forms can not be modified, duplicate the Web Form instead."
-msgstr ""
+msgstr "Standardne Web Forme ne mogu se mijenjati, umjesto toga kopiraj web formu."
#: frappe/website/doctype/web_page/web_page.js:92
msgid "Standard rich text editor with controls"
-msgstr ""
+msgstr "Standard uređivač rich teksta sa kontrolama"
#: frappe/core/doctype/role/role.py:46
msgid "Standard roles cannot be disabled"
-msgstr ""
+msgstr "Standard uloge ne mogu se onemogućiti"
#: frappe/core/doctype/role/role.py:32
msgid "Standard roles cannot be renamed"
-msgstr ""
+msgstr "Standard Uloge ne mogu se preimenovati"
#: frappe/core/doctype/user_type/user_type.py:61
msgid "Standard user type {0} can not be deleted."
-msgstr ""
+msgstr "Standard tip korisnika {0} ne može se izbrisati."
#: frappe/core/doctype/recorder/recorder_list.js:87
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45
#: frappe/printing/page/print/print.js:296
#: frappe/printing/page/print/print.js:343
msgid "Start"
-msgstr ""
+msgstr "Počni"
#. Label of the start_date (Date) field in DocType 'Auto Repeat'
#. Label of the start_date (Date) field in DocType 'Audit Trail'
@@ -24462,61 +24497,61 @@ msgstr ""
#: frappe/public/js/frappe/utils/common.js:409
#: frappe/website/doctype/web_page/web_page.json
msgid "Start Date"
-msgstr ""
+msgstr "Datum Početka"
#. Label of the start_date_field (Select) field in DocType 'Calendar View'
#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "Start Date Field"
-msgstr ""
+msgstr "Datum Početka"
#: frappe/core/doctype/data_import/data_import.js:110
msgid "Start Import"
-msgstr ""
+msgstr "Počni Uvoz"
#: frappe/core/doctype/recorder/recorder_list.js:201
msgid "Start Recording"
-msgstr ""
+msgstr "Počni Snimanje"
#. Label of the birth_date (Datetime) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Start Time"
-msgstr ""
+msgstr "Počni Vrijeme"
#: frappe/templates/includes/comments/comments.html:8
msgid "Start a new discussion"
-msgstr ""
+msgstr "Započni novu diskusiju"
#: frappe/core/doctype/data_export/exporter.py:22
msgid "Start entering data below this line"
-msgstr ""
+msgstr "Počni unositi podatke ispod ove linije"
#: frappe/printing/page/print_format_builder/print_format_builder.js:165
msgid "Start new Format"
-msgstr ""
+msgstr "Počni novi Format"
#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "StartTLS"
-msgstr ""
+msgstr "StartTLS"
#. Option for the 'Status' (Select) field in DocType 'Prepared Report'
#: frappe/core/doctype/prepared_report/prepared_report.json
msgid "Started"
-msgstr ""
+msgstr "Započet"
#. Label of the started_at (Datetime) field in DocType 'RQ Job'
#: frappe/core/doctype/rq_job/rq_job.json
msgid "Started At"
-msgstr ""
+msgstr "Počelo u"
#: frappe/desk/page/setup_wizard/setup_wizard.js:286
msgid "Starting Frappe ..."
-msgstr ""
+msgstr "Pokreće se Frappe..."
#. Label of the starts_on (Datetime) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Starts on"
-msgstr ""
+msgstr "Počinje"
#. Label of the state (Data) field in DocType 'Token Cache'
#. Label of the state (Link) field in DocType 'Workflow Document State'
@@ -24528,18 +24563,18 @@ msgstr ""
#: frappe/workflow/doctype/workflow_state/workflow_state.json
#: frappe/workflow/doctype/workflow_transition/workflow_transition.json
msgid "State"
-msgstr ""
+msgstr "Stanje"
#: frappe/public/js/workflow_builder/components/Properties.vue:24
msgid "State Properties"
-msgstr ""
+msgstr "Svojstva Stanja"
#. Label of the state (Data) field in DocType 'Address'
#. Label of the state (Data) field in DocType 'Contact Us Settings'
#: frappe/contacts/doctype/address/address.json
#: frappe/website/doctype/contact_us_settings/contact_us_settings.json
msgid "State/Province"
-msgstr ""
+msgstr "Zemlja/Pokrajina"
#. Label of the document_states_section (Tab Break) field in DocType 'DocType'
#. Label of the states (Table) field in DocType 'Customize Form'
@@ -24548,29 +24583,29 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/workflow/doctype/workflow/workflow.json
msgid "States"
-msgstr ""
+msgstr "Stanja"
#. Label of the parameters (Table) field in DocType 'SMS Settings'
#: frappe/core/doctype/sms_settings/sms_settings.json
msgid "Static Parameters"
-msgstr ""
+msgstr "Statički parametri"
#. Label of the statistics_section (Section Break) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Statistics"
-msgstr ""
+msgstr "Statistika"
#. Label of the stats_section (Section Break) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/public/js/frappe/form/dashboard.js:43
#: frappe/public/js/frappe/form/templates/form_dashboard.html:13
msgid "Stats"
-msgstr ""
+msgstr "Statistika"
#. Label of the stats_time_interval (Select) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "Stats Time Interval"
-msgstr ""
+msgstr "Vremenski Interval Statistike"
#. Label of the status (Select) field in DocType 'Auto Repeat'
#. Label of the status (Select) field in DocType 'Contact'
@@ -24623,130 +24658,130 @@ msgstr ""
#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json
#: frappe/workflow/doctype/workflow_action/workflow_action.json
msgid "Status"
-msgstr ""
+msgstr "Status"
#: frappe/www/update-password.html:163
msgid "Status Updated"
-msgstr ""
+msgstr "Status Ažuriran"
#: frappe/email/doctype/email_queue/email_queue.js:37
msgid "Status Updated. The email will be picked up in the next scheduled run."
-msgstr ""
+msgstr "Status Ažuriran. E-pošta će biti preuzeta u sljedećem zakazanom izvođenju."
#: frappe/www/message.html:24
msgid "Status: {0}"
-msgstr ""
+msgstr "Status: {0}"
#. Label of the step (Link) field in DocType 'Onboarding Step Map'
#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json
msgid "Step"
-msgstr ""
+msgstr "Korak"
#. Label of the steps (Table) field in DocType 'Form Tour'
#. Label of the steps (Table) field in DocType 'Module Onboarding'
#: frappe/desk/doctype/form_tour/form_tour.json
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Steps"
-msgstr ""
+msgstr "Koraci"
#: frappe/www/qrcode.html:11
msgid "Steps to verify your login"
-msgstr ""
+msgstr "Koraci za provjeru vaše prijave"
#. Label of the sticky (Check) field in DocType 'DocField'
#: frappe/core/doctype/docfield/docfield.json
#: frappe/public/js/frappe/form/grid_row.js:438
msgid "Sticky"
-msgstr ""
+msgstr "Sticky"
#: frappe/core/doctype/recorder/recorder_list.js:87
msgid "Stop"
-msgstr ""
+msgstr "Zaustavi"
#. Label of the stopped (Check) field in DocType 'Scheduled Job Type'
#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json
msgid "Stopped"
-msgstr ""
+msgstr "Zaustavljeno"
#. Label of the db_storage_usage (Float) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Storage Usage (MB)"
-msgstr ""
+msgstr "Korištenje Pohrane (MB)"
#. Label of the top_db_tables (Table) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Storage Usage By Table"
-msgstr ""
+msgstr "Korištenje Pohrane po Tabelama"
#. Label of the store_attached_pdf_document (Check) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Store Attached PDF Document"
-msgstr ""
+msgstr "Pohrani priloženi PDF dokument"
#. Description of the 'Last Known Versions' (Text) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Stores the JSON of last known versions of various installed apps. It is used to show release notes."
-msgstr ""
+msgstr "Pohranjuje JSON posljednjih poznatih verzija različitih instaliranih aplikacija. Koristi se za prikaz bilješki o izdanju."
#. Description of the 'Last Reset Password Key Generated On' (Datetime) field
#. in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "Stores the datetime when the last reset password key was generated."
-msgstr ""
+msgstr "Pohranjuje datum i vrijeme kada je generisan zadnji ključ za poništavanje lozinke."
#: frappe/utils/password_strength.py:97
msgid "Straight rows of keys are easy to guess"
-msgstr ""
+msgstr "Ravne redove ključeva je lako pogoditi"
#. Label of the strip_exif_metadata_from_uploaded_images (Check) field in
#. DocType 'System Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Strip EXIF tags from uploaded images"
-msgstr ""
+msgstr "Skini EXIF oznake sa učitanjh slika"
#: frappe/public/js/frappe/form/controls/password.js:89
msgid "Strong"
-msgstr ""
+msgstr "Snažna"
#. Label of the custom_css (Tab Break) field in DocType 'Web Page'
#. Label of the style (Select) field in DocType 'Workflow State'
#: frappe/website/doctype/web_page/web_page.json
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Style"
-msgstr ""
+msgstr "Stil"
#. Label of the section_break_9 (Section Break) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
msgid "Style Settings"
-msgstr ""
+msgstr "Postavke Stila"
#. Description of the 'Style' (Select) field in DocType 'Workflow State'
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange"
-msgstr ""
+msgstr "Stil predstavlja boju dugmeta: Uspjeh - Zelena, Opasno - Crvena, Inverzna - Crna, Primarna - Tamnoplava, Info - Svetlo Plava, Upozorenje - Narandžasta"
#. Label of the stylesheet_section (Tab Break) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Stylesheet"
-msgstr ""
+msgstr "Šablon Stila"
#. Description of the 'Fraction' (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Sub-currency. For e.g. \"Cent\""
-msgstr ""
+msgstr "Podvaluta. Za npr. \"Cent\""
#. Description of the 'Subdomain' (Small Text) field in DocType 'Website
#. Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Sub-domain provided by erpnext.com"
-msgstr ""
+msgstr "Poddomenu obezbjeđuje erpnext.com"
#. Label of the subdomain (Small Text) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Subdomain"
-msgstr ""
+msgstr "Poddomena"
#. Label of the subject (Data) field in DocType 'Auto Repeat'
#. Label of the subject (Small Text) field in DocType 'Activity Log'
@@ -24768,7 +24803,7 @@ msgstr ""
#: frappe/public/js/frappe/views/communication.js:116
#: frappe/public/js/frappe/views/inbox/inbox_view.js:63
msgid "Subject"
-msgstr ""
+msgstr "Predmet"
#. Label of the subject_field (Data) field in DocType 'DocType'
#. Label of the subject_field (Data) field in DocType 'Customize Form'
@@ -24777,16 +24812,16 @@ msgstr ""
#: frappe/custom/doctype/customize_form/customize_form.json
#: frappe/desk/doctype/calendar_view/calendar_view.json
msgid "Subject Field"
-msgstr ""
+msgstr "Polje Predmeta"
#: frappe/core/doctype/doctype/doctype.py:1935
msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor"
-msgstr ""
+msgstr "Tip Polja Predmeta treba da bude Podaci, Tekst, Dugi Tekst, Mali Tekst, Uređivač Teksta"
#. Name of a DocType
#: frappe/core/doctype/submission_queue/submission_queue.json
msgid "Submission Queue"
-msgstr ""
+msgstr "Red Podnošenja"
#. Label of the submit (Check) field in DocType 'Custom DocPerm'
#. Label of the submit (Check) field in DocType 'DocPerm'
@@ -24802,70 +24837,70 @@ msgstr ""
#: frappe/public/js/frappe/form/quick_entry.js:225
#: frappe/public/js/frappe/ui/capture.js:307
msgid "Submit"
-msgstr ""
+msgstr "Rezerviši"
#: frappe/public/js/frappe/list/list_view.js:2086
msgctxt "Button in list view actions menu"
msgid "Submit"
-msgstr ""
+msgstr "Rezerviši"
#: frappe/website/doctype/web_form/templates/web_form.html:47
msgctxt "Button in web form"
msgid "Submit"
-msgstr ""
+msgstr "Pošalji"
#: frappe/public/js/frappe/ui/dialog.js:62
msgctxt "Primary action in dialog"
msgid "Submit"
-msgstr ""
+msgstr "Pošalji"
#: frappe/public/js/frappe/ui/messages.js:97
msgctxt "Primary action of prompt dialog"
msgid "Submit"
-msgstr ""
+msgstr "Pošalji"
#: frappe/public/js/frappe/desk.js:227
msgctxt "Submit password for Email Account"
msgid "Submit"
-msgstr ""
+msgstr "Potvrdi"
#. Label of the submit_after_import (Check) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Submit After Import"
-msgstr ""
+msgstr "Rezerviši Nakon Uvoza"
#: frappe/core/page/permission_manager/permission_manager_help.html:39
msgid "Submit an Issue"
-msgstr ""
+msgstr "Prijavi Slučaj"
#: frappe/website/doctype/web_form/templates/web_form.html:156
msgctxt "Button in web form"
msgid "Submit another response"
-msgstr ""
+msgstr "Podnesi drugi odgovor"
#. Label of the button_label (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Submit button label"
-msgstr ""
+msgstr "Oznaka Dugmeta"
#. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat'
#: frappe/automation/doctype/auto_repeat/auto_repeat.json
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128
msgid "Submit on Creation"
-msgstr ""
+msgstr "Rezerviši pri Kreiranju"
#: frappe/public/js/frappe/widgets/onboarding_widget.js:395
msgid "Submit this document to complete this step."
-msgstr ""
+msgstr "Pošalji ovaj dokument da dovršite ovaj korak."
#: frappe/public/js/frappe/form/form.js:1221
msgid "Submit this document to confirm"
-msgstr ""
+msgstr "Pošalji ovaj dokument da potvrdite"
#: frappe/public/js/frappe/list/list_view.js:2091
msgctxt "Title of confirmation dialog"
msgid "Submit {0} documents?"
-msgstr ""
+msgstr "Pošalji {0} dokumenata?"
#. Option for the 'Comment Type' (Select) field in DocType 'Comment'
#: frappe/core/doctype/comment/comment.json
@@ -24873,36 +24908,36 @@ msgstr ""
#: frappe/public/js/frappe/ui/filters/filter.js:539
#: frappe/website/doctype/web_form/templates/web_form.html:136
msgid "Submitted"
-msgstr ""
+msgstr "Rezervisano"
#: frappe/workflow/doctype/workflow/workflow.py:103
msgid "Submitted Document cannot be converted back to draft. Transition row {0}"
-msgstr ""
+msgstr "Rezervisani dokument ne može se pretvoriti nazad u nacrt. Prijelazni red {0}"
#: frappe/public/js/workflow_builder/utils.js:176
msgid "Submitted document cannot be converted back to draft while transitioning from {0} State to {1} State"
-msgstr ""
+msgstr "Rezervisani dokument ne može se pretvoriti nazad u nacrt tokom prijelaza iz {0} Stanja u {1} Stanje"
#: frappe/public/js/frappe/form/save.js:10
msgctxt "Freeze message while submitting a document"
msgid "Submitting"
-msgstr ""
+msgstr "Rezerviše se"
#: frappe/desk/doctype/bulk_update/bulk_update.py:88
msgid "Submitting {0}"
-msgstr ""
+msgstr "Pošalji {0}"
#. Option for the 'Address Type' (Select) field in DocType 'Address'
#: frappe/contacts/doctype/address/address.json
msgid "Subsidiary"
-msgstr ""
+msgstr "Filijala"
#. Label of the subtitle (Data) field in DocType 'Module Onboarding'
#. Label of the subtitle (Data) field in DocType 'Blog Settings'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
#: frappe/website/doctype/blog_settings/blog_settings.json
msgid "Subtitle"
-msgstr ""
+msgstr "Podnaziv"
#. Option for the 'Status' (Select) field in DocType 'Activity Log'
#. Option for the 'Status' (Select) field in DocType 'Data Import'
@@ -24924,96 +24959,96 @@ msgstr ""
#: frappe/workflow/doctype/workflow_action/workflow_action.py:171
#: frappe/workflow/doctype/workflow_state/workflow_state.json
msgid "Success"
-msgstr ""
+msgstr "Uspjeh"
#. Name of a DocType
#: frappe/core/doctype/success_action/success_action.json
msgid "Success Action"
-msgstr ""
+msgstr "Radnja Uspjeha"
#. Label of the success_message (Data) field in DocType 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "Success Message"
-msgstr ""
+msgstr "Poruka Uspjeha"
#. Label of the success_uri (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Success URI"
-msgstr ""
+msgstr "URI Uspjeha"
#. Label of the success_url (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Success URL"
-msgstr ""
+msgstr "URL uspjeha"
#. Label of the success_message (Text) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Success message"
-msgstr ""
+msgstr "Poruka Uspjeha"
#. Label of the success_title (Data) field in DocType 'Web Form'
#: frappe/website/doctype/web_form/web_form.json
msgid "Success title"
-msgstr ""
+msgstr "Naziv Uspjeha"
#: frappe/www/update-password.html:81
msgid "Success! You are good to go 👍"
-msgstr ""
+msgstr "Uspjeh! Spremni ste 👍"
#. Label of the successful_job_count (Int) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Successful Job Count"
-msgstr ""
+msgstr "Broj Uspješnih Poslova"
#: frappe/model/workflow.py:307
msgid "Successful Transactions"
-msgstr ""
+msgstr "Uspješne Transakcije"
#: frappe/model/rename_doc.py:699
msgid "Successful: {0} to {1}"
-msgstr ""
+msgstr "Uspješno: {0} do {1}"
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100
#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113
msgid "Successfully Updated"
-msgstr ""
+msgstr "Uspješno Ažurirano"
#: frappe/core/doctype/data_import/data_import.js:423
msgid "Successfully imported {0}"
-msgstr ""
+msgstr "Uspješno uvezeno {0}"
#: frappe/core/doctype/data_import/data_import.js:144
msgid "Successfully imported {0} out of {1} records."
-msgstr ""
+msgstr "Uspješno uvezeno {0} od {1} zapisa."
#: frappe/desk/doctype/form_tour/form_tour.py:87
msgid "Successfully reset onboarding status for all users."
-msgstr ""
+msgstr "Uspješno poništen status introdukcije za sve korisnike."
#: frappe/public/js/frappe/views/translation_manager.js:22
msgid "Successfully updated translations"
-msgstr ""
+msgstr "Uspješno ažurirani prijevodi"
#: frappe/core/doctype/data_import/data_import.js:431
msgid "Successfully updated {0}"
-msgstr ""
+msgstr "Uspješno ažurirano {0}"
#: frappe/core/doctype/data_import/data_import.js:149
msgid "Successfully updated {0} out of {1} records."
-msgstr ""
+msgstr "Uspješno ažurirano {0} od {1} zapisa."
#: frappe/core/doctype/recorder/recorder.js:15
msgid "Suggest Optimizations"
-msgstr ""
+msgstr "Predloži Optimizacije"
#. Label of the suggested_indexes (Table) field in DocType 'Recorder'
#: frappe/core/doctype/recorder/recorder.json
msgid "Suggested Indexes"
-msgstr ""
+msgstr "Predloženi Indeksi"
#: frappe/core/doctype/user/user.py:722
msgid "Suggested Username: {0}"
-msgstr ""
+msgstr "Predloženo Korisničko Ime: {0}"
#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart'
#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart'
@@ -25022,15 +25057,15 @@ msgstr ""
#: frappe/desk/doctype/number_card/number_card.json
#: frappe/public/js/frappe/ui/group_by/group_by.js:20
msgid "Sum"
-msgstr ""
+msgstr "Suma"
#: frappe/public/js/frappe/ui/group_by/group_by.js:337
msgid "Sum of {0}"
-msgstr ""
+msgstr "Suma od {0}"
#: frappe/public/js/frappe/views/interaction.js:88
msgid "Summary"
-msgstr ""
+msgstr "Sažetak"
#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day'
#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day'
@@ -25046,24 +25081,24 @@ msgstr ""
#: frappe/desk/doctype/event/event.json
#: frappe/email/doctype/auto_email_report/auto_email_report.json
msgid "Sunday"
-msgstr ""
+msgstr "Nedjelja"
#: frappe/email/doctype/email_queue/email_queue_list.js:27
msgid "Suspend Sending"
-msgstr ""
+msgstr "Obustavi Slanje"
#: frappe/public/js/frappe/ui/capture.js:276
msgid "Switch Camera"
-msgstr ""
+msgstr "Promijeni Kameru"
#: frappe/public/js/frappe/desk.js:96
#: frappe/public/js/frappe/ui/theme_switcher.js:11
msgid "Switch Theme"
-msgstr ""
+msgstr "Promijeni Temu"
#: frappe/templates/includes/navbar/navbar_login.html:17
msgid "Switch To Desk"
-msgstr ""
+msgstr "Promjeni na Radnu Površinu"
#: frappe/public/js/frappe/list/list_sidebar.js:319
msgid "Switch to Frappe CRM for smarter sales"
@@ -25071,127 +25106,127 @@ msgstr "Prijeđite na Frappe CRM za pametniju prodaju"
#: frappe/public/js/frappe/ui/capture.js:281
msgid "Switching Camera"
-msgstr ""
+msgstr "Mijenja se Kamera"
#. Label of the symbol (Data) field in DocType 'Currency'
#: frappe/geo/doctype/currency/currency.json
msgid "Symbol"
-msgstr ""
+msgstr "Simbol"
#. Label of the sb_01 (Section Break) field in DocType 'Google Calendar'
#. Label of the sync (Section Break) field in DocType 'Google Contacts'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
#: frappe/integrations/doctype/google_contacts/google_contacts.json
msgid "Sync"
-msgstr ""
+msgstr "Sinkronizacija"
#: frappe/integrations/doctype/google_calendar/google_calendar.js:28
msgid "Sync Calendar"
-msgstr ""
+msgstr "Sinhroniziraj Kalendar"
#: frappe/integrations/doctype/google_contacts/google_contacts.js:28
msgid "Sync Contacts"
-msgstr ""
+msgstr "Sinhroniziraj Kontakte"
#. Label of the sync_as_public (Check) field in DocType 'Google Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "Sync events from Google as public"
-msgstr ""
+msgstr "Sinhroniziraj događaje s Googlea kao javne"
#: frappe/custom/doctype/customize_form/customize_form.js:256
msgid "Sync on Migrate"
-msgstr ""
+msgstr "Sinhronizacija pri Migraciji"
#: frappe/integrations/doctype/google_calendar/google_calendar.py:312
msgid "Sync token was invalid and has been reset, Retry syncing."
-msgstr ""
+msgstr "Token za sinhronizaciju je nevažeći i vraćen je na standard postavke. Ponovi sinhronizaciju."
#. Label of the sync_with_google_calendar (Check) field in DocType 'Event'
#: frappe/desk/doctype/event/event.json
msgid "Sync with Google Calendar"
-msgstr ""
+msgstr "Sinhroniziraj sa Google Kalendarom"
#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact'
#: frappe/contacts/doctype/contact/contact.json
msgid "Sync with Google Contacts"
-msgstr ""
+msgstr "Sinhroniziraj s Google Kontaktima"
#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46
msgid "Sync {0} Fields"
-msgstr ""
+msgstr "Sinhronizacija {0} Polja"
#: frappe/custom/doctype/doctype_layout/doctype_layout.js:100
msgid "Synced Fields"
-msgstr ""
+msgstr "Sinhronizovana Polja"
#: frappe/integrations/doctype/google_calendar/google_calendar.js:31
#: frappe/integrations/doctype/google_contacts/google_contacts.js:31
msgid "Syncing"
-msgstr ""
+msgstr "Sinhronizacija u toku"
#: frappe/integrations/doctype/google_calendar/google_calendar.js:19
msgid "Syncing {0} of {1}"
-msgstr ""
+msgstr "Sinhronizira se {0} od {1}"
#: frappe/utils/data.py:2528
msgid "Syntax Error"
-msgstr ""
+msgstr "Greška Sintakse"
#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "System"
-msgstr ""
+msgstr "Sistem"
#. Name of a DocType
#: frappe/desk/doctype/system_console/system_console.json
#: frappe/public/js/frappe/ui/dropdown_console.js:4
msgid "System Console"
-msgstr ""
+msgstr "Sistemska Konzola"
#: frappe/custom/doctype/custom_field/custom_field.py:408
msgid "System Generated Fields can not be renamed"
-msgstr ""
+msgstr "Sistemski Generisana Polja ne mogu se preimenovati"
#. Label of a standard help item
#. Type: Route
#: frappe/hooks.py
msgid "System Health"
-msgstr ""
+msgstr "Status Sistema"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "System Health Report"
-msgstr ""
+msgstr "Izvještaj Stanja Sistema"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json
msgid "System Health Report Errors"
-msgstr ""
+msgstr "Greške Izvještaja Stanja Sistema"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json
msgid "System Health Report Failing Jobs"
-msgstr ""
+msgstr "Izvještaj Neuspješnih Poslova Stanja Sistema"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json
msgid "System Health Report Queue"
-msgstr ""
+msgstr "Red Čekanja Izvještaja Stanja sSistema"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json
msgid "System Health Report Tables"
-msgstr ""
+msgstr "Tabele Izvještaja Stanja Sistema"
#. Name of a DocType
#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json
msgid "System Health Report Workers"
-msgstr ""
+msgstr "Status Sistema Izvještaji Radnici"
#. Label of a Card Break in the Build Workspace
#: frappe/core/workspace/build/build.json
msgid "System Logs"
-msgstr ""
+msgstr "Sistemski Zapisnici"
#. Name of a role
#: frappe/automation/doctype/assignment_rule/assignment_rule.json
@@ -25342,33 +25377,33 @@ msgstr "Upravitelj Sistema"
#: frappe/desk/page/backups/backups.js:38
msgid "System Manager privileges required."
-msgstr ""
+msgstr "Privilegije Upravitelja Sistema su obevezne."
#. Option for the 'Channel' (Select) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "System Notification"
-msgstr ""
+msgstr "Sistemsko Obavještenje"
#. Label of the system_page (Check) field in DocType 'Page'
#: frappe/core/doctype/page/page.json
msgid "System Page"
-msgstr ""
+msgstr "Sistemska Stranica"
#. Name of a DocType
#: frappe/core/doctype/system_settings/system_settings.json
msgid "System Settings"
-msgstr ""
+msgstr "Postavke Sistema"
#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType
#. 'Module Onboarding'
#: frappe/desk/doctype/module_onboarding/module_onboarding.json
msgid "System managers are allowed by default"
-msgstr ""
+msgstr "Upravitelji Sistema dopušteni su prema standard postavkama"
#: frappe/public/js/frappe/utils/number_systems.js:5
msgctxt "Number system"
msgid "T"
-msgstr ""
+msgstr "T"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -25377,11 +25412,11 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Tab Break"
-msgstr ""
+msgstr "Prijelom Kartice"
#: frappe/public/js/form_builder/components/Tabs.vue:135
msgid "Tab Label"
-msgstr ""
+msgstr "Oznaka Kartice"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Label of the table (Data) field in DocType 'Recorder Suggested Index'
@@ -25398,30 +25433,30 @@ msgstr ""
#: frappe/printing/page/print_format_builder/print_format_builder_field.html:39
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Table"
-msgstr ""
+msgstr "Tabela"
#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field'
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Table Break"
-msgstr ""
+msgstr "Prijelom Tabele"
#: frappe/core/doctype/version/version_view.html:72
msgid "Table Field"
-msgstr ""
+msgstr "Polje Tabele"
#. Label of the table_fieldname (Data) field in DocType 'DocType Link'
#: frappe/core/doctype/doctype_link/doctype_link.json
msgid "Table Fieldname"
-msgstr ""
+msgstr "Naziv Polja Tabele"
#: frappe/core/doctype/doctype/doctype.py:1203
msgid "Table Fieldname Missing"
-msgstr ""
+msgstr "Nedostaje Naziv Polja Tabele"
#. Label of the table_html (HTML) field in DocType 'Version'
#: frappe/core/doctype/version/version.json
msgid "Table HTML"
-msgstr ""
+msgstr "HTML Tabele"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -25430,34 +25465,34 @@ msgstr ""
#: frappe/custom/doctype/custom_field/custom_field.json
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
msgid "Table MultiSelect"
-msgstr ""
+msgstr "Višestruki Odabir Tabele"
#: frappe/custom/doctype/customize_form/customize_form.js:229
msgid "Table Trimmed"
-msgstr ""
+msgstr "Tabela Optimizirana"
#: frappe/public/js/frappe/form/grid.js:1169
msgid "Table updated"
-msgstr ""
+msgstr "Tabela Ažurirana"
#: frappe/model/document.py:1566
msgid "Table {0} cannot be empty"
-msgstr ""
+msgstr "Tabela {0} ne može biti prazna"
#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings'
#: frappe/printing/doctype/print_settings/print_settings.json
msgid "Tabloid"
-msgstr ""
+msgstr "Tabloid"
#. Name of a DocType
#: frappe/desk/doctype/tag/tag.json
msgid "Tag"
-msgstr ""
+msgstr "Oznaka"
#. Name of a DocType
#: frappe/desk/doctype/tag_link/tag_link.json
msgid "Tag Link"
-msgstr ""
+msgstr "Veza Oznake"
#: frappe/model/meta.py:59
#: frappe/public/js/frappe/form/templates/form_sidebar.html:81
@@ -25469,30 +25504,30 @@ msgstr ""
#: frappe/public/js/frappe/model/model.js:133
#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:171
msgid "Tags"
-msgstr ""
+msgstr "Oznake"
#: frappe/public/js/frappe/ui/capture.js:220
msgid "Take Photo"
-msgstr ""
+msgstr "Uslikaj"
#. Label of the target (Data) field in DocType 'Portal Menu Item'
#. Label of the target (Small Text) field in DocType 'Website Route Redirect'
#: frappe/website/doctype/portal_menu_item/portal_menu_item.json
#: frappe/website/doctype/website_route_redirect/website_route_redirect.json
msgid "Target"
-msgstr ""
+msgstr "Cilj"
#: frappe/desk/doctype/todo/todo_calendar.js:19
#: frappe/desk/doctype/todo/todo_calendar.js:25
msgid "Task"
-msgstr ""
+msgstr "Zadatak"
#. Label of the sb1 (Section Break) field in DocType 'About Us Settings'
#. Label of the team_members (Table) field in DocType 'About Us Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
#: frappe/www/about.html:45
msgid "Team Members"
-msgstr ""
+msgstr "Članovi Tima"
#. Label of the team_members_heading (Data) field in DocType 'About Us
#. Settings'
@@ -25504,13 +25539,13 @@ msgstr "Naslov Članova Tima"
#. Settings'
#: frappe/website/doctype/about_us_settings/about_us_settings.json
msgid "Team Members Subtitle"
-msgstr ""
+msgstr "Podnaslov Članova Tma"
#. Label of the telemetry_section (Section Break) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "Telemetry"
-msgstr ""
+msgstr "Telemetrija"
#. Label of the template (Link) field in DocType 'Auto Repeat'
#. Label of the template (Code) field in DocType 'Address Template'
@@ -25521,55 +25556,55 @@ msgstr ""
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
#: frappe/website/doctype/web_template/web_template.json
msgid "Template"
-msgstr ""
+msgstr "Šablon"
#: frappe/core/doctype/data_import/importer.py:483
#: frappe/core/doctype/data_import/importer.py:610
msgid "Template Error"
-msgstr ""
+msgstr "Greška Šablona"
#. Label of the template_file (Data) field in DocType 'Print Format Field
#. Template'
#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json
msgid "Template File"
-msgstr ""
+msgstr "Datoteka Šablona"
#. Label of the template_options (Code) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Template Options"
-msgstr ""
+msgstr "Šablon Opcije"
#. Label of the template_warnings (Code) field in DocType 'Data Import'
#: frappe/core/doctype/data_import/data_import.json
msgid "Template Warnings"
-msgstr ""
+msgstr "Šablon Upozorenja"
#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:78
msgid "Templates"
-msgstr ""
+msgstr "Šabloni"
#: frappe/core/doctype/user/user.py:1029
msgid "Temporarily Disabled"
-msgstr ""
+msgstr "Privremeno Onemogućeno"
#: frappe/core/doctype/translation/test_translation.py:47
#: frappe/core/doctype/translation/test_translation.py:54
msgid "Test Data"
-msgstr ""
+msgstr "Test Podaci"
#. Label of the test_job_id (Data) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Test Job ID"
-msgstr ""
+msgstr "ID Test Posla"
#: frappe/core/doctype/translation/test_translation.py:49
#: frappe/core/doctype/translation/test_translation.py:57
msgid "Test Spanish"
-msgstr ""
+msgstr "Test Španski"
#: frappe/core/doctype/file/test_file.py:379
msgid "Test_Folder"
-msgstr ""
+msgstr "Test Mapa"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -25582,22 +25617,22 @@ msgstr ""
#: frappe/website/doctype/web_form_field/web_form_field.json
#: frappe/website/doctype/web_template_field/web_template_field.json
msgid "Text"
-msgstr ""
+msgstr "Tekst"
#. Label of the text_align (Select) field in DocType 'Web Page'
#: frappe/website/doctype/web_page/web_page.json
msgid "Text Align"
-msgstr ""
+msgstr "Poravnanje Teksta"
#. Label of the text_color (Link) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Text Color"
-msgstr ""
+msgstr "Boja Teksta"
#. Label of the text_content (Code) field in DocType 'Communication'
#: frappe/core/doctype/communication/communication.json
msgid "Text Content"
-msgstr ""
+msgstr "Tekstualni Sadržaj"
#. Option for the 'Type' (Select) field in DocType 'DocField'
#. Option for the 'Field Type' (Select) field in DocType 'Custom Field'
@@ -25608,126 +25643,132 @@ msgstr ""
#: frappe/custom/doctype/customize_form_field/customize_form_field.json
#: frappe/website/doctype/web_form_field/web_form_field.json
msgid "Text Editor"
-msgstr ""
+msgstr "Uređivač Teksta"
#: frappe/templates/emails/password_reset.html:5
msgid "Thank you"
-msgstr ""
+msgstr "Hvala vam"
#: frappe/www/contact.py:39
msgid "Thank you for reaching out to us. We will get back to you at the earliest.\n\n\n"
"Your query:\n\n"
"{0}"
-msgstr ""
+msgstr "Hvala vam što ste nam se obratili. Javit ćemo Vam se u najkraćem mogućem roku.\n\n\n"
+"Vaš upit:\n\n"
+"{0}"
#: frappe/website/doctype/web_form/templates/web_form.html:140
msgid "Thank you for spending your valuable time to fill this form"
-msgstr ""
+msgstr "Hvala vam što ste potrošili svoje dragocjeno vrijeme da ispunite ovaj obrazac"
#: frappe/templates/emails/auto_reply.html:1
msgid "Thank you for your email"
-msgstr ""
+msgstr "Hvala vam na poruci e-pošte"
#: frappe/website/doctype/help_article/templates/help_article.html:27
msgid "Thank you for your feedback!"
-msgstr ""
+msgstr "Hvala vam na povratnim informacijama!"
#: frappe/templates/includes/contact.js:36
msgid "Thank you for your message"
-msgstr ""
+msgstr "Hvala vam na poruci"
#: frappe/templates/emails/new_user.html:16
msgid "Thanks"
-msgstr ""
+msgstr "Hvala"
#: frappe/templates/emails/auto_repeat_fail.html:3
msgid "The Auto Repeat for this document has been disabled."
-msgstr ""
+msgstr "Automatsko Ponavljanje za ovaj dokument je onemogućeno."
#: frappe/public/js/frappe/form/grid.js:1192
msgid "The CSV format is case sensitive"
-msgstr ""
+msgstr "CSV format razlikuje velika i mala slova"
#. Description of the 'Client ID' (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "The Client ID obtained from the Google Cloud Console under \n"
"\"APIs & Services\" > \"Credentials\"\n"
""
-msgstr ""
+msgstr "ID klijenta dobijen sa Google Cloud Console pod \n"
+"\"API & usluge\" > \"Akreditivi\"\n"
+""
#: frappe/email/doctype/notification/notification.py:201
msgid "The Condition '{0}' is invalid"
-msgstr ""
+msgstr "Uvjet '{0}' je nevažeći"
#: frappe/core/doctype/file/file.py:208
msgid "The File URL you've entered is incorrect"
-msgstr ""
+msgstr "URL Datoteke koji ste unijeli nije tačan"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108
msgid "The Next Scheduled Date cannot be later than the End Date."
-msgstr ""
+msgstr "Sljedeći zakazani datum ne može biti kasniji od datuma završetka."
#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:29
msgid "The Push Relay Server URL key (`push_relay_server_url`) is missing in your site config"
-msgstr ""
+msgstr "Ključ URL Guranog Relejnog Servera (`push_relay_server_url`) nedostaje u konfiguraciji vaše stranice"
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:367
msgid "The User record for this request has been auto-deleted due to inactivity by system admins."
-msgstr ""
+msgstr "Zapis Korisnika za ovaj zahtjev je automatski obrisan zbog neaktivnosti administratora sistema."
#: frappe/public/js/frappe/desk.js:162
msgid "The application has been updated to a new version, please refresh this page"
-msgstr ""
+msgstr "Aplikacija je ažurirana na novu verziju, osvježi ovu stranicu"
#. Description of the 'Application Name' (Data) field in DocType 'System
#. Settings'
#: frappe/core/doctype/system_settings/system_settings.json
msgid "The application name will be used in the Login page."
-msgstr ""
+msgstr "Naziv aplikacije će se koristiti na stranici za prijavu."
#: frappe/public/js/frappe/views/interaction.js:323
msgid "The attachments could not be correctly linked to the new document"
-msgstr ""
+msgstr "Prilozi se ne mogu ispravno povezati s novim dokumentom"
#. Description of the 'API Key' (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "The browser API key obtained from the Google Cloud Console under \n"
"\"APIs & Services\" > \"Credentials\"\n"
""
-msgstr ""
+msgstr "API ključ pretraživača preuzet sa Google Cloud Console pod \n"
+"\"API-ji & Servisi\" > \"Akreditivi\"\n"
+""
#: frappe/database/database.py:475
msgid "The changes have been reverted."
-msgstr ""
+msgstr "Promjene su vraćene."
#: frappe/core/doctype/data_import/importer.py:1009
msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format."
-msgstr ""
+msgstr "Kolona {0} ima {1} različite formate datuma. Automatsko postavljanje {2} kao zadanog formata jer je najčešći. Molimo promijenite ostale vrijednosti u ovoj koloni u ovaj format."
#: frappe/templates/includes/comments/comments.py:34
msgid "The comment cannot be empty"
-msgstr ""
+msgstr "Komentar ne može biti prazan"
#: frappe/templates/emails/workflow_action.html:9
msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone."
-msgstr ""
+msgstr "Sadržaj ove e-pošte je strogo povjerljiv. Molimo vas da nikome ne prosljeđujete ovu e-poštu."
#: frappe/public/js/frappe/list/list_view.js:658
msgid "The count shown is an estimated count. Click here to see the accurate count."
-msgstr ""
+msgstr "Prikazani broj je procijenjen. Klikni ovdje da vidite tačan broj."
#. Description of the 'Code' (Data) field in DocType 'Country'
#: frappe/geo/doctype/country/country.json
msgid "The country's ISO 3166 ALPHA-2 code."
-msgstr ""
+msgstr "ISO 3166 ALPHA-2 kod zemlje."
#: frappe/public/js/frappe/views/interaction.js:301
msgid "The document could not be correctly assigned"
-msgstr ""
+msgstr "Dokument nije mogao biti ispravno dodijeljen"
#: frappe/public/js/frappe/views/interaction.js:295
msgid "The document has been assigned to {0}"
-msgstr ""
+msgstr "Dokument je dodijeljen {0}"
#. Description of the 'Parent Document Type' (Link) field in DocType 'Dashboard
#. Chart'
@@ -25736,126 +25777,128 @@ msgstr ""
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
#: frappe/desk/doctype/number_card/number_card.json
msgid "The document type selected is a child table, so the parent document type is required."
-msgstr ""
+msgstr "Odabrani tip dokumenta je podređena tabela, tako da je obavezan tip nadređenog dokumenta."
#: frappe/core/doctype/user_type/user_type.py:110
msgid "The field {0} is mandatory"
-msgstr ""
+msgstr "Polje {0} je obavezno"
#: frappe/core/doctype/file/file.py:145
msgid "The fieldname you've specified in Attached To Field is invalid"
-msgstr ""
+msgstr "Naziv polja koje ste naveli u Priloženo polju je nevažeći"
#: frappe/automation/doctype/assignment_rule/assignment_rule.py:62
msgid "The following Assignment Days have been repeated: {0}"
-msgstr ""
+msgstr "Sljedeći Dani Dodjele su ponovljeni: {0}"
#: frappe/printing/doctype/letter_head/letter_head.js:30
msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'"
-msgstr ""
+msgstr "Sljedeća Skripta Zaglavlja će dodati trenutni datum elementu u 'HTML-u zaglavlja' s klasom 'header-content'"
#: frappe/core/doctype/data_import/importer.py:1086
msgid "The following values are invalid: {0}. Values must be one of {1}"
-msgstr ""
+msgstr "Sljedeće vrijednosti su nevažeće: {0}. Vrijednosti moraju biti jedna od {1}"
#: frappe/core/doctype/data_import/importer.py:1043
msgid "The following values do not exist for {0}: {1}"
-msgstr ""
+msgstr "Sljedeće vrijednosti ne postoje za {0}: {1}"
#: frappe/core/doctype/user_type/user_type.py:89
msgid "The limit has not set for the user type {0} in the site config file."
-msgstr ""
+msgstr "Ograničenje nije postavljeno za tip korisnika {0} u konfiguracijskoj datoteci stranice."
#: frappe/templates/emails/login_with_email_link.html:21
msgid "The link will expire in {0} minutes"
-msgstr ""
+msgstr "Veza će isteći za {0} minuta"
#: frappe/www/login.py:194
msgid "The link you trying to login is invalid or expired."
-msgstr ""
+msgstr "Veza na koju se pokušavate prijaviti je nevažeća ili je istekla."
#: frappe/website/doctype/web_page/web_page.js:125
msgid "The meta description is an HTML attribute that provides a brief summary of a web page. Search engines such as Google often display the meta description in search results, which can influence click-through rates."
-msgstr ""
+msgstr "Meta opis je HTML atribut koji pruža kratak sažetak web stranice. Pretraživači kao što je Google često prikazuju meta opis u rezultatima pretrage, što može uticati na stopu klikanja."
#: frappe/website/doctype/web_page/web_page.js:132
msgid "The meta image is unique image representing the content of the page. Images for this Card should be at least 280px in width, and at least 150px in height."
-msgstr ""
+msgstr "Meta slika je jedinstvena slika koja predstavlja sadržaj stranice. Slike za ovu karticu trebaju biti najmanje 280px u širinu i najmanje 150px u visinu."
#. Description of the 'Calendar Name' (Data) field in DocType 'Google Calendar'
#: frappe/integrations/doctype/google_calendar/google_calendar.json
msgid "The name that will appear in Google Calendar"
-msgstr ""
+msgstr "Naziv koji će se pojaviti u Google Kalendaru"
#. Description of the 'Track Steps' (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "The next tour will start from where the user left off."
-msgstr ""
+msgstr "Sljedeća introdukcija će početi od mjesta gdje je korisnik stao."
#. Description of the 'Request Timeout' (Int) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "The number of seconds until the request expires"
-msgstr ""
+msgstr "Broj sekundi do isteka zahtjeva"
#: frappe/www/update-password.html:88
msgid "The password of your account has expired."
-msgstr ""
+msgstr "Lozinka vašeg računa je istekla."
#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:398
msgid "The process for deletion of {0} data associated with {1} has been initiated."
-msgstr ""
+msgstr "Proces brisanja {0} podataka povezanih sa {1} je pokrenut."
#. Description of the 'App ID' (Data) field in DocType 'Google Settings'
#: frappe/integrations/doctype/google_settings/google_settings.json
msgid "The project number obtained from Google Cloud Console under \n"
"\"IAM & Admin\" > \"Settings\"\n"
""
-msgstr ""
+msgstr "Broj projekta dobijen od Google Cloud Console pod \n"
+"\"IAM & Admin\" > \"Postavke\"\n"
+""
#: frappe/core/doctype/user/user.py:989
msgid "The reset password link has been expired"
-msgstr ""
+msgstr "Veza za poništavanje lozinke je istekla"
#: frappe/core/doctype/user/user.py:991
msgid "The reset password link has either been used before or is invalid"
-msgstr ""
+msgstr "Veza za poništavanje lozinke je ili ranije korištena ili je nevažeća"
#: frappe/app.py:367 frappe/public/js/frappe/request.js:149
msgid "The resource you are looking for is not available"
-msgstr ""
+msgstr "Resurs koji tražite nije dostupan"
#: frappe/core/doctype/user_type/user_type.py:114
msgid "The role {0} should be a custom role."
-msgstr ""
+msgstr "Uloga {0} bi trebala biti prilagođena uloga."
#: frappe/core/doctype/audit_trail/audit_trail.py:46
msgid "The selected document {0} is not a {1}."
-msgstr ""
+msgstr "Odabrani dokument {0} nije {1}."
#: frappe/utils/response.py:338
msgid "The system is being updated. Please refresh again after a few moments."
-msgstr ""
+msgstr "Sistem se ažurira. Osvježite ponovo nakon nekoliko trenutaka."
#: frappe/core/page/permission_manager/permission_manager_help.html:9
msgid "The system provides many pre-defined roles. You can add new roles to set finer permissions."
-msgstr ""
+msgstr "Sistem pruža mnogo unapred definisanih uloga. Možete dodati nove uloge za postavljanje finijih dozvola."
#: frappe/core/doctype/user_type/user_type.py:97
msgid "The total number of user document types limit has been crossed."
-msgstr ""
+msgstr "Prekoračeno je ograničenje ukupnog broja tipova korisničkih dokumenata."
#: frappe/public/js/frappe/form/controls/data.js:25
msgid "The value you pasted was {0} characters long. Max allowed characters is {1}."
-msgstr ""
+msgstr "Vrijednost koju ste zalijepili bila je od {0} znakova. Maksimalni dopušteni broj znakova je {1}."
#. Description of the 'Condition' (Small Text) field in DocType 'Webhook'
#: frappe/integrations/doctype/webhook/webhook.json
msgid "The webhook will be triggered if this expression is true"
-msgstr ""
+msgstr "Webhook će se pokrenuti ako je ovaj izraz istinit"
#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175
msgid "The {0} is already on auto repeat {1}"
-msgstr ""
+msgstr "{0} je već na automatskom ponavljanju {1}"
#. Label of the section_break_6 (Section Break) field in DocType 'Website
#. Settings'
@@ -25864,210 +25907,211 @@ msgstr ""
#: frappe/website/doctype/website_settings/website_settings.json
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme"
-msgstr ""
+msgstr "Tema"
#: frappe/public/js/frappe/ui/theme_switcher.js:130
msgid "Theme Changed"
-msgstr ""
+msgstr "Tema Promjenjena"
#. Label of the bootstrap_theme_section (Tab Break) field in DocType 'Website
#. Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme Configuration"
-msgstr ""
+msgstr "Konfiguracija Teme"
#. Label of the theme_url (Data) field in DocType 'Website Theme'
#: frappe/website/doctype/website_theme/website_theme.json
msgid "Theme URL"
-msgstr ""
+msgstr "URL Teme"
#: frappe/workflow/doctype/workflow/workflow.js:125
msgid "There are documents which have workflow states that do not exist in this Workflow. It is recommended that you add these states to the Workflow and change their states before removing these states."
-msgstr ""
+msgstr "Postoje dokumenti koji imaju stanja radnog toka koja ne postoje u ovom radnom toku. Preporučuje se da ta stanja dodate u radni tok i promijenite njihova stanja prije uklanjanja ovih stanja."
#: frappe/public/js/frappe/ui/notifications/notifications.js:442
msgid "There are no upcoming events for you."
-msgstr ""
+msgstr "Nema predstojećih događaja za vas."
#: frappe/website/web_template/discussions/discussions.html:3
msgid "There are no {0} for this {1}, why don't you start one!"
-msgstr ""
+msgstr "Nema {0} za ovaj {1}, zašto ga ne pokrenete!"
#: frappe/public/js/frappe/views/reports/query_report.js:963
msgid "There are {0} with the same filters already in the queue:"
-msgstr ""
+msgstr "U redu čekanja već postoji {0} s istim filterima:"
#: frappe/website/doctype/web_form/web_form.js:81
#: frappe/website/doctype/web_form/web_form.js:317
msgid "There can be only 9 Page Break fields in a Web Form"
-msgstr ""
+msgstr "U Web Formi može postojati samo 9 polja Prijeloma Stranice"
#: frappe/core/doctype/doctype/doctype.py:1443
msgid "There can be only one Fold in a form"
-msgstr ""
+msgstr "U obrascu može postojati samo jedan preklop"
#: frappe/contacts/doctype/address/address.py:183
msgid "There is an error in your Address Template {0}"
-msgstr ""
+msgstr "Postoji greška u vašem šablonu adrese {0}"
#: frappe/core/doctype/data_export/exporter.py:162
msgid "There is no data to be exported"
-msgstr ""
+msgstr "Nema podataka za izvoz"
#: frappe/public/js/frappe/ui/notifications/notifications.js:492
msgid "There is nothing new to show you right now."
-msgstr ""
+msgstr "Trenutno nema ništa novo za pokazati."
#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372
msgid "There is some problem with the file url: {0}"
-msgstr ""
+msgstr "Postoji neki problem sa urlom datoteke: {0}"
#: frappe/public/js/frappe/views/reports/query_report.js:960
msgid "There is {0} with the same filters already in the queue:"
-msgstr ""
+msgstr "Postoji {0} s istim filterima već u redu čekanja:"
#: frappe/core/page/permission_manager/permission_manager.py:156
msgid "There must be atleast one permission rule."
-msgstr ""
+msgstr "Mora postojati barem jedno pravilo dozvole."
#: frappe/www/error.py:17
msgid "There was an error building this page"
-msgstr ""
+msgstr "Došlo je do greške pri izradi ove stranice"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:182
msgid "There was an error saving filters"
-msgstr ""
+msgstr "Došlo je do greške prilikom spremanja filtera"
#: frappe/public/js/frappe/form/sidebar/attachments.js:216
msgid "There were errors"
-msgstr ""
+msgstr "Bilo je grešaka"
#: frappe/public/js/frappe/views/interaction.js:277
msgid "There were errors while creating the document. Please try again."
-msgstr ""
+msgstr "Bilo je grešaka prilikom kreiranja dokumenta. Molimo pokušajte ponovo."
#: frappe/public/js/frappe/views/communication.js:837
msgid "There were errors while sending email. Please try again."
-msgstr ""
+msgstr "Bilo je grešaka prilikom slanja e-pošte. Molimo pokušajte ponovo."
#: frappe/model/naming.py:494
msgid "There were some errors setting the name, please contact the administrator"
-msgstr ""
+msgstr "Bilo je grešaka pri postavljanju naziva, obratite se administratoru"
#. Description of the 'Announcement Widget' (Text Editor) field in DocType
#. 'Navbar Settings'
#: frappe/core/doctype/navbar_settings/navbar_settings.json
msgid "These announcements will appear inside a dismissible alert below the Navbar."
-msgstr ""
+msgstr "Te će se obavijesti pojaviti unutar upozorenja koje se može odbaciti ispod navigacijske trake."
#. Description of the 'LDAP Custom Settings' (Section Break) field in DocType
#. 'LDAP Settings'
#: frappe/integrations/doctype/ldap_settings/ldap_settings.json
msgid "These settings are required if 'Custom' LDAP Directory is used"
-msgstr ""
+msgstr "Ove su postavke potrebne ako se koristi 'Custom' LDAP imenik"
#. Description of the 'Defaults' (Section Break) field in DocType 'User'
#: frappe/core/doctype/user/user.json
msgid "These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values."
-msgstr ""
+msgstr "Ove vrijednosti će se automatski ažurirati u transakcijama, a također će biti korisne za ograničavanje dozvola za ovog korisnika na transakcije koje sadrže ove vrijednosti."
#: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14
msgid "Third Party Apps"
-msgstr ""
+msgstr "Aplikacije Trećih Strana"
#. Label of the third_party_authentication (Section Break) field in DocType
#. 'User'
#: frappe/core/doctype/user/user.json
msgid "Third Party Authentication"
-msgstr ""
+msgstr "Autentifikacija Trećeih Strane"
#: frappe/geo/doctype/currency/currency.js:8
msgid "This Currency is disabled. Enable to use in transactions"
-msgstr ""
+msgstr "Ova valuta je onemogućena. Omogućite korištenje u transakcijama"
#: frappe/public/js/frappe/views/kanban/kanban_view.js:391
msgid "This Kanban Board will be private"
-msgstr ""
+msgstr "Ova Oglasna Tabla će biti privatna"
#: frappe/public/js/frappe/ui/filters/filter.js:666
msgid "This Month"
-msgstr ""
+msgstr "Ovaj Mjesec"
#: frappe/public/js/frappe/ui/filters/filter.js:670
msgid "This Quarter"
-msgstr ""
+msgstr "Ovo Tromjesečje"
#: frappe/public/js/frappe/ui/filters/filter.js:662
msgid "This Week"
-msgstr ""
+msgstr "Ovaj Tjedan"
#: frappe/public/js/frappe/ui/filters/filter.js:674
msgid "This Year"
-msgstr ""
+msgstr "Ove Godine"
#: frappe/custom/doctype/customize_form/customize_form.js:220
msgid "This action is irreversible. Do you wish to continue?"
-msgstr ""
+msgstr "Ova radnja je nepovratna. Da li želite da nastavite?"
#: frappe/__init__.py:758
msgid "This action is only allowed for {}"
-msgstr ""
+msgstr "Ova radnja je dozvoljena samo za {}"
#: frappe/public/js/frappe/form/toolbar.js:117
#: frappe/public/js/frappe/model/model.js:706
msgid "This cannot be undone"
-msgstr ""
+msgstr "Ovo se ne može poništiti"
#. Description of the 'Is Public' (Check) field in DocType 'Number Card'
#: frappe/desk/doctype/number_card/number_card.json
msgid "This card will be available to all Users if this is set"
-msgstr ""
+msgstr "Ova kartica će biti dostupna svim korisnicima ako je ovo podešeno"
#. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart'
#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json
msgid "This chart will be available to all Users if this is set"
-msgstr ""
+msgstr "Ovaj grafikon će biti dostupan svim korisnicima ako je ovo postavljeno"
#: frappe/custom/doctype/customize_form/customize_form.js:212
msgid "This doctype has no orphan fields to trim"
-msgstr ""
+msgstr "Ovaj tip dokumenta nema polja siroče za skraćivanje"
#: frappe/core/doctype/doctype/doctype.py:1054
msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes."
-msgstr ""
+msgstr "Ovaj tip dokumenta ima migracije na čekanju, pokrenite 'bench migrate' prije izmjene tipa dokumenta kako biste izbjegli gubitak promjena."
#: frappe/model/delete_doc.py:112
msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time."
-msgstr ""
+msgstr "Ovaj dokument se trenutno ne može izbrisati jer ga mijenja drugi korisnik. Molimo pokušajte ponovo nakon nekog vremena."
#: frappe/www/confirm_workflow_action.html:8
msgid "This document has been modified after the email was sent."
-msgstr ""
+msgstr "Ovaj dokument je izmijenjen nakon slanja e-pošte."
#: frappe/public/js/frappe/form/form.js:1305
msgid "This document has unsaved changes which might not appear in final PDF. New {{ doc.doctype }} #{{ doc.name }}Novo {{ doc.doctype }} #{{ doc.name }}{{ doc.name }} Delivered{{ doc.name }} Isporučeno{ \"id\": \"{{ doc.name }}\" }\n"
"\n"
""
-msgstr ""
+msgstr "Za dodavanje dinamičkih vrijednosti iz dokumenta upotrijebite jinja oznake poput\n\n"
+"{ \"id\": \"{{ doc.name }}\" }\n"
+"\n"
+"print(text)"
-msgstr ""
+msgstr "Za ispis izlaza koristi print(text)"
#: frappe/core/doctype/user_type/user_type.py:291
msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record."
-msgstr ""
+msgstr "Za postavljanje uloge {0} za korisnika {1}, postavi polje {2} kao {3} u jednom od {4} zapisa."
#: frappe/integrations/doctype/google_calendar/google_calendar.js:8
msgid "To use Google Calendar, enable {0}."
-msgstr ""
+msgstr "Da koristite Google Kalendar, omogućite {0}."
#: frappe/integrations/doctype/google_contacts/google_contacts.js:8
msgid "To use Google Contacts, enable {0}."
-msgstr ""
+msgstr "Da koristite Google kontakte, omogući {0}."
#. Description of the 'Enable Google indexing' (Check) field in DocType
#. 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "To use Google Indexing, enable Google Settings."
-msgstr ""
+msgstr "Da koristite Google Indeksiranje, omogući Google Postavke."
#. Description of the 'Slack Channel' (Link) field in DocType 'Notification'
#: frappe/email/doctype/notification/notification.json
msgid "To use Slack Channel, add a Slack Webhook URL."
-msgstr ""
+msgstr "Da biste koristili Slack Kanal, dodaj Slack Webhook URL."
#: frappe/public/js/frappe/utils/diffview.js:44
msgid "To version"
-msgstr ""
+msgstr "Do Verzije"
#. Label of a shortcut in the Tools Workspace
#. Name of a DocType
@@ -26638,85 +26691,85 @@ msgstr ""
#: frappe/automation/workspace/tools/tools.json
#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.json
msgid "ToDo"
-msgstr ""
+msgstr "Za Uraditi"
#: frappe/public/js/frappe/form/controls/date.js:58
#: frappe/public/js/frappe/ui/filters/filter.js:733
#: frappe/public/js/frappe/views/calendar/calendar.js:274
msgid "Today"
-msgstr ""
+msgstr "Danas"
#: frappe/public/js/frappe/views/reports/report_view.js:1570
msgid "Toggle Chart"
-msgstr ""
+msgstr "Prebaci grafikon"
#. Label of a standard navbar item
#. Type: Action
#: frappe/hooks.py
msgid "Toggle Full Width"
-msgstr ""
+msgstr "Prebaci Punu Širinu"
#: frappe/public/js/frappe/views/file/file_view.js:33
msgid "Toggle Grid View"
-msgstr ""
+msgstr "Uključi Prikaz Mreže"
#: frappe/public/js/frappe/ui/page.js:201
#: frappe/public/js/frappe/ui/page.js:203
#: frappe/public/js/frappe/views/reports/report_view.js:1574
msgid "Toggle Sidebar"
-msgstr ""
+msgstr "Prebaci Bočnu Traku"
#: frappe/public/js/frappe/list/list_view.js:1819
msgctxt "Button in list view menu"
msgid "Toggle Sidebar"
-msgstr ""
+msgstr "Prebaci Bočnu Traku"
#. Label of a standard navbar item
#. Type: Action
#: frappe/hooks.py
msgid "Toggle Theme"
-msgstr ""
+msgstr "Prebaci Temu"
#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client'
#: frappe/integrations/doctype/oauth_client/oauth_client.json
msgid "Token"
-msgstr ""
+msgstr "Token"
#. Name of a DocType
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Cache"
-msgstr ""
+msgstr "Token Cache"
#. Label of the token_type (Data) field in DocType 'Token Cache'
#: frappe/integrations/doctype/token_cache/token_cache.json
msgid "Token Type"
-msgstr ""
+msgstr "Tip Tokena"
#. Label of the token_uri (Data) field in DocType 'Connected App'
#: frappe/integrations/doctype/connected_app/connected_app.json
msgid "Token URI"
-msgstr ""
+msgstr "Token URI"
#: frappe/utils/oauth.py:184
msgid "Token is missing"
-msgstr ""
+msgstr "Token Nedostaje"
#: frappe/public/js/frappe/ui/filters/filter.js:739
msgid "Tomorrow"
-msgstr ""
+msgstr "Sutra"
#: frappe/desk/doctype/bulk_update/bulk_update.py:68
#: frappe/model/workflow.py:254
msgid "Too Many Documents"
-msgstr ""
+msgstr "Previše Dokumenata"
#: frappe/rate_limiter.py:101
msgid "Too Many Requests"
-msgstr ""
+msgstr "Previše Zahtjeva"
#: frappe/database/database.py:474
msgid "Too many changes to database in single action."
-msgstr ""
+msgstr "Previše promjena u bazi podataka u jednoj akciji."
#: frappe/utils/background_jobs.py:730
msgid "Too many queued background jobs ({0}). Please retry after some time."
@@ -26724,19 +26777,19 @@ msgstr "Previše pozadinskih poslova u čekanju ({0}). Pokušaj ponovno nakon ne
#: frappe/core/doctype/user/user.py:1030
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
-msgstr ""
+msgstr "Nedavno se prijavilo previše korisnika, pa je registracija onemogućena. Pokušajte ponovo za sat vremena"
#. Name of a Workspace
#. Label of a Card Break in the Tools Workspace
#: frappe/automation/workspace/tools/tools.json
msgid "Tools"
-msgstr ""
+msgstr "Alati"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#: frappe/desk/doctype/form_tour_step/form_tour_step.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:153
msgid "Top"
-msgstr ""
+msgstr "Vrh"
#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13
msgid "Top 10"
@@ -26745,12 +26798,12 @@ msgstr "Prvih 10"
#. Name of a DocType
#: frappe/website/doctype/top_bar_item/top_bar_item.json
msgid "Top Bar Item"
-msgstr ""
+msgstr "Stavka Gornje Trake"
#. Label of the top_bar_items (Table) field in DocType 'Website Settings'
#: frappe/website/doctype/website_settings/website_settings.json
msgid "Top Bar Items"
-msgstr ""
+msgstr "Stavke Trake Vrha"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -26758,18 +26811,18 @@ msgstr ""
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:245
msgid "Top Center"
-msgstr ""
+msgstr "Vrh Centar"
#. Label of the top_errors (Table) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Top Errors"
-msgstr ""
+msgstr "Najčešće Greške"
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:244
msgid "Top Left"
-msgstr ""
+msgstr "Vrh Lijevo"
#. Option for the 'Position' (Select) field in DocType 'Form Tour Step'
#. Option for the 'Page Number' (Select) field in DocType 'Print Format'
@@ -26777,117 +26830,117 @@ msgstr ""
#: frappe/printing/doctype/print_format/print_format.json
#: frappe/public/js/print_format_builder/PrintFormatControls.vue:246
msgid "Top Right"
-msgstr ""
+msgstr "Vrh Desno"
#. Label of the topic (Link) field in DocType 'Discussion Reply'
#: frappe/website/doctype/discussion_reply/discussion_reply.json
msgid "Topic"
-msgstr ""
+msgstr "Tema"
#: frappe/desk/query_report.py:534
#: frappe/public/js/frappe/views/reports/print_grid.html:45
#: frappe/public/js/frappe/views/reports/query_report.js:1322
#: frappe/public/js/frappe/views/reports/report_view.js:1551
msgid "Total"
-msgstr ""
+msgstr "Ukupno"
#. Label of the total_background_workers (Int) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Total Background Workers"
-msgstr ""
+msgstr "Ukupno Pozadinskih Radnika"
#. Label of the total_errors (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Total Errors (last 1 day)"
-msgstr ""
+msgstr "Ukupno Greška (posljednji dan)"
#: frappe/public/js/frappe/ui/capture.js:259
msgid "Total Images"
-msgstr ""
+msgstr "Ukupno Slika"
#. Label of the total_outgoing_emails (Int) field in DocType 'System Health
#. Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Total Outgoing Emails"
-msgstr ""
+msgstr "Ukupno Odlazne e-pošte"
#. Label of the total_subscribers (Int) field in DocType 'Email Group'
#: frappe/email/doctype/email_group/email_group.json
msgid "Total Subscribers"
-msgstr ""
+msgstr "Ukupno Pretplatnika"
#. Label of the total_users (Int) field in DocType 'System Health Report'
#: frappe/desk/doctype/system_health_report/system_health_report.json
msgid "Total Users"
-msgstr ""
+msgstr "Ukupno Korisnika"
#. Label of the total_working_time (Duration) field in DocType 'RQ Worker'
#: frappe/core/doctype/rq_worker/rq_worker.json
msgid "Total Working Time"
-msgstr ""
+msgstr "Ukupno Radno Vrijeme"
#. Description of the 'Initial Sync Count' (Select) field in DocType 'Email
#. Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Total number of emails to sync in initial sync process "
-msgstr ""
+msgstr "Ukupan broj e-poruka za sinhronizaciju u početnom procesu sinhronizacije "
#: frappe/public/js/print_format_builder/ConfigureColumns.vue:12
msgid "Total:"
-msgstr ""
+msgstr "Ukupno:"
#: frappe/public/js/frappe/views/reports/report_view.js:1256
msgid "Totals"
-msgstr ""
+msgstr "Ukupno"
#: frappe/public/js/frappe/views/reports/report_view.js:1231
msgid "Totals Row"
-msgstr ""
+msgstr "Ukupni Red"
#. Label of the trace_id (Data) field in DocType 'Error Log'
#: frappe/core/doctype/error_log/error_log.json
msgid "Trace ID"
-msgstr ""
+msgstr "ID Praćenja"
#. Label of the traceback (Code) field in DocType 'Patch Log'
#: frappe/core/doctype/patch_log/patch_log.json
msgid "Traceback"
-msgstr ""
+msgstr "Povratno Praćenje"
#. Label of the track_changes (Check) field in DocType 'DocType'
#. Label of the track_changes (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Track Changes"
-msgstr ""
+msgstr "Prati Promjene"
#. Label of the track_email_status (Check) field in DocType 'Email Account'
#: frappe/email/doctype/email_account/email_account.json
msgid "Track Email Status"
-msgstr ""
+msgstr "Prati Status e-pošte"
#. Label of the track_field (Data) field in DocType 'Milestone'
#: frappe/automation/doctype/milestone/milestone.json
msgid "Track Field"
-msgstr ""
+msgstr "Prati Polje"
#. Label of the track_seen (Check) field in DocType 'DocType'
#: frappe/core/doctype/doctype/doctype.json
msgid "Track Seen"
-msgstr ""
+msgstr "Prati Viđeno"
#. Label of the track_steps (Check) field in DocType 'Form Tour'
#: frappe/desk/doctype/form_tour/form_tour.json
msgid "Track Steps"
-msgstr ""
+msgstr "Prati korake"
#. Label of the track_views (Check) field in DocType 'DocType'
#. Label of the track_views (Check) field in DocType 'Customize Form'
#: frappe/core/doctype/doctype/doctype.json
#: frappe/custom/doctype/customize_form/customize_form.json
msgid "Track Views"
-msgstr ""
+msgstr "Prati Preglede"
#. Description of the 'Track Email Status' (Check) field in DocType 'Email
#. Account'
@@ -26895,55 +26948,57 @@ msgstr ""
msgid "Track if your email has been opened by the recipient.\n"
"/.well-known/oauth-authorization-server endpoint.",
+ "fieldname": "show_auth_server_metadata",
+ "fieldtype": "Check",
+ "label": "Show Auth Server Metadata"
+ },
+ {
+ "default": "1",
+ "description": "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint.",
+ "fieldname": "show_protected_resource_metadata",
+ "fieldtype": "Check",
+ "label": "Show Protected Resource Metadata"
+ },
+ {
+ "description": "New line separated list of scope values.",
+ "fieldname": "scopes_supported",
+ "fieldtype": "Small Text",
+ "label": "Scopes Supported"
+ },
+ {
+ "default": "1",
+ "description": "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry.",
+ "fieldname": "enable_dynamic_client_registration",
+ "fieldtype": "Check",
+ "label": "Enable Dynamic Client Registration"
+ }
+ ],
+ "grid_page_length": 50,
+ "index_web_pages_for_search": 1,
+ "issingle": 1,
+ "links": [],
+ "modified": "2025-07-03 12:49:31.650861",
+ "modified_by": "Administrator",
+ "module": "Integrations",
+ "name": "OAuth Settings",
+ "owner": "Administrator",
+ "permissions": [
+ {
+ "create": 1,
+ "delete": 1,
+ "email": 1,
+ "print": 1,
+ "read": 1,
+ "role": "System Manager",
+ "share": 1,
+ "write": 1
+ }
+ ],
+ "row_format": "Dynamic",
+ "sort_field": "creation",
+ "sort_order": "DESC",
+ "states": []
+}
diff --git a/frappe/integrations/doctype/oauth_settings/oauth_settings.py b/frappe/integrations/doctype/oauth_settings/oauth_settings.py
new file mode 100644
index 0000000000..55cc8e7ab4
--- /dev/null
+++ b/frappe/integrations/doctype/oauth_settings/oauth_settings.py
@@ -0,0 +1,27 @@
+# Copyright (c) 2025, Frappe Technologies and contributors
+# For license information, please see license.txt
+
+# import frappe
+from frappe.model.document import Document
+
+
+class OAuthSettings(Document):
+ # begin: auto-generated types
+ # This code is auto-generated. Do not modify anything in this block.
+
+ from typing import TYPE_CHECKING
+
+ if TYPE_CHECKING:
+ from frappe.types import DF
+
+ enable_dynamic_client_registration: DF.Check
+ resource_documentation: DF.Data | None
+ resource_name: DF.Data | None
+ resource_policy_uri: DF.Data | None
+ resource_tos_uri: DF.Data | None
+ scopes_supported: DF.SmallText | None
+ show_auth_server_metadata: DF.Check
+ show_protected_resource_metadata: DF.Check
+ # end: auto-generated types
+
+ pass
diff --git a/frappe/integrations/doctype/oauth_settings/test_oauth_settings.py b/frappe/integrations/doctype/oauth_settings/test_oauth_settings.py
new file mode 100644
index 0000000000..887c9e7278
--- /dev/null
+++ b/frappe/integrations/doctype/oauth_settings/test_oauth_settings.py
@@ -0,0 +1,20 @@
+# Copyright (c) 2025, Frappe Technologies and Contributors
+# See license.txt
+
+# import frappe
+from frappe.tests import IntegrationTestCase
+
+# On IntegrationTestCase, the doctype test records and all
+# link-field test record dependencies are recursively loaded
+# Use these module variables to add/remove to/from that list
+EXTRA_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"]
+IGNORE_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"]
+
+
+class IntegrationTestOAuthSettings(IntegrationTestCase):
+ """
+ Integration tests for OAuthSettings.
+ Use this class for testing interactions between multiple components.
+ """
+
+ pass
diff --git a/frappe/integrations/doctype/social_login_key/social_login_key.json b/frappe/integrations/doctype/social_login_key/social_login_key.json
index 55c9f96abb..ab63adcec8 100644
--- a/frappe/integrations/doctype/social_login_key/social_login_key.json
+++ b/frappe/integrations/doctype/social_login_key/social_login_key.json
@@ -20,6 +20,7 @@
"base_url",
"configuration_section",
"sign_ups",
+ "show_in_resource_metadata",
"client_urls",
"authorize_url",
"access_token_url",
@@ -172,11 +173,19 @@
"fieldtype": "Select",
"label": "Sign ups",
"options": "\nAllow\nDeny"
+ },
+ {
+ "default": "1",
+ "description": "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point.",
+ "fieldname": "show_in_resource_metadata",
+ "fieldtype": "Check",
+ "label": "Show in Resource Metadata"
}
],
+ "grid_page_length": 50,
"index_web_pages_for_search": 1,
"links": [],
- "modified": "2024-09-06 15:22:46.342392",
+ "modified": "2025-07-03 12:47:01.696817",
"modified_by": "Administrator",
"module": "Integrations",
"name": "Social Login Key",
@@ -195,9 +204,10 @@
"write": 1
}
],
+ "row_format": "Dynamic",
"sort_field": "creation",
"sort_order": "DESC",
"states": [],
"title_field": "provider_name",
"track_changes": 1
-}
\ No newline at end of file
+}
diff --git a/frappe/integrations/doctype/social_login_key/social_login_key.py b/frappe/integrations/doctype/social_login_key/social_login_key.py
index fbfa83fb3d..0e1567a995 100644
--- a/frappe/integrations/doctype/social_login_key/social_login_key.py
+++ b/frappe/integrations/doctype/social_login_key/social_login_key.py
@@ -54,6 +54,7 @@ class SocialLoginKey(Document):
icon: DF.Data | None
provider_name: DF.Data
redirect_url: DF.Data | None
+ show_in_resource_metadata: DF.Check
sign_ups: DF.Literal["", "Allow", "Deny"]
social_login_provider: DF.Literal[
"Custom",
diff --git a/frappe/integrations/oauth2.py b/frappe/integrations/oauth2.py
index 96ee5f196e..47559b6e38 100644
--- a/frappe/integrations/oauth2.py
+++ b/frappe/integrations/oauth2.py
@@ -1,6 +1,6 @@
import datetime
import json
-from typing import cast
+from typing import Literal, cast
from urllib.parse import quote, urlencode, urlparse
from oauthlib.oauth2 import FatalClientError, OAuth2Error
@@ -10,6 +10,7 @@ from werkzeug import Response
from werkzeug.exceptions import NotFound
import frappe
+from frappe import oauth
from frappe.integrations.doctype.oauth_provider_settings.oauth_provider_settings import (
get_oauth_settings,
)
@@ -264,10 +265,12 @@ def handle_wellknown(path: str):
if path.startswith("/.well-known/openid-configuration"):
return get_openid_configuration()
- if path.startswith("/.well-known/oauth-authorization-server"):
+ if path.startswith("/.well-known/oauth-authorization-server") and is_oauth_metadata_enabled(
+ "auth_server"
+ ):
return get_authorization_server_metadata()
- if path.startswith("/.well-known/oauth-protected-resource"):
+ if path.startswith("/.well-known/oauth-protected-resource") and is_oauth_metadata_enabled("resource"):
return get_protected_resource_metadata()
raise NotFound
@@ -298,9 +301,8 @@ def _get_authorization_server_metadata():
is an unsafe practice, so code is the only supported response type.
"""
- request_url = urlparse(frappe.request.url)
- issuer = f"{request_url.scheme}://{request_url.netloc}"
- return dict(
+ issuer = get_resource_url()
+ metadata = dict(
issuer=issuer,
authorization_endpoint=f"{issuer}/api/method/frappe.integrations.oauth2.authorize",
token_endpoint=f"{issuer}/api/method/frappe.integrations.oauth2.get_token",
@@ -313,9 +315,13 @@ def _get_authorization_server_metadata():
revocation_endpoint_auth_methods_supported=["client_secret_basic"],
introspection_endpoint=f"{issuer}/api/method/frappe.integrations.oauth2.introspect_token",
userinfo_endpoint=f"{issuer}/api/method/frappe.integrations.oauth2.openid_profile",
- registration_endpoint=f"{issuer}/api/method/frappe.integrations.oauth2.register_client",
)
+ if frappe.get_cached_value("OAuth Settings", "OAuth Settings", "enable_dynamic_client_registration"):
+ metadata["registration_endpoint"] = f"{issuer}/api/method/frappe.integrations.oauth2.register_client"
+
+ return metadata
+
@frappe.whitelist(allow_guest=True)
def register_client():
@@ -325,6 +331,9 @@ def register_client():
Reference: https://datatracker.ietf.org/doc/html/rfc7591
"""
+ if not frappe.get_cached_value("OAuth Settings", "OAuth Settings", "enable_dynamic_client_registration"):
+ raise NotFound
+
response = Response()
response.mimetype = "application/json"
data = frappe.request.json
@@ -377,12 +386,84 @@ def register_client():
"contacts": doc.contacts.split("\n") if doc.contacts else None,
}
- for k in list(response_data.keys()):
- if k in response_data and response_data[k] is None:
- del response_data[k]
-
+ _del_none_values(response_data)
response.data = frappe.as_json(response_data)
return response
-def get_protected_resource_metadata(): ...
+def get_protected_resource_metadata():
+ """
+ Creates response for the /.well-known/oauth-protected-resource endpoint.
+
+ Reference: https://datatracker.ietf.org/doc/html/rfc9728
+ """
+
+ response = Response()
+ response.mimetype = "application/json"
+ response.data = frappe.as_json(_get_protected_resource_metadata())
+ return response
+
+
+def _get_protected_resource_metadata():
+ from frappe.integrations.doctype.oauth_settings.oauth_settings import OAuthSettings
+
+ # TODO:
+ # - header on 401
+ # - cache this response (5 minutes)
+ authorization_servers = frappe.get_list(
+ "Social Login Key",
+ filters={
+ "enable_social_login": True,
+ "show_in_resource_metadata": True,
+ },
+ pluck="base_url",
+ )
+ resource = get_resource_url()
+ oauth_settings = cast(OAuthSettings, frappe.get_cached_doc("OAuth Settings"))
+
+ metadata = dict(
+ resource=resource,
+ authorization_servers=[resource, *authorization_servers],
+ bearer_methods_supported=["header"],
+ resource_name=oauth_settings.resource_name,
+ resource_documentation=oauth_settings.resource_documentation,
+ resource_policy_uri=oauth_settings.resource_policy_uri,
+ resource_tos_uri=oauth_settings.resource_tos_uri,
+ )
+
+ if oauth_settings.scopes_supported is not None:
+ scopes = []
+ for _s in oauth_settings.scopes_supported.split("\n"):
+ s = _s.strip()
+ if s is None:
+ continue
+ scopes.append(s)
+
+ if scopes:
+ metadata["scopes_supported"] = scopes
+ _del_none_values(metadata)
+ return metadata
+
+
+def is_oauth_metadata_enabled(label: Literal["resource", "auth_server"]):
+ fieldname = (
+ "show_auth_server_metadata" if label == "authorization" else "show_protected_resource_metadata"
+ )
+
+ return frappe.get_cached_value(
+ "OAuth Settings",
+ "OAuth Settings",
+ fieldname,
+ )
+
+
+def get_resource_url():
+ """Uses request URL to reflect the resource URL"""
+ request_url = urlparse(frappe.request.url)
+ return f"{request_url.scheme}://{request_url.netloc}"
+
+
+def _del_none_values(d: dict):
+ for k in list(d.keys()):
+ if k in d and d[k] is None:
+ del d[k]
From 5ca8ad9d843d811c1fd92e1037dde9a1a041ff48 Mon Sep 17 00:00:00 2001
From: 18alantom <2.alan.tom@gmail.com>
Date: Thu, 3 Jul 2025 14:05:59 +0530
Subject: [PATCH 173/196] refactor: deprecate OAuth Provider Settings
OAuth Settings has its fields now (only one)
---
frappe/integrations/README.md | 26 +++++++++++++++++++
.../oauth_provider_settings.py | 7 -----
.../oauth_settings/oauth_settings.json | 10 ++++++-
.../doctype/oauth_settings/oauth_settings.py | 1 +
frappe/integrations/oauth2.py | 4 +--
frappe/integrations/utils.py | 16 +++++++++++-
6 files changed, 52 insertions(+), 12 deletions(-)
create mode 100644 frappe/integrations/README.md
diff --git a/frappe/integrations/README.md b/frappe/integrations/README.md
new file mode 100644
index 0000000000..1d9cc30d44
--- /dev/null
+++ b/frappe/integrations/README.md
@@ -0,0 +1,26 @@
+# Integrations
+
+## OAuth 2
+
+Frappe Framwork uses [`oauthlib`](https://github.com/oauthlib/oauthlib) to manage OAuth2 requirements. A Frappe instance can function as all of these:
+
+1. **Resource Server**: contains resources, for example the data in your DocTypes.
+2. **Authorization Server**: server that issues tokens to access some resource.
+3. **Client**: app that requires access to some resource on a resource server.
+
+Different DocTypes and features pertain to each of roles:
+
+0. **Common**:
+ - **OAuth Settings**: allows configuring certain OAuth features.
+1. **Authorization Server**
+ - **OAuth Client**: keeps records of _clients_ registered with the frappe instance.
+ - **OAuth Bearer Token**: tokens given out to registered _clients_ are maintained here.
+ - **OAuth Authorization Code**: keeps track of OAuth codes a client responds with in exchange for a token.
+ - **OAuth Provider Settings**: allows skipping authorization
+2. **Client**
+ - **Connected App**: keeps records of _authorization servers_ against whom this frappe instance is registered as a _client_ so some resource can be accessed. Eg. a users Google Drive account.
+ - **Social Key Login**: similar to **Connected App**, but for the purpose of logging into the frappe instance. Eg. a users Google account to enable "Login with Google".
+ - **Token Cache**: tokens received by the Frappe instance when accessing a **Connected App**.
+3.
+
+## OAuth Settings
diff --git a/frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.py b/frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.py
index 74fa9fdd80..1b91bbfdeb 100644
--- a/frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.py
+++ b/frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.py
@@ -19,10 +19,3 @@ class OAuthProviderSettings(Document):
# end: auto-generated types
pass
-
-
-def get_oauth_settings():
- """Return OAuth settings."""
- return frappe._dict(
- {"skip_authorization": frappe.db.get_single_value("OAuth Provider Settings", "skip_authorization")}
- )
diff --git a/frappe/integrations/doctype/oauth_settings/oauth_settings.json b/frappe/integrations/doctype/oauth_settings/oauth_settings.json
index 6a4fcfda26..add8b2eb70 100644
--- a/frappe/integrations/doctype/oauth_settings/oauth_settings.json
+++ b/frappe/integrations/doctype/oauth_settings/oauth_settings.json
@@ -9,6 +9,7 @@
"authorization_server_section",
"show_auth_server_metadata",
"enable_dynamic_client_registration",
+ "skip_authorization",
"resource_server_section",
"resource_name",
"resource_policy_uri",
@@ -86,13 +87,20 @@
"fieldname": "enable_dynamic_client_registration",
"fieldtype": "Check",
"label": "Enable Dynamic Client Registration"
+ },
+ {
+ "default": "0",
+ "description": "Allows skipping authorization if a user has active tokens.",
+ "fieldname": "skip_authorization",
+ "fieldtype": "Check",
+ "label": "Skip Authorization"
}
],
"grid_page_length": 50,
"index_web_pages_for_search": 1,
"issingle": 1,
"links": [],
- "modified": "2025-07-03 12:49:31.650861",
+ "modified": "2025-07-03 14:07:31.542741",
"modified_by": "Administrator",
"module": "Integrations",
"name": "OAuth Settings",
diff --git a/frappe/integrations/doctype/oauth_settings/oauth_settings.py b/frappe/integrations/doctype/oauth_settings/oauth_settings.py
index 55cc8e7ab4..8b2aafd072 100644
--- a/frappe/integrations/doctype/oauth_settings/oauth_settings.py
+++ b/frappe/integrations/doctype/oauth_settings/oauth_settings.py
@@ -22,6 +22,7 @@ class OAuthSettings(Document):
scopes_supported: DF.SmallText | None
show_auth_server_metadata: DF.Check
show_protected_resource_metadata: DF.Check
+ skip_authorization: DF.Check
# end: auto-generated types
pass
diff --git a/frappe/integrations/oauth2.py b/frappe/integrations/oauth2.py
index 47559b6e38..976532473b 100644
--- a/frappe/integrations/oauth2.py
+++ b/frappe/integrations/oauth2.py
@@ -11,12 +11,10 @@ from werkzeug.exceptions import NotFound
import frappe
from frappe import oauth
-from frappe.integrations.doctype.oauth_provider_settings.oauth_provider_settings import (
- get_oauth_settings,
-)
from frappe.integrations.utils import (
OAuth2DynamicClientMetadata,
create_new_oauth_client,
+ get_oauth_settings,
validate_dynamic_client_metadata,
)
from frappe.oauth import (
diff --git a/frappe/integrations/utils.py b/frappe/integrations/utils.py
index 602aec3c1a..07d649388a 100644
--- a/frappe/integrations/utils.py
+++ b/frappe/integrations/utils.py
@@ -3,7 +3,7 @@
import datetime
import json
-from typing import cast
+from typing import Any, cast
from urllib.parse import parse_qs
from pydantic import BaseModel, HttpUrl
@@ -254,3 +254,17 @@ def create_new_oauth_client(client: OAuth2DynamicClientMetadata):
doc.save()
return doc
+
+
+def get_oauth_settings():
+ """Return OAuth settings."""
+ settings: dict[str, Any] = frappe._dict({"skip_authorization": None})
+ if frappe.get_cached_value("OAuth Settings", "OAuth Settings", "skip_authorization"):
+ settings["skip_authorization"] = "Auto" # based on legacy OAuth Provider Settings value
+
+ elif value := frappe.get_cached_value(
+ "OAuth Provider Settings", "OAuth Provider Settings", "skip_authorization"
+ ):
+ settings["skip_authorization"] = value
+
+ return settings
From a1dae98560005e566b205d13642f2aae4184ebe9 Mon Sep 17 00:00:00 2001
From: Akhil Narang /.well-known/oauth-authorization-server endpoint.",
+ "description": "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414",
"fieldname": "show_auth_server_metadata",
"fieldtype": "Check",
"label": "Show Auth Server Metadata"
@@ -83,7 +83,7 @@
},
{
"default": "1",
- "description": "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry.",
+ "description": "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591",
"fieldname": "enable_dynamic_client_registration",
"fieldtype": "Check",
"label": "Enable Dynamic Client Registration"
@@ -100,7 +100,7 @@
"index_web_pages_for_search": 1,
"issingle": 1,
"links": [],
- "modified": "2025-07-03 14:07:31.542741",
+ "modified": "2025-07-03 14:29:35.314601",
"modified_by": "Administrator",
"module": "Integrations",
"name": "OAuth Settings",
From 35c1cc0276f5849325a9370327a31762f920eb51 Mon Sep 17 00:00:00 2001
From: Ankush Menat /.well-known/oauth-protected-resource endpoint.",
+ "description": "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728",
"fieldname": "show_protected_resource_metadata",
"fieldtype": "Check",
"label": "Show Protected Resource Metadata"
@@ -94,13 +95,20 @@
"fieldname": "skip_authorization",
"fieldtype": "Check",
"label": "Skip Authorization"
+ },
+ {
+ "default": "0",
+ "description": "Allows enabled Social Login Key Base URL to be shown as authorization server.",
+ "fieldname": "show_social_login_key_as_authorization_server",
+ "fieldtype": "Check",
+ "label": "Show Social Login Key as Authorization Server"
}
],
"grid_page_length": 50,
"index_web_pages_for_search": 1,
"issingle": 1,
"links": [],
- "modified": "2025-07-03 14:29:35.314601",
+ "modified": "2025-07-04 11:20:15.528611",
"modified_by": "Administrator",
"module": "Integrations",
"name": "OAuth Settings",
diff --git a/frappe/integrations/doctype/oauth_settings/oauth_settings.py b/frappe/integrations/doctype/oauth_settings/oauth_settings.py
index 8b2aafd072..afffb32226 100644
--- a/frappe/integrations/doctype/oauth_settings/oauth_settings.py
+++ b/frappe/integrations/doctype/oauth_settings/oauth_settings.py
@@ -22,6 +22,7 @@ class OAuthSettings(Document):
scopes_supported: DF.SmallText | None
show_auth_server_metadata: DF.Check
show_protected_resource_metadata: DF.Check
+ show_social_login_key_as_authorization_server: DF.Check
skip_authorization: DF.Check
# end: auto-generated types
diff --git a/frappe/integrations/oauth2.py b/frappe/integrations/oauth2.py
index 07a2c28e14..06329b88eb 100644
--- a/frappe/integrations/oauth2.py
+++ b/frappe/integrations/oauth2.py
@@ -405,23 +405,26 @@ def get_protected_resource_metadata():
def _get_protected_resource_metadata():
from frappe.integrations.doctype.oauth_settings.oauth_settings import OAuthSettings
- # TODO:
- # - header on 401
- # - cache this response (5 minutes)
- authorization_servers = frappe.get_list(
- "Social Login Key",
- filters={
- "enable_social_login": True,
- "show_in_resource_metadata": True,
- },
- pluck="base_url",
- )
+ oauth_settings = cast(OAuthSettings, frappe.get_cached_doc("OAuth Settings", ignore_permissions=True))
resource = get_resource_url()
- oauth_settings = cast(OAuthSettings, frappe.get_cached_doc("OAuth Settings"))
+ authorization_servers = [resource]
+
+ if oauth_settings.show_social_login_key_as_authorization_server:
+ authorization_servers.extend(
+ frappe.get_list(
+ "Social Login Key",
+ filters={
+ "enable_social_login": True,
+ "show_in_resource_metadata": True,
+ },
+ pluck="base_url",
+ ignore_permissions=True,
+ )
+ )
metadata = dict(
resource=resource,
- authorization_servers=[resource, *authorization_servers],
+ authorization_servers=authorization_servers,
bearer_methods_supported=["header"],
resource_name=oauth_settings.resource_name,
resource_documentation=oauth_settings.resource_documentation,
From db4a7504e5335a7c44e5a4e1c92beb6fd865710d Mon Sep 17 00:00:00 2001
From: 18alantom <2.alan.tom@gmail.com>
Date: Fri, 4 Jul 2025 13:17:23 +0530
Subject: [PATCH 190/196] fix: add hooks to handle cors
---
frappe/app.py | 8 +--
frappe/hooks.py | 1 +
.../oauth_settings/oauth_settings.json | 50 ++++++++++++++---
.../doctype/oauth_settings/oauth_settings.py | 1 +
frappe/integrations/oauth2.py | 53 ++++++++++++++++++-
frappe/integrations/utils.py | 2 +-
6 files changed, 101 insertions(+), 14 deletions(-)
diff --git a/frappe/app.py b/frappe/app.py
index 2bac39016e..e5a1fba4a7 100644
--- a/frappe/app.py
+++ b/frappe/app.py
@@ -275,10 +275,12 @@ def process_response(response: Response):
def set_cors_headers(response):
+ allowed_origins = frappe.conf.allow_cors
+ if hasattr(frappe.local, "allow_cors"):
+ allowed_origins = frappe.local.allow_cors
+
if not (
- (allowed_origins := frappe.conf.allow_cors)
- and (request := frappe.local.request)
- and (origin := request.headers.get("Origin"))
+ allowed_origins and (request := frappe.local.request) and (origin := request.headers.get("Origin"))
):
return
diff --git a/frappe/hooks.py b/frappe/hooks.py
index 992cb2a2e0..bebb1f7e73 100644
--- a/frappe/hooks.py
+++ b/frappe/hooks.py
@@ -413,6 +413,7 @@ before_request = [
"frappe.recorder.record",
"frappe.monitor.start",
"frappe.rate_limiter.apply",
+ "frappe.integrations.oauth2.set_cors_for_privileged_requests",
]
after_request = [
diff --git a/frappe/integrations/doctype/oauth_settings/oauth_settings.json b/frappe/integrations/doctype/oauth_settings/oauth_settings.json
index be8c13c590..f30124392f 100644
--- a/frappe/integrations/doctype/oauth_settings/oauth_settings.json
+++ b/frappe/integrations/doctype/oauth_settings/oauth_settings.json
@@ -6,15 +6,21 @@
"doctype": "DocType",
"engine": "InnoDB",
"field_order": [
+ "authorization_tab",
"authorization_server_section",
"show_auth_server_metadata",
- "enable_dynamic_client_registration",
"skip_authorization",
+ "column_break_ogmd",
+ "enable_dynamic_client_registration",
+ "allowed_origins_for_public_client_registration",
+ "resource_tab",
+ "config_section",
+ "show_protected_resource_metadata",
+ "column_break_wlfj",
+ "show_social_login_key_as_authorization_server",
"resource_server_section",
"resource_name",
"resource_policy_uri",
- "show_protected_resource_metadata",
- "show_social_login_key_as_authorization_server",
"column_break_zyte",
"resource_documentation",
"resource_tos_uri",
@@ -22,10 +28,10 @@
],
"fields": [
{
- "description": "These fields are used to provide resource server metadata to clients querying the \"/.well-known/oauth-protected-resource\" end point. For additional reference view: https://datatracker.ietf.org/doc/html/rfc9728",
+ "description": "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point.",
"fieldname": "resource_server_section",
"fieldtype": "Section Break",
- "label": "Resource Server"
+ "label": "Metadata"
},
{
"default": "Frappe Framework Application",
@@ -59,8 +65,7 @@
},
{
"fieldname": "authorization_server_section",
- "fieldtype": "Section Break",
- "label": "Authorization Server"
+ "fieldtype": "Section Break"
},
{
"default": "1",
@@ -102,13 +107,42 @@
"fieldname": "show_social_login_key_as_authorization_server",
"fieldtype": "Check",
"label": "Show Social Login Key as Authorization Server"
+ },
+ {
+ "fieldname": "column_break_ogmd",
+ "fieldtype": "Column Break"
+ },
+ {
+ "fieldname": "authorization_tab",
+ "fieldtype": "Tab Break",
+ "label": "Authorization"
+ },
+ {
+ "fieldname": "resource_tab",
+ "fieldtype": "Tab Break",
+ "label": "Resource"
+ },
+ {
+ "fieldname": "config_section",
+ "fieldtype": "Section Break",
+ "label": "Config"
+ },
+ {
+ "fieldname": "column_break_wlfj",
+ "fieldtype": "Column Break"
+ },
+ {
+ "description": "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\nhttps://frappe.io), or * to accept all.\n.{fieldname}. - fältnamn på dokument t.ex.\n"
" branch\n"
" \n"
-" .FY. - Bokföringsår (erfordrar ERPNext installation).ABBR. - Bolagsförkortning (erfordrar ERPNext installation).FY. - Bokföringsår (erfordrar Affärssystem installation).ABBR. - Bolagsförkortning (erfordrar Affärssystem installation)Please use following links to download file backup.
-Public Files Backup: {{ backup_path_files }}
-Private Files Backup: {{ backup_path_private_files }}
+{{ _("Please use following links to download file backup.")
+{{ _("Public Files Backup:") {{ backup_path_files }}
+{{ _("Private Files Backup:") {{ backup_path_private_files }}